s3:include: change smb_request->vuid to uint64_t
[Samba/gebeck_regimport.git] / source4 / heimdal / lib / com_err / lex.c
blob6346268b98ebcb8ae09244c86f76b92e905dbb1f
1 #include "config.h"
4 #define YY_INT_ALIGNED short int
6 /* A lexical scanner generated by flex */
8 #define FLEX_SCANNER
9 #define YY_FLEX_MAJOR_VERSION 2
10 #define YY_FLEX_MINOR_VERSION 5
11 #define YY_FLEX_SUBMINOR_VERSION 35
12 #if YY_FLEX_SUBMINOR_VERSION > 0
13 #define FLEX_BETA
14 #endif
16 /* First, we deal with platform-specific or compiler-specific issues. */
18 /* begin standard C headers. */
19 #include <stdio.h>
20 #include <string.h>
21 #include <errno.h>
22 #include <stdlib.h>
24 /* end standard C headers. */
26 /* flex integer type definitions */
28 #ifndef FLEXINT_H
29 #define FLEXINT_H
31 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
33 #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
35 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
36 * if you want the limit (max/min) macros for int types.
38 #ifndef __STDC_LIMIT_MACROS
39 #define __STDC_LIMIT_MACROS 1
40 #endif
42 #include <inttypes.h>
43 typedef int8_t flex_int8_t;
44 typedef uint8_t flex_uint8_t;
45 typedef int16_t flex_int16_t;
46 typedef uint16_t flex_uint16_t;
47 typedef int32_t flex_int32_t;
48 typedef uint32_t flex_uint32_t;
49 #else
50 typedef signed char flex_int8_t;
51 typedef short int flex_int16_t;
52 typedef int flex_int32_t;
53 typedef unsigned char flex_uint8_t;
54 typedef unsigned short int flex_uint16_t;
55 typedef unsigned int flex_uint32_t;
56 #endif /* ! C99 */
58 /* Limits of integral types. */
59 #ifndef INT8_MIN
60 #define INT8_MIN (-128)
61 #endif
62 #ifndef INT16_MIN
63 #define INT16_MIN (-32767-1)
64 #endif
65 #ifndef INT32_MIN
66 #define INT32_MIN (-2147483647-1)
67 #endif
68 #ifndef INT8_MAX
69 #define INT8_MAX (127)
70 #endif
71 #ifndef INT16_MAX
72 #define INT16_MAX (32767)
73 #endif
74 #ifndef INT32_MAX
75 #define INT32_MAX (2147483647)
76 #endif
77 #ifndef UINT8_MAX
78 #define UINT8_MAX (255U)
79 #endif
80 #ifndef UINT16_MAX
81 #define UINT16_MAX (65535U)
82 #endif
83 #ifndef UINT32_MAX
84 #define UINT32_MAX (4294967295U)
85 #endif
87 #endif /* ! FLEXINT_H */
89 #ifdef __cplusplus
91 /* The "const" storage-class-modifier is valid. */
92 #define YY_USE_CONST
94 #else /* ! __cplusplus */
96 /* C99 requires __STDC__ to be defined as 1. */
97 #if defined (__STDC__)
99 #define YY_USE_CONST
101 #endif /* defined (__STDC__) */
102 #endif /* ! __cplusplus */
104 #ifdef YY_USE_CONST
105 #define yyconst const
106 #else
107 #define yyconst
108 #endif
110 /* Returned upon end-of-file. */
111 #define YY_NULL 0
113 /* Promotes a possibly negative, possibly signed char to an unsigned
114 * integer for use as an array index. If the signed char is negative,
115 * we want to instead treat it as an 8-bit unsigned char, hence the
116 * double cast.
118 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
120 /* Enter a start condition. This macro really ought to take a parameter,
121 * but we do it the disgusting crufty way forced on us by the ()-less
122 * definition of BEGIN.
124 #define BEGIN (yy_start) = 1 + 2 *
126 /* Translate the current start state into a value that can be later handed
127 * to BEGIN to return to the state. The YYSTATE alias is for lex
128 * compatibility.
130 #define YY_START (((yy_start) - 1) / 2)
131 #define YYSTATE YY_START
133 /* Action number for EOF rule of a given start state. */
134 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
136 /* Special action meaning "start processing a new file". */
137 #define YY_NEW_FILE yyrestart(yyin )
139 #define YY_END_OF_BUFFER_CHAR 0
141 /* Size of default input buffer. */
142 #ifndef YY_BUF_SIZE
143 #define YY_BUF_SIZE 16384
144 #endif
146 /* The state buf must be large enough to hold one state per character in the main buffer.
148 #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
150 #ifndef YY_TYPEDEF_YY_BUFFER_STATE
151 #define YY_TYPEDEF_YY_BUFFER_STATE
152 typedef struct yy_buffer_state *YY_BUFFER_STATE;
153 #endif
155 extern int yyleng;
157 extern FILE *yyin, *yyout;
159 #define EOB_ACT_CONTINUE_SCAN 0
160 #define EOB_ACT_END_OF_FILE 1
161 #define EOB_ACT_LAST_MATCH 2
163 #define YY_LESS_LINENO(n)
165 /* Return all but the first "n" matched characters back to the input stream. */
166 #define yyless(n) \
167 do \
169 /* Undo effects of setting up yytext. */ \
170 int yyless_macro_arg = (n); \
171 YY_LESS_LINENO(yyless_macro_arg);\
172 *yy_cp = (yy_hold_char); \
173 YY_RESTORE_YY_MORE_OFFSET \
174 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
175 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
177 while ( 0 )
179 #define unput(c) yyunput( c, (yytext_ptr) )
181 #ifndef YY_TYPEDEF_YY_SIZE_T
182 #define YY_TYPEDEF_YY_SIZE_T
183 typedef size_t yy_size_t;
184 #endif
186 #ifndef YY_STRUCT_YY_BUFFER_STATE
187 #define YY_STRUCT_YY_BUFFER_STATE
188 struct yy_buffer_state
190 FILE *yy_input_file;
192 char *yy_ch_buf; /* input buffer */
193 char *yy_buf_pos; /* current position in input buffer */
195 /* Size of input buffer in bytes, not including room for EOB
196 * characters.
198 yy_size_t yy_buf_size;
200 /* Number of characters read into yy_ch_buf, not including EOB
201 * characters.
203 int yy_n_chars;
205 /* Whether we "own" the buffer - i.e., we know we created it,
206 * and can realloc() it to grow it, and should free() it to
207 * delete it.
209 int yy_is_our_buffer;
211 /* Whether this is an "interactive" input source; if so, and
212 * if we're using stdio for input, then we want to use getc()
213 * instead of fread(), to make sure we stop fetching input after
214 * each newline.
216 int yy_is_interactive;
218 /* Whether we're considered to be at the beginning of a line.
219 * If so, '^' rules will be active on the next match, otherwise
220 * not.
222 int yy_at_bol;
224 int yy_bs_lineno; /**< The line count. */
225 int yy_bs_column; /**< The column count. */
227 /* Whether to try to fill the input buffer when we reach the
228 * end of it.
230 int yy_fill_buffer;
232 int yy_buffer_status;
234 #define YY_BUFFER_NEW 0
235 #define YY_BUFFER_NORMAL 1
236 /* When an EOF's been seen but there's still some text to process
237 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
238 * shouldn't try reading from the input source any more. We might
239 * still have a bunch of tokens to match, though, because of
240 * possible backing-up.
242 * When we actually see the EOF, we change the status to "new"
243 * (via yyrestart()), so that the user can continue scanning by
244 * just pointing yyin at a new input file.
246 #define YY_BUFFER_EOF_PENDING 2
249 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
251 /* Stack of input buffers. */
252 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
253 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
254 static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
256 /* We provide macros for accessing buffer states in case in the
257 * future we want to put the buffer states in a more general
258 * "scanner state".
260 * Returns the top of the stack, or NULL.
262 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
263 ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
264 : NULL)
266 /* Same as previous macro, but useful when we know that the buffer stack is not
267 * NULL or when we need an lvalue. For internal use only.
269 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
271 /* yy_hold_char holds the character lost when yytext is formed. */
272 static char yy_hold_char;
273 static int yy_n_chars; /* number of characters read into yy_ch_buf */
274 int yyleng;
276 /* Points to current character in buffer. */
277 static char *yy_c_buf_p = (char *) 0;
278 static int yy_init = 0; /* whether we need to initialize */
279 static int yy_start = 0; /* start state number */
281 /* Flag which is used to allow yywrap()'s to do buffer switches
282 * instead of setting up a fresh yyin. A bit of a hack ...
284 static int yy_did_buffer_switch_on_eof;
286 void yyrestart (FILE *input_file );
287 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
288 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
289 void yy_delete_buffer (YY_BUFFER_STATE b );
290 void yy_flush_buffer (YY_BUFFER_STATE b );
291 void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
292 void yypop_buffer_state (void );
294 static void yyensure_buffer_stack (void );
295 static void yy_load_buffer_state (void );
296 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
298 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
300 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
301 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
302 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
304 void *yyalloc (yy_size_t );
305 void *yyrealloc (void *,yy_size_t );
306 void yyfree (void * );
308 #define yy_new_buffer yy_create_buffer
310 #define yy_set_interactive(is_interactive) \
312 if ( ! YY_CURRENT_BUFFER ){ \
313 yyensure_buffer_stack (); \
314 YY_CURRENT_BUFFER_LVALUE = \
315 yy_create_buffer(yyin,YY_BUF_SIZE ); \
317 YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
320 #define yy_set_bol(at_bol) \
322 if ( ! YY_CURRENT_BUFFER ){\
323 yyensure_buffer_stack (); \
324 YY_CURRENT_BUFFER_LVALUE = \
325 yy_create_buffer(yyin,YY_BUF_SIZE ); \
327 YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
330 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
332 /* Begin user sect3 */
334 typedef unsigned char YY_CHAR;
336 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
338 typedef int yy_state_type;
340 extern int yylineno;
342 int yylineno = 1;
344 extern char *yytext;
345 #define yytext_ptr yytext
347 static yy_state_type yy_get_previous_state (void );
348 static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
349 static int yy_get_next_buffer (void );
350 static void yy_fatal_error (yyconst char msg[] );
352 /* Done after the current pattern has been matched and before the
353 * corresponding action - sets up yytext.
355 #define YY_DO_BEFORE_ACTION \
356 (yytext_ptr) = yy_bp; \
357 yyleng = (size_t) (yy_cp - yy_bp); \
358 (yy_hold_char) = *yy_cp; \
359 *yy_cp = '\0'; \
360 (yy_c_buf_p) = yy_cp;
362 #define YY_NUM_RULES 16
363 #define YY_END_OF_BUFFER 17
364 /* This struct is not used in this scanner,
365 but its presence is necessary. */
366 struct yy_trans_info
368 flex_int32_t yy_verify;
369 flex_int32_t yy_nxt;
371 static yyconst flex_int16_t yy_accept[46] =
372 { 0,
373 0, 0, 17, 15, 11, 12, 13, 10, 9, 14,
374 14, 14, 14, 10, 9, 14, 3, 14, 14, 1,
375 7, 14, 14, 8, 14, 14, 14, 14, 14, 14,
376 14, 6, 14, 14, 5, 14, 14, 14, 14, 14,
377 14, 4, 14, 2, 0
380 static yyconst flex_int32_t yy_ec[256] =
381 { 0,
382 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
383 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
384 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
385 1, 2, 1, 4, 5, 1, 1, 1, 1, 1,
386 1, 1, 1, 1, 1, 1, 1, 6, 6, 6,
387 6, 6, 6, 6, 6, 6, 6, 1, 1, 1,
388 1, 1, 1, 1, 7, 7, 7, 7, 7, 7,
389 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
390 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
391 1, 1, 1, 1, 8, 1, 9, 10, 11, 12,
393 13, 14, 7, 7, 15, 7, 7, 16, 7, 17,
394 18, 19, 7, 20, 7, 21, 7, 7, 7, 22,
395 7, 7, 1, 1, 1, 1, 1, 1, 1, 1,
396 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
397 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
398 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
399 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
400 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
401 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
402 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
404 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
405 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
406 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
407 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
408 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
409 1, 1, 1, 1, 1
412 static yyconst flex_int32_t yy_meta[23] =
413 { 0,
414 1, 1, 2, 1, 1, 3, 3, 3, 3, 3,
415 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
416 3, 3
419 static yyconst flex_int16_t yy_base[48] =
420 { 0,
421 0, 0, 56, 57, 57, 57, 57, 0, 49, 0,
422 12, 13, 34, 0, 47, 0, 0, 40, 31, 0,
423 0, 38, 36, 0, 30, 34, 32, 25, 22, 28,
424 34, 0, 19, 13, 0, 22, 30, 26, 26, 18,
425 12, 0, 14, 0, 57, 34, 23
428 static yyconst flex_int16_t yy_def[48] =
429 { 0,
430 45, 1, 45, 45, 45, 45, 45, 46, 47, 47,
431 47, 47, 47, 46, 47, 47, 47, 47, 47, 47,
432 47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
433 47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
434 47, 47, 47, 47, 0, 45, 45
437 static yyconst flex_int16_t yy_nxt[80] =
438 { 0,
439 4, 5, 6, 7, 8, 9, 10, 10, 10, 10,
440 10, 10, 11, 10, 12, 10, 10, 10, 13, 10,
441 10, 10, 17, 36, 21, 16, 44, 43, 18, 22,
442 42, 19, 20, 37, 14, 41, 14, 40, 39, 38,
443 35, 34, 33, 32, 31, 30, 29, 28, 27, 26,
444 25, 24, 15, 23, 15, 45, 3, 45, 45, 45,
445 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
446 45, 45, 45, 45, 45, 45, 45, 45, 45
449 static yyconst flex_int16_t yy_chk[80] =
450 { 0,
451 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
452 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
453 1, 1, 11, 34, 12, 47, 43, 41, 11, 12,
454 40, 11, 11, 34, 46, 39, 46, 38, 37, 36,
455 33, 31, 30, 29, 28, 27, 26, 25, 23, 22,
456 19, 18, 15, 13, 9, 3, 45, 45, 45, 45,
457 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
458 45, 45, 45, 45, 45, 45, 45, 45, 45
461 static yy_state_type yy_last_accepting_state;
462 static char *yy_last_accepting_cpos;
464 extern int yy_flex_debug;
465 int yy_flex_debug = 0;
467 /* The intent behind this definition is that it'll catch
468 * any uses of REJECT which flex missed.
470 #define REJECT reject_used_but_not_detected
471 #define yymore() yymore_used_but_not_detected
472 #define YY_MORE_ADJ 0
473 #define YY_RESTORE_YY_MORE_OFFSET
474 char *yytext;
476 * Copyright (c) 1998 - 2000 Kungliga Tekniska Högskolan
477 * (Royal Institute of Technology, Stockholm, Sweden).
478 * All rights reserved.
480 * Redistribution and use in source and binary forms, with or without
481 * modification, are permitted provided that the following conditions
482 * are met:
484 * 1. Redistributions of source code must retain the above copyright
485 * notice, this list of conditions and the following disclaimer.
487 * 2. Redistributions in binary form must reproduce the above copyright
488 * notice, this list of conditions and the following disclaimer in the
489 * documentation and/or other materials provided with the distribution.
491 * 3. Neither the name of the Institute nor the names of its contributors
492 * may be used to endorse or promote products derived from this software
493 * without specific prior written permission.
495 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
496 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
497 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
498 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
499 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
500 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
501 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
502 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
503 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
504 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
505 * SUCH DAMAGE.
509 * This is to handle the definition of this symbol in some AIX
510 * headers, which will conflict with the definition that lex will
511 * generate for it. It's only a problem for AIX lex.
514 #undef ECHO
516 #include "compile_et.h"
517 #include "parse.h"
518 #include "lex.h"
520 static unsigned lineno = 1;
521 static int getstring(void);
523 #define YY_NO_UNPUT
525 #undef ECHO
527 #define INITIAL 0
529 #ifndef YY_NO_UNISTD_H
530 /* Special case for "unistd.h", since it is non-ANSI. We include it way
531 * down here because we want the user's section 1 to have been scanned first.
532 * The user has a chance to override it with an option.
534 #include <unistd.h>
535 #endif
537 #ifndef YY_EXTRA_TYPE
538 #define YY_EXTRA_TYPE void *
539 #endif
541 static int yy_init_globals (void );
543 /* Accessor methods to globals.
544 These are made visible to non-reentrant scanners for convenience. */
546 int yylex_destroy (void );
548 int yyget_debug (void );
550 void yyset_debug (int debug_flag );
552 YY_EXTRA_TYPE yyget_extra (void );
554 void yyset_extra (YY_EXTRA_TYPE user_defined );
556 FILE *yyget_in (void );
558 void yyset_in (FILE * in_str );
560 FILE *yyget_out (void );
562 void yyset_out (FILE * out_str );
564 int yyget_leng (void );
566 char *yyget_text (void );
568 int yyget_lineno (void );
570 void yyset_lineno (int line_number );
572 /* Macros after this point can all be overridden by user definitions in
573 * section 1.
576 #ifndef YY_SKIP_YYWRAP
577 #ifdef __cplusplus
578 extern "C" int yywrap (void );
579 #else
580 extern int yywrap (void );
581 #endif
582 #endif
584 #ifndef yytext_ptr
585 static void yy_flex_strncpy (char *,yyconst char *,int );
586 #endif
588 #ifdef YY_NEED_STRLEN
589 static int yy_flex_strlen (yyconst char * );
590 #endif
592 #ifndef YY_NO_INPUT
594 #ifdef __cplusplus
595 static int yyinput (void );
596 #else
597 static int input (void );
598 #endif
600 #endif
602 /* Amount of stuff to slurp up with each read. */
603 #ifndef YY_READ_BUF_SIZE
604 #define YY_READ_BUF_SIZE 8192
605 #endif
607 /* Copy whatever the last rule matched to the standard output. */
608 #ifndef ECHO
609 /* This used to be an fputs(), but since the string might contain NUL's,
610 * we now use fwrite().
612 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
613 #endif
615 /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
616 * is returned in "result".
618 #ifndef YY_INPUT
619 #define YY_INPUT(buf,result,max_size) \
620 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
622 int c = '*'; \
623 unsigned n; \
624 for ( n = 0; n < max_size && \
625 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
626 buf[n] = (char) c; \
627 if ( c == '\n' ) \
628 buf[n++] = (char) c; \
629 if ( c == EOF && ferror( yyin ) ) \
630 YY_FATAL_ERROR( "input in flex scanner failed" ); \
631 result = n; \
633 else \
635 errno=0; \
636 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
638 if( errno != EINTR) \
640 YY_FATAL_ERROR( "input in flex scanner failed" ); \
641 break; \
643 errno=0; \
644 clearerr(yyin); \
649 #endif
651 /* No semi-colon after return; correct usage is to write "yyterminate();" -
652 * we don't want an extra ';' after the "return" because that will cause
653 * some compilers to complain about unreachable statements.
655 #ifndef yyterminate
656 #define yyterminate() return YY_NULL
657 #endif
659 /* Number of entries by which start-condition stack grows. */
660 #ifndef YY_START_STACK_INCR
661 #define YY_START_STACK_INCR 25
662 #endif
664 /* Report a fatal error. */
665 #ifndef YY_FATAL_ERROR
666 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
667 #endif
669 /* end tables serialization structures and prototypes */
671 /* Default declaration of generated scanner - a define so the user can
672 * easily add parameters.
674 #ifndef YY_DECL
675 #define YY_DECL_IS_OURS 1
677 extern int yylex (void);
679 #define YY_DECL int yylex (void)
680 #endif /* !YY_DECL */
682 /* Code executed at the beginning of each rule, after yytext and yyleng
683 * have been set up.
685 #ifndef YY_USER_ACTION
686 #define YY_USER_ACTION
687 #endif
689 /* Code executed at the end of each rule. */
690 #ifndef YY_BREAK
691 #define YY_BREAK break;
692 #endif
694 #define YY_RULE_SETUP \
695 YY_USER_ACTION
697 /** The main scanner function which does all the work.
699 YY_DECL
701 register yy_state_type yy_current_state;
702 register char *yy_cp, *yy_bp;
703 register int yy_act;
705 if ( !(yy_init) )
707 (yy_init) = 1;
709 #ifdef YY_USER_INIT
710 YY_USER_INIT;
711 #endif
713 if ( ! (yy_start) )
714 (yy_start) = 1; /* first start state */
716 if ( ! yyin )
717 yyin = stdin;
719 if ( ! yyout )
720 yyout = stdout;
722 if ( ! YY_CURRENT_BUFFER ) {
723 yyensure_buffer_stack ();
724 YY_CURRENT_BUFFER_LVALUE =
725 yy_create_buffer(yyin,YY_BUF_SIZE );
728 yy_load_buffer_state( );
731 while ( 1 ) /* loops until end-of-file is reached */
733 yy_cp = (yy_c_buf_p);
735 /* Support of yytext. */
736 *yy_cp = (yy_hold_char);
738 /* yy_bp points to the position in yy_ch_buf of the start of
739 * the current run.
741 yy_bp = yy_cp;
743 yy_current_state = (yy_start);
744 yy_match:
747 register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
748 if ( yy_accept[yy_current_state] )
750 (yy_last_accepting_state) = yy_current_state;
751 (yy_last_accepting_cpos) = yy_cp;
753 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
755 yy_current_state = (int) yy_def[yy_current_state];
756 if ( yy_current_state >= 46 )
757 yy_c = yy_meta[(unsigned int) yy_c];
759 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
760 ++yy_cp;
762 while ( yy_base[yy_current_state] != 57 );
764 yy_find_action:
765 yy_act = yy_accept[yy_current_state];
766 if ( yy_act == 0 )
767 { /* have to back up */
768 yy_cp = (yy_last_accepting_cpos);
769 yy_current_state = (yy_last_accepting_state);
770 yy_act = yy_accept[yy_current_state];
773 YY_DO_BEFORE_ACTION;
775 do_action: /* This label is used only to access EOF actions. */
777 switch ( yy_act )
778 { /* beginning of action switch */
779 case 0: /* must back up */
780 /* undo the effects of YY_DO_BEFORE_ACTION */
781 *yy_cp = (yy_hold_char);
782 yy_cp = (yy_last_accepting_cpos);
783 yy_current_state = (yy_last_accepting_state);
784 goto yy_find_action;
786 case 1:
787 YY_RULE_SETUP
788 { return ET; }
789 YY_BREAK
790 case 2:
791 YY_RULE_SETUP
792 { return ET; }
793 YY_BREAK
794 case 3:
795 YY_RULE_SETUP
796 { return EC; }
797 YY_BREAK
798 case 4:
799 YY_RULE_SETUP
800 { return EC; }
801 YY_BREAK
802 case 5:
803 YY_RULE_SETUP
804 { return PREFIX; }
805 YY_BREAK
806 case 6:
807 YY_RULE_SETUP
808 { return INDEX; }
809 YY_BREAK
810 case 7:
811 YY_RULE_SETUP
812 { return ID; }
813 YY_BREAK
814 case 8:
815 YY_RULE_SETUP
816 { return END; }
817 YY_BREAK
818 case 9:
819 YY_RULE_SETUP
820 { yylval.number = atoi(yytext); return NUMBER; }
821 YY_BREAK
822 case 10:
823 YY_RULE_SETUP
825 YY_BREAK
826 case 11:
827 YY_RULE_SETUP
829 YY_BREAK
830 case 12:
831 /* rule 12 can match eol */
832 YY_RULE_SETUP
833 { lineno++; }
834 YY_BREAK
835 case 13:
836 YY_RULE_SETUP
837 { return getstring(); }
838 YY_BREAK
839 case 14:
840 YY_RULE_SETUP
841 { yylval.string = strdup(yytext); return STRING; }
842 YY_BREAK
843 case 15:
844 YY_RULE_SETUP
845 { return *yytext; }
846 YY_BREAK
847 case 16:
848 YY_RULE_SETUP
849 ECHO;
850 YY_BREAK
851 case YY_STATE_EOF(INITIAL):
852 yyterminate();
854 case YY_END_OF_BUFFER:
856 /* Amount of text matched not including the EOB char. */
857 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
859 /* Undo the effects of YY_DO_BEFORE_ACTION. */
860 *yy_cp = (yy_hold_char);
861 YY_RESTORE_YY_MORE_OFFSET
863 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
865 /* We're scanning a new file or input source. It's
866 * possible that this happened because the user
867 * just pointed yyin at a new source and called
868 * yylex(). If so, then we have to assure
869 * consistency between YY_CURRENT_BUFFER and our
870 * globals. Here is the right place to do so, because
871 * this is the first action (other than possibly a
872 * back-up) that will match for the new input source.
874 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
875 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
876 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
879 /* Note that here we test for yy_c_buf_p "<=" to the position
880 * of the first EOB in the buffer, since yy_c_buf_p will
881 * already have been incremented past the NUL character
882 * (since all states make transitions on EOB to the
883 * end-of-buffer state). Contrast this with the test
884 * in input().
886 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
887 { /* This was really a NUL. */
888 yy_state_type yy_next_state;
890 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
892 yy_current_state = yy_get_previous_state( );
894 /* Okay, we're now positioned to make the NUL
895 * transition. We couldn't have
896 * yy_get_previous_state() go ahead and do it
897 * for us because it doesn't know how to deal
898 * with the possibility of jamming (and we don't
899 * want to build jamming into it because then it
900 * will run more slowly).
903 yy_next_state = yy_try_NUL_trans( yy_current_state );
905 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
907 if ( yy_next_state )
909 /* Consume the NUL. */
910 yy_cp = ++(yy_c_buf_p);
911 yy_current_state = yy_next_state;
912 goto yy_match;
915 else
917 yy_cp = (yy_c_buf_p);
918 goto yy_find_action;
922 else switch ( yy_get_next_buffer( ) )
924 case EOB_ACT_END_OF_FILE:
926 (yy_did_buffer_switch_on_eof) = 0;
928 if ( yywrap( ) )
930 /* Note: because we've taken care in
931 * yy_get_next_buffer() to have set up
932 * yytext, we can now set up
933 * yy_c_buf_p so that if some total
934 * hoser (like flex itself) wants to
935 * call the scanner after we return the
936 * YY_NULL, it'll still work - another
937 * YY_NULL will get returned.
939 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
941 yy_act = YY_STATE_EOF(YY_START);
942 goto do_action;
945 else
947 if ( ! (yy_did_buffer_switch_on_eof) )
948 YY_NEW_FILE;
950 break;
953 case EOB_ACT_CONTINUE_SCAN:
954 (yy_c_buf_p) =
955 (yytext_ptr) + yy_amount_of_matched_text;
957 yy_current_state = yy_get_previous_state( );
959 yy_cp = (yy_c_buf_p);
960 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
961 goto yy_match;
963 case EOB_ACT_LAST_MATCH:
964 (yy_c_buf_p) =
965 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
967 yy_current_state = yy_get_previous_state( );
969 yy_cp = (yy_c_buf_p);
970 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
971 goto yy_find_action;
973 break;
976 default:
977 YY_FATAL_ERROR(
978 "fatal flex scanner internal error--no action found" );
979 } /* end of action switch */
980 } /* end of scanning one token */
981 } /* end of yylex */
983 /* yy_get_next_buffer - try to read in a new buffer
985 * Returns a code representing an action:
986 * EOB_ACT_LAST_MATCH -
987 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
988 * EOB_ACT_END_OF_FILE - end of file
990 static int yy_get_next_buffer (void)
992 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
993 register char *source = (yytext_ptr);
994 register int number_to_move, i;
995 int ret_val;
997 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
998 YY_FATAL_ERROR(
999 "fatal flex scanner internal error--end of buffer missed" );
1001 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1002 { /* Don't try to fill the buffer, so this is an EOF. */
1003 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1005 /* We matched a single character, the EOB, so
1006 * treat this as a final EOF.
1008 return EOB_ACT_END_OF_FILE;
1011 else
1013 /* We matched some text prior to the EOB, first
1014 * process it.
1016 return EOB_ACT_LAST_MATCH;
1020 /* Try to read more data. */
1022 /* First move last chars to start of buffer. */
1023 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1025 for ( i = 0; i < number_to_move; ++i )
1026 *(dest++) = *(source++);
1028 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1029 /* don't do the read, it's not guaranteed to return an EOF,
1030 * just force an EOF
1032 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1034 else
1036 int num_to_read =
1037 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1039 while ( num_to_read <= 0 )
1040 { /* Not enough room in the buffer - grow it. */
1042 /* just a shorter name for the current buffer */
1043 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1045 int yy_c_buf_p_offset =
1046 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1048 if ( b->yy_is_our_buffer )
1050 int new_size = b->yy_buf_size * 2;
1052 if ( new_size <= 0 )
1053 b->yy_buf_size += b->yy_buf_size / 8;
1054 else
1055 b->yy_buf_size *= 2;
1057 b->yy_ch_buf = (char *)
1058 /* Include room in for 2 EOB chars. */
1059 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1061 else
1062 /* Can't grow it, we don't own it. */
1063 b->yy_ch_buf = 0;
1065 if ( ! b->yy_ch_buf )
1066 YY_FATAL_ERROR(
1067 "fatal error - scanner input buffer overflow" );
1069 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1071 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1072 number_to_move - 1;
1076 if ( num_to_read > YY_READ_BUF_SIZE )
1077 num_to_read = YY_READ_BUF_SIZE;
1079 /* Read in more data. */
1080 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1081 (yy_n_chars), (size_t) num_to_read );
1083 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1086 if ( (yy_n_chars) == 0 )
1088 if ( number_to_move == YY_MORE_ADJ )
1090 ret_val = EOB_ACT_END_OF_FILE;
1091 yyrestart(yyin );
1094 else
1096 ret_val = EOB_ACT_LAST_MATCH;
1097 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1098 YY_BUFFER_EOF_PENDING;
1102 else
1103 ret_val = EOB_ACT_CONTINUE_SCAN;
1105 if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1106 /* Extend the array by 50%, plus the number we really need. */
1107 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1108 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
1109 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1110 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1113 (yy_n_chars) += number_to_move;
1114 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1115 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1117 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1119 return ret_val;
1122 /* yy_get_previous_state - get the state just before the EOB char was reached */
1124 static yy_state_type yy_get_previous_state (void)
1126 register yy_state_type yy_current_state;
1127 register char *yy_cp;
1129 yy_current_state = (yy_start);
1131 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1133 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1134 if ( yy_accept[yy_current_state] )
1136 (yy_last_accepting_state) = yy_current_state;
1137 (yy_last_accepting_cpos) = yy_cp;
1139 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1141 yy_current_state = (int) yy_def[yy_current_state];
1142 if ( yy_current_state >= 46 )
1143 yy_c = yy_meta[(unsigned int) yy_c];
1145 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1148 return yy_current_state;
1151 /* yy_try_NUL_trans - try to make a transition on the NUL character
1153 * synopsis
1154 * next_state = yy_try_NUL_trans( current_state );
1156 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1158 register int yy_is_jam;
1159 register char *yy_cp = (yy_c_buf_p);
1161 register YY_CHAR yy_c = 1;
1162 if ( yy_accept[yy_current_state] )
1164 (yy_last_accepting_state) = yy_current_state;
1165 (yy_last_accepting_cpos) = yy_cp;
1167 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1169 yy_current_state = (int) yy_def[yy_current_state];
1170 if ( yy_current_state >= 46 )
1171 yy_c = yy_meta[(unsigned int) yy_c];
1173 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1174 yy_is_jam = (yy_current_state == 45);
1176 return yy_is_jam ? 0 : yy_current_state;
1179 #ifndef YY_NO_INPUT
1180 #ifdef __cplusplus
1181 static int yyinput (void)
1182 #else
1183 static int input (void)
1184 #endif
1187 int c;
1189 *(yy_c_buf_p) = (yy_hold_char);
1191 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1193 /* yy_c_buf_p now points to the character we want to return.
1194 * If this occurs *before* the EOB characters, then it's a
1195 * valid NUL; if not, then we've hit the end of the buffer.
1197 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1198 /* This was really a NUL. */
1199 *(yy_c_buf_p) = '\0';
1201 else
1202 { /* need more input */
1203 int offset = (yy_c_buf_p) - (yytext_ptr);
1204 ++(yy_c_buf_p);
1206 switch ( yy_get_next_buffer( ) )
1208 case EOB_ACT_LAST_MATCH:
1209 /* This happens because yy_g_n_b()
1210 * sees that we've accumulated a
1211 * token and flags that we need to
1212 * try matching the token before
1213 * proceeding. But for input(),
1214 * there's no matching to consider.
1215 * So convert the EOB_ACT_LAST_MATCH
1216 * to EOB_ACT_END_OF_FILE.
1219 /* Reset buffer status. */
1220 yyrestart(yyin );
1222 /*FALLTHROUGH*/
1224 case EOB_ACT_END_OF_FILE:
1226 if ( yywrap( ) )
1227 return EOF;
1229 if ( ! (yy_did_buffer_switch_on_eof) )
1230 YY_NEW_FILE;
1231 #ifdef __cplusplus
1232 return yyinput();
1233 #else
1234 return input();
1235 #endif
1238 case EOB_ACT_CONTINUE_SCAN:
1239 (yy_c_buf_p) = (yytext_ptr) + offset;
1240 break;
1245 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1246 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1247 (yy_hold_char) = *++(yy_c_buf_p);
1249 return c;
1251 #endif /* ifndef YY_NO_INPUT */
1253 /** Immediately switch to a different input stream.
1254 * @param input_file A readable stream.
1256 * @note This function does not reset the start condition to @c INITIAL .
1258 void yyrestart (FILE * input_file )
1261 if ( ! YY_CURRENT_BUFFER ){
1262 yyensure_buffer_stack ();
1263 YY_CURRENT_BUFFER_LVALUE =
1264 yy_create_buffer(yyin,YY_BUF_SIZE );
1267 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1268 yy_load_buffer_state( );
1271 /** Switch to a different input buffer.
1272 * @param new_buffer The new input buffer.
1275 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1278 /* TODO. We should be able to replace this entire function body
1279 * with
1280 * yypop_buffer_state();
1281 * yypush_buffer_state(new_buffer);
1283 yyensure_buffer_stack ();
1284 if ( YY_CURRENT_BUFFER == new_buffer )
1285 return;
1287 if ( YY_CURRENT_BUFFER )
1289 /* Flush out information for old buffer. */
1290 *(yy_c_buf_p) = (yy_hold_char);
1291 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1292 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1295 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1296 yy_load_buffer_state( );
1298 /* We don't actually know whether we did this switch during
1299 * EOF (yywrap()) processing, but the only time this flag
1300 * is looked at is after yywrap() is called, so it's safe
1301 * to go ahead and always set it.
1303 (yy_did_buffer_switch_on_eof) = 1;
1306 static void yy_load_buffer_state (void)
1308 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1309 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1310 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1311 (yy_hold_char) = *(yy_c_buf_p);
1314 /** Allocate and initialize an input buffer state.
1315 * @param file A readable stream.
1316 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1318 * @return the allocated buffer state.
1320 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1322 YY_BUFFER_STATE b;
1324 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1325 if ( ! b )
1326 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1328 b->yy_buf_size = size;
1330 /* yy_ch_buf has to be 2 characters longer than the size given because
1331 * we need to put in 2 end-of-buffer characters.
1333 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1334 if ( ! b->yy_ch_buf )
1335 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1337 b->yy_is_our_buffer = 1;
1339 yy_init_buffer(b,file );
1341 return b;
1344 /** Destroy the buffer.
1345 * @param b a buffer created with yy_create_buffer()
1348 void yy_delete_buffer (YY_BUFFER_STATE b )
1351 if ( ! b )
1352 return;
1354 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1355 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1357 if ( b->yy_is_our_buffer )
1358 yyfree((void *) b->yy_ch_buf );
1360 yyfree((void *) b );
1363 #ifndef __cplusplus
1364 extern int isatty (int );
1365 #endif /* __cplusplus */
1367 /* Initializes or reinitializes a buffer.
1368 * This function is sometimes called more than once on the same buffer,
1369 * such as during a yyrestart() or at EOF.
1371 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1374 int oerrno = errno;
1376 yy_flush_buffer(b );
1378 b->yy_input_file = file;
1379 b->yy_fill_buffer = 1;
1381 /* If b is the current buffer, then yy_init_buffer was _probably_
1382 * called from yyrestart() or through yy_get_next_buffer.
1383 * In that case, we don't want to reset the lineno or column.
1385 if (b != YY_CURRENT_BUFFER){
1386 b->yy_bs_lineno = 1;
1387 b->yy_bs_column = 0;
1390 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1392 errno = oerrno;
1395 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1396 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1399 void yy_flush_buffer (YY_BUFFER_STATE b )
1401 if ( ! b )
1402 return;
1404 b->yy_n_chars = 0;
1406 /* We always need two end-of-buffer characters. The first causes
1407 * a transition to the end-of-buffer state. The second causes
1408 * a jam in that state.
1410 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1411 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1413 b->yy_buf_pos = &b->yy_ch_buf[0];
1415 b->yy_at_bol = 1;
1416 b->yy_buffer_status = YY_BUFFER_NEW;
1418 if ( b == YY_CURRENT_BUFFER )
1419 yy_load_buffer_state( );
1422 /** Pushes the new state onto the stack. The new state becomes
1423 * the current state. This function will allocate the stack
1424 * if necessary.
1425 * @param new_buffer The new state.
1428 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1430 if (new_buffer == NULL)
1431 return;
1433 yyensure_buffer_stack();
1435 /* This block is copied from yy_switch_to_buffer. */
1436 if ( YY_CURRENT_BUFFER )
1438 /* Flush out information for old buffer. */
1439 *(yy_c_buf_p) = (yy_hold_char);
1440 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1441 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1444 /* Only push if top exists. Otherwise, replace top. */
1445 if (YY_CURRENT_BUFFER)
1446 (yy_buffer_stack_top)++;
1447 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1449 /* copied from yy_switch_to_buffer. */
1450 yy_load_buffer_state( );
1451 (yy_did_buffer_switch_on_eof) = 1;
1454 /** Removes and deletes the top of the stack, if present.
1455 * The next element becomes the new top.
1458 void yypop_buffer_state (void)
1460 if (!YY_CURRENT_BUFFER)
1461 return;
1463 yy_delete_buffer(YY_CURRENT_BUFFER );
1464 YY_CURRENT_BUFFER_LVALUE = NULL;
1465 if ((yy_buffer_stack_top) > 0)
1466 --(yy_buffer_stack_top);
1468 if (YY_CURRENT_BUFFER) {
1469 yy_load_buffer_state( );
1470 (yy_did_buffer_switch_on_eof) = 1;
1474 /* Allocates the stack if it does not exist.
1475 * Guarantees space for at least one push.
1477 static void yyensure_buffer_stack (void)
1479 int num_to_alloc;
1481 if (!(yy_buffer_stack)) {
1483 /* First allocation is just for 2 elements, since we don't know if this
1484 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1485 * immediate realloc on the next call.
1487 num_to_alloc = 1;
1488 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1489 (num_to_alloc * sizeof(struct yy_buffer_state*)
1491 if ( ! (yy_buffer_stack) )
1492 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1494 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1496 (yy_buffer_stack_max) = num_to_alloc;
1497 (yy_buffer_stack_top) = 0;
1498 return;
1501 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1503 /* Increase the buffer to prepare for a possible push. */
1504 int grow_size = 8 /* arbitrary grow size */;
1506 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1507 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1508 ((yy_buffer_stack),
1509 num_to_alloc * sizeof(struct yy_buffer_state*)
1511 if ( ! (yy_buffer_stack) )
1512 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1514 /* zero only the new slots.*/
1515 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1516 (yy_buffer_stack_max) = num_to_alloc;
1520 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1521 * @param base the character buffer
1522 * @param size the size in bytes of the character buffer
1524 * @return the newly allocated buffer state object.
1526 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1528 YY_BUFFER_STATE b;
1530 if ( size < 2 ||
1531 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1532 base[size-1] != YY_END_OF_BUFFER_CHAR )
1533 /* They forgot to leave room for the EOB's. */
1534 return 0;
1536 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1537 if ( ! b )
1538 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1540 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1541 b->yy_buf_pos = b->yy_ch_buf = base;
1542 b->yy_is_our_buffer = 0;
1543 b->yy_input_file = 0;
1544 b->yy_n_chars = b->yy_buf_size;
1545 b->yy_is_interactive = 0;
1546 b->yy_at_bol = 1;
1547 b->yy_fill_buffer = 0;
1548 b->yy_buffer_status = YY_BUFFER_NEW;
1550 yy_switch_to_buffer(b );
1552 return b;
1555 /** Setup the input buffer state to scan a string. The next call to yylex() will
1556 * scan from a @e copy of @a str.
1557 * @param yystr a NUL-terminated string to scan
1559 * @return the newly allocated buffer state object.
1560 * @note If you want to scan bytes that may contain NUL values, then use
1561 * yy_scan_bytes() instead.
1563 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1566 return yy_scan_bytes(yystr,strlen(yystr) );
1569 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1570 * scan from a @e copy of @a bytes.
1571 * @param bytes the byte buffer to scan
1572 * @param len the number of bytes in the buffer pointed to by @a bytes.
1574 * @return the newly allocated buffer state object.
1576 YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1578 YY_BUFFER_STATE b;
1579 char *buf;
1580 yy_size_t n;
1581 int i;
1583 /* Get memory for full buffer, including space for trailing EOB's. */
1584 n = _yybytes_len + 2;
1585 buf = (char *) yyalloc(n );
1586 if ( ! buf )
1587 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1589 for ( i = 0; i < _yybytes_len; ++i )
1590 buf[i] = yybytes[i];
1592 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1594 b = yy_scan_buffer(buf,n );
1595 if ( ! b )
1596 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1598 /* It's okay to grow etc. this buffer, and we should throw it
1599 * away when we're done.
1601 b->yy_is_our_buffer = 1;
1603 return b;
1606 #ifndef YY_EXIT_FAILURE
1607 #define YY_EXIT_FAILURE 2
1608 #endif
1610 static void yy_fatal_error (yyconst char* msg )
1612 (void) fprintf( stderr, "%s\n", msg );
1613 exit( YY_EXIT_FAILURE );
1616 /* Redefine yyless() so it works in section 3 code. */
1618 #undef yyless
1619 #define yyless(n) \
1620 do \
1622 /* Undo effects of setting up yytext. */ \
1623 int yyless_macro_arg = (n); \
1624 YY_LESS_LINENO(yyless_macro_arg);\
1625 yytext[yyleng] = (yy_hold_char); \
1626 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1627 (yy_hold_char) = *(yy_c_buf_p); \
1628 *(yy_c_buf_p) = '\0'; \
1629 yyleng = yyless_macro_arg; \
1631 while ( 0 )
1633 /* Accessor methods (get/set functions) to struct members. */
1635 /** Get the current line number.
1638 int yyget_lineno (void)
1641 return yylineno;
1644 /** Get the input stream.
1647 FILE *yyget_in (void)
1649 return yyin;
1652 /** Get the output stream.
1655 FILE *yyget_out (void)
1657 return yyout;
1660 /** Get the length of the current token.
1663 int yyget_leng (void)
1665 return yyleng;
1668 /** Get the current token.
1672 char *yyget_text (void)
1674 return yytext;
1677 /** Set the current line number.
1678 * @param line_number
1681 void yyset_lineno (int line_number )
1684 yylineno = line_number;
1687 /** Set the input stream. This does not discard the current
1688 * input buffer.
1689 * @param in_str A readable stream.
1691 * @see yy_switch_to_buffer
1693 void yyset_in (FILE * in_str )
1695 yyin = in_str ;
1698 void yyset_out (FILE * out_str )
1700 yyout = out_str ;
1703 int yyget_debug (void)
1705 return yy_flex_debug;
1708 void yyset_debug (int bdebug )
1710 yy_flex_debug = bdebug ;
1713 static int yy_init_globals (void)
1715 /* Initialization is the same as for the non-reentrant scanner.
1716 * This function is called from yylex_destroy(), so don't allocate here.
1719 (yy_buffer_stack) = 0;
1720 (yy_buffer_stack_top) = 0;
1721 (yy_buffer_stack_max) = 0;
1722 (yy_c_buf_p) = (char *) 0;
1723 (yy_init) = 0;
1724 (yy_start) = 0;
1726 /* Defined in main.c */
1727 #ifdef YY_STDINIT
1728 yyin = stdin;
1729 yyout = stdout;
1730 #else
1731 yyin = (FILE *) 0;
1732 yyout = (FILE *) 0;
1733 #endif
1735 /* For future reference: Set errno on error, since we are called by
1736 * yylex_init()
1738 return 0;
1741 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
1742 int yylex_destroy (void)
1745 /* Pop the buffer stack, destroying each element. */
1746 while(YY_CURRENT_BUFFER){
1747 yy_delete_buffer(YY_CURRENT_BUFFER );
1748 YY_CURRENT_BUFFER_LVALUE = NULL;
1749 yypop_buffer_state();
1752 /* Destroy the stack itself. */
1753 yyfree((yy_buffer_stack) );
1754 (yy_buffer_stack) = NULL;
1756 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1757 * yylex() is called, initialization will occur. */
1758 yy_init_globals( );
1760 return 0;
1764 * Internal utility routines.
1767 #ifndef yytext_ptr
1768 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1770 register int i;
1771 for ( i = 0; i < n; ++i )
1772 s1[i] = s2[i];
1774 #endif
1776 #ifdef YY_NEED_STRLEN
1777 static int yy_flex_strlen (yyconst char * s )
1779 register int n;
1780 for ( n = 0; s[n]; ++n )
1783 return n;
1785 #endif
1787 void *yyalloc (yy_size_t size )
1789 return (void *) malloc( size );
1792 void *yyrealloc (void * ptr, yy_size_t size )
1794 /* The cast to (char *) in the following accommodates both
1795 * implementations that use char* generic pointers, and those
1796 * that use void* generic pointers. It works with the latter
1797 * because both ANSI C and C++ allow castless assignment from
1798 * any pointer type to void*, and deal with argument conversions
1799 * as though doing an assignment.
1801 return (void *) realloc( (char *) ptr, size );
1804 void yyfree (void * ptr )
1806 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1809 #define YYTABLES_NAME "yytables"
1811 #ifndef yywrap /* XXX */
1813 yywrap ()
1815 return 1;
1817 #endif
1819 static int
1820 getstring(void)
1822 char x[128];
1823 int i = 0;
1824 int c;
1825 int quote = 0;
1826 while(i < sizeof(x) - 1 && (c = input()) != EOF){
1827 if(quote) {
1828 x[i++] = c;
1829 quote = 0;
1830 continue;
1832 if(c == '\n'){
1833 _lex_error_message("unterminated string");
1834 lineno++;
1835 break;
1837 if(c == '\\'){
1838 quote++;
1839 continue;
1841 if(c == '\"')
1842 break;
1843 x[i++] = c;
1845 x[i] = '\0';
1846 yylval.string = strdup(x);
1847 if (yylval.string == NULL)
1848 err(1, "malloc");
1849 return STRING;
1852 void
1853 _lex_error_message (const char *format, ...)
1855 va_list args;
1857 va_start (args, format);
1858 fprintf (stderr, "%s:%d:", filename, lineno);
1859 vfprintf (stderr, format, args);
1860 va_end (args);
1861 numerror++;