unbound/util/configlexer.c
Wouter Wijngaards 43d228c5bc Doc fix and work on prefetch feature.
git-svn-id: file:///svn/unbound/trunk@1951 be551aaa-1e26-0410-a405-d3ace91eadb9
2010-01-07 14:38:18 +00:00

3474 lines
114 KiB
C

#include "config.h"
#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 128
#define YY_END_OF_BUFFER 129
/* 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[1209] =
{ 0,
1, 1, 110, 110, 114, 114, 118, 118, 122, 122,
1, 1, 129, 126, 1, 108, 108, 127, 2, 127,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 110,
111, 111, 112, 127, 114, 115, 115, 116, 127, 121,
118, 119, 119, 120, 127, 122, 123, 123, 124, 127,
125, 109, 2, 113, 127, 125, 126, 0, 1, 2,
2, 2, 2, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 110, 0, 114, 0, 121,
0, 118, 122, 0, 125, 0, 2, 2, 125, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 125, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 125, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 54, 126, 126, 126, 126, 126, 6, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 125, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 125, 126, 126, 126, 126, 21,
126, 126, 126, 126, 126, 12, 13, 126, 15, 14,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 106, 126, 126, 126, 126, 3, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
125, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 117, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 24, 126, 126, 126,
126, 126, 126, 126, 25, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 67, 117, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 66, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 52, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 22, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 23, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 17, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 20, 126, 55, 56, 126, 53, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
5, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 69, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 92, 91,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 26, 126, 126, 126, 126,
57, 126, 126, 126, 126, 126, 89, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 45, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 4, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 86, 126, 126, 126, 126,
126, 126, 126, 100, 87, 126, 16, 126, 126, 126,
126, 59, 60, 58, 126, 126, 126, 126, 126, 65,
126, 126, 126, 126, 126, 126, 126, 126, 88, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 74, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 33, 34, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 64, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 68, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 105, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 78, 126, 81, 126, 126, 126, 126, 63, 126,
126, 98, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 35, 36,
126, 41, 82, 126, 93, 90, 126, 29, 126, 84,
126, 126, 126, 126, 126, 7, 126, 51, 97, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
70, 126, 126, 107, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 83, 28, 30, 126, 126,
126, 126, 126, 50, 126, 126, 126, 101, 126, 126,
126, 126, 126, 126, 48, 126, 126, 126, 126, 126,
126, 126, 126, 126, 103, 126, 126, 27, 126, 126,
126, 126, 126, 11, 126, 126, 126, 126, 126, 126,
10, 126, 126, 31, 126, 102, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 77, 76, 126, 104,
99, 126, 126, 126, 126, 126, 126, 126, 126, 126,
37, 126, 126, 126, 126, 126, 32, 126, 126, 126,
71, 73, 126, 126, 126, 75, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 18,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 96, 126, 126, 126, 126, 126, 126, 19,
126, 9, 126, 126, 94, 42, 126, 126, 126, 80,
126, 61, 126, 126, 44, 47, 43, 126, 38, 126,
8, 126, 126, 79, 126, 126, 126, 126, 39, 126,
95, 126, 126, 72, 62, 46, 40, 126, 126, 126,
126, 49, 126, 126, 126, 126, 85, 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, 4, 5, 1, 6, 1, 1, 1,
1, 7, 1, 1, 1, 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[1223] =
{ 0,
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
87, 108, 2184, 2126, 50, 2431, 2431, 2431, 129, 94,
70, 104, 122, 90, 92, 115, 126, 95, 84, 132,
133, 138, 50, 135, 136, 156, 145, 155, 157, 2087,
2431, 2431, 2431, 70, 2063, 2431, 2431, 2431, 42, 1805,
1596, 2431, 2431, 2431, 176, 1471, 2431, 2431, 2431, 181,
1367, 2431, 186, 2431, 190, 111, 1221, 196, 120, 0,
207, 0, 0, 103, 189, 183, 191, 192, 197, 200,
202, 142, 209, 205, 208, 213, 214, 217, 218, 224,
215, 233, 236, 225, 235, 237, 240, 241, 226, 245,
248, 251, 252, 255, 259, 257, 253, 267, 263, 261,
265, 49, 270, 269, 273, 1170, 286, 663, 289, 576,
296, 540, 401, 301, 282, 305, 309, 0, 302, 306,
312, 289, 308, 295, 313, 319, 315, 322, 334, 323,
318, 321, 327, 325, 330, 328, 332, 331, 336, 339,
340, 351, 352, 362, 345, 363, 360, 369, 372, 370,
373, 361, 374, 371, 375, 376, 378, 382, 384, 385,
388, 390, 389, 386, 394, 402, 404, 407, 400, 410,
411, 418, 416, 415, 414, 417, 424, 422, 433, 428,
431, 435, 436, 439, 442, 441, 449, 447, 456, 443,
445, 454, 457, 453, 460, 464, 462, 461, 468, 469,
470, 474, 480, 481, 475, 483, 485, 487, 491, 489,
493, 497, 504, 500, 501, 502, 503, 514, 510, 507,
511, 513, 519, 534, 523, 521, 518, 522, 528, 524,
531, 535, 542, 545, 547, 540, 551, 561, 552, 562,
563, 566, 568, 565, 564, 571, 574, 575, 573, 581,
591, 587, 589, 588, 597, 600, 599, 592, 602, 603,
605, 2431, 609, 611, 612, 613, 614, 2431, 615, 616,
617, 618, 619, 630, 621, 628, 629, 633, 637, 647,
638, 643, 640, 645, 651, 655, 653, 654, 656, 664,
661, 660, 662, 671, 681, 672, 674, 680, 683, 685,
686, 687, 688, 690, 695, 700, 701, 705, 707, 713,
689, 709, 711, 717, 716, 718, 719, 721, 722, 725,
729, 732, 731, 735, 741, 734, 743, 749, 746, 750,
751, 755, 724, 756, 757, 758, 759, 773, 771, 765,
775, 781, 777, 763, 782, 769, 785, 787, 793, 789,
791, 792, 794, 796, 798, 799, 800, 801, 804, 807,
813, 814, 816, 818, 817, 820, 824, 819, 826, 2431,
834, 833, 830, 836, 838, 2431, 2431, 149, 2431, 2431,
841, 839, 842, 852, 854, 851, 849, 843, 860, 855,
863, 865, 869, 871, 857, 875, 876, 878, 881, 882,
886, 888, 883, 890, 892, 893, 897, 899, 904, 901,
910, 895, 2431, 912, 907, 916, 919, 2431, 908, 918,
920, 913, 925, 923, 933, 926, 936, 938, 928, 941,
943, 935, 944, 951, 949, 950, 954, 960, 957, 959,
962, 963, 965, 964, 966, 970, 991, 971, 972, 973,
979, 974, 985, 976, 986, 1003, 987, 980, 1005, 1008,
1009, 998, 1014, 1016, 2431, 1023, 1019, 1020, 1021, 1025,
1026, 1024, 1027, 1028, 1031, 1041, 2431, 1037, 1042, 1044,
1046, 1050, 1053, 1060, 2431, 1057, 1061, 1063, 1058, 1064,
1067, 1069, 1071, 1072, 1077, 1068, 1075, 1079, 1082, 1083,
1090, 1085, 1094, 1102, 1091, 1099, 1081, 1101, 1104, 1107,
1105, 1108, 1109, 1110, 2431, 216, 1111, 1112, 1113, 1119,
1126, 1124, 1118, 1120, 1131, 1122, 1130, 1139, 1140, 1141,
1142, 1143, 1144, 1146, 1148, 1151, 1153, 1154, 989, 1156,
1155, 1157, 1159, 1160, 2431, 1163, 1167, 1164, 1171, 1183,
1180, 1181, 1191, 1187, 1189, 1195, 1185, 1192, 1202, 1203,
1200, 1204, 1206, 2431, 1207, 1201, 1209, 1212, 1213, 1217,
1218, 1214, 1229, 1219, 1231, 1234, 1235, 1242, 1223, 1237,
1244, 1246, 1247, 1248, 2431, 1256, 1257, 1254, 1263, 1260,
1261, 1262, 1266, 1250, 1267, 1276, 1268, 1272, 1275, 1277,
1274, 1279, 1281, 1282, 2431, 1296, 1283, 1284, 1298, 1289,
1286, 1297, 1300, 1308, 1310, 1311, 1313, 1312, 1314, 1315,
1318, 1321, 1323, 1330, 1331, 1334, 2431, 1336, 1337, 1327,
1344, 1348, 1338, 1349, 1345, 1350, 1352, 1353, 1354, 1356,
1358, 1359, 1360, 1362, 1363, 1368, 1364, 1381, 1378, 1365,
1387, 2431, 1391, 2431, 2431, 1389, 2431, 1390, 1392, 1375,
1394, 1395, 1397, 1398, 1401, 1403, 1404, 1405, 1408, 1406,
2431, 1412, 1414, 1416, 1413, 1419, 1420, 1038, 1421, 1429,
1422, 1423, 1432, 2431, 1431, 1434, 1441, 1448, 1445, 1435,
1447, 1449, 1450, 1452, 1456, 1457, 1458, 1460, 1462, 1464,
1468, 1465, 1466, 1469, 1472, 1474, 1470, 1473, 2431, 2431,
1488, 1483, 1484, 1493, 1495, 1499, 1497, 1498, 1500, 1501,
1506, 1507, 1508, 1510, 1511, 2431, 1517, 1521, 1522, 1524,
2431, 1515, 1514, 1530, 1531, 1534, 2431, 1535, 1536, 1537,
1538, 1539, 1541, 1545, 1546, 1554, 1548, 1551, 1557, 1564,
1558, 1556, 1560, 1572, 1576, 1573, 1578, 1584, 1565, 1580,
1567, 1589, 1591, 1593, 1594, 2431, 1600, 1583, 1603, 1581,
1605, 1607, 1596, 1609, 1611, 1612, 1613, 1617, 1614, 1618,
1621, 1624, 1620, 1626, 1622, 1636, 1623, 1628, 2431, 1625,
1643, 1639, 1645, 1642, 1646, 1650, 1651, 1653, 1654, 1656,
1657, 1661, 1663, 1669, 1667, 1671, 1679, 1673, 1676, 1677,
1681, 1687, 1686, 1693, 1684, 2431, 1691, 1698, 1700, 1695,
1702, 1703, 1704, 2431, 2431, 1705, 2431, 1710, 1712, 1714,
1715, 2431, 2431, 2431, 1721, 1718, 1719, 1285, 1726, 2431,
1727, 1728, 1731, 1732, 1733, 1734, 1736, 1737, 2431, 1738,
1690, 1740, 1739, 1742, 1749, 1750, 1754, 1759, 1760, 1753,
1761, 1767, 1763, 1766, 1769, 1773, 1770, 1777, 1778, 1776,
1779, 1774, 1780, 1784, 2431, 1791, 1793, 1795, 1799, 1800,
1802, 1803, 1806, 1807, 1808, 1814, 1811, 2431, 2431, 1815,
1817, 1825, 1820, 1823, 1827, 1829, 1830, 1833, 1834, 1836,
1837, 1838, 1839, 2431, 1840, 1841, 1848, 1845, 1852, 1857,
1849, 1864, 1866, 1867, 1869, 1871, 2431, 1842, 1873, 1874,
1876, 1877, 1878, 1879, 1880, 1888, 1883, 1890, 2431, 1892,
1885, 1897, 1894, 1899, 1900, 1903, 1901, 1905, 1909, 1912,
1913, 2431, 1910, 2431, 1915, 1919, 1927, 1925, 2431, 1923,
1928, 2431, 1929, 1931, 1942, 1933, 1943, 1945, 1947, 1935,
1939, 1948, 1954, 1950, 1951, 1957, 1958, 1961, 2431, 2431,
1964, 2431, 2431, 1969, 2431, 2431, 1971, 2431, 1973, 2431,
1979, 1975, 1977, 1960, 1978, 2431, 1981, 2431, 2431, 1984,
1985, 1986, 1995, 1988, 1990, 1992, 1997, 1998, 1996, 2002,
2003, 1999, 2006, 2005, 2007, 2013, 2011, 2014, 2015, 2022,
2431, 2017, 2023, 2431, 2033, 2028, 2030, 2034, 2038, 2036,
2040, 2046, 2042, 2043, 2044, 2431, 2431, 2431, 2045, 2047,
2059, 2051, 2049, 2431, 2061, 2053, 2069, 2431, 2070, 2056,
2073, 2074, 2075, 2076, 2431, 2077, 2081, 2083, 2085, 2090,
2094, 2096, 2098, 2102, 2431, 2099, 2095, 2431, 2103, 2105,
2108, 2109, 2111, 2431, 2112, 2113, 2116, 2118, 2121, 2119,
2431, 2125, 2122, 2431, 2137, 2431, 2123, 2138, 2130, 2141,
2145, 2128, 2142, 2152, 2149, 2150, 2431, 2431, 2151, 2431,
2431, 2153, 2155, 2158, 2159, 2160, 2161, 2162, 2164, 2166,
2431, 2167, 2169, 2179, 2176, 2174, 2431, 2182, 2184, 2168,
2431, 2431, 2185, 2194, 2189, 2431, 2192, 2199, 2200, 2201,
2203, 2204, 2205, 2206, 2207, 2209, 2210, 2218, 2221, 2431,
2223, 2211, 2215, 2228, 2233, 2225, 2230, 2234, 2239, 2236,
2241, 2243, 2431, 2245, 2247, 2252, 2256, 2253, 2260, 2431,
2263, 2431, 2266, 2267, 2431, 2431, 2249, 2269, 2270, 2431,
2271, 2431, 2261, 2273, 2431, 2431, 2431, 2279, 2431, 2280,
2431, 2283, 2274, 2431, 2285, 2287, 2291, 2293, 2431, 2295,
2431, 2288, 2296, 2431, 2431, 2431, 2431, 2298, 2299, 2305,
2301, 2431, 2306, 2308, 2307, 2312, 2431, 2431, 2339, 2346,
2353, 2360, 2367, 94, 2374, 2381, 2388, 2395, 2402, 2409,
2416, 2423
} ;
static yyconst flex_int16_t yy_def[1223] =
{ 0,
1208, 1, 1209, 1209, 1210, 1210, 1211, 1211, 1212, 1212,
1213, 1213, 1208, 1214, 1208, 1208, 1208, 1208, 1215, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1216,
1208, 1208, 1208, 1216, 1217, 1208, 1208, 1208, 1217, 1218,
1208, 1208, 1208, 1208, 1218, 1219, 1208, 1208, 1208, 1219,
1220, 1208, 1221, 1208, 1220, 1220, 1214, 1214, 1208, 1222,
1215, 1222, 1215, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1216, 1216, 1217, 1217, 1218,
1218, 1208, 1219, 1219, 1220, 1220, 1221, 1221, 1220, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1220, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1220, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1208, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1220, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1220, 1214, 1214, 1214, 1214, 1208,
1214, 1214, 1214, 1214, 1214, 1208, 1208, 1214, 1208, 1208,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1208, 1214, 1214, 1214, 1214, 1208, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1220, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1220, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1208, 1214, 1208, 1208, 1214, 1208, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1208, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1208,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214,
1208, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1208, 1208, 1214, 1208, 1214, 1214, 1214,
1214, 1208, 1208, 1208, 1214, 1214, 1214, 1214, 1214, 1208,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1208, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1208, 1214, 1208, 1214, 1214, 1214, 1214, 1208, 1214,
1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208, 1208,
1214, 1208, 1208, 1214, 1208, 1208, 1214, 1208, 1214, 1208,
1214, 1214, 1214, 1214, 1214, 1208, 1214, 1208, 1208, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1208, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1208, 1208, 1208, 1214, 1214,
1214, 1214, 1214, 1208, 1214, 1214, 1214, 1208, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1208, 1214, 1214, 1208, 1214, 1214,
1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214,
1208, 1214, 1214, 1208, 1214, 1208, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1208, 1208, 1214, 1208,
1208, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1208, 1214, 1214, 1214, 1214, 1214, 1208, 1214, 1214, 1214,
1208, 1208, 1214, 1214, 1214, 1208, 1214, 1214, 1214, 1214,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1208,
1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
1214, 1214, 1208, 1214, 1214, 1214, 1214, 1214, 1214, 1208,
1214, 1208, 1214, 1214, 1208, 1208, 1214, 1214, 1214, 1208,
1214, 1208, 1214, 1214, 1208, 1208, 1208, 1214, 1208, 1214,
1208, 1214, 1214, 1208, 1214, 1214, 1214, 1214, 1208, 1214,
1208, 1214, 1214, 1208, 1208, 1208, 1208, 1214, 1214, 1214,
1214, 1208, 1214, 1214, 1214, 1214, 1208, 0, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208
} ;
static yyconst flex_int16_t yy_nxt[2471] =
{ 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, 118, 46, 47, 118, 44,
48, 69, 44, 46, 47, 70, 49, 48, 57, 58,
59, 68, 68, 49, 51, 52, 53, 54, 60, 18,
57, 58, 59, 116, 116, 55, 51, 52, 53, 54,
60, 18, 68, 99, 175, 74, 75, 55, 15, 16,
17, 62, 63, 64, 67, 67, 68, 67, 67, 65,
67, 92, 68, 76, 68, 67, 84, 68, 66, 15,
16, 17, 62, 63, 64, 68, 68, 77, 130, 86,
65, 69, 91, 126, 78, 70, 85, 68, 87, 66,
72, 79, 72, 72, 68, 72, 88, 129, 68, 80,
72, 73, 89, 81, 68, 68, 82, 68, 68, 83,
68, 96, 90, 104, 68, 97, 100, 68, 110, 93,
94, 68, 101, 105, 95, 102, 106, 68, 68, 68,
114, 98, 103, 107, 115, 111, 138, 120, 462, 120,
120, 112, 120, 108, 123, 123, 113, 72, 109, 72,
72, 125, 72, 125, 125, 68, 125, 67, 128, 67,
67, 68, 67, 68, 68, 131, 133, 67, 72, 68,
72, 72, 68, 72, 68, 132, 139, 68, 72, 73,
68, 68, 134, 135, 136, 68, 68, 68, 126, 68,
68, 141, 137, 145, 140, 146, 68, 68, 68, 147,
142, 155, 148, 143, 144, 68, 150, 68, 68, 68,
151, 153, 68, 68, 156, 154, 149, 68, 160, 158,
68, 161, 157, 68, 68, 68, 159, 68, 163, 68,
152, 68, 164, 68, 170, 68, 171, 68, 162, 68,
166, 68, 68, 169, 165, 68, 167, 176, 168, 116,
116, 173, 118, 177, 126, 118, 172, 120, 174, 120,
120, 68, 120, 178, 123, 123, 125, 68, 125, 125,
72, 125, 72, 72, 126, 72, 182, 179, 68, 181,
68, 128, 184, 180, 68, 68, 186, 68, 183, 188,
68, 68, 187, 68, 68, 68, 194, 68, 196, 68,
68, 198, 68, 68, 68, 185, 68, 199, 68, 195,
189, 68, 68, 204, 200, 190, 201, 68, 207, 202,
191, 203, 197, 68, 68, 208, 192, 193, 206, 209,
212, 205, 68, 68, 68, 68, 214, 213, 211, 215,
210, 68, 68, 68, 68, 68, 68, 68, 68, 216,
68, 217, 219, 218, 68, 221, 68, 68, 68, 224,
68, 68, 68, 222, 228, 220, 68, 231, 229, 232,
223, 234, 126, 124, 68, 226, 68, 230, 225, 68,
227, 235, 68, 68, 237, 240, 68, 68, 68, 68,
68, 239, 233, 241, 68, 246, 68, 244, 236, 245,
68, 238, 242, 68, 243, 68, 247, 68, 68, 253,
250, 68, 251, 68, 68, 68, 248, 68, 249, 68,
252, 68, 255, 257, 256, 68, 68, 254, 68, 68,
261, 264, 68, 68, 68, 258, 68, 265, 259, 260,
68, 68, 68, 262, 263, 266, 68, 68, 270, 271,
268, 272, 68, 68, 269, 68, 273, 68, 278, 68,
267, 68, 280, 68, 274, 68, 277, 275, 279, 68,
276, 283, 68, 68, 68, 68, 68, 286, 285, 68,
281, 288, 68, 68, 287, 68, 68, 289, 292, 282,
126, 68, 284, 68, 68, 68, 68, 291, 308, 290,
68, 122, 303, 68, 293, 294, 68, 68, 295, 296,
302, 304, 68, 305, 68, 306, 307, 68, 297, 68,
298, 299, 300, 68, 68, 301, 313, 309, 314, 310,
315, 316, 311, 68, 68, 68, 68, 68, 68, 312,
68, 322, 321, 68, 317, 68, 68, 68, 121, 328,
318, 319, 320, 68, 323, 325, 327, 324, 330, 68,
68, 68, 329, 68, 68, 331, 332, 335, 326, 68,
334, 68, 68, 333, 68, 68, 337, 68, 340, 338,
336, 68, 341, 68, 68, 68, 68, 68, 68, 68,
68, 68, 343, 68, 344, 349, 339, 351, 345, 350,
68, 68, 68, 348, 342, 68, 355, 346, 347, 68,
68, 352, 68, 356, 360, 68, 363, 68, 365, 68,
354, 357, 353, 68, 361, 68, 68, 68, 68, 359,
362, 358, 68, 68, 68, 119, 68, 364, 366, 367,
368, 371, 372, 126, 68, 369, 68, 375, 376, 374,
370, 373, 68, 68, 380, 68, 377, 68, 68, 68,
68, 68, 68, 384, 378, 379, 386, 68, 388, 381,
382, 387, 68, 68, 383, 385, 389, 68, 390, 68,
391, 68, 392, 68, 395, 68, 393, 394, 68, 68,
68, 68, 396, 68, 68, 397, 68, 68, 399, 405,
401, 68, 404, 68, 68, 402, 68, 68, 400, 403,
407, 398, 406, 68, 417, 68, 412, 408, 68, 410,
411, 68, 68, 68, 413, 414, 415, 68, 68, 68,
68, 68, 416, 420, 419, 68, 421, 68, 424, 409,
422, 68, 418, 68, 423, 68, 425, 68, 427, 68,
426, 429, 428, 68, 68, 430, 432, 68, 431, 68,
435, 68, 436, 68, 68, 68, 68, 437, 68, 438,
68, 68, 68, 68, 434, 433, 68, 443, 442, 68,
444, 445, 439, 441, 446, 68, 68, 440, 68, 126,
68, 68, 68, 448, 451, 452, 68, 449, 68, 455,
453, 457, 68, 447, 450, 68, 68, 456, 68, 458,
68, 68, 454, 68, 68, 68, 460, 464, 465, 466,
459, 68, 463, 68, 68, 461, 68, 68, 472, 68,
467, 475, 68, 468, 476, 68, 477, 68, 469, 473,
474, 68, 479, 68, 470, 471, 480, 68, 68, 481,
68, 484, 478, 68, 68, 68, 483, 487, 68, 486,
68, 489, 68, 488, 68, 68, 482, 68, 485, 68,
490, 68, 491, 68, 493, 495, 68, 497, 494, 68,
68, 496, 68, 492, 68, 68, 498, 499, 68, 501,
68, 68, 68, 500, 502, 68, 506, 68, 68, 505,
68, 504, 503, 512, 507, 68, 508, 68, 68, 509,
68, 510, 511, 68, 513, 68, 68, 518, 519, 514,
516, 68, 68, 68, 520, 515, 68, 523, 517, 68,
525, 68, 68, 526, 126, 68, 68, 68, 68, 522,
521, 528, 68, 68, 68, 68, 68, 537, 68, 524,
527, 68, 68, 544, 543, 529, 531, 68, 68, 68,
539, 68, 530, 68, 549, 540, 532, 541, 533, 538,
68, 542, 534, 548, 535, 68, 545, 68, 550, 536,
68, 68, 626, 546, 553, 551, 68, 555, 68, 552,
556, 68, 68, 68, 557, 68, 68, 68, 68, 68,
68, 547, 560, 68, 563, 554, 559, 561, 566, 68,
68, 558, 761, 68, 68, 562, 68, 565, 68, 568,
564, 569, 68, 570, 567, 68, 572, 573, 574, 68,
68, 571, 68, 68, 575, 68, 68, 576, 577, 68,
68, 68, 580, 68, 68, 578, 581, 68, 582, 68,
583, 68, 584, 68, 68, 68, 579, 68, 585, 588,
589, 592, 68, 68, 587, 590, 68, 586, 591, 593,
595, 68, 596, 68, 68, 599, 68, 68, 594, 68,
68, 68, 68, 68, 68, 68, 607, 597, 598, 601,
68, 68, 68, 608, 68, 600, 68, 604, 68, 605,
602, 609, 68, 68, 610, 606, 611, 603, 612, 613,
615, 68, 68, 68, 68, 68, 68, 614, 68, 618,
68, 620, 617, 68, 622, 68, 68, 68, 68, 68,
616, 68, 68, 628, 619, 68, 68, 621, 623, 68,
624, 631, 117, 68, 629, 625, 627, 633, 635, 632,
636, 630, 68, 68, 637, 68, 634, 68, 640, 68,
641, 68, 639, 68, 68, 638, 642, 68, 643, 646,
647, 644, 68, 68, 68, 68, 68, 648, 68, 68,
649, 68, 645, 654, 68, 68, 68, 650, 655, 68,
68, 68, 651, 68, 652, 68, 653, 659, 657, 656,
662, 68, 664, 68, 658, 665, 68, 68, 660, 68,
663, 661, 666, 667, 68, 668, 68, 669, 68, 68,
68, 670, 68, 674, 675, 672, 68, 673, 68, 68,
677, 676, 68, 68, 68, 68, 671, 681, 68, 68,
68, 678, 682, 684, 68, 680, 68, 68, 68, 68,
688, 68, 679, 68, 68, 68, 68, 68, 68, 913,
685, 68, 683, 693, 686, 687, 689, 694, 68, 68,
68, 691, 68, 700, 696, 697, 690, 692, 699, 698,
68, 695, 68, 68, 68, 68, 68, 68, 704, 706,
68, 701, 705, 68, 702, 68, 708, 712, 713, 68,
711, 703, 68, 68, 707, 709, 68, 714, 68, 68,
68, 718, 723, 715, 710, 719, 68, 68, 717, 720,
68, 68, 68, 716, 68, 68, 68, 722, 68, 721,
68, 68, 68, 731, 68, 68, 68, 68, 732, 126,
68, 724, 728, 725, 726, 727, 730, 68, 733, 734,
68, 729, 736, 68, 739, 737, 735, 738, 740, 68,
741, 68, 68, 68, 68, 742, 68, 68, 747, 68,
68, 745, 744, 68, 749, 68, 68, 68, 68, 743,
68, 752, 746, 754, 68, 68, 68, 751, 68, 757,
748, 68, 68, 68, 68, 68, 763, 750, 762, 753,
756, 68, 755, 68, 68, 758, 68, 68, 767, 765,
766, 759, 760, 68, 764, 770, 769, 68, 771, 68,
68, 68, 68, 776, 68, 772, 774, 775, 68, 68,
68, 768, 68, 777, 68, 783, 68, 68, 68, 773,
68, 68, 68, 124, 68, 68, 68, 778, 781, 782,
779, 789, 780, 788, 790, 68, 68, 784, 785, 787,
68, 791, 786, 792, 793, 68, 798, 68, 799, 68,
68, 68, 68, 68, 795, 794, 797, 796, 68, 68,
68, 805, 68, 68, 808, 801, 68, 68, 809, 68,
800, 802, 803, 68, 68, 813, 68, 804, 806, 811,
810, 807, 68, 68, 814, 812, 68, 68, 68, 68,
68, 68, 819, 68, 820, 821, 822, 68, 68, 816,
68, 815, 823, 68, 817, 826, 68, 818, 68, 68,
68, 830, 68, 825, 827, 828, 68, 68, 833, 68,
824, 829, 831, 834, 68, 68, 832, 835, 68, 837,
68, 838, 68, 68, 836, 68, 68, 122, 839, 841,
842, 68, 843, 68, 844, 68, 68, 846, 68, 845,
848, 840, 68, 847, 851, 68, 850, 68, 849, 68,
852, 68, 853, 68, 68, 68, 68, 854, 859, 68,
68, 861, 68, 68, 68, 68, 68, 68, 68, 864,
68, 855, 870, 856, 857, 863, 858, 865, 68, 867,
871, 68, 860, 862, 68, 68, 869, 68, 68, 874,
866, 868, 68, 68, 873, 68, 68, 875, 68, 68,
883, 872, 879, 68, 886, 68, 884, 880, 877, 68,
885, 68, 876, 68, 878, 68, 888, 882, 68, 68,
881, 68, 890, 68, 893, 887, 68, 889, 68, 68,
895, 891, 68, 68, 924, 68, 897, 68, 896, 898,
68, 899, 68, 900, 68, 68, 68, 68, 892, 901,
894, 902, 68, 905, 68, 903, 68, 68, 910, 904,
68, 68, 912, 68, 906, 908, 909, 914, 68, 68,
68, 916, 907, 68, 68, 68, 68, 911, 68, 68,
68, 68, 68, 927, 68, 923, 918, 919, 920, 915,
926, 68, 68, 921, 917, 68, 68, 929, 930, 922,
925, 68, 68, 68, 935, 68, 931, 932, 68, 68,
936, 68, 68, 933, 939, 68, 68, 928, 68, 68,
68, 68, 68, 934, 940, 938, 68, 937, 941, 943,
944, 942, 948, 68, 945, 68, 946, 68, 947, 949,
952, 68, 68, 954, 68, 68, 951, 121, 68, 68,
68, 953, 956, 68, 957, 959, 68, 68, 962, 68,
950, 960, 68, 958, 955, 68, 961, 68, 963, 68,
965, 68, 68, 966, 964, 68, 68, 968, 68, 68,
68, 68, 68, 68, 68, 975, 967, 68, 978, 987,
68, 68, 973, 979, 68, 970, 976, 971, 980, 68,
972, 969, 974, 977, 981, 982, 68, 983, 68, 68,
985, 68, 986, 68, 988, 68, 68, 990, 68, 68,
68, 68, 68, 994, 993, 68, 992, 68, 984, 996,
68, 998, 68, 999, 68, 989, 68, 991, 995, 68,
1001, 68, 68, 68, 997, 68, 1003, 68, 1002, 1009,
1005, 68, 68, 1000, 68, 68, 1007, 68, 1006, 1010,
1008, 68, 1013, 1004, 1014, 68, 1012, 68, 1015, 68,
68, 68, 1011, 68, 1019, 68, 1016, 68, 1020, 1022,
1017, 68, 1018, 1021, 68, 68, 1024, 68, 1023, 68,
68, 1029, 68, 68, 1025, 1028, 68, 1026, 1030, 68,
68, 1027, 68, 68, 1032, 1034, 68, 1035, 1033, 1031,
1036, 68, 1037, 68, 1038, 68, 1039, 68, 1040, 68,
68, 68, 1044, 68, 1042, 1043, 68, 68, 68, 1046,
68, 1045, 68, 1047, 68, 1041, 1048, 68, 68, 68,
68, 68, 1049, 1055, 68, 68, 1051, 68, 68, 68,
1050, 1052, 1053, 68, 1056, 68, 68, 68, 1054, 68,
1059, 1063, 1064, 1065, 68, 68, 1067, 1057, 1058, 1061,
68, 1062, 68, 1060, 1068, 68, 68, 1066, 68, 1069,
68, 1074, 68, 1075, 68, 68, 68, 68, 68, 68,
1070, 68, 1080, 68, 1071, 68, 1072, 1073, 68, 1076,
1081, 68, 1084, 68, 1077, 119, 1078, 1079, 1082, 1083,
1086, 68, 68, 1087, 1085, 68, 68, 68, 68, 68,
1088, 1090, 1091, 68, 1089, 68, 1092, 68, 1094, 117,
1095, 1097, 68, 1099, 1093, 1098, 68, 68, 68, 1100,
68, 68, 1096, 1101, 68, 68, 1102, 68, 1104, 1103,
68, 68, 1107, 68, 68, 68, 1105, 1111, 68, 1106,
68, 68, 1108, 68, 68, 68, 1114, 68, 68, 1112,
68, 1113, 68, 1109, 1110, 1120, 1115, 1116, 1117, 68,
68, 1119, 1121, 68, 68, 1118, 1122, 68, 1123, 1125,
1126, 68, 68, 68, 68, 68, 1127, 68, 1124, 1128,
68, 68, 68, 68, 68, 1130, 68, 1133, 68, 68,
68, 68, 1138, 1208, 1129, 1136, 68, 1132, 68, 1131,
1140, 68, 1141, 1134, 68, 1142, 68, 68, 1137, 1139,
1135, 68, 1146, 1143, 68, 1145, 68, 1147, 1144, 1149,
1148, 68, 68, 68, 1153, 68, 68, 68, 68, 68,
1150, 68, 68, 68, 1157, 1208, 1156, 68, 1152, 1160,
68, 1151, 1154, 68, 1162, 68, 1155, 68, 1161, 1165,
68, 1159, 68, 1163, 1166, 68, 68, 1158, 68, 1164,
1170, 68, 1172, 68, 1168, 68, 1167, 68, 1175, 68,
1171, 68, 1174, 1176, 68, 68, 1169, 1177, 68, 1183,
1178, 1179, 68, 68, 1173, 68, 1180, 1181, 68, 68,
1184, 68, 68, 68, 1182, 68, 68, 1185, 1186, 1188,
1189, 68, 68, 1187, 1191, 68, 1190, 68, 1194, 68,
68, 1192, 1195, 68, 1196, 68, 1197, 68, 68, 1199,
68, 68, 1198, 68, 1200, 1193, 1202, 68, 68, 68,
68, 1208, 1203, 1207, 68, 1208, 1208, 1208, 1208, 1208,
1208, 1201, 1208, 1204, 1205, 1208, 1208, 1208, 1206, 40,
40, 40, 40, 40, 40, 40, 45, 45, 45, 45,
45, 45, 45, 50, 50, 50, 50, 50, 50, 50,
56, 56, 56, 56, 56, 56, 56, 61, 61, 61,
61, 61, 61, 61, 71, 71, 1208, 71, 71, 71,
71, 116, 116, 1208, 1208, 1208, 116, 116, 118, 118,
1208, 1208, 118, 1208, 118, 120, 1208, 1208, 1208, 1208,
1208, 120, 123, 123, 1208, 1208, 1208, 123, 123, 125,
1208, 1208, 1208, 1208, 1208, 125, 127, 127, 1208, 127,
127, 127, 127, 72, 72, 1208, 72, 72, 72, 72,
13, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208
} ;
static yyconst flex_int16_t yy_chk[2471] =
{ 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, 49, 5, 5, 49, 3,
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
9, 112, 33, 6, 7, 7, 7, 7, 9, 7,
10, 10, 10, 44, 44, 7, 8, 8, 8, 8,
10, 8, 21, 33, 112, 21, 21, 8, 11, 11,
11, 11, 11, 11, 1214, 20, 29, 20, 20, 11,
20, 29, 24, 21, 25, 20, 24, 28, 11, 12,
12, 12, 12, 12, 12, 74, 22, 22, 74, 25,
12, 69, 28, 66, 22, 69, 24, 26, 26, 12,
19, 22, 19, 19, 23, 19, 26, 66, 27, 23,
19, 19, 27, 23, 30, 31, 23, 34, 35, 23,
32, 32, 27, 35, 82, 32, 34, 37, 37, 30,
31, 388, 34, 35, 31, 34, 35, 38, 36, 39,
39, 32, 34, 36, 39, 37, 82, 55, 388, 55,
55, 38, 55, 36, 60, 60, 38, 63, 36, 63,
63, 65, 63, 65, 65, 76, 65, 68, 63, 68,
68, 75, 68, 77, 78, 75, 77, 68, 71, 79,
71, 71, 80, 71, 81, 76, 83, 84, 71, 71,
85, 83, 78, 79, 80, 86, 87, 91, 526, 88,
89, 84, 81, 88, 83, 89, 90, 94, 99, 90,
85, 94, 90, 86, 87, 92, 91, 95, 93, 96,
92, 93, 97, 98, 95, 93, 90, 100, 99, 97,
101, 100, 96, 102, 103, 107, 98, 104, 102, 106,
92, 105, 102, 110, 108, 109, 109, 111, 101, 108,
104, 114, 113, 107, 103, 115, 105, 113, 106, 117,
117, 110, 119, 114, 125, 119, 109, 121, 111, 121,
121, 132, 121, 115, 124, 124, 126, 134, 126, 126,
127, 126, 127, 127, 129, 127, 132, 129, 130, 131,
133, 127, 134, 130, 131, 135, 136, 137, 133, 138,
141, 136, 137, 142, 138, 140, 140, 144, 142, 143,
146, 144, 145, 148, 147, 135, 139, 145, 149, 141,
139, 150, 151, 149, 146, 139, 147, 155, 152, 147,
139, 148, 143, 152, 153, 153, 139, 139, 151, 154,
156, 150, 157, 162, 154, 156, 158, 157, 155, 159,
154, 158, 160, 164, 159, 161, 163, 165, 166, 160,
167, 161, 163, 162, 168, 165, 169, 170, 174, 168,
171, 173, 172, 166, 172, 164, 175, 175, 173, 176,
167, 177, 179, 123, 176, 170, 177, 174, 169, 178,
171, 178, 180, 181, 179, 182, 185, 184, 183, 186,
182, 181, 176, 183, 188, 188, 187, 186, 178, 187,
190, 180, 184, 191, 185, 189, 189, 192, 193, 195,
192, 194, 193, 196, 195, 200, 190, 201, 191, 198,
194, 197, 197, 199, 198, 204, 202, 196, 199, 203,
203, 206, 205, 208, 207, 200, 206, 207, 201, 202,
209, 210, 211, 204, 205, 208, 212, 215, 212, 212,
210, 213, 213, 214, 211, 216, 214, 217, 218, 218,
209, 220, 220, 219, 215, 221, 217, 215, 219, 222,
216, 223, 224, 225, 226, 227, 223, 226, 225, 230,
221, 228, 229, 231, 227, 232, 228, 229, 232, 222,
237, 233, 224, 236, 238, 235, 240, 231, 241, 230,
239, 122, 236, 241, 232, 233, 234, 242, 234, 234,
235, 237, 246, 238, 243, 239, 240, 244, 234, 245,
234, 234, 234, 247, 249, 234, 246, 242, 247, 243,
248, 248, 244, 248, 250, 251, 255, 254, 252, 245,
253, 254, 253, 256, 249, 259, 257, 258, 120, 259,
250, 251, 252, 260, 255, 257, 258, 256, 261, 262,
264, 263, 260, 261, 268, 262, 263, 266, 257, 265,
265, 267, 266, 264, 269, 270, 268, 271, 271, 269,
267, 273, 273, 274, 275, 276, 277, 279, 280, 281,
282, 283, 275, 285, 276, 282, 270, 284, 277, 283,
286, 287, 284, 281, 274, 288, 288, 279, 280, 289,
291, 285, 293, 288, 290, 292, 292, 294, 294, 290,
287, 288, 286, 295, 290, 297, 298, 296, 299, 289,
291, 288, 302, 301, 303, 118, 300, 293, 295, 296,
297, 300, 301, 304, 306, 298, 307, 304, 305, 303,
299, 302, 308, 305, 309, 309, 306, 310, 311, 312,
313, 321, 314, 313, 307, 308, 315, 315, 317, 310,
311, 316, 316, 317, 312, 314, 318, 318, 319, 319,
320, 322, 321, 323, 324, 320, 322, 323, 325, 324,
326, 327, 325, 328, 329, 326, 343, 330, 328, 332,
330, 331, 331, 333, 332, 330, 336, 334, 329, 330,
334, 327, 333, 335, 343, 337, 338, 335, 339, 336,
337, 338, 340, 341, 339, 340, 341, 342, 344, 345,
346, 347, 342, 346, 345, 354, 347, 350, 349, 335,
348, 356, 344, 349, 348, 348, 350, 351, 352, 353,
351, 353, 352, 352, 355, 354, 356, 357, 355, 358,
359, 360, 360, 361, 362, 359, 363, 361, 364, 362,
365, 366, 367, 368, 358, 357, 369, 367, 366, 370,
368, 369, 363, 365, 370, 371, 372, 364, 373, 375,
374, 378, 376, 372, 375, 376, 377, 373, 379, 379,
377, 381, 383, 371, 374, 382, 381, 379, 384, 382,
385, 392, 378, 391, 393, 398, 384, 392, 393, 394,
383, 397, 391, 396, 394, 385, 395, 400, 396, 405,
395, 399, 399, 395, 400, 401, 401, 402, 395, 397,
398, 403, 403, 404, 395, 395, 404, 406, 407, 405,
408, 408, 402, 409, 410, 413, 407, 411, 411, 410,
412, 413, 414, 412, 415, 416, 406, 422, 409, 417,
414, 418, 415, 420, 417, 419, 419, 421, 418, 425,
429, 420, 421, 416, 424, 432, 422, 424, 426, 426,
430, 427, 431, 425, 427, 434, 431, 433, 436, 430,
439, 429, 427, 437, 432, 435, 433, 442, 437, 434,
438, 435, 436, 440, 438, 441, 443, 443, 444, 439,
441, 445, 446, 444, 445, 440, 447, 448, 442, 449,
450, 450, 448, 451, 451, 452, 454, 453, 455, 447,
446, 453, 456, 458, 459, 460, 462, 458, 464, 449,
452, 461, 468, 465, 464, 454, 456, 463, 465, 467,
460, 549, 455, 457, 468, 461, 457, 462, 457, 459,
472, 463, 457, 467, 457, 466, 466, 469, 469, 457,
470, 471, 549, 466, 472, 470, 473, 474, 474, 471,
476, 477, 478, 479, 477, 476, 482, 480, 481, 483,
484, 466, 480, 485, 483, 473, 479, 481, 486, 488,
688, 478, 688, 486, 489, 482, 490, 485, 491, 489,
484, 490, 492, 491, 488, 493, 493, 494, 496, 496,
499, 492, 494, 497, 497, 498, 500, 497, 498, 501,
506, 502, 501, 503, 504, 499, 502, 507, 503, 505,
504, 508, 505, 517, 509, 510, 500, 512, 506, 509,
510, 513, 511, 515, 508, 511, 513, 507, 512, 514,
516, 516, 517, 518, 514, 520, 519, 521, 515, 520,
522, 523, 524, 527, 528, 529, 530, 518, 519, 522,
533, 530, 534, 531, 536, 521, 532, 527, 531, 528,
523, 532, 537, 535, 533, 529, 534, 524, 535, 536,
538, 538, 539, 540, 541, 542, 543, 537, 544, 541,
545, 543, 540, 546, 545, 547, 548, 551, 550, 552,
539, 553, 554, 551, 542, 556, 558, 544, 546, 557,
547, 554, 116, 559, 552, 548, 550, 557, 559, 556,
560, 553, 561, 562, 560, 560, 558, 567, 563, 564,
564, 565, 562, 563, 568, 561, 565, 566, 566, 569,
570, 567, 571, 576, 569, 570, 572, 571, 573, 575,
572, 577, 568, 575, 578, 579, 582, 573, 576, 580,
581, 584, 573, 67, 573, 589, 573, 580, 578, 577,
583, 583, 585, 585, 579, 586, 586, 587, 581, 590,
584, 582, 587, 588, 588, 589, 591, 590, 592, 593,
594, 591, 604, 596, 597, 593, 598, 594, 596, 597,
599, 598, 600, 601, 602, 599, 592, 603, 603, 605,
607, 600, 604, 606, 608, 602, 611, 609, 606, 610,
610, 612, 601, 613, 614, 617, 618, 848, 621, 848,
607, 620, 605, 616, 608, 609, 611, 616, 616, 622,
619, 613, 623, 622, 618, 619, 612, 614, 621, 620,
624, 617, 625, 626, 628, 627, 629, 630, 626, 628,
631, 623, 627, 632, 624, 633, 630, 634, 635, 640,
633, 625, 634, 635, 629, 631, 636, 636, 638, 639,
643, 641, 645, 638, 632, 641, 641, 645, 640, 642,
642, 644, 646, 639, 647, 648, 649, 644, 650, 643,
651, 652, 653, 653, 654, 655, 657, 660, 654, 61,
656, 646, 650, 647, 648, 649, 652, 670, 655, 656,
659, 651, 658, 658, 661, 659, 657, 660, 663, 661,
666, 666, 668, 663, 669, 668, 671, 672, 673, 673,
674, 671, 670, 675, 675, 676, 677, 678, 680, 669,
679, 678, 672, 680, 682, 685, 683, 677, 684, 684,
674, 686, 687, 689, 691, 692, 690, 676, 689, 679,
683, 690, 682, 695, 693, 685, 696, 700, 695, 692,
693, 686, 687, 697, 691, 698, 697, 699, 699, 701,
698, 702, 703, 704, 704, 700, 702, 703, 705, 706,
707, 696, 708, 705, 709, 711, 710, 712, 713, 701,
711, 714, 717, 56, 715, 718, 716, 706, 709, 710,
707, 717, 708, 716, 717, 722, 723, 712, 713, 715,
721, 718, 714, 721, 722, 724, 726, 725, 727, 727,
728, 726, 729, 730, 724, 723, 725, 724, 731, 732,
733, 733, 734, 735, 737, 729, 743, 742, 738, 737,
728, 730, 731, 738, 739, 742, 740, 732, 734, 740,
739, 735, 744, 745, 743, 740, 746, 748, 749, 750,
751, 752, 749, 753, 750, 751, 752, 754, 755, 745,
757, 744, 753, 758, 746, 756, 756, 748, 762, 759,
761, 760, 763, 755, 757, 758, 760, 769, 763, 771,
754, 759, 761, 764, 764, 766, 762, 765, 765, 767,
767, 768, 770, 780, 766, 778, 768, 51, 769, 771,
772, 772, 773, 773, 774, 774, 775, 777, 783, 775,
779, 770, 777, 778, 782, 779, 781, 781, 780, 782,
783, 784, 783, 785, 786, 787, 789, 783, 788, 788,
790, 790, 793, 791, 795, 797, 792, 800, 794, 793,
798, 784, 800, 785, 786, 792, 787, 794, 796, 796,
801, 802, 789, 791, 804, 801, 798, 803, 805, 804,
795, 797, 806, 807, 803, 808, 809, 805, 810, 811,
813, 802, 809, 812, 815, 813, 814, 810, 807, 815,
814, 814, 806, 816, 808, 818, 817, 812, 819, 820,
811, 817, 819, 821, 822, 816, 825, 818, 823, 822,
824, 820, 861, 827, 861, 824, 827, 830, 825, 828,
828, 829, 829, 830, 831, 832, 833, 836, 821, 831,
823, 832, 838, 838, 839, 833, 840, 841, 845, 836,
846, 847, 847, 845, 838, 840, 841, 849, 849, 851,
852, 852, 839, 853, 854, 855, 856, 846, 857, 858,
860, 863, 862, 864, 864, 860, 854, 855, 856, 851,
863, 865, 866, 857, 853, 870, 867, 866, 867, 858,
862, 868, 869, 871, 872, 873, 868, 869, 874, 872,
873, 875, 877, 870, 876, 876, 882, 865, 880, 878,
879, 881, 883, 871, 877, 875, 884, 874, 878, 879,
880, 878, 884, 886, 881, 887, 882, 888, 883, 886,
889, 889, 890, 891, 891, 892, 888, 50, 893, 894,
895, 890, 893, 897, 894, 896, 896, 900, 901, 901,
887, 897, 903, 895, 892, 904, 900, 902, 902, 905,
904, 906, 907, 905, 903, 908, 909, 907, 910, 911,
912, 913, 915, 916, 928, 915, 906, 918, 918, 928,
917, 921, 912, 919, 919, 909, 916, 910, 920, 920,
911, 908, 913, 917, 921, 922, 922, 923, 923, 924,
925, 925, 926, 926, 929, 929, 930, 931, 931, 932,
933, 934, 935, 935, 934, 937, 933, 941, 924, 936,
936, 938, 938, 940, 940, 930, 943, 932, 935, 942,
942, 944, 945, 947, 937, 946, 944, 948, 943, 950,
946, 949, 953, 941, 950, 951, 948, 955, 947, 951,
949, 956, 956, 945, 957, 960, 955, 958, 958, 957,
961, 963, 953, 964, 963, 966, 958, 970, 964, 966,
960, 971, 961, 965, 965, 967, 968, 968, 967, 969,
972, 973, 974, 975, 969, 972, 973, 970, 974, 976,
977, 971, 994, 978, 976, 978, 981, 981, 977, 975,
984, 984, 987, 987, 989, 989, 991, 992, 992, 993,
995, 991, 997, 997, 994, 995, 1000, 1001, 1002, 1001,
1004, 1000, 1005, 1002, 1006, 993, 1003, 1003, 1009, 1007,
1008, 1012, 1004, 1010, 1010, 1011, 1006, 1014, 1013, 1015,
1005, 1007, 1008, 1017, 1011, 1016, 1018, 1019, 1009, 1022,
1014, 1018, 1019, 1020, 1020, 1023, 1023, 1012, 1013, 1016,
1026, 1017, 1027, 1015, 1025, 1025, 1028, 1022, 1030, 1026,
1029, 1031, 1031, 1032, 1033, 1034, 1035, 1039, 1032, 1040,
1027, 1043, 1040, 1042, 1028, 1046, 1029, 1030, 1050, 1033,
1041, 1041, 1045, 1045, 1034, 45, 1035, 1039, 1042, 1043,
1047, 1047, 1049, 1049, 1046, 1051, 1052, 1053, 1054, 1056,
1050, 1052, 1053, 1057, 1051, 1058, 1054, 1059, 1057, 40,
1058, 1060, 1060, 1062, 1056, 1061, 1061, 1067, 1062, 1063,
1063, 1066, 1059, 1064, 1064, 1069, 1066, 1070, 1069, 1067,
1071, 1072, 1072, 1073, 1075, 1076, 1070, 1077, 1077, 1071,
1078, 1080, 1073, 1079, 1083, 1087, 1080, 1082, 14, 1078,
1092, 1079, 1089, 1075, 1076, 1089, 1082, 1083, 1085, 1085,
1088, 1088, 1090, 1090, 1093, 1087, 1091, 1091, 1092, 1094,
1095, 1095, 1096, 1099, 1094, 1102, 1096, 1103, 1093, 1099,
1104, 1105, 1106, 1107, 1108, 1103, 1109, 1106, 1110, 1112,
1120, 1113, 1112, 13, 1102, 1109, 1116, 1105, 1115, 1104,
1114, 1114, 1115, 1107, 1118, 1116, 1119, 1123, 1110, 1113,
1108, 1125, 1123, 1118, 1127, 1120, 1124, 1124, 1119, 1127,
1125, 1128, 1129, 1130, 1131, 1131, 1132, 1133, 1134, 1135,
1128, 1136, 1137, 1142, 1135, 0, 1134, 1143, 1130, 1138,
1138, 1129, 1132, 1139, 1141, 1141, 1133, 1146, 1139, 1144,
1144, 1137, 1147, 1142, 1145, 1145, 1148, 1136, 1150, 1143,
1149, 1149, 1151, 1151, 1147, 1152, 1146, 1154, 1155, 1155,
1150, 1167, 1154, 1156, 1156, 1158, 1148, 1157, 1157, 1167,
1158, 1159, 1159, 1173, 1152, 1161, 1161, 1163, 1163, 1164,
1168, 1168, 1169, 1171, 1164, 1174, 1183, 1169, 1171, 1174,
1178, 1178, 1180, 1173, 1182, 1182, 1180, 1185, 1186, 1186,
1192, 1183, 1187, 1187, 1188, 1188, 1190, 1190, 1193, 1193,
1198, 1199, 1192, 1201, 1198, 1185, 1200, 1200, 1203, 1205,
1204, 0, 1201, 1206, 1206, 0, 0, 0, 0, 0,
0, 1199, 0, 1203, 1204, 0, 0, 0, 1205, 1209,
1209, 1209, 1209, 1209, 1209, 1209, 1210, 1210, 1210, 1210,
1210, 1210, 1210, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
1212, 1212, 1212, 1212, 1212, 1212, 1212, 1213, 1213, 1213,
1213, 1213, 1213, 1213, 1215, 1215, 0, 1215, 1215, 1215,
1215, 1216, 1216, 0, 0, 0, 1216, 1216, 1217, 1217,
0, 0, 1217, 0, 1217, 1218, 0, 0, 0, 0,
0, 1218, 1219, 1219, 0, 0, 0, 1219, 1219, 1220,
0, 0, 0, 0, 0, 1220, 1221, 1221, 0, 1221,
1221, 1221, 1221, 1222, 1222, 0, 1222, 1222, 1222, 1222,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208
} ;
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
/** avoid warning in about fwrite return value */
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
/** 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 103 "util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 1502 "<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 123 "util/configlexer.lex"
#line 1689 "<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 >= 1209 )
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] != 2431 );
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 124 "util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 126 "util/configlexer.lex"
{
/* note that flex makes the longest match and '.' is any but not nl */
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 129 "util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 130 "util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 131 "util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 132 "util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 133 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 134 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 135 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 136 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 137 "util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 138 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 139 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 140 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 141 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 142 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 143 "util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 144 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 145 "util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 146 "util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 147 "util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 148 "util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 149 "util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 150 "util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 151 "util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 152 "util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 153 "util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 154 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 155 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 156 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 157 "util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 158 "util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 159 "util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 160 "util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 161 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 162 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 163 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 164 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 165 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 166 "util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 167 "util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 168 "util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 169 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 170 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 171 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 172 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNNSEC_STRIPPED) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 173 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 174 "util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 175 "util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 176 "util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 177 "util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 178 "util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 179 "util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 180 "util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 181 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 182 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 183 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 184 "util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 185 "util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 186 "util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 187 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 188 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 189 "util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 190 "util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 191 "util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 192 "util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 193 "util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 194 "util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 195 "util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 196 "util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 197 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 198 "util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 199 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 200 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 201 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 202 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 203 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 204 "util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 205 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 206 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 207 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 208 "util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 209 "util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 210 "util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 211 "util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 213 "util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 214 "util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 215 "util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 216 "util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 217 "util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 218 "util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 219 "util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 220 "util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 221 "util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 222 "util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 223 "util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 224 "util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 225 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 226 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 227 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 228 "util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 229 "util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 230 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 231 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 232 "util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 233 "util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 234 "util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 108:
/* rule 108 can match eol */
YY_RULE_SETUP
#line 235 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 109:
YY_RULE_SETUP
#line 238 "util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 239 "util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 110:
YY_RULE_SETUP
#line 244 "util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 111:
/* rule 111 can match eol */
YY_RULE_SETUP
#line 245 "util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 247 "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_ARG;
}
YY_BREAK
/* Single Quoted strings. Strip leading and ending quotes */
case 113:
YY_RULE_SETUP
#line 259 "util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 260 "util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 114:
YY_RULE_SETUP
#line 265 "util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 115:
/* rule 115 can match eol */
YY_RULE_SETUP
#line 266 "util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 268 "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_ARG;
}
YY_BREAK
/* include: directive */
case 117:
YY_RULE_SETUP
#line 280 "util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 282 "util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 118:
YY_RULE_SETUP
#line 286 "util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 119:
/* rule 119 can match eol */
YY_RULE_SETUP
#line 287 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 120:
YY_RULE_SETUP
#line 288 "util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 289 "util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include(yytext);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 294 "util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 122:
YY_RULE_SETUP
#line 298 "util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 123:
/* rule 123 can match eol */
YY_RULE_SETUP
#line 299 "util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 301 "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 307 "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 125:
YY_RULE_SETUP
#line 317 "util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 321 "util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 127:
YY_RULE_SETUP
#line 325 "util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 128:
YY_RULE_SETUP
#line 329 "util/configlexer.lex"
ECHO;
YY_BREAK
#line 2510 "<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 >= 1209 )
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 >= 1209 )
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 == 1208);
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 329 "util/configlexer.lex"