2013-11-03 12:40:39 +01:00
|
|
|
%{
|
2014-03-21 10:22:59 +01:00
|
|
|
#define YYDEBUG 1
|
|
|
|
|
2012-05-31 16:04:51 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-31 16:04:51 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-09-07 10:27:31 +02:00
|
|
|
#include "i2-config.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "config/expression.h"
|
|
|
|
#include "config/expressionlist.h"
|
|
|
|
#include "config/configitembuilder.h"
|
|
|
|
#include "config/configcompiler.h"
|
|
|
|
#include "config/configcompilercontext.h"
|
2014-03-21 15:39:25 +01:00
|
|
|
#include "config/configerror.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "config/typerule.h"
|
|
|
|
#include "config/typerulelist.h"
|
2013-10-20 15:06:05 +02:00
|
|
|
#include "config/aexpression.h"
|
2014-03-18 11:44:09 +01:00
|
|
|
#include "config/applyrule.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "base/value.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include "base/utility.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "base/array.h"
|
2013-06-25 09:21:25 +02:00
|
|
|
#include "base/scriptvariable.h"
|
2013-11-20 21:55:14 +01:00
|
|
|
#include "base/exception.h"
|
2014-03-18 11:44:09 +01:00
|
|
|
#include "base/dynamictype.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <sstream>
|
|
|
|
#include <stack>
|
2013-03-27 13:50:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2012-05-31 16:04:51 +02:00
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#define YYLTYPE icinga::DebugInfo
|
2014-03-21 10:22:59 +01:00
|
|
|
#define YYERROR_VERBOSE
|
|
|
|
|
2014-03-21 14:43:45 +01:00
|
|
|
#define YYLLOC_DEFAULT(Current, Rhs, N) \
|
|
|
|
do { \
|
2014-03-21 15:41:00 +01:00
|
|
|
if (N) { \
|
2014-03-21 14:43:45 +01:00
|
|
|
(Current).Path = YYRHSLOC(Rhs, 1).Path; \
|
|
|
|
(Current).FirstLine = YYRHSLOC(Rhs, 1).FirstLine; \
|
|
|
|
(Current).FirstColumn = YYRHSLOC(Rhs, 1).FirstColumn; \
|
|
|
|
(Current).LastLine = YYRHSLOC(Rhs, N).LastLine; \
|
|
|
|
(Current).LastColumn = YYRHSLOC(Rhs, N).LastColumn; \
|
|
|
|
} else { \
|
|
|
|
(Current).Path = YYRHSLOC(Rhs, 0).Path; \
|
|
|
|
(Current).FirstLine = (Current).LastLine = \
|
|
|
|
YYRHSLOC(Rhs, 0).LastLine; \
|
|
|
|
(Current).FirstColumn = (Current).LastColumn = \
|
|
|
|
YYRHSLOC(Rhs, 0).LastColumn; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2014-03-21 10:22:59 +01:00
|
|
|
#define YY_LOCATION_PRINT(file, loc) \
|
|
|
|
do { \
|
|
|
|
std::ostringstream msgbuf; \
|
|
|
|
msgbuf << loc; \
|
|
|
|
std::string str = msgbuf.str(); \
|
|
|
|
fputs(str.c_str(), file); \
|
|
|
|
} while (0)
|
2012-06-06 14:38:28 +02:00
|
|
|
|
2013-11-03 12:40:39 +01:00
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
%}
|
2012-05-31 16:04:51 +02:00
|
|
|
|
2012-05-31 08:45:02 +02:00
|
|
|
%pure-parser
|
|
|
|
|
|
|
|
%locations
|
|
|
|
%defines
|
|
|
|
%error-verbose
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
%parse-param { ConfigCompiler *context }
|
2012-05-31 08:45:02 +02:00
|
|
|
%lex-param { void *scanner }
|
|
|
|
|
|
|
|
%union {
|
|
|
|
char *text;
|
2012-07-11 21:03:22 +02:00
|
|
|
double num;
|
2012-08-02 09:38:08 +02:00
|
|
|
icinga::Value *variant;
|
2012-06-01 16:49:33 +02:00
|
|
|
icinga::ExpressionOperator op;
|
2013-02-02 14:28:11 +01:00
|
|
|
icinga::TypeSpecifier type;
|
2013-03-27 13:50:53 +01:00
|
|
|
std::vector<String> *slist;
|
|
|
|
Expression *expr;
|
|
|
|
ExpressionList *exprl;
|
|
|
|
Array *array;
|
2013-10-20 15:06:05 +02:00
|
|
|
Value *aexpr;
|
2012-05-31 08:45:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
%token <text> T_STRING
|
2013-02-01 22:44:58 +01:00
|
|
|
%token <text> T_STRING_ANGLE
|
2012-05-31 08:45:02 +02:00
|
|
|
%token <num> T_NUMBER
|
2012-06-01 16:49:33 +02:00
|
|
|
%token T_NULL
|
2012-05-31 16:04:51 +02:00
|
|
|
%token <text> T_IDENTIFIER
|
2014-03-18 08:34:56 +01:00
|
|
|
%token <op> T_SET "= (T_SET)"
|
2013-03-27 13:50:53 +01:00
|
|
|
%token <op> T_PLUS_EQUAL "+= (T_PLUS_EQUAL)"
|
|
|
|
%token <op> T_MINUS_EQUAL "-= (T_MINUS_EQUAL)"
|
|
|
|
%token <op> T_MULTIPLY_EQUAL "*= (T_MULTIPLY_EQUAL)"
|
|
|
|
%token <op> T_DIVIDE_EQUAL "/= (T_DIVIDE_EQUAL)"
|
2013-12-04 11:04:36 +01:00
|
|
|
%token T_VAR "var (T_VAR)"
|
|
|
|
%token T_CONST "const (T_CONST)"
|
2013-06-26 08:21:35 +02:00
|
|
|
%token T_SHIFT_LEFT "<< (T_SHIFT_LEFT)"
|
|
|
|
%token T_SHIFT_RIGHT ">> (T_SHIFT_RIGHT)"
|
2014-03-18 15:29:04 +01:00
|
|
|
%token T_EQUAL "== (T_EQUAL)"
|
|
|
|
%token T_NOT_EQUAL "!= (T_NOT_EQUAL)"
|
|
|
|
%token T_IN "in (T_IN)"
|
|
|
|
%token T_NOT_IN "!in (T_NOT_IN)"
|
|
|
|
%token T_LOGICAL_AND "&& (T_LOGICAL_AND)"
|
|
|
|
%token T_LOGICAL_OR "|| (T_LOGICAL_OR)"
|
2014-03-19 13:25:06 +01:00
|
|
|
%token T_LESS_THAN_OR_EQUAL "<= (T_LESS_THAN_OR_EQUAL)"
|
|
|
|
%token T_GREATER_THAN_OR_EQUAL ">= (T_GREATER_THAN_OR_EQUAL)"
|
2013-03-27 13:50:53 +01:00
|
|
|
%token <type> T_TYPE_DICTIONARY "dictionary (T_TYPE_DICTIONARY)"
|
|
|
|
%token <type> T_TYPE_ARRAY "array (T_TYPE_ARRAY)"
|
|
|
|
%token <type> T_TYPE_NUMBER "number (T_TYPE_NUMBER)"
|
|
|
|
%token <type> T_TYPE_STRING "string (T_TYPE_STRING)"
|
|
|
|
%token <type> T_TYPE_SCALAR "scalar (T_TYPE_SCALAR)"
|
|
|
|
%token <type> T_TYPE_ANY "any (T_TYPE_ANY)"
|
2013-05-03 10:48:28 +02:00
|
|
|
%token <type> T_TYPE_NAME "name (T_TYPE_NAME)"
|
2013-03-27 13:50:53 +01:00
|
|
|
%token T_VALIDATOR "%validator (T_VALIDATOR)"
|
|
|
|
%token T_REQUIRE "%require (T_REQUIRE)"
|
|
|
|
%token T_ATTRIBUTE "%attribute (T_ATTRIBUTE)"
|
|
|
|
%token T_TYPE "type (T_TYPE)"
|
|
|
|
%token T_OBJECT "object (T_OBJECT)"
|
|
|
|
%token T_TEMPLATE "template (T_TEMPLATE)"
|
|
|
|
%token T_INCLUDE "include (T_INCLUDE)"
|
2013-11-29 10:39:48 +01:00
|
|
|
%token T_INCLUDE_RECURSIVE "include_recursive (T_INCLUDE_RECURSIVE)"
|
2013-03-27 13:50:53 +01:00
|
|
|
%token T_LIBRARY "library (T_LIBRARY)"
|
|
|
|
%token T_INHERITS "inherits (T_INHERITS)"
|
|
|
|
%token T_PARTIAL "partial (T_PARTIAL)"
|
2014-03-18 11:44:09 +01:00
|
|
|
%token T_APPLY "apply (T_APPLY)"
|
|
|
|
%token T_TO "to (T_TO)"
|
|
|
|
%token T_WHERE "where (T_WHERE)"
|
2013-01-29 12:11:05 +01:00
|
|
|
%type <text> identifier
|
2013-03-27 13:50:53 +01:00
|
|
|
%type <array> array_items
|
|
|
|
%type <array> array_items_inner
|
2012-05-31 16:04:51 +02:00
|
|
|
%type <variant> value
|
2013-03-27 13:50:53 +01:00
|
|
|
%type <expr> expression
|
|
|
|
%type <exprl> expressions
|
|
|
|
%type <exprl> expressions_inner
|
|
|
|
%type <exprl> expressionlist
|
2013-02-02 14:28:11 +01:00
|
|
|
%type <variant> typerulelist
|
2012-05-31 16:04:51 +02:00
|
|
|
%type <op> operator
|
2013-02-02 14:28:11 +01:00
|
|
|
%type <type> type
|
|
|
|
%type <num> partial_specifier
|
2013-03-27 13:50:53 +01:00
|
|
|
%type <slist> object_inherits_list
|
|
|
|
%type <slist> object_inherits_specifier
|
2013-10-20 15:06:05 +02:00
|
|
|
%type <aexpr> aexpression
|
2013-12-04 11:04:36 +01:00
|
|
|
%type <num> variable_decl
|
2014-03-18 15:29:04 +01:00
|
|
|
%left T_LOGICAL_OR
|
|
|
|
%left T_LOGICAL_AND
|
|
|
|
%left T_IN
|
|
|
|
%left T_NOT_IN
|
|
|
|
%nonassoc T_EQUAL
|
|
|
|
%nonassoc T_NOT_EQUAL
|
2012-05-31 16:04:51 +02:00
|
|
|
%left '+' '-'
|
|
|
|
%left '*' '/'
|
2013-06-25 09:21:25 +02:00
|
|
|
%left '&'
|
|
|
|
%left '|'
|
2014-03-19 10:51:09 +01:00
|
|
|
%right '~'
|
|
|
|
%right '!'
|
2012-05-31 08:45:02 +02:00
|
|
|
%{
|
|
|
|
|
2012-05-31 08:59:40 +02:00
|
|
|
int yylex(YYSTYPE *lvalp, YYLTYPE *llocp, void *scanner);
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2012-08-07 21:02:12 +02:00
|
|
|
void yyerror(YYLTYPE *locp, ConfigCompiler *, const char *err)
|
2012-05-31 08:45:02 +02:00
|
|
|
{
|
2013-03-16 21:18:53 +01:00
|
|
|
std::ostringstream message;
|
2012-07-09 11:39:14 +02:00
|
|
|
message << *locp << ": " << err;
|
2014-03-21 15:39:25 +01:00
|
|
|
ConfigCompilerContext::GetInstance()->AddMessage(true, message.str(), *locp);
|
2012-05-31 08:45:02 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
int yyparse(ConfigCompiler *context);
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static std::stack<Array::Ptr> m_Arrays;
|
2012-06-06 14:38:28 +02:00
|
|
|
static bool m_Abstract;
|
2013-02-02 14:28:11 +01:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static std::stack<TypeRuleList::Ptr> m_RuleLists;
|
2013-02-02 14:28:11 +01:00
|
|
|
static ConfigType::Ptr m_Type;
|
2012-05-31 10:16:32 +02:00
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
void ConfigCompiler::Compile(void)
|
2012-05-31 10:16:32 +02:00
|
|
|
{
|
2013-02-05 13:06:42 +01:00
|
|
|
try {
|
|
|
|
yyparse(this);
|
2014-03-21 15:39:25 +01:00
|
|
|
} catch (const ConfigError& ex) {
|
2014-03-22 08:40:09 +01:00
|
|
|
const DebugInfo *di = boost::get_error_info<errinfo_debuginfo>(ex);
|
|
|
|
ConfigCompilerContext::GetInstance()->AddMessage(true, ex.what(), di ? *di : DebugInfo());
|
2013-03-16 21:18:53 +01:00
|
|
|
} catch (const std::exception& ex) {
|
2013-11-20 21:55:14 +01:00
|
|
|
ConfigCompilerContext::GetInstance()->AddMessage(true, DiagnosticInformation(ex));
|
2013-02-05 13:06:42 +01:00
|
|
|
}
|
2012-05-31 10:16:32 +02:00
|
|
|
}
|
|
|
|
|
2012-05-31 09:43:46 +02:00
|
|
|
#define scanner (context->GetScanner())
|
2012-05-31 08:45:02 +02:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%%
|
|
|
|
statements: /* empty */
|
|
|
|
| statements statement
|
|
|
|
;
|
|
|
|
|
2014-03-18 11:44:09 +01:00
|
|
|
statement: object | type | include | include_recursive | library | variable | apply
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2013-08-30 12:04:24 +02:00
|
|
|
include: T_INCLUDE value
|
2012-07-02 10:29:32 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
context->HandleInclude(*$2, false, DebugInfoRange(@1, @2));
|
2013-08-30 12:04:24 +02:00
|
|
|
delete $2;
|
2013-02-01 22:44:58 +01:00
|
|
|
}
|
|
|
|
| T_INCLUDE T_STRING_ANGLE
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
context->HandleInclude($2, true, DebugInfoRange(@1, @2));
|
2013-02-11 09:55:32 +01:00
|
|
|
free($2);
|
2012-07-02 10:29:32 +02:00
|
|
|
}
|
2013-11-29 10:39:48 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
include_recursive: T_INCLUDE_RECURSIVE value
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
context->HandleIncludeRecursive(*$2, "*.conf", DebugInfoRange(@1, @2));
|
2013-11-29 10:39:48 +01:00
|
|
|
delete $2;
|
|
|
|
}
|
|
|
|
| T_INCLUDE_RECURSIVE value value
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
context->HandleIncludeRecursive(*$2, *$3, DebugInfoRange(@1, @3));
|
2013-11-29 10:39:48 +01:00
|
|
|
delete $2;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
;
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2013-01-17 15:05:34 +01:00
|
|
|
library: T_LIBRARY T_STRING
|
|
|
|
{
|
|
|
|
context->HandleLibrary($2);
|
2013-02-11 10:10:17 +01:00
|
|
|
free($2);
|
2013-01-17 15:05:34 +01:00
|
|
|
}
|
2013-12-04 11:04:36 +01:00
|
|
|
;
|
2013-01-17 15:05:34 +01:00
|
|
|
|
2014-03-18 08:34:56 +01:00
|
|
|
variable: variable_decl identifier T_SET value
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2013-09-10 16:03:36 +02:00
|
|
|
Value *value = $4;
|
|
|
|
if (value->IsObjectType<ExpressionList>()) {
|
2013-11-06 08:51:56 +01:00
|
|
|
Dictionary::Ptr dict = make_shared<Dictionary>();
|
2013-09-10 16:03:36 +02:00
|
|
|
ExpressionList::Ptr exprl = *value;
|
|
|
|
exprl->Execute(dict);
|
|
|
|
delete value;
|
|
|
|
value = new Value(dict);
|
|
|
|
}
|
|
|
|
|
2013-12-04 11:04:36 +01:00
|
|
|
ScriptVariable::Ptr sv = ScriptVariable::Set($2, *value);
|
2014-02-12 11:49:38 +01:00
|
|
|
sv->SetConstant(true);
|
2013-12-04 11:04:36 +01:00
|
|
|
|
2013-06-25 09:21:25 +02:00
|
|
|
free($2);
|
2013-09-10 16:03:36 +02:00
|
|
|
delete value;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-12-04 11:04:36 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_decl: T_VAR
|
|
|
|
{
|
|
|
|
$$ = true;
|
|
|
|
}
|
|
|
|
| T_CONST
|
|
|
|
{
|
|
|
|
$$ = false;
|
|
|
|
}
|
|
|
|
;
|
2013-06-25 09:21:25 +02:00
|
|
|
|
2013-01-29 12:11:05 +01:00
|
|
|
identifier: T_IDENTIFIER
|
|
|
|
| T_STRING
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
type: partial_specifier T_TYPE identifier
|
|
|
|
{
|
|
|
|
String name = String($3);
|
2013-02-11 09:55:32 +01:00
|
|
|
free($3);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Type = ConfigType::GetByName(name);
|
2013-02-11 09:55:32 +01:00
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
if (!m_Type) {
|
|
|
|
if ($1)
|
2014-03-22 08:40:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ConfigError("Partial type definition for unknown type '" + name + "'") << errinfo_debuginfo(DebugInfoRange(@1, @3)));
|
2013-02-02 14:28:11 +01:00
|
|
|
|
2014-03-21 10:22:59 +01:00
|
|
|
m_Type = make_shared<ConfigType>(name, DebugInfoRange(@1, @3));
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Type->Register();
|
2013-02-02 14:28:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
type_inherits_specifier typerulelist
|
|
|
|
{
|
|
|
|
TypeRuleList::Ptr ruleList = *$6;
|
|
|
|
m_Type->GetRuleList()->AddRules(ruleList);
|
2013-02-06 00:32:05 +01:00
|
|
|
m_Type->GetRuleList()->AddRequires(ruleList);
|
|
|
|
|
|
|
|
String validator = ruleList->GetValidator();
|
|
|
|
if (!validator.IsEmpty())
|
|
|
|
m_Type->GetRuleList()->SetValidator(validator);
|
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
delete $6;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
partial_specifier: /* Empty */
|
|
|
|
{
|
|
|
|
$$ = 0;
|
|
|
|
}
|
|
|
|
| T_PARTIAL
|
|
|
|
{
|
|
|
|
$$ = 1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
typerulelist: '{'
|
|
|
|
{
|
2013-11-06 08:51:56 +01:00
|
|
|
m_RuleLists.push(make_shared<TypeRuleList>());
|
2013-02-02 14:28:11 +01:00
|
|
|
}
|
|
|
|
typerules
|
|
|
|
'}'
|
|
|
|
{
|
|
|
|
$$ = new Value(m_RuleLists.top());
|
|
|
|
m_RuleLists.pop();
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
typerules: typerules_inner
|
|
|
|
| typerules_inner ','
|
|
|
|
|
|
|
|
typerules_inner: /* empty */
|
|
|
|
| typerule
|
|
|
|
| typerules_inner ',' typerule
|
|
|
|
;
|
|
|
|
|
2013-02-06 00:32:05 +01:00
|
|
|
typerule: T_REQUIRE T_STRING
|
|
|
|
{
|
|
|
|
m_RuleLists.top()->AddRequire($2);
|
2013-02-11 10:10:17 +01:00
|
|
|
free($2);
|
2013-02-06 00:32:05 +01:00
|
|
|
}
|
|
|
|
| T_VALIDATOR T_STRING
|
|
|
|
{
|
|
|
|
m_RuleLists.top()->SetValidator($2);
|
2013-02-11 10:10:17 +01:00
|
|
|
free($2);
|
2013-02-06 00:32:05 +01:00
|
|
|
}
|
|
|
|
| T_ATTRIBUTE type T_STRING
|
2013-02-02 14:28:11 +01:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
TypeRule rule($2, String(), $3, TypeRuleList::Ptr(), DebugInfoRange(@1, @3));
|
2013-02-11 10:10:17 +01:00
|
|
|
free($3);
|
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
m_RuleLists.top()->AddRule(rule);
|
|
|
|
}
|
2013-05-03 10:48:28 +02:00
|
|
|
| T_ATTRIBUTE T_TYPE_NAME '(' identifier ')' T_STRING
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
TypeRule rule($2, $4, $6, TypeRuleList::Ptr(), DebugInfoRange(@1, @6));
|
2013-05-03 10:48:28 +02:00
|
|
|
free($4);
|
|
|
|
free($6);
|
|
|
|
|
|
|
|
m_RuleLists.top()->AddRule(rule);
|
|
|
|
}
|
2013-02-06 00:32:05 +01:00
|
|
|
| T_ATTRIBUTE type T_STRING typerulelist
|
2013-02-02 14:28:11 +01:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
TypeRule rule($2, String(), $3, *$4, DebugInfoRange(@1, @4));
|
2013-02-11 10:10:17 +01:00
|
|
|
free($3);
|
2013-02-06 00:32:05 +01:00
|
|
|
delete $4;
|
2013-02-02 14:28:11 +01:00
|
|
|
m_RuleLists.top()->AddRule(rule);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
type_inherits_specifier: /* empty */
|
2013-06-06 11:26:00 +02:00
|
|
|
| T_INHERITS identifier
|
2013-02-02 14:28:11 +01:00
|
|
|
{
|
|
|
|
m_Type->SetParent($2);
|
2013-02-11 10:10:17 +01:00
|
|
|
free($2);
|
2013-02-02 14:28:11 +01:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
type: T_TYPE_DICTIONARY
|
2013-03-14 12:17:46 +01:00
|
|
|
| T_TYPE_ARRAY
|
2013-02-02 14:28:11 +01:00
|
|
|
| T_TYPE_NUMBER
|
|
|
|
| T_TYPE_STRING
|
|
|
|
| T_TYPE_SCALAR
|
|
|
|
| T_TYPE_ANY
|
2013-05-03 10:48:28 +02:00
|
|
|
| T_TYPE_NAME
|
2013-02-02 14:28:11 +01:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2013-02-11 09:55:32 +01:00
|
|
|
object:
|
2012-06-01 16:49:33 +02:00
|
|
|
{
|
|
|
|
m_Abstract = false;
|
|
|
|
}
|
2014-03-21 10:22:59 +01:00
|
|
|
object_declaration identifier T_STRING object_inherits_specifier expressionlist
|
2012-06-01 16:49:33 +02:00
|
|
|
{
|
2014-03-21 14:48:18 +01:00
|
|
|
DebugInfo di = DebugInfoRange(@2, @6);
|
|
|
|
ConfigItemBuilder::Ptr item = make_shared<ConfigItemBuilder>(di);
|
2013-02-11 09:55:32 +01:00
|
|
|
|
2014-03-20 15:37:59 +01:00
|
|
|
ConfigItem::Ptr oldItem = ConfigItem::GetObject($3, $4);
|
|
|
|
|
|
|
|
if (oldItem) {
|
|
|
|
std::ostringstream msgbuf;
|
2014-03-21 14:48:18 +01:00
|
|
|
msgbuf << "Object '" << $4 << "' of type '" << $3 << "' re-defined: " << di << "; previous definition: " << oldItem->GetDebugInfo();
|
2014-03-20 15:37:59 +01:00
|
|
|
free($3);
|
|
|
|
free($4);
|
|
|
|
delete $5;
|
2014-03-22 08:40:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ConfigError(msgbuf.str()) << errinfo_debuginfo(di));
|
2014-03-20 15:37:59 +01:00
|
|
|
}
|
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
item->SetType($3);
|
2013-02-11 09:55:32 +01:00
|
|
|
|
2013-12-12 11:48:43 +01:00
|
|
|
if (strchr($4, '!') != NULL) {
|
2013-05-08 10:50:56 +02:00
|
|
|
std::ostringstream msgbuf;
|
2013-12-12 11:48:43 +01:00
|
|
|
msgbuf << "Name for object '" << $4 << "' of type '" << $3 << "' is invalid: Object names may not contain '!'";
|
2013-05-08 10:50:56 +02:00
|
|
|
free($3);
|
2014-03-22 08:40:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ConfigError(msgbuf.str()) << errinfo_debuginfo(@4));
|
2013-05-08 10:50:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
free($3);
|
2013-05-07 09:22:39 +02:00
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
item->SetName($4);
|
2013-02-16 09:18:34 +01:00
|
|
|
free($4);
|
2013-02-11 09:55:32 +01:00
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
if ($5) {
|
|
|
|
BOOST_FOREACH(const String& parent, *$5) {
|
|
|
|
item->AddParent(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete $5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($6) {
|
|
|
|
ExpressionList::Ptr exprl = ExpressionList::Ptr($6);
|
|
|
|
item->AddExpressionList(exprl);
|
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
item->SetAbstract(m_Abstract);
|
2012-06-01 16:49:33 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
item->Compile()->Register();
|
2013-03-27 13:50:53 +01:00
|
|
|
item.reset();
|
2012-06-01 16:49:33 +02:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2013-09-25 14:10:26 +02:00
|
|
|
object_declaration: T_OBJECT
|
2013-02-16 09:18:34 +01:00
|
|
|
| T_TEMPLATE
|
|
|
|
{
|
|
|
|
m_Abstract = true;
|
|
|
|
}
|
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
object_inherits_list:
|
2012-06-01 16:49:33 +02:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
$$ = NULL;
|
2012-06-01 16:49:33 +02:00
|
|
|
}
|
2013-03-27 13:50:53 +01:00
|
|
|
| T_STRING
|
|
|
|
{
|
|
|
|
$$ = new std::vector<String>();
|
|
|
|
$$->push_back($1);
|
2013-04-04 13:51:36 +02:00
|
|
|
free($1);
|
2013-03-27 13:50:53 +01:00
|
|
|
}
|
|
|
|
| object_inherits_list ',' T_STRING
|
|
|
|
{
|
|
|
|
if ($1)
|
|
|
|
$$ = $1;
|
|
|
|
else
|
|
|
|
$$ = new std::vector<String>();
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
$$->push_back($3);
|
2013-04-04 13:51:36 +02:00
|
|
|
free($3);
|
2013-03-27 13:50:53 +01:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2013-03-27 13:50:53 +01:00
|
|
|
object_inherits_specifier:
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
$$ = NULL;
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
2013-03-27 13:50:53 +01:00
|
|
|
| T_INHERITS object_inherits_list
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
expressionlist: '{' expressions '}'
|
|
|
|
{
|
2013-09-13 09:51:13 +02:00
|
|
|
if ($2)
|
|
|
|
$$ = $2;
|
|
|
|
else
|
|
|
|
$$ = new ExpressionList();
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2012-06-29 10:39:36 +02:00
|
|
|
expressions: expressions_inner
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2012-06-29 10:39:36 +02:00
|
|
|
| expressions_inner ','
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2012-06-29 10:39:36 +02:00
|
|
|
|
|
|
|
expressions_inner: /* empty */
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = NULL;
|
|
|
|
}
|
2012-06-01 16:49:33 +02:00
|
|
|
| expression
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = new ExpressionList();
|
|
|
|
$$->AddExpression(*$1);
|
2013-04-04 13:51:36 +02:00
|
|
|
delete $1;
|
2013-03-27 13:50:53 +01:00
|
|
|
}
|
2012-06-29 10:39:36 +02:00
|
|
|
| expressions_inner ',' expression
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
if ($1)
|
|
|
|
$$ = $1;
|
|
|
|
else
|
|
|
|
$$ = new ExpressionList();
|
|
|
|
|
|
|
|
$$->AddExpression(*$3);
|
2013-04-04 13:51:36 +02:00
|
|
|
delete $3;
|
2013-03-27 13:50:53 +01:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2013-01-29 12:11:05 +01:00
|
|
|
expression: identifier operator value
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Expression($1, $2, *$3, DebugInfoRange(@1, @3));
|
2012-05-31 16:04:51 +02:00
|
|
|
free($1);
|
|
|
|
delete $3;
|
2012-06-01 16:49:33 +02:00
|
|
|
}
|
2013-01-29 12:11:05 +01:00
|
|
|
| identifier '[' T_STRING ']' operator value
|
2012-06-01 16:49:33 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
Expression subexpr($3, $5, *$6, DebugInfoRange(@1, @6));
|
2012-06-01 16:49:33 +02:00
|
|
|
free($3);
|
|
|
|
delete $6;
|
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
ExpressionList::Ptr subexprl = make_shared<ExpressionList>();
|
2012-06-01 16:49:33 +02:00
|
|
|
subexprl->AddExpression(subexpr);
|
|
|
|
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Expression($1, OperatorPlus, subexprl, DebugInfoRange(@1, @6));
|
2012-06-06 14:38:28 +02:00
|
|
|
free($1);
|
2012-06-01 16:49:33 +02:00
|
|
|
}
|
2012-05-31 16:04:51 +02:00
|
|
|
;
|
|
|
|
|
2014-03-18 08:34:56 +01:00
|
|
|
operator: T_SET
|
2012-05-31 16:04:51 +02:00
|
|
|
| T_PLUS_EQUAL
|
|
|
|
| T_MINUS_EQUAL
|
|
|
|
| T_MULTIPLY_EQUAL
|
|
|
|
| T_DIVIDE_EQUAL
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
|
|
|
|
2013-03-14 12:17:46 +01:00
|
|
|
array_items: array_items_inner
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2013-03-14 12:17:46 +01:00
|
|
|
| array_items_inner ','
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2013-03-14 12:17:46 +01:00
|
|
|
|
|
|
|
array_items_inner: /* empty */
|
2013-03-27 13:50:53 +01:00
|
|
|
{
|
|
|
|
$$ = NULL;
|
|
|
|
}
|
2014-03-19 10:51:09 +01:00
|
|
|
| aexpression
|
2013-03-14 12:17:46 +01:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
$$ = new Array();
|
|
|
|
$$->Add(*$1);
|
2013-04-04 13:51:36 +02:00
|
|
|
delete $1;
|
2013-03-14 12:17:46 +01:00
|
|
|
}
|
2014-03-19 10:51:09 +01:00
|
|
|
| array_items_inner ',' aexpression
|
2013-03-14 12:17:46 +01:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
if ($1)
|
|
|
|
$$ = $1;
|
|
|
|
else
|
|
|
|
$$ = new Array();
|
|
|
|
|
|
|
|
$$->Add(*$3);
|
2013-04-04 13:51:36 +02:00
|
|
|
delete $3;
|
2013-03-14 12:17:46 +01:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2014-03-19 10:51:09 +01:00
|
|
|
aexpression: T_STRING
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEReturn, AValue(ATSimple, $1), @1));
|
2012-06-06 14:38:28 +02:00
|
|
|
free($1);
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
|
|
|
| T_NUMBER
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEReturn, AValue(ATSimple, $1), @1));
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
2012-06-01 16:49:33 +02:00
|
|
|
| T_NULL
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEReturn, AValue(ATSimple, Empty), @1));
|
2012-06-01 16:49:33 +02:00
|
|
|
}
|
2014-03-19 10:51:09 +01:00
|
|
|
| T_IDENTIFIER '(' array_items ')'
|
2013-03-14 12:17:46 +01:00
|
|
|
{
|
2014-03-19 10:51:09 +01:00
|
|
|
Array::Ptr arguments = Array::Ptr($3);
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEFunctionCall, AValue(ATSimple, $1), AValue(ATSimple, arguments), DebugInfoRange(@1, @4)));
|
2014-03-19 10:51:09 +01:00
|
|
|
free($1);
|
2013-08-30 12:04:24 +02:00
|
|
|
}
|
|
|
|
| T_IDENTIFIER
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEReturn, AValue(ATVariable, $1), @1));
|
2013-06-25 09:21:25 +02:00
|
|
|
free($1);
|
|
|
|
}
|
2014-03-19 10:51:09 +01:00
|
|
|
| '!' aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AENegate, static_cast<AExpression::Ptr>(*$2), DebugInfoRange(@1, @2)));
|
2014-03-19 10:51:09 +01:00
|
|
|
delete $2;
|
|
|
|
}
|
2013-11-20 16:41:48 +01:00
|
|
|
| '~' aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AENegate, static_cast<AExpression::Ptr>(*$2), DebugInfoRange(@1, @2)));
|
2013-12-04 10:39:46 +01:00
|
|
|
delete $2;
|
2013-11-20 16:41:48 +01:00
|
|
|
}
|
2014-03-19 10:51:09 +01:00
|
|
|
| '[' array_items ']'
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEArray, AValue(ATSimple, Array::Ptr($2)), DebugInfoRange(@1, @3)));
|
2014-03-19 10:51:09 +01:00
|
|
|
}
|
2014-03-18 15:29:04 +01:00
|
|
|
| '(' aexpression ')'
|
2014-03-18 08:34:56 +01:00
|
|
|
{
|
2014-03-18 15:29:04 +01:00
|
|
|
$$ = $2;
|
2014-03-18 08:34:56 +01:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '+' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEAdd, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '-' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AESubtract, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '*' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEMultiply, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '/' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEDivide, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '&' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEBinaryAnd, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression '|' aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEBinaryOr, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @2)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression T_IN aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEIn, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression T_NOT_IN aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AENotIn, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
2014-03-19 13:25:06 +01:00
|
|
|
| aexpression T_LESS_THAN_OR_EQUAL aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AELessThanOrEqual, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-19 13:25:06 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression T_GREATER_THAN_OR_EQUAL aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEGreaterThanOrEqual, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-19 13:25:06 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression '<' aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AELessThan, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-19 13:25:06 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression '>' aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEGreaterThan, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-19 13:25:06 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
2014-03-18 15:29:04 +01:00
|
|
|
| aexpression T_EQUAL aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEEqual, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression T_NOT_EQUAL aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AENotEqual, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression T_SHIFT_LEFT aexpression
|
2013-06-26 08:21:35 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEShiftLeft, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-26 08:21:35 +02:00
|
|
|
}
|
2013-10-20 15:06:05 +02:00
|
|
|
| aexpression T_SHIFT_RIGHT aexpression
|
2013-06-26 08:21:35 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AEShiftRight, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2013-09-18 07:46:07 +02:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-26 08:21:35 +02:00
|
|
|
}
|
2014-03-18 15:29:04 +01:00
|
|
|
| aexpression T_LOGICAL_AND aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AELogicalAnd, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
|
|
|
}
|
|
|
|
| aexpression T_LOGICAL_OR aexpression
|
|
|
|
{
|
2014-03-21 10:22:59 +01:00
|
|
|
$$ = new Value(make_shared<AExpression>(AELogicalOr, static_cast<AExpression::Ptr>(*$1), static_cast<AExpression::Ptr>(*$3), DebugInfoRange(@1, @3)));
|
2014-03-18 15:29:04 +01:00
|
|
|
delete $1;
|
|
|
|
delete $3;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2014-03-19 10:51:09 +01:00
|
|
|
value: expressionlist
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2013-03-27 13:50:53 +01:00
|
|
|
ExpressionList::Ptr exprl = ExpressionList::Ptr($1);
|
|
|
|
$$ = new Value(exprl);
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
2014-03-19 09:38:45 +01:00
|
|
|
| aexpression
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2013-10-20 15:06:05 +02:00
|
|
|
AExpression::Ptr aexpr = *$1;
|
2014-03-18 08:36:40 +01:00
|
|
|
$$ = new Value(aexpr->Evaluate(Dictionary::Ptr()));
|
2013-10-20 15:06:05 +02:00
|
|
|
delete $1;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
;
|
2014-03-18 11:44:09 +01:00
|
|
|
|
|
|
|
optional_template: /* empty */
|
|
|
|
| T_TEMPLATE
|
|
|
|
;
|
|
|
|
|
2014-03-19 09:38:45 +01:00
|
|
|
apply: T_APPLY optional_template identifier identifier T_TO identifier T_WHERE aexpression
|
2014-03-18 11:44:09 +01:00
|
|
|
{
|
|
|
|
if (!ApplyRule::IsValidCombination($3, $6)) {
|
2014-03-22 08:40:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ConfigError("'apply' cannot be used with types '" + String($3) + "' and '" + String($6) + "'.") << errinfo_debuginfo(@1));
|
2014-03-18 11:44:09 +01:00
|
|
|
}
|
|
|
|
|
2014-03-20 13:02:02 +01:00
|
|
|
Array::Ptr arguments = make_shared<Array>();
|
|
|
|
arguments->Add(*$8);
|
2014-03-18 11:44:09 +01:00
|
|
|
delete $8;
|
2014-03-20 13:02:02 +01:00
|
|
|
|
2014-03-21 10:22:59 +01:00
|
|
|
AExpression::Ptr aexpr = make_shared<AExpression>(AEFunctionCall, AValue(ATSimple, "bool"), AValue(ATSimple, arguments), @8);
|
2014-03-20 13:02:02 +01:00
|
|
|
|
2014-03-21 10:22:59 +01:00
|
|
|
ApplyRule::AddRule($3, $4, $6, aexpr, DebugInfoRange(@1, @8));
|
2014-03-18 11:44:09 +01:00
|
|
|
}
|
2012-05-31 08:45:02 +02:00
|
|
|
%%
|