1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123 |
- // 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 <http://www.gnu.org/licenses/>.
- // 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 "parser.cc" // lalr1.cc:404
- # ifndef YY_NULLPTR
- # if defined __cplusplus && 201103L <= __cplusplus
- # define YY_NULLPTR nullptr
- # else
- # define YY_NULLPTR 0
- # endif
- # endif
- #include "parser.h"
- // User implementation prologue.
- #line 51 "parser.cc" // lalr1.cc:412
- // Unqualified %code blocks.
- #line 40 "parser.yy" // lalr1.cc:413
- # include "eval_context.h"
- #line 70 "parser.yy" // lalr1.cc:413
- namespace {
- /* Convert option code specified as string to an 16 bit unsigned
- representation. If the option code is not within the range of
- 0..65535 an error is reported. */
- uint16_t
- convert_option_code(const std::string& option_code,
- const isc::eval::EvalParser::location_type& loc,
- EvalContext& ctx) {
- int n = 0;
- try {
- n = boost::lexical_cast<int>(option_code);
- } catch (const boost::bad_lexical_cast &) {
- // This can't happen...
- ctx.error(loc, "Option code has invalid value in " + option_code);
- }
- if (ctx.option_universe_ == Option::V6) {
- if (n < 0 || n > 65535) {
- ctx.error(loc, "Option code has invalid value in "
- + option_code + ". Allowed range: 0..65535");
- }
- } else {
- if (n < 0 || n > 255) {
- ctx.error(loc, "Option code has invalid value in "
- + option_code + ". Allowed range: 0..255");
- }
- }
- return (static_cast<uint16_t>(n));
- }
- }
- #line 90 "parser.cc" // lalr1.cc:413
- #ifndef YY_
- # if defined YYENABLE_NLS && YYENABLE_NLS
- # if ENABLE_NLS
- # include <libintl.h> // 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<void>(0)
- # define YY_STACK_PRINT() static_cast<void>(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 21 "parser.yy" // lalr1.cc:479
- namespace isc { namespace eval {
- #line 176 "parser.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
- EvalParser::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.
- EvalParser::EvalParser (EvalContext& ctx_yyarg)
- :
- #if YYDEBUG
- yydebug_ (false),
- yycdebug_ (&std::cerr),
- #endif
- ctx (ctx_yyarg)
- {}
- EvalParser::~EvalParser ()
- {}
- /*---------------.
- | Symbol types. |
- `---------------*/
- // by_state.
- inline
- EvalParser::by_state::by_state ()
- : state (empty_state)
- {}
- inline
- EvalParser::by_state::by_state (const by_state& other)
- : state (other.state)
- {}
- inline
- void
- EvalParser::by_state::clear ()
- {
- state = empty_state;
- }
- inline
- void
- EvalParser::by_state::move (by_state& that)
- {
- state = that.state;
- that.clear ();
- }
- inline
- EvalParser::by_state::by_state (state_type s)
- : state (s)
- {}
- inline
- EvalParser::symbol_number_type
- EvalParser::by_state::type_get () const
- {
- if (state == empty_state)
- return empty_symbol;
- else
- return yystos_[state];
- }
- inline
- EvalParser::stack_symbol_type::stack_symbol_type ()
- {}
- inline
- EvalParser::stack_symbol_type::stack_symbol_type (state_type s, symbol_type& that)
- : super_type (s, that.location)
- {
- switch (that.type_get ())
- {
- case 15: // "constant string"
- case 16: // "integer"
- case 17: // "constant hexstring"
- case 18: // "option name"
- case 19: // TOKEN
- value.move< std::string > (that.value);
- break;
- default:
- break;
- }
- // that is emptied.
- that.type = empty_symbol;
- }
- inline
- EvalParser::stack_symbol_type&
- EvalParser::stack_symbol_type::operator= (const stack_symbol_type& that)
- {
- state = that.state;
- switch (that.type_get ())
- {
- case 15: // "constant string"
- case 16: // "integer"
- case 17: // "constant hexstring"
- case 18: // "option name"
- case 19: // TOKEN
- value.copy< std::string > (that.value);
- break;
- default:
- break;
- }
- location = that.location;
- return *this;
- }
- template <typename Base>
- inline
- void
- EvalParser::yy_destroy_ (const char* yymsg, basic_symbol<Base>& yysym) const
- {
- if (yymsg)
- YY_SYMBOL_PRINT (yymsg, yysym);
- }
- #if YYDEBUG
- template <typename Base>
- void
- EvalParser::yy_print_ (std::ostream& yyo,
- const basic_symbol<Base>& 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 << ": ";
- switch (yytype)
- {
- case 15: // "constant string"
- #line 67 "parser.yy" // lalr1.cc:636
- { yyoutput << yysym.value.template as< std::string > (); }
- #line 359 "parser.cc" // lalr1.cc:636
- break;
- case 16: // "integer"
- #line 67 "parser.yy" // lalr1.cc:636
- { yyoutput << yysym.value.template as< std::string > (); }
- #line 366 "parser.cc" // lalr1.cc:636
- break;
- case 17: // "constant hexstring"
- #line 67 "parser.yy" // lalr1.cc:636
- { yyoutput << yysym.value.template as< std::string > (); }
- #line 373 "parser.cc" // lalr1.cc:636
- break;
- case 18: // "option name"
- #line 67 "parser.yy" // lalr1.cc:636
- { yyoutput << yysym.value.template as< std::string > (); }
- #line 380 "parser.cc" // lalr1.cc:636
- break;
- case 19: // TOKEN
- #line 67 "parser.yy" // lalr1.cc:636
- { yyoutput << yysym.value.template as< std::string > (); }
- #line 387 "parser.cc" // lalr1.cc:636
- break;
- default:
- break;
- }
- yyo << ')';
- }
- #endif
- inline
- void
- EvalParser::yypush_ (const char* m, state_type s, symbol_type& sym)
- {
- stack_symbol_type t (s, sym);
- yypush_ (m, t);
- }
- inline
- void
- EvalParser::yypush_ (const char* m, stack_symbol_type& s)
- {
- if (m)
- YY_SYMBOL_PRINT (m, s);
- yystack_.push (s);
- }
- inline
- void
- EvalParser::yypop_ (unsigned int n)
- {
- yystack_.pop (n);
- }
- #if YYDEBUG
- std::ostream&
- EvalParser::debug_stream () const
- {
- return *yycdebug_;
- }
- void
- EvalParser::set_debug_stream (std::ostream& o)
- {
- yycdebug_ = &o;
- }
- EvalParser::debug_level_type
- EvalParser::debug_level () const
- {
- return yydebug_;
- }
- void
- EvalParser::set_debug_level (debug_level_type l)
- {
- yydebug_ = l;
- }
- #endif // YYDEBUG
- inline EvalParser::state_type
- EvalParser::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
- EvalParser::yy_pact_value_is_default_ (int yyvalue)
- {
- return yyvalue == yypact_ninf_;
- }
- inline bool
- EvalParser::yy_table_value_is_error_ (int yyvalue)
- {
- return yyvalue == yytable_ninf_;
- }
- int
- EvalParser::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;
- /* 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
- {
- symbol_type yylookahead (yylex (ctx));
- yyla.move (yylookahead);
- }
- 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 15: // "constant string"
- case 16: // "integer"
- case 17: // "constant hexstring"
- case 18: // "option name"
- case 19: // TOKEN
- yylhs.value.build< std::string > ();
- break;
- default:
- break;
- }
- // Compute the default @$.
- {
- slice<stack_symbol_type, stack_type> slice (yystack_, yylen);
- YYLLOC_DEFAULT (yylhs.location, slice, yylen);
- }
- // Perform the reduction.
- YY_REDUCE_PRINT (yyn);
- try
- {
- switch (yyn)
- {
- case 3:
- #line 115 "parser.yy" // lalr1.cc:859
- {
- TokenPtr eq(new TokenEqual());
- ctx.expression.push_back(eq);
- }
- #line 618 "parser.cc" // lalr1.cc:859
- break;
- case 4:
- #line 122 "parser.yy" // lalr1.cc:859
- {
- TokenPtr str(new TokenString(yystack_[0].value.as< std::string > ()));
- ctx.expression.push_back(str);
- }
- #line 627 "parser.cc" // lalr1.cc:859
- break;
- case 5:
- #line 127 "parser.yy" // lalr1.cc:859
- {
- TokenPtr hex(new TokenHexString(yystack_[0].value.as< std::string > ()));
- ctx.expression.push_back(hex);
- }
- #line 636 "parser.cc" // lalr1.cc:859
- break;
- case 6:
- #line 132 "parser.yy" // lalr1.cc:859
- {
- uint16_t numeric_code = convert_option_code(yystack_[3].value.as< std::string > (), yystack_[3].location, ctx);
- TokenPtr opt(new TokenOption(numeric_code, TokenOption::TEXTUAL));
- ctx.expression.push_back(opt);
- }
- #line 646 "parser.cc" // lalr1.cc:859
- break;
- case 7:
- #line 138 "parser.yy" // lalr1.cc:859
- {
- uint16_t numeric_code = convert_option_code(yystack_[3].value.as< std::string > (), yystack_[3].location, ctx);
- TokenPtr opt(new TokenOption(numeric_code, TokenOption::HEXADECIMAL));
- ctx.expression.push_back(opt);
- }
- #line 656 "parser.cc" // lalr1.cc:859
- break;
- case 8:
- #line 144 "parser.yy" // lalr1.cc:859
- {
- try {
- // This may result in exception if the specified
- // name is unknown.
- TokenPtr opt(new TokenOption(yystack_[3].value.as< std::string > (),
- ctx.option_universe_,
- TokenOption::TEXTUAL));
- ctx.expression.push_back(opt);
- } catch (const isc::BadValue& ex) {
- ctx.error(yystack_[3].location, ex.what());
- }
- }
- #line 674 "parser.cc" // lalr1.cc:859
- break;
- case 9:
- #line 158 "parser.yy" // lalr1.cc:859
- {
- try {
- // This may result in exception if the specified
- // name is unknown.
- TokenPtr opt(new TokenOption(yystack_[3].value.as< std::string > (),
- ctx.option_universe_,
- TokenOption::HEXADECIMAL));
- ctx.expression.push_back(opt);
- } catch (const isc::BadValue& ex) {
- ctx.error(yystack_[3].location, ex.what());
- }
- }
- #line 692 "parser.cc" // lalr1.cc:859
- break;
- case 10:
- #line 172 "parser.yy" // lalr1.cc:859
- {
- TokenPtr sub(new TokenSubstring());
- ctx.expression.push_back(sub);
- }
- #line 701 "parser.cc" // lalr1.cc:859
- break;
- case 12:
- #line 181 "parser.yy" // lalr1.cc:859
- {
- TokenPtr str(new TokenString(yystack_[0].value.as< std::string > ()));
- ctx.expression.push_back(str);
- }
- #line 710 "parser.cc" // lalr1.cc:859
- break;
- case 13:
- #line 188 "parser.yy" // lalr1.cc:859
- {
- TokenPtr str(new TokenString(yystack_[0].value.as< std::string > ()));
- ctx.expression.push_back(str);
- }
- #line 719 "parser.cc" // lalr1.cc:859
- break;
- case 14:
- #line 193 "parser.yy" // lalr1.cc:859
- {
- TokenPtr str(new TokenString("all"));
- ctx.expression.push_back(str);
- }
- #line 728 "parser.cc" // lalr1.cc:859
- break;
- #line 732 "parser.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
- EvalParser::error (const syntax_error& yyexc)
- {
- error (yyexc.location, yyexc.what());
- }
- // Generate an error message.
- std::string
- EvalParser::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 EvalParser::yypact_ninf_ = -14;
- const signed char EvalParser::yytable_ninf_ = -1;
- const signed char
- EvalParser::yypact_[] =
- {
- -4, -9, -5, -14, -14, -14, 8, -14, 9, -13,
- -4, -14, -4, 0, 6, 11, -14, 13, 14, 15,
- 10, 12, -14, 16, -14, -14, -14, -14, -6, -14,
- -14, 17, -14
- };
- const unsigned char
- EvalParser::yydefact_[] =
- {
- 0, 0, 0, 4, 5, 11, 0, 2, 0, 0,
- 0, 1, 0, 0, 0, 0, 3, 0, 0, 0,
- 0, 0, 12, 0, 6, 7, 8, 9, 0, 14,
- 13, 0, 10
- };
- const signed char
- EvalParser::yypgoto_[] =
- {
- -14, -14, -14, -3, -14, -14
- };
- const signed char
- EvalParser::yydefgoto_[] =
- {
- -1, 6, 7, 8, 23, 31
- };
- const unsigned char
- EvalParser::yytable_[] =
- {
- 1, 2, 29, 13, 9, 14, 10, 15, 11, 16,
- 30, 3, 12, 4, 17, 5, 24, 25, 26, 27,
- 18, 19, 20, 21, 0, 0, 28, 0, 0, 32,
- 0, 22
- };
- const signed char
- EvalParser::yycheck_[] =
- {
- 4, 5, 8, 16, 13, 18, 11, 10, 0, 12,
- 16, 15, 3, 17, 14, 19, 6, 7, 6, 7,
- 14, 10, 9, 9, -1, -1, 10, -1, -1, 12,
- -1, 16
- };
- const unsigned char
- EvalParser::yystos_[] =
- {
- 0, 4, 5, 15, 17, 19, 21, 22, 23, 13,
- 11, 0, 3, 16, 18, 23, 23, 14, 14, 10,
- 9, 9, 16, 24, 6, 7, 6, 7, 10, 8,
- 16, 25, 12
- };
- const unsigned char
- EvalParser::yyr1_[] =
- {
- 0, 20, 21, 22, 23, 23, 23, 23, 23, 23,
- 23, 23, 24, 25, 25
- };
- const unsigned char
- EvalParser::yyr2_[] =
- {
- 0, 2, 1, 3, 1, 1, 6, 6, 6, 6,
- 8, 1, 1, 1, 1
- };
- // YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
- // First, the terminals, then, starting at \a yyntokens_, nonterminals.
- const char*
- const EvalParser::yytname_[] =
- {
- "\"end of file\"", "error", "$undefined", "\"==\"", "\"option\"",
- "\"substring\"", "\"text\"", "\"hex\"", "\"all\"", "\".\"", "\",\"",
- "\"(\"", "\")\"", "\"[\"", "\"]\"", "\"constant string\"", "\"integer\"",
- "\"constant hexstring\"", "\"option name\"", "TOKEN", "$accept",
- "expression", "bool_expr", "string_expr", "start_expr", "length_expr", YY_NULLPTR
- };
- #if YYDEBUG
- const unsigned char
- EvalParser::yyrline_[] =
- {
- 0, 111, 111, 114, 121, 126, 131, 137, 143, 157,
- 171, 176, 180, 187, 192
- };
- // Print the state stack on the debug stream.
- void
- EvalParser::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
- EvalParser::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
- #line 21 "parser.yy" // lalr1.cc:1167
- } } // isc::eval
- #line 1116 "parser.cc" // lalr1.cc:1167
- #line 199 "parser.yy" // lalr1.cc:1168
- void
- isc::eval::EvalParser::error(const location_type& loc,
- const std::string& what)
- {
- ctx.error(loc, what);
- }
|