unbound/util/configlexer.c

2739 lines
84 KiB
C
Raw Normal View History

#include "util/configyyrename.h"
#line 3 "<stdout>"
#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 33
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if __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 <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#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 /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
#if __STDC__
#define YY_USE_CONST
#endif /* __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
extern int yyleng;
extern FILE *yyin, *yyout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
/* 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) )
/* The following is because we cannot portably get our hands on size_t
* (without autoconf's help, which isn't available because we want
* flex-generated scanners to compile on their own).
*/
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef unsigned int yy_size_t;
#endif
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
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.
*/
int 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 int yy_n_chars; /* number of characters read into yy_ch_buf */
int 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,int 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 */
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; \
(yytext_ptr) -= (yy_more_len); \
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 79
#define YY_END_OF_BUFFER 80
/* 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[694] =
{ 0,
1, 1, 67, 67, 71, 71, 75, 75, 80, 78,
1, 65, 66, 2, 79, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 67, 68, 79, 69, 79, 74, 71, 72, 73,
79, 75, 76, 77, 79, 78, 0, 1, 2, 2,
2, 2, 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, 67,
0, 74, 0, 71, 75, 0, 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, 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,
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, 78, 78, 78,
41, 78, 78, 78, 78, 6, 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, 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,
78, 78, 78, 78, 78, 78, 17, 78, 11, 12,
78, 14, 13, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 3, 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, 70, 78, 78, 78, 78, 78, 78, 20,
78, 78, 78, 78, 78, 78, 21, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 52, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 51, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 18, 78,
78, 78, 78, 78, 78, 78, 19, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 15, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 42, 43, 40, 78, 78, 78,
78, 78, 78, 78, 78, 78, 5, 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, 22, 78, 78, 78, 78, 64, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 38,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 4, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 45, 46, 44, 78, 78, 78, 78, 50, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 56,
78, 78, 78, 78, 78, 78, 28, 78, 78, 78,
78, 78, 49, 78, 78, 78, 78, 78, 78, 78,
78, 53, 78, 78, 78, 78, 78, 78, 7, 78,
78, 78, 78, 78, 78, 58, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 29,
30, 61, 78, 78, 24, 78, 78, 78, 78, 8,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 62, 23,
25, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 10, 78,
78, 78, 78, 78, 9, 26, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 31, 78, 78, 27, 78, 54, 55, 78, 78,
57, 78, 78, 78, 78, 78, 78, 78, 78, 78,
16, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 35, 78, 78, 60, 47, 78, 78,
37, 36, 78, 32, 78, 59, 78, 78, 78, 33,
78, 78, 48, 39, 34, 78, 78, 78, 78, 78,
78, 63, 0
} ;
static yyconst flex_int32_t yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 5, 6, 1, 1, 1, 1, 1,
1, 1, 1, 1, 7, 1, 1, 1, 1, 1,
8, 9, 1, 10, 1, 1, 1, 11, 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, 12, 1, 1, 1, 1, 13, 14, 15, 16,
17, 18, 19, 20, 21, 1, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 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, 1, 1, 1, 1
} ;
static yyconst flex_int32_t yy_meta[38] =
{ 0,
1, 2, 3, 4, 4, 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_int16_t yy_base[703] =
{ 0,
0, 0, 35, 38, 49, 53, 59, 63, 1412, 1399,
42, 1413, 1413, 68, 72, 66, 69, 33, 70, 72,
75, 34, 73, 81, 37, 84, 86, 89, 95, 88,
104, 1398, 1413, 1413, 1413, 118, 1397, 1406, 1413, 1413,
123, 1395, 1413, 1413, 125, 1394, 129, 130, 0, 133,
0, 0, 99, 90, 97, 132, 128, 129, 130, 131,
135, 137, 140, 139, 142, 144, 148, 150, 151, 153,
152, 157, 159, 158, 162, 163, 167, 171, 164, 1393,
181, 1392, 194, 1401, 1390, 196, 177, 180, 190, 191,
192, 193, 196, 199, 202, 198, 203, 222, 218, 205,
226, 223, 232, 229, 231, 219, 220, 230, 233, 207,
234, 240, 247, 248, 244, 245, 249, 165, 77, 251,
252, 253, 259, 256, 271, 267, 268, 269, 272, 270,
274, 275, 278, 280, 291, 276, 279, 285, 297, 303,
299, 300, 306, 302, 304, 308, 309, 327, 310, 311,
317, 313, 314, 337, 319, 316, 321, 328, 339, 344,
346, 343, 348, 354, 350, 358, 351, 361, 360, 363,
1389, 367, 368, 369, 370, 1388, 371, 377, 373, 374,
383, 389, 385, 391, 386, 393, 388, 395, 396, 397,
398, 405, 408, 410, 414, 419, 425, 422, 427, 428,
434, 431, 433, 411, 436, 437, 440, 444, 439, 447,
454, 453, 455, 456, 446, 457, 460, 462, 464, 469,
472, 466, 473, 479, 477, 481, 475, 482, 483, 484,
486, 492, 488, 495, 496, 498, 1387, 500, 1386, 1385,
502, 1384, 1383, 506, 503, 508, 511, 512, 516, 519,
522, 520, 524, 527, 529, 532, 535, 533, 540, 541,
542, 543, 545, 546, 551, 1382, 549, 554, 555, 556,
557, 565, 563, 561, 403, 575, 564, 569, 571, 573,
578, 579, 580, 581, 587, 584, 582, 589, 591, 585,
596, 606, 1381, 608, 607, 600, 609, 611, 615, 1380,
613, 617, 619, 623, 625, 633, 1379, 629, 631, 630,
635, 636, 637, 640, 315, 638, 645, 639, 646, 653,
650, 651, 655, 1378, 661, 663, 664, 666, 658, 668,
665, 671, 673, 674, 675, 676, 1377, 680, 678, 677,
684, 698, 692, 695, 699, 705, 701, 703, 702, 704,
710, 713, 721, 724, 709, 725, 726, 727, 1376, 735,
737, 741, 729, 739, 743, 740, 1375, 744, 745, 746,
747, 748, 750, 751, 752, 753, 754, 756, 765, 772,
778, 1374, 763, 771, 779, 775, 780, 782, 783, 784,
785, 786, 789, 790, 1373, 1372, 1371, 791, 792, 797,
802, 803, 807, 805, 809, 810, 1370, 811, 812, 814,
816, 818, 819, 826, 827, 820, 829, 833, 837, 843,
834, 840, 841, 842, 844, 845, 860, 858, 847, 861,
863, 864, 1369, 870, 867, 868, 869, 1368, 871, 872,
874, 878, 882, 881, 889, 894, 896, 898, 899, 1367,
905, 906, 886, 904, 912, 908, 909, 911, 888, 914,
916, 918, 917, 924, 920, 1366, 929, 936, 922, 932,
933, 943, 945, 952, 937, 946, 949, 958, 954, 956,
959, 1365, 1364, 1363, 962, 961, 963, 967, 1362, 964,
968, 971, 974, 976, 978, 979, 980, 993, 972, 981,
988, 994, 995, 996, 1001, 998, 1002, 1004, 1008, 1361,
1010, 1006, 1009, 1007, 1017, 1022, 1360, 1020, 1023, 1026,
1028, 1029, 1359, 1030, 1031, 1034, 1035, 1039, 1041, 1051,
1042, 1358, 1047, 1054, 1045, 1055, 1056, 1058, 1357, 1065,
1032, 1066, 1059, 1068, 1069, 1356, 1070, 1071, 1074, 1081,
1079, 1082, 1084, 1086, 1087, 1090, 1092, 1088, 1098, 1355,
1354, 1353, 1095, 1102, 1352, 1107, 1104, 1108, 1110, 1351,
1111, 1112, 1113, 1115, 1117, 1118, 1119, 1120, 1121, 1123,
1129, 1131, 1132, 1134, 1136, 1142, 1141, 1138, 1350, 1349,
1348, 1143, 1147, 1146, 1154, 1151, 1157, 1158, 1159, 1160,
1165, 1167, 1161, 1168, 1171, 1176, 1177, 1178, 1347, 1179,
1180, 1184, 1181, 1188, 1346, 1345, 1191, 1192, 1200, 1202,
1194, 1208, 1205, 1206, 1196, 1209, 1211, 1213, 1212, 1215,
1216, 1344, 1219, 1221, 1342, 1222, 1334, 1318, 1227, 1223,
1317, 1225, 1229, 1231, 1233, 1234, 1238, 1239, 1240, 1244,
1316, 1242, 1250, 1251, 1254, 1256, 1257, 1260, 1263, 1267,
1268, 1272, 1276, 1315, 1279, 1269, 1314, 1312, 1280, 1281,
1310, 1309, 1283, 1308, 1284, 1302, 1286, 1290, 1292, 1259,
1294, 1295, 1122, 817, 714, 1287, 1298, 1297, 1300, 1301,
1305, 681, 1413, 1331, 1335, 1339, 605, 1343, 1347, 217,
1349, 1351
} ;
static yyconst flex_int16_t yy_def[703] =
{ 0,
693, 1, 694, 694, 695, 695, 696, 696, 693, 697,
693, 693, 693, 698, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 699, 693, 693, 693, 699, 700, 693, 693, 693,
700, 701, 693, 693, 701, 697, 697, 693, 702, 698,
702, 698, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 699,
699, 700, 700, 693, 701, 701, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 697, 697, 697, 697, 697, 697, 697, 697,
697, 697, 0, 693, 693, 693, 693, 693, 693, 693,
693, 693
} ;
static yyconst flex_int16_t yy_nxt[1451] =
{ 0,
10, 11, 12, 12, 13, 14, 10, 10, 10, 10,
10, 15, 10, 10, 16, 17, 10, 18, 10, 19,
20, 21, 22, 23, 24, 25, 26, 10, 27, 28,
29, 30, 31, 10, 10, 10, 10, 33, 34, 35,
33, 34, 35, 48, 47, 47, 36, 49, 47, 36,
38, 39, 39, 40, 38, 39, 39, 40, 57, 63,
41, 43, 43, 44, 41, 43, 43, 44, 68, 51,
45, 51, 51, 46, 45, 46, 46, 47, 53, 52,
47, 47, 58, 47, 47, 54, 47, 60, 47, 55,
59, 62, 47, 66, 56, 47, 61, 47, 64, 47,
47, 47, 65, 154, 69, 73, 47, 75, 47, 70,
47, 71, 67, 87, 72, 47, 78, 77, 88, 74,
79, 80, 80, 76, 82, 89, 82, 82, 85, 85,
46, 48, 46, 46, 51, 49, 51, 51, 90, 47,
47, 47, 47, 47, 52, 93, 47, 94, 47, 95,
47, 47, 96, 47, 100, 47, 91, 92, 99, 47,
101, 47, 47, 47, 47, 97, 105, 102, 47, 47,
47, 103, 98, 47, 47, 47, 47, 107, 47, 153,
104, 106, 47, 113, 80, 80, 108, 109, 47, 110,
111, 47, 115, 114, 112, 82, 116, 82, 82, 85,
85, 47, 47, 47, 47, 117, 118, 47, 124, 47,
47, 119, 125, 47, 47, 120, 47, 82, 47, 130,
143, 121, 122, 126, 127, 123, 129, 128, 131, 47,
47, 47, 134, 47, 47, 132, 133, 47, 136, 135,
47, 47, 47, 47, 47, 47, 141, 137, 138, 139,
140, 47, 144, 146, 148, 47, 47, 149, 47, 47,
47, 151, 47, 47, 47, 142, 156, 47, 157, 145,
47, 158, 159, 150, 152, 147, 155, 160, 47, 47,
47, 47, 47, 47, 164, 47, 47, 47, 166, 47,
47, 47, 163, 169, 170, 167, 47, 161, 165, 162,
168, 171, 47, 172, 174, 175, 173, 176, 47, 177,
47, 47, 180, 47, 47, 47, 179, 47, 181, 47,
47, 47, 47, 192, 47, 47, 47, 47, 47, 178,
47, 191, 47, 184, 182, 190, 357, 183, 47, 47,
185, 186, 198, 193, 194, 195, 196, 199, 47, 197,
47, 187, 188, 189, 47, 47, 200, 47, 205, 47,
207, 47, 47, 201, 202, 47, 204, 208, 206, 47,
209, 47, 47, 210, 47, 213, 203, 211, 47, 47,
47, 47, 47, 219, 47, 47, 221, 215, 47, 216,
218, 212, 217, 222, 47, 225, 47, 47, 214, 47,
47, 220, 47, 228, 47, 226, 47, 47, 47, 47,
223, 229, 233, 224, 47, 230, 47, 231, 237, 47,
227, 47, 47, 235, 239, 47, 234, 232, 236, 240,
47, 241, 242, 47, 318, 238, 47, 243, 47, 47,
245, 248, 47, 244, 47, 47, 246, 47, 47, 247,
47, 47, 249, 255, 251, 47, 254, 47, 47, 252,
257, 250, 253, 256, 47, 47, 47, 47, 47, 259,
258, 47, 260, 47, 261, 47, 263, 47, 265, 266,
47, 262, 264, 47, 47, 270, 47, 267, 47, 271,
47, 268, 47, 47, 47, 47, 272, 47, 269, 47,
276, 275, 277, 47, 273, 274, 47, 47, 278, 47,
282, 47, 285, 47, 47, 280, 279, 47, 286, 47,
281, 287, 47, 47, 290, 288, 293, 47, 283, 284,
47, 47, 289, 47, 295, 47, 297, 294, 47, 291,
47, 298, 300, 47, 47, 296, 47, 292, 299, 301,
302, 47, 47, 47, 47, 307, 47, 47, 305, 303,
47, 306, 47, 309, 310, 47, 47, 47, 47, 304,
308, 315, 47, 313, 47, 47, 47, 317, 320, 312,
47, 314, 47, 311, 47, 316, 47, 319, 324, 47,
47, 47, 47, 47, 322, 47, 47, 321, 47, 328,
47, 333, 47, 323, 332, 46, 329, 47, 331, 335,
334, 47, 327, 325, 338, 326, 337, 47, 47, 47,
47, 339, 47, 330, 47, 336, 47, 342, 47, 340,
47, 343, 341, 345, 47, 346, 47, 348, 344, 349,
47, 47, 47, 347, 47, 351, 47, 47, 47, 47,
47, 47, 354, 355, 356, 359, 47, 47, 352, 350,
362, 47, 47, 358, 47, 353, 47, 366, 360, 47,
361, 364, 47, 367, 47, 47, 47, 47, 363, 47,
368, 369, 47, 370, 47, 47, 47, 47, 47, 47,
365, 47, 47, 371, 372, 47, 377, 379, 383, 375,
381, 374, 373, 47, 378, 376, 47, 380, 382, 47,
47, 386, 47, 47, 47, 47, 47, 387, 388, 384,
47, 47, 389, 395, 47, 47, 390, 385, 391, 394,
392, 396, 47, 393, 397, 47, 47, 47, 47, 398,
47, 402, 400, 403, 399, 401, 47, 404, 47, 405,
47, 47, 47, 407, 47, 47, 47, 47, 47, 47,
410, 47, 47, 47, 47, 47, 414, 47, 406, 415,
408, 412, 409, 417, 47, 411, 47, 413, 421, 418,
416, 420, 47, 47, 422, 425, 47, 419, 424, 47,
47, 47, 423, 47, 47, 47, 47, 47, 432, 433,
47, 47, 47, 47, 426, 435, 434, 429, 47, 427,
431, 428, 438, 47, 47, 430, 47, 436, 47, 440,
47, 47, 47, 47, 442, 47, 441, 47, 47, 47,
47, 47, 437, 439, 448, 449, 450, 47, 47, 443,
47, 444, 446, 451, 47, 47, 447, 445, 47, 456,
452, 47, 47, 47, 47, 47, 47, 454, 47, 453,
455, 459, 461, 460, 457, 463, 465, 464, 466, 47,
458, 47, 47, 462, 47, 47, 471, 467, 47, 47,
47, 47, 47, 47, 468, 47, 472, 476, 470, 47,
477, 469, 47, 47, 478, 481, 473, 47, 474, 47,
47, 475, 479, 480, 482, 47, 483, 47, 484, 47,
47, 486, 487, 485, 489, 47, 47, 47, 490, 47,
47, 488, 47, 47, 496, 47, 497, 47, 47, 47,
491, 47, 492, 47, 498, 47, 501, 493, 499, 494,
47, 495, 504, 47, 47, 503, 502, 47, 47, 508,
506, 509, 505, 500, 47, 510, 47, 47, 511, 512,
47, 513, 507, 47, 515, 47, 517, 47, 520, 47,
47, 518, 47, 47, 47, 47, 522, 523, 47, 47,
525, 519, 47, 47, 514, 47, 516, 47, 521, 47,
47, 47, 47, 531, 524, 530, 527, 534, 528, 47,
529, 535, 526, 532, 47, 47, 47, 47, 533, 47,
536, 539, 47, 47, 540, 47, 546, 47, 47, 47,
47, 47, 541, 537, 542, 544, 538, 545, 47, 547,
543, 47, 549, 47, 47, 551, 548, 47, 550, 47,
47, 47, 47, 47, 556, 47, 47, 559, 552, 560,
47, 561, 47, 47, 557, 553, 47, 558, 47, 554,
555, 562, 47, 564, 565, 47, 47, 47, 571, 47,
47, 563, 569, 568, 566, 570, 47, 47, 572, 47,
47, 47, 47, 567, 573, 47, 578, 579, 574, 575,
47, 577, 47, 47, 580, 47, 581, 47, 47, 47,
576, 47, 583, 47, 584, 589, 47, 587, 586, 47,
592, 588, 590, 47, 582, 47, 585, 591, 47, 47,
593, 47, 47, 47, 47, 596, 47, 595, 47, 47,
47, 47, 47, 47, 47, 597, 594, 598, 600, 599,
47, 605, 47, 47, 603, 47, 609, 47, 610, 47,
602, 604, 47, 47, 47, 601, 615, 47, 47, 606,
607, 614, 47, 608, 616, 47, 611, 612, 47, 47,
47, 47, 47, 613, 619, 620, 47, 618, 47, 47,
617, 622, 47, 623, 625, 621, 624, 47, 47, 47,
47, 47, 47, 626, 632, 47, 627, 628, 629, 47,
633, 635, 47, 47, 634, 47, 636, 47, 630, 631,
637, 47, 638, 47, 640, 641, 47, 47, 639, 47,
47, 642, 47, 47, 47, 643, 47, 47, 644, 646,
47, 651, 47, 47, 47, 648, 47, 645, 47, 653,
47, 655, 47, 654, 47, 47, 649, 650, 647, 47,
47, 47, 664, 47, 660, 47, 657, 652, 656, 658,
663, 47, 47, 659, 667, 47, 668, 47, 47, 662,
47, 47, 665, 671, 47, 661, 670, 672, 47, 47,
47, 666, 674, 47, 673, 677, 669, 47, 675, 676,
47, 47, 47, 680, 47, 47, 679, 47, 47, 681,
683, 47, 684, 47, 685, 47, 47, 686, 47, 47,
678, 47, 47, 47, 682, 692, 47, 687, 688, 47,
47, 47, 689, 47, 690, 47, 47, 47, 47, 47,
691, 32, 32, 32, 32, 37, 37, 37, 37, 42,
42, 42, 42, 50, 50, 47, 50, 80, 80, 85,
85, 51, 51, 47, 51, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
47, 86, 84, 83, 81, 47, 86, 84, 83, 81,
47, 693, 9, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693
} ;
static yyconst flex_int16_t yy_chk[1451] =
{ 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, 3, 3, 3,
4, 4, 4, 11, 18, 22, 3, 11, 25, 4,
5, 5, 5, 5, 6, 6, 6, 6, 18, 22,
5, 7, 7, 7, 6, 8, 8, 8, 25, 14,
7, 14, 14, 15, 8, 15, 15, 16, 16, 14,
17, 19, 19, 20, 23, 16, 21, 20, 119, 17,
19, 21, 24, 24, 17, 26, 20, 27, 23, 30,
28, 54, 23, 119, 26, 28, 29, 29, 55, 26,
53, 27, 24, 53, 27, 31, 31, 30, 54, 28,
31, 36, 36, 29, 41, 55, 41, 41, 45, 45,
47, 48, 47, 47, 50, 48, 50, 50, 56, 57,
58, 59, 60, 56, 50, 59, 61, 60, 62, 61,
64, 63, 61, 65, 64, 66, 57, 58, 63, 67,
65, 68, 69, 71, 70, 61, 69, 66, 72, 74,
73, 67, 62, 75, 76, 79, 118, 71, 77, 118,
68, 70, 78, 77, 81, 81, 72, 73, 87, 74,
75, 88, 79, 78, 76, 83, 87, 83, 83, 86,
86, 89, 90, 91, 92, 88, 89, 93, 92, 96,
94, 90, 93, 95, 97, 90, 100, 700, 110, 97,
110, 90, 90, 94, 95, 91, 96, 95, 98, 99,
106, 107, 101, 98, 102, 99, 100, 101, 103, 102,
104, 108, 105, 103, 109, 111, 108, 104, 105, 106,
107, 112, 111, 113, 114, 115, 116, 115, 113, 114,
117, 116, 120, 121, 122, 109, 121, 124, 122, 112,
123, 123, 124, 115, 117, 113, 120, 125, 126, 127,
128, 130, 125, 129, 129, 131, 132, 136, 131, 133,
137, 134, 128, 134, 134, 132, 138, 126, 130, 127,
133, 135, 135, 136, 137, 138, 136, 139, 139, 140,
141, 142, 143, 144, 140, 145, 142, 143, 144, 146,
147, 149, 150, 151, 152, 153, 315, 156, 151, 141,
155, 150, 157, 147, 145, 149, 315, 146, 148, 158,
148, 148, 156, 152, 153, 154, 154, 157, 154, 155,
159, 148, 148, 148, 162, 160, 158, 161, 162, 163,
164, 165, 167, 159, 160, 164, 161, 165, 163, 166,
166, 169, 168, 167, 170, 170, 160, 168, 172, 173,
174, 175, 177, 178, 179, 180, 180, 173, 178, 174,
177, 169, 175, 180, 181, 182, 183, 185, 172, 187,
182, 179, 184, 184, 186, 182, 188, 189, 190, 191,
180, 185, 189, 181, 275, 186, 192, 187, 193, 193,
183, 194, 204, 191, 195, 195, 190, 188, 192, 196,
196, 197, 198, 198, 275, 194, 197, 199, 199, 200,
201, 204, 202, 200, 203, 201, 202, 205, 206, 203,
209, 207, 205, 209, 207, 208, 208, 215, 210, 207,
211, 206, 207, 210, 212, 211, 213, 214, 216, 213,
212, 217, 214, 218, 215, 219, 217, 222, 219, 220,
220, 216, 218, 221, 223, 224, 227, 221, 225, 225,
224, 222, 226, 228, 229, 230, 226, 231, 223, 233,
230, 229, 231, 232, 227, 228, 234, 235, 232, 236,
236, 238, 244, 241, 245, 234, 233, 244, 245, 246,
235, 245, 247, 248, 246, 245, 249, 249, 238, 241,
250, 252, 245, 251, 251, 253, 253, 250, 254, 247,
255, 254, 256, 256, 258, 252, 257, 248, 255, 257,
258, 259, 260, 261, 262, 263, 263, 264, 261, 259,
267, 262, 265, 265, 267, 268, 269, 270, 271, 260,
264, 272, 274, 270, 273, 277, 272, 274, 277, 269,
278, 271, 279, 268, 280, 273, 276, 276, 281, 281,
282, 283, 284, 287, 279, 286, 290, 278, 285, 285,
288, 288, 289, 280, 287, 697, 285, 291, 286, 290,
289, 296, 284, 282, 294, 283, 292, 292, 295, 294,
297, 295, 298, 285, 301, 291, 299, 298, 302, 296,
303, 299, 297, 302, 304, 303, 305, 305, 301, 306,
308, 310, 309, 304, 306, 309, 311, 312, 313, 316,
318, 314, 312, 313, 314, 317, 317, 319, 310, 308,
320, 321, 322, 316, 320, 311, 323, 325, 318, 329,
319, 322, 325, 326, 326, 327, 331, 328, 321, 330,
327, 328, 332, 329, 333, 334, 335, 336, 340, 339,
323, 338, 692, 330, 331, 341, 336, 339, 343, 334,
341, 333, 332, 343, 338, 335, 344, 340, 342, 342,
345, 346, 347, 349, 348, 350, 346, 347, 348, 344,
355, 351, 349, 352, 352, 685, 349, 345, 349, 351,
349, 353, 353, 350, 354, 354, 356, 357, 358, 355,
363, 360, 357, 361, 356, 358, 360, 362, 361, 363,
364, 366, 362, 365, 365, 368, 369, 370, 371, 372,
369, 373, 374, 375, 376, 377, 373, 378, 364, 374,
366, 371, 368, 376, 383, 370, 379, 372, 380, 377,
375, 379, 384, 380, 381, 385, 386, 378, 384, 381,
385, 387, 383, 388, 389, 390, 391, 392, 392, 393,
393, 394, 398, 399, 386, 398, 394, 389, 400, 387,
391, 388, 401, 401, 402, 390, 404, 399, 403, 403,
405, 406, 408, 409, 405, 410, 404, 411, 684, 412,
413, 416, 400, 402, 412, 413, 414, 414, 415, 406,
417, 408, 410, 415, 418, 421, 411, 409, 419, 420,
416, 422, 423, 424, 420, 425, 426, 418, 429, 417,
419, 423, 424, 423, 421, 426, 427, 426, 428, 428,
422, 427, 430, 425, 431, 432, 434, 429, 435, 436,
437, 434, 439, 440, 430, 441, 435, 440, 432, 442,
441, 431, 444, 443, 442, 445, 436, 453, 437, 459,
445, 439, 443, 444, 446, 446, 447, 447, 448, 448,
449, 451, 452, 449, 454, 454, 451, 452, 455, 456,
457, 453, 458, 455, 459, 460, 460, 461, 463, 462,
456, 465, 456, 469, 461, 464, 464, 456, 462, 457,
467, 458, 468, 470, 471, 467, 465, 468, 475, 472,
470, 473, 469, 463, 472, 473, 473, 476, 474, 475,
477, 476, 471, 474, 478, 479, 480, 480, 485, 478,
481, 481, 486, 485, 487, 490, 487, 488, 488, 491,
491, 481, 492, 499, 477, 493, 479, 494, 486, 495,
496, 497, 500, 497, 490, 496, 493, 500, 494, 501,
495, 501, 492, 498, 498, 502, 503, 504, 499, 506,
502, 505, 505, 507, 506, 508, 512, 512, 514, 509,
513, 511, 507, 503, 507, 509, 504, 511, 515, 513,
508, 518, 515, 516, 519, 518, 514, 520, 516, 521,
522, 524, 525, 541, 524, 526, 527, 527, 519, 528,
528, 529, 529, 531, 525, 520, 535, 526, 533, 521,
522, 530, 530, 533, 534, 534, 536, 537, 541, 538,
543, 531, 538, 537, 535, 540, 540, 542, 542, 544,
545, 547, 548, 536, 543, 549, 549, 550, 544, 545,
551, 548, 550, 552, 551, 553, 552, 554, 555, 558,
547, 556, 554, 557, 555, 563, 563, 558, 557, 559,
567, 559, 564, 564, 553, 567, 556, 566, 566, 568,
568, 569, 571, 572, 573, 572, 574, 571, 575, 576,
577, 578, 579, 683, 580, 573, 569, 574, 576, 575,
581, 581, 582, 583, 579, 584, 585, 585, 586, 588,
578, 580, 587, 586, 592, 577, 594, 594, 593, 582,
583, 593, 596, 584, 595, 595, 587, 588, 597, 598,
599, 600, 603, 592, 598, 599, 601, 597, 602, 604,
596, 601, 605, 602, 604, 600, 603, 606, 607, 608,
610, 611, 613, 605, 612, 612, 606, 607, 608, 614,
613, 617, 617, 618, 614, 621, 618, 625, 610, 611,
619, 619, 620, 620, 622, 623, 623, 624, 621, 622,
626, 624, 627, 629, 628, 625, 630, 631, 626, 628,
633, 634, 634, 636, 640, 630, 642, 627, 639, 639,
643, 642, 644, 640, 645, 646, 631, 633, 629, 647,
648, 649, 652, 652, 647, 650, 644, 636, 643, 645,
650, 653, 654, 646, 655, 655, 656, 656, 657, 649,
680, 658, 653, 659, 659, 648, 658, 660, 660, 661,
666, 654, 662, 662, 661, 666, 657, 663, 663, 665,
665, 669, 670, 673, 673, 675, 670, 677, 686, 675,
678, 678, 679, 679, 681, 681, 682, 682, 688, 687,
669, 689, 690, 676, 677, 691, 691, 686, 687, 674,
672, 671, 688, 668, 689, 667, 664, 651, 641, 638,
690, 694, 694, 694, 694, 695, 695, 695, 695, 696,
696, 696, 696, 698, 698, 637, 698, 699, 699, 701,
701, 702, 702, 635, 702, 632, 616, 615, 609, 591,
590, 589, 570, 565, 562, 561, 560, 546, 539, 532,
523, 517, 510, 489, 484, 483, 482, 466, 450, 438,
433, 407, 397, 396, 395, 382, 367, 359, 337, 324,
307, 300, 293, 266, 243, 242, 240, 239, 237, 176,
171, 85, 84, 82, 80, 46, 42, 38, 37, 32,
10, 9, 693, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693,
693, 693, 693, 693, 693, 693, 693, 693, 693, 693
} ;
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
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() ((yy_more_flag) = 1)
#define YY_MORE_ADJ (yy_more_len)
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "util/configlexer.lex"
#line 2 "util/configlexer.lex"
/*
* configlexer.lex - lexical analyzer for unbound config file
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
*
* See LICENSE for the license.
*
*/
#include "config.h"
#include <ctype.h>
#include <string.h>
#include <strings.h>
#include "util/configyyrename.h"
#include "util/config_file.h"
#include "util/configparser.h"
void ub_c_error(const char *message);
#define YY_NO_UNPUT
#if 0
#define LEXOUT(s) printf s /* used ONLY when debugging */
#else
#define LEXOUT(s)
#endif
#define YDOUT LEXOUT(("v(%s )", yytext))
struct inc_state {
char* filename;
int line;
};
static struct inc_state parse_stack[MAXINCLUDES];
static YY_BUFFER_STATE include_stack[MAXINCLUDES];
static int config_include_stack_ptr = 0;
static void config_start_include(const char* filename)
{
FILE *input;
if(strlen(filename) == 0) {
ub_c_error_msg("empty include file name");
return;
}
if(config_include_stack_ptr >= MAXINCLUDES) {
ub_c_error_msg("includes nested too deeply, skipped (>%d)", MAXINCLUDES);
return;
}
input = fopen(filename, "r");
if(!input) {
ub_c_error_msg("cannot open include file '%s': %s",
filename, strerror(errno));
return;
}
LEXOUT(("switch_to_include_file(%s) ", filename));
parse_stack[config_include_stack_ptr].filename = cfg_parser->filename;
parse_stack[config_include_stack_ptr].line = cfg_parser->line;
include_stack[config_include_stack_ptr] = YY_CURRENT_BUFFER;
cfg_parser->filename = strdup(filename);
cfg_parser->line = 1;
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
++config_include_stack_ptr;
}
static void config_end_include(void)
{
--config_include_stack_ptr;
free(cfg_parser->filename);
cfg_parser->filename = parse_stack[config_include_stack_ptr].filename;
cfg_parser->line = parse_stack[config_include_stack_ptr].line;
yy_delete_buffer(YY_CURRENT_BUFFER);
yy_switch_to_buffer(include_stack[config_include_stack_ptr]);
}
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
#define yy_set_bol(at_bol) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
}
#endif
#line 1091 "<stdout>"
#define INITIAL 0
#define quotedstring 1
#define include 2
#define include_quoted 3
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
static int yy_init_globals (void );
/* 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 (void) fwrite( yytext, yyleng, 1, yyout )
#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 \
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 98 "util/configlexer.lex"
#line 1247 "<stdout>"
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_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
(yy_more_flag) = 0;
}
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_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 >= 694 )
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] != 1413 );
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;
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 99 "util/configlexer.lex"
{ LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 100 "util/configlexer.lex"
{ LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 101 "util/configlexer.lex"
{ YDOUT; return VAR_SERVER;}
YY_BREAK
case 4:
YY_RULE_SETUP
#line 102 "util/configlexer.lex"
{ YDOUT; return VAR_NUM_THREADS;}
YY_BREAK
case 5:
YY_RULE_SETUP
#line 103 "util/configlexer.lex"
{ YDOUT; return VAR_VERBOSITY;}
YY_BREAK
case 6:
YY_RULE_SETUP
#line 104 "util/configlexer.lex"
{ YDOUT; return VAR_PORT;}
YY_BREAK
case 7:
YY_RULE_SETUP
#line 105 "util/configlexer.lex"
{ YDOUT; return VAR_OUTGOING_PORT;}
YY_BREAK
case 8:
YY_RULE_SETUP
#line 106 "util/configlexer.lex"
{ YDOUT; return VAR_OUTGOING_RANGE;}
YY_BREAK
case 9:
YY_RULE_SETUP
#line 107 "util/configlexer.lex"
{ YDOUT; return VAR_OUTGOING_NUM_TCP;}
YY_BREAK
case 10:
YY_RULE_SETUP
#line 108 "util/configlexer.lex"
{ YDOUT; return VAR_INCOMING_NUM_TCP;}
YY_BREAK
case 11:
YY_RULE_SETUP
#line 109 "util/configlexer.lex"
{ YDOUT; return VAR_DO_IP4;}
YY_BREAK
case 12:
YY_RULE_SETUP
#line 110 "util/configlexer.lex"
{ YDOUT; return VAR_DO_IP6;}
YY_BREAK
case 13:
YY_RULE_SETUP
#line 111 "util/configlexer.lex"
{ YDOUT; return VAR_DO_UDP;}
YY_BREAK
case 14:
YY_RULE_SETUP
#line 112 "util/configlexer.lex"
{ YDOUT; return VAR_DO_TCP;}
YY_BREAK
case 15:
YY_RULE_SETUP
#line 113 "util/configlexer.lex"
{ YDOUT; return VAR_INTERFACE;}
YY_BREAK
case 16:
YY_RULE_SETUP
#line 114 "util/configlexer.lex"
{ YDOUT; return VAR_OUTGOING_INTERFACE;}
YY_BREAK
case 17:
YY_RULE_SETUP
#line 115 "util/configlexer.lex"
{ YDOUT; return VAR_CHROOT;}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 116 "util/configlexer.lex"
{ YDOUT; return VAR_USERNAME;}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 117 "util/configlexer.lex"
{ YDOUT; return VAR_DIRECTORY;}
YY_BREAK
case 20:
YY_RULE_SETUP
#line 118 "util/configlexer.lex"
{ YDOUT; return VAR_LOGFILE;}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 119 "util/configlexer.lex"
{ YDOUT; return VAR_PIDFILE;}
YY_BREAK
case 22:
YY_RULE_SETUP
#line 120 "util/configlexer.lex"
{ YDOUT; return VAR_ROOT_HINTS;}
YY_BREAK
case 23:
YY_RULE_SETUP
#line 121 "util/configlexer.lex"
{ YDOUT; return VAR_MSG_BUFFER_SIZE;}
YY_BREAK
case 24:
YY_RULE_SETUP
#line 122 "util/configlexer.lex"
{ YDOUT; return VAR_MSG_CACHE_SIZE;}
YY_BREAK
case 25:
YY_RULE_SETUP
#line 123 "util/configlexer.lex"
{ YDOUT; return VAR_MSG_CACHE_SLABS;}
YY_BREAK
case 26:
YY_RULE_SETUP
#line 124 "util/configlexer.lex"
{ YDOUT; return VAR_RRSET_CACHE_SIZE;}
YY_BREAK
case 27:
YY_RULE_SETUP
#line 125 "util/configlexer.lex"
{ YDOUT; return VAR_RRSET_CACHE_SLABS;}
YY_BREAK
case 28:
YY_RULE_SETUP
#line 126 "util/configlexer.lex"
{ YDOUT; return VAR_CACHE_MAX_TTL;}
YY_BREAK
case 29:
YY_RULE_SETUP
#line 127 "util/configlexer.lex"
{ YDOUT; return VAR_INFRA_HOST_TTL;}
YY_BREAK
case 30:
YY_RULE_SETUP
#line 128 "util/configlexer.lex"
{ YDOUT; return VAR_INFRA_LAME_TTL;}
YY_BREAK
case 31:
YY_RULE_SETUP
#line 129 "util/configlexer.lex"
{ YDOUT; return VAR_INFRA_CACHE_SLABS;}
YY_BREAK
case 32:
YY_RULE_SETUP
#line 130 "util/configlexer.lex"
{ YDOUT; return VAR_INFRA_CACHE_NUMHOSTS;}
YY_BREAK
case 33:
YY_RULE_SETUP
#line 131 "util/configlexer.lex"
{ YDOUT; return VAR_INFRA_CACHE_LAME_SIZE;}
YY_BREAK
case 34:
YY_RULE_SETUP
#line 132 "util/configlexer.lex"
{ YDOUT; return VAR_NUM_QUERIES_PER_THREAD;}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 133 "util/configlexer.lex"
{ YDOUT; return VAR_TARGET_FETCH_POLICY;}
YY_BREAK
case 36:
YY_RULE_SETUP
#line 134 "util/configlexer.lex"
{ YDOUT; return VAR_HARDEN_SHORT_BUFSIZE;}
YY_BREAK
case 37:
YY_RULE_SETUP
#line 135 "util/configlexer.lex"
{ YDOUT; return VAR_HARDEN_LARGE_QUERIES;}
YY_BREAK
case 38:
YY_RULE_SETUP
#line 136 "util/configlexer.lex"
{ YDOUT; return VAR_HARDEN_GLUE;}
YY_BREAK
case 39:
YY_RULE_SETUP
#line 137 "util/configlexer.lex"
{ YDOUT; return VAR_HARDEN_DNNSEC_STRIPPED;}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 138 "util/configlexer.lex"
{ YDOUT; return VAR_STUB_ZONE;}
YY_BREAK
case 41:
YY_RULE_SETUP
#line 139 "util/configlexer.lex"
{ YDOUT; return VAR_NAME;}
YY_BREAK
case 42:
YY_RULE_SETUP
#line 140 "util/configlexer.lex"
{ YDOUT; return VAR_STUB_ADDR;}
YY_BREAK
case 43:
YY_RULE_SETUP
#line 141 "util/configlexer.lex"
{ YDOUT; return VAR_STUB_HOST;}
YY_BREAK
case 44:
YY_RULE_SETUP
#line 142 "util/configlexer.lex"
{ YDOUT; return VAR_FORWARD_ZONE;}
YY_BREAK
case 45:
YY_RULE_SETUP
#line 143 "util/configlexer.lex"
{ YDOUT; return VAR_FORWARD_ADDR;}
YY_BREAK
case 46:
YY_RULE_SETUP
#line 144 "util/configlexer.lex"
{ YDOUT; return VAR_FORWARD_HOST;}
YY_BREAK
case 47:
YY_RULE_SETUP
#line 145 "util/configlexer.lex"
{ YDOUT; return VAR_DO_NOT_QUERY_ADDRESS;}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 146 "util/configlexer.lex"
{ YDOUT; return VAR_DO_NOT_QUERY_LOCALHOST;}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 147 "util/configlexer.lex"
{ YDOUT; return VAR_HIDE_IDENTITY;}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 148 "util/configlexer.lex"
{ YDOUT; return VAR_HIDE_VERSION;}
YY_BREAK
case 51:
YY_RULE_SETUP
#line 149 "util/configlexer.lex"
{ YDOUT; return VAR_IDENTITY;}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 150 "util/configlexer.lex"
{ YDOUT; return VAR_VERSION;}
YY_BREAK
case 53:
YY_RULE_SETUP
#line 151 "util/configlexer.lex"
{ YDOUT; return VAR_MODULE_CONF;}
YY_BREAK
case 54:
YY_RULE_SETUP
#line 152 "util/configlexer.lex"
{ YDOUT; return VAR_TRUST_ANCHOR_FILE;}
YY_BREAK
case 55:
YY_RULE_SETUP
#line 153 "util/configlexer.lex"
{ YDOUT; return VAR_TRUSTED_KEYS_FILE;}
YY_BREAK
case 56:
YY_RULE_SETUP
#line 154 "util/configlexer.lex"
{ YDOUT; return VAR_TRUST_ANCHOR;}
YY_BREAK
case 57:
YY_RULE_SETUP
#line 155 "util/configlexer.lex"
{ YDOUT; return VAR_VAL_OVERRIDE_DATE;}
YY_BREAK
case 58:
YY_RULE_SETUP
#line 156 "util/configlexer.lex"
{ YDOUT; return VAR_BOGUS_TTL;}
YY_BREAK
case 59:
YY_RULE_SETUP
#line 157 "util/configlexer.lex"
{ YDOUT; return VAR_VAL_CLEAN_ADDITIONAL;}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 158 "util/configlexer.lex"
{ YDOUT; return VAR_VAL_PERMISSIVE_MODE;}
YY_BREAK
case 61:
YY_RULE_SETUP
#line 159 "util/configlexer.lex"
{ YDOUT; return VAR_KEY_CACHE_SIZE;}
YY_BREAK
case 62:
YY_RULE_SETUP
#line 160 "util/configlexer.lex"
{ YDOUT; return VAR_KEY_CACHE_SLABS;}
YY_BREAK
case 63:
YY_RULE_SETUP
#line 161 "util/configlexer.lex"
{ YDOUT; return VAR_VAL_NSEC3_KEYSIZE_ITERATIONS;}
YY_BREAK
case 64:
YY_RULE_SETUP
#line 162 "util/configlexer.lex"
{ YDOUT; return VAR_USE_SYSLOG;}
YY_BREAK
case 65:
/* rule 65 can match eol */
YY_RULE_SETUP
#line 163 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 66:
YY_RULE_SETUP
#line 166 "util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 167 "util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(INITIAL);
}
YY_BREAK
case 67:
YY_RULE_SETUP
#line 171 "util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 68:
/* rule 68 can match eol */
YY_RULE_SETUP
#line 172 "util/configlexer.lex"
{ cfg_parser->line++; yymore(); }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 173 "util/configlexer.lex"
{
LEXOUT(("QE "));
BEGIN(INITIAL);
yytext[yyleng - 1] = '\0';
yylval.str = strdup(yytext);
if(!yylval.str)
yyerror("out of memory");
return STRING;
}
YY_BREAK
/* include: directive */
case 70:
YY_RULE_SETUP
#line 184 "util/configlexer.lex"
{ LEXOUT(("v(%s) ", yytext)); BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 185 "util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(INITIAL);
}
YY_BREAK
case 71:
YY_RULE_SETUP
#line 189 "util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 72:
/* rule 72 can match eol */
YY_RULE_SETUP
#line 190 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 73:
YY_RULE_SETUP
#line 191 "util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 192 "util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include(yytext);
BEGIN(INITIAL);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 197 "util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(INITIAL);
}
YY_BREAK
case 75:
YY_RULE_SETUP
#line 201 "util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 76:
/* rule 76 can match eol */
YY_RULE_SETUP
#line 202 "util/configlexer.lex"
{ cfg_parser->line++; yymore(); }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 203 "util/configlexer.lex"
{
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
config_start_include(yytext);
BEGIN(INITIAL);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
#line 209 "util/configlexer.lex"
{
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
if (config_include_stack_ptr == 0) {
yyterminate();
} else {
fclose(yyin);
config_end_include();
}
}
YY_BREAK
case 78:
YY_RULE_SETUP
#line 219 "util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
yylval.str = strdup(yytext); return STRING; }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 222 "util/configlexer.lex"
ECHO;
YY_BREAK
#line 1788 "<stdout>"
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
{
int 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;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
int 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;
(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);
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 >= 694 )
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 >= 694 )
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 == 693);
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 */
int 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);
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 );
}
#ifndef __cplusplus
extern int isatty (int );
#endif /* __cplusplus */
/* 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)
{
int num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
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*)
);
/* 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 str 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 bytes the byte buffer to scan
* @param 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, int _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
int 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.
*
*/
int 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.
*/
(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 222 "util/configlexer.lex"