heimdal_build omit #line statments to allow valgrind to work again
[Samba.git] / source4 / heimdal / lib / hx509 / sel-lex.c
blobe0efbf4e5886f991d661236450fa927fa81627ca
1 #include "config.h"
3 #line 3 ""
5 #define YY_INT_ALIGNED short int
7 /* A lexical scanner generated by flex */
9 #define FLEX_SCANNER
10 #define YY_FLEX_MAJOR_VERSION 2
11 #define YY_FLEX_MINOR_VERSION 5
12 #define YY_FLEX_SUBMINOR_VERSION 35
13 #if YY_FLEX_SUBMINOR_VERSION > 0
14 #define FLEX_BETA
15 #endif
17 /* First, we deal with platform-specific or compiler-specific issues. */
19 /* begin standard C headers. */
20 #include <stdio.h>
21 #include <string.h>
22 #include <errno.h>
23 #include <stdlib.h>
25 /* end standard C headers. */
27 /* flex integer type definitions */
29 #ifndef FLEXINT_H
30 #define FLEXINT_H
32 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
34 #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
36 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
37 * if you want the limit (max/min) macros for int types.
39 #ifndef __STDC_LIMIT_MACROS
40 #define __STDC_LIMIT_MACROS 1
41 #endif
43 #include <inttypes.h>
44 typedef int8_t flex_int8_t;
45 typedef uint8_t flex_uint8_t;
46 typedef int16_t flex_int16_t;
47 typedef uint16_t flex_uint16_t;
48 typedef int32_t flex_int32_t;
49 typedef uint32_t flex_uint32_t;
50 #else
51 typedef signed char flex_int8_t;
52 typedef short int flex_int16_t;
53 typedef int flex_int32_t;
54 typedef unsigned char flex_uint8_t;
55 typedef unsigned short int flex_uint16_t;
56 typedef unsigned int flex_uint32_t;
57 #endif /* ! C99 */
59 /* Limits of integral types. */
60 #ifndef INT8_MIN
61 #define INT8_MIN (-128)
62 #endif
63 #ifndef INT16_MIN
64 #define INT16_MIN (-32767-1)
65 #endif
66 #ifndef INT32_MIN
67 #define INT32_MIN (-2147483647-1)
68 #endif
69 #ifndef INT8_MAX
70 #define INT8_MAX (127)
71 #endif
72 #ifndef INT16_MAX
73 #define INT16_MAX (32767)
74 #endif
75 #ifndef INT32_MAX
76 #define INT32_MAX (2147483647)
77 #endif
78 #ifndef UINT8_MAX
79 #define UINT8_MAX (255U)
80 #endif
81 #ifndef UINT16_MAX
82 #define UINT16_MAX (65535U)
83 #endif
84 #ifndef UINT32_MAX
85 #define UINT32_MAX (4294967295U)
86 #endif
88 #endif /* ! FLEXINT_H */
90 #ifdef __cplusplus
92 /* The "const" storage-class-modifier is valid. */
93 #define YY_USE_CONST
95 #else /* ! __cplusplus */
97 /* C99 requires __STDC__ to be defined as 1. */
98 #if defined (__STDC__)
100 #define YY_USE_CONST
102 #endif /* defined (__STDC__) */
103 #endif /* ! __cplusplus */
105 #ifdef YY_USE_CONST
106 #define yyconst const
107 #else
108 #define yyconst
109 #endif
111 /* Returned upon end-of-file. */
112 #define YY_NULL 0
114 /* Promotes a possibly negative, possibly signed char to an unsigned
115 * integer for use as an array index. If the signed char is negative,
116 * we want to instead treat it as an 8-bit unsigned char, hence the
117 * double cast.
119 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
121 /* Enter a start condition. This macro really ought to take a parameter,
122 * but we do it the disgusting crufty way forced on us by the ()-less
123 * definition of BEGIN.
125 #define BEGIN (yy_start) = 1 + 2 *
127 /* Translate the current start state into a value that can be later handed
128 * to BEGIN to return to the state. The YYSTATE alias is for lex
129 * compatibility.
131 #define YY_START (((yy_start) - 1) / 2)
132 #define YYSTATE YY_START
134 /* Action number for EOF rule of a given start state. */
135 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
137 /* Special action meaning "start processing a new file". */
138 #define YY_NEW_FILE yyrestart(yyin )
140 #define YY_END_OF_BUFFER_CHAR 0
142 /* Size of default input buffer. */
143 #ifndef YY_BUF_SIZE
144 #define YY_BUF_SIZE 16384
145 #endif
147 /* The state buf must be large enough to hold one state per character in the main buffer.
149 #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
151 #ifndef YY_TYPEDEF_YY_BUFFER_STATE
152 #define YY_TYPEDEF_YY_BUFFER_STATE
153 typedef struct yy_buffer_state *YY_BUFFER_STATE;
154 #endif
156 extern int yyleng;
158 extern FILE *yyin, *yyout;
160 #define EOB_ACT_CONTINUE_SCAN 0
161 #define EOB_ACT_END_OF_FILE 1
162 #define EOB_ACT_LAST_MATCH 2
164 #define YY_LESS_LINENO(n)
166 /* Return all but the first "n" matched characters back to the input stream. */
167 #define yyless(n) \
168 do \
170 /* Undo effects of setting up yytext. */ \
171 int yyless_macro_arg = (n); \
172 YY_LESS_LINENO(yyless_macro_arg);\
173 *yy_cp = (yy_hold_char); \
174 YY_RESTORE_YY_MORE_OFFSET \
175 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
176 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
178 while ( 0 )
180 #define unput(c) yyunput( c, (yytext_ptr) )
182 #ifndef YY_TYPEDEF_YY_SIZE_T
183 #define YY_TYPEDEF_YY_SIZE_T
184 typedef size_t yy_size_t;
185 #endif
187 #ifndef YY_STRUCT_YY_BUFFER_STATE
188 #define YY_STRUCT_YY_BUFFER_STATE
189 struct yy_buffer_state
191 FILE *yy_input_file;
193 char *yy_ch_buf; /* input buffer */
194 char *yy_buf_pos; /* current position in input buffer */
196 /* Size of input buffer in bytes, not including room for EOB
197 * characters.
199 yy_size_t yy_buf_size;
201 /* Number of characters read into yy_ch_buf, not including EOB
202 * characters.
204 int yy_n_chars;
206 /* Whether we "own" the buffer - i.e., we know we created it,
207 * and can realloc() it to grow it, and should free() it to
208 * delete it.
210 int yy_is_our_buffer;
212 /* Whether this is an "interactive" input source; if so, and
213 * if we're using stdio for input, then we want to use getc()
214 * instead of fread(), to make sure we stop fetching input after
215 * each newline.
217 int yy_is_interactive;
219 /* Whether we're considered to be at the beginning of a line.
220 * If so, '^' rules will be active on the next match, otherwise
221 * not.
223 int yy_at_bol;
225 int yy_bs_lineno; /**< The line count. */
226 int yy_bs_column; /**< The column count. */
228 /* Whether to try to fill the input buffer when we reach the
229 * end of it.
231 int yy_fill_buffer;
233 int yy_buffer_status;
235 #define YY_BUFFER_NEW 0
236 #define YY_BUFFER_NORMAL 1
237 /* When an EOF's been seen but there's still some text to process
238 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
239 * shouldn't try reading from the input source any more. We might
240 * still have a bunch of tokens to match, though, because of
241 * possible backing-up.
243 * When we actually see the EOF, we change the status to "new"
244 * (via yyrestart()), so that the user can continue scanning by
245 * just pointing yyin at a new input file.
247 #define YY_BUFFER_EOF_PENDING 2
250 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
252 /* Stack of input buffers. */
253 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
254 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
255 static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
257 /* We provide macros for accessing buffer states in case in the
258 * future we want to put the buffer states in a more general
259 * "scanner state".
261 * Returns the top of the stack, or NULL.
263 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
264 ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
265 : NULL)
267 /* Same as previous macro, but useful when we know that the buffer stack is not
268 * NULL or when we need an lvalue. For internal use only.
270 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
272 /* yy_hold_char holds the character lost when yytext is formed. */
273 static char yy_hold_char;
274 static int yy_n_chars; /* number of characters read into yy_ch_buf */
275 int yyleng;
277 /* Points to current character in buffer. */
278 static char *yy_c_buf_p = (char *) 0;
279 static int yy_init = 0; /* whether we need to initialize */
280 static int yy_start = 0; /* start state number */
282 /* Flag which is used to allow yywrap()'s to do buffer switches
283 * instead of setting up a fresh yyin. A bit of a hack ...
285 static int yy_did_buffer_switch_on_eof;
287 void yyrestart (FILE *input_file );
288 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
289 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
290 void yy_delete_buffer (YY_BUFFER_STATE b );
291 void yy_flush_buffer (YY_BUFFER_STATE b );
292 void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
293 void yypop_buffer_state (void );
295 static void yyensure_buffer_stack (void );
296 static void yy_load_buffer_state (void );
297 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
299 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
301 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
302 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
303 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
305 void *yyalloc (yy_size_t );
306 void *yyrealloc (void *,yy_size_t );
307 void yyfree (void * );
309 #define yy_new_buffer yy_create_buffer
311 #define yy_set_interactive(is_interactive) \
313 if ( ! YY_CURRENT_BUFFER ){ \
314 yyensure_buffer_stack (); \
315 YY_CURRENT_BUFFER_LVALUE = \
316 yy_create_buffer(yyin,YY_BUF_SIZE ); \
318 YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
321 #define yy_set_bol(at_bol) \
323 if ( ! YY_CURRENT_BUFFER ){\
324 yyensure_buffer_stack (); \
325 YY_CURRENT_BUFFER_LVALUE = \
326 yy_create_buffer(yyin,YY_BUF_SIZE ); \
328 YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
331 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
333 /* Begin user sect3 */
335 typedef unsigned char YY_CHAR;
337 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
339 typedef int yy_state_type;
341 extern int yylineno;
343 int yylineno = 1;
345 extern char *yytext;
346 #define yytext_ptr yytext
348 static yy_state_type yy_get_previous_state (void );
349 static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
350 static int yy_get_next_buffer (void );
351 static void yy_fatal_error (yyconst char msg[] );
353 /* Done after the current pattern has been matched and before the
354 * corresponding action - sets up yytext.
356 #define YY_DO_BEFORE_ACTION \
357 (yytext_ptr) = yy_bp; \
358 yyleng = (size_t) (yy_cp - yy_bp); \
359 (yy_hold_char) = *yy_cp; \
360 *yy_cp = '\0'; \
361 (yy_c_buf_p) = yy_cp;
363 #define YY_NUM_RULES 12
364 #define YY_END_OF_BUFFER 13
365 /* This struct is not used in this scanner,
366 but its presence is necessary. */
367 struct yy_trans_info
369 flex_int32_t yy_verify;
370 flex_int32_t yy_nxt;
372 static yyconst flex_int16_t yy_accept[36] =
373 { 0,
374 0, 0, 13, 12, 11, 9, 10, 8, 7, 7,
375 7, 7, 7, 7, 7, 7, 7, 5, 4, 7,
376 7, 3, 7, 7, 7, 7, 7, 1, 2, 7,
377 7, 7, 7, 6, 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, 4, 5, 1, 1, 4, 1, 1, 4,
386 4, 1, 1, 4, 6, 4, 1, 6, 6, 6,
387 6, 6, 6, 6, 6, 6, 6, 1, 1, 1,
388 4, 1, 1, 1, 7, 8, 9, 10, 11, 12,
389 8, 13, 14, 8, 8, 15, 16, 17, 18, 8,
390 8, 19, 20, 21, 22, 8, 8, 8, 8, 8,
391 1, 1, 1, 1, 6, 1, 8, 8, 8, 8,
393 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
394 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
395 8, 8, 4, 1, 4, 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, 1, 1, 1, 2, 2, 2, 2, 2,
415 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
416 2, 2
419 static yyconst flex_int16_t yy_base[37] =
420 { 0,
421 0, 0, 43, 44, 44, 44, 44, 44, 25, 0,
422 34, 23, 20, 16, 0, 28, 22, 0, 0, 22,
423 12, 0, 13, 17, 20, 19, 13, 0, 0, 21,
424 6, 17, 12, 0, 44, 22
427 static yyconst flex_int16_t yy_def[37] =
428 { 0,
429 35, 1, 35, 35, 35, 35, 35, 35, 36, 36,
430 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
431 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
432 36, 36, 36, 36, 0, 35
435 static yyconst flex_int16_t yy_nxt[67] =
436 { 0,
437 4, 5, 6, 7, 8, 4, 9, 10, 10, 10,
438 10, 11, 10, 12, 10, 10, 10, 13, 10, 10,
439 14, 10, 20, 15, 34, 33, 32, 31, 30, 29,
440 28, 27, 26, 25, 21, 24, 23, 22, 19, 18,
441 17, 16, 35, 3, 35, 35, 35, 35, 35, 35,
442 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
443 35, 35, 35, 35, 35, 35
446 static yyconst flex_int16_t yy_chk[67] =
447 { 0,
448 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
449 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
450 1, 1, 14, 36, 33, 32, 31, 30, 27, 26,
451 25, 24, 23, 21, 14, 20, 17, 16, 13, 12,
452 11, 9, 3, 35, 35, 35, 35, 35, 35, 35,
453 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
454 35, 35, 35, 35, 35, 35
457 static yy_state_type yy_last_accepting_state;
458 static char *yy_last_accepting_cpos;
460 extern int yy_flex_debug;
461 int yy_flex_debug = 0;
463 /* The intent behind this definition is that it'll catch
464 * any uses of REJECT which flex missed.
466 #define REJECT reject_used_but_not_detected
467 #define yymore() yymore_used_but_not_detected
468 #define YY_MORE_ADJ 0
469 #define YY_RESTORE_YY_MORE_OFFSET
470 char *yytext;
472 * Copyright (c) 2004, 2008 Kungliga Tekniska Högskolan
473 * (Royal Institute of Technology, Stockholm, Sweden).
474 * All rights reserved.
476 * Redistribution and use in source and binary forms, with or without
477 * modification, are permitted provided that the following conditions
478 * are met:
480 * 1. Redistributions of source code must retain the above copyright
481 * notice, this list of conditions and the following disclaimer.
483 * 2. Redistributions in binary form must reproduce the above copyright
484 * notice, this list of conditions and the following disclaimer in the
485 * documentation and/or other materials provided with the distribution.
487 * 3. Neither the name of the Institute nor the names of its contributors
488 * may be used to endorse or promote products derived from this software
489 * without specific prior written permission.
491 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
492 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
493 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
494 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
495 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
496 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
497 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
498 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
499 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
500 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
501 * SUCH DAMAGE.
504 /* $Id$ */
506 #ifdef HAVE_CONFIG_H
507 #include <config.h>
508 #endif
510 #undef ECHO
512 #include <stdio.h>
513 #include <string.h>
514 #include <stdarg.h>
515 #include <stdlib.h>
516 #include "sel.h"
517 #include "sel-gram.h"
518 unsigned lineno = 1;
520 static char * handle_string(void);
521 static int lex_input(char *, int);
523 struct hx_expr_input _hx509_expr_input;
525 #ifndef YY_NULL
526 #define YY_NULL 0
527 #endif
529 #define YY_NO_UNPUT 1
531 #undef YY_INPUT
532 #define YY_INPUT(buf,res,maxsize) (res = lex_input(buf, maxsize))
534 #undef ECHO
536 #define INITIAL 0
538 #ifndef YY_NO_UNISTD_H
539 /* Special case for "unistd.h", since it is non-ANSI. We include it way
540 * down here because we want the user's section 1 to have been scanned first.
541 * The user has a chance to override it with an option.
543 #include <unistd.h>
544 #endif
546 #ifndef YY_EXTRA_TYPE
547 #define YY_EXTRA_TYPE void *
548 #endif
550 static int yy_init_globals (void );
552 /* Accessor methods to globals.
553 These are made visible to non-reentrant scanners for convenience. */
555 int yylex_destroy (void );
557 int yyget_debug (void );
559 void yyset_debug (int debug_flag );
561 YY_EXTRA_TYPE yyget_extra (void );
563 void yyset_extra (YY_EXTRA_TYPE user_defined );
565 FILE *yyget_in (void );
567 void yyset_in (FILE * in_str );
569 FILE *yyget_out (void );
571 void yyset_out (FILE * out_str );
573 int yyget_leng (void );
575 char *yyget_text (void );
577 int yyget_lineno (void );
579 void yyset_lineno (int line_number );
581 /* Macros after this point can all be overridden by user definitions in
582 * section 1.
585 #ifndef YY_SKIP_YYWRAP
586 #ifdef __cplusplus
587 extern "C" int yywrap (void );
588 #else
589 extern int yywrap (void );
590 #endif
591 #endif
593 static void yyunput (int c,char *buf_ptr );
595 #ifndef yytext_ptr
596 static void yy_flex_strncpy (char *,yyconst char *,int );
597 #endif
599 #ifdef YY_NEED_STRLEN
600 static int yy_flex_strlen (yyconst char * );
601 #endif
603 #ifndef YY_NO_INPUT
605 #ifdef __cplusplus
606 static int yyinput (void );
607 #else
608 static int input (void );
609 #endif
611 #endif
613 /* Amount of stuff to slurp up with each read. */
614 #ifndef YY_READ_BUF_SIZE
615 #define YY_READ_BUF_SIZE 8192
616 #endif
618 /* Copy whatever the last rule matched to the standard output. */
619 #ifndef ECHO
620 /* This used to be an fputs(), but since the string might contain NUL's,
621 * we now use fwrite().
623 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
624 #endif
626 /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
627 * is returned in "result".
629 #ifndef YY_INPUT
630 #define YY_INPUT(buf,result,max_size) \
631 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
633 int c = '*'; \
634 unsigned n; \
635 for ( n = 0; n < max_size && \
636 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
637 buf[n] = (char) c; \
638 if ( c == '\n' ) \
639 buf[n++] = (char) c; \
640 if ( c == EOF && ferror( yyin ) ) \
641 YY_FATAL_ERROR( "input in flex scanner failed" ); \
642 result = n; \
644 else \
646 errno=0; \
647 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
649 if( errno != EINTR) \
651 YY_FATAL_ERROR( "input in flex scanner failed" ); \
652 break; \
654 errno=0; \
655 clearerr(yyin); \
660 #endif
662 /* No semi-colon after return; correct usage is to write "yyterminate();" -
663 * we don't want an extra ';' after the "return" because that will cause
664 * some compilers to complain about unreachable statements.
666 #ifndef yyterminate
667 #define yyterminate() return YY_NULL
668 #endif
670 /* Number of entries by which start-condition stack grows. */
671 #ifndef YY_START_STACK_INCR
672 #define YY_START_STACK_INCR 25
673 #endif
675 /* Report a fatal error. */
676 #ifndef YY_FATAL_ERROR
677 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
678 #endif
680 /* end tables serialization structures and prototypes */
682 /* Default declaration of generated scanner - a define so the user can
683 * easily add parameters.
685 #ifndef YY_DECL
686 #define YY_DECL_IS_OURS 1
688 extern int yylex (void);
690 #define YY_DECL int yylex (void)
691 #endif /* !YY_DECL */
693 /* Code executed at the beginning of each rule, after yytext and yyleng
694 * have been set up.
696 #ifndef YY_USER_ACTION
697 #define YY_USER_ACTION
698 #endif
700 /* Code executed at the end of each rule. */
701 #ifndef YY_BREAK
702 #define YY_BREAK break;
703 #endif
705 #define YY_RULE_SETUP \
706 YY_USER_ACTION
708 /** The main scanner function which does all the work.
710 YY_DECL
712 register yy_state_type yy_current_state;
713 register char *yy_cp, *yy_bp;
714 register int yy_act;
716 if ( !(yy_init) )
718 (yy_init) = 1;
720 #ifdef YY_USER_INIT
721 YY_USER_INIT;
722 #endif
724 if ( ! (yy_start) )
725 (yy_start) = 1; /* first start state */
727 if ( ! yyin )
728 yyin = stdin;
730 if ( ! yyout )
731 yyout = stdout;
733 if ( ! YY_CURRENT_BUFFER ) {
734 yyensure_buffer_stack ();
735 YY_CURRENT_BUFFER_LVALUE =
736 yy_create_buffer(yyin,YY_BUF_SIZE );
739 yy_load_buffer_state( );
742 while ( 1 ) /* loops until end-of-file is reached */
744 yy_cp = (yy_c_buf_p);
746 /* Support of yytext. */
747 *yy_cp = (yy_hold_char);
749 /* yy_bp points to the position in yy_ch_buf of the start of
750 * the current run.
752 yy_bp = yy_cp;
754 yy_current_state = (yy_start);
755 yy_match:
758 register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
759 if ( yy_accept[yy_current_state] )
761 (yy_last_accepting_state) = yy_current_state;
762 (yy_last_accepting_cpos) = yy_cp;
764 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
766 yy_current_state = (int) yy_def[yy_current_state];
767 if ( yy_current_state >= 36 )
768 yy_c = yy_meta[(unsigned int) yy_c];
770 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
771 ++yy_cp;
773 while ( yy_base[yy_current_state] != 44 );
775 yy_find_action:
776 yy_act = yy_accept[yy_current_state];
777 if ( yy_act == 0 )
778 { /* have to back up */
779 yy_cp = (yy_last_accepting_cpos);
780 yy_current_state = (yy_last_accepting_state);
781 yy_act = yy_accept[yy_current_state];
784 YY_DO_BEFORE_ACTION;
786 do_action: /* This label is used only to access EOF actions. */
788 switch ( yy_act )
789 { /* beginning of action switch */
790 case 0: /* must back up */
791 /* undo the effects of YY_DO_BEFORE_ACTION */
792 *yy_cp = (yy_hold_char);
793 yy_cp = (yy_last_accepting_cpos);
794 yy_current_state = (yy_last_accepting_state);
795 goto yy_find_action;
797 case 1:
798 YY_RULE_SETUP
799 { return kw_TRUE; }
800 YY_BREAK
801 case 2:
802 YY_RULE_SETUP
803 { return kw_FALSE; }
804 YY_BREAK
805 case 3:
806 YY_RULE_SETUP
807 { return kw_AND; }
808 YY_BREAK
809 case 4:
810 YY_RULE_SETUP
811 { return kw_OR; }
812 YY_BREAK
813 case 5:
814 YY_RULE_SETUP
815 { return kw_IN; }
816 YY_BREAK
817 case 6:
818 YY_RULE_SETUP
819 { return kw_TAILMATCH; }
820 YY_BREAK
821 case 7:
822 YY_RULE_SETUP
824 yylval.string = strdup ((const char *)yytext);
825 return IDENTIFIER;
827 YY_BREAK
828 case 8:
829 YY_RULE_SETUP
830 { yylval.string = handle_string(); return STRING; }
831 YY_BREAK
832 case 9:
833 /* rule 9 can match eol */
834 YY_RULE_SETUP
835 { ++lineno; }
836 YY_BREAK
837 case 10:
838 YY_RULE_SETUP
839 { return *yytext; }
840 YY_BREAK
841 case 11:
842 YY_RULE_SETUP
844 YY_BREAK
845 case 12:
846 YY_RULE_SETUP
847 ECHO;
848 YY_BREAK
849 case YY_STATE_EOF(INITIAL):
850 yyterminate();
852 case YY_END_OF_BUFFER:
854 /* Amount of text matched not including the EOB char. */
855 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
857 /* Undo the effects of YY_DO_BEFORE_ACTION. */
858 *yy_cp = (yy_hold_char);
859 YY_RESTORE_YY_MORE_OFFSET
861 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
863 /* We're scanning a new file or input source. It's
864 * possible that this happened because the user
865 * just pointed yyin at a new source and called
866 * yylex(). If so, then we have to assure
867 * consistency between YY_CURRENT_BUFFER and our
868 * globals. Here is the right place to do so, because
869 * this is the first action (other than possibly a
870 * back-up) that will match for the new input source.
872 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
873 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
874 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
877 /* Note that here we test for yy_c_buf_p "<=" to the position
878 * of the first EOB in the buffer, since yy_c_buf_p will
879 * already have been incremented past the NUL character
880 * (since all states make transitions on EOB to the
881 * end-of-buffer state). Contrast this with the test
882 * in input().
884 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
885 { /* This was really a NUL. */
886 yy_state_type yy_next_state;
888 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
890 yy_current_state = yy_get_previous_state( );
892 /* Okay, we're now positioned to make the NUL
893 * transition. We couldn't have
894 * yy_get_previous_state() go ahead and do it
895 * for us because it doesn't know how to deal
896 * with the possibility of jamming (and we don't
897 * want to build jamming into it because then it
898 * will run more slowly).
901 yy_next_state = yy_try_NUL_trans( yy_current_state );
903 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
905 if ( yy_next_state )
907 /* Consume the NUL. */
908 yy_cp = ++(yy_c_buf_p);
909 yy_current_state = yy_next_state;
910 goto yy_match;
913 else
915 yy_cp = (yy_c_buf_p);
916 goto yy_find_action;
920 else switch ( yy_get_next_buffer( ) )
922 case EOB_ACT_END_OF_FILE:
924 (yy_did_buffer_switch_on_eof) = 0;
926 if ( yywrap( ) )
928 /* Note: because we've taken care in
929 * yy_get_next_buffer() to have set up
930 * yytext, we can now set up
931 * yy_c_buf_p so that if some total
932 * hoser (like flex itself) wants to
933 * call the scanner after we return the
934 * YY_NULL, it'll still work - another
935 * YY_NULL will get returned.
937 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
939 yy_act = YY_STATE_EOF(YY_START);
940 goto do_action;
943 else
945 if ( ! (yy_did_buffer_switch_on_eof) )
946 YY_NEW_FILE;
948 break;
951 case EOB_ACT_CONTINUE_SCAN:
952 (yy_c_buf_p) =
953 (yytext_ptr) + yy_amount_of_matched_text;
955 yy_current_state = yy_get_previous_state( );
957 yy_cp = (yy_c_buf_p);
958 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
959 goto yy_match;
961 case EOB_ACT_LAST_MATCH:
962 (yy_c_buf_p) =
963 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
965 yy_current_state = yy_get_previous_state( );
967 yy_cp = (yy_c_buf_p);
968 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
969 goto yy_find_action;
971 break;
974 default:
975 YY_FATAL_ERROR(
976 "fatal flex scanner internal error--no action found" );
977 } /* end of action switch */
978 } /* end of scanning one token */
979 } /* end of yylex */
981 /* yy_get_next_buffer - try to read in a new buffer
983 * Returns a code representing an action:
984 * EOB_ACT_LAST_MATCH -
985 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
986 * EOB_ACT_END_OF_FILE - end of file
988 static int yy_get_next_buffer (void)
990 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
991 register char *source = (yytext_ptr);
992 register int number_to_move, i;
993 int ret_val;
995 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
996 YY_FATAL_ERROR(
997 "fatal flex scanner internal error--end of buffer missed" );
999 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1000 { /* Don't try to fill the buffer, so this is an EOF. */
1001 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1003 /* We matched a single character, the EOB, so
1004 * treat this as a final EOF.
1006 return EOB_ACT_END_OF_FILE;
1009 else
1011 /* We matched some text prior to the EOB, first
1012 * process it.
1014 return EOB_ACT_LAST_MATCH;
1018 /* Try to read more data. */
1020 /* First move last chars to start of buffer. */
1021 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1023 for ( i = 0; i < number_to_move; ++i )
1024 *(dest++) = *(source++);
1026 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1027 /* don't do the read, it's not guaranteed to return an EOF,
1028 * just force an EOF
1030 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1032 else
1034 int num_to_read =
1035 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1037 while ( num_to_read <= 0 )
1038 { /* Not enough room in the buffer - grow it. */
1040 /* just a shorter name for the current buffer */
1041 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1043 int yy_c_buf_p_offset =
1044 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1046 if ( b->yy_is_our_buffer )
1048 int new_size = b->yy_buf_size * 2;
1050 if ( new_size <= 0 )
1051 b->yy_buf_size += b->yy_buf_size / 8;
1052 else
1053 b->yy_buf_size *= 2;
1055 b->yy_ch_buf = (char *)
1056 /* Include room in for 2 EOB chars. */
1057 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1059 else
1060 /* Can't grow it, we don't own it. */
1061 b->yy_ch_buf = 0;
1063 if ( ! b->yy_ch_buf )
1064 YY_FATAL_ERROR(
1065 "fatal error - scanner input buffer overflow" );
1067 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1069 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1070 number_to_move - 1;
1074 if ( num_to_read > YY_READ_BUF_SIZE )
1075 num_to_read = YY_READ_BUF_SIZE;
1077 /* Read in more data. */
1078 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1079 (yy_n_chars), (size_t) num_to_read );
1081 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1084 if ( (yy_n_chars) == 0 )
1086 if ( number_to_move == YY_MORE_ADJ )
1088 ret_val = EOB_ACT_END_OF_FILE;
1089 yyrestart(yyin );
1092 else
1094 ret_val = EOB_ACT_LAST_MATCH;
1095 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1096 YY_BUFFER_EOF_PENDING;
1100 else
1101 ret_val = EOB_ACT_CONTINUE_SCAN;
1103 if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1104 /* Extend the array by 50%, plus the number we really need. */
1105 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1106 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
1107 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1108 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1111 (yy_n_chars) += number_to_move;
1112 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1113 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1115 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1117 return ret_val;
1120 /* yy_get_previous_state - get the state just before the EOB char was reached */
1122 static yy_state_type yy_get_previous_state (void)
1124 register yy_state_type yy_current_state;
1125 register char *yy_cp;
1127 yy_current_state = (yy_start);
1129 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1131 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1132 if ( yy_accept[yy_current_state] )
1134 (yy_last_accepting_state) = yy_current_state;
1135 (yy_last_accepting_cpos) = yy_cp;
1137 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1139 yy_current_state = (int) yy_def[yy_current_state];
1140 if ( yy_current_state >= 36 )
1141 yy_c = yy_meta[(unsigned int) yy_c];
1143 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1146 return yy_current_state;
1149 /* yy_try_NUL_trans - try to make a transition on the NUL character
1151 * synopsis
1152 * next_state = yy_try_NUL_trans( current_state );
1154 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1156 register int yy_is_jam;
1157 register char *yy_cp = (yy_c_buf_p);
1159 register YY_CHAR yy_c = 1;
1160 if ( yy_accept[yy_current_state] )
1162 (yy_last_accepting_state) = yy_current_state;
1163 (yy_last_accepting_cpos) = yy_cp;
1165 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1167 yy_current_state = (int) yy_def[yy_current_state];
1168 if ( yy_current_state >= 36 )
1169 yy_c = yy_meta[(unsigned int) yy_c];
1171 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1172 yy_is_jam = (yy_current_state == 35);
1174 return yy_is_jam ? 0 : yy_current_state;
1177 static void yyunput (int c, register char * yy_bp )
1179 register char *yy_cp;
1181 yy_cp = (yy_c_buf_p);
1183 /* undo effects of setting up yytext */
1184 *yy_cp = (yy_hold_char);
1186 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1187 { /* need to shift things up to make room */
1188 /* +2 for EOB chars. */
1189 register int number_to_move = (yy_n_chars) + 2;
1190 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1191 YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1192 register char *source =
1193 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1195 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1196 *--dest = *--source;
1198 yy_cp += (int) (dest - source);
1199 yy_bp += (int) (dest - source);
1200 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1201 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1203 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1204 YY_FATAL_ERROR( "flex scanner push-back overflow" );
1207 *--yy_cp = (char) c;
1209 (yytext_ptr) = yy_bp;
1210 (yy_hold_char) = *yy_cp;
1211 (yy_c_buf_p) = yy_cp;
1214 #ifndef YY_NO_INPUT
1215 #ifdef __cplusplus
1216 static int yyinput (void)
1217 #else
1218 static int input (void)
1219 #endif
1222 int c;
1224 *(yy_c_buf_p) = (yy_hold_char);
1226 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1228 /* yy_c_buf_p now points to the character we want to return.
1229 * If this occurs *before* the EOB characters, then it's a
1230 * valid NUL; if not, then we've hit the end of the buffer.
1232 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1233 /* This was really a NUL. */
1234 *(yy_c_buf_p) = '\0';
1236 else
1237 { /* need more input */
1238 int offset = (yy_c_buf_p) - (yytext_ptr);
1239 ++(yy_c_buf_p);
1241 switch ( yy_get_next_buffer( ) )
1243 case EOB_ACT_LAST_MATCH:
1244 /* This happens because yy_g_n_b()
1245 * sees that we've accumulated a
1246 * token and flags that we need to
1247 * try matching the token before
1248 * proceeding. But for input(),
1249 * there's no matching to consider.
1250 * So convert the EOB_ACT_LAST_MATCH
1251 * to EOB_ACT_END_OF_FILE.
1254 /* Reset buffer status. */
1255 yyrestart(yyin );
1257 /*FALLTHROUGH*/
1259 case EOB_ACT_END_OF_FILE:
1261 if ( yywrap( ) )
1262 return EOF;
1264 if ( ! (yy_did_buffer_switch_on_eof) )
1265 YY_NEW_FILE;
1266 #ifdef __cplusplus
1267 return yyinput();
1268 #else
1269 return input();
1270 #endif
1273 case EOB_ACT_CONTINUE_SCAN:
1274 (yy_c_buf_p) = (yytext_ptr) + offset;
1275 break;
1280 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1281 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1282 (yy_hold_char) = *++(yy_c_buf_p);
1284 return c;
1286 #endif /* ifndef YY_NO_INPUT */
1288 /** Immediately switch to a different input stream.
1289 * @param input_file A readable stream.
1291 * @note This function does not reset the start condition to @c INITIAL .
1293 void yyrestart (FILE * input_file )
1296 if ( ! YY_CURRENT_BUFFER ){
1297 yyensure_buffer_stack ();
1298 YY_CURRENT_BUFFER_LVALUE =
1299 yy_create_buffer(yyin,YY_BUF_SIZE );
1302 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1303 yy_load_buffer_state( );
1306 /** Switch to a different input buffer.
1307 * @param new_buffer The new input buffer.
1310 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1313 /* TODO. We should be able to replace this entire function body
1314 * with
1315 * yypop_buffer_state();
1316 * yypush_buffer_state(new_buffer);
1318 yyensure_buffer_stack ();
1319 if ( YY_CURRENT_BUFFER == new_buffer )
1320 return;
1322 if ( YY_CURRENT_BUFFER )
1324 /* Flush out information for old buffer. */
1325 *(yy_c_buf_p) = (yy_hold_char);
1326 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1327 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1330 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1331 yy_load_buffer_state( );
1333 /* We don't actually know whether we did this switch during
1334 * EOF (yywrap()) processing, but the only time this flag
1335 * is looked at is after yywrap() is called, so it's safe
1336 * to go ahead and always set it.
1338 (yy_did_buffer_switch_on_eof) = 1;
1341 static void yy_load_buffer_state (void)
1343 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1344 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1345 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1346 (yy_hold_char) = *(yy_c_buf_p);
1349 /** Allocate and initialize an input buffer state.
1350 * @param file A readable stream.
1351 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1353 * @return the allocated buffer state.
1355 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1357 YY_BUFFER_STATE b;
1359 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1360 if ( ! b )
1361 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1363 b->yy_buf_size = size;
1365 /* yy_ch_buf has to be 2 characters longer than the size given because
1366 * we need to put in 2 end-of-buffer characters.
1368 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1369 if ( ! b->yy_ch_buf )
1370 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1372 b->yy_is_our_buffer = 1;
1374 yy_init_buffer(b,file );
1376 return b;
1379 /** Destroy the buffer.
1380 * @param b a buffer created with yy_create_buffer()
1383 void yy_delete_buffer (YY_BUFFER_STATE b )
1386 if ( ! b )
1387 return;
1389 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1390 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1392 if ( b->yy_is_our_buffer )
1393 yyfree((void *) b->yy_ch_buf );
1395 yyfree((void *) b );
1398 #ifndef __cplusplus
1399 extern int isatty (int );
1400 #endif /* __cplusplus */
1402 /* Initializes or reinitializes a buffer.
1403 * This function is sometimes called more than once on the same buffer,
1404 * such as during a yyrestart() or at EOF.
1406 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1409 int oerrno = errno;
1411 yy_flush_buffer(b );
1413 b->yy_input_file = file;
1414 b->yy_fill_buffer = 1;
1416 /* If b is the current buffer, then yy_init_buffer was _probably_
1417 * called from yyrestart() or through yy_get_next_buffer.
1418 * In that case, we don't want to reset the lineno or column.
1420 if (b != YY_CURRENT_BUFFER){
1421 b->yy_bs_lineno = 1;
1422 b->yy_bs_column = 0;
1425 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1427 errno = oerrno;
1430 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1431 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1434 void yy_flush_buffer (YY_BUFFER_STATE b )
1436 if ( ! b )
1437 return;
1439 b->yy_n_chars = 0;
1441 /* We always need two end-of-buffer characters. The first causes
1442 * a transition to the end-of-buffer state. The second causes
1443 * a jam in that state.
1445 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1446 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1448 b->yy_buf_pos = &b->yy_ch_buf[0];
1450 b->yy_at_bol = 1;
1451 b->yy_buffer_status = YY_BUFFER_NEW;
1453 if ( b == YY_CURRENT_BUFFER )
1454 yy_load_buffer_state( );
1457 /** Pushes the new state onto the stack. The new state becomes
1458 * the current state. This function will allocate the stack
1459 * if necessary.
1460 * @param new_buffer The new state.
1463 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1465 if (new_buffer == NULL)
1466 return;
1468 yyensure_buffer_stack();
1470 /* This block is copied from yy_switch_to_buffer. */
1471 if ( YY_CURRENT_BUFFER )
1473 /* Flush out information for old buffer. */
1474 *(yy_c_buf_p) = (yy_hold_char);
1475 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1476 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1479 /* Only push if top exists. Otherwise, replace top. */
1480 if (YY_CURRENT_BUFFER)
1481 (yy_buffer_stack_top)++;
1482 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1484 /* copied from yy_switch_to_buffer. */
1485 yy_load_buffer_state( );
1486 (yy_did_buffer_switch_on_eof) = 1;
1489 /** Removes and deletes the top of the stack, if present.
1490 * The next element becomes the new top.
1493 void yypop_buffer_state (void)
1495 if (!YY_CURRENT_BUFFER)
1496 return;
1498 yy_delete_buffer(YY_CURRENT_BUFFER );
1499 YY_CURRENT_BUFFER_LVALUE = NULL;
1500 if ((yy_buffer_stack_top) > 0)
1501 --(yy_buffer_stack_top);
1503 if (YY_CURRENT_BUFFER) {
1504 yy_load_buffer_state( );
1505 (yy_did_buffer_switch_on_eof) = 1;
1509 /* Allocates the stack if it does not exist.
1510 * Guarantees space for at least one push.
1512 static void yyensure_buffer_stack (void)
1514 int num_to_alloc;
1516 if (!(yy_buffer_stack)) {
1518 /* First allocation is just for 2 elements, since we don't know if this
1519 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1520 * immediate realloc on the next call.
1522 num_to_alloc = 1;
1523 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1524 (num_to_alloc * sizeof(struct yy_buffer_state*)
1526 if ( ! (yy_buffer_stack) )
1527 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1529 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1531 (yy_buffer_stack_max) = num_to_alloc;
1532 (yy_buffer_stack_top) = 0;
1533 return;
1536 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1538 /* Increase the buffer to prepare for a possible push. */
1539 int grow_size = 8 /* arbitrary grow size */;
1541 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1542 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1543 ((yy_buffer_stack),
1544 num_to_alloc * sizeof(struct yy_buffer_state*)
1546 if ( ! (yy_buffer_stack) )
1547 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1549 /* zero only the new slots.*/
1550 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1551 (yy_buffer_stack_max) = num_to_alloc;
1555 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1556 * @param base the character buffer
1557 * @param size the size in bytes of the character buffer
1559 * @return the newly allocated buffer state object.
1561 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1563 YY_BUFFER_STATE b;
1565 if ( size < 2 ||
1566 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1567 base[size-1] != YY_END_OF_BUFFER_CHAR )
1568 /* They forgot to leave room for the EOB's. */
1569 return 0;
1571 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1572 if ( ! b )
1573 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1575 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1576 b->yy_buf_pos = b->yy_ch_buf = base;
1577 b->yy_is_our_buffer = 0;
1578 b->yy_input_file = 0;
1579 b->yy_n_chars = b->yy_buf_size;
1580 b->yy_is_interactive = 0;
1581 b->yy_at_bol = 1;
1582 b->yy_fill_buffer = 0;
1583 b->yy_buffer_status = YY_BUFFER_NEW;
1585 yy_switch_to_buffer(b );
1587 return b;
1590 /** Setup the input buffer state to scan a string. The next call to yylex() will
1591 * scan from a @e copy of @a str.
1592 * @param yystr a NUL-terminated string to scan
1594 * @return the newly allocated buffer state object.
1595 * @note If you want to scan bytes that may contain NUL values, then use
1596 * yy_scan_bytes() instead.
1598 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1601 return yy_scan_bytes(yystr,strlen(yystr) );
1604 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1605 * scan from a @e copy of @a bytes.
1606 * @param bytes the byte buffer to scan
1607 * @param len the number of bytes in the buffer pointed to by @a bytes.
1609 * @return the newly allocated buffer state object.
1611 YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1613 YY_BUFFER_STATE b;
1614 char *buf;
1615 yy_size_t n;
1616 int i;
1618 /* Get memory for full buffer, including space for trailing EOB's. */
1619 n = _yybytes_len + 2;
1620 buf = (char *) yyalloc(n );
1621 if ( ! buf )
1622 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1624 for ( i = 0; i < _yybytes_len; ++i )
1625 buf[i] = yybytes[i];
1627 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1629 b = yy_scan_buffer(buf,n );
1630 if ( ! b )
1631 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1633 /* It's okay to grow etc. this buffer, and we should throw it
1634 * away when we're done.
1636 b->yy_is_our_buffer = 1;
1638 return b;
1641 #ifndef YY_EXIT_FAILURE
1642 #define YY_EXIT_FAILURE 2
1643 #endif
1645 static void yy_fatal_error (yyconst char* msg )
1647 (void) fprintf( stderr, "%s\n", msg );
1648 exit( YY_EXIT_FAILURE );
1651 /* Redefine yyless() so it works in section 3 code. */
1653 #undef yyless
1654 #define yyless(n) \
1655 do \
1657 /* Undo effects of setting up yytext. */ \
1658 int yyless_macro_arg = (n); \
1659 YY_LESS_LINENO(yyless_macro_arg);\
1660 yytext[yyleng] = (yy_hold_char); \
1661 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1662 (yy_hold_char) = *(yy_c_buf_p); \
1663 *(yy_c_buf_p) = '\0'; \
1664 yyleng = yyless_macro_arg; \
1666 while ( 0 )
1668 /* Accessor methods (get/set functions) to struct members. */
1670 /** Get the current line number.
1673 int yyget_lineno (void)
1676 return yylineno;
1679 /** Get the input stream.
1682 FILE *yyget_in (void)
1684 return yyin;
1687 /** Get the output stream.
1690 FILE *yyget_out (void)
1692 return yyout;
1695 /** Get the length of the current token.
1698 int yyget_leng (void)
1700 return yyleng;
1703 /** Get the current token.
1707 char *yyget_text (void)
1709 return yytext;
1712 /** Set the current line number.
1713 * @param line_number
1716 void yyset_lineno (int line_number )
1719 yylineno = line_number;
1722 /** Set the input stream. This does not discard the current
1723 * input buffer.
1724 * @param in_str A readable stream.
1726 * @see yy_switch_to_buffer
1728 void yyset_in (FILE * in_str )
1730 yyin = in_str ;
1733 void yyset_out (FILE * out_str )
1735 yyout = out_str ;
1738 int yyget_debug (void)
1740 return yy_flex_debug;
1743 void yyset_debug (int bdebug )
1745 yy_flex_debug = bdebug ;
1748 static int yy_init_globals (void)
1750 /* Initialization is the same as for the non-reentrant scanner.
1751 * This function is called from yylex_destroy(), so don't allocate here.
1754 (yy_buffer_stack) = 0;
1755 (yy_buffer_stack_top) = 0;
1756 (yy_buffer_stack_max) = 0;
1757 (yy_c_buf_p) = (char *) 0;
1758 (yy_init) = 0;
1759 (yy_start) = 0;
1761 /* Defined in main.c */
1762 #ifdef YY_STDINIT
1763 yyin = stdin;
1764 yyout = stdout;
1765 #else
1766 yyin = (FILE *) 0;
1767 yyout = (FILE *) 0;
1768 #endif
1770 /* For future reference: Set errno on error, since we are called by
1771 * yylex_init()
1773 return 0;
1776 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
1777 int yylex_destroy (void)
1780 /* Pop the buffer stack, destroying each element. */
1781 while(YY_CURRENT_BUFFER){
1782 yy_delete_buffer(YY_CURRENT_BUFFER );
1783 YY_CURRENT_BUFFER_LVALUE = NULL;
1784 yypop_buffer_state();
1787 /* Destroy the stack itself. */
1788 yyfree((yy_buffer_stack) );
1789 (yy_buffer_stack) = NULL;
1791 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1792 * yylex() is called, initialization will occur. */
1793 yy_init_globals( );
1795 return 0;
1799 * Internal utility routines.
1802 #ifndef yytext_ptr
1803 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1805 register int i;
1806 for ( i = 0; i < n; ++i )
1807 s1[i] = s2[i];
1809 #endif
1811 #ifdef YY_NEED_STRLEN
1812 static int yy_flex_strlen (yyconst char * s )
1814 register int n;
1815 for ( n = 0; s[n]; ++n )
1818 return n;
1820 #endif
1822 void *yyalloc (yy_size_t size )
1824 return (void *) malloc( size );
1827 void *yyrealloc (void * ptr, yy_size_t size )
1829 /* The cast to (char *) in the following accommodates both
1830 * implementations that use char* generic pointers, and those
1831 * that use void* generic pointers. It works with the latter
1832 * because both ANSI C and C++ allow castless assignment from
1833 * any pointer type to void*, and deal with argument conversions
1834 * as though doing an assignment.
1836 return (void *) realloc( (char *) ptr, size );
1839 void yyfree (void * ptr )
1841 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1844 #define YYTABLES_NAME "yytables"
1846 static char *
1847 handle_string(void)
1849 char x[1024];
1850 int i = 0;
1851 int c;
1852 int quote = 0;
1853 while((c = input()) != EOF){
1854 if(quote) {
1855 x[i++] = '\\';
1856 x[i++] = c;
1857 quote = 0;
1858 continue;
1860 if(c == '\n'){
1861 _hx509_sel_yyerror("unterminated string");
1862 lineno++;
1863 break;
1865 if(c == '\\'){
1866 quote++;
1867 continue;
1869 if(c == '\"')
1870 break;
1871 x[i++] = c;
1873 x[i] = '\0';
1874 return strdup(x);
1878 yywrap ()
1880 return 1;
1883 static int
1884 lex_input(char *buf, int max_size)
1886 int n;
1888 n = _hx509_expr_input.length - _hx509_expr_input.offset;
1889 if (max_size < n)
1890 n = max_size;
1891 if (n <= 0)
1892 return YY_NULL;
1894 memcpy(buf, _hx509_expr_input.buf + _hx509_expr_input.offset, n);
1895 _hx509_expr_input.offset += n;
1897 return n;