Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e3d753ab
Commit
e3d753ab
authored
Feb 16, 2006
by
osku
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for BINARY(n) and BLOB types in the InnoDB SQL parser.
parent
87839def
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
3725 additions
and
2765 deletions
+3725
-2765
include/pars0grm.h
include/pars0grm.h
+216
-86
include/pars0pars.h
include/pars0pars.h
+9
-4
pars/lexyy.c
pars/lexyy.c
+1094
-1052
pars/pars0grm.c
pars/pars0grm.c
+2126
-1524
pars/pars0grm.h
pars/pars0grm.h
+216
-86
pars/pars0grm.y
pars/pars0grm.y
+11
-1
pars/pars0lex.l
pars/pars0lex.l
+11
-4
pars/pars0pars.c
pars/pars0pars.c
+42
-8
No files found.
include/pars0grm.h
View file @
e3d753ab
#ifndef YYSTYPE
/* A Bison parser, made by GNU Bison 1.875d. */
#define YYSTYPE int
/* Skeleton parser for Yacc-like parsing with Bison,
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum
yytokentype
{
PARS_INT_LIT
=
258
,
PARS_FLOAT_LIT
=
259
,
PARS_STR_LIT
=
260
,
PARS_NULL_LIT
=
261
,
PARS_ID_TOKEN
=
262
,
PARS_AND_TOKEN
=
263
,
PARS_OR_TOKEN
=
264
,
PARS_NOT_TOKEN
=
265
,
PARS_GE_TOKEN
=
266
,
PARS_LE_TOKEN
=
267
,
PARS_NE_TOKEN
=
268
,
PARS_PROCEDURE_TOKEN
=
269
,
PARS_IN_TOKEN
=
270
,
PARS_OUT_TOKEN
=
271
,
PARS_BINARY_TOKEN
=
272
,
PARS_BLOB_TOKEN
=
273
,
PARS_INT_TOKEN
=
274
,
PARS_INTEGER_TOKEN
=
275
,
PARS_FLOAT_TOKEN
=
276
,
PARS_CHAR_TOKEN
=
277
,
PARS_IS_TOKEN
=
278
,
PARS_BEGIN_TOKEN
=
279
,
PARS_END_TOKEN
=
280
,
PARS_IF_TOKEN
=
281
,
PARS_THEN_TOKEN
=
282
,
PARS_ELSE_TOKEN
=
283
,
PARS_ELSIF_TOKEN
=
284
,
PARS_LOOP_TOKEN
=
285
,
PARS_WHILE_TOKEN
=
286
,
PARS_RETURN_TOKEN
=
287
,
PARS_SELECT_TOKEN
=
288
,
PARS_SUM_TOKEN
=
289
,
PARS_COUNT_TOKEN
=
290
,
PARS_DISTINCT_TOKEN
=
291
,
PARS_FROM_TOKEN
=
292
,
PARS_WHERE_TOKEN
=
293
,
PARS_FOR_TOKEN
=
294
,
PARS_DDOT_TOKEN
=
295
,
PARS_CONSISTENT_TOKEN
=
296
,
PARS_READ_TOKEN
=
297
,
PARS_ORDER_TOKEN
=
298
,
PARS_BY_TOKEN
=
299
,
PARS_ASC_TOKEN
=
300
,
PARS_DESC_TOKEN
=
301
,
PARS_INSERT_TOKEN
=
302
,
PARS_INTO_TOKEN
=
303
,
PARS_VALUES_TOKEN
=
304
,
PARS_UPDATE_TOKEN
=
305
,
PARS_SET_TOKEN
=
306
,
PARS_DELETE_TOKEN
=
307
,
PARS_CURRENT_TOKEN
=
308
,
PARS_OF_TOKEN
=
309
,
PARS_CREATE_TOKEN
=
310
,
PARS_TABLE_TOKEN
=
311
,
PARS_INDEX_TOKEN
=
312
,
PARS_UNIQUE_TOKEN
=
313
,
PARS_CLUSTERED_TOKEN
=
314
,
PARS_DOES_NOT_FIT_IN_MEM_TOKEN
=
315
,
PARS_ON_TOKEN
=
316
,
PARS_ASSIGN_TOKEN
=
317
,
PARS_DECLARE_TOKEN
=
318
,
PARS_CURSOR_TOKEN
=
319
,
PARS_SQL_TOKEN
=
320
,
PARS_OPEN_TOKEN
=
321
,
PARS_FETCH_TOKEN
=
322
,
PARS_CLOSE_TOKEN
=
323
,
PARS_NOTFOUND_TOKEN
=
324
,
PARS_TO_CHAR_TOKEN
=
325
,
PARS_TO_NUMBER_TOKEN
=
326
,
PARS_TO_BINARY_TOKEN
=
327
,
PARS_BINARY_TO_NUMBER_TOKEN
=
328
,
PARS_SUBSTR_TOKEN
=
329
,
PARS_REPLSTR_TOKEN
=
330
,
PARS_CONCAT_TOKEN
=
331
,
PARS_INSTR_TOKEN
=
332
,
PARS_LENGTH_TOKEN
=
333
,
PARS_SYSDATE_TOKEN
=
334
,
PARS_PRINTF_TOKEN
=
335
,
PARS_ASSERT_TOKEN
=
336
,
PARS_RND_TOKEN
=
337
,
PARS_RND_STR_TOKEN
=
338
,
PARS_ROW_PRINTF_TOKEN
=
339
,
PARS_COMMIT_TOKEN
=
340
,
PARS_ROLLBACK_TOKEN
=
341
,
PARS_WORK_TOKEN
=
342
,
NEG
=
343
};
#endif
#endif
#define PARS_INT_LIT 257
#define PARS_INT_LIT 258
#define PARS_FLOAT_LIT 258
#define PARS_FLOAT_LIT 259
#define PARS_STR_LIT 259
#define PARS_STR_LIT 260
#define PARS_NULL_LIT 260
#define PARS_NULL_LIT 261
#define PARS_ID_TOKEN 261
#define PARS_ID_TOKEN 262
#define PARS_AND_TOKEN 262
#define PARS_AND_TOKEN 263
#define PARS_OR_TOKEN 263
#define PARS_OR_TOKEN 264
#define PARS_NOT_TOKEN 264
#define PARS_NOT_TOKEN 265
#define PARS_GE_TOKEN 265
#define PARS_GE_TOKEN 266
#define PARS_LE_TOKEN 266
#define PARS_LE_TOKEN 267
#define PARS_NE_TOKEN 267
#define PARS_NE_TOKEN 268
#define PARS_PROCEDURE_TOKEN 268
#define PARS_PROCEDURE_TOKEN 269
#define PARS_IN_TOKEN 269
#define PARS_IN_TOKEN 270
#define PARS_OUT_TOKEN 270
#define PARS_OUT_TOKEN 271
#define PARS_INT_TOKEN 271
#define PARS_BINARY_TOKEN 272
#define PARS_INTEGER_TOKEN 272
#define PARS_BLOB_TOKEN 273
#define PARS_FLOAT_TOKEN 273
#define PARS_INT_TOKEN 274
#define PARS_CHAR_TOKEN 274
#define PARS_INTEGER_TOKEN 275
#define PARS_IS_TOKEN 275
#define PARS_FLOAT_TOKEN 276
#define PARS_BEGIN_TOKEN 276
#define PARS_CHAR_TOKEN 277
#define PARS_END_TOKEN 277
#define PARS_IS_TOKEN 278
#define PARS_IF_TOKEN 278
#define PARS_BEGIN_TOKEN 279
#define PARS_THEN_TOKEN 279
#define PARS_END_TOKEN 280
#define PARS_ELSE_TOKEN 280
#define PARS_IF_TOKEN 281
#define PARS_ELSIF_TOKEN 281
#define PARS_THEN_TOKEN 282
#define PARS_LOOP_TOKEN 282
#define PARS_ELSE_TOKEN 283
#define PARS_WHILE_TOKEN 283
#define PARS_ELSIF_TOKEN 284
#define PARS_RETURN_TOKEN 284
#define PARS_LOOP_TOKEN 285
#define PARS_SELECT_TOKEN 285
#define PARS_WHILE_TOKEN 286
#define PARS_SUM_TOKEN 286
#define PARS_RETURN_TOKEN 287
#define PARS_COUNT_TOKEN 287
#define PARS_SELECT_TOKEN 288
#define PARS_DISTINCT_TOKEN 288
#define PARS_SUM_TOKEN 289
#define PARS_FROM_TOKEN 289
#define PARS_COUNT_TOKEN 290
#define PARS_WHERE_TOKEN 290
#define PARS_DISTINCT_TOKEN 291
#define PARS_FOR_TOKEN 291
#define PARS_FROM_TOKEN 292
#define PARS_DDOT_TOKEN 292
#define PARS_WHERE_TOKEN 293
#define PARS_CONSISTENT_TOKEN 293
#define PARS_FOR_TOKEN 294
#define PARS_READ_TOKEN 294
#define PARS_DDOT_TOKEN 295
#define PARS_ORDER_TOKEN 295
#define PARS_CONSISTENT_TOKEN 296
#define PARS_BY_TOKEN 296
#define PARS_READ_TOKEN 297
#define PARS_ASC_TOKEN 297
#define PARS_ORDER_TOKEN 298
#define PARS_DESC_TOKEN 298
#define PARS_BY_TOKEN 299
#define PARS_INSERT_TOKEN 299
#define PARS_ASC_TOKEN 300
#define PARS_INTO_TOKEN 300
#define PARS_DESC_TOKEN 301
#define PARS_VALUES_TOKEN 301
#define PARS_INSERT_TOKEN 302
#define PARS_UPDATE_TOKEN 302
#define PARS_INTO_TOKEN 303
#define PARS_SET_TOKEN 303
#define PARS_VALUES_TOKEN 304
#define PARS_DELETE_TOKEN 304
#define PARS_UPDATE_TOKEN 305
#define PARS_CURRENT_TOKEN 305
#define PARS_SET_TOKEN 306
#define PARS_OF_TOKEN 306
#define PARS_DELETE_TOKEN 307
#define PARS_CREATE_TOKEN 307
#define PARS_CURRENT_TOKEN 308
#define PARS_TABLE_TOKEN 308
#define PARS_OF_TOKEN 309
#define PARS_INDEX_TOKEN 309
#define PARS_CREATE_TOKEN 310
#define PARS_UNIQUE_TOKEN 310
#define PARS_TABLE_TOKEN 311
#define PARS_CLUSTERED_TOKEN 311
#define PARS_INDEX_TOKEN 312
#define PARS_DOES_NOT_FIT_IN_MEM_TOKEN 312
#define PARS_UNIQUE_TOKEN 313
#define PARS_ON_TOKEN 313
#define PARS_CLUSTERED_TOKEN 314
#define PARS_ASSIGN_TOKEN 314
#define PARS_DOES_NOT_FIT_IN_MEM_TOKEN 315
#define PARS_DECLARE_TOKEN 315
#define PARS_ON_TOKEN 316
#define PARS_CURSOR_TOKEN 316
#define PARS_ASSIGN_TOKEN 317
#define PARS_SQL_TOKEN 317
#define PARS_DECLARE_TOKEN 318
#define PARS_OPEN_TOKEN 318
#define PARS_CURSOR_TOKEN 319
#define PARS_FETCH_TOKEN 319
#define PARS_SQL_TOKEN 320
#define PARS_CLOSE_TOKEN 320
#define PARS_OPEN_TOKEN 321
#define PARS_NOTFOUND_TOKEN 321
#define PARS_FETCH_TOKEN 322
#define PARS_TO_CHAR_TOKEN 322
#define PARS_CLOSE_TOKEN 323
#define PARS_TO_NUMBER_TOKEN 323
#define PARS_NOTFOUND_TOKEN 324
#define PARS_TO_BINARY_TOKEN 324
#define PARS_TO_CHAR_TOKEN 325
#define PARS_BINARY_TO_NUMBER_TOKEN 325
#define PARS_TO_NUMBER_TOKEN 326
#define PARS_SUBSTR_TOKEN 326
#define PARS_TO_BINARY_TOKEN 327
#define PARS_REPLSTR_TOKEN 327
#define PARS_BINARY_TO_NUMBER_TOKEN 328
#define PARS_CONCAT_TOKEN 328
#define PARS_SUBSTR_TOKEN 329
#define PARS_INSTR_TOKEN 329
#define PARS_REPLSTR_TOKEN 330
#define PARS_LENGTH_TOKEN 330
#define PARS_CONCAT_TOKEN 331
#define PARS_SYSDATE_TOKEN 331
#define PARS_INSTR_TOKEN 332
#define PARS_PRINTF_TOKEN 332
#define PARS_LENGTH_TOKEN 333
#define PARS_ASSERT_TOKEN 333
#define PARS_SYSDATE_TOKEN 334
#define PARS_RND_TOKEN 334
#define PARS_PRINTF_TOKEN 335
#define PARS_RND_STR_TOKEN 335
#define PARS_ASSERT_TOKEN 336
#define PARS_ROW_PRINTF_TOKEN 336
#define PARS_RND_TOKEN 337
#define PARS_COMMIT_TOKEN 337
#define PARS_RND_STR_TOKEN 338
#define PARS_ROLLBACK_TOKEN 338
#define PARS_ROW_PRINTF_TOKEN 339
#define PARS_WORK_TOKEN 339
#define PARS_COMMIT_TOKEN 340
#define NEG 340
#define PARS_ROLLBACK_TOKEN 341
#define PARS_WORK_TOKEN 342
#define NEG 343
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
typedef
int
YYSTYPE
;
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
extern
YYSTYPE
yylval
;
extern
YYSTYPE
yylval
;
include/pars0pars.h
View file @
e3d753ab
...
@@ -46,6 +46,8 @@ extern pars_res_word_t pars_rnd_str_token;
...
@@ -46,6 +46,8 @@ extern pars_res_word_t pars_rnd_str_token;
extern
pars_res_word_t
pars_count_token
;
extern
pars_res_word_t
pars_count_token
;
extern
pars_res_word_t
pars_sum_token
;
extern
pars_res_word_t
pars_sum_token
;
extern
pars_res_word_t
pars_distinct_token
;
extern
pars_res_word_t
pars_distinct_token
;
extern
pars_res_word_t
pars_binary_token
;
extern
pars_res_word_t
pars_blob_token
;
extern
pars_res_word_t
pars_int_token
;
extern
pars_res_word_t
pars_int_token
;
extern
pars_res_word_t
pars_char_token
;
extern
pars_res_word_t
pars_char_token
;
extern
pars_res_word_t
pars_float_token
;
extern
pars_res_word_t
pars_float_token
;
...
@@ -336,10 +338,13 @@ Parses a column definition at a table creation. */
...
@@ -336,10 +338,13 @@ Parses a column definition at a table creation. */
sym_node_t
*
sym_node_t
*
pars_column_def
(
pars_column_def
(
/*============*/
/*============*/
/* out: column sym table node */
/* out: column sym table
sym_node_t
*
sym_node
,
/* in: column node in the symbol
node */
table */
sym_node_t
*
sym_node
,
/* in: column node in the
pars_res_word_t
*
type
);
/* in: data type */
symbol table */
pars_res_word_t
*
type
,
/* in: data type */
sym_node_t
*
len
);
/* in: length of column, or
NULL */
/*************************************************************************
/*************************************************************************
Parses a table creation operation. */
Parses a table creation operation. */
...
...
pars/lexyy.c
View file @
e3d753ab
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
#line 3 "lex.yy.c"
* $Header: /home/heikki/cvsroot/ib/pars/lexyy.c,v 1.2 2003/10/30 20:27:19 heikki Exp $
*/
/* This include MUST be first to keep things portable ! */
#include "univ.i"
#include "univ.i"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 31
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
/* flex integer type definitions */
#ifdef c_plusplus
#ifndef __cplusplus
#ifndef FLEXINT_H
#define __cplusplus
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
#include <inttypes.h>
typedef
int8_t
flex_int8_t
;
typedef
uint8_t
flex_uint8_t
;
typedef
int16_t
flex_int16_t
;
typedef
uint16_t
flex_uint16_t
;
typedef
int32_t
flex_int32_t
;
typedef
uint32_t
flex_uint32_t
;
#else
typedef
signed
char
flex_int8_t
;
typedef
short
int
flex_int16_t
;
typedef
int
flex_int32_t
;
typedef
unsigned
char
flex_uint8_t
;
typedef
unsigned
short
int
flex_uint16_t
;
typedef
unsigned
int
flex_uint32_t
;
#endif
/* ! C99 */
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif
#endif
/* ! FLEXINT_H */
#ifdef __cplusplus
#ifdef __cplusplus
#include <stdlib.h>
/* Use prototypes in function declarations. */
#define YY_USE_PROTOS
/* The "const" storage-class-modifier is valid. */
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#define YY_USE_CONST
...
@@ -36,34 +89,17 @@
...
@@ -36,34 +89,17 @@
#if __STDC__
#if __STDC__
#define YY_USE_PROTOS
#define YY_USE_CONST
#define YY_USE_CONST
#endif
/* __STDC__ */
#endif
/* __STDC__ */
#endif
/* ! __cplusplus */
#endif
/* ! __cplusplus */
#ifdef __TURBOC__
#pragma warn -rch
#pragma warn -use
#include <io.h>
#include <stdlib.h>
#define YY_USE_CONST
#define YY_USE_PROTOS
#endif
#ifdef YY_USE_CONST
#ifdef YY_USE_CONST
#define yyconst const
#define yyconst const
#else
#else
#define yyconst
#define yyconst
#endif
#endif
#ifdef YY_USE_PROTOS
#define YY_PROTO(proto) proto
#else
#define YY_PROTO(proto) ()
#endif
/* Returned upon end-of-file. */
/* Returned upon end-of-file. */
#define YY_NULL 0
#define YY_NULL 0
...
@@ -78,71 +114,71 @@
...
@@ -78,71 +114,71 @@
* but we do it the disgusting crufty way forced on us by the ()-less
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
* definition of BEGIN.
*/
*/
#define BEGIN
yy_start
= 1 + 2 *
#define BEGIN
(yy_start)
= 1 + 2 *
/* Translate the current start state into a value that can be later handed
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
* compatibility.
*/
*/
#define YY_START ((
yy_start
- 1) / 2)
#define YY_START ((
(yy_start)
- 1) / 2)
#define YYSTATE YY_START
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(
yyin
)
#define YY_NEW_FILE yyrestart(
yyin
)
#define YY_END_OF_BUFFER_CHAR 0
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#define YY_BUF_SIZE 16384
#endif
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef
struct
yy_buffer_state
*
YY_BUFFER_STATE
;
typedef
struct
yy_buffer_state
*
YY_BUFFER_STATE
;
#endif
extern
int
yyleng
;
extern
int
yyleng
;
extern
FILE
*
yyin
,
*
yyout
;
extern
FILE
*
yyin
,
*
yyout
;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define EOB_ACT_LAST_MATCH 2
/* The funky do-while in the following #define is used to turn the definition
#define YY_LESS_LINENO(n)
* int a single C statement (which needs a semi-colon terminator). This
* avoids problems with code like:
/* Return all but the first "n" matched characters back to the input stream. */
*
* if ( condition_holds )
* yyless( 5 );
* else
* do_something_else();
*
* Prior to using the do-while the compiler would get upset at the
* "else" because it interpreted the "if" statement as being all
* done when it reached the ';' after the yyless() call.
*/
/* Return all but the first 'n' matched characters back to the input stream. */
#define yyless(n) \
#define yyless(n) \
do \
do \
{ \
{ \
/* Undo effects of setting up yytext. */
\
/* Undo effects of setting up yytext. */
\
*yy_cp = yy_hold_char; \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = (yy_hold_char); \
YY_RESTORE_YY_MORE_OFFSET \
YY_RESTORE_YY_MORE_OFFSET \
yy_c_buf_p = yy_cp = yy_bp + n
- YY_MORE_ADJ; \
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg
- YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION;
/* set up yytext again */
\
YY_DO_BEFORE_ACTION;
/* set up yytext again */
\
} \
} \
while ( 0 )
while ( 0 )
#define unput(c) yyunput( c,
yytext_ptr
)
#define unput(c) yyunput( c,
(yytext_ptr)
)
/* The following is because we cannot portably get our hands on size_t
/* The following is because we cannot portably get our hands on size_t
* (without autoconf's help, which isn't available because we want
* (without autoconf's help, which isn't available because we want
* flex-generated scanners to compile on their own).
* flex-generated scanners to compile on their own).
*/
*/
typedef
unsigned
int
yy_size_t
;
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef
unsigned
int
yy_size_t
;
#endif
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct
yy_buffer_state
struct
yy_buffer_state
{
{
FILE
*
yy_input_file
;
FILE
*
yy_input_file
;
...
@@ -179,12 +215,16 @@ struct yy_buffer_state
...
@@ -179,12 +215,16 @@ struct yy_buffer_state
*/
*/
int
yy_at_bol
;
int
yy_at_bol
;
int
yy_bs_lineno
;
/**< The line count. */
int
yy_bs_column
;
/**< The column count. */
/* Whether to try to fill the input buffer when we reach the
/* Whether to try to fill the input buffer when we reach the
* end of it.
* end of it.
*/
*/
int
yy_fill_buffer
;
int
yy_fill_buffer
;
int
yy_buffer_status
;
int
yy_buffer_status
;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
/* When an EOF's been seen but there's still some text to process
...
@@ -198,23 +238,33 @@ struct yy_buffer_state
...
@@ -198,23 +238,33 @@ struct yy_buffer_state
* just pointing yyin at a new input file.
* just pointing yyin at a new input file.
*/
*/
#define YY_BUFFER_EOF_PENDING 2
#define YY_BUFFER_EOF_PENDING 2
};
};
#endif
/* !YY_STRUCT_YY_BUFFER_STATE */
static
YY_BUFFER_STATE
yy_current_buffer
=
0
;
/* Stack of input buffers. */
static
size_t
yy_buffer_stack_top
=
0
;
/**< index of top of stack. */
static
size_t
yy_buffer_stack_max
=
0
;
/**< capacity of stack. */
static
YY_BUFFER_STATE
*
yy_buffer_stack
=
0
;
/**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* future we want to put the buffer states in a more general
* "scanner state".
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
*/
#define YY_CURRENT_BUFFER yy_current_buffer
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when yytext is formed. */
/* yy_hold_char holds the character lost when yytext is formed. */
static
char
yy_hold_char
;
static
char
yy_hold_char
;
static
int
yy_n_chars
;
/* number of characters read into yy_ch_buf */
static
int
yy_n_chars
;
/* number of characters read into yy_ch_buf */
int
yyleng
;
int
yyleng
;
/* Points to current character in buffer. */
/* Points to current character in buffer. */
...
@@ -227,113 +277,139 @@ static int yy_start = 0; /* start state number */
...
@@ -227,113 +277,139 @@ static int yy_start = 0; /* start state number */
*/
*/
static
int
yy_did_buffer_switch_on_eof
;
static
int
yy_did_buffer_switch_on_eof
;
void
yyrestart
YY_PROTO
((
FILE
*
input_file
));
void
yyrestart
(
FILE
*
input_file
);
void
yy_switch_to_buffer
(
YY_BUFFER_STATE
new_buffer
);
YY_BUFFER_STATE
yy_create_buffer
(
FILE
*
file
,
int
size
);
void
yy_delete_buffer
(
YY_BUFFER_STATE
b
);
void
yy_flush_buffer
(
YY_BUFFER_STATE
b
);
void
yypush_buffer_state
(
YY_BUFFER_STATE
new_buffer
);
void
yypop_buffer_state
(
void
);
static
void
yyensure_buffer_stack
(
void
);
static
void
yy_load_buffer_state
(
void
);
static
void
yy_init_buffer
(
YY_BUFFER_STATE
b
,
FILE
*
file
);
void
yy_switch_to_buffer
YY_PROTO
((
YY_BUFFER_STATE
new_buffer
));
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
void
yy_load_buffer_state
YY_PROTO
((
void
));
YY_BUFFER_STATE
yy_create_buffer
YY_PROTO
((
FILE
*
file
,
int
size
));
void
yy_delete_buffer
YY_PROTO
((
YY_BUFFER_STATE
b
));
void
yy_init_buffer
YY_PROTO
((
YY_BUFFER_STATE
b
,
FILE
*
file
));
void
yy_flush_buffer
YY_PROTO
((
YY_BUFFER_STATE
b
));
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
YY_BUFFER_STATE
yy_scan_buffer
YY_PROTO
((
char
*
base
,
yy_size_t
size
)
);
YY_BUFFER_STATE
yy_scan_buffer
(
char
*
base
,
yy_size_t
size
);
YY_BUFFER_STATE
yy_scan_string
YY_PROTO
((
yyconst
char
*
yy_str
)
);
YY_BUFFER_STATE
yy_scan_string
(
yyconst
char
*
yy_str
);
YY_BUFFER_STATE
yy_scan_bytes
YY_PROTO
((
yyconst
char
*
bytes
,
int
len
)
);
YY_BUFFER_STATE
yy_scan_bytes
(
yyconst
char
*
bytes
,
int
len
);
static
void
*
yy_flex_alloc
YY_PROTO
((
yy_size_t
)
);
void
*
yyalloc
(
yy_size_t
);
static
void
*
yy_flex_realloc
YY_PROTO
((
void
*
,
yy_size_t
)
);
void
*
yyrealloc
(
void
*
,
yy_size_t
);
static
void
yy_flex_free
YY_PROTO
((
void
*
)
);
void
yyfree
(
void
*
);
#define yy_new_buffer yy_create_buffer
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
#define yy_set_interactive(is_interactive) \
{ \
{ \
if ( ! yy_current_buffer ) \
if ( ! YY_CURRENT_BUFFER ){ \
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
yyensure_buffer_stack (); \
yy_current_buffer->yy_is_interactive = is_interactive; \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
}
#define yy_set_bol(at_bol) \
#define yy_set_bol(at_bol) \
{ \
{ \
if ( ! yy_current_buffer ) \
if ( ! YY_CURRENT_BUFFER ){\
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
yyensure_buffer_stack (); \
yy_current_buffer->yy_at_bol = at_bol; \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
}
#define YY_AT_BOL() (
yy_current_buffer
->yy_at_bol)
#define YY_AT_BOL() (
YY_CURRENT_BUFFER_LVALUE
->yy_at_bol)
/* Begin user sect3 */
#define yywrap() 1
#define yywrap(
n
) 1
#define YY_SKIP_YYWRAP
#define YY_SKIP_YYWRAP
typedef
unsigned
char
YY_CHAR
;
typedef
unsigned
char
YY_CHAR
;
FILE
*
yyin
=
(
FILE
*
)
0
,
*
yyout
=
(
FILE
*
)
0
;
FILE
*
yyin
=
(
FILE
*
)
0
,
*
yyout
=
(
FILE
*
)
0
;
typedef
int
yy_state_type
;
typedef
int
yy_state_type
;
extern
int
yylineno
;
int
yylineno
=
1
;
extern
char
*
yytext
;
extern
char
*
yytext
;
#define yytext_ptr yytext
#define yytext_ptr yytext
static
yy_state_type
yy_get_previous_state
YY_PROTO
((
void
)
);
static
yy_state_type
yy_get_previous_state
(
void
);
static
yy_state_type
yy_try_NUL_trans
YY_PROTO
((
yy_state_type
current_state
)
);
static
yy_state_type
yy_try_NUL_trans
(
yy_state_type
current_state
);
static
int
yy_get_next_buffer
YY_PROTO
((
void
)
);
static
int
yy_get_next_buffer
(
void
);
static
void
yy_fatal_error
YY_PROTO
((
yyconst
char
msg
[]
)
);
static
void
yy_fatal_error
(
yyconst
char
msg
[]
);
/* Done after the current pattern has been matched and before the
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
* corresponding action - sets up yytext.
*/
*/
#define YY_DO_BEFORE_ACTION \
#define YY_DO_BEFORE_ACTION \
yytext_ptr
= yy_bp; \
(yytext_ptr)
= yy_bp; \
yyleng = (
in
t) (yy_cp - yy_bp); \
yyleng = (
size_
t) (yy_cp - yy_bp); \
yy_hold_char
= *yy_cp; \
(yy_hold_char)
= *yy_cp; \
*yy_cp = '\0'; \
*yy_cp = '\0'; \
yy_c_buf_p
= yy_cp;
(yy_c_buf_p)
= yy_cp;
#define YY_NUM_RULES 107
#define YY_NUM_RULES 109
#define YY_END_OF_BUFFER 108
#define YY_END_OF_BUFFER 110
static
yyconst
short
int
yy_accept
[
367
]
=
/* This struct is not used in this scanner,
but its presence is necessary. */
struct
yy_trans_info
{
flex_int32_t
yy_verify
;
flex_int32_t
yy_nxt
;
};
static
yyconst
flex_int16_t
yy_accept
[
370
]
=
{
0
,
{
0
,
0
,
0
,
10
2
,
102
,
0
,
0
,
108
,
106
,
105
,
105
,
0
,
0
,
10
4
,
104
,
0
,
0
,
110
,
108
,
107
,
107
,
9
7
,
3
,
86
,
92
,
95
,
93
,
90
,
94
,
106
,
96
,
9
9
,
3
,
88
,
94
,
97
,
95
,
92
,
96
,
108
,
98
,
1
,
10
6
,
91
,
89
,
87
,
88
,
100
,
80
,
80
,
80
,
1
,
10
8
,
93
,
91
,
89
,
90
,
102
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
98
,
99
,
102
,
103
,
4
,
8
2
,
82
,
82
,
82
,
82
,
100
,
101
,
104
,
105
,
4
,
5
,
10
5
,
81
,
101
,
2
,
1
,
82
,
83
,
85
,
84
,
5
,
10
7
,
83
,
103
,
2
,
1
,
84
,
85
,
87
,
86
,
8
0
,
80
,
80
,
80
,
80
,
38
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
40
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
21
,
12
,
18
,
80
,
80
,
80
,
80
,
48
,
55
,
80
,
82
,
23
,
12
,
20
,
82
,
82
,
82
,
82
,
50
,
57
,
9
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
82
,
9
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
102
,
103
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
104
,
10
3
,
104
,
4
,
5
,
2
,
8
,
39
,
80
,
80
,
80
,
10
5
,
105
,
106
,
4
,
5
,
2
,
8
,
41
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
20
,
80
,
80
,
34
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
22
,
82
,
82
,
36
,
8
0
,
14
,
80
,
80
,
10
,
80
,
80
,
80
,
13
,
80
,
8
2
,
82
,
82
,
16
,
82
,
82
,
10
,
82
,
82
,
82
,
80
,
80
,
80
,
80
,
74
,
80
,
80
,
80
,
45
,
7
,
13
,
82
,
82
,
82
,
82
,
82
,
76
,
82
,
82
,
82
,
80
,
29
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
47
,
7
,
82
,
31
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
17
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
15
,
19
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
40
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
23
,
80
,
80
,
80
,
32
,
80
,
80
,
80
,
80
,
4
2
,
42
,
82
,
82
,
25
,
82
,
82
,
82
,
34
,
82
,
8
2
,
8
0
,
25
,
80
,
6
,
58
,
80
,
80
,
80
,
36
,
80
,
8
2
,
82
,
44
,
82
,
27
,
82
,
6
,
60
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
80
,
22
,
80
,
8
2
,
38
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
79
,
80
,
19
,
8
2
,
24
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
8
0
,
60
,
80
,
80
,
80
,
80
,
30
,
80
,
80
,
80
,
8
1
,
82
,
21
,
82
,
62
,
82
,
82
,
82
,
82
,
32
,
8
0
,
80
,
80
,
80
,
24
,
59
,
16
,
51
,
80
,
69
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
26
,
61
,
18
,
80
,
80
,
80
,
37
,
80
,
80
,
80
,
80
,
80
,
80
,
53
,
82
,
71
,
82
,
82
,
82
,
39
,
82
,
82
,
82
,
8
0
,
80
,
80
,
80
,
50
,
80
,
80
,
80
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
52
,
82
,
82
,
8
0
,
33
,
26
,
73
,
80
,
80
,
77
,
68
,
80
,
4
9
,
8
2
,
82
,
82
,
82
,
35
,
28
,
75
,
14
,
82
,
7
9
,
80
,
57
,
80
,
46
,
80
,
80
,
41
,
80
,
70
,
80
,
70
,
82
,
51
,
82
,
59
,
82
,
48
,
82
,
82
,
43
,
72
,
80
,
80
,
27
,
80
,
80
,
80
,
28
,
66
,
80
,
82
,
72
,
82
,
74
,
82
,
82
,
29
,
82
,
82
,
82
,
80
,
80
,
80
,
52
,
44
,
43
,
80
,
80
,
80
,
47
,
30
,
68
,
82
,
82
,
82
,
82
,
54
,
46
,
45
,
82
,
56
,
80
,
80
,
15
,
80
,
80
,
67
,
75
,
80
,
80
,
82
,
82
,
49
,
58
,
82
,
82
,
17
,
82
,
82
,
69
,
7
1
,
80
,
62
,
80
,
80
,
80
,
80
,
31
,
80
,
61
,
7
7
,
82
,
82
,
73
,
82
,
64
,
82
,
82
,
82
,
82
,
80
,
78
,
80
,
80
,
80
,
80
,
53
,
80
,
80
,
11
,
33
,
82
,
63
,
82
,
80
,
82
,
82
,
82
,
82
,
55
,
8
0
,
64
,
63
,
80
,
35
,
80
,
76
,
80
,
80
,
80
,
8
2
,
82
,
11
,
82
,
66
,
65
,
82
,
37
,
82
,
78
,
8
0
,
80
,
80
,
80
,
80
,
80
,
80
,
65
,
80
,
80
,
8
2
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
82
,
80
,
80
,
80
,
80
,
54
,
0
67
,
82
,
82
,
82
,
82
,
82
,
82
,
56
,
0
}
;
}
;
static
yyconst
in
t
yy_ec
[
256
]
=
static
yyconst
flex_int32_
t
yy_ec
[
256
]
=
{
0
,
{
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
...
@@ -365,7 +441,7 @@ static yyconst int yy_ec[256] =
...
@@ -365,7 +441,7 @@ static yyconst int yy_ec[256] =
1
,
1
,
1
,
1
,
1
1
,
1
,
1
,
1
,
1
}
;
}
;
static
yyconst
in
t
yy_meta
[
49
]
=
static
yyconst
flex_int32_
t
yy_meta
[
49
]
=
{
0
,
{
0
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
1
,
2
,
1
,
1
,
3
,
1
,
1
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
4
,
1
,
1
,
1
,
1
,
1
,
1
,
...
@@ -374,150 +450,150 @@ static yyconst int yy_meta[49] =
...
@@ -374,150 +450,150 @@ static yyconst int yy_meta[49] =
4
,
4
,
4
,
4
,
4
,
4
,
1
,
1
4
,
4
,
4
,
4
,
4
,
4
,
1
,
1
}
;
}
;
static
yyconst
short
int
yy_base
[
373
]
=
static
yyconst
flex_int16_t
yy_base
[
376
]
=
{
0
,
{
0
,
0
,
0
,
3
87
,
386
,
388
,
387
,
391
,
396
,
47
,
49
,
0
,
0
,
3
90
,
389
,
391
,
390
,
394
,
399
,
47
,
49
,
39
6
,
396
,
396
,
396
,
396
,
396
,
396
,
396
,
378
,
381
,
39
9
,
399
,
399
,
399
,
399
,
399
,
399
,
399
,
381
,
384
,
41
,
37
0
,
396
,
38
,
396
,
369
,
396
,
20
,
33
,
32
,
41
,
37
3
,
399
,
38
,
399
,
372
,
399
,
20
,
33
,
32
,
36
,
34
,
44
,
0
,
46
,
49
,
40
,
57
,
348
,
52
,
46
,
29
,
44
,
0
,
46
,
49
,
42
,
60
,
351
,
65
,
6
3
,
68
,
56
,
364
,
66
,
396
,
396
,
0
,
8
9
,
0
,
6
6
,
67
,
32
,
367
,
69
,
399
,
399
,
0
,
7
9
,
0
,
3
79
,
103
,
396
,
396
,
369
,
95
,
396
,
396
,
396
,
396
,
3
82
,
103
,
399
,
399
,
372
,
96
,
399
,
399
,
399
,
399
,
0
,
3
58
,
76
,
354
,
346
,
0
,
358
,
75
,
78
,
353
,
0
,
3
61
,
70
,
357
,
349
,
347
,
0
,
360
,
77
,
80
,
3
39
,
90
,
337
,
350
,
335
,
349
,
332
,
336
,
332
,
334
,
3
55
,
341
,
92
,
339
,
352
,
337
,
351
,
334
,
338
,
334
,
0
,
93
,
0
,
334
,
332
,
326
,
333
,
0
,
0
,
339
,
336
,
0
,
93
,
0
,
336
,
334
,
328
,
335
,
0
,
0
,
3
39
,
322
,
85
,
100
,
337
,
91
,
86
,
328
,
102
,
320
,
3
41
,
341
,
324
,
87
,
98
,
339
,
93
,
88
,
330
,
104
,
3
36
,
332
,
310
,
326
,
330
,
321
,
102
,
314
,
0
,
117
,
3
22
,
338
,
334
,
312
,
328
,
332
,
323
,
98
,
316
,
0
,
12
9
,
396
,
0
,
346
,
336
,
0
,
0
,
324
,
319
,
326
,
12
2
,
131
,
399
,
0
,
348
,
338
,
0
,
0
,
326
,
321
,
3
08
,
306
,
305
,
310
,
105
,
308
,
320
,
100
,
308
,
314
,
3
28
,
326
,
309
,
307
,
306
,
311
,
106
,
309
,
321
,
102
,
3
15
,
297
,
297
,
116
,
0
,
312
,
313
,
0
,
300
,
307
,
3
09
,
315
,
316
,
298
,
298
,
117
,
0
,
313
,
314
,
0
,
118
,
121
,
304
,
294
,
303
,
296
,
293
,
301
,
0
,
291
,
301
,
308
,
118
,
122
,
305
,
295
,
304
,
297
,
294
,
302
,
301
,
299
,
290
,
280
,
274
,
287
,
272
,
292
,
0
,
0
,
0
,
292
,
302
,
300
,
291
,
281
,
275
,
288
,
273
,
293
,
277
,
0
,
291
,
282
,
279
,
125
,
275
,
290
,
269
,
27
1
,
0
,
0
,
278
,
0
,
292
,
283
,
280
,
126
,
276
,
29
1
,
27
6
,
276
,
268
,
271
,
266
,
0
,
278
,
262
,
272
,
279
,
27
0
,
272
,
277
,
277
,
269
,
272
,
267
,
0
,
0
,
279
,
2
70
,
258
,
257
,
271
,
260
,
273
,
253
,
0
,
263
,
245
,
2
63
,
273
,
280
,
271
,
259
,
258
,
272
,
261
,
274
,
254
,
0
,
264
,
2
61
,
248
,
0
,
243
,
248
,
247
,
257
,
0
,
0
,
264
,
2
46
,
0
,
265
,
262
,
249
,
0
,
244
,
249
,
24
3
,
0
,
247
,
0
,
0
,
243
,
240
,
254
,
0
,
239
,
24
8
,
258
,
0
,
244
,
0
,
248
,
0
,
0
,
244
,
241
,
2
39
,
237
,
253
,
238
,
250
,
232
,
250
,
245
,
0
,
240
,
2
55
,
0
,
240
,
240
,
238
,
254
,
239
,
251
,
233
,
251
,
24
0
,
226
,
225
,
225
,
239
,
238
,
237
,
0
,
221
,
0
,
24
6
,
0
,
241
,
241
,
227
,
226
,
226
,
240
,
239
,
238
,
215
,
0
,
234
,
218
,
217
,
217
,
0
,
230
,
220
,
215
,
0
,
222
,
0
,
216
,
0
,
235
,
219
,
218
,
218
,
0
,
2
14
,
226
,
216
,
215
,
0
,
0
,
0
,
0
,
208
,
0
,
2
31
,
221
,
216
,
215
,
227
,
217
,
216
,
0
,
0
,
0
,
222
,
218
,
204
,
0
,
218
,
219
,
202
,
207
,
200
,
218
,
0
,
209
,
0
,
223
,
219
,
205
,
0
,
219
,
220
,
203
,
20
0
,
197
,
198
,
195
,
0
,
200
,
212
,
199
,
206
,
205
,
20
8
,
201
,
219
,
201
,
198
,
199
,
196
,
0
,
201
,
213
,
190
,
0
,
0
,
0
,
182
,
189
,
0
,
0
,
186
,
0
,
200
,
207
,
206
,
191
,
0
,
0
,
0
,
183
,
190
,
0
,
185
,
0
,
199
,
0
,
200
,
187
,
0
,
183
,
0
,
186
,
0
,
187
,
0
,
186
,
0
,
200
,
0
,
201
,
188
,
0
,
0
,
178
,
180
,
0
,
179
,
193
,
186
,
0
,
0
,
189
,
184
,
0
,
187
,
0
,
179
,
181
,
0
,
180
,
194
,
187
,
192
,
174
,
189
,
0
,
0
,
0
,
170
,
184
,
183
,
0
,
0
,
0
,
190
,
193
,
175
,
190
,
0
,
0
,
0
,
171
,
0
,
167
,
166
,
0
,
181
,
166
,
0
,
0
,
172
,
168
,
185
,
184
,
0
,
0
,
168
,
167
,
0
,
182
,
167
,
0
,
0
,
1
63
,
0
,
175
,
164
,
174
,
163
,
0
,
150
,
0
,
0
,
1
73
,
169
,
0
,
164
,
0
,
176
,
165
,
175
,
164
,
170
,
0
,
154
,
148
,
154
,
145
,
0
,
150
,
163
,
0
,
0
,
151
,
0
,
171
,
0
,
155
,
149
,
155
,
146
,
0
,
1
62
,
0
,
0
,
153
,
0
,
157
,
0
,
144
,
144
,
15
0
,
1
51
,
164
,
0
,
163
,
0
,
0
,
154
,
0
,
158
,
0
,
1
36
,
159
,
151
,
152
,
136
,
119
,
109
,
0
,
121
,
128
,
1
45
,
145
,
151
,
137
,
160
,
152
,
153
,
137
,
121
,
110
,
119
,
116
,
112
,
104
,
0
,
396
,
159
,
163
,
59
,
167
,
0
,
122
,
129
,
120
,
117
,
113
,
105
,
0
,
399
,
160
,
1
71
,
175
1
64
,
85
,
168
,
172
,
176
}
;
}
;
static
yyconst
short
int
yy_def
[
373
]
=
static
yyconst
flex_int16_t
yy_def
[
376
]
=
{
0
,
{
0
,
366
,
1
,
367
,
367
,
368
,
368
,
366
,
366
,
366
,
366
,
369
,
1
,
370
,
370
,
371
,
371
,
369
,
369
,
369
,
369
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
366
,
366
,
370
,
371
,
372
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
370
,
371
,
371
,
366
,
372
,
366
,
366
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
373
,
374
,
375
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
373
,
374
,
374
,
369
,
375
,
369
,
369
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
369
,
369
,
369
,
369
,
369
,
0
,
366
,
366
,
366
,
366
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
366
,
366
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
372
,
0
,
369
,
369
,
369
,
369
,
369
,
369
}
;
}
;
static
yyconst
short
int
yy_nxt
[
445
]
=
static
yyconst
flex_int16_t
yy_nxt
[
448
]
=
{
0
,
{
0
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
,
21
,
22
,
23
,
24
,
25
,
26
,
27
,
18
,
19
,
20
,
21
,
22
,
23
,
24
,
25
,
26
,
27
,
28
,
29
,
30
,
31
,
32
,
33
,
34
,
34
,
35
,
34
,
28
,
29
,
30
,
31
,
32
,
33
,
34
,
34
,
35
,
34
,
34
,
36
,
34
,
37
,
38
,
39
,
34
,
40
,
41
,
42
,
34
,
36
,
34
,
37
,
38
,
39
,
34
,
40
,
41
,
42
,
43
,
44
,
45
,
34
,
34
,
34
,
46
,
47
,
52
,
52
,
43
,
44
,
45
,
34
,
34
,
34
,
46
,
47
,
52
,
52
,
52
,
52
,
55
,
62
,
56
,
58
,
59
,
64
,
63
,
6
7
,
52
,
52
,
55
,
62
,
56
,
58
,
59
,
64
,
63
,
6
8
,
7
2
,
65
,
61
,
68
,
73
,
75
,
69
,
76
,
77
,
70
,
7
6
,
65
,
77
,
69
,
66
,
105
,
70
,
106
,
78
,
71
,
7
4
,
81
,
71
,
84
,
86
,
78
,
94
,
66
,
79
,
82
,
7
3
,
82
,
72
,
85
,
74
,
79
,
87
,
67
,
80
,
83
,
87
,
80
,
88
,
85
,
83
,
95
,
96
,
97
,
101
,
104
,
75
,
81
,
88
,
86
,
84
,
89
,
112
,
102
,
61
,
95
,
89
,
105
,
90
,
107
,
91
,
102
,
111
,
92
,
117
,
98
,
98
,
113
,
118
,
90
,
103
,
91
,
108
,
92
,
96
,
97
,
108
,
112
,
103
,
99
,
52
,
52
,
55
,
100
,
56
,
122
,
93
,
104
,
99
,
109
,
52
,
52
,
100
,
55
,
119
,
56
,
1
24
,
125
,
129
,
150
,
118
,
123
,
140
,
158
,
126
,
151
,
1
01
,
124
,
126
,
127
,
131
,
152
,
142
,
125
,
154
,
160
,
1
52
,
130
,
156
,
161
,
366
,
159
,
170
,
180
,
131
,
366
,
1
28
,
153
,
172
,
132
,
158
,
163
,
173
,
161
,
183
,
369
,
1
71
,
141
,
142
,
157
,
162
,
153
,
111
,
184
,
185
,
154
,
1
33
,
143
,
144
,
155
,
369
,
159
,
164
,
156
,
112
,
187
,
1
91
,
112
,
197
,
181
,
192
,
199
,
220
,
221
,
365
,
364
,
1
88
,
194
,
200
,
113
,
184
,
195
,
202
,
223
,
224
,
368
,
36
3
,
362
,
361
,
360
,
359
,
200
,
358
,
198
,
222
,
48
,
36
7
,
366
,
365
,
364
,
363
,
362
,
203
,
201
,
361
,
225
,
48
,
48
,
48
,
50
,
50
,
50
,
50
,
109
,
109
,
357
,
48
,
48
,
48
,
48
,
50
,
50
,
50
,
50
,
110
,
110
,
109
,
110
,
110
,
110
,
110
,
113
,
356
,
113
,
113
,
355
,
360
,
110
,
111
,
111
,
111
,
111
,
114
,
359
,
114
,
114
,
35
4
,
353
,
352
,
351
,
350
,
349
,
348
,
347
,
346
,
345
,
35
8
,
357
,
356
,
355
,
354
,
353
,
352
,
351
,
350
,
349
,
34
4
,
343
,
342
,
341
,
340
,
339
,
338
,
337
,
336
,
335
,
34
8
,
347
,
346
,
345
,
344
,
343
,
342
,
341
,
340
,
339
,
33
4
,
333
,
332
,
331
,
330
,
329
,
328
,
327
,
326
,
325
,
33
8
,
337
,
336
,
335
,
334
,
333
,
332
,
331
,
330
,
329
,
32
4
,
323
,
322
,
321
,
320
,
319
,
318
,
317
,
316
,
315
,
32
8
,
327
,
326
,
325
,
324
,
323
,
322
,
321
,
320
,
319
,
31
4
,
313
,
312
,
311
,
310
,
309
,
308
,
307
,
306
,
305
,
31
8
,
317
,
316
,
315
,
314
,
313
,
312
,
311
,
310
,
309
,
30
4
,
303
,
302
,
301
,
300
,
299
,
298
,
297
,
296
,
295
,
30
8
,
307
,
306
,
305
,
304
,
303
,
302
,
301
,
300
,
299
,
29
4
,
293
,
292
,
291
,
290
,
289
,
288
,
287
,
286
,
285
,
29
8
,
297
,
296
,
295
,
294
,
293
,
292
,
291
,
290
,
289
,
28
4
,
283
,
282
,
281
,
280
,
279
,
278
,
277
,
276
,
275
,
28
8
,
287
,
286
,
285
,
284
,
283
,
282
,
281
,
280
,
279
,
27
4
,
273
,
272
,
271
,
270
,
269
,
268
,
267
,
266
,
265
,
27
8
,
277
,
276
,
275
,
274
,
273
,
272
,
271
,
270
,
269
,
26
4
,
263
,
262
,
261
,
260
,
259
,
258
,
257
,
256
,
255
,
26
8
,
267
,
266
,
265
,
264
,
263
,
262
,
261
,
260
,
259
,
25
4
,
253
,
252
,
251
,
250
,
249
,
248
,
247
,
246
,
245
,
25
8
,
257
,
256
,
255
,
254
,
253
,
252
,
251
,
250
,
249
,
24
4
,
243
,
242
,
241
,
240
,
239
,
238
,
237
,
236
,
235
,
24
8
,
247
,
246
,
245
,
244
,
243
,
242
,
241
,
240
,
239
,
23
4
,
233
,
232
,
231
,
230
,
229
,
228
,
227
,
226
,
225
,
23
8
,
237
,
236
,
235
,
234
,
233
,
232
,
231
,
230
,
229
,
22
4
,
223
,
219
,
218
,
217
,
216
,
215
,
214
,
213
,
212
,
22
8
,
227
,
226
,
222
,
221
,
220
,
219
,
218
,
217
,
216
,
21
1
,
210
,
209
,
208
,
207
,
206
,
205
,
204
,
203
,
202
,
21
5
,
214
,
213
,
212
,
211
,
210
,
209
,
208
,
207
,
206
,
20
1
,
196
,
195
,
194
,
193
,
190
,
189
,
188
,
187
,
186
,
20
5
,
204
,
199
,
198
,
197
,
196
,
193
,
192
,
191
,
190
,
18
3
,
182
,
179
,
178
,
177
,
176
,
175
,
174
,
173
,
115
,
18
9
,
186
,
185
,
182
,
181
,
180
,
179
,
178
,
177
,
176
,
1
14
,
172
,
169
,
168
,
167
,
166
,
165
,
164
,
163
,
160
,
1
75
,
116
,
115
,
174
,
171
,
170
,
169
,
168
,
167
,
166
,
1
55
,
149
,
148
,
147
,
146
,
145
,
144
,
143
,
139
,
138
,
1
65
,
162
,
157
,
151
,
150
,
149
,
148
,
147
,
146
,
145
,
1
37
,
136
,
135
,
134
,
133
,
132
,
128
,
127
,
121
,
120
,
1
41
,
140
,
139
,
138
,
137
,
136
,
135
,
134
,
130
,
129
,
1
19
,
116
,
115
,
114
,
106
,
93
,
60
,
57
,
54
,
53
,
1
23
,
122
,
121
,
120
,
117
,
116
,
115
,
107
,
94
,
60
,
366
,
51
,
51
,
49
,
49
,
7
,
366
,
366
,
366
,
366
,
57
,
54
,
53
,
369
,
51
,
51
,
49
,
49
,
7
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
36
9
,
369
,
369
,
369
,
369
,
369
,
369
}
;
}
;
static
yyconst
short
int
yy_chk
[
445
]
=
static
yyconst
flex_int16_t
yy_chk
[
448
]
=
{
0
,
{
0
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
...
@@ -525,54 +601,57 @@ static yyconst short int yy_chk[445] =
...
@@ -525,54 +601,57 @@ static yyconst short int yy_chk[445] =
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
9
,
9
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
9
,
9
,
10
,
10
,
21
,
28
,
21
,
24
,
24
,
29
,
28
,
30
,
10
,
10
,
21
,
28
,
21
,
24
,
24
,
29
,
28
,
30
,
3
1
,
29
,
369
,
30
,
31
,
32
,
30
,
32
,
33
,
30
,
3
2
,
29
,
32
,
30
,
29
,
43
,
30
,
43
,
33
,
30
,
31
,
35
,
30
,
36
,
3
7
,
33
,
40
,
29
,
33
,
35
,
31
,
35
,
30
,
36
,
3
1
,
33
,
37
,
29
,
33
,
35
,
3
7
,
33
,
38
,
36
,
35
,
40
,
40
,
41
,
42
,
43
,
3
1
,
33
,
37
,
36
,
35
,
38
,
49
,
42
,
372
,
40
,
38
,
43
,
38
,
45
,
38
,
42
,
49
,
38
,
63
,
41
,
41
,
49
,
63
,
38
,
42
,
38
,
45
,
38
,
40
,
40
,
45
,
49
,
42
,
41
,
52
,
52
,
56
,
41
,
56
,
68
,
38
,
42
,
41
,
45
,
52
,
52
,
41
,
56
,
63
,
56
,
69
,
69
,
72
,
93
,
63
,
68
,
82
,
97
,
69
,
93
,
41
,
69
,
70
,
70
,
73
,
94
,
83
,
69
,
95
,
98
,
94
,
72
,
96
,
99
,
110
,
97
,
107
,
125
,
72
,
110
,
70
,
94
,
108
,
73
,
97
,
100
,
108
,
98
,
127
,
111
,
107
,
82
,
82
,
96
,
99
,
94
,
111
,
128
,
128
,
94
,
73
,
83
,
83
,
95
,
111
,
97
,
100
,
95
,
112
,
130
,
13
4
,
111
,
141
,
125
,
134
,
142
,
166
,
166
,
364
,
363
,
13
0
,
136
,
143
,
112
,
127
,
136
,
144
,
168
,
168
,
367
,
36
2
,
361
,
360
,
359
,
357
,
142
,
356
,
141
,
166
,
367
,
36
6
,
365
,
364
,
363
,
362
,
360
,
144
,
143
,
359
,
168
,
3
67
,
367
,
367
,
368
,
368
,
368
,
368
,
370
,
370
,
355
,
3
70
,
370
,
370
,
370
,
371
,
371
,
371
,
371
,
373
,
373
,
3
70
,
371
,
371
,
371
,
371
,
372
,
354
,
372
,
372
,
353
,
3
58
,
373
,
374
,
374
,
374
,
374
,
375
,
357
,
375
,
375
,
35
2
,
351
,
350
,
349
,
348
,
346
,
344
,
341
,
339
,
338
,
35
6
,
355
,
354
,
353
,
352
,
351
,
349
,
347
,
344
,
342
,
3
36
,
335
,
334
,
333
,
331
,
329
,
327
,
326
,
325
,
324
,
3
41
,
339
,
338
,
337
,
336
,
334
,
332
,
330
,
329
,
328
,
32
2
,
320
,
319
,
316
,
315
,
313
,
312
,
309
,
308
,
307
,
32
7
,
325
,
323
,
322
,
319
,
318
,
316
,
315
,
312
,
311
,
3
03
,
302
,
301
,
300
,
297
,
296
,
295
,
293
,
292
,
290
,
3
10
,
306
,
305
,
304
,
303
,
300
,
299
,
298
,
296
,
295
,
2
88
,
286
,
285
,
283
,
281
,
279
,
276
,
275
,
271
,
270
,
2
93
,
291
,
289
,
288
,
286
,
284
,
282
,
279
,
278
,
274
,
2
69
,
268
,
267
,
266
,
264
,
263
,
262
,
261
,
260
,
259
,
2
73
,
272
,
271
,
270
,
269
,
267
,
266
,
265
,
264
,
263
,
2
58
,
257
,
256
,
255
,
253
,
252
,
251
,
249
,
244
,
243
,
2
62
,
261
,
260
,
259
,
258
,
256
,
255
,
254
,
252
,
247
,
24
2
,
241
,
240
,
239
,
238
,
236
,
235
,
234
,
233
,
231
,
24
6
,
245
,
244
,
243
,
242
,
241
,
239
,
238
,
237
,
236
,
2
29
,
227
,
226
,
225
,
224
,
223
,
222
,
221
,
220
,
218
,
2
34
,
232
,
230
,
229
,
228
,
227
,
226
,
225
,
224
,
223
,
2
17
,
216
,
215
,
214
,
213
,
212
,
211
,
210
,
208
,
207
,
2
21
,
220
,
219
,
218
,
217
,
216
,
215
,
214
,
213
,
211
,
2
06
,
203
,
201
,
199
,
198
,
197
,
196
,
194
,
193
,
192
,
2
10
,
209
,
206
,
204
,
202
,
201
,
200
,
199
,
197
,
196
,
19
0
,
189
,
187
,
186
,
185
,
184
,
183
,
182
,
181
,
180
,
19
5
,
193
,
192
,
190
,
189
,
188
,
187
,
186
,
185
,
184
,
1
79
,
178
,
177
,
175
,
174
,
173
,
172
,
171
,
170
,
169
,
1
83
,
182
,
181
,
180
,
177
,
176
,
175
,
174
,
173
,
172
,
1
68
,
167
,
165
,
164
,
163
,
161
,
158
,
157
,
156
,
155
,
1
71
,
170
,
169
,
167
,
166
,
165
,
163
,
160
,
159
,
158
,
15
4
,
153
,
152
,
151
,
150
,
148
,
147
,
146
,
145
,
144
,
15
7
,
156
,
155
,
154
,
153
,
152
,
150
,
149
,
148
,
147
,
14
3
,
140
,
139
,
137
,
136
,
133
,
132
,
131
,
130
,
129
,
14
6
,
145
,
142
,
141
,
139
,
138
,
135
,
134
,
133
,
132
,
1
27
,
126
,
124
,
123
,
122
,
121
,
120
,
119
,
118
,
115
,
1
31
,
129
,
128
,
126
,
125
,
124
,
123
,
122
,
121
,
120
,
11
4
,
108
,
106
,
105
,
104
,
103
,
102
,
101
,
100
,
98
,
11
9
,
116
,
115
,
109
,
107
,
106
,
105
,
104
,
103
,
102
,
95
,
92
,
91
,
90
,
87
,
86
,
85
,
84
,
80
,
79
,
101
,
99
,
96
,
93
,
92
,
91
,
88
,
87
,
86
,
85
,
78
,
77
,
76
,
75
,
74
,
73
,
71
,
70
,
67
,
65
,
81
,
80
,
79
,
78
,
77
,
76
,
75
,
74
,
72
,
71
,
6
4
,
62
,
55
,
51
,
44
,
39
,
26
,
22
,
20
,
19
,
6
8
,
66
,
65
,
64
,
62
,
55
,
51
,
44
,
39
,
26
,
7
,
6
,
5
,
4
,
3
,
366
,
366
,
366
,
366
,
366
,
22
,
20
,
19
,
7
,
6
,
5
,
4
,
3
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
366
,
36
9
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
369
,
36
6
,
366
,
366
,
366
36
9
,
369
,
369
,
369
,
369
,
369
,
369
}
;
}
;
static
yy_state_type
yy_last_accepting_state
;
static
yy_state_type
yy_last_accepting_state
;
static
char
*
yy_last_accepting_cpos
;
static
char
*
yy_last_accepting_cpos
;
extern
int
yy_flex_debug
;
int
yy_flex_debug
=
0
;
/* The intent behind this definition is that it'll catch
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
* any uses of REJECT which flex missed.
*/
*/
...
@@ -582,7 +661,6 @@ static char *yy_last_accepting_cpos;
...
@@ -582,7 +661,6 @@ static char *yy_last_accepting_cpos;
#define YY_RESTORE_YY_MORE_OFFSET
#define YY_RESTORE_YY_MORE_OFFSET
char
*
yytext
;
char
*
yytext
;
#line 1 "pars0lex.l"
#line 1 "pars0lex.l"
#define INITIAL 0
/******************************************************
/******************************************************
SQL parser lexical analyzer: input file for the GNU Flex lexer generator
SQL parser lexical analyzer: input file for the GNU Flex lexer generator
...
@@ -622,13 +700,9 @@ How to make the InnoDB parser and lexer C files:
...
@@ -622,13 +700,9 @@ How to make the InnoDB parser and lexer C files:
These instructions seem to work at least with bison-1.28 and flex-2.5.4 on
These instructions seem to work at least with bison-1.28 and flex-2.5.4 on
Linux.
Linux.
*******************************************************/
*******************************************************/
#define YY_NEVER_INTERACTIVE 1
#define YY_NO_INPUT 1
#define YY_NO_INPUT 1
#define YY_NO_UNPUT 1
#define YY_NO_UNISTD_H 1
#define YY_NO_SCAN_BUFFER 1
#line 56 "pars0lex.l"
#define YY_NO_SCAN_BYTES 1
#define YY_NO_SCAN_STRING 1
#line 52 "pars0lex.l"
#define YYSTYPE que_node_t*
#define YYSTYPE que_node_t*
#include "univ.i"
#include "univ.i"
...
@@ -673,11 +747,25 @@ string_append(
...
@@ -673,11 +747,25 @@ string_append(
stringbuf_len
+=
len
;
stringbuf_len
+=
len
;
}
}
#define comment 1
#line 751 "lex.yy.c"
#define INITIAL 0
#define comment 1
#define quoted 2
#define quoted 2
#line 676 "lex.yy.c"
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
/* Macros after this point can all be overridden by user definitions in
/* Macros after this point can all be overridden by user definitions in
* section 1.
* section 1.
...
@@ -685,65 +773,28 @@ string_append(
...
@@ -685,65 +773,28 @@ string_append(
#ifndef YY_SKIP_YYWRAP
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
int
yywrap
YY_PROTO
((
void
)
);
extern
"C"
int
yywrap
(
void
);
#else
#else
extern
int
yywrap
YY_PROTO
((
void
));
extern
int
yywrap
(
void
);
#endif
#endif
#endif
#ifndef YY_NO_UNPUT
static
void
yyunput
YY_PROTO
((
int
c
,
char
*
buf_ptr
));
#endif
#endif
#ifndef yytext_ptr
#ifndef yytext_ptr
static
void
yy_flex_strncpy
YY_PROTO
((
char
*
,
yyconst
char
*
,
int
)
);
static
void
yy_flex_strncpy
(
char
*
,
yyconst
char
*
,
int
);
#endif
#endif
#ifdef YY_NEED_STRLEN
#ifdef YY_NEED_STRLEN
static
int
yy_flex_strlen
YY_PROTO
((
yyconst
char
*
)
);
static
int
yy_flex_strlen
(
yyconst
char
*
);
#endif
#endif
#ifndef YY_NO_INPUT
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static
int
yyinput
YY_PROTO
((
void
));
#else
static
int
input
YY_PROTO
((
void
));
#endif
#endif
#if YY_STACK_USED
static
int
yy_start_stack_ptr
=
0
;
static
int
yy_start_stack_depth
=
0
;
static
int
*
yy_start_stack
=
0
;
#ifndef YY_NO_PUSH_STATE
static
void
yy_push_state
YY_PROTO
((
int
new_state
));
#endif
#ifndef YY_NO_POP_STATE
static
void
yy_pop_state
YY_PROTO
((
void
));
#endif
#ifndef YY_NO_TOP_STATE
static
int
yy_top_state
YY_PROTO
((
void
));
#endif
#ifdef __cplusplus
static
int
yyinput
(
void
);
#else
#else
#define YY_NO_PUSH_STATE 1
static
int
input
(
void
);
#define YY_NO_POP_STATE 1
#define YY_NO_TOP_STATE 1
#endif
#endif
#ifdef YY_MALLOC_DECL
YY_MALLOC_DECL
#else
#if __STDC__
#ifndef __cplusplus
#include <stdlib.h>
#endif
#else
/* Just try to get by without declaring the routines. This will fail
* miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
* or sizeof(void*) != sizeof(int).
*/
#endif
#endif
#endif
/* Amount of stuff to slurp up with each read. */
/* Amount of stuff to slurp up with each read. */
...
@@ -752,7 +803,6 @@ YY_MALLOC_DECL
...
@@ -752,7 +803,6 @@ YY_MALLOC_DECL
#endif
#endif
/* Copy whatever the last rule matched to the standard output. */
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
* we now use fwrite().
...
@@ -765,9 +815,10 @@ YY_MALLOC_DECL
...
@@ -765,9 +815,10 @@ YY_MALLOC_DECL
*/
*/
#ifndef YY_INPUT
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
#define YY_INPUT(buf,result,max_size) \
if (
yy_current_buffer
->yy_is_interactive ) \
if (
YY_CURRENT_BUFFER_LVALUE
->yy_is_interactive ) \
{ \
{ \
int c = '*', n; \
int c = '*'; \
size_t n; \
for ( n = 0; n < max_size && \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
buf[n] = (char) c; \
...
@@ -777,9 +828,22 @@ YY_MALLOC_DECL
...
@@ -777,9 +828,22 @@ YY_MALLOC_DECL
YY_FATAL_ERROR( "input in flex scanner failed" ); \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
result = n; \
} \
} \
else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
else \
&& ferror( yyin ) ) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" );
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
/* No semi-colon after return; correct usage is to write "yyterminate();" -
...
@@ -800,12 +864,18 @@ YY_MALLOC_DECL
...
@@ -800,12 +864,18 @@ YY_MALLOC_DECL
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
* easily add parameters.
*/
*/
#ifndef YY_DECL
#ifndef YY_DECL
#define YY_DECL int yylex YY_PROTO(( void ))
#define YY_DECL_IS_OURS 1
#endif
extern
int
yylex
(
void
);
#define YY_DECL int yylex (void)
#endif
/* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
* have been set up.
...
@@ -822,27 +892,29 @@ YY_MALLOC_DECL
...
@@ -822,27 +892,29 @@ YY_MALLOC_DECL
#define YY_RULE_SETUP \
#define YY_RULE_SETUP \
YY_USER_ACTION
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
YY_DECL
{
{
register
yy_state_type
yy_current_state
;
register
yy_state_type
yy_current_state
;
register
char
*
yy_cp
,
*
yy_bp
;
register
char
*
yy_cp
,
*
yy_bp
;
register
int
yy_act
;
register
int
yy_act
;
#line 10
2
"pars0lex.l"
#line 10
6
"pars0lex.l"
#line
830
"lex.yy.c"
#line
905
"lex.yy.c"
if
(
yy_init
)
if
(
(
yy_init
)
)
{
{
yy_init
=
0
;
(
yy_init
)
=
0
;
#ifdef YY_USER_INIT
#ifdef YY_USER_INIT
YY_USER_INIT
;
YY_USER_INIT
;
#endif
#endif
if
(
!
yy_start
)
if
(
!
(
yy_start
)
)
yy_start
=
1
;
/* first start state */
(
yy_start
)
=
1
;
/* first start state */
if
(
!
yyin
)
if
(
!
yyin
)
yyin
=
stdin
;
yyin
=
stdin
;
...
@@ -850,73 +922,69 @@ YY_DECL
...
@@ -850,73 +922,69 @@ YY_DECL
if
(
!
yyout
)
if
(
!
yyout
)
yyout
=
stdout
;
yyout
=
stdout
;
if
(
!
yy_current_buffer
)
if
(
!
YY_CURRENT_BUFFER
)
{
yy_current_buffer
=
yyensure_buffer_stack
();
yy_create_buffer
(
yyin
,
YY_BUF_SIZE
);
YY_CURRENT_BUFFER_LVALUE
=
yy_create_buffer
(
yyin
,
YY_BUF_SIZE
);
}
yy_load_buffer_state
();
yy_load_buffer_state
(
);
}
}
while
(
1
)
/* loops until end-of-file is reached */
while
(
1
)
/* loops until end-of-file is reached */
{
{
yy_cp
=
yy_c_buf_p
;
yy_cp
=
(
yy_c_buf_p
)
;
/* Support of yytext. */
/* Support of yytext. */
*
yy_cp
=
yy_hold_char
;
*
yy_cp
=
(
yy_hold_char
)
;
/* yy_bp points to the position in yy_ch_buf of the start of
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
* the current run.
*/
*/
yy_bp
=
yy_cp
;
yy_bp
=
yy_cp
;
yy_current_state
=
yy_start
;
yy_current_state
=
(
yy_start
)
;
yy_match:
yy_match:
do
do
{
{
register
YY_CHAR
yy_c
=
yy_ec
[
YY_SC_TO_UI
(
*
yy_cp
)];
register
YY_CHAR
yy_c
=
yy_ec
[
YY_SC_TO_UI
(
*
yy_cp
)];
if
(
yy_accept
[
yy_current_state
]
)
if
(
yy_accept
[
yy_current_state
]
)
{
{
yy_last_accepting_state
=
yy_current_state
;
(
yy_last_accepting_state
)
=
yy_current_state
;
yy_last_accepting_cpos
=
yy_cp
;
(
yy_last_accepting_cpos
)
=
yy_cp
;
}
}
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
{
{
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
if
(
yy_current_state
>=
3
67
)
if
(
yy_current_state
>=
3
70
)
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
}
}
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
++
yy_cp
;
++
yy_cp
;
}
}
while
(
yy_base
[
yy_current_state
]
!=
396
);
while
(
yy_current_state
!=
369
);
yy_cp
=
(
yy_last_accepting_cpos
);
yy_current_state
=
(
yy_last_accepting_state
);
yy_find_action:
yy_find_action:
yy_act
=
yy_accept
[
yy_current_state
];
yy_act
=
yy_accept
[
yy_current_state
];
if
(
yy_act
==
0
)
{
/* have to back up */
yy_cp
=
yy_last_accepting_cpos
;
yy_current_state
=
yy_last_accepting_state
;
yy_act
=
yy_accept
[
yy_current_state
];
}
YY_DO_BEFORE_ACTION
;
YY_DO_BEFORE_ACTION
;
do_action:
/* This label is used only to access EOF actions. */
do_action:
/* This label is used only to access EOF actions. */
switch
(
yy_act
)
switch
(
yy_act
)
{
/* beginning of action switch */
{
/* beginning of action switch */
case
0
:
/* must back up */
case
0
:
/* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
/* undo the effects of YY_DO_BEFORE_ACTION */
*
yy_cp
=
yy_hold_char
;
*
yy_cp
=
(
yy_hold_char
)
;
yy_cp
=
yy_last_accepting_cpos
;
yy_cp
=
(
yy_last_accepting_cpos
)
;
yy_current_state
=
yy_last_accepting_state
;
yy_current_state
=
(
yy_last_accepting_state
)
;
goto
yy_find_action
;
goto
yy_find_action
;
case
1
:
case
1
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 10
4
"pars0lex.l"
#line 10
8
"pars0lex.l"
{
{
yylval
=
sym_tab_add_int_lit
(
pars_sym_tab_global
,
yylval
=
sym_tab_add_int_lit
(
pars_sym_tab_global
,
atoi
(
yytext
));
atoi
(
yytext
));
...
@@ -925,7 +993,7 @@ YY_RULE_SETUP
...
@@ -925,7 +993,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
2
:
case
2
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 11
0
"pars0lex.l"
#line 11
4
"pars0lex.l"
{
{
ut_error
;
/* not implemented */
ut_error
;
/* not implemented */
...
@@ -934,7 +1002,7 @@ YY_RULE_SETUP
...
@@ -934,7 +1002,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
3
:
case
3
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 1
16
"pars0lex.l"
#line 1
20
"pars0lex.l"
{
{
/* Quoted character string literals are handled in an explicit
/* Quoted character string literals are handled in an explicit
start state 'quoted'. This state is entered and the buffer for
start state 'quoted'. This state is entered and the buffer for
...
@@ -946,8 +1014,9 @@ In the state 'quoted', only two actions are possible (defined below). */
...
@@ -946,8 +1014,9 @@ In the state 'quoted', only two actions are possible (defined below). */
}
}
YY_BREAK
YY_BREAK
case
4
:
case
4
:
/* rule 4 can match eol */
YY_RULE_SETUP
YY_RULE_SETUP
#line 12
5
"pars0lex.l"
#line 12
9
"pars0lex.l"
{
{
/* Got a sequence of characters other than "'":
/* Got a sequence of characters other than "'":
append to string buffer */
append to string buffer */
...
@@ -956,7 +1025,7 @@ YY_RULE_SETUP
...
@@ -956,7 +1025,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
5
:
case
5
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 13
0
"pars0lex.l"
#line 13
4
"pars0lex.l"
{
{
/* Got a sequence of "'" characters:
/* Got a sequence of "'" characters:
append half of them to string buffer,
append half of them to string buffer,
...
@@ -983,7 +1052,7 @@ YY_RULE_SETUP
...
@@ -983,7 +1052,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
6
:
case
6
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 15
4
"pars0lex.l"
#line 15
8
"pars0lex.l"
{
{
yylval
=
sym_tab_add_null_lit
(
pars_sym_tab_global
);
yylval
=
sym_tab_add_null_lit
(
pars_sym_tab_global
);
...
@@ -992,7 +1061,7 @@ YY_RULE_SETUP
...
@@ -992,7 +1061,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
7
:
case
7
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 16
0
"pars0lex.l"
#line 16
4
"pars0lex.l"
{
{
/* Implicit cursor name */
/* Implicit cursor name */
yylval
=
sym_tab_add_str_lit
(
pars_sym_tab_global
,
yylval
=
sym_tab_add_str_lit
(
pars_sym_tab_global
,
...
@@ -1002,572 +1071,570 @@ YY_RULE_SETUP
...
@@ -1002,572 +1071,570 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
8
:
case
8
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 1
67
"pars0lex.l"
#line 1
71
"pars0lex.l"
{
{
return
(
PARS_AND_TOKEN
);
return
(
PARS_AND_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
9
:
case
9
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 17
1
"pars0lex.l"
#line 17
5
"pars0lex.l"
{
{
return
(
PARS_OR_TOKEN
);
return
(
PARS_OR_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
10
:
case
10
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 17
5
"pars0lex.l"
#line 17
9
"pars0lex.l"
{
{
return
(
PARS_NOT_TOKEN
);
return
(
PARS_NOT_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
11
:
case
11
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 1
79
"pars0lex.l"
#line 1
83
"pars0lex.l"
{
{
return
(
PARS_PROCEDURE_TOKEN
);
return
(
PARS_PROCEDURE_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
12
:
case
12
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 18
3
"pars0lex.l"
#line 18
7
"pars0lex.l"
{
{
return
(
PARS_IN_TOKEN
);
return
(
PARS_IN_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
13
:
case
13
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 1
87
"pars0lex.l"
#line 1
91
"pars0lex.l"
{
{
return
(
PARS_OUT_TOKEN
);
return
(
PARS_OUT_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
14
:
case
14
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 19
1
"pars0lex.l"
#line 19
5
"pars0lex.l"
{
{
return
(
PARS_
INT
_TOKEN
);
return
(
PARS_
BINARY
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
15
:
case
15
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 19
5
"pars0lex.l"
#line 19
9
"pars0lex.l"
{
{
return
(
PARS_
INT
_TOKEN
);
return
(
PARS_
BLOB
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
16
:
case
16
:
YY_RULE_SETUP
YY_RULE_SETUP
#line
199
"pars0lex.l"
#line
203
"pars0lex.l"
{
{
return
(
PARS_
FLOA
T_TOKEN
);
return
(
PARS_
IN
T_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
17
:
case
17
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 20
3
"pars0lex.l"
#line 20
7
"pars0lex.l"
{
{
return
(
PARS_
CHAR
_TOKEN
);
return
(
PARS_
INT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
18
:
case
18
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
07
"pars0lex.l"
#line 2
11
"pars0lex.l"
{
{
return
(
PARS_IS
_TOKEN
);
return
(
PARS_FLOAT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
19
:
case
19
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 21
1
"pars0lex.l"
#line 21
5
"pars0lex.l"
{
{
return
(
PARS_BEGIN
_TOKEN
);
return
(
PARS_CHAR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
20
:
case
20
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 21
5
"pars0lex.l"
#line 21
9
"pars0lex.l"
{
{
return
(
PARS_
END
_TOKEN
);
return
(
PARS_
IS
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
21
:
case
21
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
19
"pars0lex.l"
#line 2
23
"pars0lex.l"
{
{
return
(
PARS_
IF
_TOKEN
);
return
(
PARS_
BEGIN
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
22
:
case
22
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 22
3
"pars0lex.l"
#line 22
7
"pars0lex.l"
{
{
return
(
PARS_
THEN
_TOKEN
);
return
(
PARS_
END
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
23
:
case
23
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
27
"pars0lex.l"
#line 2
31
"pars0lex.l"
{
{
return
(
PARS_
ELSE
_TOKEN
);
return
(
PARS_
IF
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
24
:
case
24
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 23
1
"pars0lex.l"
#line 23
5
"pars0lex.l"
{
{
return
(
PARS_
ELSIF
_TOKEN
);
return
(
PARS_
THEN
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
25
:
case
25
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 23
5
"pars0lex.l"
#line 23
9
"pars0lex.l"
{
{
return
(
PARS_
LOOP
_TOKEN
);
return
(
PARS_
ELSE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
26
:
case
26
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
39
"pars0lex.l"
#line 2
43
"pars0lex.l"
{
{
return
(
PARS_
WHILE
_TOKEN
);
return
(
PARS_
ELSIF
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
27
:
case
27
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 24
3
"pars0lex.l"
#line 24
7
"pars0lex.l"
{
{
return
(
PARS_
RETURN
_TOKEN
);
return
(
PARS_
LOOP
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
28
:
case
28
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
47
"pars0lex.l"
#line 2
51
"pars0lex.l"
{
{
return
(
PARS_
SELECT
_TOKEN
);
return
(
PARS_
WHILE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
29
:
case
29
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 25
1
"pars0lex.l"
#line 25
5
"pars0lex.l"
{
{
return
(
PARS_
SUM
_TOKEN
);
return
(
PARS_
RETURN
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
30
:
case
30
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 25
5
"pars0lex.l"
#line 25
9
"pars0lex.l"
{
{
return
(
PARS_
COUN
T_TOKEN
);
return
(
PARS_
SELEC
T_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
31
:
case
31
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
59
"pars0lex.l"
#line 2
63
"pars0lex.l"
{
{
return
(
PARS_
DISTINCT
_TOKEN
);
return
(
PARS_
SUM
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
32
:
case
32
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 26
3
"pars0lex.l"
#line 26
7
"pars0lex.l"
{
{
return
(
PARS_
FROM
_TOKEN
);
return
(
PARS_
COUNT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
33
:
case
33
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
67
"pars0lex.l"
#line 2
71
"pars0lex.l"
{
{
return
(
PARS_
WHERE
_TOKEN
);
return
(
PARS_
DISTINCT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
34
:
case
34
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 27
1
"pars0lex.l"
#line 27
5
"pars0lex.l"
{
{
return
(
PARS_F
OR
_TOKEN
);
return
(
PARS_F
ROM
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
35
:
case
35
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 27
5
"pars0lex.l"
#line 27
9
"pars0lex.l"
{
{
return
(
PARS_
CONSISTENT
_TOKEN
);
return
(
PARS_
WHERE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
36
:
case
36
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
79
"pars0lex.l"
#line 2
83
"pars0lex.l"
{
{
return
(
PARS_
READ
_TOKEN
);
return
(
PARS_
FOR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
37
:
case
37
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 28
3
"pars0lex.l"
#line 28
7
"pars0lex.l"
{
{
return
(
PARS_
ORDER
_TOKEN
);
return
(
PARS_
CONSISTENT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
38
:
case
38
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 2
87
"pars0lex.l"
#line 2
91
"pars0lex.l"
{
{
return
(
PARS_
BY
_TOKEN
);
return
(
PARS_
READ
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
39
:
case
39
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 29
1
"pars0lex.l"
#line 29
5
"pars0lex.l"
{
{
return
(
PARS_
ASC
_TOKEN
);
return
(
PARS_
ORDER
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
40
:
case
40
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 29
5
"pars0lex.l"
#line 29
9
"pars0lex.l"
{
{
return
(
PARS_
DESC
_TOKEN
);
return
(
PARS_
BY
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
41
:
case
41
:
YY_RULE_SETUP
YY_RULE_SETUP
#line
299
"pars0lex.l"
#line
303
"pars0lex.l"
{
{
return
(
PARS_
INSERT
_TOKEN
);
return
(
PARS_
ASC
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
42
:
case
42
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 30
3
"pars0lex.l"
#line 30
7
"pars0lex.l"
{
{
return
(
PARS_
INTO
_TOKEN
);
return
(
PARS_
DESC
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
43
:
case
43
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
07
"pars0lex.l"
#line 3
11
"pars0lex.l"
{
{
return
(
PARS_
VALUES
_TOKEN
);
return
(
PARS_
INSERT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
44
:
case
44
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 31
1
"pars0lex.l"
#line 31
5
"pars0lex.l"
{
{
return
(
PARS_
UPDATE
_TOKEN
);
return
(
PARS_
INTO
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
45
:
case
45
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 31
5
"pars0lex.l"
#line 31
9
"pars0lex.l"
{
{
return
(
PARS_
SET
_TOKEN
);
return
(
PARS_
VALUES
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
46
:
case
46
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
19
"pars0lex.l"
#line 3
23
"pars0lex.l"
{
{
return
(
PARS_
DELE
TE_TOKEN
);
return
(
PARS_
UPDA
TE_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
47
:
case
47
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 32
3
"pars0lex.l"
#line 32
7
"pars0lex.l"
{
{
return
(
PARS_
CURREN
T_TOKEN
);
return
(
PARS_
SE
T_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
48
:
case
48
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
27
"pars0lex.l"
#line 3
31
"pars0lex.l"
{
{
return
(
PARS_
OF
_TOKEN
);
return
(
PARS_
DELETE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
49
:
case
49
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 33
1
"pars0lex.l"
#line 33
5
"pars0lex.l"
{
{
return
(
PARS_C
REATE
_TOKEN
);
return
(
PARS_C
URRENT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
50
:
case
50
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 33
5
"pars0lex.l"
#line 33
9
"pars0lex.l"
{
{
return
(
PARS_
TABLE
_TOKEN
);
return
(
PARS_
OF
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
51
:
case
51
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
39
"pars0lex.l"
#line 3
43
"pars0lex.l"
{
{
return
(
PARS_INDEX
_TOKEN
);
return
(
PARS_CREATE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
52
:
case
52
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 34
3
"pars0lex.l"
#line 34
7
"pars0lex.l"
{
{
return
(
PARS_UNIQU
E_TOKEN
);
return
(
PARS_TABL
E_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
53
:
case
53
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
47
"pars0lex.l"
#line 3
51
"pars0lex.l"
{
{
return
(
PARS_
CLUSTERED
_TOKEN
);
return
(
PARS_
INDEX
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
54
:
case
54
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 35
1
"pars0lex.l"
#line 35
5
"pars0lex.l"
{
{
return
(
PARS_DOES_NOT_FIT_IN_MEM
_TOKEN
);
return
(
PARS_UNIQUE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
55
:
case
55
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 35
5
"pars0lex.l"
#line 35
9
"pars0lex.l"
{
{
return
(
PARS_
ON
_TOKEN
);
return
(
PARS_
CLUSTERED
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
56
:
case
56
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
59
"pars0lex.l"
#line 3
63
"pars0lex.l"
{
{
return
(
PARS_D
ECLARE
_TOKEN
);
return
(
PARS_D
OES_NOT_FIT_IN_MEM
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
57
:
case
57
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 36
3
"pars0lex.l"
#line 36
7
"pars0lex.l"
{
{
return
(
PARS_CURSOR
_TOKEN
);
return
(
PARS_ON
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
58
:
case
58
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
67
"pars0lex.l"
#line 3
71
"pars0lex.l"
{
{
return
(
PARS_
OPEN
_TOKEN
);
return
(
PARS_
DECLARE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
59
:
case
59
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 37
1
"pars0lex.l"
#line 37
5
"pars0lex.l"
{
{
return
(
PARS_
FETCH
_TOKEN
);
return
(
PARS_
CURSOR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
60
:
case
60
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 37
5
"pars0lex.l"
#line 37
9
"pars0lex.l"
{
{
return
(
PARS_
CLOSE
_TOKEN
);
return
(
PARS_
OPEN
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
61
:
case
61
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
79
"pars0lex.l"
#line 3
83
"pars0lex.l"
{
{
return
(
PARS_
NOTFOUND
_TOKEN
);
return
(
PARS_
FETCH
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
62
:
case
62
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 38
3
"pars0lex.l"
#line 38
7
"pars0lex.l"
{
{
return
(
PARS_
TO_CHAR
_TOKEN
);
return
(
PARS_
CLOSE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
63
:
case
63
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 3
87
"pars0lex.l"
#line 3
91
"pars0lex.l"
{
{
return
(
PARS_
TO_NUMBER
_TOKEN
);
return
(
PARS_
NOTFOUND
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
64
:
case
64
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 39
1
"pars0lex.l"
#line 39
5
"pars0lex.l"
{
{
return
(
PARS_TO_
BINARY
_TOKEN
);
return
(
PARS_TO_
CHAR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
65
:
case
65
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 39
5
"pars0lex.l"
#line 39
9
"pars0lex.l"
{
{
return
(
PARS_
BINARY_
TO_NUMBER_TOKEN
);
return
(
PARS_TO_NUMBER_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
66
:
case
66
:
YY_RULE_SETUP
YY_RULE_SETUP
#line
399
"pars0lex.l"
#line
403
"pars0lex.l"
{
{
return
(
PARS_
SUBSTR
_TOKEN
);
return
(
PARS_
TO_BINARY
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
67
:
case
67
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 40
3
"pars0lex.l"
#line 40
7
"pars0lex.l"
{
{
return
(
PARS_
REPLST
R_TOKEN
);
return
(
PARS_
BINARY_TO_NUMBE
R_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
68
:
case
68
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
07
"pars0lex.l"
#line 4
11
"pars0lex.l"
{
{
return
(
PARS_
CONCAT
_TOKEN
);
return
(
PARS_
SUBSTR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
69
:
case
69
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 41
1
"pars0lex.l"
#line 41
5
"pars0lex.l"
{
{
return
(
PARS_
IN
STR_TOKEN
);
return
(
PARS_
REPL
STR_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
70
:
case
70
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 41
5
"pars0lex.l"
#line 41
9
"pars0lex.l"
{
{
return
(
PARS_
LENGTH
_TOKEN
);
return
(
PARS_
CONCAT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
71
:
case
71
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
19
"pars0lex.l"
#line 4
23
"pars0lex.l"
{
{
return
(
PARS_
SYSDATE
_TOKEN
);
return
(
PARS_
INSTR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
72
:
case
72
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 42
3
"pars0lex.l"
#line 42
7
"pars0lex.l"
{
{
return
(
PARS_
PRINTF
_TOKEN
);
return
(
PARS_
LENGTH
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
73
:
case
73
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
27
"pars0lex.l"
#line 4
31
"pars0lex.l"
{
{
return
(
PARS_
ASSERT
_TOKEN
);
return
(
PARS_
SYSDATE
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
74
:
case
74
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 43
1
"pars0lex.l"
#line 43
5
"pars0lex.l"
{
{
return
(
PARS_
RND
_TOKEN
);
return
(
PARS_
PRINTF
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
75
:
case
75
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 43
5
"pars0lex.l"
#line 43
9
"pars0lex.l"
{
{
return
(
PARS_
RND_STR
_TOKEN
);
return
(
PARS_
ASSERT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
76
:
case
76
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
39
"pars0lex.l"
#line 4
43
"pars0lex.l"
{
{
return
(
PARS_R
OW_PRINTF
_TOKEN
);
return
(
PARS_R
ND
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
77
:
case
77
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 44
3
"pars0lex.l"
#line 44
7
"pars0lex.l"
{
{
return
(
PARS_
COMMIT
_TOKEN
);
return
(
PARS_
RND_STR
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
78
:
case
78
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
47
"pars0lex.l"
#line 4
51
"pars0lex.l"
{
{
return
(
PARS_RO
LLBACK
_TOKEN
);
return
(
PARS_RO
W_PRINTF
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
79
:
case
79
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 45
1
"pars0lex.l"
#line 45
5
"pars0lex.l"
{
{
return
(
PARS_
WORK
_TOKEN
);
return
(
PARS_
COMMIT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
80
:
case
80
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 45
5
"pars0lex.l"
#line 45
9
"pars0lex.l"
{
{
yylval
=
sym_tab_add_id
(
pars_sym_tab_global
,
return
(
PARS_ROLLBACK_TOKEN
);
(
byte
*
)
yytext
,
ut_strlen
(
yytext
));
return
(
PARS_ID_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
81
:
case
81
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 46
2
"pars0lex.l"
#line 46
3
"pars0lex.l"
{
{
return
(
PARS_
DDOT
_TOKEN
);
return
(
PARS_
WORK
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
82
:
case
82
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 46
6
"pars0lex.l"
#line 46
7
"pars0lex.l"
{
{
return
(
PARS_ASSIGN_TOKEN
);
yylval
=
sym_tab_add_id
(
pars_sym_tab_global
,
(
byte
*
)
yytext
,
ut_strlen
(
yytext
));
return
(
PARS_ID_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
83
:
case
83
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 47
0
"pars0lex.l"
#line 47
4
"pars0lex.l"
{
{
return
(
PARS_
LE
_TOKEN
);
return
(
PARS_
DDOT
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
84
:
case
84
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 47
4
"pars0lex.l"
#line 47
8
"pars0lex.l"
{
{
return
(
PARS_
GE
_TOKEN
);
return
(
PARS_
ASSIGN
_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
85
:
case
85
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
78
"pars0lex.l"
#line 4
82
"pars0lex.l"
{
{
return
(
PARS_
N
E_TOKEN
);
return
(
PARS_
L
E_TOKEN
);
}
}
YY_BREAK
YY_BREAK
case
86
:
case
86
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 48
2
"pars0lex.l"
#line 48
6
"pars0lex.l"
{
{
return
(
PARS_GE_TOKEN
);
return
((
int
)(
*
yytext
));
}
}
YY_BREAK
YY_BREAK
case
87
:
case
87
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 4
87
"pars0lex.l"
#line 4
90
"pars0lex.l"
{
{
return
(
PARS_NE_TOKEN
);
return
((
int
)(
*
yytext
));
}
}
YY_BREAK
YY_BREAK
case
88
:
case
88
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 49
2
"pars0lex.l"
#line 49
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1575,7 +1642,7 @@ YY_RULE_SETUP
...
@@ -1575,7 +1642,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
89
:
case
89
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 49
7
"pars0lex.l"
#line 49
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1583,7 +1650,7 @@ YY_RULE_SETUP
...
@@ -1583,7 +1650,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
90
:
case
90
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 50
2
"pars0lex.l"
#line 50
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1591,7 +1658,7 @@ YY_RULE_SETUP
...
@@ -1591,7 +1658,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
91
:
case
91
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 50
7
"pars0lex.l"
#line 50
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1599,7 +1666,7 @@ YY_RULE_SETUP
...
@@ -1599,7 +1666,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
92
:
case
92
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 51
2
"pars0lex.l"
#line 51
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1607,7 +1674,7 @@ YY_RULE_SETUP
...
@@ -1607,7 +1674,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
93
:
case
93
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 51
7
"pars0lex.l"
#line 51
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1615,7 +1682,7 @@ YY_RULE_SETUP
...
@@ -1615,7 +1682,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
94
:
case
94
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 52
2
"pars0lex.l"
#line 52
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1623,7 +1690,7 @@ YY_RULE_SETUP
...
@@ -1623,7 +1690,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
95
:
case
95
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 52
7
"pars0lex.l"
#line 52
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1631,7 +1698,7 @@ YY_RULE_SETUP
...
@@ -1631,7 +1698,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
96
:
case
96
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 53
2
"pars0lex.l"
#line 53
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1639,7 +1706,7 @@ YY_RULE_SETUP
...
@@ -1639,7 +1706,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
97
:
case
97
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 53
7
"pars0lex.l"
#line 53
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1647,7 +1714,7 @@ YY_RULE_SETUP
...
@@ -1647,7 +1714,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
98
:
case
98
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 54
2
"pars0lex.l"
#line 54
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1655,7 +1722,7 @@ YY_RULE_SETUP
...
@@ -1655,7 +1722,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
99
:
case
99
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 54
7
"pars0lex.l"
#line 54
9
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1663,7 +1730,7 @@ YY_RULE_SETUP
...
@@ -1663,7 +1730,7 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
100
:
case
100
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 55
2
"pars0lex.l"
#line 55
4
"pars0lex.l"
{
{
return
((
int
)(
*
yytext
));
return
((
int
)(
*
yytext
));
...
@@ -1671,32 +1738,51 @@ YY_RULE_SETUP
...
@@ -1671,32 +1738,51 @@ YY_RULE_SETUP
YY_BREAK
YY_BREAK
case
101
:
case
101
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 557 "pars0lex.l"
#line 559 "pars0lex.l"
BEGIN
(
comment
);
/* eat up comment */
{
return
((
int
)(
*
yytext
));
}
YY_BREAK
YY_BREAK
case
102
:
case
102
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 559 "pars0lex.l"
#line 564 "pars0lex.l"
{
return
((
int
)(
*
yytext
));
}
YY_BREAK
YY_BREAK
case
103
:
case
103
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 56
0
"pars0lex.l"
#line 56
9
"pars0lex.l"
BEGIN
(
comment
);
/* eat up comment */
YY_BREAK
YY_BREAK
case
104
:
case
104
:
/* rule 104 can match eol */
YY_RULE_SETUP
YY_RULE_SETUP
#line 5
6
1 "pars0lex.l"
#line 5
7
1 "pars0lex.l"
BEGIN
(
INITIAL
);
YY_BREAK
YY_BREAK
case
105
:
case
105
:
/* rule 105 can match eol */
YY_RULE_SETUP
YY_RULE_SETUP
#line 5
63
"pars0lex.l"
#line 5
72
"pars0lex.l"
/* eat up whitespace */
YY_BREAK
YY_BREAK
case
106
:
case
106
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 566 "pars0lex.l"
#line 573 "pars0lex.l"
BEGIN
(
INITIAL
);
YY_BREAK
case
107
:
/* rule 107 can match eol */
YY_RULE_SETUP
#line 575 "pars0lex.l"
/* eat up whitespace */
YY_BREAK
case
108
:
YY_RULE_SETUP
#line 578 "pars0lex.l"
{
{
fprintf
(
stderr
,
"Unrecognized character: %02x
\n
"
,
fprintf
(
stderr
,
"Unrecognized character: %02x
\n
"
,
*
yytext
);
*
yytext
);
...
@@ -1706,12 +1792,12 @@ YY_RULE_SETUP
...
@@ -1706,12 +1792,12 @@ YY_RULE_SETUP
return
(
0
);
return
(
0
);
}
}
YY_BREAK
YY_BREAK
case
10
7
:
case
10
9
:
YY_RULE_SETUP
YY_RULE_SETUP
#line 5
75
"pars0lex.l"
#line 5
87
"pars0lex.l"
YY_FATAL_ERROR
(
"flex scanner jammed"
);
YY_FATAL_ERROR
(
"flex scanner jammed"
);
YY_BREAK
YY_BREAK
#line 17
10
"lex.yy.c"
#line 17
99
"lex.yy.c"
case
YY_STATE_EOF
(
INITIAL
):
case
YY_STATE_EOF
(
INITIAL
):
case
YY_STATE_EOF
(
comment
):
case
YY_STATE_EOF
(
comment
):
case
YY_STATE_EOF
(
quoted
):
case
YY_STATE_EOF
(
quoted
):
...
@@ -1720,26 +1806,26 @@ case YY_STATE_EOF(quoted):
...
@@ -1720,26 +1806,26 @@ case YY_STATE_EOF(quoted):
case
YY_END_OF_BUFFER
:
case
YY_END_OF_BUFFER
:
{
{
/* Amount of text matched not including the EOB char. */
/* Amount of text matched not including the EOB char. */
int
yy_amount_of_matched_text
=
(
int
)
(
yy_cp
-
yytext_ptr
)
-
1
;
int
yy_amount_of_matched_text
=
(
int
)
(
yy_cp
-
(
yytext_ptr
)
)
-
1
;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*
yy_cp
=
yy_hold_char
;
*
yy_cp
=
(
yy_hold_char
)
;
YY_RESTORE_YY_MORE_OFFSET
YY_RESTORE_YY_MORE_OFFSET
if
(
yy_current_buffer
->
yy_buffer_status
==
YY_BUFFER_NEW
)
if
(
YY_CURRENT_BUFFER_LVALUE
->
yy_buffer_status
==
YY_BUFFER_NEW
)
{
{
/* We're scanning a new file or input source. It's
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* possible that this happened because the user
* just pointed yyin at a new source and called
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* yylex(). If so, then we have to assure
* consistency between
yy_current_buffer
and our
* consistency between
YY_CURRENT_BUFFER
and our
* globals. Here is the right place to do so, because
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
* back-up) that will match for the new input source.
*/
*/
yy_n_chars
=
yy_current_buffer
->
yy_n_chars
;
(
yy_n_chars
)
=
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
;
yy_current_buffer
->
yy_input_file
=
yyin
;
YY_CURRENT_BUFFER_LVALUE
->
yy_input_file
=
yyin
;
yy_current_buffer
->
yy_buffer_status
=
YY_BUFFER_NORMAL
;
YY_CURRENT_BUFFER_LVALUE
->
yy_buffer_status
=
YY_BUFFER_NORMAL
;
}
}
/* Note that here we test for yy_c_buf_p "<=" to the position
/* Note that here we test for yy_c_buf_p "<=" to the position
...
@@ -1749,13 +1835,13 @@ case YY_STATE_EOF(quoted):
...
@@ -1749,13 +1835,13 @@ case YY_STATE_EOF(quoted):
* end-of-buffer state). Contrast this with the test
* end-of-buffer state). Contrast this with the test
* in input().
* in input().
*/
*/
if
(
yy_c_buf_p
<=
&
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
]
)
if
(
(
yy_c_buf_p
)
<=
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
]
)
{
/* This was really a NUL. */
{
/* This was really a NUL. */
yy_state_type
yy_next_state
;
yy_state_type
yy_next_state
;
yy_c_buf_p
=
yytext_ptr
+
yy_amount_of_matched_text
;
(
yy_c_buf_p
)
=
(
yytext_ptr
)
+
yy_amount_of_matched_text
;
yy_current_state
=
yy_get_previous_state
();
yy_current_state
=
yy_get_previous_state
(
);
/* Okay, we're now positioned to make the NUL
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* transition. We couldn't have
...
@@ -1768,30 +1854,31 @@ case YY_STATE_EOF(quoted):
...
@@ -1768,30 +1854,31 @@ case YY_STATE_EOF(quoted):
yy_next_state
=
yy_try_NUL_trans
(
yy_current_state
);
yy_next_state
=
yy_try_NUL_trans
(
yy_current_state
);
yy_bp
=
yytext_ptr
+
YY_MORE_ADJ
;
yy_bp
=
(
yytext_ptr
)
+
YY_MORE_ADJ
;
if
(
yy_next_state
)
if
(
yy_next_state
)
{
{
/* Consume the NUL. */
/* Consume the NUL. */
yy_cp
=
++
yy_c_buf_p
;
yy_cp
=
++
(
yy_c_buf_p
)
;
yy_current_state
=
yy_next_state
;
yy_current_state
=
yy_next_state
;
goto
yy_match
;
goto
yy_match
;
}
}
else
else
{
{
yy_cp
=
yy_c_buf_p
;
yy_cp
=
(
yy_last_accepting_cpos
);
yy_current_state
=
(
yy_last_accepting_state
);
goto
yy_find_action
;
goto
yy_find_action
;
}
}
}
}
else
switch
(
yy_get_next_buffer
()
)
else
switch
(
yy_get_next_buffer
(
)
)
{
{
case
EOB_ACT_END_OF_FILE
:
case
EOB_ACT_END_OF_FILE
:
{
{
yy_did_buffer_switch_on_eof
=
0
;
(
yy_did_buffer_switch_on_eof
)
=
0
;
if
(
yywrap
()
)
if
(
yywrap
(
)
)
{
{
/* Note: because we've taken care in
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yy_get_next_buffer() to have set up
...
@@ -1802,7 +1889,7 @@ case YY_STATE_EOF(quoted):
...
@@ -1802,7 +1889,7 @@ case YY_STATE_EOF(quoted):
* YY_NULL, it'll still work - another
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
* YY_NULL will get returned.
*/
*/
yy_c_buf_p
=
yytext_ptr
+
YY_MORE_ADJ
;
(
yy_c_buf_p
)
=
(
yytext_ptr
)
+
YY_MORE_ADJ
;
yy_act
=
YY_STATE_EOF
(
YY_START
);
yy_act
=
YY_STATE_EOF
(
YY_START
);
goto
do_action
;
goto
do_action
;
...
@@ -1810,30 +1897,30 @@ case YY_STATE_EOF(quoted):
...
@@ -1810,30 +1897,30 @@ case YY_STATE_EOF(quoted):
else
else
{
{
if
(
!
yy_did_buffer_switch_on_eof
)
if
(
!
(
yy_did_buffer_switch_on_eof
)
)
YY_NEW_FILE
;
YY_NEW_FILE
;
}
}
break
;
break
;
}
}
case
EOB_ACT_CONTINUE_SCAN
:
case
EOB_ACT_CONTINUE_SCAN
:
yy_c_buf_p
=
(
yy_c_buf_p
)
=
yytext_ptr
+
yy_amount_of_matched_text
;
(
yytext_ptr
)
+
yy_amount_of_matched_text
;
yy_current_state
=
yy_get_previous_state
();
yy_current_state
=
yy_get_previous_state
(
);
yy_cp
=
yy_c_buf_p
;
yy_cp
=
(
yy_c_buf_p
)
;
yy_bp
=
yytext_ptr
+
YY_MORE_ADJ
;
yy_bp
=
(
yytext_ptr
)
+
YY_MORE_ADJ
;
goto
yy_match
;
goto
yy_match
;
case
EOB_ACT_LAST_MATCH
:
case
EOB_ACT_LAST_MATCH
:
yy_c_buf_p
=
(
yy_c_buf_p
)
=
&
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
];
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
];
yy_current_state
=
yy_get_previous_state
();
yy_current_state
=
yy_get_previous_state
(
);
yy_cp
=
yy_c_buf_p
;
yy_cp
=
(
yy_c_buf_p
)
;
yy_bp
=
yytext_ptr
+
YY_MORE_ADJ
;
yy_bp
=
(
yytext_ptr
)
+
YY_MORE_ADJ
;
goto
yy_find_action
;
goto
yy_find_action
;
}
}
break
;
break
;
...
@@ -1844,8 +1931,7 @@ case YY_STATE_EOF(quoted):
...
@@ -1844,8 +1931,7 @@ case YY_STATE_EOF(quoted):
"fatal flex scanner internal error--no action found"
);
"fatal flex scanner internal error--no action found"
);
}
/* end of action switch */
}
/* end of action switch */
}
/* end of scanning one token */
}
/* end of scanning one token */
}
/* end of yylex */
}
/* end of yylex */
/* yy_get_next_buffer - try to read in a new buffer
/* yy_get_next_buffer - try to read in a new buffer
*
*
...
@@ -1854,21 +1940,20 @@ case YY_STATE_EOF(quoted):
...
@@ -1854,21 +1940,20 @@ case YY_STATE_EOF(quoted):
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
* EOB_ACT_END_OF_FILE - end of file
*/
*/
static
int
yy_get_next_buffer
(
void
)
static
int
yy_get_next_buffer
()
{
{
register
char
*
dest
=
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
;
register
char
*
dest
=
yy_current_buffer
->
yy_ch_buf
;
register
char
*
source
=
(
yytext_ptr
);
register
char
*
source
=
yytext_ptr
;
register
int
number_to_move
,
i
;
register
int
number_to_move
,
i
;
int
ret_val
;
int
ret_val
;
if
(
yy_c_buf_p
>
&
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
+
1
]
)
if
(
(
yy_c_buf_p
)
>
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
+
1
]
)
YY_FATAL_ERROR
(
YY_FATAL_ERROR
(
"fatal flex scanner internal error--end of buffer missed"
);
"fatal flex scanner internal error--end of buffer missed"
);
if
(
yy_current_buffer
->
yy_fill_buffer
==
0
)
if
(
YY_CURRENT_BUFFER_LVALUE
->
yy_fill_buffer
==
0
)
{
/* Don't try to fill the buffer, so this is an EOF. */
{
/* Don't try to fill the buffer, so this is an EOF. */
if
(
yy_c_buf_p
-
yytext_ptr
-
YY_MORE_ADJ
==
1
)
if
(
(
yy_c_buf_p
)
-
(
yytext_ptr
)
-
YY_MORE_ADJ
==
1
)
{
{
/* We matched a single character, the EOB, so
/* We matched a single character, the EOB, so
* treat this as a final EOF.
* treat this as a final EOF.
...
@@ -1888,34 +1973,30 @@ static int yy_get_next_buffer()
...
@@ -1888,34 +1973,30 @@ static int yy_get_next_buffer()
/* Try to read more data. */
/* Try to read more data. */
/* First move last chars to start of buffer. */
/* First move last chars to start of buffer. */
number_to_move
=
(
int
)
(
yy_c_buf_p
-
yytext_ptr
)
-
1
;
number_to_move
=
(
int
)
(
(
yy_c_buf_p
)
-
(
yytext_ptr
)
)
-
1
;
for
(
i
=
0
;
i
<
number_to_move
;
++
i
)
for
(
i
=
0
;
i
<
number_to_move
;
++
i
)
*
(
dest
++
)
=
*
(
source
++
);
*
(
dest
++
)
=
*
(
source
++
);
if
(
yy_current_buffer
->
yy_buffer_status
==
YY_BUFFER_EOF_PENDING
)
if
(
YY_CURRENT_BUFFER_LVALUE
->
yy_buffer_status
==
YY_BUFFER_EOF_PENDING
)
/* don't do the read, it's not guaranteed to return an EOF,
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
* just force an EOF
*/
*/
yy_current_buffer
->
yy_n_chars
=
yy_n_chars
=
0
;
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
=
(
yy_n_chars
)
=
0
;
else
else
{
{
in
t
num_to_read
=
size_
t
num_to_read
=
yy_current_buffer
->
yy_buf_size
-
number_to_move
-
1
;
YY_CURRENT_BUFFER_LVALUE
->
yy_buf_size
-
number_to_move
-
1
;
while
(
num_to_read
<=
0
)
while
(
num_to_read
<=
0
)
{
/* Not enough room in the buffer - grow it. */
{
/* Not enough room in the buffer - grow it. */
#ifdef YY_USES_REJECT
YY_FATAL_ERROR
(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT"
);
#else
/* just a shorter name for the current buffer */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE
b
=
yy_current_buffer
;
YY_BUFFER_STATE
b
=
YY_CURRENT_BUFFER
;
int
yy_c_buf_p_offset
=
int
yy_c_buf_p_offset
=
(
int
)
(
yy_c_buf_p
-
b
->
yy_ch_buf
);
(
int
)
(
(
yy_c_buf_p
)
-
b
->
yy_ch_buf
);
if
(
b
->
yy_is_our_buffer
)
if
(
b
->
yy_is_our_buffer
)
{
{
...
@@ -1928,8 +2009,7 @@ static int yy_get_next_buffer()
...
@@ -1928,8 +2009,7 @@ static int yy_get_next_buffer()
b
->
yy_ch_buf
=
(
char
*
)
b
->
yy_ch_buf
=
(
char
*
)
/* Include room in for 2 EOB chars. */
/* Include room in for 2 EOB chars. */
yy_flex_realloc
(
(
void
*
)
b
->
yy_ch_buf
,
yyrealloc
((
void
*
)
b
->
yy_ch_buf
,
b
->
yy_buf_size
+
2
);
b
->
yy_buf_size
+
2
);
}
}
else
else
/* Can't grow it, we don't own it. */
/* Can't grow it, we don't own it. */
...
@@ -1939,35 +2019,35 @@ static int yy_get_next_buffer()
...
@@ -1939,35 +2019,35 @@ static int yy_get_next_buffer()
YY_FATAL_ERROR
(
YY_FATAL_ERROR
(
"fatal error - scanner input buffer overflow"
);
"fatal error - scanner input buffer overflow"
);
yy_c_buf_p
=
&
b
->
yy_ch_buf
[
yy_c_buf_p_offset
];
(
yy_c_buf_p
)
=
&
b
->
yy_ch_buf
[
yy_c_buf_p_offset
];
num_to_read
=
yy_current_buffer
->
yy_buf_size
-
num_to_read
=
YY_CURRENT_BUFFER_LVALUE
->
yy_buf_size
-
number_to_move
-
1
;
number_to_move
-
1
;
#endif
}
}
if
(
num_to_read
>
YY_READ_BUF_SIZE
)
if
(
num_to_read
>
YY_READ_BUF_SIZE
)
num_to_read
=
YY_READ_BUF_SIZE
;
num_to_read
=
YY_READ_BUF_SIZE
;
/* Read in more data. */
/* Read in more data. */
YY_INPUT
(
(
&
yy_current_buffer
->
yy_ch_buf
[
number_to_move
]),
YY_INPUT
(
(
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[
number_to_move
]),
yy_n_chars
,
num_to_read
);
(
yy_n_chars
)
,
num_to_read
);
yy_current_buffer
->
yy_n_chars
=
yy_n_chars
;
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
=
(
yy_n_chars
)
;
}
}
if
(
yy_n_chars
==
0
)
if
(
(
yy_n_chars
)
==
0
)
{
{
if
(
number_to_move
==
YY_MORE_ADJ
)
if
(
number_to_move
==
YY_MORE_ADJ
)
{
{
ret_val
=
EOB_ACT_END_OF_FILE
;
ret_val
=
EOB_ACT_END_OF_FILE
;
yyrestart
(
yyin
);
yyrestart
(
yyin
);
}
}
else
else
{
{
ret_val
=
EOB_ACT_LAST_MATCH
;
ret_val
=
EOB_ACT_LAST_MATCH
;
yy_current_buffer
->
yy_buffer_status
=
YY_CURRENT_BUFFER_LVALUE
->
yy_buffer_status
=
YY_BUFFER_EOF_PENDING
;
YY_BUFFER_EOF_PENDING
;
}
}
}
}
...
@@ -1975,152 +2055,100 @@ static int yy_get_next_buffer()
...
@@ -1975,152 +2055,100 @@ static int yy_get_next_buffer()
else
else
ret_val
=
EOB_ACT_CONTINUE_SCAN
;
ret_val
=
EOB_ACT_CONTINUE_SCAN
;
yy_n_chars
+=
number_to_move
;
(
yy_n_chars
)
+=
number_to_move
;
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
]
=
YY_END_OF_BUFFER_CHAR
;
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
]
=
YY_END_OF_BUFFER_CHAR
;
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
+
1
]
=
YY_END_OF_BUFFER_CHAR
;
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
+
1
]
=
YY_END_OF_BUFFER_CHAR
;
yytext_ptr
=
&
yy_current_buffer
->
yy_ch_buf
[
0
];
(
yytext_ptr
)
=
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[
0
];
return
ret_val
;
return
ret_val
;
}
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
/* yy_get_previous_state - get the state just before the EOB char was reached */
static
yy_state_type
yy_get_previous_state
(
)
static
yy_state_type
yy_get_previous_state
(
void
)
{
{
register
yy_state_type
yy_current_state
;
register
yy_state_type
yy_current_state
;
register
char
*
yy_cp
;
register
char
*
yy_cp
;
yy_current_state
=
(
yy_start
);
yy_current_state
=
yy_start
;
for
(
yy_cp
=
(
yytext_ptr
)
+
YY_MORE_ADJ
;
yy_cp
<
(
yy_c_buf_p
);
++
yy_cp
)
for
(
yy_cp
=
yytext_ptr
+
YY_MORE_ADJ
;
yy_cp
<
yy_c_buf_p
;
++
yy_cp
)
{
{
register
YY_CHAR
yy_c
=
(
*
yy_cp
?
yy_ec
[
YY_SC_TO_UI
(
*
yy_cp
)]
:
1
);
register
YY_CHAR
yy_c
=
(
*
yy_cp
?
yy_ec
[
YY_SC_TO_UI
(
*
yy_cp
)]
:
1
);
if
(
yy_accept
[
yy_current_state
]
)
if
(
yy_accept
[
yy_current_state
]
)
{
{
yy_last_accepting_state
=
yy_current_state
;
(
yy_last_accepting_state
)
=
yy_current_state
;
yy_last_accepting_cpos
=
yy_cp
;
(
yy_last_accepting_cpos
)
=
yy_cp
;
}
}
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
{
{
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
if
(
yy_current_state
>=
3
67
)
if
(
yy_current_state
>=
3
70
)
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
}
}
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
}
}
return
yy_current_state
;
return
yy_current_state
;
}
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
*
* synopsis
* synopsis
* next_state = yy_try_NUL_trans( current_state );
* next_state = yy_try_NUL_trans( current_state );
*/
*/
static
yy_state_type
yy_try_NUL_trans
(
yy_state_type
yy_current_state
)
#ifdef YY_USE_PROTOS
{
static
yy_state_type
yy_try_NUL_trans
(
yy_state_type
yy_current_state
)
#else
static
yy_state_type
yy_try_NUL_trans
(
yy_current_state
)
yy_state_type
yy_current_state
;
#endif
{
register
int
yy_is_jam
;
register
int
yy_is_jam
;
register
char
*
yy_cp
=
yy_c_buf_p
;
register
char
*
yy_cp
=
(
yy_c_buf_p
)
;
register
YY_CHAR
yy_c
=
1
;
register
YY_CHAR
yy_c
=
1
;
if
(
yy_accept
[
yy_current_state
]
)
if
(
yy_accept
[
yy_current_state
]
)
{
{
yy_last_accepting_state
=
yy_current_state
;
(
yy_last_accepting_state
)
=
yy_current_state
;
yy_last_accepting_cpos
=
yy_cp
;
(
yy_last_accepting_cpos
)
=
yy_cp
;
}
}
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
while
(
yy_chk
[
yy_base
[
yy_current_state
]
+
yy_c
]
!=
yy_current_state
)
{
{
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
yy_current_state
=
(
int
)
yy_def
[
yy_current_state
];
if
(
yy_current_state
>=
3
67
)
if
(
yy_current_state
>=
3
70
)
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
yy_c
=
yy_meta
[(
unsigned
int
)
yy_c
];
}
}
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
yy_current_state
=
yy_nxt
[
yy_base
[
yy_current_state
]
+
(
unsigned
int
)
yy_c
];
yy_is_jam
=
(
yy_current_state
==
36
6
);
yy_is_jam
=
(
yy_current_state
==
36
9
);
return
yy_is_jam
?
0
:
yy_current_state
;
return
yy_is_jam
?
0
:
yy_current_state
;
}
}
#ifndef YY_NO_UNPUT
#ifdef YY_USE_PROTOS
static
void
yyunput
(
int
c
,
register
char
*
yy_bp
)
#else
static
void
yyunput
(
c
,
yy_bp
)
int
c
;
register
char
*
yy_bp
;
#endif
{
register
char
*
yy_cp
=
yy_c_buf_p
;
/* undo effects of setting up yytext */
*
yy_cp
=
yy_hold_char
;
if
(
yy_cp
<
yy_current_buffer
->
yy_ch_buf
+
2
)
{
/* need to shift things up to make room */
/* +2 for EOB chars. */
register
int
number_to_move
=
yy_n_chars
+
2
;
register
char
*
dest
=
&
yy_current_buffer
->
yy_ch_buf
[
yy_current_buffer
->
yy_buf_size
+
2
];
register
char
*
source
=
&
yy_current_buffer
->
yy_ch_buf
[
number_to_move
];
while
(
source
>
yy_current_buffer
->
yy_ch_buf
)
*--
dest
=
*--
source
;
yy_cp
+=
(
int
)
(
dest
-
source
);
yy_bp
+=
(
int
)
(
dest
-
source
);
yy_current_buffer
->
yy_n_chars
=
yy_n_chars
=
yy_current_buffer
->
yy_buf_size
;
if
(
yy_cp
<
yy_current_buffer
->
yy_ch_buf
+
2
)
YY_FATAL_ERROR
(
"flex scanner push-back overflow"
);
}
*--
yy_cp
=
(
char
)
c
;
yytext_ptr
=
yy_bp
;
yy_hold_char
=
*
yy_cp
;
yy_c_buf_p
=
yy_cp
;
}
#endif
/* ifndef YY_NO_UNPUT */
#ifndef YY_NO_INPUT
#ifdef __cplusplus
#ifdef __cplusplus
static
int
yyinput
(
)
static
int
yyinput
(
void
)
#else
#else
static
int
input
(
)
static
int
input
(
void
)
#endif
#endif
{
int
c
;
*
yy_c_buf_p
=
yy_hold_char
;
{
int
c
;
*
(
yy_c_buf_p
)
=
(
yy_hold_char
);
if
(
*
yy_c_buf_p
==
YY_END_OF_BUFFER_CHAR
)
if
(
*
(
yy_c_buf_p
)
==
YY_END_OF_BUFFER_CHAR
)
{
{
/* yy_c_buf_p now points to the character we want to return.
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
* valid NUL; if not, then we've hit the end of the buffer.
*/
*/
if
(
yy_c_buf_p
<
&
yy_current_buffer
->
yy_ch_buf
[
yy_n_chars
]
)
if
(
(
yy_c_buf_p
)
<
&
YY_CURRENT_BUFFER_LVALUE
->
yy_ch_buf
[(
yy_n_chars
)
]
)
/* This was really a NUL. */
/* This was really a NUL. */
*
yy_c_buf_p
=
'\0'
;
*
(
yy_c_buf_p
)
=
'\0'
;
else
else
{
/* need more input */
{
/* need more input */
int
offset
=
(
int
)
(
yy_c_buf_p
-
yytext_ptr
);
int
offset
=
(
int
)
(
yy_c_buf_p
-
yytext_ptr
);
++
yy_c_buf_p
;
++
(
yy_c_buf_p
)
;
switch
(
yy_get_next_buffer
()
)
switch
(
yy_get_next_buffer
(
)
)
{
{
case
EOB_ACT_LAST_MATCH
:
case
EOB_ACT_LAST_MATCH
:
/* This happens because yy_g_n_b()
/* This happens because yy_g_n_b()
...
@@ -2134,16 +2162,16 @@ static int input()
...
@@ -2134,16 +2162,16 @@ static int input()
*/
*/
/* Reset buffer status. */
/* Reset buffer status. */
yyrestart
(
yyin
);
yyrestart
(
yyin
);
/*
fall through
*/
/*
FALLTHROUGH
*/
case
EOB_ACT_END_OF_FILE
:
case
EOB_ACT_END_OF_FILE
:
{
{
if
(
yywrap
()
)
if
(
yywrap
(
)
)
return
EOF
;
return
EOF
;
if
(
!
yy_did_buffer_switch_on_eof
)
if
(
!
(
yy_did_buffer_switch_on_eof
)
)
YY_NEW_FILE
;
YY_NEW_FILE
;
#ifdef __cplusplus
#ifdef __cplusplus
return
yyinput
();
return
yyinput
();
...
@@ -2153,90 +2181,92 @@ static int input()
...
@@ -2153,90 +2181,92 @@ static int input()
}
}
case
EOB_ACT_CONTINUE_SCAN
:
case
EOB_ACT_CONTINUE_SCAN
:
yy_c_buf_p
=
yytext_ptr
+
offset
;
(
yy_c_buf_p
)
=
(
yytext_ptr
)
+
offset
;
break
;
break
;
}
}
}
}
}
}
c
=
*
(
unsigned
char
*
)
yy_c_buf_p
;
/* cast for 8-bit char's */
c
=
*
(
unsigned
char
*
)
(
yy_c_buf_p
);
/* cast for 8-bit char's */
*
yy_c_buf_p
=
'\0'
;
/* preserve yytext */
*
(
yy_c_buf_p
)
=
'\0'
;
/* preserve yytext */
yy_hold_char
=
*++
yy_c_buf_p
;
(
yy_hold_char
)
=
*++
(
yy_c_buf_p
);
return
c
;
return
c
;
}
}
#endif
/* ifndef YY_NO_INPUT */
#ifdef YY_USE_PROTOS
void
yyrestart
(
FILE
*
input_file
)
#else
void
yyrestart
(
input_file
)
FILE
*
input_file
;
#endif
{
if
(
!
yy_current_buffer
)
yy_current_buffer
=
yy_create_buffer
(
yyin
,
YY_BUF_SIZE
);
yy_init_buffer
(
yy_current_buffer
,
input_file
);
/** Immediately switch to a different input stream.
yy_load_buffer_state
();
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void
yyrestart
(
FILE
*
input_file
)
{
if
(
!
YY_CURRENT_BUFFER
){
yyensure_buffer_stack
();
YY_CURRENT_BUFFER_LVALUE
=
yy_create_buffer
(
yyin
,
YY_BUF_SIZE
);
}
}
yy_init_buffer
(
YY_CURRENT_BUFFER
,
input_file
);
yy_load_buffer_state
(
);
}
#ifdef YY_USE_PROTOS
/** Switch to a different input buffer.
void
yy_switch_to_buffer
(
YY_BUFFER_STATE
new_buffer
)
* @param new_buffer The new input buffer.
#else
*
void
yy_switch_to_buffer
(
new_buffer
)
*/
YY_BUFFER_STATE
new_buffer
;
void
yy_switch_to_buffer
(
YY_BUFFER_STATE
new_buffer
)
#endif
{
{
if
(
yy_current_buffer
==
new_buffer
)
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack
();
if
(
YY_CURRENT_BUFFER
==
new_buffer
)
return
;
return
;
if
(
yy_current_buffer
)
if
(
YY_CURRENT_BUFFER
)
{
{
/* Flush out information for old buffer. */
/* Flush out information for old buffer. */
*
yy_c_buf_p
=
yy_hold_char
;
*
(
yy_c_buf_p
)
=
(
yy_hold_char
)
;
yy_current_buffer
->
yy_buf_pos
=
yy_c_buf_p
;
YY_CURRENT_BUFFER_LVALUE
->
yy_buf_pos
=
(
yy_c_buf_p
)
;
yy_current_buffer
->
yy_n_chars
=
yy_n_chars
;
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
=
(
yy_n_chars
)
;
}
}
yy_current_buffer
=
new_buffer
;
YY_CURRENT_BUFFER_LVALUE
=
new_buffer
;
yy_load_buffer_state
();
yy_load_buffer_state
(
);
/* We don't actually know whether we did this switch during
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
* to go ahead and always set it.
*/
*/
yy_did_buffer_switch_on_eof
=
1
;
(
yy_did_buffer_switch_on_eof
)
=
1
;
}
}
#ifdef YY_USE_PROTOS
void
yy_load_buffer_state
(
void
)
#else
void
yy_load_buffer_state
()
#endif
{
yy_n_chars
=
yy_current_buffer
->
yy_n_chars
;
yytext_ptr
=
yy_c_buf_p
=
yy_current_buffer
->
yy_buf_pos
;
yyin
=
yy_current_buffer
->
yy_input_file
;
yy_hold_char
=
*
yy_c_buf_p
;
}
static
void
yy_load_buffer_state
(
void
)
{
(
yy_n_chars
)
=
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
;
(
yytext_ptr
)
=
(
yy_c_buf_p
)
=
YY_CURRENT_BUFFER_LVALUE
->
yy_buf_pos
;
yyin
=
YY_CURRENT_BUFFER_LVALUE
->
yy_input_file
;
(
yy_hold_char
)
=
*
(
yy_c_buf_p
);
}
#ifdef YY_USE_PROTOS
/** Allocate and initialize an input buffer state.
YY_BUFFER_STATE
yy_create_buffer
(
FILE
*
file
,
int
size
)
* @param file A readable stream.
#else
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
YY_BUFFER_STATE
yy_create_buffer
(
file
,
size
)
*
FILE
*
file
;
* @return the allocated buffer state.
int
size
;
*/
#endif
YY_BUFFER_STATE
yy_create_buffer
(
FILE
*
file
,
int
size
)
{
{
YY_BUFFER_STATE
b
;
YY_BUFFER_STATE
b
;
b
=
(
YY_BUFFER_STATE
)
yy
_flex_alloc
(
sizeof
(
struct
yy_buffer_state
)
);
b
=
(
YY_BUFFER_STATE
)
yy
alloc
(
sizeof
(
struct
yy_buffer_state
)
);
if
(
!
b
)
if
(
!
b
)
YY_FATAL_ERROR
(
"out of dynamic memory in yy_create_buffer()"
);
YY_FATAL_ERROR
(
"out of dynamic memory in yy_create_buffer()"
);
...
@@ -2245,80 +2275,71 @@ int size;
...
@@ -2245,80 +2275,71 @@ int size;
/* yy_ch_buf has to be 2 characters longer than the size given because
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
* we need to put in 2 end-of-buffer characters.
*/
*/
b
->
yy_ch_buf
=
(
char
*
)
yy
_flex_alloc
(
b
->
yy_buf_size
+
2
);
b
->
yy_ch_buf
=
(
char
*
)
yy
alloc
(
b
->
yy_buf_size
+
2
);
if
(
!
b
->
yy_ch_buf
)
if
(
!
b
->
yy_ch_buf
)
YY_FATAL_ERROR
(
"out of dynamic memory in yy_create_buffer()"
);
YY_FATAL_ERROR
(
"out of dynamic memory in yy_create_buffer()"
);
b
->
yy_is_our_buffer
=
1
;
b
->
yy_is_our_buffer
=
1
;
yy_init_buffer
(
b
,
file
);
yy_init_buffer
(
b
,
file
);
return
b
;
return
b
;
}
}
#ifdef YY_USE_PROTOS
/** Destroy the buffer.
void
yy_delete_buffer
(
YY_BUFFER_STATE
b
)
* @param b a buffer created with yy_create_buffer(
)
#else
*
void
yy_delete_buffer
(
b
)
*/
YY_BUFFER_STATE
b
;
void
yy_delete_buffer
(
YY_BUFFER_STATE
b
)
#endif
{
{
if
(
!
b
)
if
(
!
b
)
return
;
return
;
if
(
b
==
yy_current_buffer
)
if
(
b
==
YY_CURRENT_BUFFER
)
/* Not sure if we should pop here. */
yy_current_buffer
=
(
YY_BUFFER_STATE
)
0
;
YY_CURRENT_BUFFER_LVALUE
=
(
YY_BUFFER_STATE
)
0
;
if
(
b
->
yy_is_our_buffer
)
if
(
b
->
yy_is_our_buffer
)
yy
_flex_free
(
(
void
*
)
b
->
yy_ch_buf
);
yy
free
((
void
*
)
b
->
yy_ch_buf
);
yy_flex_free
(
(
void
*
)
b
);
yyfree
((
void
*
)
b
);
}
}
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern
int
isatty
YY_PROTO
((
int
));
#endif
#endif
#ifdef YY_USE_PROTOS
void
yy_init_buffer
(
YY_BUFFER_STATE
b
,
FILE
*
file
)
#else
void
yy_init_buffer
(
b
,
file
)
YY_BUFFER_STATE
b
;
FILE
*
file
;
#endif
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static
void
yy_init_buffer
(
YY_BUFFER_STATE
b
,
FILE
*
file
)
{
{
yy_flush_buffer
(
b
);
int
oerrno
=
errno
;
yy_flush_buffer
(
b
);
b
->
yy_input_file
=
file
;
b
->
yy_input_file
=
file
;
b
->
yy_fill_buffer
=
1
;
b
->
yy_fill_buffer
=
1
;
#if YY_ALWAYS_INTERACTIVE
/* If b is the current buffer, then yy_init_buffer was _probably_
b
->
yy_is_interactive
=
1
;
* called from yyrestart() or through yy_get_next_buffer.
#else
* In that case, we don't want to reset the lineno or column.
#if YY_NEVER_INTERACTIVE
*/
b
->
yy_is_interactive
=
0
;
if
(
b
!=
YY_CURRENT_BUFFER
){
#else
b
->
yy_bs_lineno
=
1
;
b
->
yy_is_interactive
=
file
?
(
isatty
(
fileno
(
file
)
)
>
0
)
:
0
;
b
->
yy_bs_column
=
0
;
#endif
}
#endif
}
#ifdef YY_USE_PROTOS
b
->
yy_is_interactive
=
0
;
void
yy_flush_buffer
(
YY_BUFFER_STATE
b
)
#else
errno
=
oerrno
;
void
yy_flush_buffer
(
b
)
}
YY_BUFFER_STATE
b
;
#endif
{
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
if
(
!
b
)
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void
yy_flush_buffer
(
YY_BUFFER_STATE
b
)
{
if
(
!
b
)
return
;
return
;
b
->
yy_n_chars
=
0
;
b
->
yy_n_chars
=
0
;
...
@@ -2335,243 +2356,260 @@ YY_BUFFER_STATE b;
...
@@ -2335,243 +2356,260 @@ YY_BUFFER_STATE b;
b
->
yy_at_bol
=
1
;
b
->
yy_at_bol
=
1
;
b
->
yy_buffer_status
=
YY_BUFFER_NEW
;
b
->
yy_buffer_status
=
YY_BUFFER_NEW
;
if
(
b
==
yy_current_buffer
)
if
(
b
==
YY_CURRENT_BUFFER
)
yy_load_buffer_state
();
yy_load_buffer_state
(
);
}
}
#ifndef YY_NO_SCAN_BUFFER
/** Pushes the new state onto the stack. The new state becomes
#ifdef YY_USE_PROTOS
* the current state. This function will allocate the stack
YY_BUFFER_STATE
yy_scan_buffer
(
char
*
base
,
yy_size_t
size
)
* if necessary.
#else
* @param new_buffer The new state.
YY_BUFFER_STATE
yy_scan_buffer
(
base
,
size
)
*
char
*
base
;
*/
yy_size_t
size
;
void
yypush_buffer_state
(
YY_BUFFER_STATE
new_buffer
)
#endif
{
{
if
(
new_buffer
==
NULL
)
YY_BUFFER_STATE
b
;
return
;
if
(
size
<
2
||
yyensure_buffer_stack
();
base
[
size
-
2
]
!=
YY_END_OF_BUFFER_CHAR
||
base
[
size
-
1
]
!=
YY_END_OF_BUFFER_CHAR
)
/* They forgot to leave room for the EOB's. */
return
0
;
b
=
(
YY_BUFFER_STATE
)
yy_flex_alloc
(
sizeof
(
struct
yy_buffer_state
)
);
/* This block is copied from yy_switch_to_buffer. */
if
(
!
b
)
if
(
YY_CURRENT_BUFFER
)
YY_FATAL_ERROR
(
"out of dynamic memory in yy_scan_buffer()"
);
{
/* Flush out information for old buffer. */
b
->
yy_buf_size
=
size
-
2
;
/* "- 2" to take care of EOB's */
*
(
yy_c_buf_p
)
=
(
yy_hold_char
);
b
->
yy_buf_pos
=
b
->
yy_ch_buf
=
base
;
YY_CURRENT_BUFFER_LVALUE
->
yy_buf_pos
=
(
yy_c_buf_p
);
b
->
yy_is_our_buffer
=
0
;
YY_CURRENT_BUFFER_LVALUE
->
yy_n_chars
=
(
yy_n_chars
);
b
->
yy_input_file
=
0
;
}
b
->
yy_n_chars
=
b
->
yy_buf_size
;
b
->
yy_is_interactive
=
0
;
b
->
yy_at_bol
=
1
;
b
->
yy_fill_buffer
=
0
;
b
->
yy_buffer_status
=
YY_BUFFER_NEW
;
yy_switch_to_buffer
(
b
);
/* Only push if top exists. Otherwise, replace top. */
if
(
YY_CURRENT_BUFFER
)
(
yy_buffer_stack_top
)
++
;
YY_CURRENT_BUFFER_LVALUE
=
new_buffer
;
return
b
;
/* copied from yy_switch_to_buffer. */
}
yy_load_buffer_state
(
);
#endif
(
yy_did_buffer_switch_on_eof
)
=
1
;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void
yypop_buffer_state
(
void
)
{
if
(
!
YY_CURRENT_BUFFER
)
return
;
#ifndef YY_NO_SCAN_STRING
yy_delete_buffer
(
YY_CURRENT_BUFFER
);
#ifdef YY_USE_PROTOS
YY_CURRENT_BUFFER_LVALUE
=
NULL
;
YY_BUFFER_STATE
yy_scan_string
(
yyconst
char
*
yy_str
)
if
((
yy_buffer_stack_top
)
>
0
)
#else
--
(
yy_buffer_stack_top
);
YY_BUFFER_STATE
yy_scan_string
(
yy_str
)
yyconst
char
*
yy_str
;
#endif
{
int
len
;
for
(
len
=
0
;
yy_str
[
len
];
++
len
)
;
return
yy_scan_bytes
(
yy_str
,
len
);
if
(
YY_CURRENT_BUFFER
)
{
yy_load_buffer_state
(
);
(
yy_did_buffer_switch_on_eof
)
=
1
;
}
}
#endif
}
#ifndef YY_NO_SCAN_BYTES
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE
yy_scan_bytes
(
yyconst
char
*
bytes
,
int
len
)
#else
YY_BUFFER_STATE
yy_scan_bytes
(
bytes
,
len
)
yyconst
char
*
bytes
;
int
len
;
#endif
{
YY_BUFFER_STATE
b
;
char
*
buf
;
yy_size_t
n
;
int
i
;
/* Get memory for full buffer, including space for trailing EOB's. */
n
=
len
+
2
;
buf
=
(
char
*
)
yy_flex_alloc
(
n
);
if
(
!
buf
)
YY_FATAL_ERROR
(
"out of dynamic memory in yy_scan_bytes()"
);
for
(
i
=
0
;
i
<
len
;
++
i
)
/* Allocates the stack if it does not exist.
buf
[
i
]
=
bytes
[
i
];
* Guarantees space for at least one push.
*/
static
void
yyensure_buffer_stack
(
void
)
{
int
num_to_alloc
;
if
(
!
(
yy_buffer_stack
))
{
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc
=
1
;
(
yy_buffer_stack
)
=
(
struct
yy_buffer_state
**
)
yyalloc
(
num_to_alloc
*
sizeof
(
struct
yy_buffer_state
*
)
);
memset
((
yy_buffer_stack
),
0
,
num_to_alloc
*
sizeof
(
struct
yy_buffer_state
*
));
(
yy_buffer_stack_max
)
=
num_to_alloc
;
(
yy_buffer_stack_top
)
=
0
;
return
;
}
buf
[
len
]
=
buf
[
len
+
1
]
=
YY_END_OF_BUFFER_CHAR
;
if
((
yy_buffer_stack_top
)
>=
((
yy_buffer_stack_max
))
-
1
){
b
=
yy_scan_buffer
(
buf
,
n
);
/* Increase the buffer to prepare for a possible push. */
if
(
!
b
)
int
grow_size
=
8
/* arbitrary grow size */
;
YY_FATAL_ERROR
(
"bad buffer in yy_scan_bytes()"
);
/* It's okay to grow etc. this buffer, and we should throw it
num_to_alloc
=
(
yy_buffer_stack_max
)
+
grow_size
;
* away when we're done.
(
yy_buffer_stack
)
=
(
struct
yy_buffer_state
**
)
yyrealloc
*/
((
yy_buffer_stack
),
b
->
yy_is_our_buffer
=
1
;
num_to_alloc
*
sizeof
(
struct
yy_buffer_state
*
)
);
return
b
;
/* zero only the new slots.*/
memset
((
yy_buffer_stack
)
+
(
yy_buffer_stack_max
),
0
,
grow_size
*
sizeof
(
struct
yy_buffer_state
*
));
(
yy_buffer_stack_max
)
=
num_to_alloc
;
}
}
#endif
}
#ifndef YY_NO_PUSH_STATE
#ifndef YY_EXIT_FAILURE
#ifdef YY_USE_PROTOS
#define YY_EXIT_FAILURE 2
static
void
yy_push_state
(
int
new_state
)
#else
static
void
yy_push_state
(
new_state
)
int
new_state
;
#endif
#endif
{
if
(
yy_start_stack_ptr
>=
yy_start_stack_depth
)
{
yy_size_t
new_size
;
yy_start_stack_depth
+=
YY_START_STACK_INCR
;
static
void
yy_fatal_error
(
yyconst
char
*
msg
)
new_size
=
yy_start_stack_depth
*
sizeof
(
int
);
{
(
void
)
fprintf
(
stderr
,
"%s
\n
"
,
msg
);
exit
(
YY_EXIT_FAILURE
);
}
if
(
!
yy_start_stack
)
/* Redefine yyless() so it works in section 3 code. */
yy_start_stack
=
(
int
*
)
yy_flex_alloc
(
new_size
);
else
#undef yyless
yy_start_stack
=
(
int
*
)
yy_flex_realloc
(
#define yyless(n) \
(
void
*
)
yy_start_stack
,
new_size
);
do \
{ \
/* Undo effects of setting up yytext. */
\
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = (yy_hold_char); \
(yy_c_buf_p) = yytext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
if
(
!
yy_start_stack
)
/* Accessor methods (get/set functions) to struct members. */
YY_FATAL_ERROR
(
"out of memory expanding start-condition stack"
);
}
yy_start_stack
[
yy_start_stack_ptr
++
]
=
YY_START
;
/** Get the current line number.
*
*/
int
yyget_lineno
(
void
)
{
return
yylineno
;
}
BEGIN
(
new_state
);
/** Get the input stream.
}
*
#endif
*/
FILE
*
yyget_in
(
void
)
{
return
yyin
;
}
/** Get the output stream.
*
*/
FILE
*
yyget_out
(
void
)
{
return
yyout
;
}
#ifndef YY_NO_POP_STATE
/** Get the length of the current token.
static
void
yy_pop_state
()
*
{
*/
if
(
--
yy_start_stack_ptr
<
0
)
int
yyget_leng
(
void
)
YY_FATAL_ERROR
(
"start-condition stack underflow"
);
{
return
yyleng
;
}
BEGIN
(
yy_start_stack
[
yy_start_stack_ptr
]);
/** Get the current token.
}
*
#endif
*/
char
*
yyget_text
(
void
)
{
return
yytext
;
}
#ifndef YY_NO_TOP_STATE
/** Set the current line number.
static
int
yy_top_state
()
* @param line_number
{
*
return
yy_start_stack
[
yy_start_stack_ptr
-
1
];
*/
}
void
yyset_lineno
(
int
line_number
)
#endif
{
yylineno
=
line_number
;
}
#ifndef YY_EXIT_FAILURE
/** Set the input stream. This does not discard the current
#define YY_EXIT_FAILURE 2
* input buffer.
#endif
* @param in_str A readable stream.
*
* @see yy_switch_to_buffer
*/
void
yyset_in
(
FILE
*
in_str
)
{
yyin
=
in_str
;
}
#ifdef YY_USE_PROTOS
void
yyset_out
(
FILE
*
out_str
)
static
void
yy_fatal_error
(
yyconst
char
msg
[]
)
{
#else
yyout
=
out_str
;
static
void
yy_fatal_error
(
msg
)
}
char
msg
[];
#endif
{
(
void
)
fprintf
(
stderr
,
"%s
\n
"
,
msg
);
exit
(
YY_EXIT_FAILURE
);
}
int
yyget_debug
(
void
)
{
return
yy_flex_debug
;
}
void
yyset_debug
(
int
bdebug
)
{
yy_flex_debug
=
bdebug
;
}
/* Redefine yyless() so it works in section 3 code. */
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int
yylex_destroy
(
void
)
{
/* Pop the buffer stack, destroying each element. */
while
(
YY_CURRENT_BUFFER
){
yy_delete_buffer
(
YY_CURRENT_BUFFER
);
YY_CURRENT_BUFFER_LVALUE
=
NULL
;
yypop_buffer_state
();
}
#undef yyless
/* Destroy the stack itself. */
#define yyless(n) \
yyfree
((
yy_buffer_stack
)
);
do \
(
yy_buffer_stack
)
=
NULL
;
{ \
/* Undo effects of setting up yytext. */
\
yytext[yyleng] = yy_hold_char; \
yy_c_buf_p = yytext + n; \
yy_hold_char = *yy_c_buf_p; \
*yy_c_buf_p = '\0'; \
yyleng = n; \
} \
while ( 0 )
return
0
;
}
/* Internal utility routines. */
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static
void
yy_flex_strncpy
(
char
*
s1
,
yyconst
char
*
s2
,
int
n
)
static
void
yy_flex_strncpy
(
char
*
s1
,
yyconst
char
*
s2
,
int
n
)
{
#else
static
void
yy_flex_strncpy
(
s1
,
s2
,
n
)
char
*
s1
;
yyconst
char
*
s2
;
int
n
;
#endif
{
register
int
i
;
register
int
i
;
for
(
i
=
0
;
i
<
n
;
++
i
)
for
(
i
=
0
;
i
<
n
;
++
i
)
s1
[
i
]
=
s2
[
i
];
s1
[
i
]
=
s2
[
i
];
}
}
#endif
#endif
#ifdef YY_NEED_STRLEN
#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static
int
yy_flex_strlen
(
yyconst
char
*
s
)
static
int
yy_flex_strlen
(
yyconst
char
*
s
)
{
#else
static
int
yy_flex_strlen
(
s
)
yyconst
char
*
s
;
#endif
{
register
int
n
;
register
int
n
;
for
(
n
=
0
;
s
[
n
];
++
n
)
for
(
n
=
0
;
s
[
n
];
++
n
)
;
;
return
n
;
return
n
;
}
}
#endif
#endif
void
*
yyalloc
(
yy_size_t
size
)
#ifdef YY_USE_PROTOS
{
static
void
*
yy_flex_alloc
(
yy_size_t
size
)
#else
static
void
*
yy_flex_alloc
(
size
)
yy_size_t
size
;
#endif
{
return
(
void
*
)
malloc
(
size
);
return
(
void
*
)
malloc
(
size
);
}
}
#ifdef YY_USE_PROTOS
void
*
yyrealloc
(
void
*
ptr
,
yy_size_t
size
)
static
void
*
yy_flex_realloc
(
void
*
ptr
,
yy_size_t
size
)
{
#else
static
void
*
yy_flex_realloc
(
ptr
,
size
)
void
*
ptr
;
yy_size_t
size
;
#endif
{
/* The cast to (char *) in the following accommodates both
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* that use void* generic pointers. It works with the latter
...
@@ -2580,24 +2618,28 @@ yy_size_t size;
...
@@ -2580,24 +2618,28 @@ yy_size_t size;
* as though doing an assignment.
* as though doing an assignment.
*/
*/
return
(
void
*
)
realloc
(
(
char
*
)
ptr
,
size
);
return
(
void
*
)
realloc
(
(
char
*
)
ptr
,
size
);
}
}
#ifdef YY_USE_PROTOS
void
yyfree
(
void
*
ptr
)
static
void
yy_flex_free
(
void
*
ptr
)
{
#else
free
(
(
char
*
)
ptr
);
/* see yyrealloc() for (char *) cast */
static
void
yy_flex_free
(
ptr
)
}
void
*
ptr
;
#endif
{
free
(
ptr
);
}
#if YY_MAIN
#define YYTABLES_NAME "yytables"
int
main
()
{
#undef YY_NEW_FILE
yylex
();
#undef YY_FLUSH_BUFFER
return
0
;
#undef yy_set_bol
}
#undef yy_new_buffer
#undef yy_set_interactive
#undef yytext_ptr
#undef YY_DO_BEFORE_ACTION
#ifdef YY_DECL_IS_OURS
#undef YY_DECL_IS_OURS
#undef YY_DECL
#endif
#endif
#line 575 "pars0lex.l"
#line 587 "pars0lex.l"
pars/pars0grm.c
View file @
e3d753ab
This source diff could not be displayed because it is too large. You can
view the blob
instead.
pars/pars0grm.h
View file @
e3d753ab
#ifndef YYSTYPE
/* A Bison parser, made by GNU Bison 1.875d. */
#define YYSTYPE int
/* Skeleton parser for Yacc-like parsing with Bison,
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum
yytokentype
{
PARS_INT_LIT
=
258
,
PARS_FLOAT_LIT
=
259
,
PARS_STR_LIT
=
260
,
PARS_NULL_LIT
=
261
,
PARS_ID_TOKEN
=
262
,
PARS_AND_TOKEN
=
263
,
PARS_OR_TOKEN
=
264
,
PARS_NOT_TOKEN
=
265
,
PARS_GE_TOKEN
=
266
,
PARS_LE_TOKEN
=
267
,
PARS_NE_TOKEN
=
268
,
PARS_PROCEDURE_TOKEN
=
269
,
PARS_IN_TOKEN
=
270
,
PARS_OUT_TOKEN
=
271
,
PARS_BINARY_TOKEN
=
272
,
PARS_BLOB_TOKEN
=
273
,
PARS_INT_TOKEN
=
274
,
PARS_INTEGER_TOKEN
=
275
,
PARS_FLOAT_TOKEN
=
276
,
PARS_CHAR_TOKEN
=
277
,
PARS_IS_TOKEN
=
278
,
PARS_BEGIN_TOKEN
=
279
,
PARS_END_TOKEN
=
280
,
PARS_IF_TOKEN
=
281
,
PARS_THEN_TOKEN
=
282
,
PARS_ELSE_TOKEN
=
283
,
PARS_ELSIF_TOKEN
=
284
,
PARS_LOOP_TOKEN
=
285
,
PARS_WHILE_TOKEN
=
286
,
PARS_RETURN_TOKEN
=
287
,
PARS_SELECT_TOKEN
=
288
,
PARS_SUM_TOKEN
=
289
,
PARS_COUNT_TOKEN
=
290
,
PARS_DISTINCT_TOKEN
=
291
,
PARS_FROM_TOKEN
=
292
,
PARS_WHERE_TOKEN
=
293
,
PARS_FOR_TOKEN
=
294
,
PARS_DDOT_TOKEN
=
295
,
PARS_CONSISTENT_TOKEN
=
296
,
PARS_READ_TOKEN
=
297
,
PARS_ORDER_TOKEN
=
298
,
PARS_BY_TOKEN
=
299
,
PARS_ASC_TOKEN
=
300
,
PARS_DESC_TOKEN
=
301
,
PARS_INSERT_TOKEN
=
302
,
PARS_INTO_TOKEN
=
303
,
PARS_VALUES_TOKEN
=
304
,
PARS_UPDATE_TOKEN
=
305
,
PARS_SET_TOKEN
=
306
,
PARS_DELETE_TOKEN
=
307
,
PARS_CURRENT_TOKEN
=
308
,
PARS_OF_TOKEN
=
309
,
PARS_CREATE_TOKEN
=
310
,
PARS_TABLE_TOKEN
=
311
,
PARS_INDEX_TOKEN
=
312
,
PARS_UNIQUE_TOKEN
=
313
,
PARS_CLUSTERED_TOKEN
=
314
,
PARS_DOES_NOT_FIT_IN_MEM_TOKEN
=
315
,
PARS_ON_TOKEN
=
316
,
PARS_ASSIGN_TOKEN
=
317
,
PARS_DECLARE_TOKEN
=
318
,
PARS_CURSOR_TOKEN
=
319
,
PARS_SQL_TOKEN
=
320
,
PARS_OPEN_TOKEN
=
321
,
PARS_FETCH_TOKEN
=
322
,
PARS_CLOSE_TOKEN
=
323
,
PARS_NOTFOUND_TOKEN
=
324
,
PARS_TO_CHAR_TOKEN
=
325
,
PARS_TO_NUMBER_TOKEN
=
326
,
PARS_TO_BINARY_TOKEN
=
327
,
PARS_BINARY_TO_NUMBER_TOKEN
=
328
,
PARS_SUBSTR_TOKEN
=
329
,
PARS_REPLSTR_TOKEN
=
330
,
PARS_CONCAT_TOKEN
=
331
,
PARS_INSTR_TOKEN
=
332
,
PARS_LENGTH_TOKEN
=
333
,
PARS_SYSDATE_TOKEN
=
334
,
PARS_PRINTF_TOKEN
=
335
,
PARS_ASSERT_TOKEN
=
336
,
PARS_RND_TOKEN
=
337
,
PARS_RND_STR_TOKEN
=
338
,
PARS_ROW_PRINTF_TOKEN
=
339
,
PARS_COMMIT_TOKEN
=
340
,
PARS_ROLLBACK_TOKEN
=
341
,
PARS_WORK_TOKEN
=
342
,
NEG
=
343
};
#endif
#endif
#define PARS_INT_LIT 257
#define PARS_INT_LIT 258
#define PARS_FLOAT_LIT 258
#define PARS_FLOAT_LIT 259
#define PARS_STR_LIT 259
#define PARS_STR_LIT 260
#define PARS_NULL_LIT 260
#define PARS_NULL_LIT 261
#define PARS_ID_TOKEN 261
#define PARS_ID_TOKEN 262
#define PARS_AND_TOKEN 262
#define PARS_AND_TOKEN 263
#define PARS_OR_TOKEN 263
#define PARS_OR_TOKEN 264
#define PARS_NOT_TOKEN 264
#define PARS_NOT_TOKEN 265
#define PARS_GE_TOKEN 265
#define PARS_GE_TOKEN 266
#define PARS_LE_TOKEN 266
#define PARS_LE_TOKEN 267
#define PARS_NE_TOKEN 267
#define PARS_NE_TOKEN 268
#define PARS_PROCEDURE_TOKEN 268
#define PARS_PROCEDURE_TOKEN 269
#define PARS_IN_TOKEN 269
#define PARS_IN_TOKEN 270
#define PARS_OUT_TOKEN 270
#define PARS_OUT_TOKEN 271
#define PARS_INT_TOKEN 271
#define PARS_BINARY_TOKEN 272
#define PARS_INTEGER_TOKEN 272
#define PARS_BLOB_TOKEN 273
#define PARS_FLOAT_TOKEN 273
#define PARS_INT_TOKEN 274
#define PARS_CHAR_TOKEN 274
#define PARS_INTEGER_TOKEN 275
#define PARS_IS_TOKEN 275
#define PARS_FLOAT_TOKEN 276
#define PARS_BEGIN_TOKEN 276
#define PARS_CHAR_TOKEN 277
#define PARS_END_TOKEN 277
#define PARS_IS_TOKEN 278
#define PARS_IF_TOKEN 278
#define PARS_BEGIN_TOKEN 279
#define PARS_THEN_TOKEN 279
#define PARS_END_TOKEN 280
#define PARS_ELSE_TOKEN 280
#define PARS_IF_TOKEN 281
#define PARS_ELSIF_TOKEN 281
#define PARS_THEN_TOKEN 282
#define PARS_LOOP_TOKEN 282
#define PARS_ELSE_TOKEN 283
#define PARS_WHILE_TOKEN 283
#define PARS_ELSIF_TOKEN 284
#define PARS_RETURN_TOKEN 284
#define PARS_LOOP_TOKEN 285
#define PARS_SELECT_TOKEN 285
#define PARS_WHILE_TOKEN 286
#define PARS_SUM_TOKEN 286
#define PARS_RETURN_TOKEN 287
#define PARS_COUNT_TOKEN 287
#define PARS_SELECT_TOKEN 288
#define PARS_DISTINCT_TOKEN 288
#define PARS_SUM_TOKEN 289
#define PARS_FROM_TOKEN 289
#define PARS_COUNT_TOKEN 290
#define PARS_WHERE_TOKEN 290
#define PARS_DISTINCT_TOKEN 291
#define PARS_FOR_TOKEN 291
#define PARS_FROM_TOKEN 292
#define PARS_DDOT_TOKEN 292
#define PARS_WHERE_TOKEN 293
#define PARS_CONSISTENT_TOKEN 293
#define PARS_FOR_TOKEN 294
#define PARS_READ_TOKEN 294
#define PARS_DDOT_TOKEN 295
#define PARS_ORDER_TOKEN 295
#define PARS_CONSISTENT_TOKEN 296
#define PARS_BY_TOKEN 296
#define PARS_READ_TOKEN 297
#define PARS_ASC_TOKEN 297
#define PARS_ORDER_TOKEN 298
#define PARS_DESC_TOKEN 298
#define PARS_BY_TOKEN 299
#define PARS_INSERT_TOKEN 299
#define PARS_ASC_TOKEN 300
#define PARS_INTO_TOKEN 300
#define PARS_DESC_TOKEN 301
#define PARS_VALUES_TOKEN 301
#define PARS_INSERT_TOKEN 302
#define PARS_UPDATE_TOKEN 302
#define PARS_INTO_TOKEN 303
#define PARS_SET_TOKEN 303
#define PARS_VALUES_TOKEN 304
#define PARS_DELETE_TOKEN 304
#define PARS_UPDATE_TOKEN 305
#define PARS_CURRENT_TOKEN 305
#define PARS_SET_TOKEN 306
#define PARS_OF_TOKEN 306
#define PARS_DELETE_TOKEN 307
#define PARS_CREATE_TOKEN 307
#define PARS_CURRENT_TOKEN 308
#define PARS_TABLE_TOKEN 308
#define PARS_OF_TOKEN 309
#define PARS_INDEX_TOKEN 309
#define PARS_CREATE_TOKEN 310
#define PARS_UNIQUE_TOKEN 310
#define PARS_TABLE_TOKEN 311
#define PARS_CLUSTERED_TOKEN 311
#define PARS_INDEX_TOKEN 312
#define PARS_DOES_NOT_FIT_IN_MEM_TOKEN 312
#define PARS_UNIQUE_TOKEN 313
#define PARS_ON_TOKEN 313
#define PARS_CLUSTERED_TOKEN 314
#define PARS_ASSIGN_TOKEN 314
#define PARS_DOES_NOT_FIT_IN_MEM_TOKEN 315
#define PARS_DECLARE_TOKEN 315
#define PARS_ON_TOKEN 316
#define PARS_CURSOR_TOKEN 316
#define PARS_ASSIGN_TOKEN 317
#define PARS_SQL_TOKEN 317
#define PARS_DECLARE_TOKEN 318
#define PARS_OPEN_TOKEN 318
#define PARS_CURSOR_TOKEN 319
#define PARS_FETCH_TOKEN 319
#define PARS_SQL_TOKEN 320
#define PARS_CLOSE_TOKEN 320
#define PARS_OPEN_TOKEN 321
#define PARS_NOTFOUND_TOKEN 321
#define PARS_FETCH_TOKEN 322
#define PARS_TO_CHAR_TOKEN 322
#define PARS_CLOSE_TOKEN 323
#define PARS_TO_NUMBER_TOKEN 323
#define PARS_NOTFOUND_TOKEN 324
#define PARS_TO_BINARY_TOKEN 324
#define PARS_TO_CHAR_TOKEN 325
#define PARS_BINARY_TO_NUMBER_TOKEN 325
#define PARS_TO_NUMBER_TOKEN 326
#define PARS_SUBSTR_TOKEN 326
#define PARS_TO_BINARY_TOKEN 327
#define PARS_REPLSTR_TOKEN 327
#define PARS_BINARY_TO_NUMBER_TOKEN 328
#define PARS_CONCAT_TOKEN 328
#define PARS_SUBSTR_TOKEN 329
#define PARS_INSTR_TOKEN 329
#define PARS_REPLSTR_TOKEN 330
#define PARS_LENGTH_TOKEN 330
#define PARS_CONCAT_TOKEN 331
#define PARS_SYSDATE_TOKEN 331
#define PARS_INSTR_TOKEN 332
#define PARS_PRINTF_TOKEN 332
#define PARS_LENGTH_TOKEN 333
#define PARS_ASSERT_TOKEN 333
#define PARS_SYSDATE_TOKEN 334
#define PARS_RND_TOKEN 334
#define PARS_PRINTF_TOKEN 335
#define PARS_RND_STR_TOKEN 335
#define PARS_ASSERT_TOKEN 336
#define PARS_ROW_PRINTF_TOKEN 336
#define PARS_RND_TOKEN 337
#define PARS_COMMIT_TOKEN 337
#define PARS_RND_STR_TOKEN 338
#define PARS_ROLLBACK_TOKEN 338
#define PARS_ROW_PRINTF_TOKEN 339
#define PARS_WORK_TOKEN 339
#define PARS_COMMIT_TOKEN 340
#define NEG 340
#define PARS_ROLLBACK_TOKEN 341
#define PARS_WORK_TOKEN 342
#define NEG 343
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
typedef
int
YYSTYPE
;
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
extern
YYSTYPE
yylval
;
extern
YYSTYPE
yylval
;
pars/pars0grm.y
View file @
e3d753ab
...
@@ -44,6 +44,8 @@ yylex(void);
...
@@ -44,6 +44,8 @@ yylex(void);
%token PARS_PROCEDURE_TOKEN
%token PARS_PROCEDURE_TOKEN
%token PARS_IN_TOKEN
%token PARS_IN_TOKEN
%token PARS_OUT_TOKEN
%token PARS_OUT_TOKEN
%token PARS_BINARY_TOKEN
%token PARS_BLOB_TOKEN
%token PARS_INT_TOKEN
%token PARS_INT_TOKEN
%token PARS_INTEGER_TOKEN
%token PARS_INTEGER_TOKEN
%token PARS_FLOAT_TOKEN
%token PARS_FLOAT_TOKEN
...
@@ -448,7 +450,8 @@ fetch_statement:
...
@@ -448,7 +450,8 @@ fetch_statement:
;
;
column_def:
column_def:
PARS_ID_TOKEN type_name { $$ = pars_column_def($1, $2); }
PARS_ID_TOKEN type_name opt_column_len
{ $$ = pars_column_def($1, $2, $3); }
;
;
column_def_list:
column_def_list:
...
@@ -457,6 +460,11 @@ column_def_list:
...
@@ -457,6 +460,11 @@ column_def_list:
{ $$ = que_node_list_add_last($1, $3); }
{ $$ = que_node_list_add_last($1, $3); }
;
;
opt_column_len:
/* Nothing */ { $$ = NULL; }
| '(' PARS_INT_LIT ')'
{ $$ = $2; }
not_fit_in_memory:
not_fit_in_memory:
/* Nothing */ { $$ = NULL; }
/* Nothing */ { $$ = NULL; }
| PARS_DOES_NOT_FIT_IN_MEM_TOKEN
| PARS_DOES_NOT_FIT_IN_MEM_TOKEN
...
@@ -507,6 +515,8 @@ rollback_statement:
...
@@ -507,6 +515,8 @@ rollback_statement:
type_name:
type_name:
PARS_INT_TOKEN { $$ = &pars_int_token; }
PARS_INT_TOKEN { $$ = &pars_int_token; }
| PARS_CHAR_TOKEN { $$ = &pars_char_token; }
| PARS_CHAR_TOKEN { $$ = &pars_char_token; }
| PARS_BINARY_TOKEN { $$ = &pars_binary_token; }
| PARS_BLOB_TOKEN { $$ = &pars_blob_token; }
;
;
parameter_declaration:
parameter_declaration:
...
...
pars/pars0lex.l
View file @
e3d753ab
...
@@ -26,12 +26,10 @@ How to make the InnoDB parser and lexer C files:
...
@@ -26,12 +26,10 @@ How to make the InnoDB parser and lexer C files:
5. Rename lex.yy.c to lexyy.c.
5. Rename lex.yy.c to lexyy.c.
6. Remove the #include of unistd.h from about line 2500 of lexyy.c
6. Add '#include "univ.i"' before #include <stdio.h> in lexyy.c
7. Add '#include "univ.i"' before #include <stdio.h> in lexyy.c
(Needed for AIX)
(Needed for AIX)
8
. Add a type cast to int to the assignment below the comment
7
. Add a type cast to int to the assignment below the comment
'need more input.' (Removes a warning on Win64)
'need more input.' (Removes a warning on Win64)
These instructions seem to work at least with bison-1.28 and flex-2.5.4 on
These instructions seem to work at least with bison-1.28 and flex-2.5.4 on
...
@@ -50,6 +48,7 @@ Linux.
...
@@ -50,6 +48,7 @@ Linux.
%option noyy_scan_buffer
%option noyy_scan_buffer
%option noyy_scan_bytes
%option noyy_scan_bytes
%option noyy_scan_string
%option noyy_scan_string
%option nounistd
%{
%{
#define YYSTYPE que_node_t*
#define YYSTYPE que_node_t*
...
@@ -191,6 +190,14 @@ In the state 'quoted', only two actions are possible (defined below). */
...
@@ -191,6 +190,14 @@ In the state 'quoted', only two actions are possible (defined below). */
return(PARS_OUT_TOKEN);
return(PARS_OUT_TOKEN);
}
}
"BINARY" {
return(PARS_BINARY_TOKEN);
}
"BLOB" {
return(PARS_BLOB_TOKEN);
}
"INT" {
"INT" {
return(PARS_INT_TOKEN);
return(PARS_INT_TOKEN);
}
}
...
...
pars/pars0pars.c
View file @
e3d753ab
...
@@ -62,6 +62,8 @@ pars_res_word_t pars_rnd_str_token = {PARS_RND_STR_TOKEN};
...
@@ -62,6 +62,8 @@ pars_res_word_t pars_rnd_str_token = {PARS_RND_STR_TOKEN};
pars_res_word_t
pars_count_token
=
{
PARS_COUNT_TOKEN
};
pars_res_word_t
pars_count_token
=
{
PARS_COUNT_TOKEN
};
pars_res_word_t
pars_sum_token
=
{
PARS_SUM_TOKEN
};
pars_res_word_t
pars_sum_token
=
{
PARS_SUM_TOKEN
};
pars_res_word_t
pars_distinct_token
=
{
PARS_DISTINCT_TOKEN
};
pars_res_word_t
pars_distinct_token
=
{
PARS_DISTINCT_TOKEN
};
pars_res_word_t
pars_binary_token
=
{
PARS_BINARY_TOKEN
};
pars_res_word_t
pars_blob_token
=
{
PARS_BLOB_TOKEN
};
pars_res_word_t
pars_int_token
=
{
PARS_INT_TOKEN
};
pars_res_word_t
pars_int_token
=
{
PARS_INT_TOKEN
};
pars_res_word_t
pars_char_token
=
{
PARS_CHAR_TOKEN
};
pars_res_word_t
pars_char_token
=
{
PARS_CHAR_TOKEN
};
pars_res_word_t
pars_float_token
=
{
PARS_FLOAT_TOKEN
};
pars_res_word_t
pars_float_token
=
{
PARS_FLOAT_TOKEN
};
...
@@ -1078,17 +1080,38 @@ static
...
@@ -1078,17 +1080,38 @@ static
void
void
pars_set_dfield_type
(
pars_set_dfield_type
(
/*=================*/
/*=================*/
dfield_t
*
dfield
,
/* in: dfield */
dfield_t
*
dfield
,
/* in: dfield */
pars_res_word_t
*
type
)
/* in: pointer to a type token */
pars_res_word_t
*
type
,
/* in: pointer to a type token */
ulint
len
)
/* in: length, or 0 */
{
{
if
(
type
==
&
pars_int_token
)
{
if
(
type
==
&
pars_int_token
)
{
if
(
len
!=
0
)
{
ut_error
;
}
dtype_set
(
dfield_get_type
(
dfield
),
DATA_INT
,
0
,
4
,
0
);
dtype_set
(
dfield_get_type
(
dfield
),
DATA_INT
,
0
,
4
,
0
);
}
else
if
(
type
==
&
pars_char_token
)
{
}
else
if
(
type
==
&
pars_char_token
)
{
if
(
len
!=
0
)
{
ut_error
;
}
dtype_set
(
dfield_get_type
(
dfield
),
DATA_VARCHAR
,
dtype_set
(
dfield_get_type
(
dfield
),
DATA_VARCHAR
,
DATA_ENGLISH
,
0
,
0
);
DATA_ENGLISH
,
0
,
0
);
}
else
if
(
type
==
&
pars_binary_token
)
{
if
(
len
==
0
)
{
ut_error
;
}
dtype_set
(
dfield_get_type
(
dfield
),
DATA_FIXBINARY
,
DATA_BINARY_TYPE
,
len
,
0
);
}
else
if
(
type
==
&
pars_blob_token
)
{
if
(
len
!=
0
)
{
ut_error
;
}
dtype_set
(
dfield_get_type
(
dfield
),
DATA_BLOB
,
DATA_BINARY_TYPE
,
0
,
0
);
}
else
{
}
else
{
ut_error
;
ut_error
;
}
}
...
@@ -1111,7 +1134,7 @@ pars_variable_declaration(
...
@@ -1111,7 +1134,7 @@ pars_variable_declaration(
node
->
param_type
=
PARS_NOT_PARAM
;
node
->
param_type
=
PARS_NOT_PARAM
;
pars_set_dfield_type
(
que_node_get_val
(
node
),
type
);
pars_set_dfield_type
(
que_node_get_val
(
node
),
type
,
0
);
return
(
node
);
return
(
node
);
}
}
...
@@ -1475,12 +1498,23 @@ Parses a column definition at a table creation. */
...
@@ -1475,12 +1498,23 @@ Parses a column definition at a table creation. */
sym_node_t
*
sym_node_t
*
pars_column_def
(
pars_column_def
(
/*============*/
/*============*/
/* out: column sym table node */
/* out: column sym table
sym_node_t
*
sym_node
,
/* in: column node in the symbol
node */
table */
sym_node_t
*
sym_node
,
/* in: column node in the
pars_res_word_t
*
type
)
/* in: data type */
symbol table */
pars_res_word_t
*
type
,
/* in: data type */
sym_node_t
*
len
)
/* in: length of column, or
NULL */
{
{
pars_set_dfield_type
(
que_node_get_val
(
sym_node
),
type
);
ulint
len2
;
if
(
len
)
{
len2
=
eval_node_get_int_val
(
len
);
}
else
{
len2
=
0
;
}
pars_set_dfield_type
(
que_node_get_val
(
sym_node
),
type
,
len2
);
return
(
sym_node
);
return
(
sym_node
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment