lexyy.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:60k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* A lexical scanner generated by flex */
  2. /* Scanner skeleton version:
  3.  * $Header: /home/heikki/cvsroot/ib/pars/lexyy.c,v 1.2 2003/10/30 20:27:19 heikki Exp $
  4.  */
  5. /* This include MUST be first to keep things portable ! */
  6. #include "univ.i"
  7. #define FLEX_SCANNER
  8. #define YY_FLEX_MAJOR_VERSION 2
  9. #define YY_FLEX_MINOR_VERSION 5
  10. #include <stdio.h>
  11. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  12. #ifdef c_plusplus
  13. #ifndef __cplusplus
  14. #define __cplusplus
  15. #endif
  16. #endif
  17. #ifdef __cplusplus
  18. #include <stdlib.h>
  19. /* Use prototypes in function declarations. */
  20. #define YY_USE_PROTOS
  21. /* The "const" storage-class-modifier is valid. */
  22. #define YY_USE_CONST
  23. #else /* ! __cplusplus */
  24. #if __STDC__
  25. #define YY_USE_PROTOS
  26. #define YY_USE_CONST
  27. #endif /* __STDC__ */
  28. #endif /* ! __cplusplus */
  29. #ifdef __TURBOC__
  30.  #pragma warn -rch
  31.  #pragma warn -use
  32. #include <io.h>
  33. #include <stdlib.h>
  34. #define YY_USE_CONST
  35. #define YY_USE_PROTOS
  36. #endif
  37. #ifdef YY_USE_CONST
  38. #define yyconst const
  39. #else
  40. #define yyconst
  41. #endif
  42. #ifdef YY_USE_PROTOS
  43. #define YY_PROTO(proto) proto
  44. #else
  45. #define YY_PROTO(proto) ()
  46. #endif
  47. /* Returned upon end-of-file. */
  48. #define YY_NULL 0
  49. /* Promotes a possibly negative, possibly signed char to an unsigned
  50.  * integer for use as an array index.  If the signed char is negative,
  51.  * we want to instead treat it as an 8-bit unsigned char, hence the
  52.  * double cast.
  53.  */
  54. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  55. /* Enter a start condition.  This macro really ought to take a parameter,
  56.  * but we do it the disgusting crufty way forced on us by the ()-less
  57.  * definition of BEGIN.
  58.  */
  59. #define BEGIN yy_start = 1 + 2 *
  60. /* Translate the current start state into a value that can be later handed
  61.  * to BEGIN to return to the state.  The YYSTATE alias is for lex
  62.  * compatibility.
  63.  */
  64. #define YY_START ((yy_start - 1) / 2)
  65. #define YYSTATE YY_START
  66. /* Action number for EOF rule of a given start state. */
  67. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  68. /* Special action meaning "start processing a new file". */
  69. #define YY_NEW_FILE yyrestart( yyin )
  70. #define YY_END_OF_BUFFER_CHAR 0
  71. /* Size of default input buffer. */
  72. #define YY_BUF_SIZE 16384
  73. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  74. extern int yyleng;
  75. extern FILE *yyin, *yyout;
  76. #define EOB_ACT_CONTINUE_SCAN 0
  77. #define EOB_ACT_END_OF_FILE 1
  78. #define EOB_ACT_LAST_MATCH 2
  79. /* The funky do-while in the following #define is used to turn the definition
  80.  * int a single C statement (which needs a semi-colon terminator).  This
  81.  * avoids problems with code like:
  82.  *
  83.  *  if ( condition_holds )
  84.  * yyless( 5 );
  85.  * else
  86.  * do_something_else();
  87.  *
  88.  * Prior to using the do-while the compiler would get upset at the
  89.  * "else" because it interpreted the "if" statement as being all
  90.  * done when it reached the ';' after the yyless() call.
  91.  */
  92. /* Return all but the first 'n' matched characters back to the input stream. */
  93. #define yyless(n) 
  94. do 
  95. /* Undo effects of setting up yytext. */ 
  96. *yy_cp = yy_hold_char; 
  97. YY_RESTORE_YY_MORE_OFFSET 
  98. yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; 
  99. YY_DO_BEFORE_ACTION; /* set up yytext again */ 
  100. while ( 0 )
  101. #define unput(c) yyunput( c, yytext_ptr )
  102. /* The following is because we cannot portably get our hands on size_t
  103.  * (without autoconf's help, which isn't available because we want
  104.  * flex-generated scanners to compile on their own).
  105.  */
  106. typedef unsigned int yy_size_t;
  107. struct yy_buffer_state
  108. {
  109. FILE *yy_input_file;
  110. char *yy_ch_buf; /* input buffer */
  111. char *yy_buf_pos; /* current position in input buffer */
  112. /* Size of input buffer in bytes, not including room for EOB
  113.  * characters.
  114.  */
  115. yy_size_t yy_buf_size;
  116. /* Number of characters read into yy_ch_buf, not including EOB
  117.  * characters.
  118.  */
  119. int yy_n_chars;
  120. /* Whether we "own" the buffer - i.e., we know we created it,
  121.  * and can realloc() it to grow it, and should free() it to
  122.  * delete it.
  123.  */
  124. int yy_is_our_buffer;
  125. /* Whether this is an "interactive" input source; if so, and
  126.  * if we're using stdio for input, then we want to use getc()
  127.  * instead of fread(), to make sure we stop fetching input after
  128.  * each newline.
  129.  */
  130. int yy_is_interactive;
  131. /* Whether we're considered to be at the beginning of a line.
  132.  * If so, '^' rules will be active on the next match, otherwise
  133.  * not.
  134.  */
  135. int yy_at_bol;
  136. /* Whether to try to fill the input buffer when we reach the
  137.  * end of it.
  138.  */
  139. int yy_fill_buffer;
  140. int yy_buffer_status;
  141. #define YY_BUFFER_NEW 0
  142. #define YY_BUFFER_NORMAL 1
  143. /* When an EOF's been seen but there's still some text to process
  144.  * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  145.  * shouldn't try reading from the input source any more.  We might
  146.  * still have a bunch of tokens to match, though, because of
  147.  * possible backing-up.
  148.  *
  149.  * When we actually see the EOF, we change the status to "new"
  150.  * (via yyrestart()), so that the user can continue scanning by
  151.  * just pointing yyin at a new input file.
  152.  */
  153. #define YY_BUFFER_EOF_PENDING 2
  154. };
  155. static YY_BUFFER_STATE yy_current_buffer = 0;
  156. /* We provide macros for accessing buffer states in case in the
  157.  * future we want to put the buffer states in a more general
  158.  * "scanner state".
  159.  */
  160. #define YY_CURRENT_BUFFER yy_current_buffer
  161. /* yy_hold_char holds the character lost when yytext is formed. */
  162. static char yy_hold_char;
  163. static int yy_n_chars; /* number of characters read into yy_ch_buf */
  164. int yyleng;
  165. /* Points to current character in buffer. */
  166. static char *yy_c_buf_p = (char *) 0;
  167. static int yy_init = 1; /* whether we need to initialize */
  168. static int yy_start = 0; /* start state number */
  169. /* Flag which is used to allow yywrap()'s to do buffer switches
  170.  * instead of setting up a fresh yyin.  A bit of a hack ...
  171.  */
  172. static int yy_did_buffer_switch_on_eof;
  173. void yyrestart YY_PROTO(( FILE *input_file ));
  174. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  175. void yy_load_buffer_state YY_PROTO(( void ));
  176. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  177. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  178. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  179. void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  180. #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
  181. YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
  182. YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
  183. YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
  184. static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
  185. static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
  186. static void yy_flex_free YY_PROTO(( void * ));
  187. #define yy_new_buffer yy_create_buffer
  188. #define yy_set_interactive(is_interactive) 
  189. if ( ! yy_current_buffer ) 
  190. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); 
  191. yy_current_buffer->yy_is_interactive = is_interactive; 
  192. }
  193. #define yy_set_bol(at_bol) 
  194. if ( ! yy_current_buffer ) 
  195. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); 
  196. yy_current_buffer->yy_at_bol = at_bol; 
  197. }
  198. #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
  199. #define yywrap() 1
  200. #define YY_SKIP_YYWRAP
  201. typedef unsigned char YY_CHAR;
  202. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  203. typedef int yy_state_type;
  204. extern char *yytext;
  205. #define yytext_ptr yytext
  206. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  207. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  208. static int yy_get_next_buffer YY_PROTO(( void ));
  209. static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
  210. /* Done after the current pattern has been matched and before the
  211.  * corresponding action - sets up yytext.
  212.  */
  213. #define YY_DO_BEFORE_ACTION 
  214. yytext_ptr = yy_bp; 
  215. yyleng = (int) (yy_cp - yy_bp); 
  216. yy_hold_char = *yy_cp; 
  217. *yy_cp = ''; 
  218. yy_c_buf_p = yy_cp;
  219. #define YY_NUM_RULES 107
  220. #define YY_END_OF_BUFFER 108
  221. static yyconst short int yy_accept[367] =
  222.     {   0,
  223.         0,    0,  102,  102,    0,    0,  108,  106,  105,  105,
  224.        97,    3,   86,   92,   95,   93,   90,   94,  106,   96,
  225.         1,  106,   91,   89,   87,   88,  100,   80,   80,   80,
  226.        80,   80,   80,   80,   80,   80,   80,   80,   80,   80,
  227.        80,   80,   80,   80,   80,   98,   99,  102,  103,    4,
  228.         5,  105,   81,  101,    2,    1,   82,   83,   85,   84,
  229.        80,   80,   80,   80,   80,   38,   80,   80,   80,   80,
  230.        80,   80,   80,   80,   80,   80,   80,   80,   80,   80,
  231.        21,   12,   18,   80,   80,   80,   80,   48,   55,   80,
  232.         9,   80,   80,   80,   80,   80,   80,   80,   80,   80,
  233.        80,   80,   80,   80,   80,   80,   80,   80,  102,  103,
  234.       103,  104,    4,    5,    2,    8,   39,   80,   80,   80,
  235.        80,   80,   80,   80,   80,   80,   80,   80,   80,   80,
  236.        80,   80,   80,   80,   20,   80,   80,   34,   80,   80,
  237.        80,   14,   80,   80,   10,   80,   80,   80,   13,   80,
  238.        80,   80,   80,   80,   74,   80,   80,   80,   45,    7,
  239.        80,   29,   80,   80,   80,   80,   80,   80,   80,   80,
  240.        80,   80,   80,   80,   80,   17,   80,   80,   80,   80,
  241.        80,   80,   80,   80,   80,   80,   80,   40,   80,   80,
  242.        23,   80,   80,   80,   32,   80,   80,   80,   80,   42,
  243.        80,   25,   80,    6,   58,   80,   80,   80,   36,   80,
  244.        80,   80,   80,   80,   80,   80,   80,   80,   22,   80,
  245.        80,   80,   80,   80,   80,   80,   80,   79,   80,   19,
  246.        80,   60,   80,   80,   80,   80,   30,   80,   80,   80,
  247.        80,   80,   80,   80,   24,   59,   16,   51,   80,   69,
  248.        80,   80,   80,   37,   80,   80,   80,   80,   80,   80,
  249.        80,   80,   80,   80,   50,   80,   80,   80,   80,   80,
  250.        80,   33,   26,   73,   80,   80,   77,   68,   80,   49,
  251.        80,   57,   80,   46,   80,   80,   41,   80,   70,   80,
  252.        72,   80,   80,   27,   80,   80,   80,   28,   66,   80,
  253.        80,   80,   80,   52,   44,   43,   80,   80,   80,   47,
  254.        56,   80,   80,   15,   80,   80,   67,   75,   80,   80,
  255.        71,   80,   62,   80,   80,   80,   80,   31,   80,   61,
  256.        80,   78,   80,   80,   80,   80,   53,   80,   80,   11,
  257.        80,   64,   63,   80,   35,   80,   76,   80,   80,   80,
  258.        80,   80,   80,   80,   80,   80,   80,   65,   80,   80,
  259.        80,   80,   80,   80,   54,    0
  260.     } ;
  261. static yyconst int yy_ec[256] =
  262.     {   0,
  263.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  264.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  265.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  266.         1,    2,    1,    1,    1,    1,    4,    1,    5,    6,
  267.         7,    8,    9,   10,   11,   12,   13,   14,   14,   14,
  268.        14,   14,   14,   14,   14,   14,   14,   15,   16,   17,
  269.        18,   19,   20,    1,   21,   22,   23,   24,   25,   26,
  270.        27,   28,   29,   30,   31,   32,   33,   34,   35,   36,
  271.        37,   38,   39,   40,   41,   42,   43,   44,   45,   30,
  272.         1,    1,    1,    1,   46,    1,   30,   30,   30,   30,
  273.        30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
  274.        30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
  275.        30,   30,   47,    1,   48,    1,    1,    1,    1,    1,
  276.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  277.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  278.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  279.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  280.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  281.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  282.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  283.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  284.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  285.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  286.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  287.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  288.         1,    1,    1,    1,    1
  289.     } ;
  290. static yyconst int yy_meta[49] =
  291.     {   0,
  292.         1,    1,    1,    1,    2,    1,    1,    3,    1,    1,
  293.         1,    1,    1,    4,    1,    1,    1,    1,    1,    1,
  294.         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
  295.         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
  296.         4,    4,    4,    4,    4,    4,    1,    1
  297.     } ;
  298. static yyconst short int yy_base[373] =
  299.     {   0,
  300.         0,    0,  387,  386,  388,  387,  391,  396,   47,   49,
  301.       396,  396,  396,  396,  396,  396,  396,  396,  378,  381,
  302.        41,  370,  396,   38,  396,  369,  396,   20,   33,   32,
  303.        36,   34,   44,    0,   46,   49,   40,   57,  348,   52,
  304.        63,   68,   56,  364,   66,  396,  396,    0,   89,    0,
  305.       379,  103,  396,  396,  369,   95,  396,  396,  396,  396,
  306.         0,  358,   76,  354,  346,    0,  358,   75,   78,  353,
  307.       339,   90,  337,  350,  335,  349,  332,  336,  332,  334,
  308.         0,   93,    0,  334,  332,  326,  333,    0,    0,  339,
  309.       339,  322,   85,  100,  337,   91,   86,  328,  102,  320,
  310.       336,  332,  310,  326,  330,  321,  102,  314,    0,  117,
  311.       129,  396,    0,  346,  336,    0,    0,  324,  319,  326,
  312.       308,  306,  305,  310,  105,  308,  320,  100,  308,  314,
  313.       315,  297,  297,  116,    0,  312,  313,    0,  300,  307,
  314.       118,  121,  304,  294,  303,  296,  293,  301,    0,  291,
  315.       301,  299,  290,  280,  274,  287,  272,  292,    0,    0,
  316.       277,    0,  291,  282,  279,  125,  275,  290,  269,  271,
  317.       276,  276,  268,  271,  266,    0,  278,  262,  272,  279,
  318.       270,  258,  257,  271,  260,  273,  253,    0,  263,  245,
  319.         0,  264,  261,  248,    0,  243,  248,  247,  257,    0,
  320.       243,    0,  247,    0,    0,  243,  240,  254,    0,  239,
  321.       239,  237,  253,  238,  250,  232,  250,  245,    0,  240,
  322.       240,  226,  225,  225,  239,  238,  237,    0,  221,    0,
  323.       215,    0,  234,  218,  217,  217,    0,  230,  220,  215,
  324.       214,  226,  216,  215,    0,    0,    0,    0,  208,    0,
  325.       222,  218,  204,    0,  218,  219,  202,  207,  200,  218,
  326.       200,  197,  198,  195,    0,  200,  212,  199,  206,  205,
  327.       190,    0,    0,    0,  182,  189,    0,    0,  186,    0,
  328.       185,    0,  199,    0,  200,  187,    0,  183,    0,  186,
  329.         0,  178,  180,    0,  179,  193,  186,    0,    0,  189,
  330.       192,  174,  189,    0,    0,    0,  170,  184,  183,    0,
  331.         0,  167,  166,    0,  181,  166,    0,    0,  172,  168,
  332.         0,  163,    0,  175,  164,  174,  163,    0,  150,    0,
  333.       170,    0,  154,  148,  154,  145,    0,  150,  163,    0,
  334.       162,    0,    0,  153,    0,  157,    0,  144,  144,  150,
  335.       136,  159,  151,  152,  136,  119,  109,    0,  121,  128,
  336.       119,  116,  112,  104,    0,  396,  159,  163,   59,  167,
  337.       171,  175
  338.     } ;
  339. static yyconst short int yy_def[373] =
  340.     {   0,
  341.       366,    1,  367,  367,  368,  368,  366,  366,  366,  366,
  342.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  343.       366,  366,  366,  366,  366,  366,  366,  369,  369,  369,
  344.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  345.       369,  369,  369,  369,  369,  366,  366,  370,  371,  372,
  346.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  347.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  348.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  349.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  350.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  351.       369,  369,  369,  369,  369,  369,  369,  369,  370,  371,
  352.       371,  366,  372,  366,  366,  369,  369,  369,  369,  369,
  353.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  354.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  355.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  356.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  357.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  358.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  359.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  360.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  361.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  362.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  363.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  364.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  365.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  366.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  367.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  368.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  369.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  370.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  371.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  372.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  373.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  374.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  375.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  376.       369,  369,  369,  369,  369,  369,  369,  369,  369,  369,
  377.       369,  369,  369,  369,  369,    0,  366,  366,  366,  366,
  378.       366,  366
  379.     } ;
  380. static yyconst short int yy_nxt[445] =
  381.     {   0,
  382.         8,    9,   10,   11,   12,   13,   14,   15,   16,   17,
  383.        18,   19,   20,   21,   22,   23,   24,   25,   26,   27,
  384.        28,   29,   30,   31,   32,   33,   34,   34,   35,   34,
  385.        34,   36,   34,   37,   38,   39,   34,   40,   41,   42,
  386.        43,   44,   45,   34,   34,   34,   46,   47,   52,   52,
  387.        52,   52,   55,   62,   56,   58,   59,   64,   63,   67,
  388.        72,   65,   61,   68,   73,   75,   69,   76,   77,   70,
  389.        74,   81,   71,   84,   86,   78,   94,   66,   79,   82,
  390.        87,   80,   88,   85,   83,   95,   96,   97,  101,  104,
  391.        89,  105,   90,  107,   91,  102,  111,   92,  117,   98,
  392.       108,  112,  103,   99,   52,   52,   55,  100,   56,  122,
  393.       124,  125,  129,  150,  118,  123,  140,  158,  126,  151,
  394.       152,  130,  156,  161,  366,  159,  170,  180,  131,  366,
  395.       171,  141,  142,  157,  162,  153,  111,  184,  185,  154,
  396.       191,  112,  197,  181,  192,  199,  220,  221,  365,  364,
  397.       363,  362,  361,  360,  359,  200,  358,  198,  222,   48,
  398.        48,   48,   48,   50,   50,   50,   50,  109,  109,  357,
  399.       109,  110,  110,  110,  110,  113,  356,  113,  113,  355,
  400.       354,  353,  352,  351,  350,  349,  348,  347,  346,  345,
  401.       344,  343,  342,  341,  340,  339,  338,  337,  336,  335,
  402.       334,  333,  332,  331,  330,  329,  328,  327,  326,  325,
  403.       324,  323,  322,  321,  320,  319,  318,  317,  316,  315,
  404.       314,  313,  312,  311,  310,  309,  308,  307,  306,  305,
  405.       304,  303,  302,  301,  300,  299,  298,  297,  296,  295,
  406.       294,  293,  292,  291,  290,  289,  288,  287,  286,  285,
  407.       284,  283,  282,  281,  280,  279,  278,  277,  276,  275,
  408.       274,  273,  272,  271,  270,  269,  268,  267,  266,  265,
  409.       264,  263,  262,  261,  260,  259,  258,  257,  256,  255,
  410.       254,  253,  252,  251,  250,  249,  248,  247,  246,  245,
  411.       244,  243,  242,  241,  240,  239,  238,  237,  236,  235,
  412.       234,  233,  232,  231,  230,  229,  228,  227,  226,  225,
  413.       224,  223,  219,  218,  217,  216,  215,  214,  213,  212,
  414.       211,  210,  209,  208,  207,  206,  205,  204,  203,  202,
  415.       201,  196,  195,  194,  193,  190,  189,  188,  187,  186,
  416.       183,  182,  179,  178,  177,  176,  175,  174,  173,  115,
  417.       114,  172,  169,  168,  167,  166,  165,  164,  163,  160,
  418.       155,  149,  148,  147,  146,  145,  144,  143,  139,  138,
  419.       137,  136,  135,  134,  133,  132,  128,  127,  121,  120,
  420.       119,  116,  115,  114,  106,   93,   60,   57,   54,   53,
  421.       366,   51,   51,   49,   49,    7,  366,  366,  366,  366,
  422.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  423.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  424.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  425.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  426.       366,  366,  366,  366
  427.     } ;
  428. static yyconst short int yy_chk[445] =
  429.     {   0,
  430.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  431.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  432.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  433.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  434.         1,    1,    1,    1,    1,    1,    1,    1,    9,    9,
  435.        10,   10,   21,   28,   21,   24,   24,   29,   28,   30,
  436.        31,   29,  369,   30,   31,   32,   30,   32,   33,   30,
  437.        31,   35,   30,   36,   37,   33,   40,   29,   33,   35,
  438.        37,   33,   38,   36,   35,   40,   40,   41,   42,   43,
  439.        38,   43,   38,   45,   38,   42,   49,   38,   63,   41,
  440.        45,   49,   42,   41,   52,   52,   56,   41,   56,   68,
  441.        69,   69,   72,   93,   63,   68,   82,   97,   69,   93,
  442.        94,   72,   96,   99,  110,   97,  107,  125,   72,  110,
  443.       107,   82,   82,   96,   99,   94,  111,  128,  128,   94,
  444.       134,  111,  141,  125,  134,  142,  166,  166,  364,  363,
  445.       362,  361,  360,  359,  357,  142,  356,  141,  166,  367,
  446.       367,  367,  367,  368,  368,  368,  368,  370,  370,  355,
  447.       370,  371,  371,  371,  371,  372,  354,  372,  372,  353,
  448.       352,  351,  350,  349,  348,  346,  344,  341,  339,  338,
  449.       336,  335,  334,  333,  331,  329,  327,  326,  325,  324,
  450.       322,  320,  319,  316,  315,  313,  312,  309,  308,  307,
  451.       303,  302,  301,  300,  297,  296,  295,  293,  292,  290,
  452.       288,  286,  285,  283,  281,  279,  276,  275,  271,  270,
  453.       269,  268,  267,  266,  264,  263,  262,  261,  260,  259,
  454.       258,  257,  256,  255,  253,  252,  251,  249,  244,  243,
  455.       242,  241,  240,  239,  238,  236,  235,  234,  233,  231,
  456.       229,  227,  226,  225,  224,  223,  222,  221,  220,  218,
  457.       217,  216,  215,  214,  213,  212,  211,  210,  208,  207,
  458.       206,  203,  201,  199,  198,  197,  196,  194,  193,  192,
  459.       190,  189,  187,  186,  185,  184,  183,  182,  181,  180,
  460.       179,  178,  177,  175,  174,  173,  172,  171,  170,  169,
  461.       168,  167,  165,  164,  163,  161,  158,  157,  156,  155,
  462.       154,  153,  152,  151,  150,  148,  147,  146,  145,  144,
  463.       143,  140,  139,  137,  136,  133,  132,  131,  130,  129,
  464.       127,  126,  124,  123,  122,  121,  120,  119,  118,  115,
  465.       114,  108,  106,  105,  104,  103,  102,  101,  100,   98,
  466.        95,   92,   91,   90,   87,   86,   85,   84,   80,   79,
  467.        78,   77,   76,   75,   74,   73,   71,   70,   67,   65,
  468.        64,   62,   55,   51,   44,   39,   26,   22,   20,   19,
  469.         7,    6,    5,    4,    3,  366,  366,  366,  366,  366,
  470.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  471.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  472.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  473.       366,  366,  366,  366,  366,  366,  366,  366,  366,  366,
  474.       366,  366,  366,  366
  475.     } ;
  476. static yy_state_type yy_last_accepting_state;
  477. static char *yy_last_accepting_cpos;
  478. /* The intent behind this definition is that it'll catch
  479.  * any uses of REJECT which flex missed.
  480.  */
  481. #define REJECT reject_used_but_not_detected
  482. #define yymore() yymore_used_but_not_detected
  483. #define YY_MORE_ADJ 0
  484. #define YY_RESTORE_YY_MORE_OFFSET
  485. char *yytext;
  486. #line 1 "pars0lex.l"
  487. #define INITIAL 0
  488. /******************************************************
  489. SQL parser lexical analyzer: input file for the GNU Flex lexer generator
  490. (c) 1997 Innobase Oy
  491. Created 12/14/1997 Heikki Tuuri
  492. Published under the GPL version 2
  493. The InnoDB parser is frozen because MySQL takes care of SQL parsing.
  494. Therefore we normally keep the InnoDB parser C files as they are, and do
  495. not automatically generate them from pars0grm.y and pars0lex.l.
  496. How to make the InnoDB parser and lexer C files:
  497. 1. First do
  498.         bison -d pars0grm.y
  499.    That generates pars0grm.tab.c and pars0grm.tab.h.
  500. 2. Rename pars0grm.tab.c to pars0grm.c and pars0grm.tab.h to pars0grm.h.
  501. 3. Copy pars0grm.h also to /innobase/include
  502. 4. Do
  503.         flex pars0lex.l
  504.    That generates lex.yy.c.
  505. 5. Rename lex.yy.c to lexyy.c.
  506. 6. Remove the #include of unistd.h from about line 2500 of lexyy.c
  507. 7. Add '#include "univ.i"' before #include <stdio.h> in lexyy.c
  508.    (Needed for AIX)
  509. These instructions seem to work at least with bison-1.28 and flex-2.5.4 on
  510. Linux.
  511. *******************************************************/
  512. #define YY_NEVER_INTERACTIVE 1
  513. #define YY_NO_INPUT 1
  514. #define YY_NO_UNPUT 1
  515. #define YY_NO_SCAN_BUFFER 1
  516. #define YY_NO_SCAN_BYTES 1
  517. #define YY_NO_SCAN_STRING 1
  518. #line 52 "pars0lex.l"
  519. #define YYSTYPE que_node_t*
  520. #include "univ.i"
  521. #include "pars0pars.h"
  522. #include "pars0grm.h"
  523. #include "pars0sym.h"
  524. #include "mem0mem.h"
  525. #include "os0proc.h"
  526. #define malloc(A) ut_malloc(A)
  527. #define free(A) ut_free(A)
  528. #define realloc(P, A) ut_realloc(P, A)
  529. #define exit(A)  ut_error
  530. #define YY_INPUT(buf, result, max_size) pars_get_lex_chars(buf, &result, max_size)
  531. /* String buffer for removing quotes */
  532. static ulint stringbuf_len_alloc = 0; /* Allocated length */
  533. static ulint stringbuf_len = 0; /* Current length */
  534. static char* stringbuf; /* Start of buffer */
  535. /* Appends a string to the buffer. */
  536. static
  537. void
  538. string_append(
  539. /*==========*/
  540. const char* str, /* in: string to be appended */
  541. ulint len) /* in: length of the string */
  542. {
  543. if (stringbuf == NULL) {
  544. stringbuf = malloc(1);
  545. stringbuf_len_alloc = 1;
  546. }
  547. if (stringbuf_len + len > stringbuf_len_alloc) {
  548. while (stringbuf_len + len > stringbuf_len_alloc) {
  549. stringbuf_len_alloc <<= 1;
  550. }
  551. stringbuf = realloc(stringbuf, stringbuf_len_alloc);
  552. }
  553. memcpy(stringbuf + stringbuf_len, str, len);
  554. stringbuf_len += len;
  555. }
  556. #define comment 1
  557. #define quoted 2
  558. #line 676 "lex.yy.c"
  559. /* Macros after this point can all be overridden by user definitions in
  560.  * section 1.
  561.  */
  562. #ifndef YY_SKIP_YYWRAP
  563. #ifdef __cplusplus
  564. extern "C" int yywrap YY_PROTO(( void ));
  565. #else
  566. extern int yywrap YY_PROTO(( void ));
  567. #endif
  568. #endif
  569. #ifndef YY_NO_UNPUT
  570. static void yyunput YY_PROTO(( int c, char *buf_ptr ));
  571. #endif
  572. #ifndef yytext_ptr
  573. static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
  574. #endif
  575. #ifdef YY_NEED_STRLEN
  576. static int yy_flex_strlen YY_PROTO(( yyconst char * ));
  577. #endif
  578. #ifndef YY_NO_INPUT
  579. #ifdef __cplusplus
  580. static int yyinput YY_PROTO(( void ));
  581. #else
  582. static int input YY_PROTO(( void ));
  583. #endif
  584. #endif
  585. #if YY_STACK_USED
  586. static int yy_start_stack_ptr = 0;
  587. static int yy_start_stack_depth = 0;
  588. static int *yy_start_stack = 0;
  589. #ifndef YY_NO_PUSH_STATE
  590. static void yy_push_state YY_PROTO(( int new_state ));
  591. #endif
  592. #ifndef YY_NO_POP_STATE
  593. static void yy_pop_state YY_PROTO(( void ));
  594. #endif
  595. #ifndef YY_NO_TOP_STATE
  596. static int yy_top_state YY_PROTO(( void ));
  597. #endif
  598. #else
  599. #define YY_NO_PUSH_STATE 1
  600. #define YY_NO_POP_STATE 1
  601. #define YY_NO_TOP_STATE 1
  602. #endif
  603. #ifdef YY_MALLOC_DECL
  604. YY_MALLOC_DECL
  605. #else
  606. #if __STDC__
  607. #ifndef __cplusplus
  608. #include <stdlib.h>
  609. #endif
  610. #else
  611. /* Just try to get by without declaring the routines.  This will fail
  612.  * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
  613.  * or sizeof(void*) != sizeof(int).
  614.  */
  615. #endif
  616. #endif
  617. /* Amount of stuff to slurp up with each read. */
  618. #ifndef YY_READ_BUF_SIZE
  619. #define YY_READ_BUF_SIZE 8192
  620. #endif
  621. /* Copy whatever the last rule matched to the standard output. */
  622. #ifndef ECHO
  623. /* This used to be an fputs(), but since the string might contain NUL's,
  624.  * we now use fwrite().
  625.  */
  626. #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
  627. #endif
  628. /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  629.  * is returned in "result".
  630.  */
  631. #ifndef YY_INPUT
  632. #define YY_INPUT(buf,result,max_size) 
  633. if ( yy_current_buffer->yy_is_interactive ) 
  634. int c = '*', n; 
  635. for ( n = 0; n < max_size && 
  636.      (c = getc( yyin )) != EOF && c != 'n'; ++n ) 
  637. buf[n] = (char) c; 
  638. if ( c == 'n' ) 
  639. buf[n++] = (char) c; 
  640. if ( c == EOF && ferror( yyin ) ) 
  641. YY_FATAL_ERROR( "input in flex scanner failed" ); 
  642. result = n; 
  643. else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) 
  644.   && ferror( yyin ) ) 
  645. YY_FATAL_ERROR( "input in flex scanner failed" );
  646. #endif
  647. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  648.  * we don't want an extra ';' after the "return" because that will cause
  649.  * some compilers to complain about unreachable statements.
  650.  */
  651. #ifndef yyterminate
  652. #define yyterminate() return YY_NULL
  653. #endif
  654. /* Number of entries by which start-condition stack grows. */
  655. #ifndef YY_START_STACK_INCR
  656. #define YY_START_STACK_INCR 25
  657. #endif
  658. /* Report a fatal error. */
  659. #ifndef YY_FATAL_ERROR
  660. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  661. #endif
  662. /* Default declaration of generated scanner - a define so the user can
  663.  * easily add parameters.
  664.  */
  665. #ifndef YY_DECL
  666. #define YY_DECL int yylex YY_PROTO(( void ))
  667. #endif
  668. /* Code executed at the beginning of each rule, after yytext and yyleng
  669.  * have been set up.
  670.  */
  671. #ifndef YY_USER_ACTION
  672. #define YY_USER_ACTION
  673. #endif
  674. /* Code executed at the end of each rule. */
  675. #ifndef YY_BREAK
  676. #define YY_BREAK break;
  677. #endif
  678. #define YY_RULE_SETUP 
  679. YY_USER_ACTION
  680. YY_DECL
  681. {
  682. register yy_state_type yy_current_state;
  683. register char *yy_cp, *yy_bp;
  684. register int yy_act;
  685. #line 102 "pars0lex.l"
  686. #line 830 "lex.yy.c"
  687. if ( yy_init )
  688. {
  689. yy_init = 0;
  690. #ifdef YY_USER_INIT
  691. YY_USER_INIT;
  692. #endif
  693. if ( ! yy_start )
  694. yy_start = 1; /* first start state */
  695. if ( ! yyin )
  696. yyin = stdin;
  697. if ( ! yyout )
  698. yyout = stdout;
  699. if ( ! yy_current_buffer )
  700. yy_current_buffer =
  701. yy_create_buffer( yyin, YY_BUF_SIZE );
  702. yy_load_buffer_state();
  703. }
  704. while ( 1 ) /* loops until end-of-file is reached */
  705. {
  706. yy_cp = yy_c_buf_p;
  707. /* Support of yytext. */
  708. *yy_cp = yy_hold_char;
  709. /* yy_bp points to the position in yy_ch_buf of the start of
  710.  * the current run.
  711.  */
  712. yy_bp = yy_cp;
  713. yy_current_state = yy_start;
  714. yy_match:
  715. do
  716. {
  717. register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  718. if ( yy_accept[yy_current_state] )
  719. {
  720. yy_last_accepting_state = yy_current_state;
  721. yy_last_accepting_cpos = yy_cp;
  722. }
  723. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  724. {
  725. yy_current_state = (int) yy_def[yy_current_state];
  726. if ( yy_current_state >= 367 )
  727. yy_c = yy_meta[(unsigned int) yy_c];
  728. }
  729. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  730. ++yy_cp;
  731. }
  732. while ( yy_base[yy_current_state] != 396 );
  733. yy_find_action:
  734. yy_act = yy_accept[yy_current_state];
  735. if ( yy_act == 0 )
  736. { /* have to back up */
  737. yy_cp = yy_last_accepting_cpos;
  738. yy_current_state = yy_last_accepting_state;
  739. yy_act = yy_accept[yy_current_state];
  740. }
  741. YY_DO_BEFORE_ACTION;
  742. do_action: /* This label is used only to access EOF actions. */
  743. switch ( yy_act )
  744. { /* beginning of action switch */
  745. case 0: /* must back up */
  746. /* undo the effects of YY_DO_BEFORE_ACTION */
  747. *yy_cp = yy_hold_char;
  748. yy_cp = yy_last_accepting_cpos;
  749. yy_current_state = yy_last_accepting_state;
  750. goto yy_find_action;
  751. case 1:
  752. YY_RULE_SETUP
  753. #line 104 "pars0lex.l"
  754. {
  755. yylval = sym_tab_add_int_lit(pars_sym_tab_global,
  756. atoi(yytext));
  757. return(PARS_INT_LIT);
  758. }
  759. YY_BREAK
  760. case 2:
  761. YY_RULE_SETUP
  762. #line 110 "pars0lex.l"
  763. {
  764. ut_error; /* not implemented */
  765. return(PARS_FLOAT_LIT);
  766. }
  767. YY_BREAK
  768. case 3:
  769. YY_RULE_SETUP
  770. #line 116 "pars0lex.l"
  771. {
  772. /* Quoted character string literals are handled in an explicit
  773. start state 'quoted'.  This state is entered and the buffer for
  774. the scanned string is emptied upon encountering a starting quote.
  775. In the state 'quoted', only two actions are possible (defined below). */
  776. BEGIN(quoted);
  777. stringbuf_len = 0;
  778. }
  779. YY_BREAK
  780. case 4:
  781. YY_RULE_SETUP
  782. #line 125 "pars0lex.l"
  783. {
  784. /* Got a sequence of characters other than "'":
  785. append to string buffer */
  786. string_append(yytext, yyleng);
  787. }
  788. YY_BREAK
  789. case 5:
  790. YY_RULE_SETUP
  791. #line 130 "pars0lex.l"
  792. {
  793. /* Got a sequence of "'" characters:
  794. append half of them to string buffer,
  795. as "''" represents a single "'".
  796. We apply truncating division,
  797. so that "'''" will result in "'". */
  798. string_append(yytext, yyleng / 2);
  799. /* If we got an odd number of quotes, then the
  800. last quote we got is the terminating quote.
  801. At the end of the string, we return to the
  802. initial start state and report the scanned
  803. string literal. */
  804. if (yyleng % 2) {
  805. BEGIN(INITIAL);
  806. yylval = sym_tab_add_str_lit(
  807. pars_sym_tab_global,
  808. (byte*) stringbuf, stringbuf_len);
  809. return(PARS_STR_LIT);
  810. }
  811. }
  812. YY_BREAK
  813. case 6:
  814. YY_RULE_SETUP
  815. #line 154 "pars0lex.l"
  816. {
  817. yylval = sym_tab_add_null_lit(pars_sym_tab_global);
  818. return(PARS_NULL_LIT);
  819. }
  820. YY_BREAK
  821. case 7:
  822. YY_RULE_SETUP
  823. #line 160 "pars0lex.l"
  824. {
  825. /* Implicit cursor name */
  826. yylval = sym_tab_add_str_lit(pars_sym_tab_global,
  827. (byte*) yytext, yyleng);
  828. return(PARS_SQL_TOKEN);
  829. }
  830. YY_BREAK
  831. case 8:
  832. YY_RULE_SETUP
  833. #line 167 "pars0lex.l"
  834. {
  835. return(PARS_AND_TOKEN);
  836. }
  837. YY_BREAK
  838. case 9:
  839. YY_RULE_SETUP
  840. #line 171 "pars0lex.l"
  841. {
  842. return(PARS_OR_TOKEN);
  843. }
  844. YY_BREAK
  845. case 10:
  846. YY_RULE_SETUP
  847. #line 175 "pars0lex.l"
  848. {
  849. return(PARS_NOT_TOKEN);
  850. }
  851. YY_BREAK
  852. case 11:
  853. YY_RULE_SETUP
  854. #line 179 "pars0lex.l"
  855. {
  856. return(PARS_PROCEDURE_TOKEN);
  857. }
  858. YY_BREAK
  859. case 12:
  860. YY_RULE_SETUP
  861. #line 183 "pars0lex.l"
  862. {
  863. return(PARS_IN_TOKEN);
  864. }
  865. YY_BREAK
  866. case 13:
  867. YY_RULE_SETUP
  868. #line 187 "pars0lex.l"
  869. {
  870. return(PARS_OUT_TOKEN);
  871. }
  872. YY_BREAK
  873. case 14:
  874. YY_RULE_SETUP
  875. #line 191 "pars0lex.l"
  876. {
  877.   return(PARS_INT_TOKEN);
  878. }
  879. YY_BREAK
  880. case 15:
  881. YY_RULE_SETUP
  882. #line 195 "pars0lex.l"
  883. {
  884.   return(PARS_INT_TOKEN);
  885. }
  886. YY_BREAK
  887. case 16:
  888. YY_RULE_SETUP
  889. #line 199 "pars0lex.l"
  890. {
  891.   return(PARS_FLOAT_TOKEN);
  892. }
  893. YY_BREAK
  894. case 17:
  895. YY_RULE_SETUP
  896. #line 203 "pars0lex.l"
  897. {
  898.   return(PARS_CHAR_TOKEN);
  899. }
  900. YY_BREAK
  901. case 18:
  902. YY_RULE_SETUP
  903. #line 207 "pars0lex.l"
  904. {
  905. return(PARS_IS_TOKEN);
  906. }
  907. YY_BREAK
  908. case 19:
  909. YY_RULE_SETUP
  910. #line 211 "pars0lex.l"
  911. {
  912. return(PARS_BEGIN_TOKEN);
  913. }
  914. YY_BREAK
  915. case 20:
  916. YY_RULE_SETUP
  917. #line 215 "pars0lex.l"
  918. {
  919. return(PARS_END_TOKEN);
  920. }
  921. YY_BREAK
  922. case 21:
  923. YY_RULE_SETUP
  924. #line 219 "pars0lex.l"
  925. {
  926. return(PARS_IF_TOKEN);
  927. }
  928. YY_BREAK
  929. case 22:
  930. YY_RULE_SETUP
  931. #line 223 "pars0lex.l"
  932. {
  933. return(PARS_THEN_TOKEN);
  934. }
  935. YY_BREAK
  936. case 23:
  937. YY_RULE_SETUP
  938. #line 227 "pars0lex.l"
  939. {
  940. return(PARS_ELSE_TOKEN);
  941. }
  942. YY_BREAK
  943. case 24:
  944. YY_RULE_SETUP
  945. #line 231 "pars0lex.l"
  946. {
  947. return(PARS_ELSIF_TOKEN);
  948. }
  949. YY_BREAK
  950. case 25:
  951. YY_RULE_SETUP
  952. #line 235 "pars0lex.l"
  953. {
  954. return(PARS_LOOP_TOKEN);
  955. }
  956. YY_BREAK
  957. case 26:
  958. YY_RULE_SETUP
  959. #line 239 "pars0lex.l"
  960. {
  961. return(PARS_WHILE_TOKEN);
  962. }
  963. YY_BREAK
  964. case 27:
  965. YY_RULE_SETUP
  966. #line 243 "pars0lex.l"
  967. {
  968. return(PARS_RETURN_TOKEN);
  969. }
  970. YY_BREAK
  971. case 28:
  972. YY_RULE_SETUP
  973. #line 247 "pars0lex.l"
  974. {
  975. return(PARS_SELECT_TOKEN);
  976. }
  977. YY_BREAK
  978. case 29:
  979. YY_RULE_SETUP
  980. #line 251 "pars0lex.l"
  981. {
  982. return(PARS_SUM_TOKEN);
  983. }
  984. YY_BREAK
  985. case 30:
  986. YY_RULE_SETUP
  987. #line 255 "pars0lex.l"
  988. {
  989. return(PARS_COUNT_TOKEN);
  990. }
  991. YY_BREAK
  992. case 31:
  993. YY_RULE_SETUP
  994. #line 259 "pars0lex.l"
  995. {
  996. return(PARS_DISTINCT_TOKEN);
  997. }
  998. YY_BREAK
  999. case 32:
  1000. YY_RULE_SETUP
  1001. #line 263 "pars0lex.l"
  1002. {
  1003. return(PARS_FROM_TOKEN);
  1004. }
  1005. YY_BREAK
  1006. case 33:
  1007. YY_RULE_SETUP
  1008. #line 267 "pars0lex.l"
  1009. {
  1010. return(PARS_WHERE_TOKEN);
  1011. }
  1012. YY_BREAK
  1013. case 34:
  1014. YY_RULE_SETUP
  1015. #line 271 "pars0lex.l"
  1016. {
  1017. return(PARS_FOR_TOKEN);
  1018. }
  1019. YY_BREAK
  1020. case 35:
  1021. YY_RULE_SETUP
  1022. #line 275 "pars0lex.l"
  1023. {
  1024. return(PARS_CONSISTENT_TOKEN);
  1025. }
  1026. YY_BREAK
  1027. case 36:
  1028. YY_RULE_SETUP
  1029. #line 279 "pars0lex.l"
  1030. {
  1031. return(PARS_READ_TOKEN);
  1032. }
  1033. YY_BREAK
  1034. case 37:
  1035. YY_RULE_SETUP
  1036. #line 283 "pars0lex.l"
  1037. {
  1038. return(PARS_ORDER_TOKEN);
  1039. }
  1040. YY_BREAK
  1041. case 38:
  1042. YY_RULE_SETUP
  1043. #line 287 "pars0lex.l"
  1044. {
  1045. return(PARS_BY_TOKEN);
  1046. }
  1047. YY_BREAK
  1048. case 39:
  1049. YY_RULE_SETUP
  1050. #line 291 "pars0lex.l"
  1051. {
  1052. return(PARS_ASC_TOKEN);
  1053. }
  1054. YY_BREAK
  1055. case 40:
  1056. YY_RULE_SETUP
  1057. #line 295 "pars0lex.l"
  1058. {
  1059. return(PARS_DESC_TOKEN);
  1060. }
  1061. YY_BREAK
  1062. case 41:
  1063. YY_RULE_SETUP
  1064. #line 299 "pars0lex.l"
  1065. {
  1066. return(PARS_INSERT_TOKEN);
  1067. }
  1068. YY_BREAK
  1069. case 42:
  1070. YY_RULE_SETUP
  1071. #line 303 "pars0lex.l"
  1072. {
  1073. return(PARS_INTO_TOKEN);
  1074. }
  1075. YY_BREAK
  1076. case 43:
  1077. YY_RULE_SETUP
  1078. #line 307 "pars0lex.l"
  1079. {
  1080. return(PARS_VALUES_TOKEN);
  1081. }
  1082. YY_BREAK
  1083. case 44:
  1084. YY_RULE_SETUP
  1085. #line 311 "pars0lex.l"
  1086. {
  1087. return(PARS_UPDATE_TOKEN);
  1088. }
  1089. YY_BREAK
  1090. case 45:
  1091. YY_RULE_SETUP
  1092. #line 315 "pars0lex.l"
  1093. {
  1094. return(PARS_SET_TOKEN);
  1095. }
  1096. YY_BREAK
  1097. case 46:
  1098. YY_RULE_SETUP
  1099. #line 319 "pars0lex.l"
  1100. {
  1101. return(PARS_DELETE_TOKEN);
  1102. }
  1103. YY_BREAK
  1104. case 47:
  1105. YY_RULE_SETUP
  1106. #line 323 "pars0lex.l"
  1107. {
  1108. return(PARS_CURRENT_TOKEN);
  1109. }
  1110. YY_BREAK
  1111. case 48:
  1112. YY_RULE_SETUP
  1113. #line 327 "pars0lex.l"
  1114. {
  1115. return(PARS_OF_TOKEN);
  1116. }
  1117. YY_BREAK
  1118. case 49:
  1119. YY_RULE_SETUP
  1120. #line 331 "pars0lex.l"
  1121. {
  1122. return(PARS_CREATE_TOKEN);
  1123. }
  1124. YY_BREAK
  1125. case 50:
  1126. YY_RULE_SETUP
  1127. #line 335 "pars0lex.l"
  1128. {
  1129. return(PARS_TABLE_TOKEN);
  1130. }
  1131. YY_BREAK
  1132. case 51:
  1133. YY_RULE_SETUP
  1134. #line 339 "pars0lex.l"
  1135. {
  1136.   return(PARS_INDEX_TOKEN);
  1137. }
  1138. YY_BREAK
  1139. case 52:
  1140. YY_RULE_SETUP
  1141. #line 343 "pars0lex.l"
  1142. {
  1143.   return(PARS_UNIQUE_TOKEN);
  1144. }
  1145. YY_BREAK
  1146. case 53:
  1147. YY_RULE_SETUP
  1148. #line 347 "pars0lex.l"
  1149. {
  1150.   return(PARS_CLUSTERED_TOKEN);
  1151. }
  1152. YY_BREAK
  1153. case 54:
  1154. YY_RULE_SETUP
  1155. #line 351 "pars0lex.l"
  1156. {
  1157. return(PARS_DOES_NOT_FIT_IN_MEM_TOKEN);
  1158. }
  1159. YY_BREAK
  1160. case 55:
  1161. YY_RULE_SETUP
  1162. #line 355 "pars0lex.l"
  1163. {
  1164.   return(PARS_ON_TOKEN);
  1165. }
  1166. YY_BREAK
  1167. case 56:
  1168. YY_RULE_SETUP
  1169. #line 359 "pars0lex.l"
  1170. {
  1171. return(PARS_DECLARE_TOKEN);
  1172. }
  1173. YY_BREAK
  1174. case 57:
  1175. YY_RULE_SETUP
  1176. #line 363 "pars0lex.l"
  1177. {
  1178. return(PARS_CURSOR_TOKEN);
  1179. }
  1180. YY_BREAK
  1181. case 58:
  1182. YY_RULE_SETUP
  1183. #line 367 "pars0lex.l"
  1184. {
  1185. return(PARS_OPEN_TOKEN);
  1186. }
  1187. YY_BREAK
  1188. case 59:
  1189. YY_RULE_SETUP
  1190. #line 371 "pars0lex.l"
  1191. {
  1192. return(PARS_FETCH_TOKEN);
  1193. }
  1194. YY_BREAK
  1195. case 60:
  1196. YY_RULE_SETUP
  1197. #line 375 "pars0lex.l"
  1198. {
  1199. return(PARS_CLOSE_TOKEN);
  1200. }
  1201. YY_BREAK
  1202. case 61:
  1203. YY_RULE_SETUP
  1204. #line 379 "pars0lex.l"
  1205. {
  1206. return(PARS_NOTFOUND_TOKEN);
  1207. }
  1208. YY_BREAK
  1209. case 62:
  1210. YY_RULE_SETUP
  1211. #line 383 "pars0lex.l"
  1212. {
  1213. return(PARS_TO_CHAR_TOKEN);
  1214. }
  1215. YY_BREAK
  1216. case 63:
  1217. YY_RULE_SETUP
  1218. #line 387 "pars0lex.l"
  1219. {
  1220. return(PARS_TO_NUMBER_TOKEN);
  1221. }
  1222. YY_BREAK
  1223. case 64:
  1224. YY_RULE_SETUP
  1225. #line 391 "pars0lex.l"
  1226. {
  1227. return(PARS_TO_BINARY_TOKEN);
  1228. }
  1229. YY_BREAK
  1230. case 65:
  1231. YY_RULE_SETUP
  1232. #line 395 "pars0lex.l"
  1233. {
  1234. return(PARS_BINARY_TO_NUMBER_TOKEN);
  1235. }
  1236. YY_BREAK
  1237. case 66:
  1238. YY_RULE_SETUP
  1239. #line 399 "pars0lex.l"
  1240. {
  1241. return(PARS_SUBSTR_TOKEN);
  1242. }
  1243. YY_BREAK
  1244. case 67:
  1245. YY_RULE_SETUP
  1246. #line 403 "pars0lex.l"
  1247. {
  1248. return(PARS_REPLSTR_TOKEN);
  1249. }
  1250. YY_BREAK
  1251. case 68:
  1252. YY_RULE_SETUP
  1253. #line 407 "pars0lex.l"
  1254. {
  1255. return(PARS_CONCAT_TOKEN);
  1256. }
  1257. YY_BREAK
  1258. case 69:
  1259. YY_RULE_SETUP
  1260. #line 411 "pars0lex.l"
  1261. {
  1262. return(PARS_INSTR_TOKEN);
  1263. }
  1264. YY_BREAK
  1265. case 70:
  1266. YY_RULE_SETUP
  1267. #line 415 "pars0lex.l"
  1268. {
  1269. return(PARS_LENGTH_TOKEN);
  1270. }
  1271. YY_BREAK
  1272. case 71:
  1273. YY_RULE_SETUP
  1274. #line 419 "pars0lex.l"
  1275. {
  1276. return(PARS_SYSDATE_TOKEN);
  1277. }
  1278. YY_BREAK
  1279. case 72:
  1280. YY_RULE_SETUP
  1281. #line 423 "pars0lex.l"
  1282. {
  1283. return(PARS_PRINTF_TOKEN);
  1284. }
  1285. YY_BREAK
  1286. case 73:
  1287. YY_RULE_SETUP
  1288. #line 427 "pars0lex.l"
  1289. {
  1290. return(PARS_ASSERT_TOKEN);
  1291. }
  1292. YY_BREAK
  1293. case 74:
  1294. YY_RULE_SETUP
  1295. #line 431 "pars0lex.l"
  1296. {
  1297. return(PARS_RND_TOKEN);
  1298. }
  1299. YY_BREAK
  1300. case 75:
  1301. YY_RULE_SETUP
  1302. #line 435 "pars0lex.l"
  1303. {
  1304. return(PARS_RND_STR_TOKEN);
  1305. }
  1306. YY_BREAK
  1307. case 76:
  1308. YY_RULE_SETUP
  1309. #line 439 "pars0lex.l"
  1310. {
  1311. return(PARS_ROW_PRINTF_TOKEN);
  1312. }
  1313. YY_BREAK
  1314. case 77:
  1315. YY_RULE_SETUP
  1316. #line 443 "pars0lex.l"
  1317. {
  1318. return(PARS_COMMIT_TOKEN);
  1319. }
  1320. YY_BREAK
  1321. case 78:
  1322. YY_RULE_SETUP
  1323. #line 447 "pars0lex.l"
  1324. {
  1325. return(PARS_ROLLBACK_TOKEN);
  1326. }
  1327. YY_BREAK
  1328. case 79:
  1329. YY_RULE_SETUP
  1330. #line 451 "pars0lex.l"
  1331. {
  1332. return(PARS_WORK_TOKEN);
  1333. }
  1334. YY_BREAK
  1335. case 80:
  1336. YY_RULE_SETUP
  1337. #line 455 "pars0lex.l"
  1338. {
  1339. yylval = sym_tab_add_id(pars_sym_tab_global,
  1340. (byte*)yytext,
  1341. ut_strlen(yytext));
  1342. return(PARS_ID_TOKEN);
  1343. }
  1344. YY_BREAK
  1345. case 81:
  1346. YY_RULE_SETUP
  1347. #line 462 "pars0lex.l"
  1348. {
  1349. return(PARS_DDOT_TOKEN);
  1350. }
  1351. YY_BREAK
  1352. case 82:
  1353. YY_RULE_SETUP
  1354. #line 466 "pars0lex.l"
  1355. {
  1356. return(PARS_ASSIGN_TOKEN);
  1357. }
  1358. YY_BREAK
  1359. case 83:
  1360. YY_RULE_SETUP
  1361. #line 470 "pars0lex.l"
  1362. {
  1363. return(PARS_LE_TOKEN);
  1364. }
  1365. YY_BREAK
  1366. case 84:
  1367. YY_RULE_SETUP
  1368. #line 474 "pars0lex.l"
  1369. {
  1370. return(PARS_GE_TOKEN);
  1371. }
  1372. YY_BREAK
  1373. case 85:
  1374. YY_RULE_SETUP
  1375. #line 478 "pars0lex.l"
  1376. {
  1377. return(PARS_NE_TOKEN);
  1378. }
  1379. YY_BREAK
  1380. case 86:
  1381. YY_RULE_SETUP
  1382. #line 482 "pars0lex.l"
  1383. {
  1384. return((int)(*yytext));
  1385. }
  1386. YY_BREAK
  1387. case 87:
  1388. YY_RULE_SETUP
  1389. #line 487 "pars0lex.l"
  1390. {
  1391. return((int)(*yytext));
  1392. }
  1393. YY_BREAK
  1394. case 88:
  1395. YY_RULE_SETUP
  1396. #line 492 "pars0lex.l"
  1397. {
  1398. return((int)(*yytext));
  1399. }
  1400. YY_BREAK
  1401. case 89:
  1402. YY_RULE_SETUP
  1403. #line 497 "pars0lex.l"
  1404. {
  1405. return((int)(*yytext));
  1406. }
  1407. YY_BREAK
  1408. case 90:
  1409. YY_RULE_SETUP
  1410. #line 502 "pars0lex.l"
  1411. {
  1412. return((int)(*yytext));
  1413. }
  1414. YY_BREAK
  1415. case 91:
  1416. YY_RULE_SETUP
  1417. #line 507 "pars0lex.l"
  1418. {
  1419. return((int)(*yytext));
  1420. }
  1421. YY_BREAK
  1422. case 92:
  1423. YY_RULE_SETUP
  1424. #line 512 "pars0lex.l"
  1425. {
  1426. return((int)(*yytext));
  1427. }
  1428. YY_BREAK
  1429. case 93:
  1430. YY_RULE_SETUP
  1431. #line 517 "pars0lex.l"
  1432. {
  1433. return((int)(*yytext));
  1434. }
  1435. YY_BREAK
  1436. case 94:
  1437. YY_RULE_SETUP
  1438. #line 522 "pars0lex.l"
  1439. {
  1440. return((int)(*yytext));
  1441. }
  1442. YY_BREAK
  1443. case 95:
  1444. YY_RULE_SETUP
  1445. #line 527 "pars0lex.l"
  1446. {
  1447. return((int)(*yytext));
  1448. }
  1449. YY_BREAK
  1450. case 96:
  1451. YY_RULE_SETUP
  1452. #line 532 "pars0lex.l"
  1453. {
  1454. return((int)(*yytext));
  1455. }
  1456. YY_BREAK
  1457. case 97:
  1458. YY_RULE_SETUP
  1459. #line 537 "pars0lex.l"
  1460. {
  1461. return((int)(*yytext));
  1462. }
  1463. YY_BREAK
  1464. case 98:
  1465. YY_RULE_SETUP
  1466. #line 542 "pars0lex.l"
  1467. {
  1468. return((int)(*yytext));
  1469. }
  1470. YY_BREAK
  1471. case 99:
  1472. YY_RULE_SETUP
  1473. #line 547 "pars0lex.l"
  1474. {
  1475. return((int)(*yytext));
  1476. }
  1477. YY_BREAK
  1478. case 100:
  1479. YY_RULE_SETUP
  1480. #line 552 "pars0lex.l"
  1481. {
  1482. return((int)(*yytext));
  1483. }
  1484. YY_BREAK
  1485. case 101:
  1486. YY_RULE_SETUP
  1487. #line 557 "pars0lex.l"
  1488. BEGIN(comment); /* eat up comment */
  1489. YY_BREAK
  1490. case 102:
  1491. YY_RULE_SETUP
  1492. #line 559 "pars0lex.l"
  1493. YY_BREAK
  1494. case 103:
  1495. YY_RULE_SETUP
  1496. #line 560 "pars0lex.l"
  1497. YY_BREAK
  1498. case 104:
  1499. YY_RULE_SETUP
  1500. #line 561 "pars0lex.l"
  1501. BEGIN(INITIAL);
  1502. YY_BREAK
  1503. case 105:
  1504. YY_RULE_SETUP
  1505. #line 563 "pars0lex.l"
  1506. /* eat up whitespace */
  1507. YY_BREAK
  1508. case 106:
  1509. YY_RULE_SETUP
  1510. #line 566 "pars0lex.l"
  1511. {
  1512. fprintf(stderr,"Unrecognized character: %02xn",
  1513. *yytext);
  1514. ut_error;
  1515. return(0);
  1516. }
  1517. YY_BREAK
  1518. case 107:
  1519. YY_RULE_SETUP
  1520. #line 575 "pars0lex.l"
  1521. YY_FATAL_ERROR( "flex scanner jammed" );
  1522. YY_BREAK
  1523. #line 1710 "lex.yy.c"
  1524. case YY_STATE_EOF(INITIAL):
  1525. case YY_STATE_EOF(comment):
  1526. case YY_STATE_EOF(quoted):
  1527. yyterminate();
  1528. case YY_END_OF_BUFFER:
  1529. {
  1530. /* Amount of text matched not including the EOB char. */
  1531. int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
  1532. /* Undo the effects of YY_DO_BEFORE_ACTION. */
  1533. *yy_cp = yy_hold_char;
  1534. YY_RESTORE_YY_MORE_OFFSET
  1535. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  1536. {
  1537. /* We're scanning a new file or input source.  It's
  1538.  * possible that this happened because the user
  1539.  * just pointed yyin at a new source and called
  1540.  * yylex().  If so, then we have to assure
  1541.  * consistency between yy_current_buffer and our
  1542.  * globals.  Here is the right place to do so, because
  1543.  * this is the first action (other than possibly a
  1544.  * back-up) that will match for the new input source.
  1545.  */
  1546. yy_n_chars = yy_current_buffer->yy_n_chars;
  1547. yy_current_buffer->yy_input_file = yyin;
  1548. yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  1549. }
  1550. /* Note that here we test for yy_c_buf_p "<=" to the position
  1551.  * of the first EOB in the buffer, since yy_c_buf_p will
  1552.  * already have been incremented past the NUL character
  1553.  * (since all states make transitions on EOB to the
  1554.  * end-of-buffer state).  Contrast this with the test
  1555.  * in input().
  1556.  */
  1557. if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1558. { /* This was really a NUL. */
  1559. yy_state_type yy_next_state;
  1560. yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
  1561. yy_current_state = yy_get_previous_state();
  1562. /* Okay, we're now positioned to make the NUL
  1563.  * transition.  We couldn't have
  1564.  * yy_get_previous_state() go ahead and do it
  1565.  * for us because it doesn't know how to deal
  1566.  * with the possibility of jamming (and we don't
  1567.  * want to build jamming into it because then it
  1568.  * will run more slowly).
  1569.  */
  1570. yy_next_state = yy_try_NUL_trans( yy_current_state );
  1571. yy_bp = yytext_ptr + YY_MORE_ADJ;
  1572. if ( yy_next_state )
  1573. {
  1574. /* Consume the NUL. */
  1575. yy_cp = ++yy_c_buf_p;
  1576. yy_current_state = yy_next_state;
  1577. goto yy_match;
  1578. }
  1579. else
  1580. {
  1581. yy_cp = yy_c_buf_p;
  1582. goto yy_find_action;
  1583. }
  1584. }
  1585. else switch ( yy_get_next_buffer() )
  1586. {
  1587. case EOB_ACT_END_OF_FILE:
  1588. {
  1589. yy_did_buffer_switch_on_eof = 0;
  1590. if ( yywrap() )
  1591. {
  1592. /* Note: because we've taken care in
  1593.  * yy_get_next_buffer() to have set up
  1594.  * yytext, we can now set up
  1595.  * yy_c_buf_p so that if some total
  1596.  * hoser (like flex itself) wants to
  1597.  * call the scanner after we return the
  1598.  * YY_NULL, it'll still work - another
  1599.  * YY_NULL will get returned.
  1600.  */
  1601. yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  1602. yy_act = YY_STATE_EOF(YY_START);
  1603. goto do_action;
  1604. }
  1605. else
  1606. {
  1607. if ( ! yy_did_buffer_switch_on_eof )
  1608. YY_NEW_FILE;
  1609. }
  1610. break;
  1611. }
  1612. case EOB_ACT_CONTINUE_SCAN:
  1613. yy_c_buf_p =
  1614. yytext_ptr + yy_amount_of_matched_text;
  1615. yy_current_state = yy_get_previous_state();
  1616. yy_cp = yy_c_buf_p;
  1617. yy_bp = yytext_ptr + YY_MORE_ADJ;
  1618. goto yy_match;
  1619. case EOB_ACT_LAST_MATCH:
  1620. yy_c_buf_p =
  1621. &yy_current_buffer->yy_ch_buf[yy_n_chars];
  1622. yy_current_state = yy_get_previous_state();
  1623. yy_cp = yy_c_buf_p;
  1624. yy_bp = yytext_ptr + YY_MORE_ADJ;
  1625. goto yy_find_action;
  1626. }
  1627. break;
  1628. }
  1629. default:
  1630. YY_FATAL_ERROR(
  1631. "fatal flex scanner internal error--no action found" );
  1632. } /* end of action switch */
  1633. } /* end of scanning one token */
  1634. } /* end of yylex */
  1635. /* yy_get_next_buffer - try to read in a new buffer
  1636.  *
  1637.  * Returns a code representing an action:
  1638.  * EOB_ACT_LAST_MATCH -
  1639.  * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1640.  * EOB_ACT_END_OF_FILE - end of file
  1641.  */
  1642. static int yy_get_next_buffer()
  1643. {
  1644. register char *dest = yy_current_buffer->yy_ch_buf;
  1645. register char *source = yytext_ptr;
  1646. register int number_to_move, i;
  1647. int ret_val;
  1648. if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  1649. YY_FATAL_ERROR(
  1650. "fatal flex scanner internal error--end of buffer missed" );
  1651. if ( yy_current_buffer->yy_fill_buffer == 0 )
  1652. { /* Don't try to fill the buffer, so this is an EOF. */
  1653. if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  1654. {
  1655. /* We matched a single character, the EOB, so
  1656.  * treat this as a final EOF.
  1657.  */
  1658. return EOB_ACT_END_OF_FILE;
  1659. }
  1660. else
  1661. {
  1662. /* We matched some text prior to the EOB, first
  1663.  * process it.
  1664.  */
  1665. return EOB_ACT_LAST_MATCH;
  1666. }
  1667. }
  1668. /* Try to read more data. */
  1669. /* First move last chars to start of buffer. */
  1670. number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
  1671. for ( i = 0; i < number_to_move; ++i )
  1672. *(dest++) = *(source++);
  1673. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  1674. /* don't do the read, it's not guaranteed to return an EOF,
  1675.  * just force an EOF
  1676.  */
  1677. yy_current_buffer->yy_n_chars = yy_n_chars = 0;
  1678. else
  1679. {
  1680. int num_to_read =
  1681. yy_current_buffer->yy_buf_size - number_to_move - 1;
  1682. while ( num_to_read <= 0 )
  1683. { /* Not enough room in the buffer - grow it. */
  1684. #ifdef YY_USES_REJECT
  1685. YY_FATAL_ERROR(
  1686. "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
  1687. #else
  1688. /* just a shorter name for the current buffer */
  1689. YY_BUFFER_STATE b = yy_current_buffer;
  1690. int yy_c_buf_p_offset =
  1691. (int) (yy_c_buf_p - b->yy_ch_buf);
  1692. if ( b->yy_is_our_buffer )
  1693. {
  1694. int new_size = b->yy_buf_size * 2;
  1695. if ( new_size <= 0 )
  1696. b->yy_buf_size += b->yy_buf_size / 8;
  1697. else
  1698. b->yy_buf_size *= 2;
  1699. b->yy_ch_buf = (char *)
  1700. /* Include room in for 2 EOB chars. */
  1701. yy_flex_realloc( (void *) b->yy_ch_buf,
  1702.  b->yy_buf_size + 2 );
  1703. }
  1704. else
  1705. /* Can't grow it, we don't own it. */
  1706. b->yy_ch_buf = 0;
  1707. if ( ! b->yy_ch_buf )
  1708. YY_FATAL_ERROR(
  1709. "fatal error - scanner input buffer overflow" );
  1710. yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
  1711. num_to_read = yy_current_buffer->yy_buf_size -
  1712. number_to_move - 1;
  1713. #endif
  1714. }
  1715. if ( num_to_read > YY_READ_BUF_SIZE )
  1716. num_to_read = YY_READ_BUF_SIZE;
  1717. /* Read in more data. */
  1718. YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  1719. yy_n_chars, num_to_read );
  1720. yy_current_buffer->yy_n_chars = yy_n_chars;
  1721. }
  1722. if ( yy_n_chars == 0 )
  1723. {
  1724. if ( number_to_move == YY_MORE_ADJ )
  1725. {
  1726. ret_val = EOB_ACT_END_OF_FILE;
  1727. yyrestart( yyin );
  1728. }
  1729. else
  1730. {
  1731. ret_val = EOB_ACT_LAST_MATCH;
  1732. yy_current_buffer->yy_buffer_status =
  1733. YY_BUFFER_EOF_PENDING;
  1734. }
  1735. }
  1736. else
  1737. ret_val = EOB_ACT_CONTINUE_SCAN;
  1738. yy_n_chars += number_to_move;
  1739. yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  1740. yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  1741. yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
  1742. return ret_val;
  1743. }
  1744. /* yy_get_previous_state - get the state just before the EOB char was reached */
  1745. static yy_state_type yy_get_previous_state()
  1746. {
  1747. register yy_state_type yy_current_state;
  1748. register char *yy_cp;
  1749. yy_current_state = yy_start;
  1750. for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  1751. {
  1752. register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  1753. if ( yy_accept[yy_current_state] )
  1754. {
  1755. yy_last_accepting_state = yy_current_state;
  1756. yy_last_accepting_cpos = yy_cp;
  1757. }
  1758. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1759. {
  1760. yy_current_state = (int) yy_def[yy_current_state];
  1761. if ( yy_current_state >= 367 )
  1762. yy_c = yy_meta[(unsigned int) yy_c];
  1763. }
  1764. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1765. }
  1766. return yy_current_state;
  1767. }
  1768. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1769.  *
  1770.  * synopsis
  1771.  * next_state = yy_try_NUL_trans( current_state );
  1772.  */
  1773. #ifdef YY_USE_PROTOS
  1774. static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
  1775. #else
  1776. static yy_state_type yy_try_NUL_trans( yy_current_state )
  1777. yy_state_type yy_current_state;
  1778. #endif
  1779. {
  1780. register int yy_is_jam;
  1781. register char *yy_cp = yy_c_buf_p;
  1782. register YY_CHAR yy_c = 1;
  1783. if ( yy_accept[yy_current_state] )
  1784. {
  1785. yy_last_accepting_state = yy_current_state;
  1786. yy_last_accepting_cpos = yy_cp;
  1787. }
  1788. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1789. {
  1790. yy_current_state = (int) yy_def[yy_current_state];
  1791. if ( yy_current_state >= 367 )
  1792. yy_c = yy_meta[(unsigned int) yy_c];
  1793. }
  1794. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1795. yy_is_jam = (yy_current_state == 366);
  1796. return yy_is_jam ? 0 : yy_current_state;
  1797. }
  1798. #ifndef YY_NO_UNPUT
  1799. #ifdef YY_USE_PROTOS
  1800. static void yyunput( int c, register char *yy_bp )
  1801. #else
  1802. static void yyunput( c, yy_bp )
  1803. int c;
  1804. register char *yy_bp;
  1805. #endif
  1806. {
  1807. register char *yy_cp = yy_c_buf_p;
  1808. /* undo effects of setting up yytext */
  1809. *yy_cp = yy_hold_char;
  1810. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1811. { /* need to shift things up to make room */
  1812. /* +2 for EOB chars. */
  1813. register int number_to_move = yy_n_chars + 2;
  1814. register char *dest = &yy_current_buffer->yy_ch_buf[
  1815. yy_current_buffer->yy_buf_size + 2];
  1816. register char *source =
  1817. &yy_current_buffer->yy_ch_buf[number_to_move];
  1818. while ( source > yy_current_buffer->yy_ch_buf )
  1819. *--dest = *--source;
  1820. yy_cp += (int) (dest - source);
  1821. yy_bp += (int) (dest - source);
  1822. yy_current_buffer->yy_n_chars =
  1823. yy_n_chars = yy_current_buffer->yy_buf_size;
  1824. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1825. YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1826. }
  1827. *--yy_cp = (char) c;
  1828. yytext_ptr = yy_bp;
  1829. yy_hold_char = *yy_cp;
  1830. yy_c_buf_p = yy_cp;
  1831. }
  1832. #endif /* ifndef YY_NO_UNPUT */
  1833. #ifdef __cplusplus
  1834. static int yyinput()
  1835. #else
  1836. static int input()
  1837. #endif
  1838. {
  1839. int c;
  1840. *yy_c_buf_p = yy_hold_char;
  1841. if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  1842. {
  1843. /* yy_c_buf_p now points to the character we want to return.
  1844.  * If this occurs *before* the EOB characters, then it's a
  1845.  * valid NUL; if not, then we've hit the end of the buffer.
  1846.  */
  1847. if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1848. /* This was really a NUL. */
  1849. *yy_c_buf_p = '';
  1850. else
  1851. { /* need more input */
  1852. int offset = yy_c_buf_p - yytext_ptr;
  1853. ++yy_c_buf_p;
  1854. switch ( yy_get_next_buffer() )
  1855. {
  1856. case EOB_ACT_LAST_MATCH:
  1857. /* This happens because yy_g_n_b()
  1858.  * sees that we've accumulated a
  1859.  * token and flags that we need to
  1860.  * try matching the token before
  1861.  * proceeding.  But for input(),
  1862.  * there's no matching to consider.
  1863.  * So convert the EOB_ACT_LAST_MATCH
  1864.  * to EOB_ACT_END_OF_FILE.
  1865.  */
  1866. /* Reset buffer status. */
  1867. yyrestart( yyin );
  1868. /* fall through */
  1869. case EOB_ACT_END_OF_FILE:
  1870. {
  1871. if ( yywrap() )
  1872. return EOF;
  1873. if ( ! yy_did_buffer_switch_on_eof )
  1874. YY_NEW_FILE;
  1875. #ifdef __cplusplus
  1876. return yyinput();
  1877. #else
  1878. return input();
  1879. #endif
  1880. }
  1881. case EOB_ACT_CONTINUE_SCAN:
  1882. yy_c_buf_p = yytext_ptr + offset;
  1883. break;
  1884. }
  1885. }
  1886. }
  1887. c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
  1888. *yy_c_buf_p = ''; /* preserve yytext */
  1889. yy_hold_char = *++yy_c_buf_p;
  1890. return c;
  1891. }
  1892. #ifdef YY_USE_PROTOS
  1893. void yyrestart( FILE *input_file )
  1894. #else
  1895. void yyrestart( input_file )
  1896. FILE *input_file;
  1897. #endif
  1898. {
  1899. if ( ! yy_current_buffer )
  1900. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  1901. yy_init_buffer( yy_current_buffer, input_file );
  1902. yy_load_buffer_state();
  1903. }
  1904. #ifdef YY_USE_PROTOS
  1905. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  1906. #else
  1907. void yy_switch_to_buffer( new_buffer )
  1908. YY_BUFFER_STATE new_buffer;
  1909. #endif
  1910. {
  1911. if ( yy_current_buffer == new_buffer )
  1912. return;
  1913. if ( yy_current_buffer )
  1914. {
  1915. /* Flush out information for old buffer. */
  1916. *yy_c_buf_p = yy_hold_char;
  1917. yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  1918. yy_current_buffer->yy_n_chars = yy_n_chars;
  1919. }
  1920. yy_current_buffer = new_buffer;
  1921. yy_load_buffer_state();
  1922. /* We don't actually know whether we did this switch during
  1923.  * EOF (yywrap()) processing, but the only time this flag
  1924.  * is looked at is after yywrap() is called, so it's safe
  1925.  * to go ahead and always set it.
  1926.  */
  1927. yy_did_buffer_switch_on_eof = 1;
  1928. }
  1929. #ifdef YY_USE_PROTOS
  1930. void yy_load_buffer_state( void )
  1931. #else
  1932. void yy_load_buffer_state()
  1933. #endif
  1934. {
  1935. yy_n_chars = yy_current_buffer->yy_n_chars;
  1936. yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  1937. yyin = yy_current_buffer->yy_input_file;
  1938. yy_hold_char = *yy_c_buf_p;
  1939. }
  1940. #ifdef YY_USE_PROTOS
  1941. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  1942. #else
  1943. YY_BUFFER_STATE yy_create_buffer( file, size )
  1944. FILE *file;
  1945. int size;
  1946. #endif
  1947. {
  1948. YY_BUFFER_STATE b;
  1949. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  1950. if ( ! b )
  1951. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1952. b->yy_buf_size = size;
  1953. /* yy_ch_buf has to be 2 characters longer than the size given because
  1954.  * we need to put in 2 end-of-buffer characters.
  1955.  */
  1956. b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  1957. if ( ! b->yy_ch_buf )
  1958. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1959. b->yy_is_our_buffer = 1;
  1960. yy_init_buffer( b, file );
  1961. return b;
  1962. }
  1963. #ifdef YY_USE_PROTOS
  1964. void yy_delete_buffer( YY_BUFFER_STATE b )
  1965. #else
  1966. void yy_delete_buffer( b )
  1967. YY_BUFFER_STATE b;
  1968. #endif
  1969. {
  1970. if ( ! b )
  1971. return;
  1972. if ( b == yy_current_buffer )
  1973. yy_current_buffer = (YY_BUFFER_STATE) 0;
  1974. if ( b->yy_is_our_buffer )
  1975. yy_flex_free( (void *) b->yy_ch_buf );
  1976. yy_flex_free( (void *) b );
  1977. }
  1978. #ifndef YY_ALWAYS_INTERACTIVE
  1979. #ifndef YY_NEVER_INTERACTIVE
  1980. extern int isatty YY_PROTO(( int ));
  1981. #endif
  1982. #endif
  1983. #ifdef YY_USE_PROTOS
  1984. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  1985. #else
  1986. void yy_init_buffer( b, file )
  1987. YY_BUFFER_STATE b;
  1988. FILE *file;
  1989. #endif
  1990. {
  1991. yy_flush_buffer( b );
  1992. b->yy_input_file = file;
  1993. b->yy_fill_buffer = 1;
  1994. #if YY_ALWAYS_INTERACTIVE
  1995. b->yy_is_interactive = 1;
  1996. #else
  1997. #if YY_NEVER_INTERACTIVE
  1998. b->yy_is_interactive = 0;
  1999. #else
  2000. b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
  2001. #endif
  2002. #endif
  2003. }
  2004. #ifdef YY_USE_PROTOS
  2005. void yy_flush_buffer( YY_BUFFER_STATE b )
  2006. #else
  2007. void yy_flush_buffer( b )
  2008. YY_BUFFER_STATE b;
  2009. #endif
  2010. {
  2011. if ( ! b )
  2012. return;
  2013. b->yy_n_chars = 0;
  2014. /* We always need two end-of-buffer characters.  The first causes
  2015.  * a transition to the end-of-buffer state.  The second causes
  2016.  * a jam in that state.
  2017.  */
  2018. b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  2019. b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  2020. b->yy_buf_pos = &b->yy_ch_buf[0];
  2021. b->yy_at_bol = 1;
  2022. b->yy_buffer_status = YY_BUFFER_NEW;
  2023. if ( b == yy_current_buffer )
  2024. yy_load_buffer_state();
  2025. }
  2026. #ifndef YY_NO_SCAN_BUFFER
  2027. #ifdef YY_USE_PROTOS
  2028. YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
  2029. #else
  2030. YY_BUFFER_STATE yy_scan_buffer( base, size )
  2031. char *base;
  2032. yy_size_t size;
  2033. #endif
  2034. {
  2035. YY_BUFFER_STATE b;
  2036. if ( size < 2 ||
  2037.      base[size-2] != YY_END_OF_BUFFER_CHAR ||
  2038.      base[size-1] != YY_END_OF_BUFFER_CHAR )
  2039. /* They forgot to leave room for the EOB's. */
  2040. return 0;
  2041. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  2042. if ( ! b )
  2043. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
  2044. b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
  2045. b->yy_buf_pos = b->yy_ch_buf = base;
  2046. b->yy_is_our_buffer = 0;
  2047. b->yy_input_file = 0;
  2048. b->yy_n_chars = b->yy_buf_size;
  2049. b->yy_is_interactive = 0;
  2050. b->yy_at_bol = 1;
  2051. b->yy_fill_buffer = 0;
  2052. b->yy_buffer_status = YY_BUFFER_NEW;
  2053. yy_switch_to_buffer( b );
  2054. return b;
  2055. }
  2056. #endif
  2057. #ifndef YY_NO_SCAN_STRING
  2058. #ifdef YY_USE_PROTOS
  2059. YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
  2060. #else
  2061. YY_BUFFER_STATE yy_scan_string( yy_str )
  2062. yyconst char *yy_str;
  2063. #endif
  2064. {
  2065. int len;
  2066. for ( len = 0; yy_str[len]; ++len )
  2067. ;
  2068. return yy_scan_bytes( yy_str, len );
  2069. }
  2070. #endif
  2071. #ifndef YY_NO_SCAN_BYTES
  2072. #ifdef YY_USE_PROTOS
  2073. YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
  2074. #else
  2075. YY_BUFFER_STATE yy_scan_bytes( bytes, len )
  2076. yyconst char *bytes;
  2077. int len;
  2078. #endif
  2079. {
  2080. YY_BUFFER_STATE b;
  2081. char *buf;
  2082. yy_size_t n;
  2083. int i;
  2084. /* Get memory for full buffer, including space for trailing EOB's. */
  2085. n = len + 2;
  2086. buf = (char *) yy_flex_alloc( n );
  2087. if ( ! buf )
  2088. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
  2089. for ( i = 0; i < len; ++i )
  2090. buf[i] = bytes[i];
  2091. buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
  2092. b = yy_scan_buffer( buf, n );
  2093. if ( ! b )
  2094. YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
  2095. /* It's okay to grow etc. this buffer, and we should throw it
  2096.  * away when we're done.
  2097.  */
  2098. b->yy_is_our_buffer = 1;
  2099. return b;
  2100. }
  2101. #endif
  2102. #ifndef YY_NO_PUSH_STATE
  2103. #ifdef YY_USE_PROTOS
  2104. static void yy_push_state( int new_state )
  2105. #else
  2106. static void yy_push_state( new_state )
  2107. int new_state;
  2108. #endif
  2109. {
  2110. if ( yy_start_stack_ptr >= yy_start_stack_depth )
  2111. {
  2112. yy_size_t new_size;
  2113. yy_start_stack_depth += YY_START_STACK_INCR;
  2114. new_size = yy_start_stack_depth * sizeof( int );
  2115. if ( ! yy_start_stack )
  2116. yy_start_stack = (int *) yy_flex_alloc( new_size );
  2117. else
  2118. yy_start_stack = (int *) yy_flex_realloc(
  2119. (void *) yy_start_stack, new_size );
  2120. if ( ! yy_start_stack )
  2121. YY_FATAL_ERROR(
  2122. "out of memory expanding start-condition stack" );
  2123. }
  2124. yy_start_stack[yy_start_stack_ptr++] = YY_START;
  2125. BEGIN(new_state);
  2126. }
  2127. #endif
  2128. #ifndef YY_NO_POP_STATE
  2129. static void yy_pop_state()
  2130. {
  2131. if ( --yy_start_stack_ptr < 0 )
  2132. YY_FATAL_ERROR( "start-condition stack underflow" );
  2133. BEGIN(yy_start_stack[yy_start_stack_ptr]);
  2134. }
  2135. #endif
  2136. #ifndef YY_NO_TOP_STATE
  2137. static int yy_top_state()
  2138. {
  2139. return yy_start_stack[yy_start_stack_ptr - 1];
  2140. }
  2141. #endif
  2142. #ifndef YY_EXIT_FAILURE
  2143. #define YY_EXIT_FAILURE 2
  2144. #endif
  2145. #ifdef YY_USE_PROTOS
  2146. static void yy_fatal_error( yyconst char msg[] )
  2147. #else
  2148. static void yy_fatal_error( msg )
  2149. char msg[];
  2150. #endif
  2151. {
  2152. (void) fprintf( stderr, "%sn", msg );
  2153. exit( YY_EXIT_FAILURE );
  2154. }
  2155. /* Redefine yyless() so it works in section 3 code. */
  2156. #undef yyless
  2157. #define yyless(n) 
  2158. do 
  2159. /* Undo effects of setting up yytext. */ 
  2160. yytext[yyleng] = yy_hold_char; 
  2161. yy_c_buf_p = yytext + n; 
  2162. yy_hold_char = *yy_c_buf_p; 
  2163. *yy_c_buf_p = ''; 
  2164. yyleng = n; 
  2165. while ( 0 )
  2166. /* Internal utility routines. */
  2167. #ifndef yytext_ptr
  2168. #ifdef YY_USE_PROTOS
  2169. static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
  2170. #else
  2171. static void yy_flex_strncpy( s1, s2, n )
  2172. char *s1;
  2173. yyconst char *s2;
  2174. int n;
  2175. #endif
  2176. {
  2177. register int i;
  2178. for ( i = 0; i < n; ++i )
  2179. s1[i] = s2[i];
  2180. }
  2181. #endif
  2182. #ifdef YY_NEED_STRLEN
  2183. #ifdef YY_USE_PROTOS
  2184. static int yy_flex_strlen( yyconst char *s )
  2185. #else
  2186. static int yy_flex_strlen( s )
  2187. yyconst char *s;
  2188. #endif
  2189. {
  2190. register int n;
  2191. for ( n = 0; s[n]; ++n )
  2192. ;
  2193. return n;
  2194. }
  2195. #endif
  2196. #ifdef YY_USE_PROTOS
  2197. static void *yy_flex_alloc( yy_size_t size )
  2198. #else
  2199. static void *yy_flex_alloc( size )
  2200. yy_size_t size;
  2201. #endif
  2202. {
  2203. return (void *) malloc( size );
  2204. }
  2205. #ifdef YY_USE_PROTOS
  2206. static void *yy_flex_realloc( void *ptr, yy_size_t size )
  2207. #else
  2208. static void *yy_flex_realloc( ptr, size )
  2209. void *ptr;
  2210. yy_size_t size;
  2211. #endif
  2212. {
  2213. /* The cast to (char *) in the following accommodates both
  2214.  * implementations that use char* generic pointers, and those
  2215.  * that use void* generic pointers.  It works with the latter
  2216.  * because both ANSI C and C++ allow castless assignment from
  2217.  * any pointer type to void*, and deal with argument conversions
  2218.  * as though doing an assignment.
  2219.  */
  2220. return (void *) realloc( (char *) ptr, size );
  2221. }
  2222. #ifdef YY_USE_PROTOS
  2223. static void yy_flex_free( void *ptr )
  2224. #else
  2225. static void yy_flex_free( ptr )
  2226. void *ptr;
  2227. #endif
  2228. {
  2229. free( ptr );
  2230. }
  2231. #if YY_MAIN
  2232. int main()
  2233. {
  2234. yylex();
  2235. return 0;
  2236. }
  2237. #endif
  2238. #line 575 "pars0lex.l"