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
|
2014-01-24 06:43:38 -05:00
|
|
|
#define YY_FLEX_SUBMINOR_VERSION 36
|
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;
|
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
|
|
|
|
2013-04-15 03:57:08 -04:00
|
|
|
#endif /* ! C99 */
|
|
|
|
|
|
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
|
|
|
|
2013-11-12 05:08:54 -05:00
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
typedef size_t yy_size_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern yy_size_t 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_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.
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t yy_n_chars;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
2013-11-12 05:08:54 -05:00
|
|
|
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
yy_size_t yyleng;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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 );
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t 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
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
#define YY_NUM_RULES 147
|
|
|
|
|
#define YY_END_OF_BUFFER 148
|
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;
|
|
|
|
|
};
|
2014-05-20 06:38:32 -04:00
|
|
|
static yyconst flex_int16_t yy_accept[1399] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2014-05-20 06:38:32 -04:00
|
|
|
1, 1, 129, 129, 133, 133, 137, 137, 141, 141,
|
|
|
|
|
1, 1, 148, 145, 1, 127, 127, 146, 2, 146,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 129,
|
|
|
|
|
130, 130, 131, 146, 133, 134, 134, 135, 146, 140,
|
|
|
|
|
137, 138, 138, 139, 146, 141, 142, 142, 143, 146,
|
|
|
|
|
144, 128, 2, 132, 146, 144, 145, 0, 1, 2,
|
|
|
|
|
2, 2, 2, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 129, 0, 133, 0, 140, 0, 137, 141, 0,
|
|
|
|
|
144, 0, 2, 2, 144, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 144, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 144, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 65,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 6, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 144, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 144, 145, 145, 145, 145, 29, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 12, 13, 145, 15, 14,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 122, 145, 145,
|
|
|
|
|
145, 145, 145, 3, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 144, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 136, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 32, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 33, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 80, 136, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 79, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 63, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 20, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 30, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 31, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 22, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 26,
|
|
|
|
|
145, 27, 145, 145, 145, 66, 145, 67, 145, 64,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 5, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 82,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 23, 145, 145, 145, 145, 107, 106,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 34,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 69, 68,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 103, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 50, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 54,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 105, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 4, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
100, 145, 145, 145, 145, 145, 145, 145, 116, 101,
|
|
|
|
|
145, 21, 145, 145, 145, 145, 71, 145, 72, 70,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 78, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 102, 145, 145, 145,
|
|
|
|
|
145, 126, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 62, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 28, 145, 145, 17, 145, 145, 145, 16,
|
|
|
|
|
145, 87, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 41, 42, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 73, 145, 145,
|
|
|
|
|
145, 145, 145, 77, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 81, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
121, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 91, 145, 95,
|
|
|
|
|
145, 145, 145, 145, 76, 145, 145, 114, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 94, 145, 145, 145, 145, 43, 44, 145, 49,
|
|
|
|
|
96, 145, 108, 104, 145, 145, 37, 145, 98, 145,
|
|
|
|
|
145, 145, 145, 145, 7, 145, 61, 113, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 83, 145, 145, 123, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 97,
|
|
|
|
|
145, 36, 38, 145, 145, 145, 145, 145, 60, 145,
|
|
|
|
|
145, 145, 145, 117, 18, 19, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 58, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 119, 145, 145, 35, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 11, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 10, 145, 145, 39, 145, 125, 118, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 90,
|
|
|
|
|
89, 145, 120, 115, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 45, 145, 124, 145, 145, 145,
|
|
|
|
|
|
|
|
|
|
145, 40, 145, 145, 145, 84, 86, 109, 145, 145,
|
|
|
|
|
145, 88, 145, 145, 145, 145, 145, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 24, 145, 145, 145,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 145, 145, 112,
|
|
|
|
|
145, 145, 145, 145, 145, 145, 145, 25, 145, 9,
|
|
|
|
|
145, 145, 110, 51, 145, 145, 145, 93, 145, 74,
|
|
|
|
|
145, 145, 145, 53, 57, 52, 145, 46, 145, 8,
|
|
|
|
|
145, 145, 92, 145, 145, 145, 56, 145, 47, 145,
|
|
|
|
|
111, 145, 145, 85, 75, 55, 48, 145, 145, 145,
|
|
|
|
|
145, 59, 145, 145, 145, 145, 99, 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
|
|
|
} ;
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
static yyconst flex_int16_t yy_base[1413] =
|
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,
|
2014-05-20 06:38:32 -04:00
|
|
|
87, 108, 2067, 1442, 50, 2793, 2793, 2793, 129, 94,
|
2009-11-30 08:07:39 -05:00
|
|
|
70, 104, 122, 90, 92, 115, 126, 95, 84, 132,
|
2014-05-20 06:38:32 -04:00
|
|
|
135, 138, 50, 146, 148, 157, 167, 160, 151, 1368,
|
|
|
|
|
2793, 2793, 2793, 70, 1259, 2793, 2793, 2793, 42, 1197,
|
|
|
|
|
1142, 2793, 2793, 2793, 189, 824, 2793, 2793, 2793, 195,
|
|
|
|
|
789, 2793, 199, 2793, 203, 111, 761, 209, 120, 0,
|
2013-11-05 21:48:59 -05:00
|
|
|
220, 0, 0, 103, 141, 149, 202, 189, 182, 204,
|
|
|
|
|
206, 210, 218, 215, 217, 221, 222, 223, 225, 228,
|
|
|
|
|
235, 248, 165, 244, 247, 233, 245, 252, 246, 251,
|
|
|
|
|
|
|
|
|
|
258, 260, 261, 262, 267, 263, 270, 271, 158, 274,
|
2014-05-20 06:38:32 -04:00
|
|
|
276, 280, 277, 278, 282, 286, 283, 295, 287, 291,
|
|
|
|
|
288, 653, 316, 558, 307, 417, 320, 388, 347, 324,
|
|
|
|
|
236, 328, 332, 0, 310, 325, 333, 327, 226, 329,
|
|
|
|
|
331, 339, 336, 343, 352, 345, 335, 348, 49, 355,
|
|
|
|
|
357, 349, 350, 364, 360, 369, 367, 370, 371, 380,
|
|
|
|
|
381, 388, 389, 296, 337, 391, 392, 398, 400, 396,
|
|
|
|
|
399, 401, 402, 385, 404, 409, 406, 410, 411, 413,
|
|
|
|
|
419, 416, 418, 422, 428, 425, 427, 434, 442, 443,
|
|
|
|
|
445, 440, 430, 446, 453, 450, 441, 451, 457, 458,
|
|
|
|
|
|
|
|
|
|
459, 466, 470, 461, 463, 472, 476, 473, 479, 481,
|
|
|
|
|
484, 486, 492, 468, 489, 490, 493, 496, 494, 498,
|
|
|
|
|
501, 504, 500, 505, 508, 509, 510, 514, 520, 519,
|
|
|
|
|
516, 523, 524, 530, 529, 534, 535, 536, 539, 542,
|
|
|
|
|
548, 546, 547, 550, 549, 551, 556, 564, 568, 557,
|
|
|
|
|
560, 561, 569, 571, 575, 591, 577, 579, 581, 582,
|
|
|
|
|
584, 595, 609, 596, 585, 597, 613, 598, 611, 614,
|
|
|
|
|
623, 617, 622, 624, 627, 626, 629, 630, 631, 634,
|
|
|
|
|
635, 642, 632, 646, 654, 651, 658, 659, 639, 586,
|
|
|
|
|
665, 650, 661, 663, 668, 666, 669, 673, 676, 2793,
|
|
|
|
|
|
|
|
|
|
678, 680, 681, 682, 683, 2793, 684, 685, 686, 687,
|
|
|
|
|
688, 698, 690, 697, 699, 702, 703, 707, 709, 710,
|
|
|
|
|
730, 713, 711, 721, 714, 715, 722, 724, 739, 728,
|
|
|
|
|
732, 737, 734, 741, 742, 745, 748, 750, 751, 762,
|
|
|
|
|
758, 759, 760, 769, 764, 766, 771, 772, 779, 775,
|
|
|
|
|
781, 784, 790, 792, 794, 800, 786, 796, 798, 804,
|
|
|
|
|
805, 803, 797, 811, 810, 812, 813, 818, 814, 827,
|
|
|
|
|
820, 828, 830, 833, 823, 835, 837, 839, 846, 842,
|
|
|
|
|
844, 849, 845, 843, 854, 855, 859, 858, 870, 871,
|
|
|
|
|
864, 872, 879, 880, 857, 881, 867, 877, 884, 886,
|
|
|
|
|
|
|
|
|
|
887, 888, 889, 892, 893, 899, 896, 900, 898, 905,
|
|
|
|
|
907, 909, 911, 913, 914, 917, 920, 918, 919, 928,
|
|
|
|
|
929, 931, 933, 932, 935, 939, 934, 941, 2793, 949,
|
|
|
|
|
948, 945, 951, 953, 956, 2793, 2793, 958, 2793, 2793,
|
|
|
|
|
954, 959, 960, 967, 976, 968, 966, 972, 974, 982,
|
|
|
|
|
979, 989, 970, 991, 993, 998, 987, 999, 1000, 1001,
|
|
|
|
|
1004, 1005, 1006, 1010, 1017, 1020, 1013, 1021, 1014, 1024,
|
|
|
|
|
1025, 1026, 1028, 1030, 1033, 1039, 1036, 2793, 1037, 1038,
|
|
|
|
|
1044, 1042, 1047, 2793, 1046, 1048, 1049, 1051, 1054, 1059,
|
|
|
|
|
1056, 1060, 1062, 1063, 1066, 1069, 1068, 1061, 1072, 1078,
|
|
|
|
|
|
|
|
|
|
1089, 1087, 1077, 1085, 1088, 1090, 1094, 1103, 1099, 1092,
|
|
|
|
|
1100, 1106, 1104, 1108, 1115, 1105, 1112, 1109, 1117, 1118,
|
|
|
|
|
1142, 1119, 1121, 1125, 1122, 1126, 1127, 1129, 1133, 1135,
|
|
|
|
|
1154, 1144, 1138, 1134, 1156, 1159, 1161, 1163, 1165, 1167,
|
|
|
|
|
1168, 2793, 1175, 1171, 1173, 1176, 1178, 1179, 1181, 1182,
|
|
|
|
|
1186, 1185, 1188, 1187, 1199, 2793, 1193, 1195, 1200, 1203,
|
|
|
|
|
1204, 1206, 1207, 1217, 1219, 2793, 1225, 1222, 1227, 1221,
|
|
|
|
|
1228, 1229, 1210, 1233, 1234, 1235, 1237, 1240, 1243, 1245,
|
|
|
|
|
1244, 1247, 1249, 1251, 1252, 1255, 1256, 1258, 1257, 1266,
|
|
|
|
|
1260, 1264, 1278, 1279, 1265, 1282, 1277, 1283, 1286, 1288,
|
|
|
|
|
|
|
|
|
|
1285, 1290, 1287, 1289, 2793, 175, 1291, 1292, 1293, 1300,
|
|
|
|
|
1309, 1310, 1294, 1302, 1312, 1311, 1318, 1301, 1322, 1319,
|
|
|
|
|
1323, 1324, 1325, 1330, 1327, 1334, 1331, 1328, 1336, 1341,
|
|
|
|
|
1339, 1342, 1347, 1348, 1345, 1349, 1350, 2793, 1357, 1356,
|
|
|
|
|
1364, 1355, 1361, 1378, 1362, 1367, 1374, 1376, 1384, 1382,
|
|
|
|
|
1386, 1388, 1390, 1392, 1379, 1394, 1400, 1401, 1398, 1402,
|
|
|
|
|
1404, 1405, 2793, 1407, 1408, 1409, 1410, 1414, 1417, 1415,
|
|
|
|
|
1419, 1421, 1431, 1426, 1435, 2793, 1436, 1438, 1428, 1445,
|
|
|
|
|
1432, 1449, 1450, 1454, 1440, 1451, 1457, 1458, 1461, 1459,
|
|
|
|
|
1464, 1466, 2793, 1472, 1474, 1471, 1480, 1478, 1479, 1481,
|
|
|
|
|
|
|
|
|
|
1483, 1468, 1484, 1490, 1486, 1489, 1493, 1494, 1496, 1497,
|
|
|
|
|
1499, 1491, 1500, 2793, 1513, 1501, 1502, 1510, 1503, 1504,
|
|
|
|
|
1519, 1518, 1525, 1526, 1528, 1529, 1530, 1531, 1532, 1533,
|
|
|
|
|
1541, 1534, 1539, 1542, 1547, 1558, 1559, 1555, 2793, 1561,
|
|
|
|
|
1557, 1564, 1546, 1571, 1568, 1569, 1572, 1573, 1574, 1575,
|
|
|
|
|
1582, 1576, 1579, 1583, 1584, 1580, 1585, 1586, 1589, 1587,
|
|
|
|
|
1596, 1597, 1604, 1605, 1608, 1609, 1611, 1612, 1621, 2793,
|
|
|
|
|
1617, 2793, 1618, 1619, 1627, 2793, 1629, 2793, 1631, 2793,
|
|
|
|
|
1633, 1637, 1624, 1626, 1634, 1640, 1641, 1643, 1644, 1646,
|
|
|
|
|
1649, 1650, 1653, 1654, 1655, 2793, 1652, 1658, 1662, 1659,
|
|
|
|
|
|
|
|
|
|
1665, 1666, 1667, 1675, 1681, 1668, 1677, 1683, 1678, 2793,
|
|
|
|
|
1687, 1674, 1690, 1694, 1695, 1697, 1698, 1700, 1701, 1702,
|
|
|
|
|
1703, 1705, 1707, 1709, 1710, 1711, 1714, 1721, 1713, 1723,
|
|
|
|
|
1716, 1719, 1722, 2793, 1729, 1734, 1737, 1724, 2793, 2793,
|
|
|
|
|
1748, 1732, 1745, 1738, 1742, 1752, 1753, 1755, 1761, 1758,
|
|
|
|
|
1759, 1760, 1763, 1766, 1767, 1768, 1769, 1772, 1775, 2793,
|
|
|
|
|
1782, 1776, 1783, 1784, 1785, 1796, 1774, 1795, 2793, 2793,
|
|
|
|
|
1789, 1799, 1800, 1801, 1807, 1803, 1806, 2793, 1808, 1809,
|
|
|
|
|
1810, 1811, 1817, 1814, 1821, 1825, 1827, 1829, 1830, 1833,
|
|
|
|
|
1836, 1834, 1832, 1835, 1838, 1848, 2793, 1849, 1852, 1859,
|
|
|
|
|
|
|
|
|
|
1839, 1853, 1855, 1857, 1861, 1863, 1865, 1871, 1867, 2793,
|
|
|
|
|
1873, 1869, 1879, 1876, 1878, 1882, 1885, 1884, 1886, 1888,
|
|
|
|
|
1889, 1890, 1892, 1893, 1894, 1897, 2793, 1904, 1900, 1905,
|
|
|
|
|
1907, 1912, 1902, 1915, 1910, 1918, 2793, 1922, 1929, 1923,
|
|
|
|
|
1925, 1931, 1933, 1926, 1937, 1939, 1940, 1941, 1942, 1944,
|
|
|
|
|
1946, 1947, 1950, 1951, 1952, 1960, 1962, 1969, 1970, 1967,
|
|
|
|
|
1971, 1978, 1974, 1975, 1976, 1977, 1985, 1981, 1987, 1984,
|
|
|
|
|
2793, 1989, 1991, 1995, 1998, 2000, 2001, 1997, 2793, 2793,
|
|
|
|
|
1999, 2793, 2008, 2010, 2012, 2013, 2793, 2015, 2793, 2793,
|
|
|
|
|
2016, 2023, 2017, 2024, 2027, 2032, 2793, 2019, 2033, 2035,
|
|
|
|
|
|
|
|
|
|
2037, 2038, 2039, 2040, 2041, 2042, 2793, 2043, 2044, 2045,
|
|
|
|
|
2055, 2793, 2047, 2060, 2049, 2065, 2066, 2067, 2069, 2071,
|
|
|
|
|
2057, 2078, 2076, 2793, 2079, 2080, 2083, 2084, 2088, 2085,
|
|
|
|
|
2086, 2090, 2793, 2099, 2101, 2793, 2092, 2091, 2093, 2793,
|
|
|
|
|
2107, 2793, 2108, 2103, 2110, 2112, 2116, 2117, 2120, 2122,
|
|
|
|
|
2123, 2124, 2125, 2131, 2128, 2793, 2793, 2133, 2140, 2143,
|
|
|
|
|
2134, 2132, 2145, 2147, 2148, 2150, 2151, 2793, 2154, 2152,
|
|
|
|
|
2156, 2155, 2158, 2793, 2160, 2161, 2168, 2169, 2165, 2173,
|
|
|
|
|
2175, 2180, 2184, 2186, 2187, 2189, 2191, 2192, 2793, 2194,
|
|
|
|
|
2196, 2197, 2201, 2202, 2157, 2204, 2208, 2213, 2198, 2215,
|
|
|
|
|
|
|
|
|
|
2793, 2219, 2203, 2221, 2223, 2225, 2205, 2226, 2227, 2228,
|
|
|
|
|
2230, 2231, 2233, 2234, 2236, 2244, 2241, 2793, 2238, 2793,
|
|
|
|
|
2247, 2252, 2259, 2260, 2793, 2248, 2255, 2793, 2262, 2266,
|
|
|
|
|
2273, 2264, 2274, 2276, 2278, 2270, 2280, 2279, 2281, 2287,
|
|
|
|
|
2285, 2793, 2288, 2289, 2292, 2293, 2793, 2793, 2296, 2793,
|
|
|
|
|
2793, 2302, 2793, 2793, 2298, 2306, 2793, 2308, 2793, 2314,
|
|
|
|
|
2310, 2312, 2313, 2315, 2793, 2317, 2793, 2793, 2318, 2319,
|
|
|
|
|
2322, 2324, 2326, 2331, 2333, 2327, 2334, 2337, 2338, 2341,
|
|
|
|
|
2340, 2342, 2344, 2346, 2347, 2348, 2351, 2354, 2356, 2357,
|
|
|
|
|
2358, 2360, 2367, 2793, 2359, 2371, 2793, 2380, 2374, 2361,
|
|
|
|
|
|
|
|
|
|
2369, 2381, 2382, 2384, 2386, 2393, 2389, 2390, 2391, 2793,
|
|
|
|
|
2394, 2793, 2793, 2392, 2397, 2396, 2401, 2402, 2793, 2406,
|
|
|
|
|
2407, 2415, 2418, 2793, 2793, 2793, 2421, 2408, 2410, 2423,
|
|
|
|
|
2424, 2425, 2427, 2793, 2431, 2432, 2433, 2434, 2440, 2442,
|
|
|
|
|
2448, 2451, 2453, 2793, 2454, 2445, 2793, 2455, 2447, 2456,
|
|
|
|
|
2461, 2462, 2464, 2793, 2466, 2467, 2469, 2471, 2475, 2476,
|
|
|
|
|
2472, 2793, 2478, 2479, 2793, 2482, 2793, 2793, 2483, 2488,
|
|
|
|
|
2490, 2495, 2497, 2499, 2491, 2500, 2506, 2505, 2507, 2793,
|
|
|
|
|
2793, 2502, 2793, 2793, 2510, 2512, 2513, 2515, 2517, 2518,
|
|
|
|
|
2519, 2521, 2522, 2524, 2793, 2525, 2793, 2527, 2535, 2526,
|
|
|
|
|
|
|
|
|
|
2537, 2793, 2540, 2536, 2538, 2793, 2793, 2793, 2550, 2541,
|
|
|
|
|
2543, 2793, 2551, 2553, 2554, 2557, 2559, 2560, 2561, 2564,
|
|
|
|
|
2566, 2565, 2567, 2568, 2576, 2579, 2793, 2581, 2571, 2578,
|
|
|
|
|
2586, 2589, 2582, 2590, 2592, 2595, 2596, 2598, 2599, 2793,
|
|
|
|
|
2603, 2604, 2606, 2611, 2614, 2615, 2622, 2793, 2623, 2793,
|
|
|
|
|
2626, 2627, 2793, 2793, 2628, 2630, 2633, 2793, 2634, 2793,
|
|
|
|
|
2631, 2641, 2642, 2793, 2793, 2793, 2644, 2793, 2645, 2793,
|
|
|
|
|
2648, 2635, 2793, 2619, 2653, 2655, 2793, 2657, 2793, 2659,
|
|
|
|
|
2793, 2660, 2661, 2793, 2793, 2793, 2793, 2663, 2664, 2666,
|
|
|
|
|
2607, 2793, 2668, 2671, 2669, 2674, 2793, 2793, 2701, 2708,
|
|
|
|
|
|
|
|
|
|
2715, 2722, 2729, 94, 2736, 2743, 2750, 2757, 2764, 2771,
|
|
|
|
|
2778, 2785
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
static yyconst flex_int16_t yy_def[1413] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2014-05-20 06:38:32 -04:00
|
|
|
1398, 1, 1399, 1399, 1400, 1400, 1401, 1401, 1402, 1402,
|
|
|
|
|
1403, 1403, 1398, 1404, 1398, 1398, 1398, 1398, 1405, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1406,
|
|
|
|
|
1398, 1398, 1398, 1406, 1407, 1398, 1398, 1398, 1407, 1408,
|
|
|
|
|
1398, 1398, 1398, 1398, 1408, 1409, 1398, 1398, 1398, 1409,
|
|
|
|
|
1410, 1398, 1411, 1398, 1410, 1410, 1404, 1404, 1398, 1412,
|
|
|
|
|
1405, 1412, 1405, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1406, 1406, 1407, 1407, 1408, 1408, 1398, 1409, 1409,
|
|
|
|
|
1410, 1410, 1411, 1411, 1410, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1410, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1410, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1410, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1410, 1404, 1404, 1404, 1404, 1398, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1398, 1404, 1398, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1410, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1398, 1410, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1398, 1404, 1398, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1398, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1398,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1398, 1404, 1398, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1398, 1404, 1404, 1398, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1398, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1398, 1404, 1404, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1398, 1398, 1404, 1398,
|
|
|
|
|
1398, 1404, 1398, 1398, 1404, 1404, 1398, 1404, 1398, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1398, 1404, 1398, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1398, 1398, 1404, 1404, 1404, 1404, 1404, 1398, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1398, 1398, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1398, 1404, 1398, 1398, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1398, 1404, 1398, 1398, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1398, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1398, 1398, 1398, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1404, 1404, 1404, 1404, 1398, 1404, 1398,
|
|
|
|
|
1404, 1404, 1398, 1398, 1404, 1404, 1404, 1398, 1404, 1398,
|
|
|
|
|
1404, 1404, 1404, 1398, 1398, 1398, 1404, 1398, 1404, 1398,
|
|
|
|
|
1404, 1404, 1398, 1404, 1404, 1404, 1398, 1404, 1398, 1404,
|
|
|
|
|
1398, 1404, 1404, 1398, 1398, 1398, 1398, 1404, 1404, 1404,
|
|
|
|
|
1404, 1398, 1404, 1404, 1404, 1404, 1398, 0, 1398, 1398,
|
|
|
|
|
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
static yyconst flex_int16_t yy_nxt[2833] =
|
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,
|
2013-11-05 21:48:59 -05:00
|
|
|
42, 43, 41, 42, 43, 124, 46, 47, 124, 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,
|
2013-11-05 21:48:59 -05:00
|
|
|
57, 58, 59, 122, 122, 55, 51, 52, 53, 54,
|
2014-05-20 06:38:32 -04:00
|
|
|
60, 18, 68, 103, 211, 74, 75, 55, 15, 16,
|
2009-11-30 08:07:39 -05:00
|
|
|
17, 62, 63, 64, 67, 67, 68, 67, 67, 65,
|
|
|
|
|
|
2013-11-05 21:48:59 -05:00
|
|
|
67, 94, 68, 76, 68, 67, 84, 68, 66, 15,
|
|
|
|
|
16, 17, 62, 63, 64, 68, 68, 77, 136, 86,
|
|
|
|
|
65, 69, 93, 132, 78, 70, 85, 68, 87, 66,
|
|
|
|
|
72, 79, 72, 72, 68, 72, 88, 135, 68, 80,
|
|
|
|
|
72, 73, 89, 81, 68, 90, 82, 68, 96, 83,
|
|
|
|
|
68, 100, 91, 68, 92, 101, 97, 137, 68, 95,
|
|
|
|
|
68, 68, 98, 68, 120, 108, 99, 104, 121, 68,
|
|
|
|
|
68, 102, 68, 105, 111, 109, 106, 68, 110, 68,
|
|
|
|
|
115, 138, 116, 107, 112, 177, 118, 132, 113, 114,
|
|
|
|
|
126, 119, 126, 126, 68, 126, 158, 117, 129, 129,
|
|
|
|
|
|
|
|
|
|
72, 68, 72, 72, 131, 72, 131, 131, 141, 131,
|
|
|
|
|
67, 134, 67, 67, 68, 67, 68, 139, 68, 140,
|
|
|
|
|
67, 72, 68, 72, 72, 145, 72, 68, 142, 68,
|
|
|
|
|
68, 72, 73, 68, 68, 68, 143, 68, 68, 151,
|
2014-05-20 06:38:32 -04:00
|
|
|
68, 147, 152, 146, 144, 68, 196, 68, 132, 148,
|
2013-11-05 21:48:59 -05:00
|
|
|
154, 149, 150, 155, 153, 157, 68, 68, 68, 68,
|
|
|
|
|
68, 159, 161, 68, 68, 166, 162, 156, 165, 163,
|
|
|
|
|
68, 164, 68, 68, 68, 68, 167, 168, 171, 68,
|
|
|
|
|
173, 160, 68, 68, 174, 169, 68, 180, 68, 68,
|
|
|
|
|
68, 182, 68, 170, 68, 68, 176, 172, 68, 68,
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
68, 181, 175, 68, 189, 178, 179, 68, 68, 187,
|
|
|
|
|
124, 183, 184, 124, 185, 190, 186, 228, 191, 122,
|
|
|
|
|
122, 126, 132, 126, 126, 192, 126, 129, 129, 131,
|
|
|
|
|
188, 131, 131, 72, 131, 72, 72, 68, 72, 68,
|
|
|
|
|
194, 68, 193, 68, 134, 68, 199, 68, 68, 68,
|
|
|
|
|
202, 68, 200, 201, 195, 68, 197, 68, 208, 130,
|
|
|
|
|
68, 68, 68, 198, 68, 210, 209, 68, 203, 68,
|
|
|
|
|
229, 212, 68, 204, 213, 214, 68, 215, 205, 68,
|
|
|
|
|
220, 68, 68, 68, 206, 207, 219, 223, 216, 128,
|
|
|
|
|
218, 217, 68, 68, 224, 225, 227, 68, 230, 222,
|
|
|
|
|
|
|
|
|
|
68, 68, 221, 68, 68, 232, 226, 233, 68, 231,
|
|
|
|
|
68, 68, 68, 68, 68, 234, 68, 235, 68, 238,
|
|
|
|
|
237, 68, 68, 68, 239, 68, 246, 242, 68, 127,
|
|
|
|
|
68, 68, 248, 236, 68, 250, 240, 68, 241, 68,
|
|
|
|
|
68, 249, 68, 244, 245, 243, 68, 253, 247, 254,
|
|
|
|
|
256, 252, 132, 68, 68, 68, 251, 68, 68, 257,
|
|
|
|
|
262, 260, 68, 68, 259, 68, 261, 263, 264, 68,
|
|
|
|
|
68, 68, 255, 68, 268, 68, 258, 266, 68, 269,
|
|
|
|
|
68, 265, 68, 270, 68, 68, 276, 273, 68, 271,
|
|
|
|
|
272, 68, 274, 68, 275, 267, 68, 278, 68, 280,
|
|
|
|
|
|
|
|
|
|
281, 68, 68, 279, 68, 68, 68, 277, 68, 285,
|
|
|
|
|
68, 289, 68, 68, 287, 290, 68, 68, 284, 282,
|
|
|
|
|
68, 68, 68, 283, 286, 288, 68, 300, 68, 291,
|
|
|
|
|
294, 68, 68, 298, 299, 68, 68, 292, 301, 296,
|
|
|
|
|
293, 68, 68, 295, 297, 306, 68, 68, 68, 308,
|
|
|
|
|
305, 68, 307, 302, 68, 311, 303, 304, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 313, 314, 309, 315, 68, 68,
|
|
|
|
|
125, 321, 68, 68, 310, 316, 68, 320, 312, 317,
|
|
|
|
|
68, 68, 318, 68, 319, 322, 327, 68, 325, 68,
|
|
|
|
|
323, 68, 324, 132, 68, 326, 68, 68, 68, 372,
|
|
|
|
|
|
|
|
|
|
338, 329, 328, 68, 337, 330, 331, 68, 68, 68,
|
|
|
|
|
68, 341, 345, 340, 339, 332, 343, 333, 334, 335,
|
|
|
|
|
347, 68, 336, 68, 346, 68, 68, 342, 344, 68,
|
|
|
|
|
348, 350, 351, 352, 68, 68, 68, 349, 68, 68,
|
|
|
|
|
357, 68, 68, 68, 68, 358, 68, 68, 365, 353,
|
|
|
|
|
354, 68, 355, 356, 68, 361, 363, 360, 68, 364,
|
|
|
|
|
359, 367, 68, 68, 371, 123, 68, 366, 362, 368,
|
|
|
|
|
68, 68, 373, 68, 369, 68, 370, 68, 68, 378,
|
|
|
|
|
68, 68, 375, 374, 377, 68, 379, 376, 68, 381,
|
|
|
|
|
68, 382, 68, 68, 68, 68, 68, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 384, 68, 385, 390, 392, 380, 386, 391, 68,
|
|
|
|
|
68, 68, 389, 383, 68, 68, 387, 388, 396, 68,
|
|
|
|
|
393, 68, 68, 68, 398, 68, 68, 68, 408, 410,
|
|
|
|
|
397, 394, 395, 68, 68, 412, 68, 399, 409, 407,
|
|
|
|
|
68, 400, 68, 401, 68, 406, 68, 411, 402, 68,
|
|
|
|
|
403, 68, 414, 68, 68, 415, 416, 68, 404, 420,
|
|
|
|
|
68, 413, 68, 132, 417, 418, 421, 424, 405, 425,
|
|
|
|
|
68, 68, 68, 68, 68, 419, 68, 423, 68, 422,
|
|
|
|
|
429, 68, 426, 68, 68, 428, 432, 68, 430, 427,
|
|
|
|
|
431, 68, 436, 68, 434, 437, 68, 438, 68, 433,
|
|
|
|
|
|
|
|
|
|
435, 132, 68, 439, 68, 440, 68, 441, 68, 68,
|
|
|
|
|
68, 445, 68, 443, 444, 68, 68, 68, 449, 442,
|
|
|
|
|
447, 446, 68, 68, 68, 68, 68, 450, 452, 448,
|
|
|
|
|
68, 455, 68, 453, 457, 68, 130, 454, 451, 68,
|
|
|
|
|
68, 458, 68, 459, 456, 68, 460, 68, 463, 68,
|
|
|
|
|
462, 68, 464, 467, 68, 68, 68, 68, 68, 469,
|
|
|
|
|
468, 68, 471, 466, 470, 465, 68, 68, 461, 68,
|
|
|
|
|
68, 68, 474, 472, 475, 476, 68, 477, 479, 68,
|
|
|
|
|
473, 478, 68, 68, 68, 480, 483, 481, 486, 68,
|
|
|
|
|
484, 68, 68, 68, 485, 487, 68, 488, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 482, 492, 68, 68, 497, 489, 68, 493,
|
|
|
|
|
68, 68, 68, 499, 500, 490, 494, 68, 491, 68,
|
|
|
|
|
496, 68, 495, 68, 502, 68, 68, 498, 501, 68,
|
|
|
|
|
68, 68, 68, 506, 507, 509, 510, 503, 505, 508,
|
|
|
|
|
68, 68, 504, 68, 132, 68, 68, 68, 512, 515,
|
|
|
|
|
516, 68, 513, 68, 519, 517, 521, 68, 511, 514,
|
|
|
|
|
68, 68, 520, 68, 522, 68, 68, 518, 68, 523,
|
|
|
|
|
68, 68, 68, 525, 531, 528, 530, 529, 68, 68,
|
|
|
|
|
68, 524, 68, 526, 68, 538, 68, 527, 68, 541,
|
|
|
|
|
532, 68, 533, 542, 68, 534, 539, 545, 543, 68,
|
|
|
|
|
|
|
|
|
|
535, 68, 544, 68, 546, 68, 536, 537, 547, 540,
|
|
|
|
|
68, 68, 68, 68, 552, 548, 68, 68, 68, 549,
|
|
|
|
|
551, 556, 68, 555, 557, 68, 68, 558, 559, 68,
|
|
|
|
|
550, 553, 68, 68, 561, 554, 68, 68, 68, 560,
|
|
|
|
|
68, 566, 68, 564, 562, 68, 568, 565, 68, 68,
|
|
|
|
|
68, 68, 570, 567, 68, 563, 68, 572, 68, 68,
|
|
|
|
|
68, 68, 574, 68, 571, 577, 68, 569, 68, 573,
|
|
|
|
|
575, 68, 68, 68, 68, 68, 583, 582, 68, 576,
|
|
|
|
|
68, 68, 578, 579, 68, 591, 588, 586, 580, 68,
|
|
|
|
|
68, 581, 584, 589, 585, 587, 592, 68, 590, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 593, 68, 596, 68, 598, 594, 595,
|
|
|
|
|
599, 68, 68, 603, 600, 68, 68, 68, 68, 605,
|
|
|
|
|
68, 68, 601, 597, 68, 602, 606, 132, 608, 68,
|
|
|
|
|
68, 68, 607, 68, 68, 617, 604, 68, 68, 68,
|
|
|
|
|
609, 68, 625, 128, 611, 68, 68, 68, 618, 620,
|
|
|
|
|
68, 624, 621, 610, 68, 623, 68, 612, 632, 613,
|
|
|
|
|
622, 630, 619, 614, 631, 615, 68, 626, 68, 633,
|
|
|
|
|
616, 68, 627, 68, 628, 68, 634, 68, 638, 68,
|
|
|
|
|
68, 635, 640, 68, 639, 68, 641, 68, 68, 636,
|
|
|
|
|
68, 68, 629, 68, 68, 644, 637, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 643, 646, 648, 642, 68, 652, 68, 651, 127,
|
|
|
|
|
645, 68, 68, 647, 650, 68, 68, 649, 68, 68,
|
|
|
|
|
656, 657, 68, 658, 653, 654, 661, 655, 659, 68,
|
|
|
|
|
660, 68, 662, 68, 68, 664, 663, 68, 665, 68,
|
|
|
|
|
68, 68, 666, 670, 669, 68, 68, 68, 667, 68,
|
|
|
|
|
671, 672, 68, 673, 676, 68, 68, 68, 675, 68,
|
|
|
|
|
668, 68, 679, 68, 68, 674, 677, 68, 68, 68,
|
|
|
|
|
68, 125, 68, 684, 678, 685, 68, 68, 68, 680,
|
|
|
|
|
683, 687, 681, 688, 682, 690, 691, 686, 689, 68,
|
|
|
|
|
68, 68, 692, 693, 68, 68, 697, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 705, 694, 695,
|
|
|
|
|
696, 699, 68, 68, 68, 698, 706, 702, 700, 703,
|
|
|
|
|
708, 68, 68, 68, 68, 704, 701, 707, 709, 710,
|
|
|
|
|
68, 68, 713, 714, 68, 68, 68, 68, 711, 68,
|
|
|
|
|
68, 717, 68, 68, 716, 712, 68, 719, 68, 715,
|
|
|
|
|
721, 68, 722, 68, 68, 723, 718, 68, 720, 68,
|
|
|
|
|
68, 68, 68, 724, 733, 725, 729, 68, 68, 68,
|
|
|
|
|
726, 732, 730, 68, 68, 727, 68, 728, 737, 68,
|
|
|
|
|
123, 731, 734, 743, 735, 738, 68, 736, 68, 739,
|
|
|
|
|
68, 68, 741, 740, 68, 742, 68, 744, 68, 745,
|
|
|
|
|
|
|
|
|
|
68, 747, 68, 746, 68, 750, 68, 752, 753, 749,
|
|
|
|
|
68, 748, 68, 68, 68, 754, 68, 68, 755, 68,
|
|
|
|
|
68, 68, 68, 761, 751, 756, 68, 68, 760, 68,
|
|
|
|
|
757, 68, 758, 68, 759, 762, 764, 766, 68, 763,
|
|
|
|
|
68, 767, 770, 68, 68, 765, 772, 68, 68, 768,
|
|
|
|
|
68, 773, 68, 771, 68, 774, 776, 68, 769, 775,
|
|
|
|
|
778, 68, 68, 68, 777, 780, 68, 779, 782, 68,
|
|
|
|
|
68, 68, 781, 68, 785, 784, 68, 783, 68, 789,
|
|
|
|
|
68, 790, 787, 68, 68, 788, 68, 792, 791, 786,
|
|
|
|
|
68, 68, 68, 68, 796, 68, 68, 799, 68, 793,
|
|
|
|
|
|
|
|
|
|
797, 68, 68, 68, 795, 68, 68, 803, 68, 68,
|
|
|
|
|
794, 68, 68, 68, 68, 68, 68, 808, 800, 798,
|
|
|
|
|
809, 801, 68, 802, 810, 68, 807, 813, 804, 806,
|
|
|
|
|
68, 68, 812, 814, 805, 816, 815, 68, 68, 811,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 822, 817, 824,
|
|
|
|
|
823, 68, 819, 68, 68, 820, 818, 828, 68, 68,
|
|
|
|
|
821, 827, 826, 825, 830, 831, 832, 68, 833, 68,
|
|
|
|
|
68, 68, 834, 68, 835, 829, 68, 837, 838, 840,
|
|
|
|
|
68, 68, 839, 68, 68, 68, 68, 68, 68, 846,
|
|
|
|
|
836, 68, 68, 845, 68, 68, 68, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
841, 68, 854, 842, 855, 844, 851, 847, 68, 68,
|
|
|
|
|
848, 843, 856, 853, 849, 850, 68, 68, 852, 860,
|
|
|
|
|
68, 68, 857, 68, 68, 858, 861, 862, 864, 68,
|
|
|
|
|
68, 68, 867, 68, 868, 866, 68, 859, 68, 68,
|
|
|
|
|
869, 68, 870, 68, 863, 68, 68, 865, 871, 68,
|
|
|
|
|
872, 873, 68, 68, 878, 68, 68, 876, 68, 880,
|
|
|
|
|
875, 68, 68, 874, 68, 68, 68, 68, 877, 883,
|
|
|
|
|
68, 68, 885, 882, 68, 888, 879, 68, 68, 68,
|
|
|
|
|
68, 892, 886, 881, 887, 884, 68, 68, 894, 68,
|
|
|
|
|
68, 889, 893, 68, 897, 68, 898, 890, 891, 68,
|
|
|
|
|
|
|
|
|
|
895, 902, 68, 896, 899, 901, 68, 68, 903, 68,
|
|
|
|
|
68, 900, 68, 68, 68, 68, 910, 68, 907, 68,
|
|
|
|
|
909, 68, 68, 68, 911, 68, 68, 904, 68, 905,
|
|
|
|
|
918, 68, 906, 68, 68, 68, 68, 908, 917, 912,
|
|
|
|
|
915, 68, 913, 914, 68, 916, 68, 928, 919, 68,
|
|
|
|
|
68, 920, 926, 923, 68, 921, 922, 68, 924, 927,
|
|
|
|
|
68, 925, 929, 931, 68, 68, 930, 68, 936, 937,
|
|
|
|
|
68, 68, 68, 68, 933, 68, 935, 934, 68, 68,
|
|
|
|
|
68, 68, 944, 932, 68, 939, 68, 68, 68, 947,
|
|
|
|
|
949, 938, 941, 940, 68, 68, 68, 68, 943, 953,
|
|
|
|
|
|
|
|
|
|
945, 68, 950, 952, 942, 946, 948, 68, 68, 956,
|
|
|
|
|
954, 68, 68, 68, 960, 68, 955, 951, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 957, 964, 68, 965, 966, 68,
|
|
|
|
|
958, 961, 959, 68, 967, 968, 962, 68, 971, 68,
|
|
|
|
|
963, 68, 68, 975, 68, 68, 68, 68, 68, 979,
|
|
|
|
|
68, 68, 970, 978, 973, 972, 969, 974, 976, 980,
|
|
|
|
|
68, 68, 977, 982, 68, 68, 983, 68, 987, 68,
|
|
|
|
|
981, 68, 984, 68, 989, 68, 990, 68, 991, 68,
|
|
|
|
|
993, 68, 992, 68, 985, 68, 995, 986, 68, 997,
|
|
|
|
|
68, 68, 999, 988, 68, 998, 68, 68, 68, 994,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 1007, 68, 68, 68, 1009, 1000, 68,
|
|
|
|
|
1001, 1012, 68, 996, 68, 1002, 68, 68, 1003, 68,
|
|
|
|
|
1004, 1005, 68, 1006, 68, 1011, 1014, 68, 1017, 1010,
|
|
|
|
|
68, 1008, 1013, 1015, 68, 68, 1021, 68, 68, 1020,
|
|
|
|
|
1016, 68, 1024, 68, 1023, 68, 1019, 1026, 1018, 68,
|
|
|
|
|
1025, 68, 68, 68, 68, 1022, 68, 1033, 68, 68,
|
|
|
|
|
1031, 1036, 68, 68, 68, 1032, 1028, 1039, 1030, 1027,
|
|
|
|
|
1034, 1029, 68, 1040, 68, 1035, 1041, 1043, 1038, 68,
|
|
|
|
|
1042, 68, 68, 68, 1037, 1046, 68, 68, 68, 68,
|
|
|
|
|
68, 1048, 1051, 68, 1053, 1045, 68, 68, 1047, 68,
|
|
|
|
|
|
|
|
|
|
1049, 68, 1056, 68, 1055, 1044, 1057, 68, 1054, 68,
|
|
|
|
|
68, 68, 68, 68, 1050, 1052, 1058, 1059, 1061, 1060,
|
|
|
|
|
68, 1063, 68, 1062, 68, 68, 1068, 68, 68, 68,
|
|
|
|
|
1070, 68, 1064, 1066, 1067, 68, 68, 1072, 1075, 68,
|
|
|
|
|
1065, 1073, 1069, 1074, 68, 68, 1071, 68, 1077, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 68, 1085, 68,
|
|
|
|
|
1084, 68, 1079, 1080, 1081, 1076, 1398, 68, 1082, 68,
|
|
|
|
|
1078, 1089, 68, 1088, 1083, 1086, 1087, 68, 68, 68,
|
|
|
|
|
1092, 68, 1091, 68, 1093, 1097, 1094, 1090, 68, 1096,
|
|
|
|
|
68, 68, 68, 1098, 1101, 68, 68, 68, 68, 1105,
|
|
|
|
|
|
|
|
|
|
68, 1095, 68, 68, 68, 68, 1100, 1106, 1102, 1103,
|
|
|
|
|
1099, 68, 1104, 68, 1107, 68, 1108, 1110, 1109, 68,
|
|
|
|
|
68, 1112, 68, 1111, 68, 1113, 1114, 1118, 68, 68,
|
|
|
|
|
1115, 1120, 68, 1117, 68, 68, 68, 68, 1119, 1122,
|
|
|
|
|
68, 1123, 1125, 68, 68, 68, 68, 1116, 1126, 1131,
|
|
|
|
|
1124, 1128, 68, 1121, 1127, 68, 1129, 68, 1130, 68,
|
|
|
|
|
68, 1132, 68, 68, 68, 1134, 68, 68, 68, 68,
|
|
|
|
|
68, 1142, 68, 68, 1133, 1161, 1143, 68, 1146, 1140,
|
|
|
|
|
68, 68, 1136, 1138, 1147, 68, 1148, 68, 1135, 1139,
|
|
|
|
|
1137, 1141, 68, 1144, 1145, 1150, 68, 1151, 68, 68,
|
|
|
|
|
|
|
|
|
|
1153, 68, 1154, 68, 68, 1149, 68, 1157, 68, 68,
|
|
|
|
|
68, 1156, 1159, 68, 68, 68, 68, 68, 1152, 1162,
|
|
|
|
|
68, 1163, 1173, 1155, 1165, 68, 1167, 68, 1158, 1166,
|
|
|
|
|
1168, 68, 1160, 68, 1170, 68, 1164, 68, 68, 68,
|
|
|
|
|
68, 1169, 68, 68, 1171, 68, 68, 1177, 68, 1172,
|
|
|
|
|
68, 1182, 1175, 68, 1179, 1180, 68, 1183, 1178, 68,
|
|
|
|
|
68, 1176, 1181, 1174, 68, 1186, 1187, 68, 1185, 1398,
|
|
|
|
|
1184, 68, 68, 1188, 68, 1190, 68, 1192, 68, 1191,
|
|
|
|
|
1195, 1189, 68, 1193, 1194, 68, 68, 1197, 68, 1196,
|
|
|
|
|
68, 68, 68, 68, 1203, 1198, 1200, 68, 1202, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 1199, 1204, 68, 68, 1206, 1208, 68, 1209,
|
|
|
|
|
68, 1201, 1207, 1210, 68, 1211, 1205, 1212, 68, 1213,
|
|
|
|
|
68, 1214, 68, 1215, 68, 68, 68, 68, 1219, 68,
|
|
|
|
|
68, 68, 1218, 1221, 68, 1220, 68, 1224, 68, 68,
|
|
|
|
|
1216, 1223, 1225, 68, 1226, 68, 68, 1217, 1222, 68,
|
|
|
|
|
68, 1227, 68, 68, 68, 1234, 68, 1232, 68, 68,
|
|
|
|
|
68, 1229, 1230, 68, 1228, 1231, 68, 1235, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 1233, 1242, 1238, 1243, 1244, 68,
|
|
|
|
|
1237, 68, 1240, 68, 1246, 1236, 68, 1241, 1249, 1245,
|
|
|
|
|
1239, 1247, 68, 68, 68, 1248, 68, 1254, 68, 1250,
|
|
|
|
|
|
|
|
|
|
1255, 68, 68, 68, 68, 68, 68, 1262, 68, 68,
|
|
|
|
|
1252, 1251, 1261, 68, 68, 1253, 1256, 1265, 68, 68,
|
|
|
|
|
68, 1257, 68, 1258, 1260, 1259, 1267, 68, 1263, 1268,
|
|
|
|
|
68, 1271, 1264, 68, 1269, 68, 68, 68, 1266, 68,
|
|
|
|
|
1272, 1273, 1270, 68, 68, 68, 68, 1275, 1398, 1277,
|
|
|
|
|
1278, 1280, 68, 1281, 68, 1282, 1274, 68, 1276, 68,
|
|
|
|
|
68, 1279, 1283, 68, 1284, 68, 68, 68, 68, 1286,
|
|
|
|
|
1287, 1285, 1288, 68, 68, 1291, 68, 1289, 68, 68,
|
|
|
|
|
1295, 68, 1290, 68, 68, 1292, 1297, 68, 68, 1299,
|
|
|
|
|
68, 68, 1296, 1302, 68, 68, 1298, 1293, 1294, 1300,
|
|
|
|
|
|
|
|
|
|
68, 1304, 68, 68, 1301, 1305, 1306, 68, 1307, 68,
|
|
|
|
|
1308, 68, 68, 1311, 68, 1303, 1312, 68, 68, 68,
|
|
|
|
|
1314, 1309, 68, 1313, 68, 68, 1310, 68, 1318, 68,
|
|
|
|
|
68, 68, 1316, 68, 68, 1320, 68, 68, 68, 68,
|
|
|
|
|
1325, 1315, 1328, 1323, 1317, 1319, 1327, 68, 68, 68,
|
|
|
|
|
68, 1321, 68, 68, 1334, 68, 1324, 1326, 1329, 1322,
|
|
|
|
|
1331, 1330, 68, 68, 1335, 68, 68, 1333, 1336, 68,
|
|
|
|
|
1340, 68, 68, 68, 1337, 1332, 68, 68, 68, 68,
|
|
|
|
|
68, 1341, 1345, 68, 1339, 1338, 1344, 1348, 68, 1342,
|
|
|
|
|
68, 68, 1350, 68, 68, 1343, 1349, 1353, 68, 1347,
|
|
|
|
|
|
|
|
|
|
1354, 68, 68, 1351, 68, 1346, 1358, 68, 68, 1360,
|
|
|
|
|
68, 68, 1352, 1355, 1356, 68, 68, 1364, 68, 68,
|
|
|
|
|
1359, 1363, 1365, 68, 1357, 1366, 68, 68, 1393, 1362,
|
|
|
|
|
1361, 68, 1367, 1368, 68, 68, 1369, 1370, 68, 68,
|
|
|
|
|
68, 1373, 68, 68, 1371, 68, 68, 68, 1372, 1383,
|
|
|
|
|
1374, 1375, 1377, 68, 68, 1379, 68, 68, 1378, 1381,
|
|
|
|
|
68, 1380, 1382, 1376, 1384, 68, 1385, 68, 1386, 68,
|
|
|
|
|
1387, 68, 68, 68, 1389, 68, 68, 1392, 68, 1390,
|
|
|
|
|
68, 68, 1398, 68, 1388, 1397, 68, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1394, 1391, 1395, 1398, 1398,
|
|
|
|
|
|
|
|
|
|
1396, 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, 1398, 71,
|
|
|
|
|
71, 71, 71, 122, 122, 1398, 1398, 1398, 122, 122,
|
|
|
|
|
124, 124, 1398, 1398, 124, 1398, 124, 126, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 126, 129, 129, 1398, 1398, 1398, 129,
|
|
|
|
|
129, 131, 1398, 1398, 1398, 1398, 1398, 131, 133, 133,
|
|
|
|
|
1398, 133, 133, 133, 133, 72, 72, 1398, 72, 72,
|
|
|
|
|
72, 72, 13, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
static yyconst flex_int16_t yy_chk[2833] =
|
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,
|
2014-05-20 06:38:32 -04:00
|
|
|
9, 149, 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,
|
2014-05-20 06:38:32 -04:00
|
|
|
10, 8, 21, 33, 149, 21, 21, 8, 11, 11,
|
|
|
|
|
11, 11, 11, 11, 1404, 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,
|
2013-04-25 07:55:46 -04:00
|
|
|
19, 19, 27, 23, 30, 27, 23, 31, 31, 23,
|
2013-11-05 21:48:59 -05:00
|
|
|
32, 32, 27, 75, 27, 32, 31, 75, 34, 30,
|
|
|
|
|
35, 76, 31, 39, 39, 35, 31, 34, 39, 36,
|
|
|
|
|
109, 32, 38, 34, 36, 35, 34, 93, 35, 37,
|
2014-05-20 06:38:32 -04:00
|
|
|
37, 76, 37, 34, 36, 109, 38, 606, 36, 36,
|
2013-11-05 21:48:59 -05:00
|
|
|
55, 38, 55, 55, 79, 55, 93, 37, 60, 60,
|
|
|
|
|
|
|
|
|
|
63, 78, 63, 63, 65, 63, 65, 65, 79, 65,
|
|
|
|
|
68, 63, 68, 68, 77, 68, 80, 77, 81, 78,
|
|
|
|
|
68, 71, 82, 71, 71, 83, 71, 84, 80, 85,
|
|
|
|
|
83, 71, 71, 86, 87, 88, 81, 89, 139, 88,
|
|
|
|
|
90, 84, 89, 83, 82, 96, 139, 91, 131, 85,
|
|
|
|
|
91, 86, 87, 91, 90, 92, 94, 97, 99, 95,
|
|
|
|
|
92, 94, 95, 100, 98, 99, 95, 91, 98, 96,
|
|
|
|
|
101, 97, 102, 103, 104, 106, 100, 101, 104, 105,
|
|
|
|
|
106, 94, 107, 108, 106, 102, 110, 112, 111, 113,
|
|
|
|
|
114, 114, 112, 103, 115, 117, 108, 105, 116, 119,
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
121, 113, 107, 120, 119, 110, 111, 118, 164, 118,
|
|
|
|
|
125, 114, 115, 125, 116, 120, 117, 164, 121, 123,
|
|
|
|
|
123, 127, 135, 127, 127, 135, 127, 130, 130, 132,
|
|
|
|
|
118, 132, 132, 133, 132, 133, 133, 136, 133, 138,
|
|
|
|
|
137, 140, 136, 141, 133, 137, 142, 147, 143, 165,
|
|
|
|
|
144, 142, 142, 143, 138, 144, 140, 146, 146, 129,
|
|
|
|
|
148, 152, 153, 141, 145, 148, 147, 150, 145, 151,
|
|
|
|
|
165, 150, 155, 145, 151, 152, 154, 153, 145, 157,
|
|
|
|
|
157, 156, 158, 159, 145, 145, 156, 160, 154, 128,
|
|
|
|
|
155, 154, 160, 161, 161, 162, 163, 174, 166, 159,
|
|
|
|
|
|
|
|
|
|
162, 163, 158, 166, 167, 168, 162, 169, 170, 167,
|
|
|
|
|
168, 171, 169, 172, 173, 170, 175, 171, 177, 174,
|
|
|
|
|
173, 176, 178, 179, 175, 180, 181, 178, 182, 126,
|
|
|
|
|
183, 181, 183, 172, 184, 185, 176, 186, 177, 187,
|
|
|
|
|
185, 184, 193, 180, 180, 179, 188, 188, 182, 189,
|
|
|
|
|
190, 187, 192, 197, 189, 190, 186, 191, 194, 191,
|
|
|
|
|
195, 193, 196, 198, 192, 195, 194, 196, 197, 199,
|
|
|
|
|
200, 201, 189, 204, 201, 205, 191, 199, 202, 202,
|
|
|
|
|
214, 198, 203, 203, 206, 208, 209, 206, 207, 204,
|
|
|
|
|
205, 209, 207, 210, 208, 200, 211, 211, 212, 213,
|
|
|
|
|
|
|
|
|
|
214, 215, 216, 212, 213, 217, 219, 210, 218, 218,
|
|
|
|
|
220, 222, 223, 221, 220, 223, 222, 224, 217, 215,
|
|
|
|
|
225, 226, 227, 216, 219, 221, 228, 231, 231, 224,
|
|
|
|
|
226, 230, 229, 230, 230, 232, 233, 225, 232, 228,
|
|
|
|
|
225, 235, 234, 227, 229, 236, 236, 237, 238, 238,
|
|
|
|
|
235, 239, 237, 233, 240, 241, 233, 234, 242, 243,
|
|
|
|
|
241, 245, 244, 246, 243, 244, 239, 244, 247, 250,
|
|
|
|
|
124, 248, 251, 252, 240, 245, 248, 247, 242, 246,
|
|
|
|
|
249, 253, 246, 254, 246, 249, 254, 255, 252, 257,
|
|
|
|
|
250, 258, 251, 259, 260, 253, 261, 265, 290, 290,
|
|
|
|
|
|
|
|
|
|
258, 255, 254, 256, 257, 256, 256, 262, 264, 266,
|
|
|
|
|
268, 261, 265, 260, 259, 256, 263, 256, 256, 256,
|
|
|
|
|
267, 263, 256, 269, 266, 267, 270, 262, 264, 272,
|
|
|
|
|
268, 270, 271, 271, 273, 271, 274, 269, 276, 275,
|
|
|
|
|
276, 277, 278, 279, 283, 277, 280, 281, 283, 272,
|
|
|
|
|
273, 289, 274, 275, 282, 280, 281, 279, 284, 282,
|
|
|
|
|
278, 285, 292, 286, 289, 122, 285, 284, 280, 286,
|
|
|
|
|
287, 288, 291, 293, 287, 294, 288, 291, 296, 296,
|
|
|
|
|
295, 297, 293, 292, 295, 298, 297, 294, 299, 299,
|
|
|
|
|
301, 301, 302, 303, 304, 305, 307, 308, 309, 310,
|
|
|
|
|
|
|
|
|
|
311, 303, 313, 304, 310, 312, 298, 305, 311, 314,
|
|
|
|
|
312, 315, 309, 302, 316, 317, 307, 308, 316, 318,
|
|
|
|
|
313, 319, 320, 323, 318, 322, 325, 326, 324, 325,
|
|
|
|
|
317, 314, 315, 324, 327, 327, 328, 319, 324, 323,
|
|
|
|
|
330, 320, 321, 321, 331, 322, 333, 326, 321, 332,
|
|
|
|
|
321, 329, 329, 334, 335, 330, 331, 336, 321, 335,
|
|
|
|
|
337, 328, 338, 339, 332, 333, 336, 339, 321, 340,
|
|
|
|
|
341, 342, 343, 67, 340, 334, 345, 338, 346, 337,
|
|
|
|
|
344, 344, 341, 347, 348, 343, 347, 350, 345, 342,
|
|
|
|
|
346, 349, 351, 351, 349, 352, 352, 353, 357, 348,
|
|
|
|
|
|
|
|
|
|
350, 61, 353, 354, 354, 355, 355, 356, 358, 363,
|
|
|
|
|
359, 360, 356, 358, 359, 362, 360, 361, 364, 357,
|
|
|
|
|
362, 361, 365, 364, 366, 367, 369, 365, 367, 363,
|
|
|
|
|
368, 368, 371, 367, 370, 375, 56, 367, 366, 370,
|
|
|
|
|
372, 371, 373, 372, 369, 374, 373, 376, 375, 377,
|
|
|
|
|
374, 378, 376, 379, 380, 384, 381, 383, 379, 381,
|
|
|
|
|
380, 382, 383, 378, 382, 377, 385, 386, 373, 395,
|
|
|
|
|
388, 387, 386, 384, 387, 388, 391, 389, 390, 397,
|
|
|
|
|
385, 389, 389, 390, 392, 391, 393, 392, 395, 398,
|
|
|
|
|
393, 393, 394, 396, 394, 396, 399, 397, 400, 401,
|
|
|
|
|
|
|
|
|
|
402, 403, 392, 401, 404, 405, 406, 398, 407, 402,
|
|
|
|
|
409, 406, 408, 408, 409, 399, 403, 410, 400, 411,
|
|
|
|
|
405, 412, 404, 413, 411, 414, 415, 407, 410, 416,
|
|
|
|
|
418, 419, 417, 415, 416, 418, 419, 412, 414, 417,
|
|
|
|
|
420, 421, 413, 422, 424, 423, 427, 425, 421, 424,
|
|
|
|
|
425, 426, 422, 428, 428, 426, 430, 432, 420, 423,
|
|
|
|
|
431, 430, 428, 433, 431, 434, 441, 427, 435, 432,
|
|
|
|
|
438, 442, 443, 434, 444, 441, 443, 442, 447, 444,
|
|
|
|
|
446, 433, 453, 435, 448, 446, 449, 438, 445, 449,
|
|
|
|
|
445, 451, 445, 450, 450, 445, 447, 453, 451, 457,
|
|
|
|
|
|
|
|
|
|
445, 452, 452, 454, 454, 455, 445, 445, 455, 448,
|
|
|
|
|
456, 458, 459, 460, 460, 456, 461, 462, 463, 457,
|
|
|
|
|
459, 464, 464, 463, 465, 467, 469, 466, 467, 465,
|
|
|
|
|
458, 461, 466, 468, 469, 462, 470, 471, 472, 468,
|
|
|
|
|
473, 474, 474, 472, 470, 475, 476, 473, 477, 479,
|
|
|
|
|
480, 476, 479, 475, 482, 471, 481, 481, 485, 483,
|
|
|
|
|
486, 487, 483, 488, 480, 486, 489, 477, 491, 482,
|
|
|
|
|
483, 490, 492, 498, 493, 494, 492, 491, 495, 485,
|
|
|
|
|
497, 496, 487, 488, 499, 500, 497, 495, 489, 503,
|
|
|
|
|
500, 490, 493, 498, 494, 496, 501, 504, 499, 502,
|
|
|
|
|
|
|
|
|
|
505, 501, 506, 502, 510, 505, 507, 507, 503, 504,
|
|
|
|
|
508, 509, 511, 512, 509, 508, 513, 516, 512, 514,
|
|
|
|
|
514, 518, 510, 506, 517, 511, 515, 515, 517, 519,
|
|
|
|
|
520, 522, 516, 523, 525, 522, 513, 524, 526, 527,
|
|
|
|
|
518, 528, 530, 51, 520, 529, 534, 530, 523, 525,
|
|
|
|
|
533, 529, 526, 519, 521, 528, 532, 521, 534, 521,
|
|
|
|
|
527, 532, 524, 521, 533, 521, 531, 531, 535, 535,
|
|
|
|
|
521, 536, 531, 537, 531, 538, 536, 539, 540, 540,
|
|
|
|
|
541, 537, 543, 544, 541, 545, 544, 543, 546, 538,
|
|
|
|
|
547, 548, 531, 549, 550, 547, 539, 552, 551, 554,
|
|
|
|
|
|
|
|
|
|
553, 546, 549, 551, 545, 557, 555, 558, 554, 50,
|
|
|
|
|
548, 555, 559, 550, 553, 560, 561, 552, 562, 563,
|
|
|
|
|
560, 561, 573, 562, 557, 558, 565, 559, 563, 564,
|
|
|
|
|
564, 565, 567, 570, 568, 568, 567, 567, 568, 569,
|
|
|
|
|
571, 572, 569, 573, 572, 574, 575, 576, 570, 577,
|
|
|
|
|
574, 575, 578, 576, 579, 579, 581, 580, 578, 582,
|
|
|
|
|
571, 583, 582, 584, 585, 577, 580, 586, 587, 589,
|
|
|
|
|
588, 45, 591, 587, 581, 588, 592, 595, 590, 583,
|
|
|
|
|
586, 590, 584, 591, 585, 593, 594, 589, 592, 597,
|
|
|
|
|
593, 594, 595, 596, 596, 598, 600, 601, 599, 603,
|
|
|
|
|
|
|
|
|
|
600, 604, 602, 607, 608, 609, 613, 610, 597, 598,
|
|
|
|
|
599, 602, 610, 618, 614, 601, 611, 607, 603, 608,
|
|
|
|
|
613, 611, 612, 616, 615, 609, 604, 612, 614, 615,
|
|
|
|
|
617, 620, 618, 619, 619, 621, 622, 623, 616, 625,
|
|
|
|
|
628, 622, 624, 627, 621, 617, 626, 624, 629, 620,
|
|
|
|
|
626, 631, 627, 630, 632, 628, 623, 635, 625, 633,
|
|
|
|
|
634, 636, 637, 629, 639, 630, 634, 642, 640, 639,
|
|
|
|
|
631, 637, 635, 643, 645, 632, 641, 633, 643, 646,
|
|
|
|
|
40, 636, 640, 648, 641, 644, 647, 642, 648, 644,
|
|
|
|
|
644, 655, 646, 645, 650, 647, 649, 649, 651, 650,
|
|
|
|
|
|
|
|
|
|
652, 652, 653, 651, 654, 655, 656, 657, 658, 654,
|
|
|
|
|
659, 653, 657, 658, 660, 659, 661, 662, 660, 664,
|
|
|
|
|
665, 666, 667, 664, 656, 661, 668, 670, 662, 669,
|
|
|
|
|
661, 671, 661, 672, 661, 665, 667, 669, 674, 666,
|
|
|
|
|
679, 670, 673, 673, 681, 668, 675, 675, 677, 671,
|
|
|
|
|
678, 677, 685, 674, 14, 678, 680, 680, 672, 679,
|
|
|
|
|
682, 682, 683, 686, 681, 684, 684, 683, 686, 687,
|
|
|
|
|
688, 690, 685, 689, 689, 688, 691, 687, 692, 694,
|
|
|
|
|
702, 695, 691, 696, 694, 692, 695, 697, 696, 690,
|
|
|
|
|
698, 699, 697, 700, 701, 701, 703, 704, 705, 698,
|
|
|
|
|
|
|
|
|
|
702, 706, 704, 712, 700, 707, 708, 708, 709, 710,
|
|
|
|
|
699, 711, 713, 716, 717, 719, 720, 713, 705, 703,
|
|
|
|
|
715, 706, 718, 707, 715, 715, 712, 718, 709, 711,
|
|
|
|
|
722, 721, 717, 719, 710, 721, 720, 723, 724, 716,
|
|
|
|
|
725, 726, 727, 728, 729, 730, 732, 727, 722, 729,
|
|
|
|
|
728, 733, 724, 731, 734, 725, 723, 733, 743, 735,
|
|
|
|
|
726, 732, 731, 730, 735, 736, 737, 738, 738, 741,
|
|
|
|
|
736, 737, 740, 740, 741, 734, 742, 743, 744, 745,
|
|
|
|
|
745, 746, 744, 744, 747, 748, 749, 750, 752, 751,
|
|
|
|
|
742, 753, 756, 750, 751, 754, 755, 757, 758, 760,
|
|
|
|
|
|
|
|
|
|
746, 759, 759, 747, 760, 749, 756, 752, 761, 762,
|
|
|
|
|
753, 748, 761, 758, 754, 755, 763, 764, 757, 765,
|
|
|
|
|
765, 766, 762, 767, 768, 763, 766, 767, 769, 771,
|
|
|
|
|
773, 774, 774, 769, 775, 773, 783, 764, 784, 775,
|
|
|
|
|
777, 777, 779, 779, 768, 781, 785, 771, 781, 782,
|
|
|
|
|
782, 783, 786, 787, 788, 788, 789, 786, 790, 790,
|
|
|
|
|
785, 791, 792, 784, 797, 793, 794, 795, 787, 793,
|
|
|
|
|
798, 800, 795, 792, 799, 799, 789, 801, 802, 803,
|
|
|
|
|
806, 803, 797, 791, 798, 794, 812, 804, 805, 807,
|
|
|
|
|
809, 800, 804, 805, 808, 808, 809, 801, 802, 811,
|
|
|
|
|
|
|
|
|
|
806, 814, 813, 807, 811, 813, 814, 815, 815, 816,
|
|
|
|
|
817, 812, 818, 819, 820, 821, 822, 822, 819, 823,
|
|
|
|
|
821, 824, 825, 826, 823, 829, 827, 816, 831, 817,
|
|
|
|
|
830, 832, 818, 828, 833, 830, 838, 820, 829, 824,
|
|
|
|
|
827, 835, 825, 826, 842, 828, 836, 842, 831, 837,
|
|
|
|
|
844, 832, 838, 836, 845, 833, 835, 843, 837, 841,
|
|
|
|
|
841, 837, 843, 845, 846, 847, 844, 848, 849, 850,
|
|
|
|
|
850, 851, 852, 849, 847, 853, 848, 847, 854, 855,
|
|
|
|
|
856, 857, 857, 846, 858, 852, 867, 859, 862, 861,
|
|
|
|
|
863, 851, 854, 853, 861, 863, 864, 865, 856, 867,
|
|
|
|
|
|
|
|
|
|
858, 871, 864, 866, 855, 859, 862, 868, 866, 871,
|
|
|
|
|
868, 872, 873, 874, 875, 876, 868, 865, 877, 875,
|
|
|
|
|
879, 880, 881, 882, 872, 880, 884, 881, 882, 883,
|
|
|
|
|
873, 876, 874, 885, 883, 884, 877, 886, 887, 887,
|
|
|
|
|
879, 888, 889, 891, 893, 890, 892, 894, 891, 895,
|
|
|
|
|
895, 901, 886, 894, 889, 888, 885, 890, 892, 896,
|
|
|
|
|
896, 898, 893, 899, 899, 902, 900, 903, 904, 904,
|
|
|
|
|
898, 900, 901, 905, 906, 906, 907, 907, 908, 909,
|
|
|
|
|
911, 912, 909, 908, 902, 911, 913, 903, 914, 915,
|
|
|
|
|
915, 913, 917, 905, 916, 916, 918, 917, 919, 912,
|
|
|
|
|
|
|
|
|
|
920, 921, 922, 923, 923, 924, 925, 925, 918, 926,
|
|
|
|
|
918, 929, 929, 914, 933, 918, 928, 930, 919, 931,
|
|
|
|
|
920, 921, 935, 922, 932, 928, 931, 934, 934, 926,
|
|
|
|
|
936, 924, 930, 932, 938, 940, 939, 941, 944, 938,
|
|
|
|
|
933, 939, 942, 942, 941, 943, 936, 944, 935, 945,
|
|
|
|
|
943, 946, 947, 948, 949, 940, 950, 951, 951, 952,
|
|
|
|
|
949, 953, 953, 954, 955, 950, 946, 956, 948, 945,
|
|
|
|
|
952, 947, 956, 957, 957, 952, 958, 959, 955, 960,
|
|
|
|
|
958, 958, 959, 961, 954, 962, 963, 964, 965, 966,
|
|
|
|
|
962, 964, 967, 968, 969, 961, 970, 967, 963, 969,
|
|
|
|
|
|
|
|
|
|
965, 972, 973, 973, 972, 960, 974, 974, 970, 978,
|
|
|
|
|
975, 981, 976, 977, 966, 968, 975, 976, 978, 977,
|
|
|
|
|
983, 983, 984, 981, 985, 986, 988, 988, 991, 993,
|
|
|
|
|
992, 998, 983, 985, 986, 992, 994, 994, 998, 995,
|
|
|
|
|
984, 995, 991, 996, 996, 999, 993, 1000, 1000, 1001,
|
|
|
|
|
1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1009, 1013,
|
|
|
|
|
1008, 1015, 1002, 1003, 1004, 999, 13, 1011, 1005, 1021,
|
|
|
|
|
1001, 1014, 1014, 1013, 1006, 1010, 1011, 1016, 1017, 1018,
|
|
|
|
|
1017, 1019, 1016, 1020, 1018, 1022, 1019, 1015, 1023, 1021,
|
|
|
|
|
1022, 1025, 1026, 1023, 1027, 1027, 1028, 1030, 1031, 1030,
|
|
|
|
|
|
|
|
|
|
1029, 1020, 1032, 1038, 1037, 1039, 1026, 1031, 1028, 1029,
|
|
|
|
|
1025, 1034, 1029, 1035, 1032, 1044, 1034, 1037, 1035, 1041,
|
|
|
|
|
1043, 1039, 1045, 1038, 1046, 1041, 1043, 1047, 1047, 1048,
|
|
|
|
|
1044, 1049, 1049, 1046, 1050, 1051, 1052, 1053, 1048, 1051,
|
|
|
|
|
1055, 1052, 1054, 1054, 1062, 1058, 1061, 1045, 1055, 1062,
|
|
|
|
|
1053, 1059, 1059, 1050, 1058, 1060, 1060, 1063, 1061, 1064,
|
|
|
|
|
1065, 1063, 1066, 1067, 1070, 1065, 1069, 1072, 1071, 1095,
|
|
|
|
|
1073, 1075, 1075, 1076, 1064, 1095, 1076, 1079, 1079, 1072,
|
|
|
|
|
1077, 1078, 1067, 1070, 1080, 1080, 1081, 1081, 1066, 1071,
|
|
|
|
|
1069, 1073, 1082, 1077, 1078, 1083, 1083, 1084, 1084, 1085,
|
|
|
|
|
|
|
|
|
|
1086, 1086, 1087, 1087, 1088, 1082, 1090, 1091, 1091, 1092,
|
|
|
|
|
1099, 1090, 1093, 1093, 1094, 1103, 1096, 1107, 1085, 1096,
|
|
|
|
|
1097, 1097, 1107, 1088, 1098, 1098, 1100, 1100, 1092, 1099,
|
|
|
|
|
1102, 1102, 1094, 1104, 1104, 1105, 1097, 1106, 1108, 1109,
|
|
|
|
|
1110, 1103, 1111, 1112, 1105, 1113, 1114, 1111, 1115, 1106,
|
|
|
|
|
1119, 1116, 1109, 1117, 1113, 1114, 1116, 1117, 1112, 1121,
|
|
|
|
|
1126, 1110, 1115, 1108, 1122, 1122, 1123, 1127, 1121, 0,
|
|
|
|
|
1119, 1123, 1124, 1124, 1129, 1126, 1132, 1129, 1130, 1127,
|
|
|
|
|
1132, 1124, 1136, 1130, 1131, 1131, 1133, 1134, 1134, 1133,
|
|
|
|
|
1135, 1138, 1137, 1139, 1140, 1135, 1137, 1141, 1139, 1140,
|
|
|
|
|
|
|
|
|
|
1143, 1144, 1136, 1141, 1145, 1146, 1144, 1146, 1149, 1149,
|
|
|
|
|
1155, 1138, 1145, 1152, 1152, 1155, 1143, 1156, 1156, 1158,
|
|
|
|
|
1158, 1160, 1161, 1161, 1162, 1163, 1160, 1164, 1166, 1166,
|
|
|
|
|
1169, 1170, 1164, 1170, 1171, 1169, 1172, 1173, 1173, 1176,
|
|
|
|
|
1162, 1172, 1174, 1174, 1175, 1175, 1177, 1163, 1171, 1178,
|
|
|
|
|
1179, 1176, 1181, 1180, 1182, 1183, 1183, 1181, 1184, 1185,
|
|
|
|
|
1186, 1178, 1179, 1187, 1177, 1180, 1188, 1184, 1189, 1190,
|
|
|
|
|
1191, 1195, 1192, 1200, 1182, 1191, 1187, 1192, 1193, 1193,
|
|
|
|
|
1186, 1201, 1189, 1196, 1196, 1185, 1199, 1190, 1200, 1195,
|
|
|
|
|
1188, 1198, 1198, 1202, 1203, 1199, 1204, 1205, 1205, 1201,
|
|
|
|
|
|
|
|
|
|
1206, 1207, 1208, 1209, 1214, 1206, 1211, 1216, 1216, 1215,
|
|
|
|
|
1203, 1202, 1215, 1217, 1218, 1204, 1207, 1220, 1220, 1221,
|
|
|
|
|
1228, 1208, 1229, 1209, 1214, 1211, 1222, 1222, 1217, 1223,
|
|
|
|
|
1223, 1229, 1218, 1227, 1227, 1230, 1231, 1232, 1221, 1233,
|
|
|
|
|
1230, 1231, 1228, 1235, 1236, 1237, 1238, 1233, 0, 1236,
|
|
|
|
|
1237, 1239, 1239, 1240, 1240, 1241, 1232, 1246, 1235, 1249,
|
|
|
|
|
1241, 1238, 1242, 1242, 1243, 1243, 1245, 1248, 1250, 1246,
|
|
|
|
|
1248, 1245, 1249, 1251, 1252, 1252, 1253, 1250, 1255, 1256,
|
|
|
|
|
1257, 1257, 1251, 1258, 1261, 1253, 1259, 1259, 1260, 1261,
|
|
|
|
|
1263, 1264, 1258, 1266, 1266, 1269, 1260, 1255, 1256, 1263,
|
|
|
|
|
|
|
|
|
|
1270, 1270, 1271, 1275, 1264, 1271, 1272, 1272, 1273, 1273,
|
|
|
|
|
1274, 1274, 1276, 1277, 1282, 1269, 1278, 1278, 1277, 1279,
|
|
|
|
|
1282, 1275, 1285, 1279, 1286, 1287, 1276, 1288, 1288, 1289,
|
|
|
|
|
1290, 1291, 1286, 1292, 1293, 1290, 1294, 1296, 1300, 1298,
|
|
|
|
|
1296, 1285, 1300, 1293, 1287, 1289, 1299, 1299, 1304, 1301,
|
|
|
|
|
1305, 1291, 1303, 1310, 1310, 1311, 1294, 1298, 1301, 1292,
|
|
|
|
|
1304, 1303, 1309, 1313, 1311, 1314, 1315, 1309, 1313, 1316,
|
|
|
|
|
1317, 1317, 1318, 1319, 1314, 1305, 1320, 1322, 1321, 1323,
|
|
|
|
|
1324, 1318, 1322, 1329, 1316, 1315, 1321, 1325, 1325, 1319,
|
|
|
|
|
1330, 1326, 1328, 1328, 1333, 1320, 1326, 1331, 1331, 1324,
|
|
|
|
|
|
|
|
|
|
1332, 1332, 1334, 1329, 1335, 1323, 1336, 1336, 1337, 1338,
|
|
|
|
|
1338, 1339, 1330, 1333, 1334, 1341, 1342, 1343, 1343, 1391,
|
|
|
|
|
1337, 1342, 1344, 1344, 1335, 1345, 1345, 1346, 1391, 1341,
|
|
|
|
|
1339, 1374, 1346, 1347, 1347, 1349, 1349, 1351, 1351, 1352,
|
|
|
|
|
1355, 1356, 1356, 1361, 1352, 1357, 1359, 1372, 1355, 1374,
|
|
|
|
|
1357, 1359, 1362, 1362, 1363, 1367, 1367, 1369, 1363, 1371,
|
|
|
|
|
1371, 1369, 1372, 1361, 1375, 1375, 1376, 1376, 1378, 1378,
|
|
|
|
|
1380, 1380, 1382, 1383, 1383, 1388, 1389, 1390, 1390, 1388,
|
|
|
|
|
1393, 1395, 0, 1394, 1382, 1396, 1396, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 1393, 1389, 1394, 0, 0,
|
|
|
|
|
|
|
|
|
|
1395, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1400, 1400,
|
|
|
|
|
1400, 1400, 1400, 1400, 1400, 1401, 1401, 1401, 1401, 1401,
|
|
|
|
|
1401, 1401, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1403,
|
|
|
|
|
1403, 1403, 1403, 1403, 1403, 1403, 1405, 1405, 0, 1405,
|
|
|
|
|
1405, 1405, 1405, 1406, 1406, 0, 0, 0, 1406, 1406,
|
|
|
|
|
1407, 1407, 0, 0, 1407, 0, 1407, 1408, 0, 0,
|
|
|
|
|
0, 0, 0, 1408, 1409, 1409, 0, 0, 0, 1409,
|
|
|
|
|
1409, 1410, 0, 0, 0, 0, 0, 1410, 1411, 1411,
|
|
|
|
|
0, 1411, 1411, 1411, 1411, 1412, 1412, 0, 1412, 1412,
|
|
|
|
|
1412, 1412, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
|
|
|
|
|
1398, 1398
|
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>
|
2012-09-27 04:52:37 -04:00
|
|
|
#ifdef HAVE_GLOB_H
|
|
|
|
|
# include <glob.h>
|
|
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#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;
|
2013-06-10 09:37:14 -04:00
|
|
|
YY_BUFFER_STATE buffer;
|
|
|
|
|
struct inc_state* next;
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2013-06-10 09:37:14 -04:00
|
|
|
static struct inc_state* config_include_stack = NULL;
|
2013-07-26 09:11:53 -04:00
|
|
|
static int inc_depth = 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
|
|
|
|
2013-07-26 09:11:53 -04:00
|
|
|
void init_cfg_parse(void)
|
|
|
|
|
{
|
|
|
|
|
config_include_stack = NULL;
|
|
|
|
|
inc_depth = 0;
|
|
|
|
|
inc_prev = 0;
|
|
|
|
|
num_args = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_start_include(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
FILE *input;
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s;
|
|
|
|
|
char* nm;
|
2013-07-26 09:11:53 -04:00
|
|
|
if(inc_depth++ > 100000) {
|
|
|
|
|
ub_c_error_msg("too many include files");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
if(strlen(filename) == 0) {
|
|
|
|
|
ub_c_error_msg("empty include file name");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
s = (struct inc_state*)malloc(sizeof(*s));
|
|
|
|
|
if(!s) {
|
|
|
|
|
ub_c_error_msg("include %s: malloc failure", filename);
|
2007-10-18 18:49:08 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
nm = strdup(filename);
|
|
|
|
|
if(!nm) {
|
2013-08-20 10:14:32 -04:00
|
|
|
ub_c_error_msg("include %s: strdup failure", filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
return;
|
|
|
|
|
}
|
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));
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
free(nm);
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("switch_to_include_file(%s)\n", filename));
|
|
|
|
|
s->filename = cfg_parser->filename;
|
|
|
|
|
s->line = cfg_parser->line;
|
|
|
|
|
s->buffer = YY_CURRENT_BUFFER;
|
|
|
|
|
s->next = config_include_stack;
|
|
|
|
|
config_include_stack = s;
|
|
|
|
|
cfg_parser->filename = nm;
|
2007-10-18 18:49:08 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2012-09-27 04:52:37 -04:00
|
|
|
static void config_start_include_glob(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* check for wildcards */
|
|
|
|
|
#ifdef HAVE_GLOB
|
|
|
|
|
glob_t g;
|
|
|
|
|
size_t i;
|
|
|
|
|
int r, flags;
|
|
|
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
|
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
|
|
|
flags = 0
|
|
|
|
|
#ifdef GLOB_ERR
|
|
|
|
|
| GLOB_ERR
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_NOSORT
|
|
|
|
|
| GLOB_NOSORT
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_BRACE
|
|
|
|
|
| GLOB_BRACE
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_TILDE
|
|
|
|
|
| GLOB_TILDE
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
memset(&g, 0, sizeof(g));
|
|
|
|
|
r = glob(filename, flags, NULL, &g);
|
|
|
|
|
if(r) {
|
|
|
|
|
/* some error */
|
|
|
|
|
globfree(&g);
|
2013-04-15 03:57:08 -04:00
|
|
|
if(r == GLOB_NOMATCH)
|
|
|
|
|
return; /* no matches for pattern */
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include(filename); /* let original deal with it */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
/* process files found, if any */
|
|
|
|
|
for(i=0; i<(size_t)g.gl_pathc; i++) {
|
|
|
|
|
config_start_include(g.gl_pathv[i]);
|
|
|
|
|
}
|
|
|
|
|
globfree(&g);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_GLOB */
|
|
|
|
|
|
|
|
|
|
config_start_include(filename);
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_end_include(void)
|
|
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s = config_include_stack;
|
2013-07-26 09:11:53 -04:00
|
|
|
--inc_depth;
|
2013-06-10 09:37:14 -04:00
|
|
|
if(!s) return;
|
2007-10-18 18:49:08 -04:00
|
|
|
free(cfg_parser->filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
cfg_parser->filename = s->filename;
|
|
|
|
|
cfg_parser->line = s->line;
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
2013-06-10 09:37:14 -04:00
|
|
|
yy_switch_to_buffer(s->buffer);
|
|
|
|
|
config_include_stack = s->next;
|
|
|
|
|
free(s);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 178 "./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
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 1723 "<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 );
|
|
|
|
|
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t yyget_leng (void );
|
2009-03-24 08:53:25 -04:00
|
|
|
|
|
|
|
|
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 = '*'; \
|
2013-04-15 03:57:08 -04:00
|
|
|
size_t 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
|
|
|
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 198 "./util/configlexer.lex"
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 1910 "<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];
|
2014-05-20 06:38:32 -04:00
|
|
|
if ( yy_current_state >= 1399 )
|
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;
|
|
|
|
|
}
|
2014-05-20 06:38:32 -04:00
|
|
|
while ( yy_base[yy_current_state] != 2793 );
|
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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 199 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 201 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 204 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 205 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 206 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 207 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 208 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 209 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 210 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 211 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 212 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 213 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 214 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 215 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 216 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 217 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 218 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 219 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 220 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 221 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 222 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 223 "./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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 224 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 24:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 225 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 25:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 226 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 26:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 227 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 27:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 228 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 28:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 229 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 29:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 230 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 30:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 231 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 31:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 232 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 32:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 233 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 33:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 234 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 34:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 235 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 35:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 236 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 36:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 237 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 37:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 238 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 38:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 239 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 39:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 240 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 40:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 241 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 242 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 243 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 244 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 245 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 246 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 247 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 248 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 249 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 250 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 253 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 255 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 256 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 257 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 258 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 259 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 260 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 261 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 262 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 263 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 264 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 265 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 268 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 269 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 270 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 271 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 274 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 276 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 277 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 278 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 279 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 280 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 281 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 282 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 283 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 284 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 285 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 286 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 288 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 290 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 291 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 292 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 297 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2013-11-05 21:48:59 -05:00
|
|
|
#line 298 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2014-01-24 06:43:38 -05:00
|
|
|
#line 299 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2014-01-28 09:35:55 -05:00
|
|
|
#line 300 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 302 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 303 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 304 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 307 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 309 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 310 "./util/configlexer.lex"
|
2014-01-28 09:35:55 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 311 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 312 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 313 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 315 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 316 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
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
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 317 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 318 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 319 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2011-11-08 05:56:42 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 320 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 119:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 321 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 120:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 322 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 121:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 323 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 122:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2013-04-25 07:55:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 123:
|
|
|
|
|
YY_RULE_SETUP
|
2013-07-26 09:11:53 -04:00
|
|
|
#line 325 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
2013-11-05 21:48:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 124:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 326 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 125:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 327 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 126:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 328 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 127:
|
|
|
|
|
/* rule 127 can match eol */
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 329 "./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 */
|
2014-05-20 06:38:32 -04:00
|
|
|
case 128:
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 332 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 333 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 129:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 338 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 130:
|
|
|
|
|
/* rule 130 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 339 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 131:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 341 "./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 */
|
2014-05-20 06:38:32 -04:00
|
|
|
case 132:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 353 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 354 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 133:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 359 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 134:
|
|
|
|
|
/* rule 134 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 360 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 135:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 362 "./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 */
|
2014-05-20 06:38:32 -04:00
|
|
|
case 136:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 374 "./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):
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 376 "./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
|
2013-11-05 21:48:59 -05:00
|
|
|
case 137:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 380 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 138:
|
2014-05-20 06:38:32 -04:00
|
|
|
/* rule 138 can match eol */
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 381 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 139:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 382 "./util/configlexer.lex"
|
2014-05-20 06:38:32 -04:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 140:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 383 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(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):
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 388 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 141:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 392 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 142:
|
|
|
|
|
/* rule 142 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 393 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 143:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 395 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("IQE "));
|
|
|
|
|
yytext[yyleng - 1] = '\0';
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(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):
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 401 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("LEXEOF "));
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
|
2013-06-10 09:37:14 -04:00
|
|
|
if (!config_include_stack) {
|
2007-10-18 18:49:08 -04:00
|
|
|
yyterminate();
|
|
|
|
|
} else {
|
|
|
|
|
fclose(yyin);
|
|
|
|
|
config_end_include();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
case 144:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 412 "./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
|
2014-05-20 06:38:32 -04:00
|
|
|
case 145:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 416 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
case 146:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 420 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
case 147:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 424 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 2827 "<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
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t num_to_read =
|
2008-06-09 05:34:40 -04:00
|
|
|
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 */
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
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 )
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t new_size = b->yy_buf_size * 2;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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]),
|
2013-11-12 05:08:54 -05:00
|
|
|
(yy_n_chars), 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];
|
2014-05-20 06:38:32 -04:00
|
|
|
if ( yy_current_state >= 1399 )
|
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];
|
2014-05-20 06:38:32 -04:00
|
|
|
if ( yy_current_state >= 1399 )
|
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];
|
2014-05-20 06:38:32 -04:00
|
|
|
yy_is_jam = (yy_current_state == 1398);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2013-11-12 05:08:54 -05: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 */
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
|
2008-06-09 05:34:40 -04:00
|
|
|
++(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
|
|
|
/* 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)
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t num_to_alloc;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
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.
|
2013-04-15 03:57:08 -04:00
|
|
|
* @param yybytes the byte buffer to scan
|
|
|
|
|
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* @return the newly allocated buffer state object.
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
char *buf;
|
|
|
|
|
yy_size_t n;
|
2014-01-24 06:43:38 -05:00
|
|
|
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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t yyget_leng (void)
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
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"
|
|
|
|
|
|
2014-05-20 06:38:32 -04:00
|
|
|
#line 424 "./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
|
|
|
|