bdb_query_bison.tab.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:34k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bdb_query_bison.tab.c,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:14:42  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* A Bison parser, made by GNU Bison 1.875b.  */
  10. /* Skeleton parser for Yacc-like parsing with Bison,
  11.    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
  12.    This program is free software; you can redistribute it and/or modify
  13.    it under the terms of the GNU General Public License as published by
  14.    the Free Software Foundation; either version 2, or (at your option)
  15.    any later version.
  16.    This program is distributed in the hope that it will be useful,
  17.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.    GNU General Public License for more details.
  20.    You should have received a copy of the GNU General Public License
  21.    along with this program; if not, write to the Free Software
  22.    Foundation, Inc., 59 Temple Place - Suite 330,
  23.    Boston, MA 02111-1307, USA.  */
  24. /* As a special exception, when this file is copied by Bison into a
  25.    Bison output file, you may use that output file without restriction.
  26.    This special exception was added by the Free Software Foundation
  27.    in version 1.24 of Bison.  */
  28. /* Written by Richard Stallman by simplifying the original so called
  29.    ``semantic'' parser.  */
  30. /* All symbols defined below should begin with yy or YY, to avoid
  31.    infringing on user name space.  This should be done even for local
  32.    variables, as they might otherwise be expanded by user macros.
  33.    There are some unavoidable exceptions within include files to
  34.    define necessary library symbols; they are noted "INFRINGES ON
  35.    USER NAME SPACE" below.  */
  36. /* Identify Bison output.  */
  37. #define YYBISON 1
  38. /* Skeleton name.  */
  39. #define YYSKELETON_NAME "yacc.c"
  40. /* Pure parsers.  */
  41. #define YYPURE 1
  42. /* Using locations.  */
  43. #define YYLSP_NEEDED 0
  44. /* Tokens.  */
  45. #ifndef YYTOKENTYPE
  46. # define YYTOKENTYPE
  47.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  48.       know about them.  */
  49.    enum yytokentype {
  50.      NAME = 258,
  51.      STRING = 259,
  52.      NUM = 260,
  53.      NOT = 261,
  54.      AND = 262,
  55.      OR = 263,
  56.      EQ = 264,
  57.      NOTEQ = 265,
  58.      GT = 266,
  59.      GE = 267,
  60.      LT = 268,
  61.      LE = 269
  62.    };
  63. #endif
  64. #define NAME 258
  65. #define STRING 259
  66. #define NUM 260
  67. #define NOT 261
  68. #define AND 262
  69. #define OR 263
  70. #define EQ 264
  71. #define NOTEQ 265
  72. #define GT 266
  73. #define GE 267
  74. #define LT 268
  75. #define LE 269
  76. /* Copy the first part of user declarations.  */
  77. #line 37 "bdb_query_bison.y"
  78. #define YYSTYPE        CBDB_Query::TQueryClause*
  79. #define YYPARSE_PARAM  parm
  80. #define YYLEX_PARAM    parm
  81. #define YYINITDEPTH    50
  82. #define YYMAXDEPTH     1000
  83. #define YYDEBUG 1
  84. /* 
  85.     Utility function to save current yyparse result in the
  86.     parsing environment object (context).
  87. */
  88. inline static 
  89. void BisonSaveStageResult(YYSTYPE res, void* parm)
  90. {
  91.     CBDB_QueryParserEnvironment* env = 
  92.           (CBDB_QueryParserEnvironment*) parm;
  93.     env->AttachQueryClause(res);
  94.     env->AddNodeToPool(res);
  95. }
  96. /* Enabling traces.  */
  97. #ifndef YYDEBUG
  98. # define YYDEBUG 0
  99. #endif
  100. /* Enabling verbose error messages.  */
  101. #ifdef YYERROR_VERBOSE
  102. # undef YYERROR_VERBOSE
  103. # define YYERROR_VERBOSE 1
  104. #else
  105. # define YYERROR_VERBOSE 0
  106. #endif
  107. #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
  108. typedef int YYSTYPE;
  109. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  110. # define YYSTYPE_IS_DECLARED 1
  111. # define YYSTYPE_IS_TRIVIAL 1
  112. #endif
  113. /* Copy the second part of user declarations.  */
  114. /* Line 214 of yacc.c.  */
  115. #line 142 "bdb_query_bison.tab.c"
  116. #if ! defined (yyoverflow) || YYERROR_VERBOSE
  117. /* The parser invokes alloca or malloc; define the necessary symbols.  */
  118. # if YYSTACK_USE_ALLOCA
  119. #  define YYSTACK_ALLOC alloca
  120. # else
  121. #  ifndef YYSTACK_USE_ALLOCA
  122. #   if defined (alloca) || defined (_ALLOCA_H)
  123. #    define YYSTACK_ALLOC alloca
  124. #   else
  125. #    ifdef __GNUC__
  126. #     define YYSTACK_ALLOC __builtin_alloca
  127. #    endif
  128. #   endif
  129. #  endif
  130. # endif
  131. # ifdef YYSTACK_ALLOC
  132.    /* Pacify GCC's `empty if-body' warning. */
  133. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
  134. # else
  135. #  if defined (__STDC__) || defined (__cplusplus)
  136. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  137. #   define YYSIZE_T size_t
  138. #  endif
  139. #  define YYSTACK_ALLOC malloc
  140. #  define YYSTACK_FREE free
  141. # endif
  142. #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
  143. #if (! defined (yyoverflow) 
  144.      && (! defined (__cplusplus) 
  145.  || (YYSTYPE_IS_TRIVIAL)))
  146. /* A type that is properly aligned for any stack member.  */
  147. union yyalloc
  148. {
  149.   short yyss;
  150.   YYSTYPE yyvs;
  151.   };
  152. /* The size of the maximum gap between one aligned stack and the next.  */
  153. # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
  154. /* The size of an array large to enough to hold all stacks, each with
  155.    N elements.  */
  156. # define YYSTACK_BYTES(N) 
  157.      ((N) * (sizeof (short) + sizeof (YYSTYPE))
  158.       + YYSTACK_GAP_MAXIMUM)
  159. /* Copy COUNT objects from FROM to TO.  The source and destination do
  160.    not overlap.  */
  161. # ifndef YYCOPY
  162. #  if 1 < __GNUC__
  163. #   define YYCOPY(To, From, Count) 
  164.       __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
  165. #  else
  166. #   define YYCOPY(To, From, Count)
  167.       do
  168. {
  169.   register YYSIZE_T yyi;
  170.   for (yyi = 0; yyi < (Count); yyi++)
  171.     (To)[yyi] = (From)[yyi];
  172. }
  173.       while (0)
  174. #  endif
  175. # endif
  176. /* Relocate STACK from its old location to the new one.  The
  177.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  178.    elements in the stack, and YYPTR gives the new location of the
  179.    stack.  Advance YYPTR to a properly aligned location for the next
  180.    stack.  */
  181. # define YYSTACK_RELOCATE(Stack)
  182.     do
  183.       {
  184. YYSIZE_T yynewbytes;
  185. YYCOPY (&yyptr->Stack, Stack, yysize);
  186. Stack = &yyptr->Stack;
  187. yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; 
  188. yyptr += yynewbytes / sizeof (*yyptr);
  189.       }
  190.     while (0)
  191. #endif
  192. #if defined (__STDC__) || defined (__cplusplus)
  193.    typedef signed char yysigned_char;
  194. #else
  195.    typedef short yysigned_char;
  196. #endif
  197. /* YYFINAL -- State number of the termination state. */
  198. #define YYFINAL  10
  199. /* YYLAST -- Last index in YYTABLE.  */
  200. #define YYLAST   60
  201. /* YYNTOKENS -- Number of terminals. */
  202. #define YYNTOKENS  17
  203. /* YYNNTS -- Number of nonterminals. */
  204. #define YYNNTS  3
  205. /* YYNRULES -- Number of rules. */
  206. #define YYNRULES  15
  207. /* YYNRULES -- Number of states. */
  208. #define YYNSTATES  28
  209. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  210. #define YYUNDEFTOK  2
  211. #define YYMAXUTOK   269
  212. #define YYTRANSLATE(YYX) 
  213.   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
  214. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  215. static const unsigned char yytranslate[] =
  216. {
  217.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  221.       15,    16,     2,     2,     2,     2,     2,     2,     2,     2,
  222.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  226.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  227.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  228.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  229.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  230.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  231.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  232.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  233.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  234.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  235.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  236.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  237.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  238.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  239.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  240.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  241.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  242.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  243.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14
  244. };
  245. #if YYDEBUG
  246. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  247.    YYRHS.  */
  248. static const unsigned char yyprhs[] =
  249. {
  250.        0,     0,     3,     5,     7,     9,    11,    15,    19,    23,
  251.       27,    31,    35,    39,    43,    47
  252. };
  253. /* YYRHS -- A `-1'-separated list of the rules' RHS. */
  254. static const yysigned_char yyrhs[] =
  255. {
  256.       18,     0,    -1,    19,    -1,     5,    -1,     4,    -1,     3,
  257.       -1,    19,     7,    19,    -1,    19,     8,    19,    -1,    19,
  258.        9,    19,    -1,    19,    10,    19,    -1,    19,    11,    19,
  259.       -1,    19,    12,    19,    -1,    19,    13,    19,    -1,    19,
  260.       14,    19,    -1,    15,    19,    16,    -1,     6,    19,    -1
  261. };
  262. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  263. static const unsigned char yyrline[] =
  264. {
  265.        0,    89,    89,   102,   106,   110,   114,   119,   124,   129,
  266.      135,   140,   145,   150,   155,   159
  267. };
  268. #endif
  269. #if YYDEBUG || YYERROR_VERBOSE
  270. /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  271.    First, the terminals, then, starting at YYNTOKENS, nonterminals. */
  272. static const char *const yytname[] =
  273. {
  274.   "$end", "error", "$undefined", "NAME", "STRING", "NUM", "NOT", "AND", 
  275.   "OR", "EQ", "NOTEQ", "GT", "GE", "LT", "LE", "'('", "')'", "$accept", 
  276.   "input", "exp", 0
  277. };
  278. #endif
  279. # ifdef YYPRINT
  280. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  281.    token YYLEX-NUM.  */
  282. static const unsigned short yytoknum[] =
  283. {
  284.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  285.      265,   266,   267,   268,   269,    40,    41
  286. };
  287. # endif
  288. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  289. static const unsigned char yyr1[] =
  290. {
  291.        0,    17,    18,    19,    19,    19,    19,    19,    19,    19,
  292.       19,    19,    19,    19,    19,    19
  293. };
  294. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  295. static const unsigned char yyr2[] =
  296. {
  297.        0,     2,     1,     1,     1,     1,     3,     3,     3,     3,
  298.        3,     3,     3,     3,     3,     2
  299. };
  300. /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
  301.    STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
  302.    means the default is an error.  */
  303. static const unsigned char yydefact[] =
  304. {
  305.        0,     5,     4,     3,     0,     0,     0,     2,    15,     0,
  306.        1,     0,     0,     0,     0,     0,     0,     0,     0,    14,
  307.        6,     7,     8,     9,    10,    11,    12,    13
  308. };
  309. /* YYDEFGOTO[NTERM-NUM]. */
  310. static const yysigned_char yydefgoto[] =
  311. {
  312.       -1,     6,     7
  313. };
  314. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  315.    STATE-NUM.  */
  316. #define YYPACT_NINF -5
  317. static const yysigned_char yypact[] =
  318. {
  319.        0,    -5,    -5,    -5,     0,     0,     2,    19,    19,     9,
  320.       -5,     0,     0,     0,     0,     0,     0,     0,     0,    -5,
  321.       26,    32,    37,    41,    44,    46,    10,    -5
  322. };
  323. /* YYPGOTO[NTERM-NUM].  */
  324. static const yysigned_char yypgoto[] =
  325. {
  326.       -5,    -5,    -4
  327. };
  328. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  329.    positive, shift that token.  If negative, reduce the rule which
  330.    number is the opposite.  If zero, do what YYDEFACT says.
  331.    If YYTABLE_NINF, syntax error.  */
  332. #define YYTABLE_NINF -1
  333. static const unsigned char yytable[] =
  334. {
  335.        8,     9,    10,     1,     2,     3,     4,    20,    21,    22,
  336.       23,    24,    25,    26,    27,     5,    11,    12,    13,    14,
  337.       15,    16,    17,    18,    18,    19,    11,    12,    13,    14,
  338.       15,    16,    17,    18,    12,    13,    14,    15,    16,    17,
  339.       18,    13,    14,    15,    16,    17,    18,    14,    15,    16,
  340.       17,    18,    15,    16,    17,    18,    16,    17,    18,    17,
  341.       18
  342. };
  343. static const unsigned char yycheck[] =
  344. {
  345.        4,     5,     0,     3,     4,     5,     6,    11,    12,    13,
  346.       14,    15,    16,    17,    18,    15,     7,     8,     9,    10,
  347.       11,    12,    13,    14,    14,    16,     7,     8,     9,    10,
  348.       11,    12,    13,    14,     8,     9,    10,    11,    12,    13,
  349.       14,     9,    10,    11,    12,    13,    14,    10,    11,    12,
  350.       13,    14,    11,    12,    13,    14,    12,    13,    14,    13,
  351.       14
  352. };
  353. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  354.    symbol of state STATE-NUM.  */
  355. static const unsigned char yystos[] =
  356. {
  357.        0,     3,     4,     5,     6,    15,    18,    19,    19,    19,
  358.        0,     7,     8,     9,    10,    11,    12,    13,    14,    16,
  359.       19,    19,    19,    19,    19,    19,    19,    19
  360. };
  361. #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
  362. # define YYSIZE_T __SIZE_TYPE__
  363. #endif
  364. #if ! defined (YYSIZE_T) && defined (size_t)
  365. # define YYSIZE_T size_t
  366. #endif
  367. #if ! defined (YYSIZE_T)
  368. # if defined (__STDC__) || defined (__cplusplus)
  369. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  370. #  define YYSIZE_T size_t
  371. # endif
  372. #endif
  373. #if ! defined (YYSIZE_T)
  374. # define YYSIZE_T unsigned int
  375. #endif
  376. #define yyerrok (yyerrstatus = 0)
  377. #define yyclearin (yychar = YYEMPTY)
  378. #define YYEMPTY (-2)
  379. #define YYEOF 0
  380. #define YYACCEPT goto yyacceptlab
  381. #define YYABORT goto yyabortlab
  382. #define YYERROR goto yyerrlab1
  383. /* Like YYERROR except do call yyerror.  This remains here temporarily
  384.    to ease the transition to the new meaning of YYERROR, for GCC.
  385.    Once GCC version 2 has supplanted version 1, this can go.  */
  386. #define YYFAIL goto yyerrlab
  387. #define YYRECOVERING()  (!!yyerrstatus)
  388. #define YYBACKUP(Token, Value)
  389. do
  390.   if (yychar == YYEMPTY && yylen == 1)
  391.     {
  392.       yychar = (Token);
  393.       yylval = (Value);
  394.       yytoken = YYTRANSLATE (yychar);
  395.       YYPOPSTACK;
  396.       goto yybackup;
  397.     }
  398.   else
  399.     { 
  400.       yyerror ("syntax error: cannot back up");
  401.       YYERROR;
  402.     }
  403. while (0)
  404. #define YYTERROR 1
  405. #define YYERRCODE 256
  406. /* YYLLOC_DEFAULT -- Compute the default location (before the actions
  407.    are run).  */
  408. #ifndef YYLLOC_DEFAULT
  409. # define YYLLOC_DEFAULT(Current, Rhs, N)         
  410.   Current.first_line   = Rhs[1].first_line;      
  411.   Current.first_column = Rhs[1].first_column;    
  412.   Current.last_line    = Rhs[N].last_line;       
  413.   Current.last_column  = Rhs[N].last_column;
  414. #endif
  415. /* YYLEX -- calling `yylex' with the right arguments.  */
  416. #ifdef YYLEX_PARAM
  417. # define YYLEX yylex (&yylval, YYLEX_PARAM)
  418. #else
  419. # define YYLEX yylex (&yylval)
  420. #endif
  421. /* Enable debugging if requested.  */
  422. #if YYDEBUG
  423. # ifndef YYFPRINTF
  424. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  425. #  define YYFPRINTF fprintf
  426. # endif
  427. # define YYDPRINTF(Args)
  428. do {
  429.   if (yydebug)
  430.     YYFPRINTF Args;
  431. } while (0)
  432. # define YYDSYMPRINT(Args)
  433. do {
  434.   if (yydebug)
  435.     yysymprint Args;
  436. } while (0)
  437. # define YYDSYMPRINTF(Title, Token, Value, Location)
  438. do {
  439.   if (yydebug)
  440.     {
  441.       YYFPRINTF (stderr, "%s ", Title);
  442.       yysymprint (stderr, 
  443.                   Token, Value);
  444.       YYFPRINTF (stderr, "n");
  445.     }
  446. } while (0)
  447. /*------------------------------------------------------------------.
  448. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  449. | TOP (cinluded).                                                   |
  450. `------------------------------------------------------------------*/
  451. #if defined (__STDC__) || defined (__cplusplus)
  452. static void
  453. yy_stack_print (short *bottom, short *top)
  454. #else
  455. static void
  456. yy_stack_print (bottom, top)
  457.     short *bottom;
  458.     short *top;
  459. #endif
  460. {
  461.   YYFPRINTF (stderr, "Stack now");
  462.   for (/* Nothing. */; bottom <= top; ++bottom)
  463.     YYFPRINTF (stderr, " %d", *bottom);
  464.   YYFPRINTF (stderr, "n");
  465. }
  466. # define YY_STACK_PRINT(Bottom, Top)
  467. do {
  468.   if (yydebug)
  469.     yy_stack_print ((Bottom), (Top));
  470. } while (0)
  471. /*------------------------------------------------.
  472. | Report that the YYRULE is going to be reduced.  |
  473. `------------------------------------------------*/
  474. #if defined (__STDC__) || defined (__cplusplus)
  475. static void
  476. yy_reduce_print (int yyrule)
  477. #else
  478. static void
  479. yy_reduce_print (yyrule)
  480.     int yyrule;
  481. #endif
  482. {
  483.   int yyi;
  484.   unsigned int yylno = yyrline[yyrule];
  485.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
  486.              yyrule - 1, yylno);
  487.   /* Print the symbols being reduced, and their result.  */
  488.   for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
  489.     YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
  490.   YYFPRINTF (stderr, "-> %sn", yytname [yyr1[yyrule]]);
  491. }
  492. # define YY_REDUCE_PRINT(Rule)
  493. do {
  494.   if (yydebug)
  495.     yy_reduce_print (Rule);
  496. } while (0)
  497. /* Nonzero means print parse trace.  It is left uninitialized so that
  498.    multiple parsers can coexist.  */
  499. int yydebug;
  500. #else /* !YYDEBUG */
  501. # define YYDPRINTF(Args)
  502. # define YYDSYMPRINT(Args)
  503. # define YYDSYMPRINTF(Title, Token, Value, Location)
  504. # define YY_STACK_PRINT(Bottom, Top)
  505. # define YY_REDUCE_PRINT(Rule)
  506. #endif /* !YYDEBUG */
  507. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  508. #ifndef YYINITDEPTH
  509. # define YYINITDEPTH 200
  510. #endif
  511. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  512.    if the built-in stack extension method is used).
  513.    Do not make this value too large; the results are undefined if
  514.    SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
  515.    evaluated with infinite-precision integer arithmetic.  */
  516. #if YYMAXDEPTH == 0
  517. # undef YYMAXDEPTH
  518. #endif
  519. #ifndef YYMAXDEPTH
  520. # define YYMAXDEPTH 10000
  521. #endif
  522. #if YYERROR_VERBOSE
  523. # ifndef yystrlen
  524. #  if defined (__GLIBC__) && defined (_STRING_H)
  525. #   define yystrlen strlen
  526. #  else
  527. /* Return the length of YYSTR.  */
  528. static YYSIZE_T
  529. #   if defined (__STDC__) || defined (__cplusplus)
  530. yystrlen (const char *yystr)
  531. #   else
  532. yystrlen (yystr)
  533.      const char *yystr;
  534. #   endif
  535. {
  536.   register const char *yys = yystr;
  537.   while (*yys++ != '')
  538.     continue;
  539.   return yys - yystr - 1;
  540. }
  541. #  endif
  542. # endif
  543. # ifndef yystpcpy
  544. #  if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
  545. #   define yystpcpy stpcpy
  546. #  else
  547. /* Copy YYSRC to YYDEST, returning the address of the terminating '' in
  548.    YYDEST.  */
  549. static char *
  550. #   if defined (__STDC__) || defined (__cplusplus)
  551. yystpcpy (char *yydest, const char *yysrc)
  552. #   else
  553. yystpcpy (yydest, yysrc)
  554.      char *yydest;
  555.      const char *yysrc;
  556. #   endif
  557. {
  558.   register char *yyd = yydest;
  559.   register const char *yys = yysrc;
  560.   while ((*yyd++ = *yys++) != '')
  561.     continue;
  562.   return yyd - 1;
  563. }
  564. #  endif
  565. # endif
  566. #endif /* !YYERROR_VERBOSE */
  567. #if YYDEBUG
  568. /*--------------------------------.
  569. | Print this symbol on YYOUTPUT.  |
  570. `--------------------------------*/
  571. #if defined (__STDC__) || defined (__cplusplus)
  572. static void
  573. yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep)
  574. #else
  575. static void
  576. yysymprint (yyoutput, yytype, yyvaluep)
  577.     FILE *yyoutput;
  578.     int yytype;
  579.     YYSTYPE *yyvaluep;
  580. #endif
  581. {
  582.   /* Pacify ``unused variable'' warnings.  */
  583.   (void) yyvaluep;
  584.   if (yytype < YYNTOKENS)
  585.     {
  586.       YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  587. # ifdef YYPRINT
  588.       YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  589. # endif
  590.     }
  591.   else
  592.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
  593.   switch (yytype)
  594.     {
  595.       default:
  596.         break;
  597.     }
  598.   YYFPRINTF (yyoutput, ")");
  599. }
  600. #endif /* ! YYDEBUG */
  601. /*-----------------------------------------------.
  602. | Release the memory associated to this symbol.  |
  603. `-----------------------------------------------*/
  604. #if defined (__STDC__) || defined (__cplusplus)
  605. static void
  606. yydestruct (int yytype, YYSTYPE *yyvaluep)
  607. #else
  608. static void
  609. yydestruct (yytype, yyvaluep)
  610.     int yytype;
  611.     YYSTYPE *yyvaluep;
  612. #endif
  613. {
  614.   /* Pacify ``unused variable'' warnings.  */
  615.   (void) yyvaluep;
  616.   switch (yytype)
  617.     {
  618.       default:
  619.         break;
  620.     }
  621. }
  622. /* Prevent warnings from -Wmissing-prototypes.  */
  623. #ifdef YYPARSE_PARAM
  624. # if defined (__STDC__) || defined (__cplusplus)
  625. int yyparse (void *YYPARSE_PARAM);
  626. # else
  627. int yyparse ();
  628. # endif
  629. #else /* ! YYPARSE_PARAM */
  630. #if defined (__STDC__) || defined (__cplusplus)
  631. int yyparse (void);
  632. #else
  633. int yyparse ();
  634. #endif
  635. #endif /* ! YYPARSE_PARAM */
  636. /*----------.
  637. | yyparse.  |
  638. `----------*/
  639. #ifdef YYPARSE_PARAM
  640. # if defined (__STDC__) || defined (__cplusplus)
  641. int yyparse (void *YYPARSE_PARAM)
  642. # else
  643. int yyparse (YYPARSE_PARAM)
  644.   void *YYPARSE_PARAM;
  645. # endif
  646. #else /* ! YYPARSE_PARAM */
  647. #if defined (__STDC__) || defined (__cplusplus)
  648. int
  649. yyparse (void)
  650. #else
  651. int
  652. yyparse ()
  653. #endif
  654. #endif
  655. {
  656.   /* The lookahead symbol.  */
  657. int yychar;
  658. /* The semantic value of the lookahead symbol.  */
  659. YYSTYPE yylval;
  660. /* Number of syntax errors so far.  */
  661. int yynerrs;
  662.   register int yystate;
  663.   register int yyn;
  664.   int yyresult;
  665.   /* Number of tokens to shift before error messages enabled.  */
  666.   int yyerrstatus;
  667.   /* Lookahead token as an internal (translated) token number.  */
  668.   int yytoken = 0;
  669.   /* Three stacks and their tools:
  670.      `yyss': related to states,
  671.      `yyvs': related to semantic values,
  672.      `yyls': related to locations.
  673.      Refer to the stacks thru separate pointers, to allow yyoverflow
  674.      to reallocate them elsewhere.  */
  675.   /* The state stack.  */
  676.   short yyssa[YYINITDEPTH];
  677.   short *yyss = yyssa;
  678.   register short *yyssp;
  679.   /* The semantic value stack.  */
  680.   YYSTYPE yyvsa[YYINITDEPTH];
  681.   YYSTYPE *yyvs = yyvsa;
  682.   register YYSTYPE *yyvsp;
  683. #define YYPOPSTACK   (yyvsp--, yyssp--)
  684.   YYSIZE_T yystacksize = YYINITDEPTH;
  685.   /* The variables used to return semantic value and location from the
  686.      action routines.  */
  687.   YYSTYPE yyval;
  688.   /* When reducing, the number of symbols on the RHS of the reduced
  689.      rule.  */
  690.   int yylen;
  691.   YYDPRINTF ((stderr, "Starting parsen"));
  692.   yystate = 0;
  693.   yyerrstatus = 0;
  694.   yynerrs = 0;
  695.   yychar = YYEMPTY; /* Cause a token to be read.  */
  696.   /* Initialize stack pointers.
  697.      Waste one element of value and location stack
  698.      so that they stay on the same level as the state stack.
  699.      The wasted elements are never initialized.  */
  700.   yyssp = yyss;
  701.   yyvsp = yyvs;
  702.   goto yysetstate;
  703. /*------------------------------------------------------------.
  704. | yynewstate -- Push a new state, which is found in yystate.  |
  705. `------------------------------------------------------------*/
  706.  yynewstate:
  707.   /* In all cases, when you get here, the value and location stacks
  708.      have just been pushed. so pushing a state here evens the stacks.
  709.      */
  710.   yyssp++;
  711.  yysetstate:
  712.   *yyssp = yystate;
  713.   if (yyss + yystacksize - 1 <= yyssp)
  714.     {
  715.       /* Get the current used size of the three stacks, in elements.  */
  716.       YYSIZE_T yysize = yyssp - yyss + 1;
  717. #ifdef yyoverflow
  718.       {
  719. /* Give user a chance to reallocate the stack. Use copies of
  720.    these so that the &'s don't force the real ones into
  721.    memory.  */
  722. YYSTYPE *yyvs1 = yyvs;
  723. short *yyss1 = yyss;
  724. /* Each stack pointer address is followed by the size of the
  725.    data in use in that stack, in bytes.  This used to be a
  726.    conditional around just the two extra args, but that might
  727.    be undefined if yyoverflow is a macro.  */
  728. yyoverflow ("parser stack overflow",
  729.     &yyss1, yysize * sizeof (*yyssp),
  730.     &yyvs1, yysize * sizeof (*yyvsp),
  731.     &yystacksize);
  732. yyss = yyss1;
  733. yyvs = yyvs1;
  734.       }
  735. #else /* no yyoverflow */
  736. # ifndef YYSTACK_RELOCATE
  737.       goto yyoverflowlab;
  738. # else
  739.       /* Extend the stack our own way.  */
  740.       if (YYMAXDEPTH <= yystacksize)
  741. goto yyoverflowlab;
  742.       yystacksize *= 2;
  743.       if (YYMAXDEPTH < yystacksize)
  744. yystacksize = YYMAXDEPTH;
  745.       {
  746. short *yyss1 = yyss;
  747. union yyalloc *yyptr =
  748.   (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  749. if (! yyptr)
  750.   goto yyoverflowlab;
  751. YYSTACK_RELOCATE (yyss);
  752. YYSTACK_RELOCATE (yyvs);
  753. #  undef YYSTACK_RELOCATE
  754. if (yyss1 != yyssa)
  755.   YYSTACK_FREE (yyss1);
  756.       }
  757. # endif
  758. #endif /* no yyoverflow */
  759.       yyssp = yyss + yysize - 1;
  760.       yyvsp = yyvs + yysize - 1;
  761.       YYDPRINTF ((stderr, "Stack size increased to %lun",
  762.   (unsigned long int) yystacksize));
  763.       if (yyss + yystacksize - 1 <= yyssp)
  764. YYABORT;
  765.     }
  766.   YYDPRINTF ((stderr, "Entering state %dn", yystate));
  767.   goto yybackup;
  768. /*-----------.
  769. | yybackup.  |
  770. `-----------*/
  771. yybackup:
  772. /* Do appropriate processing given the current state.  */
  773. /* Read a lookahead token if we need one and don't already have one.  */
  774. /* yyresume: */
  775.   /* First try to decide what to do without reference to lookahead token.  */
  776.   yyn = yypact[yystate];
  777.   if (yyn == YYPACT_NINF)
  778.     goto yydefault;
  779.   /* Not known => get a lookahead token if don't already have one.  */
  780.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  781.   if (yychar == YYEMPTY)
  782.     {
  783.       YYDPRINTF ((stderr, "Reading a token: "));
  784.       yychar = YYLEX;
  785.     }
  786.   if (yychar <= YYEOF)
  787.     {
  788.       yychar = yytoken = YYEOF;
  789.       YYDPRINTF ((stderr, "Now at end of input.n"));
  790.     }
  791.   else
  792.     {
  793.       yytoken = YYTRANSLATE (yychar);
  794.       YYDSYMPRINTF ("Next token is", yytoken, &yylval, &yylloc);
  795.     }
  796.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  797.      detect an error, take that action.  */
  798.   yyn += yytoken;
  799.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  800.     goto yydefault;
  801.   yyn = yytable[yyn];
  802.   if (yyn <= 0)
  803.     {
  804.       if (yyn == 0 || yyn == YYTABLE_NINF)
  805. goto yyerrlab;
  806.       yyn = -yyn;
  807.       goto yyreduce;
  808.     }
  809.   if (yyn == YYFINAL)
  810.     YYACCEPT;
  811.   /* Shift the lookahead token.  */
  812.   YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));
  813.   /* Discard the token being shifted unless it is eof.  */
  814.   if (yychar != YYEOF)
  815.     yychar = YYEMPTY;
  816.   *++yyvsp = yylval;
  817.   /* Count tokens shifted since error; after three, turn off error
  818.      status.  */
  819.   if (yyerrstatus)
  820.     yyerrstatus--;
  821.   yystate = yyn;
  822.   goto yynewstate;
  823. /*-----------------------------------------------------------.
  824. | yydefault -- do the default action for the current state.  |
  825. `-----------------------------------------------------------*/
  826. yydefault:
  827.   yyn = yydefact[yystate];
  828.   if (yyn == 0)
  829.     goto yyerrlab;
  830.   goto yyreduce;
  831. /*-----------------------------.
  832. | yyreduce -- Do a reduction.  |
  833. `-----------------------------*/
  834. yyreduce:
  835.   /* yyn is the number of a rule to reduce with.  */
  836.   yylen = yyr2[yyn];
  837.   /* If YYLEN is nonzero, implement the default value of the action:
  838.      `$$ = $1'.
  839.      Otherwise, the following line sets YYVAL to garbage.
  840.      This behavior is undocumented and Bison
  841.      users should not rely upon it.  Assigning to YYVAL
  842.      unconditionally makes the parser a bit smaller, and it avoids a
  843.      GCC warning that YYVAL may be used uninitialized.  */
  844.   yyval = yyvsp[1-yylen];
  845.   YY_REDUCE_PRINT (yyn);
  846.   switch (yyn)
  847.     {
  848.         case 3:
  849. #line 103 "bdb_query_bison.y"
  850.     {
  851.             yyval = yyvsp[0];         
  852.         ;}
  853.     break;
  854.   case 4:
  855. #line 107 "bdb_query_bison.y"
  856.     {
  857.             yyval = yyvsp[0];         
  858.         ;}
  859.     break;
  860.   case 5:
  861. #line 111 "bdb_query_bison.y"
  862.     {
  863.             yyval = yyvsp[0];         
  864.         ;}
  865.     break;
  866.   case 6:
  867. #line 115 "bdb_query_bison.y"
  868.     { 
  869.             yyval = CBDB_Query::NewLogicalNode(CBDB_QueryNode::eAnd, yyvsp[-2], yyvsp[0]);
  870.             BisonSaveStageResult(yyval, parm);
  871.         ;}
  872.     break;
  873.   case 7:
  874. #line 120 "bdb_query_bison.y"
  875.     {
  876.             yyval = CBDB_Query::NewLogicalNode(CBDB_QueryNode::eOr, yyvsp[-2], yyvsp[0]);
  877.             BisonSaveStageResult(yyval, parm);
  878.         ;}
  879.     break;
  880.   case 8:
  881. #line 125 "bdb_query_bison.y"
  882.     {
  883.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eEQ, yyvsp[-2], yyvsp[0]);
  884.             BisonSaveStageResult(yyval, parm);
  885.         ;}
  886.     break;
  887.   case 9:
  888. #line 130 "bdb_query_bison.y"
  889.     {
  890.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eEQ, yyvsp[-2], yyvsp[0]);
  891.             yyval->GetValue().SetNot();
  892.             BisonSaveStageResult(yyval, parm);
  893.         ;}
  894.     break;
  895.   case 10:
  896. #line 136 "bdb_query_bison.y"
  897.     {
  898.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eGT, yyvsp[-2], yyvsp[0]);
  899.             BisonSaveStageResult(yyval, parm);
  900.         ;}
  901.     break;
  902.   case 11:
  903. #line 141 "bdb_query_bison.y"
  904.     {
  905.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eGE, yyvsp[-2], yyvsp[0]);
  906.             BisonSaveStageResult(yyval, parm);
  907.         ;}
  908.     break;
  909.   case 12:
  910. #line 146 "bdb_query_bison.y"
  911.     {
  912.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eLT, yyvsp[-2], yyvsp[0]);
  913.             BisonSaveStageResult(yyval, parm);
  914.         ;}
  915.     break;
  916.   case 13:
  917. #line 151 "bdb_query_bison.y"
  918.     {
  919.             yyval = CBDB_Query::NewOperatorNode(CBDB_QueryNode::eLE, yyvsp[-2], yyvsp[0]);
  920.             BisonSaveStageResult(yyval, parm);
  921.         ;}
  922.     break;
  923.   case 14:
  924. #line 156 "bdb_query_bison.y"
  925.     { 
  926.             yyval = yyvsp[-1];
  927.         ;}
  928.     break;
  929.   case 15:
  930. #line 160 "bdb_query_bison.y"
  931.     {
  932.             yyval = CBDB_Query::NewLogicalNode(CBDB_QueryNode::eNot, yyvsp[0], 0);
  933.             BisonSaveStageResult(yyval, parm);
  934.         ;}
  935.     break;
  936.     }
  937. /* Line 999 of yacc.c.  */
  938. #line 1133 "bdb_query_bison.tab.c"
  939.   yyvsp -= yylen;
  940.   yyssp -= yylen;
  941.   YY_STACK_PRINT (yyss, yyssp);
  942.   *++yyvsp = yyval;
  943.   /* Now `shift' the result of the reduction.  Determine what state
  944.      that goes to, based on the state we popped back to and the rule
  945.      number reduced by.  */
  946.   yyn = yyr1[yyn];
  947.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  948.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  949.     yystate = yytable[yystate];
  950.   else
  951.     yystate = yydefgoto[yyn - YYNTOKENS];
  952.   goto yynewstate;
  953. /*------------------------------------.
  954. | yyerrlab -- here on detecting error |
  955. `------------------------------------*/
  956. yyerrlab:
  957.   /* If not already recovering from an error, report this error.  */
  958.   if (!yyerrstatus)
  959.     {
  960.       ++yynerrs;
  961. #if YYERROR_VERBOSE
  962.       yyn = yypact[yystate];
  963.       if (YYPACT_NINF < yyn && yyn < YYLAST)
  964. {
  965.   YYSIZE_T yysize = 0;
  966.   int yytype = YYTRANSLATE (yychar);
  967.   const char* yyprefix;
  968.   char *yymsg;
  969.   int yyx;
  970.   /* Start YYX at -YYN if negative to avoid negative indexes in
  971.      YYCHECK.  */
  972.   int yyxbegin = yyn < 0 ? -yyn : 0;
  973.   /* Stay within bounds of both yycheck and yytname.  */
  974.   int yychecklim = YYLAST - yyn;
  975.   int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  976.   int yycount = 0;
  977.   yyprefix = ", expecting ";
  978.   for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  979.     if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
  980.       {
  981. yysize += yystrlen (yyprefix) + yystrlen (yytname [yyx]);
  982. yycount += 1;
  983. if (yycount == 5)
  984.   {
  985.     yysize = 0;
  986.     break;
  987.   }
  988.       }
  989.   yysize += (sizeof ("syntax error, unexpected ")
  990.      + yystrlen (yytname[yytype]));
  991.   yymsg = (char *) YYSTACK_ALLOC (yysize);
  992.   if (yymsg != 0)
  993.     {
  994.       char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");
  995.       yyp = yystpcpy (yyp, yytname[yytype]);
  996.       if (yycount < 5)
  997. {
  998.   yyprefix = ", expecting ";
  999.   for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1000.     if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
  1001.       {
  1002. yyp = yystpcpy (yyp, yyprefix);
  1003. yyp = yystpcpy (yyp, yytname[yyx]);
  1004. yyprefix = " or ";
  1005.       }
  1006. }
  1007.       yyerror (yymsg);
  1008.       YYSTACK_FREE (yymsg);
  1009.     }
  1010.   else
  1011.     yyerror ("syntax error; also virtual memory exhausted");
  1012. }
  1013.       else
  1014. #endif /* YYERROR_VERBOSE */
  1015. yyerror ("syntax error");
  1016.     }
  1017.   if (yyerrstatus == 3)
  1018.     {
  1019.       /* If just tried and failed to reuse lookahead token after an
  1020.  error, discard it.  */
  1021.       /* Return failure if at end of input.  */
  1022.       if (yychar == YYEOF)
  1023.         {
  1024.   /* Pop the error token.  */
  1025.           YYPOPSTACK;
  1026.   /* Pop the rest of the stack.  */
  1027.   while (yyss < yyssp)
  1028.     {
  1029.       YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
  1030.       yydestruct (yystos[*yyssp], yyvsp);
  1031.       YYPOPSTACK;
  1032.     }
  1033.   YYABORT;
  1034.         }
  1035.       YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);
  1036.       yydestruct (yytoken, &yylval);
  1037.       yychar = YYEMPTY;
  1038.     }
  1039.   /* Else will try to reuse lookahead token after shifting the error
  1040.      token.  */
  1041.   goto yyerrlab1;
  1042. /*----------------------------------------------------.
  1043. | yyerrlab1 -- error raised explicitly by an action.  |
  1044. `----------------------------------------------------*/
  1045. yyerrlab1:
  1046.   yyerrstatus = 3; /* Each real token shifted decrements this.  */
  1047.   for (;;)
  1048.     {
  1049.       yyn = yypact[yystate];
  1050.       if (yyn != YYPACT_NINF)
  1051. {
  1052.   yyn += YYTERROR;
  1053.   if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  1054.     {
  1055.       yyn = yytable[yyn];
  1056.       if (0 < yyn)
  1057. break;
  1058.     }
  1059. }
  1060.       /* Pop the current state because it cannot handle the error token.  */
  1061.       if (yyssp == yyss)
  1062. YYABORT;
  1063.       YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
  1064.       yydestruct (yystos[yystate], yyvsp);
  1065.       yyvsp--;
  1066.       yystate = *--yyssp;
  1067.       YY_STACK_PRINT (yyss, yyssp);
  1068.     }
  1069.   if (yyn == YYFINAL)
  1070.     YYACCEPT;
  1071.   YYDPRINTF ((stderr, "Shifting error token, "));
  1072.   *++yyvsp = yylval;
  1073.   yystate = yyn;
  1074.   goto yynewstate;
  1075. /*-------------------------------------.
  1076. | yyacceptlab -- YYACCEPT comes here.  |
  1077. `-------------------------------------*/
  1078. yyacceptlab:
  1079.   yyresult = 0;
  1080.   goto yyreturn;
  1081. /*-----------------------------------.
  1082. | yyabortlab -- YYABORT comes here.  |
  1083. `-----------------------------------*/
  1084. yyabortlab:
  1085.   yyresult = 1;
  1086.   goto yyreturn;
  1087. #ifndef yyoverflow
  1088. /*----------------------------------------------.
  1089. | yyoverflowlab -- parser overflow comes here.  |
  1090. `----------------------------------------------*/
  1091. yyoverflowlab:
  1092.   yyerror ("parser stack overflow");
  1093.   yyresult = 2;
  1094.   /* Fall through.  */
  1095. #endif
  1096. yyreturn:
  1097. #ifndef yyoverflow
  1098.   if (yyss != yyssa)
  1099.     YYSTACK_FREE (yyss);
  1100. #endif
  1101.   return yyresult;
  1102. }
  1103. #line 166 "bdb_query_bison.y"