2009-03-24 08:47:56 -04:00
|
|
|
#include "config.h"
|
2007-10-18 18:49:08 -04:00
|
|
|
#include "util/configyyrename.h"
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#line 3 "<stdout>"
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_INT_ALIGNED short int
|
|
|
|
|
|
|
|
|
|
/* A lexical scanner generated by flex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define FLEX_SCANNER
|
|
|
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
|
|
|
#define YY_FLEX_MINOR_VERSION 5
|
2009-03-24 08:53:25 -04:00
|
|
|
#define YY_FLEX_SUBMINOR_VERSION 35
|
2008-06-09 05:34:40 -04:00
|
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
|
|
|
#define FLEX_BETA
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* First, we deal with platform-specific or compiler-specific issues. */
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* begin standard C headers. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <stdio.h>
|
2008-06-09 05:34:40 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdlib.h>
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* end standard C headers. */
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* flex integer type definitions */
|
|
|
|
|
|
|
|
|
|
#ifndef FLEXINT_H
|
|
|
|
|
#define FLEXINT_H
|
|
|
|
|
|
|
|
|
|
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
/* 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
|
2008-02-29 05:59:26 -05:00
|
|
|
#endif
|
2007-10-19 04:37:27 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#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;
|
2009-03-13 05:27:37 -04:00
|
|
|
#endif /* ! C99 */
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* ! FLEXINT_H */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifdef __cplusplus
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* The "const" storage-class-modifier is valid. */
|
|
|
|
|
#define YY_USE_CONST
|
|
|
|
|
|
|
|
|
|
#else /* ! __cplusplus */
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
/* C99 requires __STDC__ to be defined as 1. */
|
|
|
|
|
#if defined (__STDC__)
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define YY_USE_CONST
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
#endif /* defined (__STDC__) */
|
2007-10-18 18:49:08 -04:00
|
|
|
#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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
#define BEGIN (yy_start) = 1 + 2 *
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_START (((yy_start) - 1) / 2)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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". */
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_NEW_FILE yyrestart(yyin )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
|
|
|
|
|
|
/* Size of default input buffer. */
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_BUF_SIZE
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_BUF_SIZE 16384
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
extern int yyleng;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern FILE *yyin, *yyout;
|
|
|
|
|
|
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
|
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
|
|
|
#define EOB_ACT_LAST_MATCH 2
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_LESS_LINENO(n)
|
|
|
|
|
|
|
|
|
|
/* Return all but the first "n" matched characters back to the input stream. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
2008-06-09 05:34:40 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
|
|
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
|
|
|
*yy_cp = (yy_hold_char); \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
|
|
|
} \
|
|
|
|
|
while ( 0 )
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define unput(c) yyunput( c, (yytext_ptr) )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
2009-03-24 08:53:25 -04:00
|
|
|
typedef size_t yy_size_t;
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
|
|
|
|
#define YY_STRUCT_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
int yy_bs_lineno; /**< The line count. */
|
|
|
|
|
int yy_bs_column; /**< The column count. */
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
|
|
|
* end of it.
|
|
|
|
|
*/
|
|
|
|
|
int yy_fill_buffer;
|
|
|
|
|
|
|
|
|
|
int yy_buffer_status;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#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
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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".
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* Returns the top of the stack, or NULL.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
|
|
|
|
|
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
|
|
|
|
|
: NULL)
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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)]
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_init = 0; /* whether we need to initialize */
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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 );
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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 );
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void *yyalloc (yy_size_t );
|
|
|
|
|
void *yyrealloc (void *,yy_size_t );
|
|
|
|
|
void yyfree (void * );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
|
|
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
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; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
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; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
|
|
|
|
|
|
/* Begin user sect3 */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
typedef unsigned char YY_CHAR;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef int yy_state_type;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
extern int yylineno;
|
|
|
|
|
|
|
|
|
|
int yylineno = 1;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern char *yytext;
|
|
|
|
|
#define yytext_ptr yytext
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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[] );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
|
|
|
* corresponding action - sets up yytext.
|
|
|
|
|
*/
|
|
|
|
|
#define YY_DO_BEFORE_ACTION \
|
2008-06-09 05:34:40 -04:00
|
|
|
(yytext_ptr) = yy_bp; \
|
|
|
|
|
(yytext_ptr) -= (yy_more_len); \
|
|
|
|
|
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
|
|
|
|
|
(yy_hold_char) = *yy_cp; \
|
2007-10-18 18:49:08 -04:00
|
|
|
*yy_cp = '\0'; \
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
#define YY_NUM_RULES 138
|
|
|
|
|
#define YY_END_OF_BUFFER 139
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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;
|
|
|
|
|
};
|
2011-11-08 05:56:42 -05:00
|
|
|
static yyconst flex_int16_t yy_accept[1303] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2011-11-08 05:56:42 -05:00
|
|
|
1, 1, 120, 120, 124, 124, 128, 128, 132, 132,
|
|
|
|
|
1, 1, 139, 136, 1, 118, 118, 137, 2, 137,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 120,
|
|
|
|
|
121, 121, 122, 137, 124, 125, 125, 126, 137, 131,
|
|
|
|
|
128, 129, 129, 130, 137, 132, 133, 133, 134, 137,
|
|
|
|
|
135, 119, 2, 123, 137, 135, 136, 0, 1, 2,
|
|
|
|
|
2, 2, 2, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 120, 0,
|
|
|
|
|
124, 0, 131, 0, 128, 132, 0, 135, 0, 2,
|
|
|
|
|
2, 135, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 135, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 135, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 62, 136, 136, 136, 136, 136, 6,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
135, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 135, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 27, 136, 136, 136, 136, 136, 12,
|
|
|
|
|
13, 136, 15, 14, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 116, 136,
|
|
|
|
|
136, 136, 136, 3, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 135, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 127, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
30, 136, 136, 136, 136, 136, 136, 136, 31, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 75, 127, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 74, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 60, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 20, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 28, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 29, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 22, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 25, 26, 136, 136, 136, 63, 64,
|
|
|
|
|
136, 61, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 5, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 77,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 102, 101, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 32, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 65, 136, 136, 136, 136, 136, 136, 98,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 51,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 100, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 4, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 95, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 110, 96, 136, 21, 136, 136, 136,
|
|
|
|
|
136, 67, 68, 66, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
73, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
97, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 59, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 17, 136, 136, 136, 16,
|
|
|
|
|
136, 82, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 39, 40, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 72, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 76, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 115, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 86, 136, 90, 136, 136, 136, 136, 71,
|
|
|
|
|
136, 136, 108, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 89, 136, 136, 136,
|
|
|
|
|
136, 41, 42, 136, 47, 91, 136, 103, 99, 136,
|
|
|
|
|
35, 136, 93, 136, 136, 136, 136, 136, 7, 136,
|
|
|
|
|
58, 107, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
136, 136, 136, 136, 136, 78, 136, 136, 117, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 92, 34, 36, 136, 136, 136, 136, 136, 57,
|
|
|
|
|
136, 136, 136, 111, 18, 19, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 55, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 113, 136, 136, 33, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 11, 136, 136, 136, 136, 136, 136, 10,
|
|
|
|
|
136, 136, 37, 136, 112, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 85, 84, 136, 114, 109,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
43, 136, 136, 136, 136, 136, 38, 136, 136, 136,
|
|
|
|
|
79, 81, 136, 136, 136, 83, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
23, 136, 136, 136, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 136, 136, 106, 136, 136, 136, 136, 136, 136,
|
|
|
|
|
136, 24, 136, 9, 136, 136, 104, 48, 136, 136,
|
|
|
|
|
136, 88, 136, 69, 136, 136, 136, 50, 54, 49,
|
|
|
|
|
136, 44, 136, 8, 136, 136, 87, 136, 136, 136,
|
|
|
|
|
53, 136, 45, 136, 105, 136, 136, 80, 70, 52,
|
|
|
|
|
46, 136, 136, 136, 136, 56, 136, 136, 136, 136,
|
|
|
|
|
|
|
|
|
|
94, 0
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static yyconst flex_int32_t yy_ec[256] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 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,
|
2007-11-28 03:10:45 -05:00
|
|
|
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,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2007-11-28 03:10:45 -05:00
|
|
|
1, 13, 1, 1, 1, 1, 14, 15, 16, 17,
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-10-06 05:28:50 -04:00
|
|
|
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,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1
|
|
|
|
|
} ;
|
|
|
|
|
|
2008-10-06 05:28:50 -04:00
|
|
|
static yyconst flex_int32_t yy_meta[40] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-11-30 08:07:39 -05:00
|
|
|
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
|
|
|
|
|
1, 7, 1, 1, 1, 1, 1, 1, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2008-10-06 05:28:50 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
static yyconst flex_int16_t yy_base[1317] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2008-10-06 05:28:50 -04:00
|
|
|
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
|
2011-11-08 05:56:42 -05:00
|
|
|
87, 108, 2502, 2488, 50, 2605, 2605, 2605, 129, 94,
|
2009-11-30 08:07:39 -05:00
|
|
|
70, 104, 122, 90, 92, 115, 126, 95, 84, 132,
|
2011-11-08 05:56:42 -05:00
|
|
|
135, 138, 50, 142, 148, 156, 169, 164, 144, 2487,
|
|
|
|
|
2605, 2605, 2605, 70, 2486, 2605, 2605, 2605, 42, 2458,
|
|
|
|
|
2079, 2605, 2605, 2605, 188, 1633, 2605, 2605, 2605, 182,
|
|
|
|
|
1481, 2605, 197, 2605, 201, 111, 1314, 207, 120, 0,
|
2011-10-31 10:48:48 -04:00
|
|
|
218, 0, 0, 103, 158, 165, 152, 184, 194, 203,
|
|
|
|
|
204, 146, 216, 200, 205, 213, 219, 220, 136, 221,
|
|
|
|
|
227, 223, 234, 238, 228, 236, 240, 244, 248, 226,
|
|
|
|
|
|
|
|
|
|
250, 249, 255, 252, 256, 258, 257, 262, 268, 265,
|
2011-11-08 05:56:42 -05:00
|
|
|
270, 266, 274, 275, 49, 278, 281, 279, 1053, 294,
|
|
|
|
|
804, 298, 772, 309, 744, 397, 296, 357, 313, 317,
|
2011-10-31 10:48:48 -04:00
|
|
|
0, 310, 294, 319, 312, 315, 316, 318, 325, 321,
|
|
|
|
|
329, 339, 332, 322, 330, 328, 336, 337, 344, 334,
|
|
|
|
|
350, 345, 347, 346, 354, 361, 367, 369, 355, 377,
|
|
|
|
|
373, 379, 385, 381, 383, 371, 384, 382, 386, 387,
|
|
|
|
|
392, 393, 395, 396, 405, 399, 401, 406, 416, 407,
|
|
|
|
|
408, 423, 425, 427, 410, 421, 424, 433, 430, 434,
|
|
|
|
|
436, 431, 442, 437, 443, 447, 450, 448, 452, 453,
|
|
|
|
|
|
|
|
|
|
460, 457, 458, 461, 469, 467, 468, 470, 282, 472,
|
|
|
|
|
474, 476, 480, 478, 477, 479, 484, 482, 495, 501,
|
|
|
|
|
502, 490, 503, 504, 509, 506, 514, 512, 516, 522,
|
|
|
|
|
519, 520, 521, 523, 526, 529, 533, 530, 531, 534,
|
2011-11-08 05:56:42 -05:00
|
|
|
532, 540, 541, 560, 549, 544, 548, 551, 550, 557,
|
|
|
|
|
561, 558, 566, 567, 568, 571, 584, 593, 580, 583,
|
|
|
|
|
586, 573, 483, 592, 594, 595, 597, 598, 603, 601,
|
|
|
|
|
604, 615, 611, 616, 614, 622, 625, 618, 624, 626,
|
|
|
|
|
629, 628, 630, 2605, 635, 632, 637, 641, 640, 2605,
|
|
|
|
|
642, 643, 644, 646, 647, 659, 648, 656, 657, 660,
|
|
|
|
|
|
|
|
|
|
664, 665, 667, 671, 668, 673, 685, 674, 676, 670,
|
|
|
|
|
682, 684, 691, 692, 693, 696, 700, 701, 698, 704,
|
|
|
|
|
702, 713, 709, 711, 714, 716, 720, 722, 723, 725,
|
|
|
|
|
724, 731, 736, 744, 741, 743, 750, 726, 746, 748,
|
|
|
|
|
754, 753, 755, 756, 763, 759, 761, 762, 766, 773,
|
|
|
|
|
769, 777, 779, 781, 771, 782, 790, 788, 789, 793,
|
|
|
|
|
795, 791, 797, 798, 799, 801, 813, 815, 807, 814,
|
|
|
|
|
823, 819, 824, 820, 825, 827, 828, 829, 830, 831,
|
|
|
|
|
832, 839, 835, 836, 840, 850, 841, 842, 851, 852,
|
|
|
|
|
853, 856, 860, 862, 866, 868, 869, 871, 872, 870,
|
|
|
|
|
|
|
|
|
|
876, 874, 881, 2605, 888, 887, 879, 886, 889, 2605,
|
|
|
|
|
2605, 892, 2605, 2605, 893, 899, 896, 903, 910, 901,
|
|
|
|
|
907, 908, 913, 919, 920, 923, 911, 930, 932, 921,
|
|
|
|
|
915, 936, 937, 939, 940, 942, 946, 948, 943, 952,
|
|
|
|
|
953, 950, 957, 956, 965, 959, 971, 955, 2605, 969,
|
|
|
|
|
970, 975, 977, 2605, 973, 978, 981, 982, 983, 986,
|
|
|
|
|
985, 979, 987, 991, 1000, 990, 993, 997, 1008, 1002,
|
|
|
|
|
1011, 1009, 1013, 1015, 1022, 1024, 1018, 1019, 1025, 1026,
|
|
|
|
|
1029, 1031, 1033, 1035, 1037, 1038, 1040, 1063, 1041, 1042,
|
|
|
|
|
1043, 1047, 1044, 1050, 1049, 1057, 1069, 1071, 1059, 1075,
|
|
|
|
|
|
|
|
|
|
1080, 1078, 1082, 1084, 1085, 1089, 1092, 2605, 1091, 1094,
|
|
|
|
|
1093, 1100, 1101, 1051, 1099, 1102, 1103, 1105, 1108, 1114,
|
|
|
|
|
2605, 1110, 1111, 1115, 1121, 1122, 1127, 1129, 2605, 1135,
|
|
|
|
|
1132, 1137, 1138, 1139, 1141, 1142, 1143, 1145, 1146, 1150,
|
|
|
|
|
1154, 1155, 1157, 1156, 1158, 1162, 1161, 1164, 1165, 1167,
|
|
|
|
|
1168, 1176, 1177, 1180, 1182, 1184, 1185, 1186, 1191, 1188,
|
|
|
|
|
1192, 1189, 1190, 2605, 181, 1193, 1194, 1196, 1202, 1205,
|
|
|
|
|
1212, 1204, 1210, 1214, 1211, 1213, 1221, 1222, 1223, 1225,
|
|
|
|
|
1227, 1229, 1231, 1233, 1236, 1238, 1235, 1239, 1241, 1242,
|
|
|
|
|
1243, 1244, 1245, 1248, 2605, 1261, 1252, 1255, 1254, 1264,
|
|
|
|
|
|
|
|
|
|
1272, 1268, 1270, 1278, 1275, 1277, 1280, 1283, 1286, 1287,
|
|
|
|
|
1293, 1294, 1290, 1292, 1297, 1291, 2605, 1299, 1301, 1304,
|
|
|
|
|
1298, 1307, 1309, 1310, 1308, 1319, 1321, 2605, 1324, 1325,
|
|
|
|
|
1323, 1332, 1335, 1336, 1338, 1329, 1339, 1340, 1345, 1343,
|
|
|
|
|
1346, 1347, 2605, 1356, 1358, 1355, 1362, 1359, 1363, 1364,
|
|
|
|
|
1366, 1367, 1369, 1376, 1370, 1373, 1377, 1378, 1374, 1372,
|
|
|
|
|
1380, 1381, 2605, 1389, 1383, 1385, 1386, 1396, 1399, 1401,
|
|
|
|
|
1402, 1406, 1400, 1407, 1408, 1410, 1411, 1412, 1418, 1422,
|
|
|
|
|
1423, 1424, 1428, 1436, 1439, 1440, 2605, 1438, 1432, 1425,
|
|
|
|
|
1452, 1449, 1435, 1442, 1450, 1458, 1455, 1457, 1459, 1460,
|
|
|
|
|
|
|
|
|
|
1463, 1462, 1465, 1466, 1464, 1468, 1471, 1473, 1470, 1486,
|
|
|
|
|
1487, 1475, 1493, 2605, 2605, 1489, 1496, 1503, 2605, 2605,
|
|
|
|
|
1500, 2605, 1501, 1505, 1502, 1491, 1507, 1508, 1510, 1511,
|
|
|
|
|
1513, 1515, 1518, 1520, 1519, 1521, 2605, 1522, 1525, 1527,
|
|
|
|
|
1530, 1532, 1533, 1534, 1541, 1547, 1535, 1543, 1545, 2605,
|
|
|
|
|
1544, 1548, 1556, 1563, 1560, 1554, 1562, 1564, 1565, 1566,
|
|
|
|
|
1568, 1570, 1574, 1576, 1577, 1579, 1578, 1581, 1585, 1583,
|
|
|
|
|
1584, 1586, 1587, 1591, 1599, 1589, 2605, 2605, 1601, 1606,
|
|
|
|
|
1610, 1595, 1612, 1613, 1620, 1617, 1618, 1623, 1625, 1626,
|
|
|
|
|
1627, 1628, 1629, 1631, 1632, 2605, 1639, 1642, 1635, 1649,
|
|
|
|
|
|
|
|
|
|
1645, 1648, 2605, 1653, 1654, 1655, 1656, 1660, 1659, 2605,
|
|
|
|
|
1662, 1664, 1665, 1666, 1669, 1663, 1678, 1679, 1681, 1683,
|
|
|
|
|
1684, 1686, 1690, 1687, 1688, 1689, 1692, 1703, 1700, 1705,
|
|
|
|
|
1712, 1693, 1708, 1710, 1716, 1718, 1720, 1726, 1722, 2605,
|
|
|
|
|
1728, 1711, 1736, 1713, 1733, 1734, 1742, 1739, 1724, 1740,
|
|
|
|
|
1741, 1743, 1746, 1747, 1748, 1750, 2605, 1754, 1752, 1756,
|
|
|
|
|
1755, 1766, 1757, 1762, 2605, 1769, 1776, 1768, 1772, 1785,
|
|
|
|
|
1775, 1777, 1782, 1789, 1787, 1790, 1791, 1792, 1794, 1795,
|
|
|
|
|
1797, 1810, 1799, 1814, 1812, 1815, 1822, 1818, 1819, 1820,
|
|
|
|
|
1801, 1829, 1821, 1833, 1825, 2605, 1831, 1836, 1839, 1840,
|
|
|
|
|
|
|
|
|
|
1842, 1844, 1845, 2605, 2605, 1841, 2605, 1848, 1851, 1852,
|
|
|
|
|
1855, 2605, 2605, 2605, 1856, 1862, 1858, 1865, 1871, 1868,
|
|
|
|
|
2605, 1872, 1863, 1876, 1859, 1874, 1878, 1881, 1882, 1884,
|
|
|
|
|
2605, 1887, 1889, 1885, 1896, 1895, 1888, 1901, 1898, 1902,
|
|
|
|
|
1908, 1899, 1909, 1915, 1911, 2605, 1912, 1918, 1920, 1921,
|
|
|
|
|
1925, 1926, 1924, 1922, 1923, 2605, 1930, 1938, 1939, 2605,
|
|
|
|
|
1940, 2605, 1941, 1942, 1944, 1949, 1945, 1951, 1952, 1956,
|
|
|
|
|
1957, 1959, 1964, 1961, 2605, 2605, 1965, 1976, 1977, 1968,
|
|
|
|
|
1979, 1966, 1973, 1981, 1982, 1983, 1985, 1987, 1989, 1991,
|
|
|
|
|
1990, 2605, 1993, 1994, 1999, 2000, 1995, 2005, 2015, 2007,
|
|
|
|
|
|
|
|
|
|
2017, 2019, 2021, 2023, 2025, 2605, 2026, 2028, 2029, 2033,
|
|
|
|
|
2034, 2030, 1998, 2037, 2042, 2035, 2044, 2605, 2046, 2039,
|
|
|
|
|
2049, 2047, 2051, 2055, 2057, 2058, 2061, 2060, 2062, 2063,
|
|
|
|
|
2069, 2073, 2605, 2067, 2605, 2074, 2081, 2089, 2085, 2605,
|
|
|
|
|
2076, 2078, 2605, 2092, 2088, 2097, 2098, 2100, 2105, 2101,
|
|
|
|
|
2099, 2107, 2108, 2109, 2115, 2112, 2605, 2113, 2116, 2117,
|
|
|
|
|
2120, 2605, 2605, 2123, 2605, 2605, 2127, 2605, 2605, 2131,
|
|
|
|
|
2605, 2133, 2605, 2139, 2135, 2137, 2138, 2140, 2605, 2142,
|
|
|
|
|
2605, 2605, 2143, 2144, 2147, 2150, 2155, 2157, 2151, 2158,
|
|
|
|
|
2159, 2161, 2162, 2164, 2166, 2168, 2167, 2169, 2170, 2172,
|
|
|
|
|
|
|
|
|
|
2178, 2179, 2175, 2181, 2188, 2605, 2182, 2190, 2605, 2195,
|
|
|
|
|
2198, 2199, 2185, 2201, 2202, 2204, 2206, 2213, 2209, 2210,
|
|
|
|
|
2211, 2605, 2605, 2605, 2212, 2217, 2216, 2221, 2222, 2605,
|
|
|
|
|
2226, 2227, 2234, 2605, 2605, 2605, 2237, 2228, 2230, 2242,
|
|
|
|
|
2243, 2241, 2605, 2244, 2251, 2252, 2245, 2254, 2262, 2263,
|
|
|
|
|
2265, 2267, 2605, 2268, 2269, 2605, 2271, 2270, 2275, 2276,
|
|
|
|
|
2277, 2279, 2605, 2272, 2280, 2287, 2289, 2282, 2292, 2605,
|
|
|
|
|
2293, 2294, 2605, 2296, 2605, 2235, 2300, 2303, 2305, 2309,
|
|
|
|
|
2310, 2311, 2317, 2314, 2315, 2605, 2605, 2316, 2605, 2605,
|
|
|
|
|
2318, 2321, 2320, 2323, 2326, 2327, 2330, 2331, 2334, 2333,
|
|
|
|
|
|
|
|
|
|
2605, 2335, 2336, 2341, 2344, 2346, 2605, 2347, 2349, 2345,
|
|
|
|
|
2605, 2605, 2358, 2351, 2359, 2605, 2360, 2362, 2364, 2366,
|
|
|
|
|
2373, 2367, 2369, 2374, 2378, 2375, 2377, 2379, 2388, 2384,
|
|
|
|
|
2605, 2391, 2382, 2392, 2395, 2397, 2399, 2400, 2401, 2405,
|
|
|
|
|
2407, 2409, 2406, 2605, 2410, 2411, 2423, 2427, 2429, 2415,
|
|
|
|
|
2431, 2605, 2432, 2605, 2435, 2436, 2605, 2605, 2437, 2439,
|
|
|
|
|
2442, 2605, 2443, 2605, 2440, 2450, 2413, 2605, 2605, 2605,
|
|
|
|
|
2452, 2605, 2453, 2605, 2455, 2444, 2605, 2446, 2462, 2466,
|
|
|
|
|
2605, 2468, 2605, 2470, 2605, 2463, 2471, 2605, 2605, 2605,
|
|
|
|
|
2605, 2473, 2456, 2479, 2474, 2605, 2480, 2482, 2481, 2485,
|
|
|
|
|
|
|
|
|
|
2605, 2605, 2513, 2520, 2527, 2534, 2541, 94, 2548, 2555,
|
|
|
|
|
2562, 2569, 2576, 2583, 2590, 2597
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
static yyconst flex_int16_t yy_def[1317] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2011-11-08 05:56:42 -05:00
|
|
|
1302, 1, 1303, 1303, 1304, 1304, 1305, 1305, 1306, 1306,
|
|
|
|
|
1307, 1307, 1302, 1308, 1302, 1302, 1302, 1302, 1309, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1310,
|
|
|
|
|
1302, 1302, 1302, 1310, 1311, 1302, 1302, 1302, 1311, 1312,
|
|
|
|
|
1302, 1302, 1302, 1302, 1312, 1313, 1302, 1302, 1302, 1313,
|
|
|
|
|
1314, 1302, 1315, 1302, 1314, 1314, 1308, 1308, 1302, 1316,
|
|
|
|
|
1309, 1316, 1309, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1310, 1310,
|
|
|
|
|
1311, 1311, 1312, 1312, 1302, 1313, 1313, 1314, 1314, 1315,
|
|
|
|
|
1315, 1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1314, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1314, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1314, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1302, 1308, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
|
|
|
|
|
1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1302, 1314, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1302, 1302, 1308, 1308, 1308, 1302, 1302,
|
|
|
|
|
1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1302, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1302, 1302, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1302, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1302, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1308, 1302, 1302, 1308, 1302, 1302, 1308, 1302, 1302, 1308,
|
|
|
|
|
1302, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
|
|
|
|
|
1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1302, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
|
|
|
|
|
1308, 1308, 1302, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1302, 1302, 1308, 1302, 1302,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1302, 1302, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
|
|
|
|
|
1308, 1302, 1308, 1302, 1308, 1308, 1302, 1302, 1308, 1308,
|
|
|
|
|
1308, 1302, 1308, 1302, 1308, 1308, 1308, 1302, 1302, 1302,
|
|
|
|
|
1308, 1302, 1308, 1302, 1308, 1308, 1302, 1308, 1308, 1308,
|
|
|
|
|
1302, 1308, 1302, 1308, 1302, 1308, 1308, 1302, 1302, 1302,
|
|
|
|
|
1302, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
|
|
|
|
|
|
|
|
|
|
1302, 0, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
static yyconst flex_int16_t yy_nxt[2645] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-02-06 05:19:16 -05:00
|
|
|
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,
|
2011-10-31 10:48:48 -04:00
|
|
|
42, 43, 41, 42, 43, 121, 46, 47, 121, 44,
|
2009-02-27 04:38:11 -05:00
|
|
|
48, 69, 44, 46, 47, 70, 49, 48, 57, 58,
|
2009-11-30 08:07:39 -05:00
|
|
|
59, 68, 68, 49, 51, 52, 53, 54, 60, 18,
|
2011-10-31 10:48:48 -04:00
|
|
|
57, 58, 59, 119, 119, 55, 51, 52, 53, 54,
|
|
|
|
|
60, 18, 68, 100, 181, 74, 75, 55, 15, 16,
|
2009-11-30 08:07:39 -05:00
|
|
|
17, 62, 63, 64, 67, 67, 68, 67, 67, 65,
|
|
|
|
|
|
2011-05-10 07:20:14 -04:00
|
|
|
67, 93, 68, 76, 68, 67, 84, 68, 66, 15,
|
2011-10-31 10:48:48 -04:00
|
|
|
16, 17, 62, 63, 64, 68, 68, 77, 133, 86,
|
|
|
|
|
65, 69, 92, 129, 78, 70, 85, 68, 87, 66,
|
|
|
|
|
72, 79, 72, 72, 68, 72, 88, 132, 68, 80,
|
|
|
|
|
72, 73, 89, 81, 68, 90, 82, 68, 68, 83,
|
|
|
|
|
68, 97, 91, 149, 68, 98, 68, 117, 68, 94,
|
|
|
|
|
68, 118, 95, 101, 68, 105, 96, 136, 68, 102,
|
|
|
|
|
68, 99, 103, 108, 134, 106, 68, 68, 107, 104,
|
|
|
|
|
141, 68, 112, 109, 113, 126, 126, 110, 111, 123,
|
|
|
|
|
115, 123, 123, 129, 123, 116, 68, 135, 72, 114,
|
|
|
|
|
|
|
|
|
|
72, 72, 128, 72, 128, 128, 68, 128, 67, 131,
|
|
|
|
|
67, 67, 68, 67, 137, 68, 68, 68, 67, 72,
|
|
|
|
|
138, 72, 72, 142, 72, 68, 144, 139, 68, 72,
|
|
|
|
|
73, 68, 68, 68, 140, 68, 148, 145, 68, 68,
|
|
|
|
|
68, 143, 151, 146, 159, 152, 68, 150, 68, 147,
|
|
|
|
|
68, 155, 68, 157, 154, 160, 68, 158, 164, 153,
|
|
|
|
|
68, 68, 68, 162, 68, 161, 165, 68, 68, 68,
|
|
|
|
|
68, 156, 167, 163, 68, 174, 168, 68, 68, 166,
|
|
|
|
|
68, 170, 68, 176, 169, 171, 68, 68, 172, 175,
|
|
|
|
|
68, 68, 173, 68, 68, 182, 178, 119, 119, 126,
|
|
|
|
|
|
|
|
|
|
126, 121, 179, 177, 121, 183, 68, 271, 180, 184,
|
|
|
|
|
123, 186, 123, 123, 128, 123, 128, 128, 72, 128,
|
|
|
|
|
72, 72, 129, 72, 68, 185, 187, 68, 68, 131,
|
|
|
|
|
68, 68, 192, 68, 68, 189, 194, 68, 193, 188,
|
|
|
|
|
68, 68, 68, 190, 68, 200, 68, 202, 68, 68,
|
|
|
|
|
191, 68, 204, 201, 205, 195, 68, 68, 68, 68,
|
|
|
|
|
196, 207, 68, 203, 211, 197, 68, 68, 214, 129,
|
|
|
|
|
206, 198, 199, 68, 208, 210, 216, 209, 212, 68,
|
|
|
|
|
215, 68, 213, 68, 219, 68, 221, 217, 218, 68,
|
|
|
|
|
220, 68, 222, 68, 68, 68, 68, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
223, 224, 226, 225, 68, 68, 228, 68, 68, 127,
|
|
|
|
|
231, 68, 235, 68, 229, 237, 227, 68, 68, 68,
|
|
|
|
|
68, 241, 129, 239, 230, 238, 233, 234, 68, 232,
|
|
|
|
|
242, 236, 244, 68, 247, 68, 68, 68, 240, 68,
|
|
|
|
|
250, 245, 68, 68, 249, 68, 68, 251, 68, 68,
|
|
|
|
|
256, 254, 248, 243, 68, 68, 257, 255, 246, 68,
|
|
|
|
|
68, 252, 68, 260, 68, 68, 253, 263, 261, 68,
|
|
|
|
|
68, 265, 68, 68, 262, 258, 267, 259, 266, 68,
|
|
|
|
|
68, 68, 68, 264, 68, 272, 68, 275, 68, 68,
|
2011-11-08 05:56:42 -05:00
|
|
|
68, 68, 68, 276, 68, 68, 68, 338, 269, 268,
|
2011-10-31 10:48:48 -04:00
|
|
|
|
|
|
|
|
274, 277, 68, 270, 273, 280, 281, 68, 278, 282,
|
|
|
|
|
283, 279, 284, 68, 68, 68, 68, 285, 68, 286,
|
|
|
|
|
290, 68, 287, 291, 68, 289, 68, 292, 68, 295,
|
|
|
|
|
288, 68, 68, 68, 68, 68, 298, 297, 68, 293,
|
2011-11-08 05:56:42 -05:00
|
|
|
304, 68, 68, 68, 68, 68, 68, 305, 294, 299,
|
|
|
|
|
303, 296, 68, 68, 300, 309, 68, 301, 308, 302,
|
|
|
|
|
129, 68, 68, 68, 306, 320, 307, 311, 325, 68,
|
|
|
|
|
68, 310, 68, 68, 312, 313, 319, 323, 68, 68,
|
|
|
|
|
68, 321, 322, 68, 314, 68, 315, 316, 317, 324,
|
|
|
|
|
326, 318, 68, 327, 328, 68, 68, 330, 68, 337,
|
|
|
|
|
|
|
|
|
|
329, 331, 332, 333, 68, 68, 68, 68, 339, 68,
|
|
|
|
|
68, 335, 334, 68, 336, 68, 68, 346, 342, 344,
|
|
|
|
|
345, 341, 348, 68, 340, 347, 68, 68, 68, 349,
|
|
|
|
|
68, 343, 353, 350, 68, 352, 68, 68, 68, 351,
|
|
|
|
|
68, 68, 68, 359, 68, 355, 357, 68, 360, 68,
|
|
|
|
|
356, 354, 68, 68, 68, 68, 68, 362, 68, 68,
|
|
|
|
|
68, 358, 363, 368, 364, 361, 370, 369, 68, 68,
|
|
|
|
|
367, 68, 68, 373, 365, 366, 68, 68, 371, 68,
|
|
|
|
|
68, 375, 68, 68, 378, 68, 68, 374, 68, 387,
|
|
|
|
|
372, 379, 384, 376, 68, 389, 68, 68, 377, 380,
|
|
|
|
|
|
|
|
|
|
382, 383, 385, 68, 68, 68, 386, 388, 68, 381,
|
|
|
|
|
68, 390, 68, 68, 129, 391, 68, 395, 399, 392,
|
|
|
|
|
400, 68, 396, 68, 393, 68, 68, 404, 68, 397,
|
|
|
|
|
394, 398, 68, 401, 68, 68, 68, 68, 68, 403,
|
|
|
|
|
408, 402, 410, 68, 405, 125, 406, 411, 68, 409,
|
|
|
|
|
407, 412, 413, 68, 414, 68, 68, 415, 68, 416,
|
|
|
|
|
68, 419, 68, 417, 418, 68, 68, 68, 68, 420,
|
|
|
|
|
423, 68, 421, 68, 68, 68, 424, 426, 68, 429,
|
|
|
|
|
430, 68, 427, 68, 124, 68, 428, 425, 422, 68,
|
|
|
|
|
431, 68, 432, 68, 68, 433, 436, 438, 435, 437,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 68, 440, 68, 439, 68, 441, 68,
|
|
|
|
|
68, 68, 442, 68, 446, 445, 122, 434, 447, 68,
|
|
|
|
|
448, 443, 450, 444, 449, 68, 68, 68, 451, 452,
|
|
|
|
|
453, 68, 68, 455, 454, 68, 68, 68, 456, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 461, 465, 68, 68, 467,
|
|
|
|
|
457, 68, 68, 68, 68, 458, 468, 462, 459, 464,
|
|
|
|
|
460, 463, 68, 68, 68, 68, 466, 469, 68, 470,
|
|
|
|
|
474, 473, 68, 471, 68, 475, 472, 476, 68, 477,
|
|
|
|
|
68, 68, 68, 68, 129, 483, 68, 479, 68, 482,
|
|
|
|
|
480, 68, 484, 68, 486, 488, 478, 481, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 487, 489, 68, 68, 491, 485, 68, 490,
|
|
|
|
|
497, 68, 496, 68, 494, 68, 492, 495, 504, 68,
|
|
|
|
|
68, 493, 68, 68, 498, 68, 499, 68, 507, 500,
|
|
|
|
|
508, 68, 68, 68, 501, 68, 510, 505, 511, 509,
|
|
|
|
|
502, 503, 68, 512, 68, 506, 515, 513, 68, 68,
|
|
|
|
|
517, 68, 68, 514, 68, 68, 516, 521, 68, 520,
|
|
|
|
|
68, 523, 68, 522, 68, 68, 518, 68, 68, 68,
|
|
|
|
|
519, 68, 524, 525, 527, 528, 529, 68, 531, 530,
|
|
|
|
|
526, 68, 68, 68, 533, 68, 532, 68, 535, 68,
|
|
|
|
|
68, 68, 536, 68, 68, 68, 534, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
537, 544, 68, 68, 551, 68, 538, 543, 546, 68,
|
|
|
|
|
545, 539, 68, 540, 68, 542, 541, 547, 548, 550,
|
|
|
|
|
68, 68, 549, 68, 552, 68, 555, 68, 557, 558,
|
|
|
|
|
68, 68, 562, 553, 68, 554, 68, 68, 68, 559,
|
|
|
|
|
564, 68, 565, 129, 561, 68, 556, 68, 560, 68,
|
|
|
|
|
68, 567, 68, 68, 68, 68, 68, 576, 563, 68,
|
|
|
|
|
566, 68, 68, 68, 583, 120, 570, 582, 568, 68,
|
|
|
|
|
578, 68, 602, 579, 569, 68, 581, 580, 571, 577,
|
|
|
|
|
572, 68, 584, 68, 573, 588, 574, 68, 587, 585,
|
|
|
|
|
68, 575, 68, 590, 68, 591, 68, 68, 597, 589,
|
|
|
|
|
|
|
|
|
|
595, 68, 592, 68, 68, 68, 68, 586, 596, 598,
|
|
|
|
|
593, 68, 68, 68, 68, 68, 594, 68, 601, 604,
|
|
|
|
|
68, 608, 68, 68, 599, 600, 68, 68, 610, 607,
|
|
|
|
|
603, 606, 611, 68, 68, 605, 615, 609, 612, 68,
|
|
|
|
|
614, 68, 616, 613, 68, 618, 617, 68, 619, 68,
|
|
|
|
|
68, 68, 620, 68, 68, 68, 623, 68, 68, 624,
|
|
|
|
|
625, 628, 68, 626, 627, 621, 68, 68, 68, 68,
|
|
|
|
|
68, 622, 631, 68, 68, 629, 68, 68, 635, 68,
|
|
|
|
|
68, 636, 638, 640, 641, 630, 632, 634, 68, 68,
|
|
|
|
|
633, 639, 68, 643, 68, 637, 68, 68, 68, 647,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 642, 68, 655,
|
|
|
|
|
646, 645, 656, 649, 68, 644, 68, 68, 648, 652,
|
|
|
|
|
650, 653, 68, 68, 68, 68, 68, 651, 654, 657,
|
|
|
|
|
658, 660, 663, 68, 68, 68, 659, 68, 661, 68,
|
|
|
|
|
662, 68, 666, 68, 665, 68, 668, 68, 68, 670,
|
|
|
|
|
68, 68, 664, 68, 68, 68, 68, 68, 667, 673,
|
|
|
|
|
68, 677, 669, 671, 68, 672, 68, 68, 681, 680,
|
|
|
|
|
674, 678, 676, 68, 675, 683, 68, 679, 682, 686,
|
|
|
|
|
68, 685, 68, 687, 68, 690, 684, 68, 691, 68,
|
|
|
|
|
68, 689, 68, 688, 692, 68, 694, 693, 68, 68,
|
|
|
|
|
|
|
|
|
|
697, 698, 68, 68, 68, 68, 68, 699, 700, 68,
|
|
|
|
|
68, 68, 695, 68, 705, 706, 68, 696, 701, 68,
|
|
|
|
|
68, 68, 68, 702, 709, 703, 68, 704, 707, 711,
|
|
|
|
|
714, 68, 715, 68, 708, 68, 68, 68, 710, 716,
|
|
|
|
|
712, 68, 717, 719, 68, 713, 720, 68, 68, 722,
|
|
|
|
|
68, 68, 68, 721, 718, 68, 724, 68, 68, 68,
|
|
|
|
|
725, 723, 726, 730, 728, 731, 729, 68, 68, 733,
|
|
|
|
|
68, 68, 732, 727, 68, 68, 68, 737, 68, 68,
|
|
|
|
|
734, 68, 68, 740, 68, 68, 68, 736, 68, 68,
|
|
|
|
|
68, 744, 68, 68, 735, 68, 749, 68, 68, 738,
|
|
|
|
|
|
|
|
|
|
750, 68, 741, 753, 739, 742, 745, 743, 68, 746,
|
|
|
|
|
747, 68, 68, 68, 68, 752, 748, 756, 68, 68,
|
|
|
|
|
68, 751, 68, 68, 68, 761, 754, 759, 763, 762,
|
|
|
|
|
68, 755, 758, 757, 68, 68, 68, 68, 760, 765,
|
|
|
|
|
68, 767, 764, 770, 68, 769, 771, 68, 68, 766,
|
|
|
|
|
68, 68, 68, 772, 68, 773, 775, 768, 774, 776,
|
|
|
|
|
778, 68, 68, 777, 68, 782, 779, 68, 781, 68,
|
|
|
|
|
68, 68, 68, 780, 68, 68, 68, 68, 68, 790,
|
|
|
|
|
68, 791, 68, 68, 792, 68, 783, 68, 784, 787,
|
|
|
|
|
785, 786, 789, 129, 794, 788, 793, 796, 68, 68,
|
|
|
|
|
|
|
|
|
|
799, 68, 795, 68, 797, 68, 800, 798, 68, 801,
|
|
|
|
|
802, 803, 68, 68, 68, 68, 804, 68, 805, 68,
|
|
|
|
|
68, 810, 68, 68, 808, 68, 812, 68, 807, 806,
|
|
|
|
|
68, 68, 68, 68, 68, 809, 815, 68, 817, 68,
|
|
|
|
|
820, 814, 68, 811, 68, 68, 68, 68, 824, 813,
|
|
|
|
|
816, 819, 818, 68, 826, 68, 68, 68, 825, 68,
|
|
|
|
|
68, 830, 821, 829, 822, 823, 68, 827, 68, 828,
|
|
|
|
|
833, 832, 68, 834, 68, 68, 68, 68, 68, 840,
|
|
|
|
|
68, 837, 68, 839, 835, 831, 68, 841, 68, 68,
|
|
|
|
|
68, 68, 848, 68, 836, 68, 68, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
838, 68, 846, 68, 842, 845, 847, 68, 843, 844,
|
|
|
|
|
853, 68, 857, 68, 852, 849, 850, 856, 68, 851,
|
|
|
|
|
854, 858, 68, 855, 68, 68, 860, 864, 865, 68,
|
|
|
|
|
68, 859, 68, 861, 863, 68, 862, 68, 68, 68,
|
|
|
|
|
68, 68, 872, 68, 68, 127, 875, 68, 867, 876,
|
|
|
|
|
866, 68, 869, 877, 68, 868, 878, 68, 871, 873,
|
|
|
|
|
68, 68, 874, 880, 870, 68, 68, 68, 68, 881,
|
|
|
|
|
879, 68, 68, 882, 68, 68, 68, 68, 68, 883,
|
|
|
|
|
889, 68, 890, 891, 893, 884, 892, 885, 886, 887,
|
|
|
|
|
68, 68, 896, 68, 888, 68, 68, 900, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 904, 68, 68, 895, 903, 898, 897,
|
|
|
|
|
899, 901, 68, 894, 905, 68, 907, 68, 902, 908,
|
|
|
|
|
68, 906, 68, 68, 68, 68, 909, 912, 68, 913,
|
|
|
|
|
68, 914, 68, 915, 68, 917, 68, 916, 68, 910,
|
|
|
|
|
68, 918, 911, 919, 921, 68, 68, 922, 68, 923,
|
|
|
|
|
920, 68, 68, 68, 68, 68, 927, 931, 68, 68,
|
|
|
|
|
68, 933, 68, 924, 68, 925, 68, 68, 68, 68,
|
|
|
|
|
926, 936, 928, 929, 68, 935, 930, 937, 68, 939,
|
|
|
|
|
68, 68, 934, 943, 68, 932, 942, 68, 68, 68,
|
|
|
|
|
941, 945, 947, 938, 68, 940, 946, 68, 948, 68,
|
|
|
|
|
|
|
|
|
|
944, 68, 68, 68, 68, 956, 68, 68, 952, 68,
|
|
|
|
|
960, 68, 953, 68, 949, 954, 950, 959, 951, 963,
|
|
|
|
|
955, 961, 68, 958, 68, 962, 68, 68, 957, 965,
|
|
|
|
|
68, 68, 68, 68, 68, 967, 970, 68, 969, 964,
|
|
|
|
|
972, 68, 966, 68, 968, 68, 974, 975, 68, 973,
|
|
|
|
|
976, 68, 68, 68, 68, 971, 68, 68, 977, 978,
|
|
|
|
|
68, 982, 979, 68, 68, 981, 980, 68, 68, 988,
|
|
|
|
|
68, 68, 983, 985, 68, 68, 986, 68, 990, 992,
|
|
|
|
|
68, 984, 987, 68, 68, 991, 68, 989, 68, 995,
|
|
|
|
|
68, 993, 996, 68, 68, 994, 68, 68, 997, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 998, 1003, 1002, 999, 1006, 68, 68, 1000,
|
|
|
|
|
68, 68, 1009, 68, 68, 1004, 1001, 1005, 1008, 1010,
|
|
|
|
|
68, 68, 1014, 68, 68, 1011, 1007, 68, 1015, 1012,
|
|
|
|
|
68, 1018, 68, 68, 68, 68, 68, 68, 68, 1024,
|
|
|
|
|
1025, 1013, 68, 1016, 1017, 1019, 1020, 1022, 1023, 1021,
|
|
|
|
|
68, 68, 68, 68, 68, 1026, 68, 68, 1029, 1030,
|
|
|
|
|
1033, 68, 1035, 68, 68, 1032, 1034, 1028, 68, 68,
|
|
|
|
|
1027, 68, 1037, 68, 1038, 1040, 68, 68, 68, 1031,
|
|
|
|
|
68, 1041, 1047, 1036, 1039, 68, 1042, 1043, 68, 68,
|
|
|
|
|
1044, 68, 1045, 68, 68, 68, 1046, 68, 1049, 68,
|
|
|
|
|
|
|
|
|
|
1048, 68, 68, 68, 1057, 68, 68, 68, 1061, 1058,
|
|
|
|
|
68, 68, 68, 1076, 1051, 1055, 1062, 68, 1053, 68,
|
|
|
|
|
1050, 1052, 1054, 1056, 1059, 1060, 1063, 68, 1065, 68,
|
|
|
|
|
1066, 68, 1064, 68, 1068, 68, 1069, 68, 68, 1071,
|
|
|
|
|
68, 68, 68, 1070, 1073, 68, 68, 68, 1075, 68,
|
|
|
|
|
1077, 68, 1067, 1079, 68, 1081, 68, 1082, 68, 68,
|
|
|
|
|
1072, 68, 1084, 68, 1074, 1078, 1080, 68, 1086, 68,
|
|
|
|
|
68, 1085, 68, 68, 68, 68, 1094, 1083, 1090, 68,
|
|
|
|
|
125, 68, 1088, 1092, 1093, 68, 68, 1091, 68, 1095,
|
|
|
|
|
68, 1089, 1087, 68, 1098, 1097, 1099, 68, 1100, 1096,
|
|
|
|
|
|
|
|
|
|
68, 68, 1103, 1102, 68, 1105, 1101, 1104, 1106, 68,
|
|
|
|
|
68, 68, 68, 68, 1107, 1108, 1109, 68, 1110, 68,
|
|
|
|
|
68, 68, 1115, 1112, 68, 68, 1114, 68, 68, 68,
|
|
|
|
|
1116, 1111, 68, 1118, 1120, 68, 1121, 1119, 1122, 68,
|
|
|
|
|
1113, 1117, 1123, 68, 1124, 68, 1125, 68, 1126, 68,
|
|
|
|
|
68, 68, 68, 1130, 68, 68, 68, 1129, 1132, 68,
|
|
|
|
|
1131, 1134, 68, 68, 1133, 1127, 1135, 68, 1136, 68,
|
|
|
|
|
68, 68, 1128, 68, 68, 1137, 68, 1143, 68, 68,
|
|
|
|
|
68, 68, 68, 1139, 68, 1140, 1141, 68, 1138, 1144,
|
|
|
|
|
68, 68, 1151, 68, 68, 1147, 1142, 68, 1152, 1153,
|
|
|
|
|
|
|
|
|
|
68, 1146, 68, 1155, 1149, 1145, 1156, 68, 1148, 1150,
|
|
|
|
|
68, 68, 1154, 68, 68, 1159, 68, 1163, 68, 1157,
|
|
|
|
|
1164, 68, 68, 68, 68, 68, 1158, 1170, 68, 68,
|
|
|
|
|
1161, 1160, 1169, 68, 68, 1162, 1165, 1173, 68, 68,
|
|
|
|
|
68, 1166, 68, 1167, 1168, 1175, 68, 68, 1171, 68,
|
|
|
|
|
1176, 1178, 1172, 68, 68, 68, 68, 68, 1174, 1179,
|
|
|
|
|
1180, 1181, 1177, 68, 68, 1186, 68, 1208, 1183, 1184,
|
|
|
|
|
1188, 1182, 1185, 1187, 68, 68, 1189, 68, 1190, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 1191, 1193, 68, 68, 68,
|
|
|
|
|
1197, 68, 68, 1192, 68, 1194, 1195, 1196, 1201, 68,
|
|
|
|
|
|
|
|
|
|
1198, 68, 1203, 1199, 68, 68, 68, 1207, 68, 1204,
|
|
|
|
|
1202, 1200, 68, 1209, 1205, 68, 1211, 68, 1210, 1206,
|
|
|
|
|
1212, 68, 68, 68, 1215, 1216, 68, 68, 68, 68,
|
|
|
|
|
68, 1217, 68, 68, 1218, 68, 1222, 1214, 68, 68,
|
|
|
|
|
1213, 1220, 68, 68, 1224, 68, 68, 68, 68, 1219,
|
|
|
|
|
1229, 1221, 1231, 68, 1223, 1227, 68, 68, 68, 68,
|
|
|
|
|
1232, 68, 1225, 68, 1238, 1228, 1230, 1233, 1234, 1226,
|
|
|
|
|
68, 68, 68, 1235, 68, 1237, 68, 1240, 68, 68,
|
|
|
|
|
1239, 68, 1236, 1241, 1244, 68, 68, 68, 1245, 68,
|
|
|
|
|
68, 68, 1249, 1243, 68, 1242, 68, 1246, 1248, 1252,
|
|
|
|
|
|
|
|
|
|
68, 1253, 1254, 68, 68, 1247, 1257, 68, 1258, 68,
|
|
|
|
|
1251, 68, 68, 68, 1255, 1250, 1262, 68, 68, 68,
|
|
|
|
|
1264, 68, 68, 68, 1260, 68, 1256, 68, 1267, 1282,
|
|
|
|
|
1259, 1263, 1271, 1261, 1268, 68, 1266, 1265, 1269, 68,
|
|
|
|
|
1270, 68, 1272, 68, 68, 1273, 1274, 68, 68, 68,
|
|
|
|
|
1277, 68, 68, 1275, 68, 68, 68, 1276, 68, 1278,
|
|
|
|
|
1279, 1281, 68, 1283, 68, 68, 1285, 68, 68, 1284,
|
|
|
|
|
124, 1286, 1280, 1288, 68, 68, 1287, 1289, 68, 1290,
|
|
|
|
|
68, 1291, 68, 68, 1293, 68, 68, 1292, 1295, 1294,
|
|
|
|
|
1296, 68, 68, 68, 68, 1297, 1301, 68, 122, 120,
|
|
|
|
|
|
|
|
|
|
68, 1302, 1302, 1302, 1302, 1302, 1302, 1298, 1299, 1302,
|
|
|
|
|
1302, 1302, 1300, 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,
|
|
|
|
|
1302, 71, 71, 71, 71, 119, 119, 1302, 1302, 1302,
|
|
|
|
|
119, 119, 121, 121, 1302, 1302, 121, 1302, 121, 123,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 123, 126, 126, 1302, 1302,
|
|
|
|
|
1302, 126, 126, 128, 1302, 1302, 1302, 1302, 1302, 128,
|
|
|
|
|
130, 130, 1302, 130, 130, 130, 130, 72, 72, 1302,
|
|
|
|
|
|
|
|
|
|
72, 72, 72, 72, 13, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
static yyconst flex_int16_t yy_chk[2645] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 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,
|
2008-10-06 05:28:50 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
|
2009-08-12 11:26:47 -04:00
|
|
|
3, 3, 4, 4, 4, 49, 5, 5, 49, 3,
|
2009-02-06 05:19:16 -05:00
|
|
|
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
|
2011-10-31 10:48:48 -04:00
|
|
|
9, 115, 33, 6, 7, 7, 7, 7, 9, 7,
|
2009-10-29 06:37:44 -04:00
|
|
|
10, 10, 10, 44, 44, 7, 8, 8, 8, 8,
|
2011-10-31 10:48:48 -04:00
|
|
|
10, 8, 21, 33, 115, 21, 21, 8, 11, 11,
|
2011-11-08 05:56:42 -05:00
|
|
|
11, 11, 11, 11, 1308, 20, 29, 20, 20, 11,
|
2009-11-30 08:07:39 -05:00
|
|
|
|
|
|
|
|
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,
|
2011-10-31 10:48:48 -04:00
|
|
|
19, 19, 27, 23, 30, 27, 23, 31, 89, 23,
|
|
|
|
|
32, 32, 27, 89, 34, 32, 39, 39, 82, 30,
|
2011-08-22 09:58:40 -04:00
|
|
|
35, 39, 31, 34, 77, 35, 31, 77, 36, 34,
|
2011-10-31 10:48:48 -04:00
|
|
|
75, 32, 34, 36, 75, 35, 38, 76, 35, 34,
|
|
|
|
|
82, 37, 37, 36, 37, 60, 60, 36, 36, 55,
|
2011-11-08 05:56:42 -05:00
|
|
|
38, 55, 55, 565, 55, 38, 78, 76, 63, 37,
|
2011-10-31 10:48:48 -04:00
|
|
|
|
|
|
|
|
63, 63, 65, 63, 65, 65, 79, 65, 68, 63,
|
|
|
|
|
68, 68, 84, 68, 78, 80, 81, 85, 68, 71,
|
|
|
|
|
79, 71, 71, 83, 71, 86, 84, 80, 83, 71,
|
|
|
|
|
71, 87, 88, 90, 81, 92, 88, 85, 100, 91,
|
|
|
|
|
95, 83, 91, 86, 95, 91, 93, 90, 96, 87,
|
|
|
|
|
94, 93, 97, 94, 92, 96, 98, 94, 100, 91,
|
|
|
|
|
99, 102, 101, 98, 104, 97, 101, 103, 105, 107,
|
|
|
|
|
106, 93, 103, 99, 108, 109, 103, 110, 112, 102,
|
|
|
|
|
109, 105, 111, 111, 104, 106, 113, 114, 107, 110,
|
|
|
|
|
116, 118, 108, 117, 209, 116, 112, 120, 120, 127,
|
|
|
|
|
|
|
|
|
|
127, 122, 113, 111, 122, 117, 133, 209, 114, 118,
|
|
|
|
|
124, 133, 124, 124, 129, 124, 129, 129, 130, 129,
|
|
|
|
|
130, 130, 132, 130, 135, 132, 134, 136, 137, 130,
|
|
|
|
|
138, 134, 139, 140, 144, 136, 141, 139, 140, 135,
|
|
|
|
|
146, 141, 145, 137, 143, 143, 150, 145, 147, 148,
|
|
|
|
|
138, 142, 147, 144, 148, 142, 149, 152, 154, 153,
|
|
|
|
|
142, 150, 151, 146, 153, 142, 155, 159, 156, 128,
|
|
|
|
|
149, 142, 142, 156, 151, 152, 158, 151, 154, 157,
|
|
|
|
|
157, 158, 155, 166, 160, 161, 162, 158, 159, 160,
|
|
|
|
|
161, 162, 163, 164, 168, 165, 167, 163, 169, 170,
|
|
|
|
|
|
|
|
|
|
164, 165, 167, 166, 171, 172, 169, 173, 174, 126,
|
|
|
|
|
172, 176, 175, 177, 170, 177, 168, 175, 178, 180,
|
|
|
|
|
181, 181, 185, 179, 171, 178, 174, 174, 179, 173,
|
|
|
|
|
182, 176, 183, 186, 185, 182, 187, 183, 180, 184,
|
|
|
|
|
188, 184, 189, 192, 187, 188, 190, 189, 191, 194,
|
|
|
|
|
194, 192, 186, 182, 193, 195, 195, 193, 184, 196,
|
|
|
|
|
198, 190, 197, 198, 199, 200, 191, 201, 199, 202,
|
|
|
|
|
203, 203, 201, 204, 200, 196, 205, 197, 204, 206,
|
|
|
|
|
207, 205, 208, 202, 210, 210, 211, 213, 212, 215,
|
|
|
|
|
214, 216, 213, 214, 218, 263, 217, 263, 207, 206,
|
|
|
|
|
|
|
|
|
|
212, 215, 222, 208, 211, 217, 218, 219, 216, 219,
|
|
|
|
|
219, 216, 220, 220, 221, 223, 224, 221, 226, 222,
|
|
|
|
|
225, 225, 222, 226, 228, 224, 227, 227, 229, 230,
|
|
|
|
|
223, 231, 232, 233, 230, 234, 233, 232, 235, 228,
|
|
|
|
|
237, 236, 238, 239, 241, 237, 240, 238, 229, 234,
|
2011-11-08 05:56:42 -05:00
|
|
|
236, 231, 242, 243, 235, 242, 246, 235, 241, 235,
|
|
|
|
|
247, 245, 249, 248, 239, 246, 240, 243, 251, 250,
|
|
|
|
|
252, 242, 244, 251, 244, 244, 245, 249, 253, 254,
|
|
|
|
|
255, 247, 248, 256, 244, 262, 244, 244, 244, 250,
|
|
|
|
|
252, 244, 259, 253, 254, 260, 257, 256, 261, 262,
|
|
|
|
|
|
|
|
|
|
255, 257, 258, 258, 264, 258, 265, 266, 264, 267,
|
|
|
|
|
268, 260, 259, 270, 261, 269, 271, 270, 267, 268,
|
|
|
|
|
269, 266, 272, 273, 265, 271, 275, 272, 274, 273,
|
|
|
|
|
278, 267, 277, 274, 276, 276, 279, 277, 280, 275,
|
|
|
|
|
282, 281, 283, 283, 286, 279, 281, 285, 285, 287,
|
|
|
|
|
280, 278, 289, 288, 291, 292, 293, 287, 294, 295,
|
|
|
|
|
297, 282, 288, 294, 289, 286, 296, 295, 298, 299,
|
|
|
|
|
293, 296, 300, 299, 291, 292, 301, 302, 297, 303,
|
|
|
|
|
305, 301, 310, 304, 304, 306, 308, 300, 309, 309,
|
|
|
|
|
298, 304, 307, 302, 311, 311, 312, 307, 303, 304,
|
|
|
|
|
|
|
|
|
|
305, 306, 307, 313, 314, 315, 308, 310, 316, 304,
|
|
|
|
|
319, 312, 317, 318, 321, 313, 320, 317, 321, 314,
|
|
|
|
|
322, 323, 318, 324, 315, 322, 325, 326, 326, 319,
|
|
|
|
|
316, 320, 327, 323, 328, 329, 331, 330, 338, 325,
|
|
|
|
|
330, 324, 332, 332, 327, 125, 328, 333, 333, 331,
|
|
|
|
|
329, 334, 335, 335, 336, 336, 334, 337, 339, 338,
|
|
|
|
|
340, 341, 337, 339, 340, 342, 341, 343, 344, 342,
|
|
|
|
|
345, 346, 343, 347, 348, 345, 346, 348, 349, 349,
|
|
|
|
|
350, 351, 348, 355, 123, 350, 348, 347, 344, 352,
|
|
|
|
|
351, 353, 352, 354, 356, 353, 355, 357, 354, 356,
|
|
|
|
|
|
|
|
|
|
358, 359, 357, 362, 359, 360, 358, 361, 360, 363,
|
|
|
|
|
364, 365, 361, 366, 365, 364, 121, 353, 366, 369,
|
|
|
|
|
367, 362, 368, 363, 367, 367, 370, 368, 369, 370,
|
|
|
|
|
371, 372, 374, 372, 371, 371, 373, 375, 373, 376,
|
|
|
|
|
377, 378, 379, 380, 381, 378, 382, 383, 384, 384,
|
|
|
|
|
374, 382, 385, 387, 388, 375, 385, 379, 376, 381,
|
|
|
|
|
377, 380, 386, 389, 390, 391, 383, 386, 392, 387,
|
|
|
|
|
391, 390, 393, 388, 394, 392, 389, 393, 395, 394,
|
|
|
|
|
396, 397, 400, 398, 399, 400, 402, 396, 401, 399,
|
|
|
|
|
397, 407, 401, 403, 403, 405, 395, 398, 408, 406,
|
|
|
|
|
|
|
|
|
|
405, 409, 403, 406, 412, 415, 408, 402, 417, 407,
|
|
|
|
|
418, 416, 417, 420, 415, 418, 409, 416, 420, 421,
|
|
|
|
|
422, 412, 419, 427, 419, 423, 419, 431, 423, 419,
|
|
|
|
|
424, 424, 425, 430, 419, 426, 426, 421, 427, 425,
|
|
|
|
|
419, 419, 428, 428, 429, 422, 431, 429, 432, 433,
|
|
|
|
|
433, 434, 435, 430, 436, 439, 432, 437, 437, 436,
|
|
|
|
|
438, 439, 442, 438, 440, 441, 434, 448, 444, 443,
|
|
|
|
|
435, 446, 440, 441, 443, 444, 445, 445, 447, 446,
|
|
|
|
|
442, 450, 451, 447, 450, 455, 448, 452, 452, 453,
|
|
|
|
|
456, 462, 453, 457, 458, 459, 451, 461, 460, 463,
|
|
|
|
|
|
|
|
|
|
453, 461, 466, 464, 468, 467, 455, 460, 463, 468,
|
|
|
|
|
462, 456, 465, 457, 470, 459, 458, 464, 465, 467,
|
|
|
|
|
469, 472, 466, 471, 469, 473, 472, 474, 474, 475,
|
|
|
|
|
477, 478, 479, 470, 475, 471, 476, 479, 480, 476,
|
|
|
|
|
481, 481, 482, 482, 478, 483, 473, 484, 477, 485,
|
|
|
|
|
486, 484, 487, 489, 490, 491, 493, 489, 480, 492,
|
|
|
|
|
483, 495, 494, 514, 496, 119, 487, 495, 485, 496,
|
|
|
|
|
491, 499, 514, 492, 486, 488, 494, 493, 488, 490,
|
|
|
|
|
488, 497, 497, 498, 488, 499, 488, 500, 498, 497,
|
|
|
|
|
502, 488, 501, 501, 503, 502, 504, 505, 509, 500,
|
|
|
|
|
|
|
|
|
|
506, 506, 503, 509, 507, 511, 510, 497, 507, 510,
|
|
|
|
|
504, 515, 512, 513, 516, 517, 505, 518, 513, 516,
|
|
|
|
|
519, 520, 522, 523, 511, 512, 520, 524, 523, 519,
|
|
|
|
|
515, 518, 524, 525, 526, 517, 528, 522, 525, 527,
|
|
|
|
|
527, 528, 530, 526, 531, 531, 530, 530, 531, 532,
|
|
|
|
|
533, 534, 532, 535, 536, 537, 535, 538, 539, 536,
|
|
|
|
|
537, 540, 540, 538, 539, 533, 541, 542, 544, 543,
|
|
|
|
|
545, 534, 543, 547, 546, 541, 548, 549, 547, 550,
|
|
|
|
|
551, 548, 550, 552, 553, 542, 544, 546, 552, 553,
|
|
|
|
|
545, 551, 554, 555, 555, 549, 556, 557, 558, 559,
|
|
|
|
|
|
|
|
|
|
560, 562, 563, 559, 561, 566, 567, 554, 568, 569,
|
|
|
|
|
558, 557, 570, 561, 569, 556, 572, 570, 560, 566,
|
|
|
|
|
562, 567, 573, 575, 571, 576, 574, 563, 568, 571,
|
|
|
|
|
572, 574, 577, 577, 578, 579, 573, 580, 575, 581,
|
|
|
|
|
576, 582, 580, 583, 579, 584, 582, 587, 585, 584,
|
|
|
|
|
586, 588, 578, 589, 590, 591, 592, 593, 581, 587,
|
|
|
|
|
594, 591, 583, 585, 597, 586, 599, 598, 596, 594,
|
|
|
|
|
588, 592, 590, 596, 589, 598, 600, 593, 597, 601,
|
|
|
|
|
602, 600, 603, 601, 601, 604, 599, 605, 605, 606,
|
|
|
|
|
604, 603, 607, 602, 606, 608, 608, 607, 609, 610,
|
|
|
|
|
|
|
|
|
|
611, 612, 613, 616, 614, 611, 612, 613, 614, 615,
|
|
|
|
|
621, 618, 609, 619, 616, 618, 620, 610, 615, 622,
|
|
|
|
|
625, 623, 624, 615, 621, 615, 67, 615, 619, 623,
|
|
|
|
|
626, 626, 627, 627, 620, 631, 629, 630, 622, 629,
|
|
|
|
|
624, 636, 630, 632, 632, 625, 633, 633, 634, 635,
|
|
|
|
|
635, 637, 638, 634, 631, 640, 637, 639, 641, 642,
|
|
|
|
|
638, 636, 639, 644, 641, 645, 642, 646, 644, 647,
|
|
|
|
|
645, 648, 646, 640, 647, 649, 650, 651, 651, 652,
|
|
|
|
|
648, 653, 655, 654, 660, 656, 659, 650, 654, 657,
|
|
|
|
|
658, 658, 661, 662, 649, 665, 664, 666, 667, 652,
|
|
|
|
|
|
|
|
|
|
664, 664, 655, 667, 653, 656, 659, 657, 668, 660,
|
|
|
|
|
661, 669, 673, 670, 671, 666, 662, 670, 672, 674,
|
|
|
|
|
675, 665, 676, 677, 678, 675, 668, 673, 677, 676,
|
|
|
|
|
679, 669, 672, 671, 680, 681, 682, 690, 674, 679,
|
|
|
|
|
683, 681, 678, 684, 689, 683, 685, 693, 684, 680,
|
|
|
|
|
688, 685, 686, 686, 694, 688, 690, 682, 689, 691,
|
|
|
|
|
692, 692, 695, 691, 691, 696, 693, 697, 695, 698,
|
|
|
|
|
696, 699, 700, 694, 702, 701, 705, 703, 704, 704,
|
|
|
|
|
706, 705, 709, 707, 706, 708, 697, 712, 698, 701,
|
|
|
|
|
699, 700, 703, 61, 708, 702, 707, 710, 710, 711,
|
|
|
|
|
|
|
|
|
|
713, 716, 709, 726, 711, 713, 716, 712, 717, 717,
|
|
|
|
|
718, 721, 721, 723, 725, 718, 723, 724, 724, 727,
|
|
|
|
|
728, 729, 729, 730, 727, 731, 731, 732, 726, 725,
|
|
|
|
|
733, 735, 734, 736, 738, 728, 734, 739, 736, 740,
|
|
|
|
|
740, 733, 741, 730, 742, 743, 744, 747, 744, 732,
|
|
|
|
|
735, 739, 738, 745, 746, 748, 751, 749, 745, 746,
|
|
|
|
|
752, 751, 741, 749, 742, 743, 756, 747, 753, 748,
|
|
|
|
|
754, 753, 755, 755, 757, 754, 758, 759, 760, 761,
|
|
|
|
|
761, 758, 762, 760, 756, 752, 763, 762, 764, 765,
|
|
|
|
|
767, 766, 769, 768, 757, 770, 771, 769, 772, 773,
|
|
|
|
|
|
|
|
|
|
759, 776, 767, 774, 763, 766, 768, 782, 764, 765,
|
|
|
|
|
774, 775, 779, 779, 773, 770, 771, 776, 780, 772,
|
|
|
|
|
775, 780, 781, 775, 783, 784, 782, 785, 786, 786,
|
|
|
|
|
787, 781, 785, 783, 784, 788, 783, 789, 790, 791,
|
|
|
|
|
792, 793, 793, 794, 795, 56, 797, 799, 788, 798,
|
|
|
|
|
787, 797, 790, 799, 798, 789, 800, 801, 792, 794,
|
|
|
|
|
802, 800, 795, 802, 791, 804, 805, 806, 807, 802,
|
|
|
|
|
801, 809, 808, 804, 811, 816, 812, 813, 814, 805,
|
|
|
|
|
812, 815, 813, 814, 816, 806, 815, 807, 808, 809,
|
|
|
|
|
817, 818, 819, 819, 811, 820, 821, 823, 822, 824,
|
|
|
|
|
|
|
|
|
|
825, 826, 823, 827, 827, 832, 818, 826, 821, 820,
|
|
|
|
|
822, 824, 829, 817, 828, 828, 830, 830, 825, 831,
|
|
|
|
|
833, 829, 834, 842, 831, 844, 832, 835, 835, 836,
|
|
|
|
|
836, 837, 837, 838, 839, 841, 849, 839, 838, 833,
|
|
|
|
|
841, 842, 834, 843, 845, 845, 846, 846, 843, 847,
|
|
|
|
|
844, 848, 850, 851, 847, 852, 849, 853, 853, 854,
|
|
|
|
|
855, 855, 856, 848, 859, 848, 858, 861, 860, 863,
|
|
|
|
|
848, 859, 850, 851, 864, 858, 852, 860, 862, 862,
|
|
|
|
|
868, 866, 856, 867, 869, 854, 866, 871, 867, 872,
|
|
|
|
|
864, 869, 871, 861, 873, 863, 870, 870, 872, 875,
|
|
|
|
|
|
|
|
|
|
868, 874, 876, 877, 878, 879, 879, 880, 876, 881,
|
|
|
|
|
883, 883, 877, 891, 873, 878, 874, 882, 875, 885,
|
|
|
|
|
878, 884, 882, 881, 885, 884, 884, 886, 880, 887,
|
|
|
|
|
888, 889, 890, 893, 887, 889, 892, 895, 891, 886,
|
|
|
|
|
894, 892, 888, 897, 890, 894, 897, 898, 898, 895,
|
|
|
|
|
899, 899, 900, 906, 901, 893, 902, 903, 900, 901,
|
|
|
|
|
908, 908, 902, 909, 910, 906, 903, 911, 915, 916,
|
|
|
|
|
917, 925, 908, 910, 916, 923, 911, 918, 918, 920,
|
|
|
|
|
920, 909, 915, 919, 922, 919, 926, 917, 924, 924,
|
|
|
|
|
927, 922, 925, 928, 929, 923, 930, 934, 926, 932,
|
|
|
|
|
|
|
|
|
|
937, 933, 927, 933, 932, 928, 936, 936, 935, 929,
|
|
|
|
|
939, 942, 939, 938, 940, 934, 930, 935, 938, 940,
|
|
|
|
|
941, 943, 944, 945, 947, 941, 937, 944, 945, 942,
|
|
|
|
|
948, 949, 949, 950, 954, 955, 953, 951, 952, 954,
|
|
|
|
|
955, 943, 957, 947, 948, 950, 951, 952, 953, 951,
|
|
|
|
|
958, 959, 961, 963, 964, 957, 965, 967, 961, 963,
|
|
|
|
|
966, 966, 968, 968, 969, 965, 967, 959, 970, 971,
|
|
|
|
|
958, 972, 970, 974, 971, 973, 973, 977, 982, 964,
|
|
|
|
|
980, 974, 982, 969, 972, 983, 977, 978, 978, 979,
|
|
|
|
|
979, 981, 980, 984, 985, 986, 981, 987, 984, 988,
|
|
|
|
|
|
|
|
|
|
983, 989, 991, 990, 993, 993, 994, 997, 997, 994,
|
|
|
|
|
1013, 995, 996, 1013, 986, 990, 998, 998, 988, 1000,
|
|
|
|
|
985, 987, 989, 991, 995, 996, 999, 999, 1001, 1001,
|
|
|
|
|
1002, 1002, 1000, 1003, 1004, 1004, 1005, 1005, 1007, 1008,
|
|
|
|
|
1008, 1009, 1012, 1007, 1010, 1010, 1011, 1016, 1012, 1014,
|
|
|
|
|
1014, 1020, 1003, 1015, 1015, 1017, 1017, 1019, 1019, 1022,
|
|
|
|
|
1009, 1021, 1021, 1023, 1011, 1014, 1016, 1024, 1023, 1025,
|
|
|
|
|
1026, 1022, 1028, 1027, 1029, 1030, 1031, 1020, 1027, 1034,
|
|
|
|
|
51, 1031, 1025, 1029, 1030, 1032, 1036, 1028, 1041, 1032,
|
|
|
|
|
1042, 1026, 1024, 1037, 1037, 1036, 1038, 1039, 1039, 1034,
|
|
|
|
|
|
|
|
|
|
1045, 1038, 1042, 1041, 1044, 1045, 1039, 1044, 1046, 1046,
|
|
|
|
|
1047, 1051, 1048, 1050, 1047, 1048, 1049, 1049, 1050, 1052,
|
|
|
|
|
1053, 1054, 1055, 1052, 1056, 1058, 1054, 1055, 1059, 1060,
|
|
|
|
|
1056, 1051, 1061, 1059, 1061, 1064, 1064, 1060, 1067, 1067,
|
|
|
|
|
1053, 1058, 1070, 1070, 1072, 1072, 1074, 1075, 1075, 1076,
|
|
|
|
|
1077, 1074, 1078, 1080, 1080, 1083, 1084, 1078, 1084, 1085,
|
|
|
|
|
1083, 1086, 1086, 1089, 1085, 1076, 1087, 1087, 1088, 1088,
|
|
|
|
|
1090, 1091, 1077, 1092, 1093, 1089, 1094, 1095, 1095, 1097,
|
|
|
|
|
1096, 1098, 1099, 1091, 1100, 1092, 1093, 1103, 1090, 1096,
|
|
|
|
|
1101, 1102, 1103, 1104, 1107, 1099, 1094, 1113, 1104, 1105,
|
|
|
|
|
|
|
|
|
|
1105, 1098, 1108, 1108, 1101, 1097, 1110, 1110, 1100, 1102,
|
|
|
|
|
1111, 1112, 1107, 1114, 1115, 1113, 1116, 1117, 1117, 1111,
|
|
|
|
|
1118, 1119, 1120, 1121, 1125, 1118, 1112, 1127, 1127, 1126,
|
|
|
|
|
1115, 1114, 1126, 1128, 1129, 1116, 1119, 1131, 1131, 1132,
|
|
|
|
|
1138, 1120, 1139, 1121, 1125, 1133, 1133, 1176, 1128, 1137,
|
|
|
|
|
1137, 1139, 1129, 1142, 1140, 1141, 1144, 1147, 1132, 1140,
|
|
|
|
|
1141, 1142, 1138, 1145, 1146, 1148, 1148, 1176, 1145, 1146,
|
|
|
|
|
1150, 1144, 1147, 1149, 1149, 1150, 1151, 1151, 1152, 1152,
|
|
|
|
|
1154, 1155, 1158, 1157, 1164, 1154, 1157, 1159, 1160, 1161,
|
|
|
|
|
1161, 1162, 1165, 1155, 1168, 1158, 1159, 1160, 1166, 1166,
|
|
|
|
|
|
|
|
|
|
1162, 1167, 1168, 1164, 1169, 1171, 1172, 1174, 1174, 1169,
|
|
|
|
|
1167, 1165, 1177, 1177, 1171, 1178, 1179, 1179, 1178, 1172,
|
|
|
|
|
1180, 1180, 1181, 1182, 1183, 1184, 1184, 1185, 1188, 1183,
|
|
|
|
|
1191, 1185, 1193, 1192, 1188, 1194, 1194, 1182, 1195, 1196,
|
|
|
|
|
1181, 1192, 1197, 1198, 1196, 1200, 1199, 1202, 1203, 1191,
|
|
|
|
|
1202, 1193, 1204, 1204, 1195, 1199, 1205, 1210, 1206, 1208,
|
|
|
|
|
1205, 1209, 1197, 1214, 1214, 1200, 1203, 1206, 1208, 1198,
|
|
|
|
|
1213, 1215, 1217, 1209, 1218, 1213, 1219, 1217, 1220, 1222,
|
|
|
|
|
1215, 1223, 1210, 1218, 1221, 1221, 1224, 1226, 1222, 1227,
|
|
|
|
|
1225, 1228, 1226, 1220, 1233, 1219, 1230, 1223, 1225, 1229,
|
|
|
|
|
|
|
|
|
|
1229, 1230, 1232, 1232, 1234, 1224, 1235, 1235, 1236, 1236,
|
|
|
|
|
1228, 1237, 1238, 1239, 1233, 1227, 1240, 1240, 1243, 1241,
|
|
|
|
|
1242, 1242, 1245, 1246, 1238, 1267, 1234, 1250, 1246, 1267,
|
|
|
|
|
1237, 1241, 1250, 1239, 1247, 1247, 1245, 1243, 1248, 1248,
|
|
|
|
|
1249, 1249, 1251, 1251, 1253, 1253, 1255, 1255, 1256, 1259,
|
|
|
|
|
1260, 1260, 1265, 1256, 1261, 1263, 1276, 1259, 1278, 1261,
|
|
|
|
|
1263, 1266, 1266, 1271, 1271, 1273, 1275, 1275, 1293, 1273,
|
|
|
|
|
50, 1276, 1265, 1279, 1279, 1286, 1278, 1280, 1280, 1282,
|
|
|
|
|
1282, 1284, 1284, 1287, 1287, 1292, 1295, 1286, 1293, 1292,
|
|
|
|
|
1294, 1294, 1297, 1299, 1298, 1295, 1300, 1300, 45, 40,
|
|
|
|
|
|
|
|
|
|
14, 13, 0, 0, 0, 0, 0, 1297, 1298, 0,
|
|
|
|
|
0, 0, 1299, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
|
|
|
|
|
1304, 1304, 1304, 1304, 1304, 1304, 1304, 1305, 1305, 1305,
|
|
|
|
|
1305, 1305, 1305, 1305, 1306, 1306, 1306, 1306, 1306, 1306,
|
|
|
|
|
1306, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1309, 1309,
|
|
|
|
|
0, 1309, 1309, 1309, 1309, 1310, 1310, 0, 0, 0,
|
|
|
|
|
1310, 1310, 1311, 1311, 0, 0, 1311, 0, 1311, 1312,
|
|
|
|
|
0, 0, 0, 0, 0, 1312, 1313, 1313, 0, 0,
|
|
|
|
|
0, 1313, 1313, 1314, 0, 0, 0, 0, 0, 1314,
|
|
|
|
|
1315, 1315, 0, 1315, 1315, 1315, 1315, 1316, 1316, 0,
|
|
|
|
|
|
|
|
|
|
1316, 1316, 1316, 1316, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
|
|
|
|
|
1302, 1302, 1302, 1302
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
|
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
extern int yy_flex_debug;
|
|
|
|
|
int yy_flex_debug = 0;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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;
|
2008-06-09 05:34:40 -04:00
|
|
|
#define yymore() ((yy_more_flag) = 1)
|
|
|
|
|
#define YY_MORE_ADJ (yy_more_len)
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
char *yytext;
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 1 "./util/configlexer.lex"
|
|
|
|
|
#line 2 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
/*
|
|
|
|
|
* configlexer.lex - lexical analyzer for unbound config file
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE for the license.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <strings.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
|
|
|
|
|
|
2009-04-17 08:14:43 -04:00
|
|
|
/** avoid warning in about fwrite return value */
|
|
|
|
|
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
|
|
|
|
|
|
2009-02-06 05:19:16 -05:00
|
|
|
/** 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);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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;
|
2009-02-06 05:19:16 -05:00
|
|
|
static int inc_prev = 0;
|
|
|
|
|
static int num_args = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
2009-01-06 10:47:15 -05:00
|
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
|
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
|
|
|
filename += strlen(cfg_parser->chroot);
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
|
2007-10-18 18:49:08 -04:00
|
|
|
++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 ) \
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-05-22 06:41:13 -04:00
|
|
|
#define YY_NO_INPUT 1
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 100 "./util/configlexer.lex"
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#define YY_NO_UNPUT 1
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
|
|
|
|
#ifndef YY_NO_INPUT
|
|
|
|
|
#define YY_NO_INPUT 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
#line 1570 "<stdout>"
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
#define INITIAL 0
|
2007-10-18 18:49:08 -04:00
|
|
|
#define quotedstring 1
|
2007-11-28 03:10:45 -05:00
|
|
|
#define singlequotedstr 2
|
|
|
|
|
#define include 3
|
|
|
|
|
#define include_quoted 4
|
2009-02-06 05:19:16 -05:00
|
|
|
#define val 5
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#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 );
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
/* 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 );
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
|
|
|
* section 1.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
|
|
|
#ifdef __cplusplus
|
2008-06-09 05:34:40 -04:00
|
|
|
extern "C" int yywrap (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
extern int yywrap (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_flex_strncpy (char *,yyconst char *,int );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_flex_strlen (yyconst char * );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
static int yyinput (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
static int input (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#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().
|
|
|
|
|
*/
|
2012-01-10 10:07:16 -05:00
|
|
|
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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) \
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
2007-10-18 18:49:08 -04:00
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
int c = '*'; \
|
2012-01-10 10:07:16 -05:00
|
|
|
unsigned n; \
|
2007-10-18 18:49:08 -04:00
|
|
|
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; \
|
|
|
|
|
} \
|
2008-06-09 05:34:40 -04:00
|
|
|
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); \
|
|
|
|
|
} \
|
|
|
|
|
}\
|
|
|
|
|
\
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#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
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* end tables serialization structures and prototypes */
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Default declaration of generated scanner - a define so the user can
|
|
|
|
|
* easily add parameters.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef YY_DECL
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_DECL_IS_OURS 1
|
|
|
|
|
|
|
|
|
|
extern int yylex (void);
|
|
|
|
|
|
|
|
|
|
#define YY_DECL int yylex (void)
|
|
|
|
|
#endif /* !YY_DECL */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** The main scanner function which does all the work.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DECL
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register yy_state_type yy_current_state;
|
|
|
|
|
register char *yy_cp, *yy_bp;
|
|
|
|
|
register int yy_act;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 120 "./util/configlexer.lex"
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2011-11-08 05:56:42 -05:00
|
|
|
#line 1757 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( !(yy_init) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_init) = 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifdef YY_USER_INIT
|
|
|
|
|
YY_USER_INIT;
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! (yy_start) )
|
|
|
|
|
(yy_start) = 1; /* first start state */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( ! yyin )
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
|
|
|
|
|
if ( ! yyout )
|
|
|
|
|
yyout = stdout;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
|
|
|
yy_create_buffer(yyin,YY_BUF_SIZE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while ( 1 ) /* loops until end-of-file is reached */
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_more_len) = 0;
|
|
|
|
|
if ( (yy_more_flag) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
|
|
|
|
|
(yy_more_flag) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Support of yytext. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_bp points to the position in yy_ch_buf of the start of
|
|
|
|
|
* the current run.
|
|
|
|
|
*/
|
|
|
|
|
yy_bp = yy_cp;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_match:
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2011-11-08 05:56:42 -05:00
|
|
|
if ( yy_current_state >= 1303 )
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
|
|
|
++yy_cp;
|
|
|
|
|
}
|
2011-11-08 05:56:42 -05:00
|
|
|
while ( yy_base[yy_current_state] != 2605 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_find_action:
|
|
|
|
|
yy_act = yy_accept[yy_current_state];
|
|
|
|
|
if ( yy_act == 0 )
|
|
|
|
|
{ /* have to back up */
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
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 */
|
2008-06-09 05:34:40 -04:00
|
|
|
*yy_cp = (yy_hold_char);
|
|
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 121 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SP ")); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 2:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 123 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
2009-12-01 03:12:12 -05:00
|
|
|
/* note that flex makes the longest match and '.' is any but not nl */
|
2009-02-06 05:19:16 -05:00
|
|
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 3:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 126 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(0, VAR_SERVER) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 4:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 127 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 5:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 128 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 6:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 129 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 7:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 130 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 8:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 131 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 9:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 132 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 10:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 133 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 11:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 134 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 12:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 135 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 13:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 136 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 14:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 137 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 15:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 138 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 16:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 139 "./util/configlexer.lex"
|
2011-08-22 09:58:40 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 17:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 140 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 18:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 141 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 19:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 142 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 20:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 143 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 21:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 144 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 22:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 145 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 23:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 146 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 24:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 147 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 25:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 148 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 26:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 149 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 27:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 150 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 28:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 151 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 29:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 152 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 30:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 153 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 31:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 154 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 32:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 155 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 33:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 156 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 34:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 157 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 35:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 158 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 36:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 159 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 37:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 160 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 38:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 161 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 39:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 162 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 40:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 163 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 164 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 165 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 166 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 167 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 168 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 169 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 170 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 171 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 172 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 173 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 174 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 175 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 176 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 177 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 178 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 179 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 180 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 181 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 182 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 183 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 184 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 185 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 186 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 187 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 188 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 189 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 190 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 191 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 192 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 193 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 194 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 195 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 196 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 197 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 198 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 199 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 200 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 201 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 202 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 203 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2008-09-03 10:40:09 -04:00
|
|
|
case 81:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 204 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 205 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 206 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 207 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 208 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 209 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 210 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 211 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 212 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 213 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 214 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 215 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 216 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 217 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 219 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 220 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 221 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 222 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 223 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 224 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 225 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 226 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
2009-08-12 11:26:47 -04:00
|
|
|
case 103:
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 227 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 228 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 229 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 230 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 231 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 232 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 233 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 234 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 235 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 236 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 237 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 238 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
2011-08-22 09:58:40 -04:00
|
|
|
case 115:
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 239 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 240 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 241 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
/* rule 118 can match eol */
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 242 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* Quoted strings. Strip leading and ending quotes */
|
2011-11-08 05:56:42 -05:00
|
|
|
case 119:
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 245 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 246 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 120:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 121:
|
|
|
|
|
/* rule 121 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end \"");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 122:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("QE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2007-11-28 03:10:45 -05:00
|
|
|
/* Single Quoted strings. Strip leading and ending quotes */
|
2011-11-08 05:56:42 -05:00
|
|
|
case 123:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 124:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 125:
|
|
|
|
|
/* rule 125 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end '");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 126:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SQE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* include: directive */
|
2011-11-08 05:56:42 -05:00
|
|
|
case 127:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include):
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside include directive");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-10-31 10:48:48 -04:00
|
|
|
case 128:
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
2011-10-31 10:48:48 -04:00
|
|
|
case 129:
|
2011-11-08 05:56:42 -05:00
|
|
|
/* rule 129 can match eol */
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
2011-10-31 10:48:48 -04:00
|
|
|
case 130:
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 131:
|
|
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
|
|
|
|
config_start_include(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include_quoted):
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 301 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 132:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 133:
|
|
|
|
|
/* rule 133 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline before \" in include name");
|
|
|
|
|
cfg_parser->line++; BEGIN(inc_prev); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 134:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("IQE "));
|
|
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
config_start_include(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(INITIAL):
|
2009-02-06 05:19:16 -05:00
|
|
|
case YY_STATE_EOF(val):
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
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
|
2011-11-08 05:56:42 -05:00
|
|
|
case 135:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ LEXOUT(("unquotedstr(%s) ", yytext));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-04-09 11:23:14 -04:00
|
|
|
yylval.str = strdup(yytext); return STRING_ARG; }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 136:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 328 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 137:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 332 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
case 138:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 336 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2011-11-08 05:56:42 -05:00
|
|
|
#line 2628 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case YY_END_OF_BUFFER:
|
|
|
|
|
{
|
|
|
|
|
/* Amount of text matched not including the EOB char. */
|
2008-06-09 05:34:40 -04:00
|
|
|
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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
|
2008-06-09 05:34:40 -04:00
|
|
|
* consistency between YY_CURRENT_BUFFER and our
|
2007-10-18 18:49:08 -04:00
|
|
|
* 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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
(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;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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().
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* This was really a NUL. */
|
|
|
|
|
yy_state_type yy_next_state;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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 );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( yy_next_state )
|
|
|
|
|
{
|
|
|
|
|
/* Consume the NUL. */
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = ++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_state = yy_next_state;
|
|
|
|
|
goto yy_match;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
else switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( yywrap( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
|
|
|
goto do_action;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_match;
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
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 */
|
2008-06-09 05:34:40 -04:00
|
|
|
} /* end of yylex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_get_next_buffer (void)
|
|
|
|
|
{
|
|
|
|
|
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
|
|
|
register char *source = (yytext_ptr);
|
2007-10-18 18:49:08 -04:00
|
|
|
register int number_to_move, i;
|
|
|
|
|
int ret_val;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal flex scanner internal error--end of buffer missed" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* Don't try to fill the buffer, so this is an EOF. */
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
for ( i = 0; i < number_to_move; ++i )
|
|
|
|
|
*(dest++) = *(source++);
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* don't do the read, it's not guaranteed to return an EOF,
|
|
|
|
|
* just force an EOF
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
int num_to_read =
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
while ( num_to_read <= 0 )
|
|
|
|
|
{ /* Not enough room in the buffer - grow it. */
|
|
|
|
|
|
|
|
|
|
/* just a shorter name for the current buffer */
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
int yy_c_buf_p_offset =
|
2008-06-09 05:34:40 -04:00
|
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
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" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
2007-10-18 18:49:08 -04:00
|
|
|
number_to_move - 1;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( num_to_read > YY_READ_BUF_SIZE )
|
|
|
|
|
num_to_read = YY_READ_BUF_SIZE;
|
|
|
|
|
|
|
|
|
|
/* Read in more data. */
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
2009-03-24 08:53:25 -04:00
|
|
|
(yy_n_chars), (size_t) num_to_read );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( (yy_n_chars) == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrestart(yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_EOF_PENDING;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
ret_val = EOB_ACT_CONTINUE_SCAN;
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
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()" );
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(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;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return ret_val;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static yy_state_type yy_get_previous_state (void)
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register yy_state_type yy_current_state;
|
|
|
|
|
register char *yy_cp;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2011-11-08 05:56:42 -05:00
|
|
|
if ( yy_current_state >= 1303 )
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_try_NUL_trans - try to make a transition on the NUL character
|
|
|
|
|
*
|
|
|
|
|
* synopsis
|
|
|
|
|
* next_state = yy_try_NUL_trans( current_state );
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
|
|
|
|
|
{
|
2007-10-19 10:02:53 -04:00
|
|
|
register int yy_is_jam;
|
2008-06-09 05:34:40 -04:00
|
|
|
register char *yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
register YY_CHAR yy_c = 1;
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2011-11-08 05:56:42 -05:00
|
|
|
if ( yy_current_state >= 1303 )
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
2011-11-08 05:56:42 -05:00
|
|
|
yy_is_jam = (yy_current_state == 1302);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#ifdef __cplusplus
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yyinput (void)
|
2008-06-09 05:29:44 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
static int input (void)
|
2008-06-09 05:29:44 -04:00
|
|
|
#endif
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* This was really a NUL. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*(yy_c_buf_p) = '\0';
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{ /* need more input */
|
2008-06-09 05:34:40 -04:00
|
|
|
int offset = (yy_c_buf_p) - (yytext_ptr);
|
|
|
|
|
++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrestart(yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/*FALLTHROUGH*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( yywrap( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
return EOF;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
return yyinput();
|
|
|
|
|
#else
|
|
|
|
|
return input();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
2007-10-18 18:49:08 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return c;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
#endif /* ifndef YY_NO_INPUT */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
|
|
|
|
|
yy_load_buffer_state( );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*(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);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
|
|
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_init_buffer(b,file );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Destroy the buffer.
|
|
|
|
|
* @param b a buffer created with yy_create_buffer()
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yy_delete_buffer (YY_BUFFER_STATE b )
|
|
|
|
|
{
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
return;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
2008-06-09 05:34:40 -04:00
|
|
|
yyfree((void *) b->yy_ch_buf );
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yyfree((void *) b );
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#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 )
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
int oerrno = errno;
|
|
|
|
|
|
|
|
|
|
yy_flush_buffer(b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
b->yy_input_file = file;
|
|
|
|
|
b->yy_fill_buffer = 1;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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;
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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*)
|
|
|
|
|
);
|
2009-03-24 08:53:25 -04:00
|
|
|
if ( ! (yy_buffer_stack) )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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;
|
2008-02-29 05:59:26 -05:00
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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*)
|
|
|
|
|
);
|
2009-03-24 08:53:25 -04:00
|
|
|
if ( ! (yy_buffer_stack) )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_switch_to_buffer(b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Setup the input buffer state to scan a string. The next call to yylex() will
|
|
|
|
|
* scan from a @e copy of @a str.
|
2009-03-24 08:53:25 -04:00
|
|
|
* @param yystr a NUL-terminated string to scan
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* @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) );
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
char *buf;
|
|
|
|
|
yy_size_t n;
|
|
|
|
|
int i;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
2008-06-09 05:34:40 -04:00
|
|
|
n = _yybytes_len + 2;
|
|
|
|
|
buf = (char *) yyalloc(n );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
for ( i = 0; i < _yybytes_len; ++i )
|
|
|
|
|
buf[i] = yybytes[i];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
b = yy_scan_buffer(buf,n );
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
|
|
|
#define YY_EXIT_FAILURE 2
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_fatal_error (yyconst char* msg )
|
|
|
|
|
{
|
|
|
|
|
(void) fprintf( stderr, "%s\n", msg );
|
|
|
|
|
exit( YY_EXIT_FAILURE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the current line number.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int yyget_lineno (void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return yylineno;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the input stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_in (void)
|
|
|
|
|
{
|
|
|
|
|
return yyin;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the output stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_out (void)
|
|
|
|
|
{
|
|
|
|
|
return yyout;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the length of the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int yyget_leng (void)
|
|
|
|
|
{
|
|
|
|
|
return yyleng;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
char *yyget_text (void)
|
|
|
|
|
{
|
|
|
|
|
return yytext;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Set the current line number.
|
|
|
|
|
* @param line_number
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yyset_lineno (int line_number )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
yylineno = line_number;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** 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 ;
|
|
|
|
|
}
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void yyset_out (FILE * out_str )
|
|
|
|
|
{
|
|
|
|
|
yyout = out_str ;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
int yyget_debug (void)
|
|
|
|
|
{
|
|
|
|
|
return yy_flex_debug;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void yyset_debug (int bdebug )
|
|
|
|
|
{
|
|
|
|
|
yy_flex_debug = bdebug ;
|
|
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
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;
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
yyin = (FILE *) 0;
|
|
|
|
|
yyout = (FILE *) 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* For future reference: Set errno on error, since we are called by
|
|
|
|
|
* yylex_init()
|
|
|
|
|
*/
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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();
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Destroy the stack itself. */
|
|
|
|
|
yyfree((yy_buffer_stack) );
|
|
|
|
|
(yy_buffer_stack) = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Reset the globals. This is important in a non-reentrant scanner so the next time
|
|
|
|
|
* yylex() is called, initialization will occur. */
|
|
|
|
|
yy_init_globals( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/*
|
|
|
|
|
* Internal utility routines.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register int i;
|
|
|
|
|
for ( i = 0; i < n; ++i )
|
|
|
|
|
s1[i] = s2[i];
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_flex_strlen (yyconst char * s )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register int n;
|
|
|
|
|
for ( n = 0; s[n]; ++n )
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
return n;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void *yyalloc (yy_size_t size )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
return (void *) malloc( size );
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void *yyrealloc (void * ptr, yy_size_t size )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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 );
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void yyfree (void * ptr )
|
|
|
|
|
{
|
|
|
|
|
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define YYTABLES_NAME "yytables"
|
|
|
|
|
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 336 "./util/configlexer.lex"
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2007-10-19 04:32:36 -04:00
|
|
|
|