// A Bison parser, made by GNU Bison 3.0.4. // Skeleton implementation for Bison LALR(1) parsers in C++ // Copyright (C) 2002-2015 Free Software Foundation, Inc. // 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 3 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, see . // As a special exception, you may create a larger work that contains // part or all of the Bison parser skeleton and distribute that work // under terms of your choice, so long as that work isn't itself a // parser generator using the skeleton or a modified version thereof // as a parser skeleton. Alternatively, if you modify or redistribute // the parser skeleton itself, you may (at your option) remove this // special exception, which will cause the skeleton and the resulting // Bison output files to be licensed under the GNU General Public // License without this special exception. // This special exception was added by the Free Software Foundation in // version 2.2 of Bison. // First part of user declarations. #line 37 "d4_function_parser.tab.cc" // lalr1.cc:404 # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # endif #include "d4_function_parser.tab.hh" // User implementation prologue. #line 51 "d4_function_parser.tab.cc" // lalr1.cc:412 // Unqualified %code blocks. #line 77 "d4_function_parser.yy" // lalr1.cc:413 #include "BaseType.h" #include "DMR.h" #include "D4RValue.h" #include "ServerFunctionsList.h" #include "parser-util.h" /* include for all driver functions */ #include "D4FunctionEvaluator.h" using namespace libdap ; /* this is silly, but I can't figure out a way around it */ static int yylex(libdap::D4FunctionParser::semantic_type *yylval, libdap::location *loc, libdap::D4FunctionScanner &scanner, libdap::D4FunctionEvaluator &evaluator); #line 73 "d4_function_parser.tab.cc" // lalr1.cc:413 #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include // FIXME: INFRINGES ON USER NAME SPACE. # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif #define YYRHSLOC(Rhs, K) ((Rhs)[K].location) /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ # ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (N) \ { \ (Current).begin = YYRHSLOC (Rhs, 1).begin; \ (Current).end = YYRHSLOC (Rhs, N).end; \ } \ else \ { \ (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \ } \ while (/*CONSTCOND*/ false) # endif // Suppress unused-variable warnings by "using" E. #define YYUSE(E) ((void) (E)) // Enable debugging if requested. #if YYDEBUG // A pseudo ostream that takes yydebug_ into account. # define YYCDEBUG if (yydebug_) (*yycdebug_) # define YY_SYMBOL_PRINT(Title, Symbol) \ do { \ if (yydebug_) \ { \ *yycdebug_ << Title << ' '; \ yy_print_ (*yycdebug_, Symbol); \ *yycdebug_ << std::endl; \ } \ } while (false) # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug_) \ yy_reduce_print_ (Rule); \ } while (false) # define YY_STACK_PRINT() \ do { \ if (yydebug_) \ yystack_print_ (); \ } while (false) #else // !YYDEBUG # define YYCDEBUG if (false) std::cerr # define YY_SYMBOL_PRINT(Title, Symbol) YYUSE(Symbol) # define YY_REDUCE_PRINT(Rule) static_cast(0) # define YY_STACK_PRINT() static_cast(0) #endif // !YYDEBUG #define yyerrok (yyerrstatus_ = 0) #define yyclearin (yyla.clear ()) #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus_) #line 34 "d4_function_parser.yy" // lalr1.cc:479 namespace libdap { #line 159 "d4_function_parser.tab.cc" // lalr1.cc:479 /* Return YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. */ std::string D4FunctionParser::yytnamerr_ (const char *yystr) { if (*yystr == '"') { std::string yyr = ""; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; // Fall through. default: yyr += *yyp; break; case '"': return yyr; } do_not_strip_quotes: ; } return yystr; } /// Build a parser object. D4FunctionParser::D4FunctionParser (D4FunctionScanner &scanner_yyarg, D4FunctionEvaluator &evaluator_yyarg) : #if YYDEBUG yydebug_ (false), yycdebug_ (&std::cerr), #endif scanner (scanner_yyarg), evaluator (evaluator_yyarg) {} D4FunctionParser::~D4FunctionParser () {} /*---------------. | Symbol types. | `---------------*/ inline D4FunctionParser::syntax_error::syntax_error (const location_type& l, const std::string& m) : std::runtime_error (m) , location (l) {} // basic_symbol. template inline D4FunctionParser::basic_symbol::basic_symbol () : value () {} template inline D4FunctionParser::basic_symbol::basic_symbol (const basic_symbol& other) : Base (other) , value () , location (other.location) { switch (other.type_get ()) { case 7: // "function name" case 44: // fname value.copy< D4Function > (other.value); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.copy< D4RValue* > (other.value); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.copy< D4RValueList* > (other.value); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.copy< std::string > (other.value); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.copy< std::vector* > (other.value); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.copy< std::vector* > (other.value); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.copy< std::vector* > (other.value); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.copy< std::vector* > (other.value); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.copy< std::vector* > (other.value); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.copy< std::vector* > (other.value); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.copy< std::vector* > (other.value); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.copy< std::vector* > (other.value); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.copy< std::vector* > (other.value); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.copy< std::vector* > (other.value); break; default: break; } } template inline D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const semantic_type& v, const location_type& l) : Base (t) , value () , location (l) { (void) v; switch (this->type_get ()) { case 7: // "function name" case 44: // fname value.copy< D4Function > (v); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.copy< D4RValue* > (v); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.copy< D4RValueList* > (v); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.copy< std::string > (v); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.copy< std::vector* > (v); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.copy< std::vector* > (v); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.copy< std::vector* > (v); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.copy< std::vector* > (v); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.copy< std::vector* > (v); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.copy< std::vector* > (v); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.copy< std::vector* > (v); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.copy< std::vector* > (v); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.copy< std::vector* > (v); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.copy< std::vector* > (v); break; default: break; } } // Implementation of basic_symbol constructor for each type. template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const location_type& l) : Base (t) , value () , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const D4Function v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const D4RValue* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const D4RValueList* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::string v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template D4FunctionParser::basic_symbol::basic_symbol (typename Base::kind_type t, const std::vector* v, const location_type& l) : Base (t) , value (v) , location (l) {} template inline D4FunctionParser::basic_symbol::~basic_symbol () { clear (); } template inline void D4FunctionParser::basic_symbol::clear () { // User destructor. symbol_number_type yytype = this->type_get (); basic_symbol& yysym = *this; (void) yysym; switch (yytype) { default: break; } // Type destructor. switch (yytype) { case 7: // "function name" case 44: // fname value.template destroy< D4Function > (); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.template destroy< D4RValue* > (); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.template destroy< D4RValueList* > (); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.template destroy< std::string > (); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.template destroy< std::vector* > (); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.template destroy< std::vector* > (); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.template destroy< std::vector* > (); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.template destroy< std::vector* > (); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.template destroy< std::vector* > (); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.template destroy< std::vector* > (); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.template destroy< std::vector* > (); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.template destroy< std::vector* > (); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.template destroy< std::vector* > (); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.template destroy< std::vector* > (); break; default: break; } Base::clear (); } template inline bool D4FunctionParser::basic_symbol::empty () const { return Base::type_get () == empty_symbol; } template inline void D4FunctionParser::basic_symbol::move (basic_symbol& s) { super_type::move(s); switch (this->type_get ()) { case 7: // "function name" case 44: // fname value.move< D4Function > (s.value); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.move< D4RValue* > (s.value); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.move< D4RValueList* > (s.value); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.move< std::string > (s.value); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.move< std::vector* > (s.value); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.move< std::vector* > (s.value); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.move< std::vector* > (s.value); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.move< std::vector* > (s.value); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.move< std::vector* > (s.value); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.move< std::vector* > (s.value); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.move< std::vector* > (s.value); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.move< std::vector* > (s.value); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.move< std::vector* > (s.value); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.move< std::vector* > (s.value); break; default: break; } location = s.location; } // by_type. inline D4FunctionParser::by_type::by_type () : type (empty_symbol) {} inline D4FunctionParser::by_type::by_type (const by_type& other) : type (other.type) {} inline D4FunctionParser::by_type::by_type (token_type t) : type (yytranslate_ (t)) {} inline void D4FunctionParser::by_type::clear () { type = empty_symbol; } inline void D4FunctionParser::by_type::move (by_type& that) { type = that.type; that.clear (); } inline int D4FunctionParser::by_type::type_get () const { return type; } // Implementation of make_symbol for each symbol type. D4FunctionParser::symbol_type D4FunctionParser::make_END (const location_type& l) { return symbol_type (token::END, l); } D4FunctionParser::symbol_type D4FunctionParser::make_WORD (const std::string& v, const location_type& l) { return symbol_type (token::WORD, v, l); } D4FunctionParser::symbol_type D4FunctionParser::make_STRING (const std::string& v, const location_type& l) { return symbol_type (token::STRING, v, l); } D4FunctionParser::symbol_type D4FunctionParser::make_SEMICOLON (const location_type& l) { return symbol_type (token::SEMICOLON, l); } D4FunctionParser::symbol_type D4FunctionParser::make_COLON (const location_type& l) { return symbol_type (token::COLON, l); } D4FunctionParser::symbol_type D4FunctionParser::make_LPAREN (const location_type& l) { return symbol_type (token::LPAREN, l); } D4FunctionParser::symbol_type D4FunctionParser::make_RPAREN (const location_type& l) { return symbol_type (token::RPAREN, l); } D4FunctionParser::symbol_type D4FunctionParser::make_COMMA (const location_type& l) { return symbol_type (token::COMMA, l); } D4FunctionParser::symbol_type D4FunctionParser::make_GROUP_SEP (const location_type& l) { return symbol_type (token::GROUP_SEP, l); } D4FunctionParser::symbol_type D4FunctionParser::make_PATH_SEP (const location_type& l) { return symbol_type (token::PATH_SEP, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_BYTE (const location_type& l) { return symbol_type (token::DOLLAR_BYTE, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_UINT8 (const location_type& l) { return symbol_type (token::DOLLAR_UINT8, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_INT8 (const location_type& l) { return symbol_type (token::DOLLAR_INT8, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_UINT16 (const location_type& l) { return symbol_type (token::DOLLAR_UINT16, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_INT16 (const location_type& l) { return symbol_type (token::DOLLAR_INT16, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_UINT32 (const location_type& l) { return symbol_type (token::DOLLAR_UINT32, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_INT32 (const location_type& l) { return symbol_type (token::DOLLAR_INT32, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_UINT64 (const location_type& l) { return symbol_type (token::DOLLAR_UINT64, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_INT64 (const location_type& l) { return symbol_type (token::DOLLAR_INT64, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_FLOAT32 (const location_type& l) { return symbol_type (token::DOLLAR_FLOAT32, l); } D4FunctionParser::symbol_type D4FunctionParser::make_DOLLAR_FLOAT64 (const location_type& l) { return symbol_type (token::DOLLAR_FLOAT64, l); } // by_state. inline D4FunctionParser::by_state::by_state () : state (empty_state) {} inline D4FunctionParser::by_state::by_state (const by_state& other) : state (other.state) {} inline void D4FunctionParser::by_state::clear () { state = empty_state; } inline void D4FunctionParser::by_state::move (by_state& that) { state = that.state; that.clear (); } inline D4FunctionParser::by_state::by_state (state_type s) : state (s) {} inline D4FunctionParser::symbol_number_type D4FunctionParser::by_state::type_get () const { if (state == empty_state) return empty_symbol; else return yystos_[state]; } inline D4FunctionParser::stack_symbol_type::stack_symbol_type () {} inline D4FunctionParser::stack_symbol_type::stack_symbol_type (state_type s, symbol_type& that) : super_type (s, that.location) { switch (that.type_get ()) { case 7: // "function name" case 44: // fname value.move< D4Function > (that.value); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.move< D4RValue* > (that.value); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.move< D4RValueList* > (that.value); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.move< std::string > (that.value); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.move< std::vector* > (that.value); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.move< std::vector* > (that.value); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.move< std::vector* > (that.value); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.move< std::vector* > (that.value); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.move< std::vector* > (that.value); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.move< std::vector* > (that.value); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.move< std::vector* > (that.value); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.move< std::vector* > (that.value); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.move< std::vector* > (that.value); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.move< std::vector* > (that.value); break; default: break; } // that is emptied. that.type = empty_symbol; } inline D4FunctionParser::stack_symbol_type& D4FunctionParser::stack_symbol_type::operator= (const stack_symbol_type& that) { state = that.state; switch (that.type_get ()) { case 7: // "function name" case 44: // fname value.copy< D4Function > (that.value); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant value.copy< D4RValue* > (that.value); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args value.copy< D4RValueList* > (that.value); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name value.copy< std::string > (that.value); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list value.copy< std::vector* > (that.value); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list value.copy< std::vector* > (that.value); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list value.copy< std::vector* > (that.value); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list value.copy< std::vector* > (that.value); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list value.copy< std::vector* > (that.value); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list value.copy< std::vector* > (that.value); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list value.copy< std::vector* > (that.value); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list value.copy< std::vector* > (that.value); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list value.copy< std::vector* > (that.value); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list value.copy< std::vector* > (that.value); break; default: break; } location = that.location; return *this; } template inline void D4FunctionParser::yy_destroy_ (const char* yymsg, basic_symbol& yysym) const { if (yymsg) YY_SYMBOL_PRINT (yymsg, yysym); } #if YYDEBUG template void D4FunctionParser::yy_print_ (std::ostream& yyo, const basic_symbol& yysym) const { std::ostream& yyoutput = yyo; YYUSE (yyoutput); symbol_number_type yytype = yysym.type_get (); // Avoid a (spurious) G++ 4.8 warning about "array subscript is // below array bounds". if (yysym.empty ()) std::abort (); yyo << (yytype < yyntokens_ ? "token" : "nterm") << ' ' << yytname_[yytype] << " (" << yysym.location << ": "; YYUSE (yytype); yyo << ')'; } #endif inline void D4FunctionParser::yypush_ (const char* m, state_type s, symbol_type& sym) { stack_symbol_type t (s, sym); yypush_ (m, t); } inline void D4FunctionParser::yypush_ (const char* m, stack_symbol_type& s) { if (m) YY_SYMBOL_PRINT (m, s); yystack_.push (s); } inline void D4FunctionParser::yypop_ (unsigned int n) { yystack_.pop (n); } #if YYDEBUG std::ostream& D4FunctionParser::debug_stream () const { return *yycdebug_; } void D4FunctionParser::set_debug_stream (std::ostream& o) { yycdebug_ = &o; } D4FunctionParser::debug_level_type D4FunctionParser::debug_level () const { return yydebug_; } void D4FunctionParser::set_debug_level (debug_level_type l) { yydebug_ = l; } #endif // YYDEBUG inline D4FunctionParser::state_type D4FunctionParser::yy_lr_goto_state_ (state_type yystate, int yysym) { int yyr = yypgoto_[yysym - yyntokens_] + yystate; if (0 <= yyr && yyr <= yylast_ && yycheck_[yyr] == yystate) return yytable_[yyr]; else return yydefgoto_[yysym - yyntokens_]; } inline bool D4FunctionParser::yy_pact_value_is_default_ (int yyvalue) { return yyvalue == yypact_ninf_; } inline bool D4FunctionParser::yy_table_value_is_error_ (int yyvalue) { return yyvalue == yytable_ninf_; } int D4FunctionParser::parse () { // State. int yyn; /// Length of the RHS of the rule being reduced. int yylen = 0; // Error handling. int yynerrs_ = 0; int yyerrstatus_ = 0; /// The lookahead symbol. symbol_type yyla; /// The locations where the error started and ended. stack_symbol_type yyerror_range[3]; /// The return value of parse (). int yyresult; // FIXME: This shoud be completely indented. It is not yet to // avoid gratuitous conflicts when merging into the master branch. try { YYCDEBUG << "Starting parse" << std::endl; // User initialization code. #line 69 "d4_function_parser.yy" // lalr1.cc:745 { // Initialize the initial location. This is printed when the parser builds // its own error messages - when the parse fails as opposed to when the // function(s) name(s) a missing variable, ... yyla.location.initialize (evaluator.expression()); } #line 1301 "d4_function_parser.tab.cc" // lalr1.cc:745 /* Initialize the stack. The initial state will be set in yynewstate, since the latter expects the semantical and the location values to have been already stored, initialize these stacks with a primary value. */ yystack_.clear (); yypush_ (YY_NULLPTR, 0, yyla); // A new symbol was pushed on the stack. yynewstate: YYCDEBUG << "Entering state " << yystack_[0].state << std::endl; // Accept? if (yystack_[0].state == yyfinal_) goto yyacceptlab; goto yybackup; // Backup. yybackup: // Try to take a decision without lookahead. yyn = yypact_[yystack_[0].state]; if (yy_pact_value_is_default_ (yyn)) goto yydefault; // Read a lookahead token. if (yyla.empty ()) { YYCDEBUG << "Reading a token: "; try { yyla.type = yytranslate_ (yylex (&yyla.value, &yyla.location, scanner, evaluator)); } catch (const syntax_error& yyexc) { error (yyexc); goto yyerrlab1; } } YY_SYMBOL_PRINT ("Next token is", yyla); /* If the proper action on seeing token YYLA.TYPE is to reduce or to detect an error, take that action. */ yyn += yyla.type_get (); if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yyla.type_get ()) goto yydefault; // Reduce or error. yyn = yytable_[yyn]; if (yyn <= 0) { if (yy_table_value_is_error_ (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } // Count tokens shifted since error; after three, turn off error status. if (yyerrstatus_) --yyerrstatus_; // Shift the lookahead token. yypush_ ("Shifting", yyn, yyla); goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact_[yystack_[0].state]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: yylen = yyr2_[yyn]; { stack_symbol_type yylhs; yylhs.state = yy_lr_goto_state_(yystack_[yylen].state, yyr1_[yyn]); /* Variants are always initialized to an empty instance of the correct type. The default '$$ = $1' action is NOT applied when using variants. */ switch (yyr1_[yyn]) { case 7: // "function name" case 44: // fname yylhs.value.build< D4Function > (); break; case 5: // "argument" case 6: // "function" case 8: // "variable or constant" case 9: // "array constant" case 43: // function case 46: // arg case 47: // variable_or_constant case 48: // array_constant yylhs.value.build< D4RValue* > (); break; case 3: // "functions" case 4: // "arguments" case 42: // functions case 45: // args yylhs.value.build< D4RValueList* > (); break; case 20: // "word" case 21: // "string" case 60: // id case 61: // group case 62: // path case 63: // name yylhs.value.build< std::string > (); break; case 10: // "fast byte arg list" case 50: // fast_byte_arg_list yylhs.value.build< std::vector* > (); break; case 18: // "fast float32 arg list" case 58: // fast_float32_arg_list yylhs.value.build< std::vector* > (); break; case 19: // "fast float64 arg list" case 59: // fast_float64_arg_list yylhs.value.build< std::vector* > (); break; case 13: // "fast int16 arg list" case 53: // fast_int16_arg_list yylhs.value.build< std::vector* > (); break; case 15: // "fast int32 arg list" case 55: // fast_int32_arg_list yylhs.value.build< std::vector* > (); break; case 17: // "fast int64 arg list" case 57: // fast_int64_arg_list yylhs.value.build< std::vector* > (); break; case 11: // "fast int8 arg list" case 51: // fast_int8_arg_list yylhs.value.build< std::vector* > (); break; case 12: // "fast uint16 arg list" case 52: // fast_uint16_arg_list yylhs.value.build< std::vector* > (); break; case 14: // "fast uint32 arg list" case 54: // fast_uint32_arg_list yylhs.value.build< std::vector* > (); break; case 16: // "fast uint64 arg list" case 56: // fast_uint64_arg_list yylhs.value.build< std::vector* > (); break; default: break; } // Compute the default @$. { slice slice (yystack_, yylen); YYLLOC_DEFAULT (yylhs.location, slice, yylen); } // Perform the reduction. YY_REDUCE_PRINT (yyn); try { switch (yyn) { case 2: #line 156 "d4_function_parser.yy" // lalr1.cc:859 { evaluator.set_result(yystack_[0].value.as< D4RValueList* > ()); } #line 1494 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 3: #line 162 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValueList* > () = new D4RValueList(yystack_[0].value.as< D4RValue* > ()); } #line 1502 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 4: #line 166 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< D4RValueList* > ()->add_rvalue(yystack_[0].value.as< D4RValue* > ()); yylhs.value.as< D4RValueList* > () = yystack_[2].value.as< D4RValueList* > (); } #line 1511 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 5: #line 173 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(yystack_[3].value.as< D4Function > (), yystack_[1].value.as< D4RValueList* > ()); // Build a D4RValue from a D4Function pointer and a D4RValueList } #line 1519 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 6: #line 179 "d4_function_parser.yy" // lalr1.cc:859 { D4Function f; if (!evaluator.sf_list()->find_function(yystack_[0].value.as< std::string > (), &f)) { // ...cloud use @1.{first,last}_column in these error messages. throw Error(malformed_expr, "'" + yystack_[0].value.as< std::string > () + "' is not a registered DAP4 server function."); } yylhs.value.as< D4Function > () = f; } #line 1533 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 7: #line 191 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValueList* > () = new D4RValueList(yystack_[0].value.as< D4RValue* > ()); // build a D4RValueList from the D4RValue } #line 1541 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 8: #line 195 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< D4RValueList* > ()->add_rvalue(yystack_[0].value.as< D4RValue* > ()); yylhs.value.as< D4RValueList* > () = yystack_[2].value.as< D4RValueList* > (); // Append the D4RValue ($3) to the D4RValueList ($1), then return } #line 1550 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 9: #line 202 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = yystack_[0].value.as< D4RValue* > (); } #line 1558 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 10: #line 206 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = yystack_[0].value.as< D4RValue* > (); } #line 1566 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 11: #line 210 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = yystack_[0].value.as< D4RValue* > (); } #line 1574 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 12: #line 216 "d4_function_parser.yy" // lalr1.cc:859 { D4RValue *rvalue = evaluator.build_rvalue(yystack_[0].value.as< std::string > ()); if (!rvalue) { throw Error(malformed_expr, "'" + yystack_[0].value.as< std::string > () + "' is not a variable, number or string."); } yylhs.value.as< D4RValue* > () = rvalue; } #line 1587 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 13: #line 228 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1596 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 14: #line 234 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1605 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 15: #line 240 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1614 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 16: #line 246 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1623 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 17: #line 252 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1632 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 18: #line 258 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1641 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 19: #line 264 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1650 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 20: #line 270 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1659 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 21: #line 276 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1668 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 22: #line 282 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1677 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 23: #line 288 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< D4RValue* > () = new D4RValue(*(yystack_[1].value.as< std::vector* > ())); delete yystack_[1].value.as< std::vector* > (); } #line 1686 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 24: #line 300 "d4_function_parser.yy" // lalr1.cc:859 { evaluator.set_arg_length_hint(get_uint64(yystack_[0].value.as< std::string > ().c_str())); } #line 1694 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 25: #line 306 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_byte(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1702 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 26: #line 310 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1711 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 27: #line 317 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_int8(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1719 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 28: #line 321 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1728 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 29: #line 328 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_uint16(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1736 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 30: #line 332 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1745 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 31: #line 339 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_int16(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1753 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 32: #line 343 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1762 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 33: #line 350 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_uint32(strtoul(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1770 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 34: #line 354 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtoul(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1779 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 35: #line 360 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_int32(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1787 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 36: #line 364 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtol(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1796 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 37: #line 371 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_uint64(strtoull(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1804 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 38: #line 375 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtoull(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1813 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 39: #line 382 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_int64(strtoll(yystack_[0].value.as< std::string > ().c_str(), 0, 0))); } #line 1821 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 40: #line 386 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtoll(yystack_[0].value.as< std::string > ().c_str(), 0, 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1830 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 41: #line 396 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_float32(strtof(yystack_[0].value.as< std::string > ().c_str(), 0))); } #line 1838 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 42: #line 400 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtof(yystack_[0].value.as< std::string > ().c_str(), 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1847 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 43: #line 407 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::vector* > () = evaluator.init_arg_list(dods_float64(strtod(yystack_[0].value.as< std::string > ().c_str(), 0))); } #line 1855 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 44: #line 411 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::vector* > ()->push_back(strtod(yystack_[0].value.as< std::string > ().c_str(), 0)); yylhs.value.as< std::vector* > () = yystack_[2].value.as< std::vector* > (); } #line 1864 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 45: #line 418 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > () = yystack_[0].value.as< std::string > (); } #line 1872 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 46: #line 422 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > ().append("/"); yylhs.value.as< std::string > ().append(yystack_[0].value.as< std::string > ()); } #line 1881 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 47: #line 427 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::string > ().append("/"); yystack_[2].value.as< std::string > ().append(yystack_[0].value.as< std::string > ()); yylhs.value.as< std::string > () = yystack_[2].value.as< std::string > (); } #line 1891 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 48: #line 435 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > ().append("/"); yylhs.value.as< std::string > ().append(yystack_[0].value.as< std::string > ()); } #line 1900 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 49: #line 440 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::string > ().append("."); yystack_[2].value.as< std::string > ().append(yystack_[0].value.as< std::string > ()); yylhs.value.as< std::string > () = yystack_[2].value.as< std::string > (); } #line 1910 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 50: #line 448 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > () = yystack_[0].value.as< std::string > (); } #line 1918 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 51: #line 452 "d4_function_parser.yy" // lalr1.cc:859 { yystack_[2].value.as< std::string > ().append("."); yystack_[2].value.as< std::string > ().append(yystack_[0].value.as< std::string > ()); yylhs.value.as< std::string > () = yystack_[2].value.as< std::string > (); } #line 1928 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 52: #line 463 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > ()=yystack_[0].value.as< std::string > (); } #line 1936 "d4_function_parser.tab.cc" // lalr1.cc:859 break; case 53: #line 467 "d4_function_parser.yy" // lalr1.cc:859 { yylhs.value.as< std::string > ()=yystack_[0].value.as< std::string > (); } #line 1944 "d4_function_parser.tab.cc" // lalr1.cc:859 break; #line 1948 "d4_function_parser.tab.cc" // lalr1.cc:859 default: break; } } catch (const syntax_error& yyexc) { error (yyexc); YYERROR; } YY_SYMBOL_PRINT ("-> $$ =", yylhs); yypop_ (yylen); yylen = 0; YY_STACK_PRINT (); // Shift the result of the reduction. yypush_ (YY_NULLPTR, yylhs); } goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: // If not already recovering from an error, report this error. if (!yyerrstatus_) { ++yynerrs_; error (yyla.location, yysyntax_error_ (yystack_[0].state, yyla)); } yyerror_range[1].location = yyla.location; if (yyerrstatus_ == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ // Return failure if at end of input. if (yyla.type_get () == yyeof_) YYABORT; else if (!yyla.empty ()) { yy_destroy_ ("Error: discarding", yyla); yyla.clear (); } } // Else will try to reuse lookahead token after shifting the error token. goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (false) goto yyerrorlab; yyerror_range[1].location = yystack_[yylen - 1].location; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ yypop_ (yylen); yylen = 0; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus_ = 3; // Each real token shifted decrements this. { stack_symbol_type error_token; for (;;) { yyn = yypact_[yystack_[0].state]; if (!yy_pact_value_is_default_ (yyn)) { yyn += yyterror_; if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_) { yyn = yytable_[yyn]; if (0 < yyn) break; } } // Pop the current state because it cannot handle the error token. if (yystack_.size () == 1) YYABORT; yyerror_range[1].location = yystack_[0].location; yy_destroy_ ("Error: popping", yystack_[0]); yypop_ (); YY_STACK_PRINT (); } yyerror_range[2].location = yyla.location; YYLLOC_DEFAULT (error_token.location, yyerror_range, 2); // Shift the error token. error_token.state = yyn; yypush_ ("Shifting", error_token); } goto yynewstate; // Accept. yyacceptlab: yyresult = 0; goto yyreturn; // Abort. yyabortlab: yyresult = 1; goto yyreturn; yyreturn: if (!yyla.empty ()) yy_destroy_ ("Cleanup: discarding lookahead", yyla); /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ yypop_ (yylen); while (1 < yystack_.size ()) { yy_destroy_ ("Cleanup: popping", yystack_[0]); yypop_ (); } return yyresult; } catch (...) { YYCDEBUG << "Exception caught: cleaning lookahead and stack" << std::endl; // Do not try to display the values of the reclaimed symbols, // as their printer might throw an exception. if (!yyla.empty ()) yy_destroy_ (YY_NULLPTR, yyla); while (1 < yystack_.size ()) { yy_destroy_ (YY_NULLPTR, yystack_[0]); yypop_ (); } throw; } } void D4FunctionParser::error (const syntax_error& yyexc) { error (yyexc.location, yyexc.what()); } // Generate an error message. std::string D4FunctionParser::yysyntax_error_ (state_type yystate, const symbol_type& yyla) const { // Number of reported tokens (one for the "unexpected", one per // "expected"). size_t yycount = 0; // Its maximum. enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; // Arguments of yyformat. char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yyla) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yyla. (However, yyla is currently not documented for users.) - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (!yyla.empty ()) { int yytoken = yyla.type_get (); yyarg[yycount++] = yytname_[yytoken]; int yyn = yypact_[yystate]; if (!yy_pact_value_is_default_ (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; // Stay within bounds of both yycheck and yytname. int yychecklim = yylast_ - yyn + 1; int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_; for (int yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck_[yyx + yyn] == yyx && yyx != yyterror_ && !yy_table_value_is_error_ (yytable_[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; break; } else yyarg[yycount++] = yytname_[yyx]; } } } char const* yyformat = YY_NULLPTR; switch (yycount) { #define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); #undef YYCASE_ } std::string yyres; // Argument number. size_t yyi = 0; for (char const* yyp = yyformat; *yyp; ++yyp) if (yyp[0] == '%' && yyp[1] == 's' && yyi < yycount) { yyres += yytnamerr_ (yyarg[yyi++]); ++yyp; } else yyres += *yyp; return yyres; } const signed char D4FunctionParser::yypact_ninf_ = -20; const signed char D4FunctionParser::yytable_ninf_ = -50; const signed char D4FunctionParser::yypact_[] = { -10, -20, 8, 10, -20, 12, -20, -10, -18, -20, 37, -20, -16, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, -20, -19, -20, -20, -20, -20, 51, 52, -20, -20, 52, 54, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, -20, -18, -16, -16, -20, 53, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, -20, 52, 68, -20, 57, 57, 71, 72, 73, 74, 76, 77, 78, -16, -16, -20, 9, 16, -20, 18, -20, 20, -20, 22, -20, 24, -20, 26, -20, 28, -20, 30, 32, 52, 34, 52, -20, 79, -20, -20, 80, -20, 81, -20, 82, -20, 83, -20, 84, -20, 86, -20, 88, -20, -16, -20, -16, -20, -20, -20, -20, -20, -20, -20, -20, 52, 52 }; const unsigned char D4FunctionParser::yydefact_[] = { 0, 6, 0, 2, 3, 0, 1, 0, 0, 4, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 7, 10, 11, 12, 0, 45, 50, 52, 46, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 47, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 27, 0, 29, 0, 31, 0, 33, 0, 35, 0, 37, 0, 39, 0, 0, 41, 0, 43, 13, 0, 14, 15, 0, 16, 0, 17, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 23, 0, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44 }; const signed char D4FunctionParser::yypgoto_[] = { -20, -20, -20, 33, -20, -20, 69, -20, -20, -15, 41, -20, -20, -20, -20, -20, -20, -20, -20, -20, -20, -20, -12, -11 }; const signed char D4FunctionParser::yydefgoto_[] = { -1, 2, 3, 24, 5, 25, 26, 27, 28, 52, 79, 82, 84, 86, 88, 90, 92, 94, 95, 97, 29, 30, 31, 32 }; const short int D4FunctionParser::yytable_[] = { 34, 35, 10, 11, 33, 11, 47, 48, 6, 12, 1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 7, 4, 99, 100, 8, 64, 65, 66, 9, 101, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, -6, 36, 37, 96, 98, 38, 39, 40, 41, 42, 43, 44, 45, 46, 51, 67, 78, 49, 68, 50, -48, 69, 70, 71, 72, 73, 74, 75, 76, 77, 81, 83, 85, 87, -49, 89, 91, 93, 120, 121, 122, 123, 124, 125, 128, 126, 129, 127, 80, 0, 0, 0, 0, 0, 0, 0, 63 }; const signed char D4FunctionParser::yycheck_[] = { 12, 12, 20, 21, 20, 21, 25, 26, 0, 27, 20, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 22, 0, 25, 26, 24, 49, 49, 50, 7, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 24, 24, 24, 76, 77, 24, 24, 24, 24, 24, 24, 24, 24, 24, 20, 23, 20, 27, 23, 28, 27, 23, 23, 23, 23, 23, 23, 23, 23, 23, 20, 20, 20, 20, 27, 20, 20, 20, 20, 20, 20, 20, 20, 20, 117, 20, 119, 20, 68, -1, -1, -1, -1, -1, -1, -1, 48 }; const unsigned char D4FunctionParser::yystos_[] = { 0, 20, 41, 42, 43, 44, 0, 22, 24, 43, 20, 21, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 43, 45, 46, 47, 48, 60, 61, 62, 63, 20, 62, 63, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 26, 27, 28, 20, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 46, 62, 63, 63, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 20, 50, 50, 20, 51, 20, 52, 20, 53, 20, 54, 20, 55, 20, 56, 20, 57, 58, 62, 59, 62, 25, 26, 25, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 25, 26, 20, 20, 20, 20, 20, 20, 20, 20, 62, 62 }; const unsigned char D4FunctionParser::yyr1_[] = { 0, 40, 41, 42, 42, 43, 44, 45, 45, 46, 46, 46, 47, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 49, 50, 50, 51, 51, 52, 52, 53, 53, 54, 54, 55, 55, 56, 56, 57, 57, 58, 58, 59, 59, 60, 60, 60, 61, 61, 62, 62, 63, 63 }; const unsigned char D4FunctionParser::yyr2_[] = { 0, 2, 1, 1, 3, 4, 1, 1, 3, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 3, 2, 3, 1, 3, 1, 1 }; // YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. // First, the terminals, then, starting at \a yyntokens_, nonterminals. const char* const D4FunctionParser::yytname_[] = { "\"end of file\"", "error", "$undefined", "\"functions\"", "\"arguments\"", "\"argument\"", "\"function\"", "\"function name\"", "\"variable or constant\"", "\"array constant\"", "\"fast byte arg list\"", "\"fast int8 arg list\"", "\"fast uint16 arg list\"", "\"fast int16 arg list\"", "\"fast uint32 arg list\"", "\"fast int32 arg list\"", "\"fast uint64 arg list\"", "\"fast int64 arg list\"", "\"fast float32 arg list\"", "\"fast float64 arg list\"", "\"word\"", "\"string\"", "\";\"", "\":\"", "\"(\"", "\")\"", "\",\"", "\"/\"", "\".\"", "\"$Byte\"", "\"$UInt8\"", "\"$Int8\"", "\"$UInt16\"", "\"$Int16\"", "\"$UInt32\"", "\"$Int32\"", "\"$UInt64\"", "\"$Int64\"", "\"$Float32\"", "\"$Float64\"", "$accept", "program", "functions", "function", "fname", "args", "arg", "variable_or_constant", "array_constant", "arg_length_hint", "fast_byte_arg_list", "fast_int8_arg_list", "fast_uint16_arg_list", "fast_int16_arg_list", "fast_uint32_arg_list", "fast_int32_arg_list", "fast_uint64_arg_list", "fast_int64_arg_list", "fast_float32_arg_list", "fast_float64_arg_list", "id", "group", "path", "name", YY_NULLPTR }; #if YYDEBUG const unsigned short int D4FunctionParser::yyrline_[] = { 0, 155, 155, 161, 165, 172, 178, 190, 194, 201, 205, 209, 215, 227, 233, 239, 245, 251, 257, 263, 269, 275, 281, 287, 299, 305, 309, 316, 320, 327, 331, 338, 342, 349, 353, 359, 363, 370, 374, 381, 385, 395, 399, 406, 410, 417, 421, 426, 434, 439, 447, 451, 462, 466 }; // Print the state stack on the debug stream. void D4FunctionParser::yystack_print_ () { *yycdebug_ << "Stack now"; for (stack_type::const_iterator i = yystack_.begin (), i_end = yystack_.end (); i != i_end; ++i) *yycdebug_ << ' ' << i->state; *yycdebug_ << std::endl; } // Report on the debug stream that the rule \a yyrule is going to be reduced. void D4FunctionParser::yy_reduce_print_ (int yyrule) { unsigned int yylno = yyrline_[yyrule]; int yynrhs = yyr2_[yyrule]; // Print the symbols being reduced, and their result. *yycdebug_ << "Reducing stack by rule " << yyrule - 1 << " (line " << yylno << "):" << std::endl; // The symbols being reduced. for (int yyi = 0; yyi < yynrhs; yyi++) YY_SYMBOL_PRINT (" $" << yyi + 1 << " =", yystack_[(yynrhs) - (yyi + 1)]); } #endif // YYDEBUG // Symbol number corresponding to token number t. inline D4FunctionParser::token_number_type D4FunctionParser::yytranslate_ (int t) { static const token_number_type translate_table[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 }; const unsigned int user_token_number_max_ = 294; const token_number_type undef_token_ = 2; if (static_cast(t) <= yyeof_) return yyeof_; else if (static_cast (t) <= user_token_number_max_) return translate_table[t]; else return undef_token_; } #line 34 "d4_function_parser.yy" // lalr1.cc:1167 } // libdap #line 2454 "d4_function_parser.tab.cc" // lalr1.cc:1167 #line 472 "d4_function_parser.yy" // lalr1.cc:1168 // Forward the error to the driver for handling. The location parameter // provides the line number and character position of the error. void libdap::D4FunctionParser::error(const location_type &l, const std::string &m) { evaluator.error(l, m); } /* include for access to scanner.yylex */ #include "D4FunctionScanner.h" static int yylex(libdap::D4FunctionParser::semantic_type *yylval, libdap::location *loc, libdap::D4FunctionScanner &scanner, libdap::D4FunctionEvaluator &evaluator) { if (evaluator.trace_scanning()) scanner.set_debug(true); return( scanner.yylex(yylval, loc) ); }