#line 3 "lexer.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 37 #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 #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include 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; /* 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 #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 /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* 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 * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern yy_size_t yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires * access to the local variable yy_act. Since yyless() is a macro, it would break * existing scanners that call yyless() from OUTSIDE yylex. * One obvious solution it to make yy_act a global. I tried that, and saw * a 5% performance hit in a non-yylineno scanner, because yy_act is * normally declared as a register variable-- so it is not worth it. */ #define YY_LESS_LINENO(n) \ do { \ int yyl;\ for ( yyl = n; yyl < yyleng; ++yyl )\ if ( yytext[yyl] == '\n' )\ --yylineno;\ }while(0) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ 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 * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* 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 * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #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. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; 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 ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ 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) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ 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_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 99 #define YY_END_OF_BUFFER 100 /* 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[477] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 98, 97, 97, 98, 98, 98, 42, 70, 98, 98, 98, 98, 75, 98, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 43, 44, 69, 97, 70, 98, 98, 98, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 90, 89, 89, 90, 90, 76, 78, 90, 81, 77, 79, 80, 87, 87, 87, 55, 55, 54, 53, 52, 40, 39, 39, 40, 38, 36, 36, 38, 38, 38, 11, 13, 38, 17, 18, 9, 12, 8, 14, 10, 32, 32, 3, 24, 7, 25, 37, 37, 37, 37, 37, 37, 37, 15, 16, 0, 0, 96, 0, 0, 74, 74, 74, 72, 83, 75, 0, 75, 75, 75, 75, 75, 1, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, 75, 75, 75, 75, 75, 75, 75, 75, 1, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 0, 82, 0, 0, 88, 84, 77, 87, 87, 86, 56, 52, 41, 22, 0, 35, 0, 0, 33, 0, 34, 0, 85, 30, 0, 32, 20, 23, 19, 21, 37, 37, 37, 37, 4, 37, 37, 0, 92, 0, 91, 0, 0, 94, 0, 74, 74, 71, 71, 72, 73, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 48, 75, 75, 75, 68, 0, 95, 74, 0, 0, 68, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 48, 75, 75, 75, 0, 0, 0, 33, 0, 0, 31, 5, 37, 6, 37, 37, 0, 93, 74, 71, 71, 73, 75, 47, 75, 75, 46, 75, 75, 75, 75, 75, 75, 75, 75, 45, 75, 75, 0, 0, 0, 75, 47, 75, 75, 46, 75, 75, 75, 75, 75, 75, 75, 75, 45, 75, 75, 0, 0, 0, 0, 0, 37, 37, 2, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 49, 0, 0, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 49, 0, 37, 37, 75, 75, 75, 75, 0, 63, 75, 75, 75, 75, 75, 75, 75, 0, 0, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 37, 37, 0, 66, 75, 75, 0, 58, 75, 75, 0, 64, 75, 75, 75, 75, 0, 67, 0, 75, 75, 75, 75, 75, 75, 37, 37, 75, 50, 75, 75, 75, 75, 0, 60, 75, 67, 75, 50, 75, 75, 75, 26, 37, 0, 62, 75, 75, 75, 0, 61, 0, 59, 75, 37, 37, 75, 75, 75, 75, 27, 28, 75, 0, 57, 75, 75, 37, 75, 75, 75, 29, 0, 65, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 51, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 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, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21, 21, 22, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 39, 55, 56, 57, 29, 58, 1, 59, 60, 61, 62, 63, 64, 65, 66, 67, 39, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 51, 79, 80, 81, 39, 82, 29, 83, 84, 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, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[85] = { 0, 1, 2, 3, 4, 5, 6, 1, 7, 1, 1, 6, 1, 1, 8, 9, 10, 11, 12, 13, 14, 14, 15, 16, 17, 1, 18, 1, 19, 1, 20, 21, 22, 22, 22, 20, 23, 23, 23, 23, 23, 23, 23, 24, 23, 23, 23, 24, 23, 24, 23, 25, 23, 26, 23, 1, 6, 1, 27, 20, 21, 22, 22, 22, 20, 23, 23, 23, 23, 23, 23, 24, 23, 23, 23, 24, 23, 24, 23, 23, 26, 23, 1, 1, 1 } ; static yyconst flex_int16_t yy_base[552] = { 0, 0, 84, 168, 0, 250, 251, 253, 256, 248, 253, 275, 0, 359, 0, 1179, 3414, 3414, 3414, 0, 1159, 0, 3414, 3414, 1146, 248, 0, 1036, 0, 0, 412, 415, 406, 407, 414, 407, 422, 407, 405, 428, 426, 413, 3414, 3414, 0, 484, 447, 1035, 507, 520, 534, 553, 598, 558, 564, 591, 466, 500, 594, 595, 630, 631, 628, 3414, 3414, 3414, 444, 1045, 3414, 3414, 1030, 3414, 0, 3414, 3414, 1020, 960, 939, 0, 3414, 3414, 3414, 449, 3414, 3414, 3414, 0, 3414, 3414, 3414, 926, 447, 578, 3414, 3414, 450, 3414, 3414, 3414, 3414, 3414, 3414, 901, 526, 560, 3414, 245, 886, 870, 421, 0, 485, 532, 554, 554, 458, 3414, 3414, 644, 870, 3414, 707, 674, 0, 681, 490, 0, 3414, 0, 840, 560, 599, 609, 744, 749, 0, 749, 751, 460, 545, 762, 757, 750, 756, 759, 754, 801, 791, 0, 851, 815, 0, 821, 693, 842, 832, 856, 858, 887, 866, 913, 926, 842, 761, 840, 846, 816, 887, 905, 913, 906, 923, 912, 845, 921, 917, 925, 537, 3414, 540, 816, 3414, 3414, 0, 814, 805, 3414, 0, 684, 0, 3414, 626, 3414, 958, 0, 0, 528, 3414, 971, 3414, 623, 0, 793, 3414, 3414, 3414, 3414, 0, 844, 867, 920, 0, 855, 922, 1002, 3414, 794, 3414, 1051, 1005, 1011, 695, 1018, 646, 0, 0, 0, 0, 950, 958, 1088, 976, 985, 969, 1098, 1096, 1090, 1096, 1097, 1109, 0, 1100, 1101, 1113, 0, 1026, 3414, 1029, 442, 687, 1166, 1137, 1185, 1141, 1122, 1156, 1170, 1109, 1171, 1172, 1178, 1186, 1152, 1167, 1187, 1188, 1203, 1232, 887, 0, 0, 900, 0, 3414, 0, 1181, 0, 1187, 1192, 607, 3414, 550, 0, 0, 0, 1201, 0, 1197, 1211, 0, 1234, 1218, 1218, 487, 1228, 1223, 1231, 1223, 0, 1234, 1227, 1030, 1032, 1275, 1240, 1236, 1241, 1248, 1242, 1272, 1251, 1266, 1265, 1260, 1267, 1285, 1284, 1280, 1281, 1289, 1331, 1020, 0, 1022, 0, 1297, 1284, 0, 1296, 1310, 1300, 1304, 1360, 1301, 1301, 1321, 1313, 1318, 1325, 1338, 0, 486, 581, 1335, 1340, 1336, 1339, 1388, 1341, 1355, 1354, 1370, 1378, 1390, 1353, 645, 1363, 1367, 1430, 1373, 1375, 1434, 1448, 3414, 439, 1377, 1459, 1403, 1379, 1391, 1399, 594, 970, 1463, 1429, 1428, 1477, 1432, 1480, 1453, 1446, 1447, 1450, 1415, 607, 1505, 3414, 1425, 1471, 1508, 3414, 1454, 1479, 1526, 3414, 1490, 822, 1533, 1492, 990, 3414, 1138, 1492, 1509, 1512, 1498, 1554, 1529, 1492, 1506, 1581, 0, 1518, 1509, 1513, 1587, 1598, 3414, 1601, 1142, 1604, 1519, 1571, 1615, 1618, 422, 1537, 1622, 3414, 1534, 1548, 1574, 1629, 3414, 1645, 3414, 1594, 1591, 1599, 1598, 1648, 1603, 1612, 0, 414, 1608, 1666, 3414, 1603, 1613, 1623, 1689, 1636, 1638, 0, 1692, 3414, 1612, 1645, 1643, 1668, 1637, 1656, 1635, 1648, 1658, 1669, 1681, 1688, 1681, 1689, 1671, 1693, 251, 1708, 3414, 3414, 1777, 1804, 1831, 1858, 1885, 1893, 1919, 1946, 1965, 1979, 2004, 2023, 2042, 2068, 2089, 2108, 2135, 2162, 2178, 2205, 2232, 2248, 2275, 2298, 2324, 2338, 2365, 2392, 2419, 2446, 2465, 2479, 2504, 2523, 2539, 2559, 2581, 2607, 2631, 2653, 2673, 2700, 2722, 2747, 2763, 2790, 2817, 2833, 2860, 2882, 2889, 2911, 2938, 2960, 1733, 2973, 3000, 3027, 3054, 3081, 3108, 3135, 3162, 3189, 3208, 3231, 3254, 3276, 3296, 3323, 3337, 3346, 3355, 3364, 3386 } ; static yyconst flex_int16_t yy_def[552] = { 0, 476, 476, 476, 3, 477, 477, 478, 478, 479, 479, 476, 11, 476, 13, 476, 476, 476, 476, 480, 481, 482, 476, 476, 476, 483, 483, 484, 485, 486, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 485, 476, 476, 483, 487, 488, 489, 490, 491, 492, 492, 492, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 476, 476, 476, 493, 494, 476, 476, 476, 476, 495, 476, 476, 496, 496, 476, 497, 476, 476, 476, 476, 476, 476, 476, 498, 476, 476, 476, 476, 499, 500, 476, 476, 501, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 502, 502, 502, 502, 502, 502, 502, 476, 476, 503, 504, 476, 476, 476, 483, 483, 505, 506, 476, 507, 508, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 509, 510, 511, 512, 510, 513, 476, 511, 514, 512, 512, 515, 516, 507, 517, 517, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 518, 476, 519, 520, 476, 476, 521, 522, 522, 476, 523, 476, 524, 476, 525, 476, 526, 527, 528, 529, 476, 530, 476, 476, 531, 476, 476, 476, 476, 476, 532, 532, 532, 532, 532, 532, 532, 476, 476, 533, 476, 476, 476, 476, 534, 535, 536, 537, 538, 539, 540, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 542, 476, 476, 535, 476, 543, 544, 545, 545, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 546, 476, 547, 528, 476, 548, 476, 532, 532, 532, 532, 532, 534, 476, 536, 537, 538, 540, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 543, 543, 543, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 546, 476, 549, 476, 550, 532, 532, 532, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 476, 476, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 546, 532, 532, 541, 541, 541, 541, 476, 476, 541, 541, 541, 541, 541, 541, 541, 476, 551, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 532, 532, 476, 476, 541, 541, 476, 476, 541, 541, 476, 476, 541, 541, 541, 541, 551, 476, 551, 252, 252, 252, 252, 252, 252, 532, 532, 541, 541, 541, 541, 541, 541, 476, 476, 541, 551, 252, 252, 252, 252, 252, 532, 532, 476, 476, 541, 541, 541, 476, 476, 476, 476, 252, 532, 532, 541, 541, 541, 252, 532, 532, 541, 476, 476, 541, 252, 532, 541, 541, 252, 532, 476, 476, 541, 252, 541, 252, 541, 252, 541, 252, 541, 252, 541, 252, 541, 252, 541, 252, 541, 252, 476, 0, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476 } ; static yyconst flex_int16_t yy_nxt[3499] = { 0, 16, 17, 18, 17, 19, 16, 20, 21, 16, 22, 16, 16, 16, 23, 24, 16, 25, 26, 27, 28, 28, 28, 29, 16, 16, 16, 26, 26, 26, 30, 28, 31, 28, 32, 28, 33, 28, 34, 28, 28, 35, 36, 28, 28, 37, 28, 38, 39, 40, 41, 28, 28, 28, 28, 16, 16, 16, 28, 30, 28, 31, 28, 32, 28, 33, 28, 34, 28, 35, 36, 28, 28, 37, 28, 38, 39, 40, 41, 28, 28, 28, 42, 43, 44, 16, 45, 18, 45, 19, 16, 20, 21, 16, 22, 16, 16, 16, 46, 47, 16, 48, 26, 27, 28, 28, 28, 49, 16, 16, 16, 26, 26, 26, 50, 51, 52, 51, 53, 51, 54, 51, 55, 51, 51, 56, 57, 51, 51, 58, 51, 59, 60, 61, 62, 51, 51, 51, 51, 16, 16, 16, 28, 50, 51, 52, 51, 53, 51, 54, 51, 55, 51, 56, 57, 51, 51, 58, 51, 59, 60, 61, 62, 51, 51, 51, 42, 43, 44, 63, 64, 65, 64, 63, 66, 67, 63, 63, 63, 63, 63, 68, 63, 63, 69, 63, 63, 70, 63, 63, 63, 63, 63, 63, 71, 63, 63, 63, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 73, 63, 74, 63, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 63, 63, 63, 76, 76, 79, 79, 79, 79, 79, 79, 81, 124, 475, 77, 77, 81, 125, 82, 82, 82, 203, 204, 82, 82, 82, 83, 84, 85, 84, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 83, 83, 83, 83, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 83, 83, 83, 87, 88, 89, 88, 90, 91, 87, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 87, 102, 103, 104, 104, 87, 105, 106, 107, 108, 87, 87, 109, 110, 111, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 112, 113, 110, 110, 110, 114, 115, 110, 110, 110, 110, 110, 116, 87, 117, 87, 109, 110, 111, 110, 110, 110, 110, 110, 110, 110, 110, 110, 112, 113, 110, 110, 110, 114, 115, 110, 110, 110, 110, 87, 87, 87, 130, 131, 248, 133, 134, 135, 178, 137, 138, 192, 140, 141, 145, 136, 249, 132, 144, 197, 142, 151, 208, 151, 139, 152, 152, 188, 188, 188, 450, 130, 131, 133, 134, 143, 135, 137, 437, 138, 140, 141, 145, 136, 146, 132, 146, 144, 341, 142, 208, 225, 139, 213, 160, 391, 235, 148, 179, 148, 342, 193, 123, 143, 198, 149, 123, 123, 168, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 124, 123, 123, 213, 160, 125, 235, 155, 209, 169, 123, 123, 123, 123, 123, 123, 156, 168, 197, 129, 129, 129, 178, 170, 334, 200, 200, 150, 128, 158, 128, 151, 280, 159, 159, 128, 209, 128, 169, 267, 267, 123, 123, 123, 123, 161, 150, 128, 158, 128, 151, 170, 159, 159, 128, 210, 128, 236, 201, 202, 202, 202, 194, 198, 371, 194, 372, 160, 123, 123, 123, 128, 179, 160, 161, 194, 194, 371, 164, 372, 211, 160, 212, 210, 165, 201, 236, 160, 228, 280, 128, 150, 128, 158, 128, 151, 160, 159, 159, 128, 160, 128, 160, 160, 160, 166, 164, 162, 211, 160, 212, 192, 165, 167, 160, 160, 228, 160, 160, 229, 171, 163, 200, 200, 172, 214, 215, 214, 280, 160, 178, 230, 160, 160, 166, 128, 162, 160, 409, 160, 160, 167, 160, 173, 175, 160, 160, 229, 171, 163, 176, 160, 172, 160, 160, 219, 220, 219, 174, 230, 221, 193, 222, 220, 222, 409, 160, 223, 160, 160, 301, 302, 173, 175, 245, 246, 245, 280, 176, 160, 179, 160, 160, 188, 188, 188, 174, 216, 216, 217, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 216, 216, 216, 216, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 216, 216, 216, 231, 232, 233, 234, 237, 217, 239, 240, 241, 242, 243, 146, 253, 146, 238, 151, 185, 151, 160, 152, 152, 202, 202, 202, 148, 185, 148, 181, 231, 232, 233, 234, 149, 237, 239, 240, 241, 242, 243, 151, 253, 151, 238, 152, 152, 151, 160, 151, 476, 152, 152, 123, 247, 246, 247, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 155, 248, 123, 248, 227, 476, 160, 123, 123, 123, 123, 123, 123, 249, 120, 249, 156, 415, 274, 129, 129, 129, 227, 158, 252, 151, 277, 159, 159, 254, 160, 255, 160, 244, 160, 263, 160, 206, 123, 123, 123, 123, 244, 128, 415, 128, 244, 274, 321, 321, 128, 275, 252, 205, 244, 277, 199, 254, 160, 255, 160, 323, 323, 263, 160, 123, 123, 123, 150, 128, 158, 128, 151, 256, 159, 159, 128, 160, 128, 275, 259, 150, 128, 158, 128, 151, 128, 159, 159, 128, 257, 128, 258, 190, 262, 160, 160, 278, 260, 186, 265, 256, 160, 160, 185, 160, 264, 160, 261, 259, 276, 160, 128, 160, 266, 160, 251, 400, 257, 268, 268, 258, 262, 160, 160, 128, 278, 260, 265, 285, 160, 160, 271, 271, 264, 160, 261, 400, 276, 160, 286, 160, 266, 160, 251, 214, 215, 214, 219, 220, 219, 289, 269, 221, 219, 220, 219, 290, 285, 221, 291, 222, 220, 222, 185, 272, 223, 401, 286, 245, 246, 245, 247, 246, 247, 301, 302, 476, 476, 269, 289, 191, 191, 196, 196, 182, 290, 401, 291, 181, 122, 127, 272, 216, 216, 217, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 216, 216, 216, 216, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 216, 216, 216, 287, 288, 292, 293, 294, 295, 296, 297, 419, 298, 299, 300, 400, 311, 160, 150, 128, 158, 128, 151, 308, 159, 159, 128, 122, 128, 120, 160, 287, 288, 292, 293, 294, 295, 296, 244, 297, 298, 299, 304, 300, 311, 160, 476, 244, 128, 160, 128, 244, 308, 316, 309, 128, 306, 307, 160, 244, 160, 401, 128, 476, 160, 401, 150, 128, 158, 128, 151, 304, 159, 159, 128, 160, 128, 160, 160, 160, 160, 312, 316, 309, 306, 307, 160, 310, 160, 313, 314, 128, 160, 305, 160, 160, 160, 325, 315, 317, 318, 326, 327, 160, 319, 178, 160, 160, 160, 312, 128, 160, 328, 329, 160, 310, 330, 313, 314, 320, 320, 305, 160, 160, 160, 325, 315, 317, 318, 326, 327, 331, 337, 319, 332, 333, 335, 336, 338, 160, 328, 329, 339, 340, 160, 330, 341, 476, 160, 160, 160, 343, 476, 345, 476, 179, 160, 344, 342, 160, 331, 337, 332, 333, 335, 336, 338, 347, 349, 346, 339, 340, 160, 160, 160, 160, 160, 160, 160, 343, 160, 350, 345, 348, 160, 344, 351, 160, 160, 353, 334, 476, 160, 160, 356, 347, 349, 160, 346, 352, 357, 160, 160, 160, 178, 354, 358, 359, 160, 350, 360, 348, 361, 364, 365, 351, 160, 353, 355, 355, 160, 160, 366, 356, 367, 160, 369, 352, 357, 362, 362, 362, 368, 354, 358, 370, 359, 374, 360, 363, 361, 364, 365, 160, 160, 373, 375, 376, 160, 160, 476, 366, 367, 377, 179, 369, 378, 362, 362, 362, 368, 160, 160, 160, 370, 379, 374, 363, 383, 476, 476, 160, 160, 373, 375, 376, 160, 160, 160, 381, 476, 377, 384, 387, 380, 378, 160, 382, 476, 160, 160, 160, 388, 379, 392, 396, 160, 383, 160, 385, 385, 385, 395, 389, 389, 389, 160, 397, 381, 386, 384, 387, 380, 390, 160, 398, 382, 362, 362, 362, 388, 476, 392, 396, 160, 408, 160, 363, 393, 393, 393, 395, 385, 385, 385, 397, 160, 160, 394, 402, 160, 410, 386, 398, 476, 403, 389, 389, 389, 393, 393, 393, 404, 408, 160, 160, 390, 391, 160, 394, 476, 160, 405, 406, 160, 160, 407, 402, 160, 410, 412, 160, 411, 403, 385, 385, 385, 389, 389, 389, 413, 404, 160, 160, 386, 160, 160, 390, 160, 160, 405, 406, 414, 418, 407, 393, 393, 393, 412, 160, 160, 411, 416, 416, 416, 394, 160, 425, 420, 413, 421, 426, 417, 160, 422, 429, 160, 160, 431, 423, 160, 414, 418, 416, 416, 416, 430, 160, 160, 476, 424, 476, 439, 417, 160, 425, 420, 160, 476, 421, 426, 476, 476, 422, 429, 160, 423, 431, 160, 440, 427, 427, 427, 438, 430, 160, 432, 432, 432, 424, 428, 439, 160, 476, 476, 160, 433, 416, 416, 416, 434, 434, 434, 427, 427, 427, 436, 417, 440, 160, 435, 438, 441, 428, 432, 432, 432, 434, 434, 434, 160, 427, 427, 427, 433, 476, 443, 435, 432, 432, 432, 428, 442, 444, 448, 436, 445, 160, 433, 451, 441, 452, 160, 449, 434, 434, 434, 446, 446, 446, 160, 453, 459, 160, 435, 443, 160, 447, 454, 476, 442, 476, 444, 448, 445, 446, 446, 446, 451, 452, 160, 457, 449, 458, 461, 447, 160, 463, 160, 453, 459, 160, 465, 160, 160, 460, 160, 454, 455, 455, 455, 455, 455, 455, 160, 466, 464, 467, 456, 462, 457, 456, 458, 461, 160, 463, 160, 160, 468, 469, 465, 160, 471, 460, 160, 473, 470, 475, 476, 476, 472, 476, 160, 466, 464, 467, 160, 160, 462, 476, 476, 160, 476, 476, 160, 160, 468, 474, 469, 476, 476, 471, 476, 473, 273, 470, 160, 476, 476, 472, 273, 273, 273, 476, 160, 160, 476, 476, 476, 160, 476, 476, 476, 476, 476, 474, 476, 476, 476, 476, 476, 476, 476, 476, 160, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 118, 476, 476, 476, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 121, 121, 121, 121, 121, 121, 121, 123, 123, 476, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 128, 128, 128, 476, 476, 128, 128, 476, 128, 476, 476, 128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 476, 476, 476, 476, 129, 129, 129, 129, 129, 129, 129, 147, 476, 147, 476, 476, 476, 147, 147, 476, 147, 476, 476, 476, 476, 147, 476, 476, 476, 147, 147, 147, 147, 147, 147, 147, 150, 476, 150, 476, 150, 476, 150, 476, 476, 476, 476, 476, 150, 150, 150, 150, 150, 150, 150, 153, 476, 476, 153, 153, 476, 153, 153, 153, 476, 476, 476, 153, 153, 153, 153, 153, 153, 153, 154, 154, 476, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 157, 476, 476, 476, 157, 476, 476, 157, 157, 476, 476, 476, 476, 157, 157, 157, 157, 157, 157, 157, 160, 160, 160, 160, 160, 476, 160, 160, 476, 160, 476, 476, 160, 160, 160, 160, 160, 160, 160, 160, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 183, 476, 183, 183, 476, 476, 476, 476, 183, 183, 183, 183, 183, 183, 183, 183, 184, 184, 184, 184, 184, 184, 184, 476, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 187, 476, 476, 476, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 189, 476, 189, 189, 476, 476, 476, 476, 189, 189, 189, 189, 189, 189, 189, 189, 191, 191, 191, 191, 191, 191, 476, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 195, 476, 195, 476, 476, 476, 476, 195, 195, 476, 476, 476, 476, 476, 476, 195, 195, 195, 195, 195, 195, 195, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 207, 207, 476, 476, 476, 476, 207, 207, 207, 207, 207, 207, 207, 207, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 226, 226, 476, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 128, 128, 128, 476, 476, 128, 128, 476, 128, 476, 476, 128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 476, 476, 476, 129, 129, 129, 129, 129, 129, 129, 147, 476, 147, 476, 476, 476, 147, 147, 476, 147, 476, 476, 476, 476, 147, 476, 476, 476, 147, 147, 147, 147, 147, 147, 147, 150, 476, 150, 476, 150, 476, 150, 476, 476, 476, 476, 476, 150, 150, 150, 150, 150, 150, 150, 153, 153, 476, 153, 153, 153, 476, 476, 476, 153, 153, 153, 153, 153, 153, 153, 156, 476, 476, 476, 156, 476, 476, 476, 476, 476, 476, 476, 476, 156, 156, 156, 156, 156, 156, 156, 244, 476, 476, 244, 476, 244, 476, 244, 476, 244, 476, 476, 244, 244, 476, 244, 244, 244, 244, 244, 244, 244, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 157, 476, 476, 476, 476, 476, 157, 157, 476, 476, 157, 157, 157, 476, 476, 476, 157, 157, 157, 157, 157, 157, 157, 250, 476, 476, 250, 250, 250, 250, 250, 476, 250, 250, 476, 250, 250, 476, 250, 250, 250, 250, 250, 250, 250, 250, 160, 160, 160, 160, 160, 476, 160, 160, 476, 160, 476, 476, 160, 160, 160, 160, 160, 160, 160, 160, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 476, 476, 476, 476, 476, 476, 476, 177, 476, 476, 476, 476, 177, 177, 177, 476, 476, 177, 177, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 183, 476, 183, 183, 476, 476, 476, 476, 183, 183, 183, 183, 183, 183, 183, 183, 184, 184, 184, 184, 184, 184, 184, 476, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 187, 476, 476, 476, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 189, 476, 189, 189, 476, 476, 476, 476, 189, 189, 189, 189, 189, 189, 189, 189, 191, 191, 191, 191, 191, 191, 476, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 476, 476, 476, 476, 476, 476, 191, 476, 476, 476, 476, 476, 476, 191, 476, 476, 191, 476, 191, 195, 195, 195, 195, 195, 195, 195, 270, 476, 476, 476, 476, 476, 270, 270, 476, 270, 270, 476, 476, 476, 476, 270, 270, 270, 270, 270, 270, 270, 270, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 476, 476, 476, 476, 476, 476, 196, 476, 476, 476, 476, 476, 476, 196, 476, 476, 196, 476, 196, 207, 207, 476, 476, 476, 476, 207, 207, 207, 207, 207, 207, 207, 207, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 282, 282, 476, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 283, 283, 476, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 226, 226, 476, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 284, 284, 476, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 128, 128, 128, 476, 476, 128, 128, 476, 128, 476, 476, 128, 128, 128, 128, 128, 128, 128, 128, 244, 476, 476, 244, 476, 244, 476, 244, 476, 244, 476, 476, 244, 244, 476, 244, 244, 244, 244, 244, 244, 244, 303, 303, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 303, 303, 303, 303, 303, 303, 303, 250, 476, 476, 250, 250, 250, 250, 250, 476, 250, 250, 476, 250, 250, 476, 250, 250, 250, 250, 250, 250, 250, 250, 160, 160, 160, 160, 160, 476, 160, 160, 476, 160, 476, 476, 160, 160, 160, 160, 160, 160, 160, 160, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 322, 322, 476, 476, 476, 476, 322, 322, 322, 324, 324, 476, 476, 476, 476, 324, 324, 324, 191, 191, 476, 476, 476, 476, 191, 191, 191, 196, 196, 476, 476, 476, 476, 196, 196, 196, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 15, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476 } ; static yyconst flex_int16_t yy_chk[3499] = { 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, 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, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 6, 7, 7, 7, 8, 8, 8, 9, 25, 473, 5, 6, 10, 25, 9, 9, 9, 106, 106, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 30, 31, 248, 32, 33, 34, 66, 35, 36, 91, 37, 38, 41, 34, 248, 31, 40, 95, 39, 46, 109, 46, 36, 46, 46, 82, 82, 82, 444, 30, 31, 32, 33, 39, 34, 35, 425, 36, 37, 38, 41, 34, 45, 31, 45, 40, 341, 39, 109, 125, 36, 115, 56, 364, 138, 45, 66, 45, 341, 91, 125, 39, 95, 45, 48, 48, 56, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 115, 56, 48, 138, 49, 111, 57, 48, 48, 48, 48, 48, 48, 49, 56, 196, 49, 49, 49, 177, 57, 293, 103, 103, 50, 50, 50, 50, 50, 281, 50, 50, 50, 111, 50, 57, 179, 179, 48, 48, 48, 48, 50, 51, 51, 51, 51, 51, 57, 51, 51, 51, 112, 51, 139, 103, 104, 104, 104, 92, 196, 342, 92, 342, 53, 48, 48, 48, 50, 177, 54, 50, 92, 92, 371, 53, 371, 113, 53, 114, 112, 54, 103, 139, 54, 130, 279, 51, 52, 52, 52, 52, 52, 53, 52, 52, 52, 55, 52, 54, 58, 59, 55, 53, 52, 113, 53, 114, 191, 54, 55, 55, 54, 130, 58, 59, 131, 58, 52, 200, 200, 59, 118, 118, 118, 223, 55, 355, 132, 58, 59, 55, 52, 52, 62, 384, 60, 61, 55, 55, 60, 61, 58, 59, 131, 58, 52, 62, 62, 59, 60, 61, 122, 122, 122, 60, 132, 122, 191, 124, 124, 124, 384, 62, 124, 60, 61, 249, 249, 60, 61, 153, 153, 153, 221, 62, 62, 355, 60, 61, 188, 188, 188, 60, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 133, 134, 136, 137, 140, 216, 141, 142, 143, 144, 145, 146, 163, 146, 140, 147, 185, 147, 163, 147, 147, 202, 202, 202, 146, 184, 146, 180, 133, 134, 136, 137, 146, 140, 141, 142, 143, 144, 145, 150, 163, 150, 140, 150, 150, 152, 163, 152, 155, 152, 152, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 149, 156, 154, 157, 129, 156, 166, 154, 154, 154, 154, 154, 154, 156, 119, 157, 157, 396, 208, 157, 157, 157, 157, 159, 162, 159, 212, 159, 159, 164, 164, 165, 162, 158, 166, 173, 165, 108, 154, 154, 154, 154, 158, 158, 396, 158, 158, 208, 268, 268, 158, 209, 162, 107, 158, 212, 102, 164, 164, 165, 162, 271, 271, 173, 165, 154, 154, 154, 160, 160, 160, 160, 160, 167, 160, 160, 160, 167, 160, 209, 170, 161, 161, 161, 161, 161, 158, 161, 161, 161, 168, 161, 169, 90, 172, 168, 170, 213, 171, 77, 175, 167, 172, 169, 76, 167, 174, 175, 171, 170, 210, 174, 160, 171, 176, 176, 161, 372, 168, 193, 193, 169, 172, 168, 170, 161, 213, 171, 175, 228, 172, 169, 198, 198, 174, 175, 171, 399, 210, 174, 229, 171, 176, 176, 161, 214, 214, 214, 219, 219, 219, 231, 193, 219, 220, 220, 220, 232, 228, 220, 233, 222, 222, 222, 75, 198, 222, 372, 229, 245, 245, 245, 247, 247, 247, 301, 301, 302, 302, 193, 231, 321, 321, 323, 323, 70, 232, 399, 233, 67, 47, 27, 198, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, 230, 230, 234, 235, 236, 237, 238, 239, 401, 241, 242, 243, 419, 257, 257, 251, 251, 251, 251, 251, 254, 251, 251, 251, 24, 251, 20, 254, 230, 230, 234, 235, 236, 237, 238, 250, 239, 241, 242, 251, 243, 257, 257, 15, 250, 250, 253, 250, 250, 254, 262, 255, 250, 253, 253, 254, 250, 262, 401, 251, 0, 255, 419, 252, 252, 252, 252, 252, 251, 252, 252, 252, 263, 252, 253, 256, 258, 259, 258, 262, 255, 253, 253, 260, 256, 262, 259, 260, 250, 255, 252, 261, 264, 265, 275, 261, 264, 265, 277, 278, 263, 266, 267, 256, 258, 259, 258, 252, 266, 285, 287, 260, 256, 288, 259, 260, 267, 267, 252, 261, 264, 265, 275, 261, 264, 265, 277, 278, 290, 296, 266, 291, 292, 294, 295, 297, 266, 285, 287, 299, 300, 305, 288, 303, 303, 304, 306, 308, 304, 0, 307, 0, 267, 307, 306, 303, 310, 290, 296, 291, 292, 294, 295, 297, 310, 313, 309, 299, 300, 305, 312, 311, 314, 304, 306, 308, 304, 309, 314, 307, 311, 307, 306, 315, 310, 317, 318, 312, 0, 316, 315, 325, 310, 313, 319, 309, 316, 326, 312, 311, 314, 320, 319, 328, 329, 309, 314, 330, 311, 331, 333, 334, 315, 317, 318, 320, 320, 316, 315, 335, 325, 336, 319, 338, 316, 326, 332, 332, 332, 337, 319, 328, 339, 329, 344, 330, 332, 331, 333, 334, 343, 345, 343, 345, 346, 344, 348, 0, 335, 336, 348, 320, 338, 349, 347, 347, 347, 337, 354, 350, 349, 339, 350, 344, 347, 356, 0, 0, 343, 345, 343, 345, 346, 344, 348, 351, 352, 0, 348, 357, 359, 351, 349, 352, 353, 0, 354, 350, 349, 360, 350, 365, 368, 347, 356, 353, 358, 358, 358, 367, 361, 361, 361, 351, 369, 352, 358, 357, 359, 351, 361, 352, 370, 353, 362, 362, 362, 360, 0, 365, 368, 347, 383, 353, 362, 366, 366, 366, 367, 373, 373, 373, 369, 375, 374, 366, 374, 377, 387, 373, 370, 0, 375, 376, 376, 376, 378, 378, 378, 379, 383, 380, 381, 376, 377, 382, 378, 0, 379, 380, 381, 375, 374, 382, 374, 377, 387, 391, 373, 388, 375, 385, 385, 385, 389, 389, 389, 392, 379, 380, 381, 385, 376, 382, 389, 378, 379, 380, 381, 395, 398, 382, 393, 393, 393, 391, 373, 402, 388, 397, 397, 397, 393, 405, 408, 402, 392, 403, 409, 397, 376, 404, 412, 378, 403, 414, 405, 404, 395, 398, 406, 406, 406, 413, 421, 402, 0, 407, 0, 429, 406, 405, 408, 402, 407, 0, 403, 409, 0, 0, 404, 412, 403, 405, 414, 404, 430, 410, 410, 410, 426, 413, 421, 415, 415, 415, 407, 410, 429, 406, 0, 0, 407, 415, 416, 416, 416, 418, 418, 418, 420, 420, 420, 422, 416, 430, 422, 418, 426, 431, 420, 423, 423, 423, 424, 424, 424, 406, 427, 427, 427, 423, 0, 437, 424, 432, 432, 432, 427, 436, 438, 441, 422, 439, 422, 432, 445, 431, 448, 420, 442, 434, 434, 434, 440, 440, 440, 442, 449, 457, 423, 434, 437, 424, 440, 450, 0, 436, 0, 438, 441, 439, 446, 446, 446, 445, 448, 420, 452, 442, 453, 459, 446, 453, 461, 442, 449, 457, 423, 463, 458, 424, 458, 464, 450, 451, 451, 451, 455, 455, 455, 462, 464, 462, 465, 451, 460, 452, 455, 453, 459, 453, 461, 460, 466, 466, 467, 463, 458, 469, 458, 464, 471, 468, 474, 0, 0, 470, 0, 462, 464, 462, 465, 468, 470, 460, 0, 0, 472, 0, 0, 460, 466, 466, 472, 467, 0, 0, 469, 0, 471, 531, 468, 474, 0, 0, 470, 531, 531, 531, 0, 468, 470, 0, 0, 0, 472, 0, 0, 0, 0, 0, 472, 0, 0, 0, 0, 0, 0, 0, 0, 474, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 478, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 480, 0, 0, 0, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 482, 482, 482, 482, 482, 482, 482, 483, 483, 0, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 483, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, 485, 485, 485, 0, 0, 485, 485, 0, 485, 0, 0, 485, 485, 485, 485, 485, 485, 485, 485, 486, 486, 0, 0, 0, 0, 486, 486, 486, 486, 486, 486, 486, 487, 0, 487, 0, 0, 0, 487, 487, 0, 487, 0, 0, 0, 0, 487, 0, 0, 0, 487, 487, 487, 487, 487, 487, 487, 488, 0, 488, 0, 488, 0, 488, 0, 0, 0, 0, 0, 488, 488, 488, 488, 488, 488, 488, 489, 0, 0, 489, 489, 0, 489, 489, 489, 0, 0, 0, 489, 489, 489, 489, 489, 489, 489, 490, 490, 0, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 491, 0, 0, 0, 491, 0, 0, 491, 491, 0, 0, 0, 0, 491, 491, 491, 491, 491, 491, 491, 492, 492, 492, 492, 492, 0, 492, 492, 0, 492, 0, 0, 492, 492, 492, 492, 492, 492, 492, 492, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 493, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 495, 0, 495, 495, 0, 0, 0, 0, 495, 495, 495, 495, 495, 495, 495, 495, 496, 496, 496, 496, 496, 496, 496, 0, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 497, 0, 0, 0, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 498, 0, 498, 498, 0, 0, 0, 0, 498, 498, 498, 498, 498, 498, 498, 498, 499, 499, 499, 499, 499, 499, 0, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, 500, 0, 500, 0, 0, 0, 0, 500, 500, 0, 0, 0, 0, 0, 0, 500, 500, 500, 500, 500, 500, 500, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 502, 502, 0, 0, 0, 0, 502, 502, 502, 502, 502, 502, 502, 502, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 506, 506, 0, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, 507, 507, 507, 0, 0, 507, 507, 0, 507, 0, 0, 507, 507, 507, 507, 507, 507, 507, 507, 508, 508, 508, 0, 0, 0, 508, 508, 508, 508, 508, 508, 508, 509, 0, 509, 0, 0, 0, 509, 509, 0, 509, 0, 0, 0, 0, 509, 0, 0, 0, 509, 509, 509, 509, 509, 509, 509, 510, 0, 510, 0, 510, 0, 510, 0, 0, 0, 0, 0, 510, 510, 510, 510, 510, 510, 510, 511, 511, 0, 511, 511, 511, 0, 0, 0, 511, 511, 511, 511, 511, 511, 511, 512, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 513, 0, 0, 513, 0, 513, 0, 513, 0, 513, 0, 0, 513, 513, 0, 513, 513, 513, 513, 513, 513, 513, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 515, 0, 0, 0, 0, 0, 515, 515, 0, 0, 515, 515, 515, 0, 0, 0, 515, 515, 515, 515, 515, 515, 515, 516, 0, 0, 516, 516, 516, 516, 516, 0, 516, 516, 0, 516, 516, 0, 516, 516, 516, 516, 516, 516, 516, 516, 517, 517, 517, 517, 517, 0, 517, 517, 0, 517, 0, 0, 517, 517, 517, 517, 517, 517, 517, 517, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 519, 0, 0, 0, 0, 0, 0, 0, 519, 0, 0, 0, 0, 519, 519, 519, 0, 0, 519, 519, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 521, 0, 521, 521, 0, 0, 0, 0, 521, 521, 521, 521, 521, 521, 521, 521, 522, 522, 522, 522, 522, 522, 522, 0, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 522, 523, 0, 0, 0, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 524, 0, 524, 524, 0, 0, 0, 0, 524, 524, 524, 524, 524, 524, 524, 524, 525, 525, 525, 525, 525, 525, 0, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 526, 526, 0, 0, 0, 0, 0, 0, 526, 0, 0, 0, 0, 0, 0, 526, 0, 0, 526, 0, 526, 527, 527, 527, 527, 527, 527, 527, 528, 0, 0, 0, 0, 0, 528, 528, 0, 528, 528, 0, 0, 0, 0, 528, 528, 528, 528, 528, 528, 528, 528, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 530, 530, 0, 0, 0, 0, 0, 0, 530, 0, 0, 0, 0, 0, 0, 530, 0, 0, 530, 0, 530, 532, 532, 0, 0, 0, 0, 532, 532, 532, 532, 532, 532, 532, 532, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 537, 537, 0, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 537, 538, 538, 0, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, 539, 539, 0, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 540, 540, 0, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 541, 541, 541, 0, 0, 541, 541, 0, 541, 0, 0, 541, 541, 541, 541, 541, 541, 541, 541, 542, 0, 0, 542, 0, 542, 0, 542, 0, 542, 0, 0, 542, 542, 0, 542, 542, 542, 542, 542, 542, 542, 543, 543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 543, 543, 543, 543, 543, 543, 543, 544, 0, 0, 544, 544, 544, 544, 544, 0, 544, 544, 0, 544, 544, 0, 544, 544, 544, 544, 544, 544, 544, 544, 545, 545, 545, 545, 545, 0, 545, 545, 0, 545, 0, 0, 545, 545, 545, 545, 545, 545, 545, 545, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 547, 547, 0, 0, 0, 0, 547, 547, 547, 548, 548, 0, 0, 0, 0, 548, 548, 548, 549, 549, 0, 0, 0, 0, 549, 549, 549, 550, 550, 0, 0, 0, 0, 550, 550, 550, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476 } ; /* Table of booleans, true if rule could match eol. */ static yyconst flex_int32_t yy_rule_can_match_eol[100] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, }; static yy_state_type yy_last_accepting_state; 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 * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "lexer.l" /* Lex file for rsyslog config format v2 (RainerScript). * Please note: this file introduces the new config format, but maintains * backward compatibility. In order to do so, the grammar is not 100% clean, * but IMHO still sufficiently easy both to understand for programmers * maitaining the code as well as users writing the config file. Users are, * of course, encouraged to use new constructs only. But it needs to be noted * that some of the legacy constructs (specifically the in-front-of-action * PRI filter) are very hard to beat in ease of use, at least for simpler * cases. So while we hope that cfsysline support can be dropped some time in * the future, we will probably keep these useful constructs. * * Copyright 2011-2014 Rainer Gerhards and Adiscon GmbH. * * This file is part of the rsyslog runtime library. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * -or- * see COPYING.ASL20 in the source distribution * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #line 32 "lexer.l" #include "config.h" /*%option noyywrap nodefault case-insensitive */ /* avoid compiler warning: `yyunput' defined but not used */ #define YY_NO_INPUT 1 /* INOBJ is selected if we are inside an object (name/value pairs!) */ /* COMMENT is "the usual trick" to handle C-style comments */ /* INCL is in $IncludeConfig processing (skip to include file) */ /* LINENO: support for setting the linenumber */ /* INCALL: support for the call statement */ /* EXPR is a bit ugly, but we need it to support pre v6-syntax. The problem * is that cfsysline statement start with $..., the same like variables in * an expression. However, cfsysline statements can never appear inside an * expression. So we create a specific expr mode, which is turned on after * we lexed a keyword that needs to be followed by an expression (using * knowledge from the upper layer...). In expr mode, we strictly do * expression-based parsing. Expr mode is stopped when we reach a token * that can not be part of an expression (currently only "then"). As I * wrote this ugly, but the price needed to pay in order to remain * compatible to the previous format. */ #line 65 "lexer.l" #include #include #include #include #include #include "rainerscript.h" #include "parserif.h" #include "grammar.h" static int preCommentState; /* save for lex state before a comment */ struct bufstack { struct bufstack *prev; YY_BUFFER_STATE bs; int lineno; char *fn; es_str_t *estr; } *currbs = NULL; char *cnfcurrfn; /* name of currently processed file */ int popfile(void); int cnfSetLexFile(char *fname); extern int yydebug; /* somehow, I need these prototype even though the headers are * included. I guess that's some autotools magic I don't understand... */ #if !defined(__FreeBSD__) int fileno(FILE *stream); #endif #line 1512 "lexer.c" #define INITIAL 0 #define INOBJ 1 #define COMMENT 2 #define INCL 3 #define LINENO 4 #define INCALL 5 #define EXPR 6 #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 #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ 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 /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 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 * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 99 "lexer.l" /* keywords */ #line 1705 "lexer.c" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 477 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 3414 ); yy_find_action: 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; if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] ) { yy_size_t yyl; for ( yyl = 0; yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) yylineno++; ; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 102 "lexer.l" { BEGIN EXPR; return IF; } YY_BREAK case 2: YY_RULE_SETUP #line 103 "lexer.l" { BEGIN INITIAL; return THEN; } YY_BREAK case 3: YY_RULE_SETUP #line 104 "lexer.l" { BEGIN INITIAL; return ';'; } YY_BREAK case 4: YY_RULE_SETUP #line 105 "lexer.l" { return OR; } YY_BREAK case 5: YY_RULE_SETUP #line 106 "lexer.l" { return AND; } YY_BREAK case 6: YY_RULE_SETUP #line 107 "lexer.l" { return NOT; } YY_BREAK case 7: #line 109 "lexer.l" case 8: #line 110 "lexer.l" case 9: #line 111 "lexer.l" case 10: #line 112 "lexer.l" case 11: #line 113 "lexer.l" case 12: #line 114 "lexer.l" case 13: #line 115 "lexer.l" case 14: #line 116 "lexer.l" case 15: #line 117 "lexer.l" case 16: #line 118 "lexer.l" case 17: #line 119 "lexer.l" case 18: YY_RULE_SETUP #line 119 "lexer.l" { return yytext[0]; } YY_BREAK case 19: YY_RULE_SETUP #line 120 "lexer.l" { return CMP_EQ; } YY_BREAK case 20: YY_RULE_SETUP #line 121 "lexer.l" { return CMP_LE; } YY_BREAK case 21: YY_RULE_SETUP #line 122 "lexer.l" { return CMP_GE; } YY_BREAK case 22: #line 124 "lexer.l" case 23: YY_RULE_SETUP #line 124 "lexer.l" { return CMP_NE; } YY_BREAK case 24: YY_RULE_SETUP #line 125 "lexer.l" { return CMP_LT; } YY_BREAK case 25: YY_RULE_SETUP #line 126 "lexer.l" { return CMP_GT; } YY_BREAK case 26: YY_RULE_SETUP #line 127 "lexer.l" { return CMP_CONTAINS; } YY_BREAK case 27: YY_RULE_SETUP #line 128 "lexer.l" { return CMP_CONTAINSI; } YY_BREAK case 28: YY_RULE_SETUP #line 129 "lexer.l" { return CMP_STARTSWITH; } YY_BREAK case 29: YY_RULE_SETUP #line 130 "lexer.l" { return CMP_STARTSWITHI; } YY_BREAK case 30: #line 132 "lexer.l" case 31: #line 133 "lexer.l" case 32: YY_RULE_SETUP #line 133 "lexer.l" { yylval.n = strtoll(yytext, NULL, 0); return NUMBER; } YY_BREAK case 33: YY_RULE_SETUP #line 134 "lexer.l" { yylval.s = strdup(yytext+1); return VAR; } YY_BREAK case 34: /* rule 34 can match eol */ YY_RULE_SETUP #line 135 "lexer.l" { yytext[yyleng-1] = '\0'; unescapeStr((uchar*)yytext+1, yyleng-2); yylval.estr = es_newStrFromBuf(yytext+1, strlen(yytext)-1); return STRING; } YY_BREAK case 35: /* rule 35 can match eol */ YY_RULE_SETUP #line 140 "lexer.l" { yytext[yyleng-1] = '\0'; unescapeStr((uchar*)yytext+1, yyleng-2); yylval.estr = es_newStrFromBuf(yytext+1, strlen(yytext)-1); return STRING; } YY_BREAK case 36: /* rule 36 can match eol */ YY_RULE_SETUP #line 145 "lexer.l" YY_BREAK case 37: YY_RULE_SETUP #line 146 "lexer.l" { yylval.estr = es_newStrFromCStr(yytext, yyleng); return FUNC; } YY_BREAK case 38: YY_RULE_SETUP #line 148 "lexer.l" { parser_errmsg("invalid character '%s' in expression " "- is there an invalid escape sequence somewhere?", yytext); } YY_BREAK case 39: /* rule 39 can match eol */ YY_RULE_SETUP #line 151 "lexer.l" YY_BREAK case 40: YY_RULE_SETUP #line 152 "lexer.l" { parser_errmsg("invalid character '%s' in 'call' statement" "- is there an invalid escape sequence somewhere?", yytext); } YY_BREAK case 41: YY_RULE_SETUP #line 155 "lexer.l" { yylval.estr = es_newStrFromCStr(yytext, yyleng); BEGIN INITIAL; return NAME; } YY_BREAK case 42: YY_RULE_SETUP #line 158 "lexer.l" { return '&'; } YY_BREAK case 43: YY_RULE_SETUP #line 159 "lexer.l" { return '{'; } YY_BREAK case 44: YY_RULE_SETUP #line 160 "lexer.l" { return '}'; } YY_BREAK case 45: YY_RULE_SETUP #line 161 "lexer.l" { return STOP; } YY_BREAK case 46: YY_RULE_SETUP #line 162 "lexer.l" { return ELSE; } YY_BREAK case 47: YY_RULE_SETUP #line 163 "lexer.l" { BEGIN INCALL; return CALL; } YY_BREAK case 48: YY_RULE_SETUP #line 164 "lexer.l" { BEGIN EXPR; return SET; } YY_BREAK case 49: YY_RULE_SETUP #line 165 "lexer.l" { BEGIN EXPR; return UNSET; } YY_BREAK case 50: YY_RULE_SETUP #line 166 "lexer.l" { return CONTINUE; } YY_BREAK /* line number support because the "preprocessor" combines lines and so needs * to tell us the real source line. */ case 51: YY_RULE_SETUP #line 170 "lexer.l" { BEGIN LINENO; } YY_BREAK case 52: YY_RULE_SETUP #line 171 "lexer.l" { yylineno = atoi(yytext) - 1; } YY_BREAK case 53: YY_RULE_SETUP #line 172 "lexer.l" { BEGIN INITIAL; } YY_BREAK case 54: /* rule 54 can match eol */ YY_RULE_SETUP #line 173 "lexer.l" YY_BREAK /* $IncludeConfig must be detected as part of CFSYSLINE, because this is * always the longest match :-( */ case 55: /* rule 55 can match eol */ YY_RULE_SETUP #line 177 "lexer.l" YY_BREAK case 56: YY_RULE_SETUP #line 178 "lexer.l" { if(cnfDoInclude(yytext) != 0) yyterminate(); BEGIN INITIAL; } YY_BREAK case 57: /* rule 57 can match eol */ YY_RULE_SETUP #line 181 "lexer.l" { yylval.objType = CNFOBJ_MAINQ; BEGIN INOBJ; return BEGINOBJ; } YY_BREAK case 58: /* rule 58 can match eol */ YY_RULE_SETUP #line 183 "lexer.l" { yylval.objType = CNFOBJ_GLOBAL; BEGIN INOBJ; return BEGINOBJ; } YY_BREAK case 59: /* rule 59 can match eol */ YY_RULE_SETUP #line 185 "lexer.l" { yylval.objType = CNFOBJ_TPL; BEGIN INOBJ; return BEGIN_TPL; } YY_BREAK case 60: /* rule 60 can match eol */ YY_RULE_SETUP #line 187 "lexer.l" { yylval.objType = CNFOBJ_RULESET; BEGIN INOBJ; return BEGIN_RULESET; } YY_BREAK case 61: /* rule 61 can match eol */ YY_RULE_SETUP #line 189 "lexer.l" { yylval.objType = CNFOBJ_PROPERTY; BEGIN INOBJ; return BEGIN_PROPERTY; } YY_BREAK case 62: /* rule 62 can match eol */ YY_RULE_SETUP #line 191 "lexer.l" { yylval.objType = CNFOBJ_CONSTANT; BEGIN INOBJ; return BEGIN_CONSTANT; } YY_BREAK case 63: /* rule 63 can match eol */ YY_RULE_SETUP #line 193 "lexer.l" { yylval.objType = CNFOBJ_INPUT; BEGIN INOBJ; return BEGINOBJ; } YY_BREAK case 64: /* rule 64 can match eol */ YY_RULE_SETUP #line 195 "lexer.l" { yylval.objType = CNFOBJ_MODULE; BEGIN INOBJ; return BEGINOBJ; } YY_BREAK case 65: /* rule 65 can match eol */ YY_RULE_SETUP #line 197 "lexer.l" { yylval.objType = CNFOBJ_LOOKUP_TABLE; BEGIN INOBJ; return BEGINOBJ; } YY_BREAK case 66: /* rule 66 can match eol */ YY_RULE_SETUP #line 199 "lexer.l" { BEGIN INOBJ; return BEGIN_ACTION; } YY_BREAK case 67: /* rule 67 can match eol */ YY_RULE_SETUP #line 200 "lexer.l" { yylval.s = strdup(rmLeadingSpace(yytext)); dbgprintf("lexer: propfilt is '%s'\n", yylval.s); return PROPFILT; } YY_BREAK case 68: YY_RULE_SETUP #line 205 "lexer.l" { yylval.s = strdup(rmLeadingSpace(yytext)); return PRIFILT; } YY_BREAK case 69: #line 207 "lexer.l" case 70: #line 208 "lexer.l" case 71: /* rule 71 can match eol */ #line 209 "lexer.l" case 72: /* rule 72 can match eol */ #line 210 "lexer.l" case 73: /* rule 73 can match eol */ #line 211 "lexer.l" case 74: /* rule 74 can match eol */ #line 212 "lexer.l" case 75: /* rule 75 can match eol */ YY_RULE_SETUP #line 212 "lexer.l" { yylval.s = yytext; return LEGACY_ACTION; } YY_BREAK case 76: YY_RULE_SETUP #line 213 "lexer.l" { BEGIN INITIAL; return ENDOBJ; } YY_BREAK case 77: YY_RULE_SETUP #line 214 "lexer.l" { yylval.estr = es_newStrFromCStr(yytext, yyleng); return NAME; } YY_BREAK case 78: #line 217 "lexer.l" case 79: #line 218 "lexer.l" case 80: #line 219 "lexer.l" case 81: YY_RULE_SETUP #line 219 "lexer.l" { return(yytext[0]); } YY_BREAK case 82: /* rule 82 can match eol */ YY_RULE_SETUP #line 220 "lexer.l" { yytext[yyleng-1] = '\0'; unescapeStr((uchar*)yytext+1, yyleng-2); yylval.estr = es_newStrFromBuf(yytext+1, strlen(yytext)-1); return STRING; } YY_BREAK /*yylval.estr = es_newStrFromBuf(yytext+1, yyleng-2); return VALUE; }*/ case 83: YY_RULE_SETUP #line 227 "lexer.l" { preCommentState = YY_START; BEGIN COMMENT; } YY_BREAK case 84: YY_RULE_SETUP #line 228 "lexer.l" { preCommentState = YY_START; BEGIN COMMENT; } YY_BREAK case 85: YY_RULE_SETUP #line 229 "lexer.l" { preCommentState = YY_START; BEGIN COMMENT; } YY_BREAK case 86: YY_RULE_SETUP #line 230 "lexer.l" { BEGIN preCommentState; } YY_BREAK case 87: /* rule 87 can match eol */ YY_RULE_SETUP #line 231 "lexer.l" YY_BREAK case 88: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 232 "lexer.l" /* skip comments in input */ YY_BREAK case 89: /* rule 89 can match eol */ YY_RULE_SETUP #line 233 "lexer.l" YY_BREAK case 90: YY_RULE_SETUP #line 234 "lexer.l" { parser_errmsg("invalid character '%s' in object definition " "- is there an invalid escape sequence somewhere?", yytext); } YY_BREAK case 91: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 237 "lexer.l" { /* see comment on $IncludeConfig above */ if(!strncasecmp(yytext, "$includeconfig ", 14)) { yyless(14); BEGIN INCL; } else if(!strncasecmp(yytext, "$ruleset ", 9)) { yylval.s = strdup(yytext); return LEGACY_RULESET; } else { cnfDoCfsysline(strdup(yytext)); } } YY_BREAK case 92: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 248 "lexer.l" { yylval.s = strdup(yytext); return BSD_TAG_SELECTOR; } YY_BREAK case 93: /* rule 93 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 249 "lexer.l" { yylval.s = strdup(yytext); return BSD_HOST_SELECTOR; } YY_BREAK case 94: /* rule 94 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 250 "lexer.l" { yylval.s = strdup(yytext); return BSD_HOST_SELECTOR; } YY_BREAK case 95: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 251 "lexer.l" { yylval.s = strdup(yytext); return BSD_HOST_SELECTOR; } YY_BREAK case 96: /* rule 96 can match eol */ YY_RULE_SETUP #line 252 "lexer.l" /* skip comments in input */ YY_BREAK case 97: /* rule 97 can match eol */ YY_RULE_SETUP #line 253 "lexer.l" /* drop whitespace */ YY_BREAK case 98: YY_RULE_SETUP #line 254 "lexer.l" { parser_errmsg("invalid character '%s' " "- is there an invalid escape sequence somewhere?", yytext); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(INOBJ): case YY_STATE_EOF(COMMENT): case YY_STATE_EOF(INCL): case YY_STATE_EOF(LINENO): case YY_STATE_EOF(INCALL): case YY_STATE_EOF(EXPR): #line 257 "lexer.l" { if(popfile() != 0) yyterminate(); } YY_BREAK case 99: YY_RULE_SETUP #line 259 "lexer.l" YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK #line 2339 "lexer.c" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); 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, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { yy_size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = 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_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); 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); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 477 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 477 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 476); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n'); if ( YY_CURRENT_BUFFER_LVALUE->yy_at_bol ) yylineno++; ; return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @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( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE 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; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } 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); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* 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 ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (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; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t 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*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); 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; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* 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; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || 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) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; 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 ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ 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 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ /* We do not touch yylineno unless the option is enabled. */ yylineno = 1; (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* 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(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 259 "lexer.l" int cnfParseBuffer(char *buf, unsigned lenBuf) { struct bufstack *bs; int r = 0; yydebug = 1; BEGIN INITIAL; /* maintain stack */ if((bs = malloc(sizeof(struct bufstack))) == NULL) { r = 1; goto done; } if(currbs != NULL) currbs->lineno = yylineno; bs->prev = currbs; bs->fn = strdup("*buffer*"); bs->bs = yy_scan_buffer(buf,lenBuf); bs->estr = NULL; currbs = bs; cnfcurrfn = bs->fn; yylineno = 1; done: return r; } /* set a new buffers. Returns 0 on success, something else otherwise. */ int cnfSetLexFile(char *fname) { es_str_t *str = NULL; FILE *fp; int r = 0; struct bufstack *bs; if(fname == NULL) { fp = stdin; } else { if((fp = fopen(fname, "r")) == NULL) { r = 1; goto done; } } readConfFile(fp, &str); if(fp != stdin) fclose(fp); /* maintain stack */ if((bs = malloc(sizeof(struct bufstack))) == NULL) { r = 1; goto done; } if(currbs != NULL) currbs->lineno = yylineno; bs->prev = currbs; bs->fn = strdup(fname == NULL ? "stdin" : fname); bs->bs = yy_scan_buffer((char*)es_getBufAddr(str),es_strlen(str)); bs->estr = str; /* needed so we can free it later */ currbs = bs; cnfcurrfn = bs->fn; yylineno = 1; dbgprintf("config parser: pushed file %s on top of stack\n", fname); done: if(r != 0) { if(str != NULL) es_deleteStr(str); } return r; } /* returns 0 on success, something else otherwise */ int popfile(void) { struct bufstack *bs = currbs; if(bs == NULL) return 1; /* delete current entry. But we must not free the file name if * this is the top-level file, because then it may still be used * in error messages for other processing steps. * TODO: change this to another method which stores the file * name inside the config objects. In the longer term, this is * necessary, as otherwise we may provide wrong file name information * at the end of include files as well. -- rgerhards, 2011-07-22 */ dbgprintf("config parser: reached end of file %s\n", bs->fn); yy_delete_buffer(bs->bs); if(bs->prev != NULL) free(bs->fn); free(bs->estr); /* switch back to previous */ currbs = bs->prev; free(bs); if(currbs == NULL) { dbgprintf("config parser: parsing completed\n"); return 1; /* all processed */ } yy_switch_to_buffer(currbs->bs); yylineno = currbs->lineno; cnfcurrfn = currbs->fn; dbgprintf("config parser: resume parsing of file %s at line %d\n", cnfcurrfn, yylineno); return 0; } void tellLexEndParsing(void) { free(cnfcurrfn); cnfcurrfn= NULL; }