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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: newick.tab.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:09:32  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #include <ncbi_pch.hpp>
  10. /* A Bison parser, made from newick.ypp
  11.    by GNU bison 1.35.  */
  12. #define YYBISON 1  /* Identify Bison output.  */
  13. #define yyparse newickparse
  14. #define yylex newicklex
  15. #define yyerror newickerror
  16. #define yylval newicklval
  17. #define yychar newickchar
  18. #define yydebug newickdebug
  19. #define yynerrs newicknerrs
  20. # define LABEL 257
  21. # define NUM 258
  22. #line 1 "newick.ypp"
  23. /*  $Id: newick.tab.cpp,v 1000.1 2004/06/01 18:09:32 gouriano Exp $
  24.  * ===========================================================================
  25.  *
  26.  *                            PUBLIC DOMAIN NOTICE
  27.  *               National Center for Biotechnology Information
  28.  *
  29.  *  This software/database is a "United States Government Work" under the
  30.  *  terms of the United States Copyright Act.  It was written as part of
  31.  *  the author's official duties as a United States Government employee and
  32.  *  thus cannot be copyrighted.  This software/database is freely available
  33.  *  to the public for use. The National Library of Medicine and the U.S.
  34.  *  Government have not placed any restriction on its use or reproduction.
  35.  *
  36.  *  Although all reasonable efforts have been taken to ensure the accuracy
  37.  *  and reliability of the software and data, the NLM and the U.S.
  38.  *  Government do not and cannot warrant the performance or results that
  39.  *  may be obtained by using this software or data. The NLM and the U.S.
  40.  *  Government disclaim all warranties, express or implied, including
  41.  *  warranties of performance, merchantability or fitness for any particular
  42.  *  purpose.
  43.  *
  44.  *  Please cite the author in any work or product based on this material.
  45.  *
  46.  * ===========================================================================
  47.  *
  48.  * Authors:  Josh Cherry
  49.  *
  50.  * File Description:  bison parser for Newick format phylogenetic trees
  51.  *
  52.  */
  53. /*
  54.  * Meant to be used in conjunction with flex lexer defined
  55.  * by newick.lpp.  Generate code using (essentially)
  56.  *   flex -olex.newick.cpp newick.lpp
  57.  *   bison -d -p newick newick.ypp
  58.  * The line '#include <unistd.h>' must be removed from the flex-generated
  59.  * code for it to compile on some platforms.
  60.  */
  61. #include <algo/phy_tree/phy_node.hpp>
  62. USING_SCOPE(ncbi);
  63. static int nodecount = 0;
  64. static TPhyTreeNode *g_Tree = 0;
  65. void yyerror(const char *error);
  66. int yylex(void);
  67. CNcbiIstream *g_NewickIstr;
  68. // a list of all allocated nodes so they can be deleted on error
  69. vector<TPhyTreeNode*> g_NodeList;
  70. #line 55 "newick.ypp"
  71. #ifndef YYSTYPE
  72. typedef union {
  73.     char *strval;
  74.     double dblval;
  75.     TPhyTreeNode *nodeval;
  76. } yystype;
  77. # define YYSTYPE yystype
  78. # define YYSTYPE_IS_TRIVIAL 1
  79. #endif
  80. #ifndef YYDEBUG
  81. # define YYDEBUG 0
  82. #endif
  83. #define YYFINAL 16
  84. #define YYFLAG -32768
  85. #define YYNTBASE 10
  86. /* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */
  87. #define YYTRANSLATE(x) ((unsigned)(x) <= 258 ? yytranslate[x] : 13)
  88. /* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */
  89. static const char yytranslate[] =
  90. {
  91.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  92.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  93.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  94.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  95.        6,     7,     2,     2,     9,     2,     2,     2,     2,     2,
  96.        2,     2,     2,     2,     2,     2,     2,     2,     8,     5,
  97.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  98.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  99.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  100.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  101.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  102.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  103.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  104.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  105.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  106.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  107.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  108.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  109.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  110.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  111.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  112.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  113.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  114.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  115.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  116.        2,     2,     2,     2,     2,     2,     1,     3,     4
  117. };
  118. #if YYDEBUG
  119. static const short yyprhs[] =
  120. {
  121.        0,     0,     3,     9,    13,    17,    19,    21
  122. };
  123. static const short yyrhs[] =
  124. {
  125.       11,     5,     0,     6,    12,     7,     8,     4,     0,     6,
  126.       12,     7,     0,     3,     8,     4,     0,     3,     0,    11,
  127.        0,    12,     9,    11,     0
  128. };
  129. #endif
  130. #if YYDEBUG
  131. /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
  132. static const short yyrline[] =
  133. {
  134.        0,    69,    75,    82,    88,    96,   105,   110
  135. };
  136. #endif
  137. #if (YYDEBUG) || defined YYERROR_VERBOSE
  138. /* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */
  139. static const char *const yytname[] =
  140. {
  141.   "$", "error", "$undefined.", "LABEL", "NUM", "';'", "'('", "')'", "':'", 
  142.   "','", "tree", "node", "nodelist", 0
  143. };
  144. #endif
  145. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
  146. static const short yyr1[] =
  147. {
  148.        0,    10,    11,    11,    11,    11,    12,    12
  149. };
  150. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
  151. static const short yyr2[] =
  152. {
  153.        0,     2,     5,     3,     3,     1,     1,     3
  154. };
  155. /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
  156.    doesn't specify something else to do.  Zero means the default is an
  157.    error. */
  158. static const short yydefact[] =
  159. {
  160.        0,     5,     0,     0,     0,     6,     0,     1,     4,     3,
  161.        0,     0,     7,     2,     0,     0,     0
  162. };
  163. static const short yydefgoto[] =
  164. {
  165.       14,     3,     6
  166. };
  167. static const short yypact[] =
  168. {
  169.       -1,    -4,    -1,     1,     3,-32768,    -6,-32768,-32768,     2,
  170.       -1,     5,-32768,-32768,    11,    12,-32768
  171. };
  172. static const short yypgoto[] =
  173. {
  174.   -32768,    -2,-32768
  175. };
  176. #define YYLAST 12
  177. static const short yytable[] =
  178. {
  179.        5,     9,     1,    10,     4,     2,     7,     8,    12,    13,
  180.       11,    15,    16
  181. };
  182. static const short yycheck[] =
  183. {
  184.        2,     7,     3,     9,     8,     6,     5,     4,    10,     4,
  185.        8,     0,     0
  186. };
  187. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  188. #line 3 "/usr/share/bison/bison.simple"
  189. /* Skeleton output parser for bison,
  190.    Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software
  191.    Foundation, Inc.
  192.    This program is free software; you can redistribute it and/or modify
  193.    it under the terms of the GNU General Public License as published by
  194.    the Free Software Foundation; either version 2, or (at your option)
  195.    any later version.
  196.    This program is distributed in the hope that it will be useful,
  197.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  198.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  199.    GNU General Public License for more details.
  200.    You should have received a copy of the GNU General Public License
  201.    along with this program; if not, write to the Free Software
  202.    Foundation, Inc., 59 Temple Place - Suite 330,
  203.    Boston, MA 02111-1307, USA.  */
  204. /* As a special exception, when this file is copied by Bison into a
  205.    Bison output file, you may use that output file without restriction.
  206.    This special exception was added by the Free Software Foundation
  207.    in version 1.24 of Bison.  */
  208. /* This is the parser code that is written into each bison parser when
  209.    the %semantic_parser declaration is not specified in the grammar.
  210.    It was written by Richard Stallman by simplifying the hairy parser
  211.    used when %semantic_parser is specified.  */
  212. /* All symbols defined below should begin with yy or YY, to avoid
  213.    infringing on user name space.  This should be done even for local
  214.    variables, as they might otherwise be expanded by user macros.
  215.    There are some unavoidable exceptions within include files to
  216.    define necessary library symbols; they are noted "INFRINGES ON
  217.    USER NAME SPACE" below.  */
  218. #if ! defined (yyoverflow) || defined (YYERROR_VERBOSE)
  219. /* The parser invokes alloca or malloc; define the necessary symbols.  */
  220. # if YYSTACK_USE_ALLOCA
  221. #  define YYSTACK_ALLOC alloca
  222. # else
  223. #  ifndef YYSTACK_USE_ALLOCA
  224. #   if defined (alloca) || defined (_ALLOCA_H)
  225. #    define YYSTACK_ALLOC alloca
  226. #   else
  227. #    ifdef __GNUC__
  228. #     define YYSTACK_ALLOC __builtin_alloca
  229. #    endif
  230. #   endif
  231. #  endif
  232. # endif
  233. # ifdef YYSTACK_ALLOC
  234.    /* Pacify GCC's `empty if-body' warning. */
  235. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
  236. # else
  237. #  if defined (__STDC__) || defined (__cplusplus)
  238. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  239. #   define YYSIZE_T size_t
  240. #  endif
  241. #  define YYSTACK_ALLOC malloc
  242. #  define YYSTACK_FREE free
  243. # endif
  244. #endif /* ! defined (yyoverflow) || defined (YYERROR_VERBOSE) */
  245. #if (! defined (yyoverflow) 
  246.      && (! defined (__cplusplus) 
  247.  || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
  248. /* A type that is properly aligned for any stack member.  */
  249. union yyalloc
  250. {
  251.   short yyss;
  252.   YYSTYPE yyvs;
  253. # if YYLSP_NEEDED
  254.   YYLTYPE yyls;
  255. # endif
  256. };
  257. /* The size of the maximum gap between one aligned stack and the next.  */
  258. # define YYSTACK_GAP_MAX (sizeof (union yyalloc) - 1)
  259. /* The size of an array large to enough to hold all stacks, each with
  260.    N elements.  */
  261. # if YYLSP_NEEDED
  262. #  define YYSTACK_BYTES(N) 
  263.      ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE))
  264.       + 2 * YYSTACK_GAP_MAX)
  265. # else
  266. #  define YYSTACK_BYTES(N) 
  267.      ((N) * (sizeof (short) + sizeof (YYSTYPE))
  268.       + YYSTACK_GAP_MAX)
  269. # endif
  270. /* Copy COUNT objects from FROM to TO.  The source and destination do
  271.    not overlap.  */
  272. # ifndef YYCOPY
  273. #  if 1 < __GNUC__
  274. #   define YYCOPY(To, From, Count) 
  275.       __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
  276. #  else
  277. #   define YYCOPY(To, From, Count)
  278.       do
  279. {
  280.   register YYSIZE_T yyi;
  281.   for (yyi = 0; yyi < (Count); yyi++)
  282.     (To)[yyi] = (From)[yyi];
  283. }
  284.       while (0)
  285. #  endif
  286. # endif
  287. /* Relocate STACK from its old location to the new one.  The
  288.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  289.    elements in the stack, and YYPTR gives the new location of the
  290.    stack.  Advance YYPTR to a properly aligned location for the next
  291.    stack.  */
  292. # define YYSTACK_RELOCATE(Stack)
  293.     do
  294.       {
  295. YYSIZE_T yynewbytes;
  296. YYCOPY (&yyptr->Stack, Stack, yysize);
  297. Stack = &yyptr->Stack;
  298. yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAX;
  299. yyptr += yynewbytes / sizeof (*yyptr);
  300.       }
  301.     while (0)
  302. #endif
  303. #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
  304. # define YYSIZE_T __SIZE_TYPE__
  305. #endif
  306. #if ! defined (YYSIZE_T) && defined (size_t)
  307. # define YYSIZE_T size_t
  308. #endif
  309. #if ! defined (YYSIZE_T)
  310. # if defined (__STDC__) || defined (__cplusplus)
  311. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  312. #  define YYSIZE_T size_t
  313. # endif
  314. #endif
  315. #if ! defined (YYSIZE_T)
  316. # define YYSIZE_T unsigned int
  317. #endif
  318. #define yyerrok (yyerrstatus = 0)
  319. #define yyclearin (yychar = YYEMPTY)
  320. #define YYEMPTY -2
  321. #define YYEOF 0
  322. #define YYACCEPT goto yyacceptlab
  323. #define YYABORT  goto yyabortlab
  324. #define YYERROR goto yyerrlab1
  325. /* Like YYERROR except do call yyerror.  This remains here temporarily
  326.    to ease the transition to the new meaning of YYERROR, for GCC.
  327.    Once GCC version 2 has supplanted version 1, this can go.  */
  328. #define YYFAIL goto yyerrlab
  329. #define YYRECOVERING()  (!!yyerrstatus)
  330. #define YYBACKUP(Token, Value)
  331. do
  332.   if (yychar == YYEMPTY && yylen == 1)
  333.     {
  334.       yychar = (Token);
  335.       yylval = (Value);
  336.       yychar1 = YYTRANSLATE (yychar);
  337.       YYPOPSTACK;
  338.       goto yybackup;
  339.     }
  340.   else
  341.     { 
  342.       yyerror ("syntax error: cannot back up");
  343.       YYERROR;
  344.     }
  345. while (0)
  346. #define YYTERROR 1
  347. #define YYERRCODE 256
  348. /* YYLLOC_DEFAULT -- Compute the default location (before the actions
  349.    are run).
  350.    When YYLLOC_DEFAULT is run, CURRENT is set the location of the
  351.    first token.  By default, to implement support for ranges, extend
  352.    its range to the last symbol.  */
  353. #ifndef YYLLOC_DEFAULT
  354. # define YYLLOC_DEFAULT(Current, Rhs, N)       
  355.    Current.last_line   = Rhs[N].last_line;
  356.    Current.last_column = Rhs[N].last_column;
  357. #endif
  358. /* YYLEX -- calling `yylex' with the right arguments.  */
  359. #if YYPURE
  360. # if YYLSP_NEEDED
  361. #  ifdef YYLEX_PARAM
  362. #   define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
  363. #  else
  364. #   define YYLEX yylex (&yylval, &yylloc)
  365. #  endif
  366. # else /* !YYLSP_NEEDED */
  367. #  ifdef YYLEX_PARAM
  368. #   define YYLEX yylex (&yylval, YYLEX_PARAM)
  369. #  else
  370. #   define YYLEX yylex (&yylval)
  371. #  endif
  372. # endif /* !YYLSP_NEEDED */
  373. #else /* !YYPURE */
  374. # define YYLEX yylex ()
  375. #endif /* !YYPURE */
  376. /* Enable debugging if requested.  */
  377. #if YYDEBUG
  378. # ifndef YYFPRINTF
  379. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  380. #  define YYFPRINTF fprintf
  381. # endif
  382. # define YYDPRINTF(Args)
  383. do {
  384.   if (yydebug)
  385.     YYFPRINTF Args;
  386. } while (0)
  387. /* Nonzero means print parse trace.  It is left uninitialized so that
  388.    multiple parsers can coexist.  */
  389. int yydebug;
  390. #else /* !YYDEBUG */
  391. # define YYDPRINTF(Args)
  392. #endif /* !YYDEBUG */
  393. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  394. #ifndef YYINITDEPTH
  395. # define YYINITDEPTH 200
  396. #endif
  397. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  398.    if the built-in stack extension method is used).
  399.    Do not make this value too large; the results are undefined if
  400.    SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
  401.    evaluated with infinite-precision integer arithmetic.  */
  402. #if YYMAXDEPTH == 0
  403. # undef YYMAXDEPTH
  404. #endif
  405. #ifndef YYMAXDEPTH
  406. # define YYMAXDEPTH 10000
  407. #endif
  408. #ifdef YYERROR_VERBOSE
  409. # ifndef yystrlen
  410. #  if defined (__GLIBC__) && defined (_STRING_H)
  411. #   define yystrlen strlen
  412. #  else
  413. /* Return the length of YYSTR.  */
  414. static YYSIZE_T
  415. #   if defined (__STDC__) || defined (__cplusplus)
  416. yystrlen (const char *yystr)
  417. #   else
  418. yystrlen (yystr)
  419.      const char *yystr;
  420. #   endif
  421. {
  422.   register const char *yys = yystr;
  423.   while (*yys++ != '')
  424.     continue;
  425.   return yys - yystr - 1;
  426. }
  427. #  endif
  428. # endif
  429. # ifndef yystpcpy
  430. #  if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
  431. #   define yystpcpy stpcpy
  432. #  else
  433. /* Copy YYSRC to YYDEST, returning the address of the terminating '' in
  434.    YYDEST.  */
  435. static char *
  436. #   if defined (__STDC__) || defined (__cplusplus)
  437. yystpcpy (char *yydest, const char *yysrc)
  438. #   else
  439. yystpcpy (yydest, yysrc)
  440.      char *yydest;
  441.      const char *yysrc;
  442. #   endif
  443. {
  444.   register char *yyd = yydest;
  445.   register const char *yys = yysrc;
  446.   while ((*yyd++ = *yys++) != '')
  447.     continue;
  448.   return yyd - 1;
  449. }
  450. #  endif
  451. # endif
  452. #endif
  453. #line 315 "/usr/share/bison/bison.simple"
  454. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  455.    into yyparse.  The argument should have type void *.
  456.    It should actually point to an object.
  457.    Grammar actions can access the variable by casting it
  458.    to the proper pointer type.  */
  459. #ifdef YYPARSE_PARAM
  460. # if defined (__STDC__) || defined (__cplusplus)
  461. #  define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
  462. #  define YYPARSE_PARAM_DECL
  463. # else
  464. #  define YYPARSE_PARAM_ARG YYPARSE_PARAM
  465. #  define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  466. # endif
  467. #else /* !YYPARSE_PARAM */
  468. # define YYPARSE_PARAM_ARG
  469. # define YYPARSE_PARAM_DECL
  470. #endif /* !YYPARSE_PARAM */
  471. /* Prevent warning if -Wstrict-prototypes.  */
  472. #ifdef __GNUC__
  473. # ifdef YYPARSE_PARAM
  474. int yyparse (void *);
  475. # else
  476. int yyparse (void);
  477. # endif
  478. #endif
  479. /* YY_DECL_VARIABLES -- depending whether we use a pure parser,
  480.    variables are global, or local to YYPARSE.  */
  481. #define YY_DECL_NON_LSP_VARIABLES
  482. /* The lookahead symbol.  */
  483. int yychar;
  484. /* The semantic value of the lookahead symbol. */
  485. YYSTYPE yylval;
  486. /* Number of parse errors so far.  */
  487. int yynerrs;
  488. #if YYLSP_NEEDED
  489. # define YY_DECL_VARIABLES
  490. YY_DECL_NON_LSP_VARIABLES
  491. /* Location data for the lookahead symbol.  */
  492. YYLTYPE yylloc;
  493. #else
  494. # define YY_DECL_VARIABLES
  495. YY_DECL_NON_LSP_VARIABLES
  496. #endif
  497. /* If nonreentrant, generate the variables here. */
  498. #if !YYPURE
  499. YY_DECL_VARIABLES
  500. #endif  /* !YYPURE */
  501. int
  502. yyparse (YYPARSE_PARAM_ARG)
  503.      YYPARSE_PARAM_DECL
  504. {
  505.   /* If reentrant, generate the variables here. */
  506. #if YYPURE
  507.   YY_DECL_VARIABLES
  508. #endif  /* !YYPURE */
  509.   register int yystate;
  510.   register int yyn;
  511.   int yyresult;
  512.   /* Number of tokens to shift before error messages enabled.  */
  513.   int yyerrstatus;
  514.   /* Lookahead token as an internal (translated) token number.  */
  515.   int yychar1 = 0;
  516.   /* Three stacks and their tools:
  517.      `yyss': related to states,
  518.      `yyvs': related to semantic values,
  519.      `yyls': related to locations.
  520.      Refer to the stacks thru separate pointers, to allow yyoverflow
  521.      to reallocate them elsewhere.  */
  522.   /* The state stack. */
  523.   short yyssa[YYINITDEPTH];
  524.   short *yyss = yyssa;
  525.   register short *yyssp;
  526.   /* The semantic value stack.  */
  527.   YYSTYPE yyvsa[YYINITDEPTH];
  528.   YYSTYPE *yyvs = yyvsa;
  529.   register YYSTYPE *yyvsp;
  530. #if YYLSP_NEEDED
  531.   /* The location stack.  */
  532.   YYLTYPE yylsa[YYINITDEPTH];
  533.   YYLTYPE *yyls = yylsa;
  534.   YYLTYPE *yylsp;
  535. #endif
  536. #if YYLSP_NEEDED
  537. # define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  538. #else
  539. # define YYPOPSTACK   (yyvsp--, yyssp--)
  540. #endif
  541.   YYSIZE_T yystacksize = YYINITDEPTH;
  542.   /* The variables used to return semantic value and location from the
  543.      action routines.  */
  544.   YYSTYPE yyval;
  545. #if YYLSP_NEEDED
  546.   YYLTYPE yyloc;
  547. #endif
  548.   /* When reducing, the number of symbols on the RHS of the reduced
  549.      rule. */
  550.   int yylen;
  551.   YYDPRINTF ((stderr, "Starting parsen"));
  552.   yystate = 0;
  553.   yyerrstatus = 0;
  554.   yynerrs = 0;
  555.   yychar = YYEMPTY; /* Cause a token to be read.  */
  556.   /* Initialize stack pointers.
  557.      Waste one element of value and location stack
  558.      so that they stay on the same level as the state stack.
  559.      The wasted elements are never initialized.  */
  560.   yyssp = yyss;
  561.   yyvsp = yyvs;
  562. #if YYLSP_NEEDED
  563.   yylsp = yyls;
  564. #endif
  565.   goto yysetstate;
  566. /*------------------------------------------------------------.
  567. | yynewstate -- Push a new state, which is found in yystate.  |
  568. `------------------------------------------------------------*/
  569.  yynewstate:
  570.   /* In all cases, when you get here, the value and location stacks
  571.      have just been pushed. so pushing a state here evens the stacks.
  572.      */
  573.   yyssp++;
  574.  yysetstate:
  575.   *yyssp = yystate;
  576.   if (yyssp >= yyss + yystacksize - 1)
  577.     {
  578.       /* Get the current used size of the three stacks, in elements.  */
  579.       YYSIZE_T yysize = yyssp - yyss + 1;
  580. #ifdef yyoverflow
  581.       {
  582. /* Give user a chance to reallocate the stack. Use copies of
  583.    these so that the &'s don't force the real ones into
  584.    memory.  */
  585. YYSTYPE *yyvs1 = yyvs;
  586. short *yyss1 = yyss;
  587. /* Each stack pointer address is followed by the size of the
  588.    data in use in that stack, in bytes.  */
  589. # if YYLSP_NEEDED
  590. YYLTYPE *yyls1 = yyls;
  591. /* This used to be a conditional around just the two extra args,
  592.    but that might be undefined if yyoverflow is a macro.  */
  593. yyoverflow ("parser stack overflow",
  594.     &yyss1, yysize * sizeof (*yyssp),
  595.     &yyvs1, yysize * sizeof (*yyvsp),
  596.     &yyls1, yysize * sizeof (*yylsp),
  597.     &yystacksize);
  598. yyls = yyls1;
  599. # else
  600. yyoverflow ("parser stack overflow",
  601.     &yyss1, yysize * sizeof (*yyssp),
  602.     &yyvs1, yysize * sizeof (*yyvsp),
  603.     &yystacksize);
  604. # endif
  605. yyss = yyss1;
  606. yyvs = yyvs1;
  607.       }
  608. #else /* no yyoverflow */
  609. # ifndef YYSTACK_RELOCATE
  610.       goto yyoverflowlab;
  611. # else
  612.       /* Extend the stack our own way.  */
  613.       if (yystacksize >= YYMAXDEPTH)
  614. goto yyoverflowlab;
  615.       yystacksize *= 2;
  616.       if (yystacksize > YYMAXDEPTH)
  617. yystacksize = YYMAXDEPTH;
  618.       {
  619. short *yyss1 = yyss;
  620. union yyalloc *yyptr =
  621.   (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  622. if (! yyptr)
  623.   goto yyoverflowlab;
  624. YYSTACK_RELOCATE (yyss);
  625. YYSTACK_RELOCATE (yyvs);
  626. # if YYLSP_NEEDED
  627. YYSTACK_RELOCATE (yyls);
  628. # endif
  629. # undef YYSTACK_RELOCATE
  630. if (yyss1 != yyssa)
  631.   YYSTACK_FREE (yyss1);
  632.       }
  633. # endif
  634. #endif /* no yyoverflow */
  635.       yyssp = yyss + yysize - 1;
  636.       yyvsp = yyvs + yysize - 1;
  637. #if YYLSP_NEEDED
  638.       yylsp = yyls + yysize - 1;
  639. #endif
  640.       YYDPRINTF ((stderr, "Stack size increased to %lun",
  641.   (unsigned long int) yystacksize));
  642.       if (yyssp >= yyss + yystacksize - 1)
  643. YYABORT;
  644.     }
  645.   YYDPRINTF ((stderr, "Entering state %dn", yystate));
  646.   goto yybackup;
  647. /*-----------.
  648. | yybackup.  |
  649. `-----------*/
  650. yybackup:
  651. /* Do appropriate processing given the current state.  */
  652. /* Read a lookahead token if we need one and don't already have one.  */
  653. /* yyresume: */
  654.   /* First try to decide what to do without reference to lookahead token.  */
  655.   yyn = yypact[yystate];
  656.   if (yyn == YYFLAG)
  657.     goto yydefault;
  658.   /* Not known => get a lookahead token if don't already have one.  */
  659.   /* yychar is either YYEMPTY or YYEOF
  660.      or a valid token in external form.  */
  661.   if (yychar == YYEMPTY)
  662.     {
  663.       YYDPRINTF ((stderr, "Reading a token: "));
  664.       yychar = YYLEX;
  665.     }
  666.   /* Convert token to internal form (in yychar1) for indexing tables with */
  667.   if (yychar <= 0) /* This means end of input. */
  668.     {
  669.       yychar1 = 0;
  670.       yychar = YYEOF; /* Don't call YYLEX any more */
  671.       YYDPRINTF ((stderr, "Now at end of input.n"));
  672.     }
  673.   else
  674.     {
  675.       yychar1 = YYTRANSLATE (yychar);
  676. #if YYDEBUG
  677.      /* We have to keep this `#if YYDEBUG', since we use variables
  678. which are defined only if `YYDEBUG' is set.  */
  679.       if (yydebug)
  680. {
  681.   YYFPRINTF (stderr, "Next token is %d (%s",
  682.      yychar, yytname[yychar1]);
  683.   /* Give the individual parser a way to print the precise
  684.      meaning of a token, for further debugging info.  */
  685. # ifdef YYPRINT
  686.   YYPRINT (stderr, yychar, yylval);
  687. # endif
  688.   YYFPRINTF (stderr, ")n");
  689. }
  690. #endif
  691.     }
  692.   yyn += yychar1;
  693.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  694.     goto yydefault;
  695.   yyn = yytable[yyn];
  696.   /* yyn is what to do for this token type in this state.
  697.      Negative => reduce, -yyn is rule number.
  698.      Positive => shift, yyn is new state.
  699.        New state is final state => don't bother to shift,
  700.        just return success.
  701.      0, or most negative number => error.  */
  702.   if (yyn < 0)
  703.     {
  704.       if (yyn == YYFLAG)
  705. goto yyerrlab;
  706.       yyn = -yyn;
  707.       goto yyreduce;
  708.     }
  709.   else if (yyn == 0)
  710.     goto yyerrlab;
  711.   if (yyn == YYFINAL)
  712.     YYACCEPT;
  713.   /* Shift the lookahead token.  */
  714.   YYDPRINTF ((stderr, "Shifting token %d (%s), ",
  715.       yychar, yytname[yychar1]));
  716.   /* Discard the token being shifted unless it is eof.  */
  717.   if (yychar != YYEOF)
  718.     yychar = YYEMPTY;
  719.   *++yyvsp = yylval;
  720. #if YYLSP_NEEDED
  721.   *++yylsp = yylloc;
  722. #endif
  723.   /* Count tokens shifted since error; after three, turn off error
  724.      status.  */
  725.   if (yyerrstatus)
  726.     yyerrstatus--;
  727.   yystate = yyn;
  728.   goto yynewstate;
  729. /*-----------------------------------------------------------.
  730. | yydefault -- do the default action for the current state.  |
  731. `-----------------------------------------------------------*/
  732. yydefault:
  733.   yyn = yydefact[yystate];
  734.   if (yyn == 0)
  735.     goto yyerrlab;
  736.   goto yyreduce;
  737. /*-----------------------------.
  738. | yyreduce -- Do a reduction.  |
  739. `-----------------------------*/
  740. yyreduce:
  741.   /* yyn is the number of a rule to reduce with.  */
  742.   yylen = yyr2[yyn];
  743.   /* If YYLEN is nonzero, implement the default value of the action:
  744.      `$$ = $1'.
  745.      Otherwise, the following line sets YYVAL to the semantic value of
  746.      the lookahead token.  This behavior is undocumented and Bison
  747.      users should not rely upon it.  Assigning to YYVAL
  748.      unconditionally makes the parser a bit smaller, and it avoids a
  749.      GCC warning that YYVAL may be used uninitialized.  */
  750.   yyval = yyvsp[1-yylen];
  751. #if YYLSP_NEEDED
  752.   /* Similarly for the default location.  Let the user run additional
  753.      commands if for instance locations are ranges.  */
  754.   yyloc = yylsp[1-yylen];
  755.   YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
  756. #endif
  757. #if YYDEBUG
  758.   /* We have to keep this `#if YYDEBUG', since we use variables which
  759.      are defined only if `YYDEBUG' is set.  */
  760.   if (yydebug)
  761.     {
  762.       int yyi;
  763.       YYFPRINTF (stderr, "Reducing via rule %d (line %d), ",
  764.  yyn, yyrline[yyn]);
  765.       /* Print the symbols being reduced, and their result.  */
  766.       for (yyi = yyprhs[yyn]; yyrhs[yyi] > 0; yyi++)
  767. YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]);
  768.       YYFPRINTF (stderr, " -> %sn", yytname[yyr1[yyn]]);
  769.     }
  770. #endif
  771.   switch (yyn) {
  772. case 1:
  773. #line 69 "newick.ypp"
  774.     g_Tree = yyvsp[-1].nodeval;
  775. ;
  776.     break;}
  777. case 2:
  778. #line 75 "newick.ypp"
  779.     yyval.nodeval = yyvsp[-3].nodeval;
  780.     yyval.nodeval->GetValue().SetDist(yyvsp[0].dblval);
  781.     yyval.nodeval->GetValue().SetId(nodecount);
  782.     nodecount++; 
  783. ;
  784.     break;}
  785. case 3:
  786. #line 82 "newick.ypp"
  787.     yyval.nodeval = yyvsp[-1].nodeval;
  788.     yyval.nodeval->GetValue().SetId(nodecount);
  789.     nodecount++; 
  790. ;
  791.     break;}
  792. case 4:
  793. #line 88 "newick.ypp"
  794.     yyval.nodeval = new TPhyTreeNode;
  795.     yyval.nodeval->GetValue().SetLabel(yyvsp[-2].strval);
  796.     yyval.nodeval->GetValue().SetDist(yyvsp[0].dblval);
  797.     yyval.nodeval->GetValue().SetId(nodecount);
  798.     nodecount++; 
  799. ;
  800.     break;}
  801. case 5:
  802. #line 96 "newick.ypp"
  803.     yyval.nodeval = new TPhyTreeNode;
  804.     yyval.nodeval->GetValue().SetLabel(yyvsp[0].strval);
  805.     yyval.nodeval->GetValue().SetId(nodecount);
  806.     nodecount++; 
  807. ;
  808.     break;}
  809. case 6:
  810. #line 105 "newick.ypp"
  811. {
  812.     yyval.nodeval = new TPhyTreeNode;
  813.     yyval.nodeval->AddNode(yyvsp[0].nodeval);
  814. ;
  815.     break;}
  816. case 7:
  817. #line 110 "newick.ypp"
  818. {
  819.     yyval.nodeval = yyvsp[-2].nodeval;
  820.     yyval.nodeval->AddNode(yyvsp[0].nodeval);
  821. ;
  822.     break;}
  823. }
  824. #line 705 "/usr/share/bison/bison.simple"
  825.   yyvsp -= yylen;
  826.   yyssp -= yylen;
  827. #if YYLSP_NEEDED
  828.   yylsp -= yylen;
  829. #endif
  830. #if YYDEBUG
  831.   if (yydebug)
  832.     {
  833.       short *yyssp1 = yyss - 1;
  834.       YYFPRINTF (stderr, "state stack now");
  835.       while (yyssp1 != yyssp)
  836. YYFPRINTF (stderr, " %d", *++yyssp1);
  837.       YYFPRINTF (stderr, "n");
  838.     }
  839. #endif
  840.   *++yyvsp = yyval;
  841. #if YYLSP_NEEDED
  842.   *++yylsp = yyloc;
  843. #endif
  844.   /* Now `shift' the result of the reduction.  Determine what state
  845.      that goes to, based on the state we popped back to and the rule
  846.      number reduced by.  */
  847.   yyn = yyr1[yyn];
  848.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  849.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  850.     yystate = yytable[yystate];
  851.   else
  852.     yystate = yydefgoto[yyn - YYNTBASE];
  853.   goto yynewstate;
  854. /*------------------------------------.
  855. | yyerrlab -- here on detecting error |
  856. `------------------------------------*/
  857. yyerrlab:
  858.   /* If not already recovering from an error, report this error.  */
  859.   if (!yyerrstatus)
  860.     {
  861.       ++yynerrs;
  862. #ifdef YYERROR_VERBOSE
  863.       yyn = yypact[yystate];
  864.       if (yyn > YYFLAG && yyn < YYLAST)
  865. {
  866.   YYSIZE_T yysize = 0;
  867.   char *yymsg;
  868.   int yyx, yycount;
  869.   yycount = 0;
  870.   /* Start YYX at -YYN if negative to avoid negative indexes in
  871.      YYCHECK.  */
  872.   for (yyx = yyn < 0 ? -yyn : 0;
  873.        yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++)
  874.     if (yycheck[yyx + yyn] == yyx)
  875.       yysize += yystrlen (yytname[yyx]) + 15, yycount++;
  876.   yysize += yystrlen ("parse error, unexpected ") + 1;
  877.   yysize += yystrlen (yytname[YYTRANSLATE (yychar)]);
  878.   yymsg = (char *) YYSTACK_ALLOC (yysize);
  879.   if (yymsg != 0)
  880.     {
  881.       char *yyp = yystpcpy (yymsg, "parse error, unexpected ");
  882.       yyp = yystpcpy (yyp, yytname[YYTRANSLATE (yychar)]);
  883.       if (yycount < 5)
  884. {
  885.   yycount = 0;
  886.   for (yyx = yyn < 0 ? -yyn : 0;
  887.        yyx < (int) (sizeof (yytname) / sizeof (char *));
  888.        yyx++)
  889.     if (yycheck[yyx + yyn] == yyx)
  890.       {
  891. const char *yyq = ! yycount ? ", expecting " : " or ";
  892. yyp = yystpcpy (yyp, yyq);
  893. yyp = yystpcpy (yyp, yytname[yyx]);
  894. yycount++;
  895.       }
  896. }
  897.       yyerror (yymsg);
  898.       YYSTACK_FREE (yymsg);
  899.     }
  900.   else
  901.     yyerror ("parse error; also virtual memory exhausted");
  902. }
  903.       else
  904. #endif /* defined (YYERROR_VERBOSE) */
  905. yyerror ("parse error");
  906.     }
  907.   goto yyerrlab1;
  908. /*--------------------------------------------------.
  909. | yyerrlab1 -- error raised explicitly by an action |
  910. `--------------------------------------------------*/
  911. yyerrlab1:
  912.   if (yyerrstatus == 3)
  913.     {
  914.       /* If just tried and failed to reuse lookahead token after an
  915.  error, discard it.  */
  916.       /* return failure if at end of input */
  917.       if (yychar == YYEOF)
  918. YYABORT;
  919.       YYDPRINTF ((stderr, "Discarding token %d (%s).n",
  920.   yychar, yytname[yychar1]));
  921.       yychar = YYEMPTY;
  922.     }
  923.   /* Else will try to reuse lookahead token after shifting the error
  924.      token.  */
  925.   yyerrstatus = 3; /* Each real token shifted decrements this */
  926.   goto yyerrhandle;
  927. /*-------------------------------------------------------------------.
  928. | yyerrdefault -- current state does not do anything special for the |
  929. | error token.                                                       |
  930. `-------------------------------------------------------------------*/
  931. yyerrdefault:
  932. #if 0
  933.   /* This is wrong; only states that explicitly want error tokens
  934.      should shift them.  */
  935.   /* If its default is to accept any token, ok.  Otherwise pop it.  */
  936.   yyn = yydefact[yystate];
  937.   if (yyn)
  938.     goto yydefault;
  939. #endif
  940. /*---------------------------------------------------------------.
  941. | yyerrpop -- pop the current state because it cannot handle the |
  942. | error token                                                    |
  943. `---------------------------------------------------------------*/
  944. yyerrpop:
  945.   if (yyssp == yyss)
  946.     YYABORT;
  947.   yyvsp--;
  948.   yystate = *--yyssp;
  949. #if YYLSP_NEEDED
  950.   yylsp--;
  951. #endif
  952. #if YYDEBUG
  953.   if (yydebug)
  954.     {
  955.       short *yyssp1 = yyss - 1;
  956.       YYFPRINTF (stderr, "Error: state stack now");
  957.       while (yyssp1 != yyssp)
  958. YYFPRINTF (stderr, " %d", *++yyssp1);
  959.       YYFPRINTF (stderr, "n");
  960.     }
  961. #endif
  962. /*--------------.
  963. | yyerrhandle.  |
  964. `--------------*/
  965. yyerrhandle:
  966.   yyn = yypact[yystate];
  967.   if (yyn == YYFLAG)
  968.     goto yyerrdefault;
  969.   yyn += YYTERROR;
  970.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  971.     goto yyerrdefault;
  972.   yyn = yytable[yyn];
  973.   if (yyn < 0)
  974.     {
  975.       if (yyn == YYFLAG)
  976. goto yyerrpop;
  977.       yyn = -yyn;
  978.       goto yyreduce;
  979.     }
  980.   else if (yyn == 0)
  981.     goto yyerrpop;
  982.   if (yyn == YYFINAL)
  983.     YYACCEPT;
  984.   YYDPRINTF ((stderr, "Shifting error token, "));
  985.   *++yyvsp = yylval;
  986. #if YYLSP_NEEDED
  987.   *++yylsp = yylloc;
  988. #endif
  989.   yystate = yyn;
  990.   goto yynewstate;
  991. /*-------------------------------------.
  992. | yyacceptlab -- YYACCEPT comes here.  |
  993. `-------------------------------------*/
  994. yyacceptlab:
  995.   yyresult = 0;
  996.   goto yyreturn;
  997. /*-----------------------------------.
  998. | yyabortlab -- YYABORT comes here.  |
  999. `-----------------------------------*/
  1000. yyabortlab:
  1001.   yyresult = 1;
  1002.   goto yyreturn;
  1003. /*---------------------------------------------.
  1004. | yyoverflowab -- parser overflow comes here.  |
  1005. `---------------------------------------------*/
  1006. yyoverflowlab:
  1007.   yyerror ("parser stack overflow");
  1008.   yyresult = 2;
  1009.   /* Fall through.  */
  1010. yyreturn:
  1011. #ifndef yyoverflow
  1012.   if (yyss != yyssa)
  1013.     YYSTACK_FREE (yyss);
  1014. #endif
  1015.   return yyresult;
  1016. }
  1017. #line 117 "newick.ypp"
  1018. void yyerror(const char *s)
  1019. {
  1020.     if (g_Tree) {
  1021.         delete g_Tree;
  1022.     } else {
  1023.         // delete only those nodes that are nobody's children
  1024.         vector<TPhyTreeNode*> del_list;
  1025.         ITERATE (vector<TPhyTreeNode*>, iter, g_NodeList) {
  1026.             if (!(*iter)->GetParent()) {
  1027.                 del_list.push_back(*iter);
  1028.             }
  1029.         }
  1030.         ITERATE (vector<TPhyTreeNode*>, iter, del_list) {
  1031.             delete *iter;
  1032.         }
  1033.     }
  1034.     g_NodeList.clear();
  1035.     throw runtime_error(string("error parsing Newick format tree file:  ")
  1036.                         + s);
  1037. }
  1038. void newick_flex_reset(void);
  1039. BEGIN_NCBI_SCOPE
  1040. TPhyTreeNode *ReadNewickTree(CNcbiIstream& is)
  1041. {
  1042.     g_NewickIstr = &is;
  1043.     g_Tree = 0;
  1044.     g_NodeList.clear();
  1045.     newick_flex_reset();
  1046.     yyparse();
  1047.     if (!g_Tree) {
  1048.         yyerror("unknown");
  1049.     }
  1050.     g_NodeList.clear();
  1051.     return g_Tree;
  1052. }
  1053. END_NCBI_SCOPE
  1054. /*
  1055.  * ===========================================================================
  1056.  * $Log: newick.tab.cpp,v $
  1057.  * Revision 1000.1  2004/06/01 18:09:32  gouriano
  1058.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  1059.  *
  1060.  * ===========================================================================
  1061.  */