mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
3284 lines
106 KiB
C
3284 lines
106 KiB
C
#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 35
|
|
#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 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 <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 */
|
|
|
|
/* 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
|
|
|
|
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) )
|
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
typedef size_t 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 114
|
|
#define YY_END_OF_BUFFER 115
|
|
/* 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[1060] =
|
|
{ 0,
|
|
1, 1, 96, 96, 100, 100, 104, 104, 108, 108,
|
|
1, 1, 115, 112, 1, 94, 94, 113, 112, 113,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 96,
|
|
97, 97, 98, 113, 100, 101, 101, 102, 113, 107,
|
|
104, 105, 105, 106, 113, 108, 109, 109, 110, 113,
|
|
111, 95, 111, 99, 113, 111, 112, 0, 1, 0,
|
|
112, 0, 2, 0, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
96, 0, 100, 0, 107, 0, 104, 108, 0, 111,
|
|
0, 111, 0, 111, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 111, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 111, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 50, 112, 112, 112, 112, 112, 6, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 111,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 111,
|
|
112, 112, 20, 112, 112, 112, 112, 12, 13, 112,
|
|
15, 14, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 3, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 111, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 103, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 23, 112, 112, 112, 112, 112, 112, 112,
|
|
24, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 63, 103, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 62,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 21, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 22,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 17,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 51, 52, 112, 49, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 5, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 65, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 81,
|
|
80, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 25, 112, 112, 112, 112,
|
|
53, 112, 112, 112, 112, 112, 78, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 42, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 4,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 89, 112,
|
|
16, 112, 112, 55, 56, 54, 112, 112, 112, 112,
|
|
112, 61, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 69, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 31, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 60, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
64, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 71, 112, 112, 112, 112, 59,
|
|
112, 87, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 32, 33, 112, 38,
|
|
74, 112, 82, 79, 112, 27, 112, 76, 112, 112,
|
|
112, 112, 112, 7, 112, 48, 86, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 66, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 75, 26,
|
|
|
|
28, 112, 112, 112, 112, 112, 47, 112, 112, 112,
|
|
90, 112, 112, 112, 112, 112, 112, 45, 112, 112,
|
|
112, 112, 112, 112, 92, 112, 112, 112, 112, 112,
|
|
112, 112, 11, 112, 112, 112, 112, 112, 112, 10,
|
|
112, 112, 29, 112, 91, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 93, 88, 112, 112, 112,
|
|
112, 112, 112, 112, 112, 112, 34, 112, 112, 112,
|
|
112, 112, 30, 112, 112, 112, 67, 68, 112, 112,
|
|
112, 70, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 112, 112, 18, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 112, 112, 85, 112, 112, 112,
|
|
112, 112, 112, 19, 112, 9, 112, 112, 83, 39,
|
|
112, 112, 112, 73, 57, 112, 112, 41, 44, 40,
|
|
112, 35, 112, 8, 112, 112, 72, 112, 112, 112,
|
|
36, 112, 84, 112, 112, 58, 43, 37, 112, 112,
|
|
112, 112, 46, 112, 112, 112, 112, 77, 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, 7, 1,
|
|
1, 1, 1, 1, 8, 1, 1, 1, 1, 1,
|
|
9, 10, 1, 11, 1, 1, 1, 12, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 13, 1, 1, 1, 1, 14, 15, 16, 17,
|
|
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
38, 39, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 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[40] =
|
|
{ 0,
|
|
1, 2, 3, 3, 4, 1, 5, 1, 1, 1,
|
|
1, 6, 1, 1, 1, 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[1074] =
|
|
{ 0,
|
|
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
|
|
87, 108, 2048, 2034, 50, 2130, 2130, 2130, 129, 94,
|
|
33, 124, 94, 49, 74, 61, 91, 92, 110, 111,
|
|
112, 133, 50, 135, 137, 136, 145, 143, 159, 2033,
|
|
2130, 2130, 2130, 122, 2031, 2130, 2130, 2130, 157, 2030,
|
|
2040, 2130, 2130, 2130, 176, 2028, 2130, 2130, 2130, 180,
|
|
2027, 2130, 184, 2130, 188, 90, 2025, 194, 198, 2034,
|
|
205, 2033, 2130, 2032, 158, 166, 122, 116, 189, 181,
|
|
206, 190, 198, 200, 208, 209, 217, 192, 202, 219,
|
|
221, 224, 215, 229, 230, 213, 234, 232, 235, 239,
|
|
|
|
240, 241, 245, 246, 248, 249, 242, 251, 72, 253,
|
|
1659, 266, 1602, 268, 1168, 283, 1123, 1004, 277, 507,
|
|
287, 293, 380, 261, 286, 280, 289, 290, 292, 299,
|
|
311, 295, 273, 298, 301, 303, 307, 305, 308, 309,
|
|
321, 326, 333, 314, 341, 337, 343, 345, 344, 312,
|
|
330, 324, 334, 347, 348, 352, 355, 147, 354, 357,
|
|
358, 365, 368, 362, 366, 369, 372, 356, 373, 379,
|
|
384, 386, 380, 389, 390, 394, 392, 399, 397, 408,
|
|
395, 401, 405, 409, 407, 411, 413, 412, 414, 417,
|
|
419, 427, 421, 432, 428, 436, 433, 438, 439, 441,
|
|
|
|
449, 443, 447, 446, 458, 454, 450, 457, 462, 460,
|
|
482, 464, 466, 456, 467, 473, 469, 472, 480, 476,
|
|
478, 494, 488, 493, 495, 499, 501, 502, 504, 505,
|
|
506, 512, 520, 517, 522, 524, 533, 529, 518, 531,
|
|
532, 534, 2130, 539, 537, 541, 542, 543, 2130, 544,
|
|
545, 546, 552, 548, 556, 560, 557, 567, 559, 569,
|
|
563, 573, 565, 571, 578, 581, 582, 585, 584, 589,
|
|
595, 592, 601, 594, 596, 607, 602, 609, 613, 619,
|
|
617, 621, 618, 622, 629, 627, 625, 628, 632, 633,
|
|
638, 634, 644, 640, 645, 642, 651, 657, 653, 658,
|
|
|
|
660, 662, 636, 664, 665, 668, 674, 666, 676, 682,
|
|
672, 680, 683, 685, 686, 693, 689, 687, 694, 695,
|
|
696, 697, 591, 700, 702, 704, 706, 708, 712, 713,
|
|
716, 720, 2130, 727, 714, 723, 725, 2130, 2130, 728,
|
|
2130, 2130, 729, 735, 746, 734, 736, 737, 742, 744,
|
|
747, 752, 755, 757, 743, 761, 770, 759, 768, 776,
|
|
777, 766, 778, 779, 781, 783, 782, 785, 795, 791,
|
|
792, 796, 798, 2130, 793, 800, 803, 805, 807, 810,
|
|
811, 813, 815, 812, 817, 818, 820, 826, 830, 824,
|
|
832, 828, 835, 837, 838, 839, 864, 840, 843, 846,
|
|
|
|
847, 849, 851, 856, 850, 854, 861, 871, 872, 857,
|
|
882, 2130, 883, 884, 874, 885, 889, 888, 890, 891,
|
|
892, 901, 2130, 899, 900, 902, 903, 904, 909, 917,
|
|
2130, 915, 918, 920, 921, 922, 923, 926, 925, 930,
|
|
931, 932, 934, 935, 738, 941, 947, 945, 949, 946,
|
|
952, 955, 953, 954, 956, 2130, 254, 958, 962, 959,
|
|
961, 968, 969, 970, 977, 973, 978, 979, 967, 988,
|
|
980, 983, 989, 990, 994, 993, 1000, 996, 997, 2130,
|
|
1003, 1001, 1002, 1005, 1019, 1007, 1026, 1023, 1025, 1027,
|
|
1029, 1013, 1037, 1038, 1034, 1036, 1035, 1041, 1042, 1046,
|
|
|
|
1047, 1048, 1050, 1052, 1054, 1059, 1062, 1064, 1071, 1055,
|
|
1072, 1074, 1063, 1076, 1078, 2130, 1088, 1089, 1091, 1087,
|
|
1090, 1093, 1094, 1095, 1098, 1099, 1097, 1101, 1102, 2130,
|
|
1108, 1104, 1105, 1111, 1106, 1113, 1119, 1118, 1122, 1121,
|
|
1124, 1125, 1135, 1134, 1136, 1140, 1146, 1147, 1138, 2130,
|
|
1148, 1150, 1156, 1159, 1152, 1154, 1166, 1162, 1163, 1164,
|
|
1165, 1172, 1167, 1170, 1173, 1175, 1176, 1177, 1191, 1187,
|
|
1178, 1199, 1200, 2130, 2130, 1202, 2130, 1193, 1203, 1180,
|
|
1204, 1206, 1208, 1210, 1211, 1213, 1215, 1214, 2130, 1216,
|
|
1217, 1220, 1065, 1222, 1228, 1225, 1226, 2130, 1231, 1229,
|
|
|
|
1238, 1235, 1241, 1242, 1243, 1250, 1246, 1244, 1252, 1255,
|
|
1256, 1258, 1264, 1257, 1260, 1263, 1266, 1267, 1269, 2130,
|
|
2130, 1265, 1273, 1274, 1278, 1283, 1291, 1289, 1294, 1295,
|
|
1297, 1296, 1298, 1299, 1301, 2130, 1307, 1309, 1305, 1303,
|
|
2130, 1313, 1317, 1318, 1320, 1322, 2130, 1323, 1324, 1325,
|
|
1326, 1329, 1327, 1332, 1339, 1333, 1341, 1346, 1348, 1349,
|
|
1351, 1360, 1353, 1357, 1362, 1364, 1365, 2130, 1371, 1354,
|
|
1374, 1367, 1376, 1382, 1379, 1370, 1380, 1381, 1378, 1383,
|
|
1384, 1386, 1387, 1388, 1394, 1389, 1404, 1397, 1402, 2130,
|
|
1407, 1413, 1410, 1414, 1411, 1417, 1419, 1420, 1422, 1424,
|
|
|
|
1425, 1427, 1436, 1443, 1437, 1435, 1445, 1444, 1448, 1429,
|
|
1455, 1449, 1451, 1458, 1453, 1460, 1461, 1464, 2130, 1462,
|
|
2130, 1468, 1466, 2130, 2130, 2130, 1477, 1470, 1478, 1481,
|
|
1485, 2130, 1476, 1488, 1482, 1486, 1490, 1492, 1491, 1493,
|
|
1494, 1495, 1500, 1501, 1508, 1505, 1509, 1515, 1511, 1519,
|
|
1512, 1520, 1526, 1522, 1523, 1525, 1529, 1534, 1528, 1532,
|
|
1535, 1533, 1536, 1545, 2130, 1549, 1538, 1547, 1558, 1550,
|
|
1554, 1560, 1561, 1568, 2130, 1562, 1570, 1574, 1565, 1576,
|
|
1578, 1572, 1579, 1580, 1583, 1584, 1585, 2130, 1586, 1588,
|
|
1590, 1591, 1594, 1608, 1597, 1612, 1614, 1600, 1616, 1618,
|
|
|
|
2130, 1620, 1622, 1605, 1627, 1623, 1628, 1629, 1630, 1636,
|
|
1633, 1638, 1640, 1642, 1643, 1645, 1648, 1649, 1650, 1647,
|
|
1651, 1654, 1661, 1665, 2130, 1658, 1664, 1666, 1676, 2130,
|
|
1672, 2130, 1674, 1675, 1682, 1679, 1685, 1686, 1687, 1689,
|
|
1695, 1691, 1692, 1693, 1696, 1699, 2130, 2130, 1702, 2130,
|
|
2130, 1710, 2130, 2130, 1712, 2130, 1714, 2130, 1705, 1715,
|
|
1717, 1718, 1719, 2130, 1721, 2130, 2130, 1722, 1723, 1726,
|
|
1729, 1730, 1732, 1734, 1735, 1736, 1737, 1739, 1743, 1741,
|
|
1744, 1745, 1749, 1751, 1760, 2130, 1753, 1761, 1763, 1755,
|
|
1765, 1766, 1768, 1770, 1779, 1775, 1776, 1777, 2130, 2130,
|
|
|
|
2130, 1778, 1781, 1786, 1788, 1789, 2130, 1792, 1780, 1794,
|
|
2130, 1800, 1796, 1802, 1804, 1805, 1806, 2130, 1808, 1812,
|
|
1815, 1813, 1822, 1825, 2130, 1826, 1827, 1816, 1829, 1832,
|
|
1833, 1835, 2130, 1830, 1836, 1843, 1837, 1840, 1845, 2130,
|
|
1847, 1851, 2130, 1853, 2130, 1854, 1857, 1859, 1861, 1866,
|
|
1863, 1595, 1872, 1869, 1871, 2130, 2130, 1870, 1876, 1873,
|
|
1877, 1878, 1879, 1880, 1882, 1885, 2130, 1887, 1886, 1895,
|
|
1896, 1888, 2130, 1898, 1901, 1902, 2130, 2130, 1903, 1909,
|
|
1911, 2130, 1912, 1914, 1915, 1919, 1916, 1921, 1923, 1924,
|
|
1922, 1925, 1935, 1936, 2130, 1938, 1926, 1928, 1943, 1952,
|
|
|
|
1939, 1945, 1947, 1954, 1956, 1949, 2130, 1959, 1961, 1963,
|
|
1966, 1969, 1971, 2130, 1972, 2130, 1976, 1977, 2130, 2130,
|
|
1978, 1980, 1983, 2130, 2130, 1981, 1985, 2130, 2130, 2130,
|
|
1991, 2130, 1992, 2130, 1994, 1984, 2130, 1987, 1998, 2003,
|
|
2130, 2007, 2130, 2000, 2008, 2130, 2130, 2130, 2010, 1995,
|
|
2017, 2004, 2130, 2011, 2018, 2019, 2021, 2130, 2130, 2051,
|
|
2057, 2063, 2069, 2075, 94, 2081, 2087, 2093, 2099, 2105,
|
|
2111, 2117, 2123
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_def[1074] =
|
|
{ 0,
|
|
1059, 1, 1060, 1060, 1061, 1061, 1062, 1062, 1063, 1063,
|
|
1064, 1064, 1059, 1065, 1059, 1059, 1059, 1059, 1066, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1067,
|
|
1059, 1059, 1059, 1067, 1068, 1059, 1059, 1059, 1068, 1069,
|
|
1059, 1059, 1059, 1059, 1069, 1070, 1059, 1059, 1059, 1070,
|
|
1071, 1059, 1072, 1059, 1071, 1071, 1065, 1065, 1059, 1073,
|
|
1066, 1073, 1059, 1066, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1067, 1067, 1068, 1068, 1069, 1069, 1059, 1070, 1070, 1071,
|
|
1071, 1072, 1072, 1071, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1071, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1071, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065, 1059, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1071,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1071,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1065, 1059, 1059, 1065,
|
|
1059, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1071, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1059, 1071, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1059, 1059, 1065, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065,
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065,
|
|
1059, 1065, 1065, 1059, 1059, 1059, 1065, 1065, 1065, 1065,
|
|
1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1059, 1059, 1065, 1059,
|
|
1059, 1065, 1059, 1059, 1065, 1059, 1065, 1059, 1065, 1065,
|
|
1065, 1065, 1065, 1059, 1065, 1059, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1059,
|
|
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065,
|
|
1059, 1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1059,
|
|
1065, 1065, 1059, 1065, 1059, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1059, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1059, 1059, 1065, 1065,
|
|
1065, 1059, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065, 1065, 1065,
|
|
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1059, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1059, 1065, 1059, 1065, 1065, 1059, 1059,
|
|
1065, 1065, 1065, 1059, 1059, 1065, 1065, 1059, 1059, 1059,
|
|
1065, 1059, 1065, 1059, 1065, 1065, 1059, 1065, 1065, 1065,
|
|
1059, 1065, 1059, 1065, 1065, 1059, 1059, 1059, 1065, 1065,
|
|
1065, 1065, 1059, 1065, 1065, 1065, 1065, 1059, 0, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_nxt[2170] =
|
|
{ 0,
|
|
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
|
|
14, 18, 20, 21, 14, 22, 23, 24, 25, 14,
|
|
26, 27, 28, 29, 30, 31, 32, 33, 34, 14,
|
|
35, 36, 37, 38, 39, 14, 14, 14, 14, 41,
|
|
42, 43, 41, 42, 43, 68, 46, 47, 75, 44,
|
|
48, 69, 44, 46, 47, 70, 49, 48, 57, 58,
|
|
59, 68, 68, 49, 51, 52, 53, 54, 60, 18,
|
|
57, 58, 59, 68, 84, 55, 51, 52, 53, 54,
|
|
60, 18, 85, 96, 68, 82, 68, 55, 15, 16,
|
|
17, 62, 63, 64, 67, 67, 163, 67, 67, 65,
|
|
|
|
67, 83, 121, 68, 68, 67, 68, 86, 66, 15,
|
|
16, 17, 62, 63, 64, 79, 124, 87, 80, 88,
|
|
65, 81, 68, 68, 68, 111, 111, 89, 68, 66,
|
|
72, 73, 72, 72, 68, 72, 68, 76, 90, 91,
|
|
72, 74, 128, 92, 77, 68, 93, 68, 68, 68,
|
|
94, 78, 127, 103, 100, 68, 97, 68, 105, 68,
|
|
113, 205, 98, 113, 101, 99, 95, 102, 104, 107,
|
|
68, 68, 109, 125, 108, 106, 110, 115, 68, 115,
|
|
115, 126, 115, 118, 118, 72, 73, 72, 72, 120,
|
|
72, 120, 120, 68, 120, 67, 123, 67, 67, 69,
|
|
|
|
67, 68, 68, 70, 68, 67, 72, 73, 72, 72,
|
|
68, 72, 68, 131, 68, 130, 72, 74, 68, 129,
|
|
68, 68, 132, 140, 135, 68, 136, 68, 133, 68,
|
|
134, 68, 137, 68, 142, 138, 68, 144, 143, 141,
|
|
146, 68, 68, 145, 68, 149, 68, 68, 147, 139,
|
|
150, 68, 68, 68, 68, 148, 152, 68, 68, 157,
|
|
68, 68, 151, 68, 153, 68, 121, 154, 162, 111,
|
|
111, 113, 155, 121, 113, 156, 165, 161, 159, 158,
|
|
118, 118, 160, 164, 115, 68, 115, 115, 120, 115,
|
|
120, 120, 68, 120, 72, 73, 72, 72, 68, 72,
|
|
|
|
167, 68, 68, 166, 68, 123, 171, 68, 178, 170,
|
|
68, 68, 177, 68, 179, 68, 168, 68, 180, 68,
|
|
68, 68, 169, 68, 68, 185, 68, 172, 187, 181,
|
|
197, 182, 173, 68, 183, 184, 68, 174, 68, 188,
|
|
189, 186, 68, 175, 176, 68, 68, 191, 192, 68,
|
|
194, 190, 195, 68, 193, 68, 68, 68, 199, 68,
|
|
68, 200, 198, 196, 68, 202, 68, 68, 68, 68,
|
|
68, 208, 209, 206, 68, 211, 212, 68, 121, 201,
|
|
68, 68, 73, 217, 68, 68, 203, 204, 207, 216,
|
|
214, 68, 68, 213, 219, 210, 68, 220, 68, 221,
|
|
|
|
215, 68, 68, 218, 68, 224, 68, 68, 222, 68,
|
|
225, 68, 227, 68, 228, 229, 223, 68, 226, 68,
|
|
68, 68, 233, 68, 68, 68, 68, 230, 236, 68,
|
|
232, 68, 243, 68, 231, 235, 237, 234, 239, 68,
|
|
68, 241, 242, 240, 68, 68, 238, 244, 68, 249,
|
|
68, 68, 250, 68, 248, 68, 252, 245, 68, 68,
|
|
246, 68, 68, 247, 254, 256, 68, 255, 121, 68,
|
|
68, 257, 68, 251, 68, 253, 68, 260, 68, 68,
|
|
272, 68, 258, 259, 68, 68, 262, 269, 68, 270,
|
|
68, 268, 68, 261, 68, 277, 263, 264, 271, 274,
|
|
|
|
68, 273, 276, 278, 279, 68, 68, 68, 265, 266,
|
|
267, 68, 275, 68, 68, 283, 68, 68, 68, 121,
|
|
280, 281, 289, 282, 68, 286, 288, 291, 285, 68,
|
|
68, 284, 68, 290, 68, 292, 68, 294, 287, 293,
|
|
295, 68, 297, 68, 68, 68, 68, 300, 298, 68,
|
|
296, 68, 301, 68, 68, 68, 68, 68, 68, 309,
|
|
68, 303, 307, 304, 68, 299, 308, 305, 68, 68,
|
|
302, 68, 68, 312, 317, 68, 306, 68, 310, 68,
|
|
313, 68, 320, 68, 318, 68, 322, 311, 314, 316,
|
|
68, 319, 323, 68, 68, 324, 68, 68, 315, 327,
|
|
|
|
321, 121, 331, 68, 68, 330, 68, 68, 68, 325,
|
|
387, 329, 333, 68, 68, 326, 328, 332, 334, 68,
|
|
338, 68, 336, 335, 339, 68, 340, 337, 341, 68,
|
|
68, 68, 342, 68, 68, 343, 345, 68, 344, 68,
|
|
68, 68, 347, 346, 68, 68, 68, 354, 68, 349,
|
|
68, 355, 68, 351, 68, 356, 68, 68, 352, 350,
|
|
348, 357, 353, 68, 361, 68, 366, 359, 360, 68,
|
|
68, 362, 68, 363, 68, 364, 68, 68, 68, 365,
|
|
68, 370, 368, 358, 68, 369, 68, 371, 68, 373,
|
|
367, 372, 68, 374, 68, 68, 376, 68, 68, 68,
|
|
|
|
380, 68, 381, 382, 375, 68, 68, 68, 68, 68,
|
|
377, 383, 68, 379, 68, 378, 68, 388, 68, 389,
|
|
68, 390, 386, 384, 68, 121, 68, 385, 68, 392,
|
|
394, 395, 68, 396, 397, 68, 391, 68, 393, 68,
|
|
68, 68, 403, 399, 398, 402, 68, 68, 68, 68,
|
|
68, 409, 400, 412, 68, 68, 68, 401, 68, 68,
|
|
414, 512, 404, 413, 68, 405, 410, 68, 416, 68,
|
|
406, 68, 417, 68, 411, 418, 407, 408, 68, 415,
|
|
68, 419, 68, 420, 425, 422, 421, 423, 68, 68,
|
|
68, 68, 424, 68, 68, 68, 431, 68, 426, 427,
|
|
|
|
429, 430, 432, 68, 68, 68, 433, 68, 68, 435,
|
|
68, 428, 68, 436, 438, 68, 439, 68, 434, 68,
|
|
445, 437, 68, 68, 68, 68, 441, 68, 443, 68,
|
|
68, 446, 68, 442, 440, 449, 68, 444, 68, 451,
|
|
68, 448, 68, 447, 68, 452, 456, 68, 457, 121,
|
|
68, 68, 68, 450, 453, 68, 469, 454, 68, 68,
|
|
455, 68, 68, 68, 470, 458, 68, 475, 68, 68,
|
|
466, 471, 467, 68, 474, 459, 68, 465, 476, 460,
|
|
468, 461, 473, 68, 68, 462, 68, 463, 479, 472,
|
|
481, 477, 464, 480, 68, 68, 68, 68, 478, 482,
|
|
|
|
68, 68, 68, 68, 68, 483, 485, 487, 490, 486,
|
|
484, 68, 68, 68, 68, 68, 68, 492, 489, 493,
|
|
494, 68, 496, 488, 497, 495, 491, 68, 498, 68,
|
|
68, 499, 68, 68, 68, 68, 502, 68, 68, 503,
|
|
504, 505, 68, 68, 68, 500, 68, 68, 513, 509,
|
|
511, 510, 501, 68, 514, 506, 508, 68, 68, 68,
|
|
516, 68, 507, 519, 68, 68, 68, 68, 68, 524,
|
|
68, 68, 515, 68, 68, 521, 525, 517, 518, 68,
|
|
68, 68, 68, 520, 523, 68, 528, 526, 530, 68,
|
|
68, 68, 68, 522, 527, 68, 533, 529, 534, 532,
|
|
|
|
68, 68, 68, 531, 535, 68, 68, 536, 68, 68,
|
|
537, 541, 68, 68, 68, 68, 119, 68, 544, 68,
|
|
538, 546, 548, 539, 540, 68, 549, 542, 543, 545,
|
|
550, 68, 551, 552, 547, 68, 553, 68, 68, 68,
|
|
555, 68, 554, 557, 558, 559, 68, 68, 68, 68,
|
|
68, 560, 561, 68, 68, 556, 562, 566, 68, 68,
|
|
68, 563, 68, 564, 68, 565, 68, 68, 570, 567,
|
|
574, 68, 568, 575, 68, 68, 68, 68, 569, 656,
|
|
571, 576, 577, 68, 68, 573, 68, 578, 68, 572,
|
|
68, 580, 579, 581, 582, 584, 585, 583, 586, 68,
|
|
|
|
68, 68, 68, 68, 589, 68, 68, 68, 587, 68,
|
|
68, 68, 593, 68, 68, 597, 68, 68, 68, 598,
|
|
68, 588, 602, 68, 117, 68, 590, 591, 592, 594,
|
|
68, 68, 596, 68, 68, 600, 68, 68, 595, 606,
|
|
607, 608, 599, 601, 603, 604, 68, 68, 68, 605,
|
|
68, 616, 68, 614, 615, 609, 610, 613, 68, 68,
|
|
68, 611, 68, 619, 68, 617, 68, 620, 68, 612,
|
|
621, 68, 623, 624, 68, 68, 68, 68, 68, 68,
|
|
116, 618, 68, 622, 68, 68, 632, 68, 68, 68,
|
|
68, 633, 68, 625, 626, 627, 628, 631, 629, 68,
|
|
|
|
630, 634, 636, 68, 637, 68, 639, 640, 642, 635,
|
|
638, 68, 68, 641, 68, 68, 68, 644, 68, 647,
|
|
68, 645, 68, 68, 649, 68, 68, 68, 68, 68,
|
|
643, 651, 68, 646, 68, 658, 650, 68, 68, 657,
|
|
68, 68, 648, 68, 660, 652, 653, 68, 661, 654,
|
|
68, 663, 655, 68, 68, 68, 68, 659, 68, 666,
|
|
667, 668, 68, 669, 68, 664, 662, 68, 68, 68,
|
|
68, 675, 68, 665, 670, 68, 68, 68, 68, 68,
|
|
683, 68, 673, 674, 671, 68, 68, 672, 680, 676,
|
|
68, 681, 677, 679, 684, 68, 678, 682, 689, 686,
|
|
|
|
690, 68, 687, 68, 688, 685, 68, 68, 68, 68,
|
|
68, 68, 696, 68, 698, 68, 699, 68, 701, 68,
|
|
692, 68, 694, 700, 702, 68, 691, 693, 695, 68,
|
|
68, 697, 68, 703, 68, 68, 68, 68, 68, 68,
|
|
709, 68, 710, 711, 68, 68, 715, 704, 706, 705,
|
|
712, 68, 707, 68, 713, 708, 714, 716, 68, 719,
|
|
68, 68, 721, 68, 718, 68, 68, 722, 724, 68,
|
|
720, 717, 68, 725, 68, 726, 68, 68, 728, 68,
|
|
727, 730, 68, 68, 729, 723, 68, 732, 68, 733,
|
|
68, 68, 68, 68, 68, 68, 68, 742, 68, 68,
|
|
|
|
68, 68, 737, 734, 731, 735, 68, 745, 744, 68,
|
|
736, 740, 738, 739, 68, 746, 68, 748, 743, 68,
|
|
752, 741, 68, 68, 751, 68, 68, 747, 755, 68,
|
|
750, 68, 68, 754, 68, 749, 68, 68, 756, 68,
|
|
759, 68, 753, 763, 766, 760, 757, 68, 68, 68,
|
|
764, 758, 768, 762, 765, 68, 68, 68, 761, 767,
|
|
68, 68, 772, 68, 770, 68, 771, 68, 769, 775,
|
|
68, 776, 68, 68, 68, 774, 68, 777, 68, 778,
|
|
68, 781, 68, 773, 784, 779, 780, 783, 68, 68,
|
|
68, 786, 782, 68, 68, 787, 788, 68, 68, 785,
|
|
|
|
68, 790, 68, 68, 68, 68, 68, 68, 789, 798,
|
|
792, 797, 68, 68, 793, 791, 794, 68, 795, 801,
|
|
68, 68, 800, 68, 68, 796, 803, 68, 805, 804,
|
|
799, 68, 68, 809, 68, 68, 806, 68, 68, 810,
|
|
68, 68, 807, 802, 68, 68, 68, 68, 68, 816,
|
|
68, 812, 808, 813, 811, 814, 817, 68, 815, 68,
|
|
818, 68, 68, 821, 820, 819, 68, 822, 824, 825,
|
|
68, 826, 68, 68, 68, 823, 828, 68, 829, 830,
|
|
68, 832, 68, 831, 68, 827, 68, 833, 68, 834,
|
|
68, 68, 68, 835, 836, 68, 68, 68, 68, 837,
|
|
|
|
68, 843, 68, 68, 846, 847, 68, 68, 841, 68,
|
|
838, 839, 68, 844, 114, 845, 840, 68, 842, 848,
|
|
68, 980, 849, 850, 68, 851, 68, 853, 68, 854,
|
|
68, 852, 68, 856, 68, 68, 857, 855, 858, 68,
|
|
68, 68, 68, 862, 861, 68, 860, 864, 68, 866,
|
|
68, 867, 68, 859, 68, 68, 869, 68, 863, 68,
|
|
68, 68, 68, 68, 865, 871, 68, 873, 877, 870,
|
|
68, 112, 875, 68, 874, 876, 68, 68, 68, 881,
|
|
868, 878, 872, 882, 68, 880, 68, 68, 68, 884,
|
|
879, 68, 885, 886, 68, 887, 883, 68, 68, 68,
|
|
|
|
888, 68, 892, 68, 68, 68, 891, 68, 68, 893,
|
|
895, 68, 902, 897, 68, 898, 896, 68, 889, 890,
|
|
894, 899, 68, 900, 68, 901, 68, 68, 903, 68,
|
|
68, 68, 907, 68, 68, 68, 906, 909, 68, 908,
|
|
911, 68, 68, 910, 68, 904, 68, 68, 68, 68,
|
|
918, 68, 905, 68, 912, 68, 68, 68, 914, 915,
|
|
916, 68, 913, 68, 919, 68, 923, 68, 924, 917,
|
|
922, 925, 68, 68, 927, 68, 921, 68, 68, 920,
|
|
68, 933, 68, 926, 928, 929, 934, 68, 68, 68,
|
|
68, 68, 68, 68, 931, 930, 939, 940, 68, 932,
|
|
|
|
68, 68, 935, 943, 68, 945, 68, 936, 68, 937,
|
|
938, 944, 68, 946, 68, 941, 68, 68, 68, 942,
|
|
68, 949, 950, 948, 68, 68, 951, 68, 68, 953,
|
|
947, 960, 954, 956, 68, 952, 957, 68, 68, 68,
|
|
955, 68, 68, 958, 68, 68, 963, 68, 68, 68,
|
|
961, 959, 68, 962, 967, 68, 964, 68, 968, 68,
|
|
969, 965, 970, 68, 973, 68, 68, 966, 971, 68,
|
|
975, 68, 977, 68, 976, 68, 972, 978, 68, 981,
|
|
982, 68, 68, 68, 68, 68, 974, 983, 68, 68,
|
|
68, 68, 68, 979, 68, 988, 985, 68, 68, 68,
|
|
|
|
68, 984, 993, 991, 986, 987, 995, 68, 68, 997,
|
|
68, 989, 996, 68, 68, 68, 994, 992, 990, 998,
|
|
1001, 68, 1002, 68, 68, 999, 68, 68, 68, 1004,
|
|
1007, 68, 1003, 68, 68, 68, 68, 68, 68, 1000,
|
|
68, 1011, 1006, 1010, 1008, 1005, 1014, 68, 68, 1016,
|
|
68, 68, 1009, 1015, 1019, 68, 1013, 68, 1017, 68,
|
|
1012, 68, 1018, 1020, 68, 1024, 68, 1025, 68, 1022,
|
|
1021, 68, 1028, 68, 1029, 68, 1027, 1030, 68, 1023,
|
|
1026, 68, 1032, 68, 68, 1033, 1031, 1034, 68, 68,
|
|
68, 1037, 68, 68, 1035, 68, 68, 68, 1036, 68,
|
|
|
|
1038, 1040, 1041, 68, 68, 1043, 68, 68, 1042, 1046,
|
|
68, 1044, 68, 1039, 1047, 68, 68, 1045, 1048, 68,
|
|
68, 1050, 68, 68, 1049, 1054, 1051, 1052, 1053, 68,
|
|
68, 68, 1058, 68, 73, 73, 73, 68, 1055, 121,
|
|
119, 117, 116, 114, 1056, 112, 68, 1059, 1059, 1059,
|
|
1057, 40, 40, 40, 40, 40, 40, 45, 45, 45,
|
|
45, 45, 45, 50, 50, 50, 50, 50, 50, 56,
|
|
56, 56, 56, 56, 56, 61, 61, 61, 61, 61,
|
|
61, 71, 71, 71, 71, 71, 71, 111, 111, 1059,
|
|
1059, 111, 111, 113, 113, 1059, 113, 1059, 113, 115,
|
|
|
|
1059, 1059, 1059, 1059, 115, 118, 118, 1059, 1059, 118,
|
|
118, 120, 1059, 1059, 1059, 1059, 120, 122, 122, 122,
|
|
122, 122, 122, 72, 72, 72, 72, 72, 72, 13,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_chk[2170] =
|
|
{ 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, 3,
|
|
3, 3, 4, 4, 4, 21, 5, 5, 21, 3,
|
|
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
|
|
9, 24, 33, 6, 7, 7, 7, 7, 9, 7,
|
|
10, 10, 10, 26, 26, 7, 8, 8, 8, 8,
|
|
10, 8, 26, 33, 109, 24, 25, 8, 11, 11,
|
|
11, 11, 11, 11, 1065, 20, 109, 20, 20, 11,
|
|
|
|
20, 25, 66, 27, 28, 20, 23, 27, 11, 12,
|
|
12, 12, 12, 12, 12, 23, 66, 27, 23, 28,
|
|
12, 23, 29, 30, 31, 44, 44, 29, 78, 12,
|
|
19, 19, 19, 19, 77, 19, 22, 22, 30, 31,
|
|
19, 19, 78, 31, 22, 32, 32, 34, 36, 35,
|
|
32, 22, 77, 36, 35, 38, 34, 37, 37, 158,
|
|
49, 158, 34, 49, 35, 34, 32, 35, 36, 38,
|
|
75, 39, 39, 75, 38, 37, 39, 55, 76, 55,
|
|
55, 76, 55, 60, 60, 63, 63, 63, 63, 65,
|
|
63, 65, 65, 80, 65, 68, 63, 68, 68, 69,
|
|
|
|
68, 79, 82, 69, 88, 68, 71, 71, 71, 71,
|
|
83, 71, 84, 81, 89, 80, 71, 71, 81, 79,
|
|
85, 86, 82, 88, 85, 96, 86, 93, 83, 87,
|
|
84, 90, 87, 91, 90, 87, 92, 91, 90, 89,
|
|
93, 94, 95, 92, 98, 96, 97, 99, 94, 87,
|
|
97, 100, 101, 102, 107, 95, 99, 103, 104, 104,
|
|
105, 106, 98, 108, 100, 110, 457, 101, 108, 112,
|
|
112, 114, 102, 124, 114, 103, 124, 107, 105, 104,
|
|
119, 119, 106, 110, 116, 133, 116, 116, 121, 116,
|
|
121, 121, 126, 121, 122, 122, 122, 122, 125, 122,
|
|
|
|
126, 127, 128, 125, 129, 122, 130, 132, 133, 129,
|
|
134, 130, 132, 135, 134, 136, 127, 138, 135, 137,
|
|
139, 140, 128, 131, 150, 139, 144, 131, 141, 136,
|
|
150, 137, 131, 141, 137, 138, 152, 131, 142, 142,
|
|
143, 140, 151, 131, 131, 143, 153, 144, 145, 146,
|
|
147, 143, 148, 145, 146, 147, 149, 148, 152, 154,
|
|
155, 153, 151, 149, 156, 155, 159, 157, 168, 160,
|
|
161, 161, 162, 159, 164, 163, 164, 162, 165, 154,
|
|
163, 166, 123, 168, 167, 169, 156, 157, 160, 167,
|
|
165, 170, 173, 164, 170, 162, 171, 171, 172, 172,
|
|
|
|
166, 174, 175, 169, 177, 175, 176, 181, 173, 179,
|
|
176, 178, 178, 182, 179, 180, 174, 183, 177, 185,
|
|
180, 184, 184, 186, 188, 187, 189, 181, 187, 190,
|
|
183, 191, 193, 193, 182, 186, 188, 185, 190, 192,
|
|
195, 192, 192, 191, 194, 197, 189, 194, 196, 198,
|
|
198, 199, 199, 200, 197, 202, 201, 195, 204, 203,
|
|
195, 201, 207, 196, 203, 205, 206, 204, 214, 208,
|
|
205, 206, 210, 200, 209, 202, 212, 209, 213, 215,
|
|
216, 217, 207, 208, 218, 216, 210, 213, 220, 214,
|
|
221, 212, 219, 209, 211, 221, 211, 211, 215, 218,
|
|
|
|
223, 217, 220, 222, 222, 224, 222, 225, 211, 211,
|
|
211, 226, 219, 227, 228, 226, 229, 230, 231, 120,
|
|
223, 224, 231, 225, 232, 229, 230, 233, 228, 234,
|
|
239, 227, 233, 232, 235, 234, 236, 236, 229, 235,
|
|
237, 238, 239, 240, 241, 237, 242, 242, 240, 245,
|
|
238, 244, 244, 246, 247, 248, 250, 251, 252, 253,
|
|
254, 246, 251, 247, 253, 241, 252, 248, 255, 257,
|
|
245, 259, 256, 256, 258, 261, 250, 263, 254, 258,
|
|
256, 260, 260, 264, 258, 262, 262, 255, 256, 257,
|
|
265, 259, 263, 266, 267, 264, 269, 268, 256, 267,
|
|
|
|
261, 270, 271, 323, 272, 270, 274, 271, 275, 265,
|
|
323, 269, 273, 273, 277, 266, 268, 272, 274, 276,
|
|
278, 278, 276, 275, 279, 279, 280, 277, 281, 281,
|
|
283, 280, 282, 282, 284, 283, 285, 287, 284, 286,
|
|
288, 285, 287, 286, 289, 290, 292, 292, 303, 289,
|
|
291, 293, 294, 291, 296, 294, 293, 295, 291, 290,
|
|
288, 295, 291, 297, 298, 299, 303, 296, 297, 298,
|
|
300, 299, 301, 300, 302, 301, 304, 305, 308, 302,
|
|
306, 307, 305, 295, 311, 306, 307, 308, 309, 310,
|
|
304, 309, 312, 310, 310, 313, 312, 314, 315, 318,
|
|
|
|
316, 317, 317, 318, 311, 316, 319, 320, 321, 322,
|
|
313, 319, 324, 315, 325, 314, 326, 324, 327, 325,
|
|
328, 326, 322, 320, 329, 330, 335, 321, 331, 328,
|
|
330, 331, 332, 332, 334, 336, 327, 337, 329, 334,
|
|
340, 343, 344, 336, 335, 343, 346, 344, 347, 348,
|
|
445, 346, 337, 349, 349, 355, 350, 340, 345, 351,
|
|
351, 445, 345, 350, 352, 345, 347, 353, 353, 354,
|
|
345, 358, 354, 356, 348, 355, 345, 345, 362, 352,
|
|
359, 356, 357, 357, 362, 359, 358, 360, 360, 361,
|
|
363, 364, 361, 365, 367, 366, 368, 368, 363, 364,
|
|
|
|
366, 367, 369, 370, 371, 375, 370, 369, 372, 372,
|
|
373, 365, 376, 373, 375, 377, 376, 378, 371, 379,
|
|
382, 373, 380, 381, 384, 382, 378, 383, 380, 385,
|
|
386, 383, 387, 379, 377, 386, 390, 381, 388, 388,
|
|
392, 385, 389, 384, 391, 389, 393, 393, 394, 394,
|
|
395, 396, 398, 387, 390, 399, 402, 391, 400, 401,
|
|
392, 402, 405, 403, 403, 395, 406, 406, 404, 410,
|
|
399, 403, 400, 407, 405, 396, 397, 398, 407, 397,
|
|
401, 397, 404, 408, 409, 397, 415, 397, 410, 403,
|
|
413, 408, 397, 411, 411, 413, 414, 416, 409, 414,
|
|
|
|
418, 417, 419, 420, 421, 415, 417, 419, 422, 418,
|
|
416, 424, 425, 422, 426, 427, 428, 425, 421, 426,
|
|
427, 429, 429, 420, 430, 428, 424, 432, 432, 430,
|
|
433, 432, 434, 435, 436, 437, 435, 439, 438, 436,
|
|
437, 438, 440, 441, 442, 433, 443, 444, 446, 442,
|
|
444, 443, 434, 446, 447, 439, 441, 448, 450, 447,
|
|
449, 449, 440, 452, 451, 453, 454, 452, 455, 459,
|
|
458, 460, 448, 461, 459, 454, 460, 450, 451, 469,
|
|
462, 463, 464, 453, 458, 466, 463, 461, 465, 465,
|
|
467, 468, 471, 455, 462, 472, 468, 464, 469, 467,
|
|
|
|
470, 473, 474, 466, 470, 476, 475, 471, 478, 479,
|
|
472, 476, 477, 482, 483, 481, 118, 484, 479, 486,
|
|
473, 482, 484, 474, 475, 492, 485, 477, 478, 481,
|
|
485, 485, 486, 487, 483, 488, 488, 489, 487, 490,
|
|
490, 491, 489, 492, 493, 494, 495, 497, 496, 493,
|
|
494, 495, 496, 498, 499, 491, 497, 498, 500, 501,
|
|
502, 497, 503, 497, 504, 497, 505, 510, 502, 499,
|
|
506, 506, 500, 507, 507, 513, 508, 593, 501, 593,
|
|
503, 508, 509, 509, 511, 505, 512, 510, 514, 504,
|
|
515, 512, 511, 513, 514, 517, 518, 515, 519, 520,
|
|
|
|
517, 518, 521, 519, 522, 522, 523, 524, 520, 527,
|
|
525, 526, 526, 528, 529, 531, 532, 533, 535, 531,
|
|
531, 521, 535, 534, 117, 536, 523, 524, 525, 527,
|
|
538, 537, 529, 540, 539, 533, 541, 542, 528, 539,
|
|
540, 541, 532, 534, 536, 537, 544, 543, 545, 538,
|
|
549, 549, 546, 547, 548, 542, 543, 546, 547, 548,
|
|
551, 544, 552, 553, 555, 551, 556, 553, 553, 545,
|
|
554, 554, 556, 557, 558, 559, 560, 561, 557, 563,
|
|
115, 552, 564, 555, 562, 565, 565, 566, 567, 568,
|
|
571, 566, 580, 558, 559, 560, 561, 564, 562, 570,
|
|
|
|
563, 567, 569, 569, 570, 578, 572, 573, 578, 568,
|
|
571, 572, 573, 576, 576, 579, 581, 580, 582, 583,
|
|
583, 581, 584, 585, 585, 586, 588, 587, 590, 591,
|
|
579, 587, 592, 582, 594, 595, 586, 596, 597, 594,
|
|
595, 600, 584, 599, 597, 588, 590, 602, 599, 591,
|
|
601, 601, 592, 603, 604, 605, 608, 596, 607, 604,
|
|
605, 606, 606, 607, 609, 602, 600, 610, 611, 614,
|
|
612, 613, 615, 603, 608, 616, 613, 622, 617, 618,
|
|
622, 619, 611, 612, 609, 623, 624, 610, 618, 614,
|
|
625, 618, 615, 617, 623, 626, 616, 619, 627, 625,
|
|
|
|
628, 628, 625, 627, 626, 624, 629, 630, 632, 631,
|
|
633, 634, 634, 635, 637, 640, 638, 639, 640, 637,
|
|
630, 638, 632, 639, 640, 642, 629, 631, 633, 643,
|
|
644, 635, 645, 642, 646, 648, 649, 650, 651, 653,
|
|
649, 652, 650, 651, 654, 656, 655, 643, 645, 644,
|
|
652, 655, 646, 657, 653, 648, 654, 656, 658, 659,
|
|
659, 660, 661, 661, 658, 663, 670, 662, 664, 664,
|
|
660, 657, 662, 665, 665, 666, 666, 667, 669, 672,
|
|
667, 671, 676, 669, 670, 663, 671, 673, 673, 674,
|
|
679, 675, 677, 678, 674, 680, 681, 681, 682, 683,
|
|
|
|
684, 686, 676, 675, 672, 675, 685, 684, 683, 688,
|
|
675, 679, 677, 678, 689, 685, 687, 687, 682, 691,
|
|
692, 680, 693, 695, 691, 692, 694, 686, 695, 696,
|
|
689, 697, 698, 694, 699, 688, 700, 701, 696, 702,
|
|
699, 710, 693, 703, 705, 700, 697, 706, 703, 705,
|
|
704, 698, 707, 702, 704, 704, 708, 707, 701, 706,
|
|
709, 712, 711, 713, 709, 715, 710, 711, 708, 714,
|
|
714, 715, 716, 717, 720, 713, 718, 716, 723, 717,
|
|
722, 722, 728, 712, 727, 718, 720, 723, 733, 727,
|
|
729, 729, 722, 730, 735, 730, 731, 731, 736, 728,
|
|
|
|
734, 734, 737, 739, 738, 740, 741, 742, 733, 742,
|
|
736, 741, 743, 744, 737, 735, 738, 746, 739, 745,
|
|
745, 747, 744, 749, 751, 740, 747, 748, 749, 748,
|
|
743, 750, 752, 753, 754, 755, 750, 756, 753, 754,
|
|
759, 757, 751, 746, 760, 762, 758, 761, 763, 759,
|
|
767, 756, 752, 757, 755, 758, 760, 764, 758, 768,
|
|
761, 766, 770, 764, 763, 762, 771, 766, 768, 769,
|
|
769, 770, 772, 773, 776, 767, 772, 779, 773, 774,
|
|
774, 777, 777, 776, 782, 771, 778, 778, 780, 779,
|
|
781, 783, 784, 780, 781, 785, 786, 787, 789, 782,
|
|
|
|
790, 789, 791, 792, 792, 793, 793, 952, 786, 795,
|
|
783, 784, 798, 790, 113, 791, 785, 804, 787, 794,
|
|
794, 952, 795, 796, 796, 797, 797, 799, 799, 800,
|
|
800, 798, 802, 803, 803, 806, 804, 802, 805, 805,
|
|
807, 808, 809, 809, 808, 811, 807, 810, 810, 812,
|
|
812, 813, 813, 806, 814, 815, 815, 816, 809, 820,
|
|
817, 818, 819, 821, 811, 817, 822, 819, 823, 816,
|
|
826, 111, 821, 823, 820, 822, 827, 824, 828, 828,
|
|
814, 824, 818, 829, 831, 827, 833, 834, 829, 833,
|
|
826, 836, 834, 835, 835, 836, 831, 837, 838, 839,
|
|
|
|
837, 840, 841, 842, 843, 844, 840, 841, 845, 842,
|
|
844, 846, 859, 846, 849, 849, 845, 859, 838, 839,
|
|
843, 852, 852, 855, 855, 857, 857, 860, 860, 861,
|
|
862, 863, 865, 865, 868, 869, 863, 869, 870, 868,
|
|
871, 871, 872, 870, 873, 861, 874, 875, 876, 877,
|
|
878, 878, 862, 880, 872, 879, 881, 882, 874, 875,
|
|
876, 883, 873, 884, 879, 887, 883, 890, 884, 877,
|
|
882, 885, 885, 888, 888, 889, 881, 891, 892, 880,
|
|
893, 894, 894, 887, 889, 890, 895, 896, 897, 898,
|
|
902, 895, 909, 903, 892, 891, 903, 904, 904, 893,
|
|
|
|
905, 906, 896, 908, 908, 910, 910, 897, 913, 898,
|
|
902, 909, 912, 912, 914, 905, 915, 916, 917, 906,
|
|
919, 915, 916, 914, 920, 922, 917, 921, 928, 920,
|
|
913, 928, 921, 923, 923, 919, 924, 924, 926, 927,
|
|
922, 929, 934, 926, 930, 931, 931, 932, 935, 937,
|
|
929, 927, 938, 930, 936, 936, 932, 939, 937, 941,
|
|
938, 934, 939, 942, 944, 944, 946, 935, 941, 947,
|
|
947, 948, 949, 949, 948, 951, 942, 950, 950, 953,
|
|
954, 954, 958, 955, 953, 960, 946, 955, 959, 961,
|
|
962, 963, 964, 951, 965, 962, 959, 966, 969, 968,
|
|
|
|
972, 958, 968, 965, 960, 961, 970, 970, 971, 972,
|
|
974, 963, 971, 975, 976, 979, 969, 966, 964, 974,
|
|
979, 980, 980, 981, 983, 975, 984, 985, 987, 983,
|
|
986, 986, 981, 988, 991, 989, 990, 992, 997, 976,
|
|
998, 990, 985, 989, 987, 984, 993, 993, 994, 996,
|
|
996, 1001, 988, 994, 999, 999, 992, 1002, 997, 1003,
|
|
991, 1006, 998, 1000, 1000, 1004, 1004, 1005, 1005, 1002,
|
|
1001, 1008, 1009, 1009, 1010, 1010, 1008, 1011, 1011, 1003,
|
|
1006, 1012, 1013, 1013, 1015, 1015, 1012, 1017, 1017, 1018,
|
|
1021, 1022, 1022, 1026, 1018, 1023, 1036, 1027, 1021, 1038,
|
|
|
|
1023, 1027, 1031, 1031, 1033, 1035, 1035, 1050, 1033, 1039,
|
|
1039, 1036, 1044, 1026, 1040, 1040, 1052, 1038, 1042, 1042,
|
|
1045, 1045, 1049, 1054, 1044, 1052, 1049, 1050, 1051, 1051,
|
|
1055, 1056, 1057, 1057, 74, 72, 70, 67, 1054, 61,
|
|
56, 51, 50, 45, 1055, 40, 14, 13, 0, 0,
|
|
1056, 1060, 1060, 1060, 1060, 1060, 1060, 1061, 1061, 1061,
|
|
1061, 1061, 1061, 1062, 1062, 1062, 1062, 1062, 1062, 1063,
|
|
1063, 1063, 1063, 1063, 1063, 1064, 1064, 1064, 1064, 1064,
|
|
1064, 1066, 1066, 1066, 1066, 1066, 1066, 1067, 1067, 0,
|
|
0, 1067, 1067, 1068, 1068, 0, 1068, 0, 1068, 1069,
|
|
|
|
0, 0, 0, 0, 1069, 1070, 1070, 0, 0, 1070,
|
|
1070, 1071, 0, 0, 0, 0, 1071, 1072, 1072, 1072,
|
|
1072, 1072, 1072, 1073, 1073, 1073, 1073, 1073, 1073, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059
|
|
} ;
|
|
|
|
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);
|
|
|
|
#if 0
|
|
#define LEXOUT(s) printf s /* used ONLY when debugging */
|
|
#else
|
|
#define LEXOUT(s)
|
|
#endif
|
|
|
|
/** A parser variable, this is a statement in the config file which is
|
|
* of the form variable: value1 value2 ... nargs is the number of values. */
|
|
#define YDVAR(nargs, var) \
|
|
num_args=(nargs); \
|
|
LEXOUT(("v(%s%d) ", yytext, num_args)); \
|
|
if(num_args > 0) { BEGIN(val); } \
|
|
return (var);
|
|
|
|
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 int inc_prev = 0;
|
|
static int num_args = 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;
|
|
}
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
filename += strlen(cfg_parser->chroot);
|
|
}
|
|
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
|
|
|
|
#define YY_NO_INPUT 1
|
|
#line 100 "util/configlexer.lex"
|
|
#ifndef YY_NO_UNPUT
|
|
#define YY_NO_UNPUT 1
|
|
#endif
|
|
#ifndef YY_NO_INPUT
|
|
#define YY_NO_INPUT 1
|
|
#endif
|
|
|
|
#line 1382 "<stdout>"
|
|
|
|
#define INITIAL 0
|
|
#define quotedstring 1
|
|
#define singlequotedstr 2
|
|
#define include 3
|
|
#define include_quoted 4
|
|
#define val 5
|
|
|
|
#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 );
|
|
|
|
/* 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 );
|
|
|
|
int 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 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 = '*'; \
|
|
unsigned 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 120 "util/configlexer.lex"
|
|
|
|
#line 1569 "<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 >= 1060 )
|
|
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] != 2130 );
|
|
|
|
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 121 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("SP ")); /* ignore */ }
|
|
YY_BREAK
|
|
case 2:
|
|
*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 123 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 125 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_SERVER) }
|
|
YY_BREAK
|
|
case 4:
|
|
YY_RULE_SETUP
|
|
#line 126 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
|
YY_BREAK
|
|
case 5:
|
|
YY_RULE_SETUP
|
|
#line 127 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 128 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PORT) }
|
|
YY_BREAK
|
|
case 7:
|
|
YY_RULE_SETUP
|
|
#line 129 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 130 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
|
YY_BREAK
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 131 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
|
YY_BREAK
|
|
case 10:
|
|
YY_RULE_SETUP
|
|
#line 132 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
|
YY_BREAK
|
|
case 11:
|
|
YY_RULE_SETUP
|
|
#line 133 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
|
YY_BREAK
|
|
case 12:
|
|
YY_RULE_SETUP
|
|
#line 134 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
|
YY_BREAK
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 135 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
|
YY_BREAK
|
|
case 14:
|
|
YY_RULE_SETUP
|
|
#line 136 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
|
YY_BREAK
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 137 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
|
YY_BREAK
|
|
case 16:
|
|
YY_RULE_SETUP
|
|
#line 138 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
|
YY_BREAK
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 139 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
|
YY_BREAK
|
|
case 18:
|
|
YY_RULE_SETUP
|
|
#line 140 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
|
YY_BREAK
|
|
case 19:
|
|
YY_RULE_SETUP
|
|
#line 141 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
|
YY_BREAK
|
|
case 20:
|
|
YY_RULE_SETUP
|
|
#line 142 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CHROOT) }
|
|
YY_BREAK
|
|
case 21:
|
|
YY_RULE_SETUP
|
|
#line 143 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USERNAME) }
|
|
YY_BREAK
|
|
case 22:
|
|
YY_RULE_SETUP
|
|
#line 144 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
|
YY_BREAK
|
|
case 23:
|
|
YY_RULE_SETUP
|
|
#line 145 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
|
YY_BREAK
|
|
case 24:
|
|
YY_RULE_SETUP
|
|
#line 146 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
|
YY_BREAK
|
|
case 25:
|
|
YY_RULE_SETUP
|
|
#line 147 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
|
YY_BREAK
|
|
case 26:
|
|
YY_RULE_SETUP
|
|
#line 148 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
|
YY_BREAK
|
|
case 27:
|
|
YY_RULE_SETUP
|
|
#line 149 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 28:
|
|
YY_RULE_SETUP
|
|
#line 150 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 29:
|
|
YY_RULE_SETUP
|
|
#line 151 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 30:
|
|
YY_RULE_SETUP
|
|
#line 152 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 31:
|
|
YY_RULE_SETUP
|
|
#line 153 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
|
YY_BREAK
|
|
case 32:
|
|
YY_RULE_SETUP
|
|
#line 154 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
|
YY_BREAK
|
|
case 33:
|
|
YY_RULE_SETUP
|
|
#line 155 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
|
YY_BREAK
|
|
case 34:
|
|
YY_RULE_SETUP
|
|
#line 156 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 35:
|
|
YY_RULE_SETUP
|
|
#line 157 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
|
YY_BREAK
|
|
case 36:
|
|
YY_RULE_SETUP
|
|
#line 158 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
|
YY_BREAK
|
|
case 37:
|
|
YY_RULE_SETUP
|
|
#line 159 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
|
YY_BREAK
|
|
case 38:
|
|
YY_RULE_SETUP
|
|
#line 160 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
|
YY_BREAK
|
|
case 39:
|
|
YY_RULE_SETUP
|
|
#line 161 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
|
YY_BREAK
|
|
case 40:
|
|
YY_RULE_SETUP
|
|
#line 162 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
|
YY_BREAK
|
|
case 41:
|
|
YY_RULE_SETUP
|
|
#line 163 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 164 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
|
YY_BREAK
|
|
case 43:
|
|
YY_RULE_SETUP
|
|
#line 165 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_DNNSEC_STRIPPED) }
|
|
YY_BREAK
|
|
case 44:
|
|
YY_RULE_SETUP
|
|
#line 166 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
|
YY_BREAK
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 167 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
|
YY_BREAK
|
|
case 46:
|
|
YY_RULE_SETUP
|
|
#line 168 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
|
YY_BREAK
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 169 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
|
YY_BREAK
|
|
case 48:
|
|
YY_RULE_SETUP
|
|
#line 170 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
|
YY_BREAK
|
|
case 49:
|
|
YY_RULE_SETUP
|
|
#line 171 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
|
YY_BREAK
|
|
case 50:
|
|
YY_RULE_SETUP
|
|
#line 172 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NAME) }
|
|
YY_BREAK
|
|
case 51:
|
|
YY_RULE_SETUP
|
|
#line 173 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
|
YY_BREAK
|
|
case 52:
|
|
YY_RULE_SETUP
|
|
#line 174 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
|
YY_BREAK
|
|
case 53:
|
|
YY_RULE_SETUP
|
|
#line 175 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
|
YY_BREAK
|
|
case 54:
|
|
YY_RULE_SETUP
|
|
#line 176 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
|
YY_BREAK
|
|
case 55:
|
|
YY_RULE_SETUP
|
|
#line 177 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
|
YY_BREAK
|
|
case 56:
|
|
YY_RULE_SETUP
|
|
#line 178 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
|
YY_BREAK
|
|
case 57:
|
|
YY_RULE_SETUP
|
|
#line 179 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
|
YY_BREAK
|
|
case 58:
|
|
YY_RULE_SETUP
|
|
#line 180 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
|
YY_BREAK
|
|
case 59:
|
|
YY_RULE_SETUP
|
|
#line 181 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
|
YY_BREAK
|
|
case 60:
|
|
YY_RULE_SETUP
|
|
#line 182 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
|
YY_BREAK
|
|
case 61:
|
|
YY_RULE_SETUP
|
|
#line 183 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
|
YY_BREAK
|
|
case 62:
|
|
YY_RULE_SETUP
|
|
#line 184 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
|
YY_BREAK
|
|
case 63:
|
|
YY_RULE_SETUP
|
|
#line 185 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VERSION) }
|
|
YY_BREAK
|
|
case 64:
|
|
YY_RULE_SETUP
|
|
#line 186 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
|
YY_BREAK
|
|
case 65:
|
|
YY_RULE_SETUP
|
|
#line 187 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
|
YY_BREAK
|
|
case 66:
|
|
YY_RULE_SETUP
|
|
#line 188 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
|
YY_BREAK
|
|
case 67:
|
|
YY_RULE_SETUP
|
|
#line 189 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
|
YY_BREAK
|
|
case 68:
|
|
YY_RULE_SETUP
|
|
#line 190 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
|
YY_BREAK
|
|
case 69:
|
|
YY_RULE_SETUP
|
|
#line 191 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
|
YY_BREAK
|
|
case 70:
|
|
YY_RULE_SETUP
|
|
#line 192 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
|
YY_BREAK
|
|
case 71:
|
|
YY_RULE_SETUP
|
|
#line 193 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
|
YY_BREAK
|
|
case 72:
|
|
YY_RULE_SETUP
|
|
#line 194 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
|
YY_BREAK
|
|
case 73:
|
|
YY_RULE_SETUP
|
|
#line 195 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
|
YY_BREAK
|
|
case 74:
|
|
YY_RULE_SETUP
|
|
#line 196 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 75:
|
|
YY_RULE_SETUP
|
|
#line 197 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 76:
|
|
YY_RULE_SETUP
|
|
#line 198 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 77:
|
|
YY_RULE_SETUP
|
|
#line 199 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
|
YY_BREAK
|
|
case 78:
|
|
YY_RULE_SETUP
|
|
#line 201 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
|
YY_BREAK
|
|
case 79:
|
|
YY_RULE_SETUP
|
|
#line 202 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
|
YY_BREAK
|
|
case 80:
|
|
YY_RULE_SETUP
|
|
#line 203 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
|
YY_BREAK
|
|
case 81:
|
|
YY_RULE_SETUP
|
|
#line 204 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
|
YY_BREAK
|
|
case 82:
|
|
YY_RULE_SETUP
|
|
#line 205 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
|
YY_BREAK
|
|
case 83:
|
|
YY_RULE_SETUP
|
|
#line 206 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
|
YY_BREAK
|
|
case 84:
|
|
YY_RULE_SETUP
|
|
#line 207 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
|
YY_BREAK
|
|
case 85:
|
|
YY_RULE_SETUP
|
|
#line 208 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
|
YY_BREAK
|
|
case 86:
|
|
YY_RULE_SETUP
|
|
#line 209 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
|
YY_BREAK
|
|
case 87:
|
|
YY_RULE_SETUP
|
|
#line 210 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
|
YY_BREAK
|
|
case 88:
|
|
YY_RULE_SETUP
|
|
#line 211 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
|
YY_BREAK
|
|
case 89:
|
|
YY_RULE_SETUP
|
|
#line 212 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
|
YY_BREAK
|
|
case 90:
|
|
YY_RULE_SETUP
|
|
#line 213 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
|
YY_BREAK
|
|
case 91:
|
|
YY_RULE_SETUP
|
|
#line 214 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
|
YY_BREAK
|
|
case 92:
|
|
YY_RULE_SETUP
|
|
#line 215 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
|
YY_BREAK
|
|
case 93:
|
|
YY_RULE_SETUP
|
|
#line 216 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
|
YY_BREAK
|
|
case 94:
|
|
/* rule 94 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 217 "util/configlexer.lex"
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
YY_BREAK
|
|
/* Quoted strings. Strip leading and ending quotes */
|
|
case 95:
|
|
YY_RULE_SETUP
|
|
#line 220 "util/configlexer.lex"
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(quotedstring):
|
|
#line 221 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
}
|
|
YY_BREAK
|
|
case 96:
|
|
YY_RULE_SETUP
|
|
#line 226 "util/configlexer.lex"
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 97:
|
|
/* rule 97 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 227 "util/configlexer.lex"
|
|
{ yyerror("newline inside quoted string, no end \"");
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
|
YY_BREAK
|
|
case 98:
|
|
YY_RULE_SETUP
|
|
#line 229 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("QE "));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
yytext[yyleng - 1] = '\0';
|
|
yylval.str = strdup(yytext);
|
|
if(!yylval.str)
|
|
yyerror("out of memory");
|
|
return STRING;
|
|
}
|
|
YY_BREAK
|
|
/* Single Quoted strings. Strip leading and ending quotes */
|
|
case 99:
|
|
YY_RULE_SETUP
|
|
#line 241 "util/configlexer.lex"
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(singlequotedstr):
|
|
#line 242 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
}
|
|
YY_BREAK
|
|
case 100:
|
|
YY_RULE_SETUP
|
|
#line 247 "util/configlexer.lex"
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 101:
|
|
/* rule 101 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 248 "util/configlexer.lex"
|
|
{ yyerror("newline inside quoted string, no end '");
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
|
YY_BREAK
|
|
case 102:
|
|
YY_RULE_SETUP
|
|
#line 250 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("SQE "));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
yytext[yyleng - 1] = '\0';
|
|
yylval.str = strdup(yytext);
|
|
if(!yylval.str)
|
|
yyerror("out of memory");
|
|
return STRING;
|
|
}
|
|
YY_BREAK
|
|
/* include: directive */
|
|
case 103:
|
|
YY_RULE_SETUP
|
|
#line 262 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(include):
|
|
#line 264 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside include directive");
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case 104:
|
|
YY_RULE_SETUP
|
|
#line 268 "util/configlexer.lex"
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
|
YY_BREAK
|
|
case 105:
|
|
/* rule 105 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 269 "util/configlexer.lex"
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
|
YY_BREAK
|
|
case 106:
|
|
YY_RULE_SETUP
|
|
#line 270 "util/configlexer.lex"
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
YY_BREAK
|
|
case 107:
|
|
YY_RULE_SETUP
|
|
#line 271 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
|
config_start_include(yytext);
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case YY_STATE_EOF(include_quoted):
|
|
#line 276 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case 108:
|
|
YY_RULE_SETUP
|
|
#line 280 "util/configlexer.lex"
|
|
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 109:
|
|
/* rule 109 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 281 "util/configlexer.lex"
|
|
{ yyerror("newline before \" in include name");
|
|
cfg_parser->line++; BEGIN(inc_prev); }
|
|
YY_BREAK
|
|
case 110:
|
|
YY_RULE_SETUP
|
|
#line 283 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("IQE "));
|
|
yytext[yyleng - 1] = '\0';
|
|
config_start_include(yytext);
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case YY_STATE_EOF(INITIAL):
|
|
case YY_STATE_EOF(val):
|
|
#line 289 "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 111:
|
|
YY_RULE_SETUP
|
|
#line 299 "util/configlexer.lex"
|
|
{ LEXOUT(("unquotedstr(%s) ", yytext));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
yylval.str = strdup(yytext); return STRING; }
|
|
YY_BREAK
|
|
case 112:
|
|
YY_RULE_SETUP
|
|
#line 303 "util/configlexer.lex"
|
|
{
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
}
|
|
YY_BREAK
|
|
case 113:
|
|
YY_RULE_SETUP
|
|
#line 307 "util/configlexer.lex"
|
|
{
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
}
|
|
YY_BREAK
|
|
case 114:
|
|
YY_RULE_SETUP
|
|
#line 311 "util/configlexer.lex"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 2322 "<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), (size_t) 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);
|
|
|
|
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 >= 1060 )
|
|
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 >= 1060 )
|
|
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 == 1059);
|
|
|
|
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*)
|
|
);
|
|
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 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 311 "util/configlexer.lex"
|
|
|
|
|
|
|