icinga2/lib/config/config_lexer.ll

264 lines
8.2 KiB
LLVM
Raw Normal View History

2012-05-31 08:45:02 +02:00
%{
/******************************************************************************
* Icinga 2 *
2016-01-12 08:29:59 +01:00
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "config/configcompiler.hpp"
2014-10-16 17:44:06 +02:00
#include "config/expression.hpp"
#include "base/exception.hpp"
using namespace icinga;
2013-11-03 13:45:26 +01:00
#include "config/config_parser.hh"
2013-03-16 21:18:53 +01:00
#include <sstream>
2012-05-31 09:14:44 +02:00
#define YYLTYPE icinga::CompilerDebugInfo
2012-05-31 08:45:02 +02:00
#define YY_EXTRA_TYPE ConfigCompiler *
#define YY_USER_ACTION \
do { \
2012-07-08 21:33:51 +02:00
yylloc->Path = yyextra->GetPath(); \
yylloc->FirstLine = yylineno; \
yylloc->FirstColumn = yycolumn; \
yylloc->LastLine = yylineno; \
yylloc->LastColumn = yycolumn + yyleng - 1; \
yycolumn += yyleng; \
} while (0);
2012-05-31 08:45:02 +02:00
2012-05-31 09:43:46 +02:00
#define YY_INPUT(buf, result, max_size) \
do { \
result = yyextra->ReadInput(buf, max_size); \
2012-05-31 08:45:02 +02:00
} while (0)
%}
%option reentrant noyywrap yylineno
%option bison-bridge bison-locations
2012-05-31 09:14:44 +02:00
%option never-interactive nounistd
2014-11-06 06:23:25 +01:00
%option noinput nounput
2012-05-31 08:45:02 +02:00
%x C_COMMENT
%x STRING
%x HEREDOC
2012-05-31 08:45:02 +02:00
%%
\" {
yyextra->m_LexBuffer.str("");
yyextra->m_LexBuffer.clear();
yyextra->m_LocationBegin = *yylloc;
BEGIN(STRING);
}
<STRING>\" {
BEGIN(INITIAL);
yylloc->FirstLine = yyextra->m_LocationBegin.FirstLine;
yylloc->FirstColumn = yyextra->m_LocationBegin.FirstColumn;
yylval->text = new String(yyextra->m_LexBuffer.str());
return T_STRING;
}
<STRING>\n {
BOOST_THROW_EXCEPTION(ScriptError("Unterminated string literal", DebugInfoRange(yyextra->m_LocationBegin, *yylloc)));
}
<STRING>\\[0-7]{1,3} {
/* octal escape sequence */
int result;
(void) sscanf(yytext + 1, "%o", &result);
if (result > 0xff) {
/* error, constant is out-of-bounds */
BOOST_THROW_EXCEPTION(ScriptError("Constant is out of bounds: " + String(yytext), *yylloc));
}
yyextra->m_LexBuffer << static_cast<char>(result);
}
<STRING>\\[0-9]+ {
/* generate error - bad escape sequence; something
* like '\48' or '\0777777'
*/
BOOST_THROW_EXCEPTION(ScriptError("Bad escape sequence found: " + String(yytext), *yylloc));
}
<STRING>\\n { yyextra->m_LexBuffer << "\n"; }
<STRING>\\\\ { yyextra->m_LexBuffer << "\\"; }
<STRING>\\\" { yyextra->m_LexBuffer << "\""; }
<STRING>\\t { yyextra->m_LexBuffer << "\t"; }
<STRING>\\r { yyextra->m_LexBuffer << "\r"; }
<STRING>\\b { yyextra->m_LexBuffer << "\b"; }
<STRING>\\f { yyextra->m_LexBuffer << "\f"; }
<STRING>\\\n { yyextra->m_LexBuffer << yytext[1]; }
<STRING>\\. {
BOOST_THROW_EXCEPTION(ScriptError("Bad escape sequence found: " + String(yytext), *yylloc));
}
<STRING>[^\\\n\"]+ {
char *yptr = yytext;
while (*yptr)
yyextra->m_LexBuffer << *yptr++;
}
<STRING><<EOF>> {
BOOST_THROW_EXCEPTION(ScriptError("End-of-file while in string literal", DebugInfoRange(yyextra->m_LocationBegin, *yylloc)));
}
\{\{\{ {
yyextra->m_LexBuffer.str("");
yyextra->m_LexBuffer.clear();
yyextra->m_LocationBegin = *yylloc;
BEGIN(HEREDOC);
}
<HEREDOC>\}\}\} {
BEGIN(INITIAL);
yylloc->FirstLine = yyextra->m_LocationBegin.FirstLine;
yylloc->FirstColumn = yyextra->m_LocationBegin.FirstColumn;
yylval->text = new String(yyextra->m_LexBuffer.str());
return T_STRING;
}
<HEREDOC>(.|\n) { yyextra->m_LexBuffer << yytext[0]; }
<INITIAL>{
"/*" BEGIN(C_COMMENT);
}
<C_COMMENT>{
"*/" BEGIN(INITIAL);
[^*] /* ignore comment */
"*" /* ignore star */
}
<C_COMMENT><<EOF>> {
2014-12-18 16:55:45 +01:00
BOOST_THROW_EXCEPTION(ScriptError("End-of-file while in comment", *yylloc));
}
2013-02-24 01:10:34 +01:00
\/\/[^\n]* /* ignore C++-style comments */
#[^\n]* /* ignore shell-style comments */
[ \t] /* ignore whitespace */
<INITIAL>{
object return T_OBJECT;
template return T_TEMPLATE;
include return T_INCLUDE;
include_recursive return T_INCLUDE_RECURSIVE;
include_zones return T_INCLUDE_ZONES;
library return T_LIBRARY;
null return T_NULL;
true { yylval->boolean = 1; return T_BOOLEAN; }
false { yylval->boolean = 0; return T_BOOLEAN; }
const return T_CONST;
var return T_VAR;
this return T_THIS;
globals return T_GLOBALS;
locals return T_LOCALS;
use return T_USE;
__using return T_USING;
apply return T_APPLY;
to return T_TO;
where return T_WHERE;
import return T_IMPORT;
assign return T_ASSIGN;
ignore return T_IGNORE;
function return T_FUNCTION;
return return T_RETURN;
break return T_BREAK;
continue return T_CONTINUE;
for return T_FOR;
if return T_IF;
else return T_ELSE;
while return T_WHILE;
throw return T_THROW;
ignore_on_error return T_IGNORE_ON_ERROR;
current_filename return T_CURRENT_FILENAME;
current_line return T_CURRENT_LINE;
debugger return T_DEBUGGER;
=\> return T_FOLLOWS;
2014-11-09 19:48:28 +01:00
\<\< return T_SHIFT_LEFT;
\>\> return T_SHIFT_RIGHT;
\<= return T_LESS_THAN_OR_EQUAL;
\>= return T_GREATER_THAN_OR_EQUAL;
== return T_EQUAL;
!= return T_NOT_EQUAL;
!in return T_NOT_IN;
in return T_IN;
&& return T_LOGICAL_AND;
\|\| return T_LOGICAL_OR;
\{\{ return T_NULLARY_LAMBDA_BEGIN;
\}\} return T_NULLARY_LAMBDA_END;
[a-zA-Z_][a-zA-Z0-9\_]* { yylval->text = new String(yytext); return T_IDENTIFIER; }
@[a-zA-Z_][a-zA-Z0-9\_]* { yylval->text = new String(yytext + 1); return T_IDENTIFIER; }
\<[^ \>]*\> { yytext[yyleng-1] = '\0'; yylval->text = new String(yytext + 1); return T_STRING_ANGLE; }
2014-11-23 23:19:46 +01:00
[0-9]+(\.[0-9]+)?ms { yylval->num = strtod(yytext, NULL) / 1000; return T_NUMBER; }
[0-9]+(\.[0-9]+)?d { yylval->num = strtod(yytext, NULL) * 60 * 60 * 24; return T_NUMBER; }
[0-9]+(\.[0-9]+)?h { yylval->num = strtod(yytext, NULL) * 60 * 60; return T_NUMBER; }
[0-9]+(\.[0-9]+)?m { yylval->num = strtod(yytext, NULL) * 60; return T_NUMBER; }
[0-9]+(\.[0-9]+)?s { yylval->num = strtod(yytext, NULL); return T_NUMBER; }
[0-9]+(\.[0-9]+)? { yylval->num = strtod(yytext, NULL); return T_NUMBER; }
= { yylval->csop = OpSetLiteral; return T_SET; }
\+= { yylval->csop = OpSetAdd; return T_SET_ADD; }
-= { yylval->csop = OpSetSubtract; return T_SET_SUBTRACT; }
\*= { yylval->csop = OpSetMultiply; return T_SET_MULTIPLY; }
\/= { yylval->csop = OpSetDivide; return T_SET_DIVIDE; }
\%= { yylval->csop = OpSetModulo; return T_SET_MODULO; }
\^= { yylval->csop = OpSetXor; return T_SET_XOR; }
\&= { yylval->csop = OpSetBinaryAnd; return T_SET_BINARY_AND; }
\|= { yylval->csop = OpSetBinaryOr; return T_SET_BINARY_OR; }
2014-11-09 19:48:28 +01:00
\+ return T_PLUS;
\- return T_MINUS;
\* return T_MULTIPLY;
\/ return T_DIVIDE_OP;
\% return T_MODULO;
\^ return T_XOR;
2014-11-09 19:48:28 +01:00
\& return T_BINARY_AND;
\| return T_BINARY_OR;
\< return T_LESS_THAN;
\> return T_GREATER_THAN;
2012-05-31 08:45:02 +02:00
}
\( { yyextra->m_IgnoreNewlines.push(true); return '('; }
\) { yyextra->m_IgnoreNewlines.pop(); return ')'; }
[\r\n]+ { yycolumn -= strlen(yytext) - 1; if (!yyextra->m_IgnoreNewlines.top()) { return T_NEWLINE; } }
<<EOF>> { if (!yyextra->m_Eof) { yyextra->m_Eof = true; return T_NEWLINE; } else { yyterminate(); } }
. return yytext[0];
2012-05-31 08:45:02 +02:00
%%
2012-05-31 08:45:02 +02:00
void ConfigCompiler::InitializeScanner(void)
2012-05-31 08:45:02 +02:00
{
2012-05-31 09:43:46 +02:00
yylex_init(&m_Scanner);
yyset_extra(this, m_Scanner);
2012-05-31 08:45:02 +02:00
}
void ConfigCompiler::DestroyScanner(void)
2012-05-31 08:45:02 +02:00
{
2012-05-31 09:43:46 +02:00
yylex_destroy(m_Scanner);
2012-05-31 08:45:02 +02:00
}