Imported Upstream version 3.3.3
[debian/amanda] / oldrecover-src / uscan.c
1
2 #line 3 "uscan.c"
3
4 #define  YY_INT_ALIGNED short int
5
6 /* A lexical scanner generated by flex */
7
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
15
16 /* First, we deal with  platform-specific or compiler-specific issues. */
17
18 /* begin standard C headers. */
19 #include <stdio.h>
20 #include <string.h>
21 #include <errno.h>
22 #include <stdlib.h>
23
24 /* end standard C headers. */
25
26 /* flex integer type definitions */
27
28 #ifndef FLEXINT_H
29 #define FLEXINT_H
30
31 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
32
33 #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
34
35 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
36  * if you want the limit (max/min) macros for int types. 
37  */
38 #ifndef __STDC_LIMIT_MACROS
39 #define __STDC_LIMIT_MACROS 1
40 #endif
41
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 */
57
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
86
87 #endif /* ! FLEXINT_H */
88
89 #ifdef __cplusplus
90
91 /* The "const" storage-class-modifier is valid. */
92 #define YY_USE_CONST
93
94 #else   /* ! __cplusplus */
95
96 /* C99 requires __STDC__ to be defined as 1. */
97 #if defined (__STDC__)
98
99 #define YY_USE_CONST
100
101 #endif  /* defined (__STDC__) */
102 #endif  /* ! __cplusplus */
103
104 #ifdef YY_USE_CONST
105 #define yyconst const
106 #else
107 #define yyconst
108 #endif
109
110 /* Returned upon end-of-file. */
111 #define YY_NULL 0
112
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.
117  */
118 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
119
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.
123  */
124 #define BEGIN (yy_start) = 1 + 2 *
125
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.
129  */
130 #define YY_START (((yy_start) - 1) / 2)
131 #define YYSTATE YY_START
132
133 /* Action number for EOF rule of a given start state. */
134 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
135
136 /* Special action meaning "start processing a new file". */
137 #define YY_NEW_FILE yyrestart(yyin  )
138
139 #define YY_END_OF_BUFFER_CHAR 0
140
141 /* Size of default input buffer. */
142 #ifndef YY_BUF_SIZE
143 #define YY_BUF_SIZE 16384
144 #endif
145
146 /* The state buf must be large enough to hold one state per character in the main buffer.
147  */
148 #define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
149
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
154
155 extern int yyleng;
156
157 extern FILE *yyin, *yyout;
158
159 #define EOB_ACT_CONTINUE_SCAN 0
160 #define EOB_ACT_END_OF_FILE 1
161 #define EOB_ACT_LAST_MATCH 2
162
163     #define YY_LESS_LINENO(n)
164     
165 /* Return all but the first "n" matched characters back to the input stream. */
166 #define yyless(n) \
167         do \
168                 { \
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 */ \
176                 } \
177         while ( 0 )
178
179 #define unput(c) yyunput( c, (yytext_ptr)  )
180
181 #ifndef YY_TYPEDEF_YY_SIZE_T
182 #define YY_TYPEDEF_YY_SIZE_T
183 typedef size_t yy_size_t;
184 #endif
185
186 #ifndef YY_STRUCT_YY_BUFFER_STATE
187 #define YY_STRUCT_YY_BUFFER_STATE
188 struct yy_buffer_state
189         {
190         FILE *yy_input_file;
191
192         char *yy_ch_buf;                /* input buffer */
193         char *yy_buf_pos;               /* current position in input buffer */
194
195         /* Size of input buffer in bytes, not including room for EOB
196          * characters.
197          */
198         yy_size_t yy_buf_size;
199
200         /* Number of characters read into yy_ch_buf, not including EOB
201          * characters.
202          */
203         int yy_n_chars;
204
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.
208          */
209         int yy_is_our_buffer;
210
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.
215          */
216         int yy_is_interactive;
217
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.
221          */
222         int yy_at_bol;
223
224     int yy_bs_lineno; /**< The line count. */
225     int yy_bs_column; /**< The column count. */
226     
227         /* Whether to try to fill the input buffer when we reach the
228          * end of it.
229          */
230         int yy_fill_buffer;
231
232         int yy_buffer_status;
233
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.
241          *
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.
245          */
246 #define YY_BUFFER_EOF_PENDING 2
247
248         };
249 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
250
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. */
255
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".
259  *
260  * Returns the top of the stack, or NULL.
261  */
262 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
263                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
264                           : NULL)
265
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.
268  */
269 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
270
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;
275
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 */
280
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 ...
283  */
284 static int yy_did_buffer_switch_on_eof;
285
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 );
293
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  );
297
298 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
299
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  );
303
304 void *yyalloc (yy_size_t  );
305 void *yyrealloc (void *,yy_size_t  );
306 void yyfree (void *  );
307
308 #define yy_new_buffer yy_create_buffer
309
310 #define yy_set_interactive(is_interactive) \
311         { \
312         if ( ! YY_CURRENT_BUFFER ){ \
313         yyensure_buffer_stack (); \
314                 YY_CURRENT_BUFFER_LVALUE =    \
315             yy_create_buffer(yyin,YY_BUF_SIZE ); \
316         } \
317         YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
318         }
319
320 #define yy_set_bol(at_bol) \
321         { \
322         if ( ! YY_CURRENT_BUFFER ){\
323         yyensure_buffer_stack (); \
324                 YY_CURRENT_BUFFER_LVALUE =    \
325             yy_create_buffer(yyin,YY_BUF_SIZE ); \
326         } \
327         YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
328         }
329
330 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
331
332 /* Begin user sect3 */
333
334 typedef unsigned char YY_CHAR;
335
336 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
337
338 typedef int yy_state_type;
339
340 extern int yylineno;
341
342 int yylineno = 1;
343
344 extern char *yytext;
345 #define yytext_ptr yytext
346
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[]  );
351
352 /* Done after the current pattern has been matched and before the
353  * corresponding action - sets up yytext.
354  */
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;
361
362 #define YY_NUM_RULES 40
363 #define YY_END_OF_BUFFER 41
364 /* This struct is not used in this scanner,
365    but its presence is necessary. */
366 struct yy_trans_info
367         {
368         flex_int32_t yy_verify;
369         flex_int32_t yy_nxt;
370         };
371 static yyconst flex_int16_t yy_accept[131] =
372     {   0,
373         0,    0,    0,    0,   41,   40,   39,   38,   34,   38,
374        38,   22,   38,   38,   38,   38,   38,   38,   38,   38,
375        38,   38,   38,   35,   37,   40,   39,   38,   38,   38,
376        38,   38,    8,   38,   38,   38,   38,   38,   38,   38,
377        38,   13,   38,   38,   38,   38,   38,   38,   35,   36,
378        38,   38,   38,   14,    9,   38,   38,   38,   38,   38,
379        38,   23,   38,   38,   38,   19,   38,   38,   26,   27,
380        29,   38,   38,   15,   38,   38,   11,   38,   21,   38,
381        16,   24,   28,   10,   38,   38,   38,   38,   30,   31,
382        20,   38,   38,   38,   38,   38,   38,   38,   38,   38,
383
384        38,   38,   17,   38,   38,   38,   38,   38,   38,   38,
385        38,   38,   38,   18,   25,   12,   38,   38,    5,    4,
386         3,    6,    7,   38,    2,    1,   33,   38,   32,    0
387     } ;
388
389 static yyconst flex_int32_t yy_ec[256] =
390     {   0,
391         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
392         2,    2,    2,    1,    1,    1,    1,    1,    1,    1,
393         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
394         1,    2,    4,    5,    4,    4,    4,    4,    4,    4,
395         4,    4,    4,    4,    6,    4,    4,    7,    7,    7,
396         7,    7,    7,    7,    7,    7,    7,    4,    4,    4,
397         4,    4,    8,    4,    4,    4,    4,    4,    4,    4,
398         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
399         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
400         4,    9,    4,    4,    4,    4,   10,   11,   12,   13,
401
402        14,    4,    4,   15,   16,    4,   17,   18,   19,    4,
403        20,   21,   22,   23,   24,   25,   26,    4,   27,   28,
404        29,    4,    4,    4,    4,    4,    1,    4,    4,    4,
405         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
406         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
407         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
408         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
409         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
410         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
411         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
412
413         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
414         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
415         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
416         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
417         4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
418         4,    4,    4,    4,    4
419     } ;
420
421 static yyconst flex_int32_t yy_meta[30] =
422     {   0,
423         1,    1,    2,    3,    4,    3,    3,    3,    5,    3,
424         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
425         3,    3,    3,    3,    3,    3,    3,    3,    3
426     } ;
427
428 static yyconst flex_int16_t yy_base[135] =
429     {   0,
430         0,    0,   25,   26,  161,  162,   30,    0,  162,  154,
431        30,    0,  146,   25,  144,  129,   25,   28,  136,  128,
432       128,   28,  143,    0,  162,    0,   43,    0,   44,  145,
433        47,  138,  122,  135,  130,   32,  129,  122,  132,  120,
434       116,    0,  129,  128,  124,  114,  127,  114,    0,  162,
435       129,   49,   52,  107,    0,  124,  119,  107,  108,  109,
436       104,    0,  103,  114,  112,    0,  100,   47,    0,    0,
437       117,  116,  115,    0,   98,   95,    0,  109,    0,   98,
438        48,    0,    0,    0,   54,   97,   96,  105,  107,   61,
439         0,   99,  100,   88,   94,   89,   83,   83,   82,   92,
440
441        83,   96,   74,   76,   71,   75,   74,   83,   79,   70,
442        80,   79,   67,    0,    0,    0,   72,   58,    0,    0,
443         0,    0,    0,   64,    0,    0,   69,   62,   58,  162,
444        76,   79,   84,   87
445     } ;
446
447 static yyconst flex_int16_t yy_def[135] =
448     {   0,
449       130,    1,  131,  131,  130,  130,  130,  132,  130,  132,
450       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
451       132,  132,  132,  133,  130,  134,  130,  132,  132,  132,
452       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
453       132,  132,  132,  132,  132,  132,  132,  132,  133,  130,
454       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
455       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
456       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
457       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
458       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
459
460       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
461       132,  132,  132,  132,  132,  132,  132,  132,  132,  132,
462       132,  132,  132,  132,  132,  132,  132,  132,  132,    0,
463       130,  130,  130,  130
464     } ;
465
466 static yyconst flex_int16_t yy_nxt[192] =
467     {   0,
468         6,    7,    7,    8,    9,   10,   11,   12,    8,   13,
469         8,   14,   15,   16,   17,    8,    8,   18,   19,    8,
470        20,   21,    8,   22,   23,    8,    8,    8,    8,   25,
471        25,   27,   27,   26,   26,   30,   31,   33,   37,   39,
472        38,   46,   34,   40,   27,   27,   47,   58,   41,   51,
473        52,   42,   30,   31,   72,   52,   59,   73,   53,   85,
474        95,   86,   96,   97,  129,   87,  102,   90,  129,   98,
475       127,   88,  124,  113,  128,  127,   24,   24,   24,   24,
476        24,   28,  126,   28,   49,   49,   49,   50,  125,   50,
477        50,   50,  123,  122,  121,  120,  119,  118,  117,  116,
478
479       115,  114,  113,  112,  111,  110,  109,  108,  107,  106,
480       105,  104,  103,   89,  101,  100,   99,   94,   93,   92,
481        91,   90,   89,   71,   84,   83,   82,   81,   80,   79,
482        78,   77,   76,   75,   74,   71,   70,   69,   68,   67,
483        66,   65,   64,   63,   62,   61,   60,   57,   56,   55,
484        54,   53,   48,   45,   44,   43,   36,   35,   32,   29,
485       130,    5,  130,  130,  130,  130,  130,  130,  130,  130,
486       130,  130,  130,  130,  130,  130,  130,  130,  130,  130,
487       130,  130,  130,  130,  130,  130,  130,  130,  130,  130,
488       130
489
490     } ;
491
492 static yyconst flex_int16_t yy_chk[192] =
493     {   0,
494         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
495         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
496         1,    1,    1,    1,    1,    1,    1,    1,    1,    3,
497         4,    7,    7,    3,    4,   11,   11,   14,   17,   18,
498        17,   22,   14,   18,   27,   27,   22,   36,   18,   29,
499        29,   18,   31,   31,   52,   52,   36,   53,   53,   68,
500        81,   68,   81,   85,  129,   68,   90,   90,  128,   85,
501       124,   68,  113,  113,  127,  127,  131,  131,  131,  131,
502       131,  132,  118,  132,  133,  133,  133,  134,  117,  134,
503       134,  134,  112,  111,  110,  109,  108,  107,  106,  105,
504
505       104,  103,  102,  101,  100,   99,   98,   97,   96,   95,
506        94,   93,   92,   89,   88,   87,   86,   80,   78,   76,
507        75,   73,   72,   71,   67,   65,   64,   63,   61,   60,
508        59,   58,   57,   56,   54,   51,   48,   47,   46,   45,
509        44,   43,   41,   40,   39,   38,   37,   35,   34,   33,
510        32,   30,   23,   21,   20,   19,   16,   15,   13,   10,
511         5,  130,  130,  130,  130,  130,  130,  130,  130,  130,
512       130,  130,  130,  130,  130,  130,  130,  130,  130,  130,
513       130,  130,  130,  130,  130,  130,  130,  130,  130,  130,
514       130
515
516     } ;
517
518 static yy_state_type yy_last_accepting_state;
519 static char *yy_last_accepting_cpos;
520
521 extern int yy_flex_debug;
522 int yy_flex_debug = 0;
523
524 /* The intent behind this definition is that it'll catch
525  * any uses of REJECT which flex missed.
526  */
527 #define REJECT reject_used_but_not_detected
528 #define yymore() yymore_used_but_not_detected
529 #define YY_MORE_ADJ 0
530 #define YY_RESTORE_YY_MORE_OFFSET
531 char *yytext;
532 #line 1 "uscan.l"
533 /*
534  * amanda, the advanced maryland automatic network disk archiver
535  * Copyright (c) 1991-2000 University of Maryland at College Park
536  * Copyright (c) 2007-2012 Zmanda, Inc.  All Rights Reserved.
537  * All Rights Reserved.
538  *
539  * Permission to use, copy, modify, distribute, and sell this software and its
540  * documentation for any purpose is hereby granted without fee, provided that
541  * the above copyright notice appear in all copies and that both that
542  * copyright notice and this permission notice appear in supporting
543  * documentation, and that the name of U.M. not be used in advertising or
544  * publicity pertaining to distribution of the software without specific,
545  * written prior permission.  U.M. makes no representations about the
546  * suitability of this software for any purpose.  It is provided "as is"
547  * without express or implied warranty.
548  *
549  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
550  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
551  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
552  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
553  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
554  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
555  *
556  * Authors: the Amanda Development Team.  Its members are listed in a
557  * file named AUTHORS, in the root directory of this distribution.
558  */
559 /*
560  * $Id: uscan.l,v 1.3 2006/07/05 11:15:56 martinea Exp $
561  *
562  * lexer for amrecover interactive language
563  */
564 #line 33 "uscan.l"
565 #include "amanda.h"
566 #include "uparse.h"
567
568 /*
569  * We redefine this here to prevent compiler warning about ignoring fwrite
570  * return value...
571  */
572 #undef ECHO
573 #define ECHO do {                                               \
574                 if (fwrite(yytext, (size_t)yyleng, 1, yyout) <= 0) {    \
575                     yyerror("ECHO failure");                    \
576                 }                                               \
577         } while (0)
578
579 #define YY_NO_UNPUT
580
581 #define DATE_ALLOC_SIZE         sizeof("YYYY-MM-DD-HH-MM-SS")   /* includes null */
582
583 #define YY_DECL int yylex()
584 extern int yylex(void);
585
586 extern void     yyerror(char *s);
587 extern int      yyparse(void);
588 static int      ll_parse_date(int type, char *text);
589 int             process_line(char *line);
590
591 #line 63 "uscan.l"
592 static char *string_buf = NULL;
593 #line 594 "uscan.c"
594
595 #define INITIAL 0
596 #define quotedpath 1
597
598 #ifndef YY_NO_UNISTD_H
599 /* Special case for "unistd.h", since it is non-ANSI. We include it way
600  * down here because we want the user's section 1 to have been scanned first.
601  * The user has a chance to override it with an option.
602  */
603 #include <unistd.h>
604 #endif
605
606 #ifndef YY_EXTRA_TYPE
607 #define YY_EXTRA_TYPE void *
608 #endif
609
610 static int yy_init_globals (void );
611
612 /* Accessor methods to globals.
613    These are made visible to non-reentrant scanners for convenience. */
614
615 int yylex_destroy (void );
616
617 int yyget_debug (void );
618
619 void yyset_debug (int debug_flag  );
620
621 YY_EXTRA_TYPE yyget_extra (void );
622
623 void yyset_extra (YY_EXTRA_TYPE user_defined  );
624
625 FILE *yyget_in (void );
626
627 void yyset_in  (FILE * in_str  );
628
629 FILE *yyget_out (void );
630
631 void yyset_out  (FILE * out_str  );
632
633 int yyget_leng (void );
634
635 char *yyget_text (void );
636
637 int yyget_lineno (void );
638
639 void yyset_lineno (int line_number  );
640
641 /* Macros after this point can all be overridden by user definitions in
642  * section 1.
643  */
644
645 #ifndef YY_SKIP_YYWRAP
646 #ifdef __cplusplus
647 extern "C" int yywrap (void );
648 #else
649 extern int yywrap (void );
650 #endif
651 #endif
652
653     static void yyunput (int c,char *buf_ptr  );
654     
655 #ifndef yytext_ptr
656 static void yy_flex_strncpy (char *,yyconst char *,int );
657 #endif
658
659 #ifdef YY_NEED_STRLEN
660 static int yy_flex_strlen (yyconst char * );
661 #endif
662
663 #ifndef YY_NO_INPUT
664
665 #ifdef __cplusplus
666 static int yyinput (void );
667 #else
668 static int input (void );
669 #endif
670
671 #endif
672
673 /* Amount of stuff to slurp up with each read. */
674 #ifndef YY_READ_BUF_SIZE
675 #define YY_READ_BUF_SIZE 8192
676 #endif
677
678 /* Copy whatever the last rule matched to the standard output. */
679 #ifndef ECHO
680 /* This used to be an fputs(), but since the string might contain NUL's,
681  * we now use fwrite().
682  */
683 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
684 #endif
685
686 /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
687  * is returned in "result".
688  */
689 #ifndef YY_INPUT
690 #define YY_INPUT(buf,result,max_size) \
691         if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
692                 { \
693                 int c = '*'; \
694                 unsigned n; \
695                 for ( n = 0; n < max_size && \
696                              (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
697                         buf[n] = (char) c; \
698                 if ( c == '\n' ) \
699                         buf[n++] = (char) c; \
700                 if ( c == EOF && ferror( yyin ) ) \
701                         YY_FATAL_ERROR( "input in flex scanner failed" ); \
702                 result = n; \
703                 } \
704         else \
705                 { \
706                 errno=0; \
707                 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
708                         { \
709                         if( errno != EINTR) \
710                                 { \
711                                 YY_FATAL_ERROR( "input in flex scanner failed" ); \
712                                 break; \
713                                 } \
714                         errno=0; \
715                         clearerr(yyin); \
716                         } \
717                 }\
718 \
719
720 #endif
721
722 /* No semi-colon after return; correct usage is to write "yyterminate();" -
723  * we don't want an extra ';' after the "return" because that will cause
724  * some compilers to complain about unreachable statements.
725  */
726 #ifndef yyterminate
727 #define yyterminate() return YY_NULL
728 #endif
729
730 /* Number of entries by which start-condition stack grows. */
731 #ifndef YY_START_STACK_INCR
732 #define YY_START_STACK_INCR 25
733 #endif
734
735 /* Report a fatal error. */
736 #ifndef YY_FATAL_ERROR
737 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
738 #endif
739
740 /* end tables serialization structures and prototypes */
741
742 /* Default declaration of generated scanner - a define so the user can
743  * easily add parameters.
744  */
745 #ifndef YY_DECL
746 #define YY_DECL_IS_OURS 1
747
748 extern int yylex (void);
749
750 #define YY_DECL int yylex (void)
751 #endif /* !YY_DECL */
752
753 /* Code executed at the beginning of each rule, after yytext and yyleng
754  * have been set up.
755  */
756 #ifndef YY_USER_ACTION
757 #define YY_USER_ACTION
758 #endif
759
760 /* Code executed at the end of each rule. */
761 #ifndef YY_BREAK
762 #define YY_BREAK break;
763 #endif
764
765 #define YY_RULE_SETUP \
766         YY_USER_ACTION
767
768 /** The main scanner function which does all the work.
769  */
770 YY_DECL
771 {
772         register yy_state_type yy_current_state;
773         register char *yy_cp, *yy_bp;
774         register int yy_act;
775     
776 #line 66 "uscan.l"
777
778
779
780     /* literal keyword tokens */
781
782
783 #line 784 "uscan.c"
784
785         if ( !(yy_init) )
786                 {
787                 (yy_init) = 1;
788
789 #ifdef YY_USER_INIT
790                 YY_USER_INIT;
791 #endif
792
793                 if ( ! (yy_start) )
794                         (yy_start) = 1; /* first start state */
795
796                 if ( ! yyin )
797                         yyin = stdin;
798
799                 if ( ! yyout )
800                         yyout = stdout;
801
802                 if ( ! YY_CURRENT_BUFFER ) {
803                         yyensure_buffer_stack ();
804                         YY_CURRENT_BUFFER_LVALUE =
805                                 yy_create_buffer(yyin,YY_BUF_SIZE );
806                 }
807
808                 yy_load_buffer_state( );
809                 }
810
811         while ( 1 )             /* loops until end-of-file is reached */
812                 {
813                 yy_cp = (yy_c_buf_p);
814
815                 /* Support of yytext. */
816                 *yy_cp = (yy_hold_char);
817
818                 /* yy_bp points to the position in yy_ch_buf of the start of
819                  * the current run.
820                  */
821                 yy_bp = yy_cp;
822
823                 yy_current_state = (yy_start);
824 yy_match:
825                 do
826                         {
827                         register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
828                         if ( yy_accept[yy_current_state] )
829                                 {
830                                 (yy_last_accepting_state) = yy_current_state;
831                                 (yy_last_accepting_cpos) = yy_cp;
832                                 }
833                         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
834                                 {
835                                 yy_current_state = (int) yy_def[yy_current_state];
836                                 if ( yy_current_state >= 131 )
837                                         yy_c = yy_meta[(unsigned int) yy_c];
838                                 }
839                         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
840                         ++yy_cp;
841                         }
842                 while ( yy_base[yy_current_state] != 162 );
843
844 yy_find_action:
845                 yy_act = yy_accept[yy_current_state];
846                 if ( yy_act == 0 )
847                         { /* have to back up */
848                         yy_cp = (yy_last_accepting_cpos);
849                         yy_current_state = (yy_last_accepting_state);
850                         yy_act = yy_accept[yy_current_state];
851                         }
852
853                 YY_DO_BEFORE_ACTION;
854
855 do_action:      /* This label is used only to access EOF actions. */
856
857                 switch ( yy_act )
858         { /* beginning of action switch */
859                         case 0: /* must back up */
860                         /* undo the effects of YY_DO_BEFORE_ACTION */
861                         *yy_cp = (yy_hold_char);
862                         yy_cp = (yy_last_accepting_cpos);
863                         yy_current_state = (yy_last_accepting_state);
864                         goto yy_find_action;
865
866 case 1:
867 YY_RULE_SETUP
868 #line 72 "uscan.l"
869 { return LISTHOST; }
870         YY_BREAK
871 case 2:
872 YY_RULE_SETUP
873 #line 73 "uscan.l"
874 { return LISTDISK; }
875         YY_BREAK
876 case 3:
877 YY_RULE_SETUP
878 #line 74 "uscan.l"
879 { return SETHOST; }
880         YY_BREAK
881 case 4:
882 YY_RULE_SETUP
883 #line 75 "uscan.l"
884 { return SETDISK; }
885         YY_BREAK
886 case 5:
887 YY_RULE_SETUP
888 #line 76 "uscan.l"
889 { return SETDATE; }
890         YY_BREAK
891 case 6:
892 YY_RULE_SETUP
893 #line 77 "uscan.l"
894 { return SETMODE; }
895         YY_BREAK
896 case 7:
897 YY_RULE_SETUP
898 #line 78 "uscan.l"
899 { return SETTAPE; }
900         YY_BREAK
901 case 8:
902 YY_RULE_SETUP
903 #line 79 "uscan.l"
904 { return CD; }
905         YY_BREAK
906 case 9:
907 YY_RULE_SETUP
908 #line 80 "uscan.l"
909 { return CDX; }
910         YY_BREAK
911 case 10:
912 YY_RULE_SETUP
913 #line 81 "uscan.l"
914 { return QUIT; }
915         YY_BREAK
916 case 11:
917 YY_RULE_SETUP
918 #line 82 "uscan.l"
919 { return QUIT; }
920         YY_BREAK
921 case 12:
922 YY_RULE_SETUP
923 #line 83 "uscan.l"
924 { return DHIST; }
925         YY_BREAK
926 case 13:
927 YY_RULE_SETUP
928 #line 84 "uscan.l"
929 { return LS; }
930         YY_BREAK
931 case 14:
932 YY_RULE_SETUP
933 #line 85 "uscan.l"
934 { return ADD; }
935         YY_BREAK
936 case 15:
937 YY_RULE_SETUP
938 #line 86 "uscan.l"
939 { return ADDX; }
940         YY_BREAK
941 case 16:
942 YY_RULE_SETUP
943 #line 87 "uscan.l"
944 { return LIST; }
945         YY_BREAK
946 case 17:
947 YY_RULE_SETUP
948 #line 88 "uscan.l"
949 { return DELETE; }
950         YY_BREAK
951 case 18:
952 YY_RULE_SETUP
953 #line 89 "uscan.l"
954 { return DELETEX; }
955         YY_BREAK
956 case 19:
957 YY_RULE_SETUP
958 #line 90 "uscan.l"
959 { return PWD; }
960         YY_BREAK
961 case 20:
962 YY_RULE_SETUP
963 #line 91 "uscan.l"
964 { return CLEAR; }
965         YY_BREAK
966 case 21:
967 YY_RULE_SETUP
968 #line 92 "uscan.l"
969 { return HELP; }
970         YY_BREAK
971 case 22:
972 YY_RULE_SETUP
973 #line 93 "uscan.l"
974 { return HELP; }
975         YY_BREAK
976 case 23:
977 YY_RULE_SETUP
978 #line 94 "uscan.l"
979 { return LCD; }
980         YY_BREAK
981 case 24:
982 YY_RULE_SETUP
983 #line 95 "uscan.l"
984 { return LPWD; }
985         YY_BREAK
986 case 25:
987 YY_RULE_SETUP
988 #line 96 "uscan.l"
989 { return EXTRACT; }
990         YY_BREAK
991 case 26:
992 YY_RULE_SETUP
993 #line 97 "uscan.l"
994 { return SMB; }
995         YY_BREAK
996 case 27:
997 YY_RULE_SETUP
998 #line 98 "uscan.l"
999 { return TAR; }
1000         YY_BREAK
1001 case 28:
1002 YY_RULE_SETUP
1003 #line 99 "uscan.l"
1004 { return MODE; }
1005         YY_BREAK
1006
1007     /* dates */
1008
1009 case 29:
1010 YY_RULE_SETUP
1011 #line 105 "uscan.l"
1012 { return ll_parse_date(1, yytext); }
1013         YY_BREAK
1014 case 30:
1015 YY_RULE_SETUP
1016 #line 106 "uscan.l"
1017 { return ll_parse_date(2, yytext); }
1018         YY_BREAK
1019 case 31:
1020 YY_RULE_SETUP
1021 #line 107 "uscan.l"
1022 { return ll_parse_date(3, yytext); }
1023         YY_BREAK
1024 case 32:
1025 YY_RULE_SETUP
1026 #line 108 "uscan.l"
1027 { return ll_parse_date(4, yytext); }
1028         YY_BREAK
1029 case 33:
1030 YY_RULE_SETUP
1031 #line 109 "uscan.l"
1032 { return ll_parse_date(5, yytext); }
1033         YY_BREAK
1034
1035     /* quoted file names */
1036
1037 case 34:
1038 YY_RULE_SETUP
1039 #line 115 "uscan.l"
1040 {
1041     if(string_buf != NULL) {
1042         g_printf("ERROR:string_buf != NULL: %s\n",string_buf);
1043     }
1044     BEGIN(quotedpath);
1045     strappend(string_buf, yytext);
1046 }
1047         YY_BREAK
1048 case 35:
1049 /* rule 35 can match eol */
1050 YY_RULE_SETUP
1051 #line 123 "uscan.l"
1052 {
1053     strappend(string_buf, yytext);
1054 }
1055         YY_BREAK
1056 case 36:
1057 YY_RULE_SETUP
1058 #line 127 "uscan.l"
1059 {
1060     /* escaped character (including quote) */
1061     strappend(string_buf, yytext);
1062 }
1063         YY_BREAK
1064 case 37:
1065 YY_RULE_SETUP
1066 #line 132 "uscan.l"
1067 { /* saw closing quote - all done */
1068     strappend(string_buf, yytext);
1069     yylval.strval = string_buf;
1070     string_buf = NULL;
1071     BEGIN(INITIAL);
1072     return PATH;
1073 }
1074         YY_BREAK
1075
1076     /* file names */
1077
1078 case 38:
1079 YY_RULE_SETUP
1080 #line 144 "uscan.l"
1081 {
1082     yylval.strval = stralloc(yytext);
1083     return PATH;
1084 }
1085         YY_BREAK
1086
1087     /* whitespace */
1088
1089 case 39:
1090 /* rule 39 can match eol */
1091 YY_RULE_SETUP
1092 #line 153 "uscan.l"
1093 ;     /* whitespace */
1094         YY_BREAK
1095
1096     /* anything else */
1097     /* everything should have been handled by now, so this rule is disabled */
1098
1099
1100 #if 0
1101 .       { yyerror("invalid character"); }
1102 #endif
1103
1104 case 40:
1105 YY_RULE_SETUP
1106 #line 166 "uscan.l"
1107 ECHO;
1108         YY_BREAK
1109 #line 1110 "uscan.c"
1110 case YY_STATE_EOF(INITIAL):
1111 case YY_STATE_EOF(quotedpath):
1112         yyterminate();
1113
1114         case YY_END_OF_BUFFER:
1115                 {
1116                 /* Amount of text matched not including the EOB char. */
1117                 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
1118
1119                 /* Undo the effects of YY_DO_BEFORE_ACTION. */
1120                 *yy_cp = (yy_hold_char);
1121                 YY_RESTORE_YY_MORE_OFFSET
1122
1123                 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
1124                         {
1125                         /* We're scanning a new file or input source.  It's
1126                          * possible that this happened because the user
1127                          * just pointed yyin at a new source and called
1128                          * yylex().  If so, then we have to assure
1129                          * consistency between YY_CURRENT_BUFFER and our
1130                          * globals.  Here is the right place to do so, because
1131                          * this is the first action (other than possibly a
1132                          * back-up) that will match for the new input source.
1133                          */
1134                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1135                         YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
1136                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
1137                         }
1138
1139                 /* Note that here we test for yy_c_buf_p "<=" to the position
1140                  * of the first EOB in the buffer, since yy_c_buf_p will
1141                  * already have been incremented past the NUL character
1142                  * (since all states make transitions on EOB to the
1143                  * end-of-buffer state).  Contrast this with the test
1144                  * in input().
1145                  */
1146                 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1147                         { /* This was really a NUL. */
1148                         yy_state_type yy_next_state;
1149
1150                         (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
1151
1152                         yy_current_state = yy_get_previous_state(  );
1153
1154                         /* Okay, we're now positioned to make the NUL
1155                          * transition.  We couldn't have
1156                          * yy_get_previous_state() go ahead and do it
1157                          * for us because it doesn't know how to deal
1158                          * with the possibility of jamming (and we don't
1159                          * want to build jamming into it because then it
1160                          * will run more slowly).
1161                          */
1162
1163                         yy_next_state = yy_try_NUL_trans( yy_current_state );
1164
1165                         yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1166
1167                         if ( yy_next_state )
1168                                 {
1169                                 /* Consume the NUL. */
1170                                 yy_cp = ++(yy_c_buf_p);
1171                                 yy_current_state = yy_next_state;
1172                                 goto yy_match;
1173                                 }
1174
1175                         else
1176                                 {
1177                                 yy_cp = (yy_c_buf_p);
1178                                 goto yy_find_action;
1179                                 }
1180                         }
1181
1182                 else switch ( yy_get_next_buffer(  ) )
1183                         {
1184                         case EOB_ACT_END_OF_FILE:
1185                                 {
1186                                 (yy_did_buffer_switch_on_eof) = 0;
1187
1188                                 if ( yywrap( ) )
1189                                         {
1190                                         /* Note: because we've taken care in
1191                                          * yy_get_next_buffer() to have set up
1192                                          * yytext, we can now set up
1193                                          * yy_c_buf_p so that if some total
1194                                          * hoser (like flex itself) wants to
1195                                          * call the scanner after we return the
1196                                          * YY_NULL, it'll still work - another
1197                                          * YY_NULL will get returned.
1198                                          */
1199                                         (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
1200
1201                                         yy_act = YY_STATE_EOF(YY_START);
1202                                         goto do_action;
1203                                         }
1204
1205                                 else
1206                                         {
1207                                         if ( ! (yy_did_buffer_switch_on_eof) )
1208                                                 YY_NEW_FILE;
1209                                         }
1210                                 break;
1211                                 }
1212
1213                         case EOB_ACT_CONTINUE_SCAN:
1214                                 (yy_c_buf_p) =
1215                                         (yytext_ptr) + yy_amount_of_matched_text;
1216
1217                                 yy_current_state = yy_get_previous_state(  );
1218
1219                                 yy_cp = (yy_c_buf_p);
1220                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1221                                 goto yy_match;
1222
1223                         case EOB_ACT_LAST_MATCH:
1224                                 (yy_c_buf_p) =
1225                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
1226
1227                                 yy_current_state = yy_get_previous_state(  );
1228
1229                                 yy_cp = (yy_c_buf_p);
1230                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1231                                 goto yy_find_action;
1232                         }
1233                 break;
1234                 }
1235
1236         default:
1237                 YY_FATAL_ERROR(
1238                         "fatal flex scanner internal error--no action found" );
1239         } /* end of action switch */
1240                 } /* end of scanning one token */
1241 } /* end of yylex */
1242
1243 /* yy_get_next_buffer - try to read in a new buffer
1244  *
1245  * Returns a code representing an action:
1246  *      EOB_ACT_LAST_MATCH -
1247  *      EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1248  *      EOB_ACT_END_OF_FILE - end of file
1249  */
1250 static int yy_get_next_buffer (void)
1251 {
1252         register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1253         register char *source = (yytext_ptr);
1254         register int number_to_move, i;
1255         int ret_val;
1256
1257         if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
1258                 YY_FATAL_ERROR(
1259                 "fatal flex scanner internal error--end of buffer missed" );
1260
1261         if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1262                 { /* Don't try to fill the buffer, so this is an EOF. */
1263                 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1264                         {
1265                         /* We matched a single character, the EOB, so
1266                          * treat this as a final EOF.
1267                          */
1268                         return EOB_ACT_END_OF_FILE;
1269                         }
1270
1271                 else
1272                         {
1273                         /* We matched some text prior to the EOB, first
1274                          * process it.
1275                          */
1276                         return EOB_ACT_LAST_MATCH;
1277                         }
1278                 }
1279
1280         /* Try to read more data. */
1281
1282         /* First move last chars to start of buffer. */
1283         number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1284
1285         for ( i = 0; i < number_to_move; ++i )
1286                 *(dest++) = *(source++);
1287
1288         if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1289                 /* don't do the read, it's not guaranteed to return an EOF,
1290                  * just force an EOF
1291                  */
1292                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1293
1294         else
1295                 {
1296                         int num_to_read =
1297                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1298
1299                 while ( num_to_read <= 0 )
1300                         { /* Not enough room in the buffer - grow it. */
1301
1302                         /* just a shorter name for the current buffer */
1303                         YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1304
1305                         int yy_c_buf_p_offset =
1306                                 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1307
1308                         if ( b->yy_is_our_buffer )
1309                                 {
1310                                 int new_size = b->yy_buf_size * 2;
1311
1312                                 if ( new_size <= 0 )
1313                                         b->yy_buf_size += b->yy_buf_size / 8;
1314                                 else
1315                                         b->yy_buf_size *= 2;
1316
1317                                 b->yy_ch_buf = (char *)
1318                                         /* Include room in for 2 EOB chars. */
1319                                         yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
1320                                 }
1321                         else
1322                                 /* Can't grow it, we don't own it. */
1323                                 b->yy_ch_buf = 0;
1324
1325                         if ( ! b->yy_ch_buf )
1326                                 YY_FATAL_ERROR(
1327                                 "fatal error - scanner input buffer overflow" );
1328
1329                         (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1330
1331                         num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1332                                                 number_to_move - 1;
1333
1334                         }
1335
1336                 if ( num_to_read > YY_READ_BUF_SIZE )
1337                         num_to_read = YY_READ_BUF_SIZE;
1338
1339                 /* Read in more data. */
1340                 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1341                         (yy_n_chars), (size_t) num_to_read );
1342
1343                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1344                 }
1345
1346         if ( (yy_n_chars) == 0 )
1347                 {
1348                 if ( number_to_move == YY_MORE_ADJ )
1349                         {
1350                         ret_val = EOB_ACT_END_OF_FILE;
1351                         yyrestart(yyin  );
1352                         }
1353
1354                 else
1355                         {
1356                         ret_val = EOB_ACT_LAST_MATCH;
1357                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1358                                 YY_BUFFER_EOF_PENDING;
1359                         }
1360                 }
1361
1362         else
1363                 ret_val = EOB_ACT_CONTINUE_SCAN;
1364
1365         if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1366                 /* Extend the array by 50%, plus the number we really need. */
1367                 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1368                 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
1369                 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1370                         YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1371         }
1372
1373         (yy_n_chars) += number_to_move;
1374         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1375         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1376
1377         (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1378
1379         return ret_val;
1380 }
1381
1382 /* yy_get_previous_state - get the state just before the EOB char was reached */
1383
1384     static yy_state_type yy_get_previous_state (void)
1385 {
1386         register yy_state_type yy_current_state;
1387         register char *yy_cp;
1388     
1389         yy_current_state = (yy_start);
1390
1391         for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1392                 {
1393                 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1394                 if ( yy_accept[yy_current_state] )
1395                         {
1396                         (yy_last_accepting_state) = yy_current_state;
1397                         (yy_last_accepting_cpos) = yy_cp;
1398                         }
1399                 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1400                         {
1401                         yy_current_state = (int) yy_def[yy_current_state];
1402                         if ( yy_current_state >= 131 )
1403                                 yy_c = yy_meta[(unsigned int) yy_c];
1404                         }
1405                 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1406                 }
1407
1408         return yy_current_state;
1409 }
1410
1411 /* yy_try_NUL_trans - try to make a transition on the NUL character
1412  *
1413  * synopsis
1414  *      next_state = yy_try_NUL_trans( current_state );
1415  */
1416     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
1417 {
1418         register int yy_is_jam;
1419         register char *yy_cp = (yy_c_buf_p);
1420
1421         register YY_CHAR yy_c = 1;
1422         if ( yy_accept[yy_current_state] )
1423                 {
1424                 (yy_last_accepting_state) = yy_current_state;
1425                 (yy_last_accepting_cpos) = yy_cp;
1426                 }
1427         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1428                 {
1429                 yy_current_state = (int) yy_def[yy_current_state];
1430                 if ( yy_current_state >= 131 )
1431                         yy_c = yy_meta[(unsigned int) yy_c];
1432                 }
1433         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1434         yy_is_jam = (yy_current_state == 130);
1435
1436         return yy_is_jam ? 0 : yy_current_state;
1437 }
1438
1439     static void yyunput (int c, register char * yy_bp )
1440 {
1441         register char *yy_cp;
1442     
1443     yy_cp = (yy_c_buf_p);
1444
1445         /* undo effects of setting up yytext */
1446         *yy_cp = (yy_hold_char);
1447
1448         if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1449                 { /* need to shift things up to make room */
1450                 /* +2 for EOB chars. */
1451                 register int number_to_move = (yy_n_chars) + 2;
1452                 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1453                                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1454                 register char *source =
1455                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1456
1457                 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1458                         *--dest = *--source;
1459
1460                 yy_cp += (int) (dest - source);
1461                 yy_bp += (int) (dest - source);
1462                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1463                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1464
1465                 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1466                         YY_FATAL_ERROR( "flex scanner push-back overflow" );
1467                 }
1468
1469         *--yy_cp = (char) c;
1470
1471         (yytext_ptr) = yy_bp;
1472         (yy_hold_char) = *yy_cp;
1473         (yy_c_buf_p) = yy_cp;
1474 }
1475
1476 #ifndef YY_NO_INPUT
1477 #ifdef __cplusplus
1478     static int yyinput (void)
1479 #else
1480     static int input  (void)
1481 #endif
1482
1483 {
1484         int c;
1485     
1486         *(yy_c_buf_p) = (yy_hold_char);
1487
1488         if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1489                 {
1490                 /* yy_c_buf_p now points to the character we want to return.
1491                  * If this occurs *before* the EOB characters, then it's a
1492                  * valid NUL; if not, then we've hit the end of the buffer.
1493                  */
1494                 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1495                         /* This was really a NUL. */
1496                         *(yy_c_buf_p) = '\0';
1497
1498                 else
1499                         { /* need more input */
1500                         int offset = (yy_c_buf_p) - (yytext_ptr);
1501                         ++(yy_c_buf_p);
1502
1503                         switch ( yy_get_next_buffer(  ) )
1504                                 {
1505                                 case EOB_ACT_LAST_MATCH:
1506                                         /* This happens because yy_g_n_b()
1507                                          * sees that we've accumulated a
1508                                          * token and flags that we need to
1509                                          * try matching the token before
1510                                          * proceeding.  But for input(),
1511                                          * there's no matching to consider.
1512                                          * So convert the EOB_ACT_LAST_MATCH
1513                                          * to EOB_ACT_END_OF_FILE.
1514                                          */
1515
1516                                         /* Reset buffer status. */
1517                                         yyrestart(yyin );
1518
1519                                         /*FALLTHROUGH*/
1520
1521                                 case EOB_ACT_END_OF_FILE:
1522                                         {
1523                                         if ( yywrap( ) )
1524                                                 return EOF;
1525
1526                                         if ( ! (yy_did_buffer_switch_on_eof) )
1527                                                 YY_NEW_FILE;
1528 #ifdef __cplusplus
1529                                         return yyinput();
1530 #else
1531                                         return input();
1532 #endif
1533                                         }
1534
1535                                 case EOB_ACT_CONTINUE_SCAN:
1536                                         (yy_c_buf_p) = (yytext_ptr) + offset;
1537                                         break;
1538                                 }
1539                         }
1540                 }
1541
1542         c = *(unsigned char *) (yy_c_buf_p);    /* cast for 8-bit char's */
1543         *(yy_c_buf_p) = '\0';   /* preserve yytext */
1544         (yy_hold_char) = *++(yy_c_buf_p);
1545
1546         return c;
1547 }
1548 #endif  /* ifndef YY_NO_INPUT */
1549
1550 /** Immediately switch to a different input stream.
1551  * @param input_file A readable stream.
1552  * 
1553  * @note This function does not reset the start condition to @c INITIAL .
1554  */
1555     void yyrestart  (FILE * input_file )
1556 {
1557     
1558         if ( ! YY_CURRENT_BUFFER ){
1559         yyensure_buffer_stack ();
1560                 YY_CURRENT_BUFFER_LVALUE =
1561             yy_create_buffer(yyin,YY_BUF_SIZE );
1562         }
1563
1564         yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1565         yy_load_buffer_state( );
1566 }
1567
1568 /** Switch to a different input buffer.
1569  * @param new_buffer The new input buffer.
1570  * 
1571  */
1572     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
1573 {
1574     
1575         /* TODO. We should be able to replace this entire function body
1576          * with
1577          *              yypop_buffer_state();
1578          *              yypush_buffer_state(new_buffer);
1579      */
1580         yyensure_buffer_stack ();
1581         if ( YY_CURRENT_BUFFER == new_buffer )
1582                 return;
1583
1584         if ( YY_CURRENT_BUFFER )
1585                 {
1586                 /* Flush out information for old buffer. */
1587                 *(yy_c_buf_p) = (yy_hold_char);
1588                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1589                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1590                 }
1591
1592         YY_CURRENT_BUFFER_LVALUE = new_buffer;
1593         yy_load_buffer_state( );
1594
1595         /* We don't actually know whether we did this switch during
1596          * EOF (yywrap()) processing, but the only time this flag
1597          * is looked at is after yywrap() is called, so it's safe
1598          * to go ahead and always set it.
1599          */
1600         (yy_did_buffer_switch_on_eof) = 1;
1601 }
1602
1603 static void yy_load_buffer_state  (void)
1604 {
1605         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1606         (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1607         yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1608         (yy_hold_char) = *(yy_c_buf_p);
1609 }
1610
1611 /** Allocate and initialize an input buffer state.
1612  * @param file A readable stream.
1613  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1614  * 
1615  * @return the allocated buffer state.
1616  */
1617     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
1618 {
1619         YY_BUFFER_STATE b;
1620     
1621         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
1622         if ( ! b )
1623                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1624
1625         b->yy_buf_size = size;
1626
1627         /* yy_ch_buf has to be 2 characters longer than the size given because
1628          * we need to put in 2 end-of-buffer characters.
1629          */
1630         b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
1631         if ( ! b->yy_ch_buf )
1632                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1633
1634         b->yy_is_our_buffer = 1;
1635
1636         yy_init_buffer(b,file );
1637
1638         return b;
1639 }
1640
1641 /** Destroy the buffer.
1642  * @param b a buffer created with yy_create_buffer()
1643  * 
1644  */
1645     void yy_delete_buffer (YY_BUFFER_STATE  b )
1646 {
1647     
1648         if ( ! b )
1649                 return;
1650
1651         if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1652                 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1653
1654         if ( b->yy_is_our_buffer )
1655                 yyfree((void *) b->yy_ch_buf  );
1656
1657         yyfree((void *) b  );
1658 }
1659
1660 #ifndef __cplusplus
1661 extern int isatty (int );
1662 #endif /* __cplusplus */
1663     
1664 /* Initializes or reinitializes a buffer.
1665  * This function is sometimes called more than once on the same buffer,
1666  * such as during a yyrestart() or at EOF.
1667  */
1668     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
1669
1670 {
1671         int oerrno = errno;
1672     
1673         yy_flush_buffer(b );
1674
1675         b->yy_input_file = file;
1676         b->yy_fill_buffer = 1;
1677
1678     /* If b is the current buffer, then yy_init_buffer was _probably_
1679      * called from yyrestart() or through yy_get_next_buffer.
1680      * In that case, we don't want to reset the lineno or column.
1681      */
1682     if (b != YY_CURRENT_BUFFER){
1683         b->yy_bs_lineno = 1;
1684         b->yy_bs_column = 0;
1685     }
1686
1687         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1688     
1689         errno = oerrno;
1690 }
1691
1692 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1693  * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1694  * 
1695  */
1696     void yy_flush_buffer (YY_BUFFER_STATE  b )
1697 {
1698         if ( ! b )
1699                 return;
1700
1701         b->yy_n_chars = 0;
1702
1703         /* We always need two end-of-buffer characters.  The first causes
1704          * a transition to the end-of-buffer state.  The second causes
1705          * a jam in that state.
1706          */
1707         b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1708         b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1709
1710         b->yy_buf_pos = &b->yy_ch_buf[0];
1711
1712         b->yy_at_bol = 1;
1713         b->yy_buffer_status = YY_BUFFER_NEW;
1714
1715         if ( b == YY_CURRENT_BUFFER )
1716                 yy_load_buffer_state( );
1717 }
1718
1719 /** Pushes the new state onto the stack. The new state becomes
1720  *  the current state. This function will allocate the stack
1721  *  if necessary.
1722  *  @param new_buffer The new state.
1723  *  
1724  */
1725 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1726 {
1727         if (new_buffer == NULL)
1728                 return;
1729
1730         yyensure_buffer_stack();
1731
1732         /* This block is copied from yy_switch_to_buffer. */
1733         if ( YY_CURRENT_BUFFER )
1734                 {
1735                 /* Flush out information for old buffer. */
1736                 *(yy_c_buf_p) = (yy_hold_char);
1737                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1738                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1739                 }
1740
1741         /* Only push if top exists. Otherwise, replace top. */
1742         if (YY_CURRENT_BUFFER)
1743                 (yy_buffer_stack_top)++;
1744         YY_CURRENT_BUFFER_LVALUE = new_buffer;
1745
1746         /* copied from yy_switch_to_buffer. */
1747         yy_load_buffer_state( );
1748         (yy_did_buffer_switch_on_eof) = 1;
1749 }
1750
1751 /** Removes and deletes the top of the stack, if present.
1752  *  The next element becomes the new top.
1753  *  
1754  */
1755 void yypop_buffer_state (void)
1756 {
1757         if (!YY_CURRENT_BUFFER)
1758                 return;
1759
1760         yy_delete_buffer(YY_CURRENT_BUFFER );
1761         YY_CURRENT_BUFFER_LVALUE = NULL;
1762         if ((yy_buffer_stack_top) > 0)
1763                 --(yy_buffer_stack_top);
1764
1765         if (YY_CURRENT_BUFFER) {
1766                 yy_load_buffer_state( );
1767                 (yy_did_buffer_switch_on_eof) = 1;
1768         }
1769 }
1770
1771 /* Allocates the stack if it does not exist.
1772  *  Guarantees space for at least one push.
1773  */
1774 static void yyensure_buffer_stack (void)
1775 {
1776         int num_to_alloc;
1777     
1778         if (!(yy_buffer_stack)) {
1779
1780                 /* First allocation is just for 2 elements, since we don't know if this
1781                  * scanner will even need a stack. We use 2 instead of 1 to avoid an
1782                  * immediate realloc on the next call.
1783          */
1784                 num_to_alloc = 1;
1785                 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1786                                                                 (num_to_alloc * sizeof(struct yy_buffer_state*)
1787                                                                 );
1788                 if ( ! (yy_buffer_stack) )
1789                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1790                                                                   
1791                 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1792                                 
1793                 (yy_buffer_stack_max) = num_to_alloc;
1794                 (yy_buffer_stack_top) = 0;
1795                 return;
1796         }
1797
1798         if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1799
1800                 /* Increase the buffer to prepare for a possible push. */
1801                 int grow_size = 8 /* arbitrary grow size */;
1802
1803                 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1804                 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1805                                                                 ((yy_buffer_stack),
1806                                                                 num_to_alloc * sizeof(struct yy_buffer_state*)
1807                                                                 );
1808                 if ( ! (yy_buffer_stack) )
1809                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1810
1811                 /* zero only the new slots.*/
1812                 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1813                 (yy_buffer_stack_max) = num_to_alloc;
1814         }
1815 }
1816
1817 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1818  * @param base the character buffer
1819  * @param size the size in bytes of the character buffer
1820  * 
1821  * @return the newly allocated buffer state object. 
1822  */
1823 YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
1824 {
1825         YY_BUFFER_STATE b;
1826     
1827         if ( size < 2 ||
1828              base[size-2] != YY_END_OF_BUFFER_CHAR ||
1829              base[size-1] != YY_END_OF_BUFFER_CHAR )
1830                 /* They forgot to leave room for the EOB's. */
1831                 return 0;
1832
1833         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
1834         if ( ! b )
1835                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1836
1837         b->yy_buf_size = size - 2;      /* "- 2" to take care of EOB's */
1838         b->yy_buf_pos = b->yy_ch_buf = base;
1839         b->yy_is_our_buffer = 0;
1840         b->yy_input_file = 0;
1841         b->yy_n_chars = b->yy_buf_size;
1842         b->yy_is_interactive = 0;
1843         b->yy_at_bol = 1;
1844         b->yy_fill_buffer = 0;
1845         b->yy_buffer_status = YY_BUFFER_NEW;
1846
1847         yy_switch_to_buffer(b  );
1848
1849         return b;
1850 }
1851
1852 /** Setup the input buffer state to scan a string. The next call to yylex() will
1853  * scan from a @e copy of @a str.
1854  * @param yystr a NUL-terminated string to scan
1855  * 
1856  * @return the newly allocated buffer state object.
1857  * @note If you want to scan bytes that may contain NUL values, then use
1858  *       yy_scan_bytes() instead.
1859  */
1860 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1861 {
1862     
1863         return yy_scan_bytes(yystr,strlen(yystr) );
1864 }
1865
1866 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1867  * scan from a @e copy of @a bytes.
1868  * @param bytes the byte buffer to scan
1869  * @param len the number of bytes in the buffer pointed to by @a bytes.
1870  * 
1871  * @return the newly allocated buffer state object.
1872  */
1873 YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
1874 {
1875         YY_BUFFER_STATE b;
1876         char *buf;
1877         yy_size_t n;
1878         int i;
1879     
1880         /* Get memory for full buffer, including space for trailing EOB's. */
1881         n = _yybytes_len + 2;
1882         buf = (char *) yyalloc(n  );
1883         if ( ! buf )
1884                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1885
1886         for ( i = 0; i < _yybytes_len; ++i )
1887                 buf[i] = yybytes[i];
1888
1889         buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1890
1891         b = yy_scan_buffer(buf,n );
1892         if ( ! b )
1893                 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1894
1895         /* It's okay to grow etc. this buffer, and we should throw it
1896          * away when we're done.
1897          */
1898         b->yy_is_our_buffer = 1;
1899
1900         return b;
1901 }
1902
1903 #ifndef YY_EXIT_FAILURE
1904 #define YY_EXIT_FAILURE 2
1905 #endif
1906
1907 static void yy_fatal_error (yyconst char* msg )
1908 {
1909         (void) fprintf( stderr, "%s\n", msg );
1910         exit( YY_EXIT_FAILURE );
1911 }
1912
1913 /* Redefine yyless() so it works in section 3 code. */
1914
1915 #undef yyless
1916 #define yyless(n) \
1917         do \
1918                 { \
1919                 /* Undo effects of setting up yytext. */ \
1920         int yyless_macro_arg = (n); \
1921         YY_LESS_LINENO(yyless_macro_arg);\
1922                 yytext[yyleng] = (yy_hold_char); \
1923                 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1924                 (yy_hold_char) = *(yy_c_buf_p); \
1925                 *(yy_c_buf_p) = '\0'; \
1926                 yyleng = yyless_macro_arg; \
1927                 } \
1928         while ( 0 )
1929
1930 /* Accessor  methods (get/set functions) to struct members. */
1931
1932 /** Get the current line number.
1933  * 
1934  */
1935 int yyget_lineno  (void)
1936 {
1937         
1938     return yylineno;
1939 }
1940
1941 /** Get the input stream.
1942  * 
1943  */
1944 FILE *yyget_in  (void)
1945 {
1946         return yyin;
1947 }
1948
1949 /** Get the output stream.
1950  * 
1951  */
1952 FILE *yyget_out  (void)
1953 {
1954         return yyout;
1955 }
1956
1957 /** Get the length of the current token.
1958  * 
1959  */
1960 int yyget_leng  (void)
1961 {
1962         return yyleng;
1963 }
1964
1965 /** Get the current token.
1966  * 
1967  */
1968
1969 char *yyget_text  (void)
1970 {
1971         return yytext;
1972 }
1973
1974 /** Set the current line number.
1975  * @param line_number
1976  * 
1977  */
1978 void yyset_lineno (int  line_number )
1979 {
1980     
1981     yylineno = line_number;
1982 }
1983
1984 /** Set the input stream. This does not discard the current
1985  * input buffer.
1986  * @param in_str A readable stream.
1987  * 
1988  * @see yy_switch_to_buffer
1989  */
1990 void yyset_in (FILE *  in_str )
1991 {
1992         yyin = in_str ;
1993 }
1994
1995 void yyset_out (FILE *  out_str )
1996 {
1997         yyout = out_str ;
1998 }
1999
2000 int yyget_debug  (void)
2001 {
2002         return yy_flex_debug;
2003 }
2004
2005 void yyset_debug (int  bdebug )
2006 {
2007         yy_flex_debug = bdebug ;
2008 }
2009
2010 static int yy_init_globals (void)
2011 {
2012         /* Initialization is the same as for the non-reentrant scanner.
2013      * This function is called from yylex_destroy(), so don't allocate here.
2014      */
2015
2016     (yy_buffer_stack) = 0;
2017     (yy_buffer_stack_top) = 0;
2018     (yy_buffer_stack_max) = 0;
2019     (yy_c_buf_p) = (char *) 0;
2020     (yy_init) = 0;
2021     (yy_start) = 0;
2022
2023 /* Defined in main.c */
2024 #ifdef YY_STDINIT
2025     yyin = stdin;
2026     yyout = stdout;
2027 #else
2028     yyin = (FILE *) 0;
2029     yyout = (FILE *) 0;
2030 #endif
2031
2032     /* For future reference: Set errno on error, since we are called by
2033      * yylex_init()
2034      */
2035     return 0;
2036 }
2037
2038 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
2039 int yylex_destroy  (void)
2040 {
2041     
2042     /* Pop the buffer stack, destroying each element. */
2043         while(YY_CURRENT_BUFFER){
2044                 yy_delete_buffer(YY_CURRENT_BUFFER  );
2045                 YY_CURRENT_BUFFER_LVALUE = NULL;
2046                 yypop_buffer_state();
2047         }
2048
2049         /* Destroy the stack itself. */
2050         yyfree((yy_buffer_stack) );
2051         (yy_buffer_stack) = NULL;
2052
2053     /* Reset the globals. This is important in a non-reentrant scanner so the next time
2054      * yylex() is called, initialization will occur. */
2055     yy_init_globals( );
2056
2057     return 0;
2058 }
2059
2060 /*
2061  * Internal utility routines.
2062  */
2063
2064 #ifndef yytext_ptr
2065 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
2066 {
2067         register int i;
2068         for ( i = 0; i < n; ++i )
2069                 s1[i] = s2[i];
2070 }
2071 #endif
2072
2073 #ifdef YY_NEED_STRLEN
2074 static int yy_flex_strlen (yyconst char * s )
2075 {
2076         register int n;
2077         for ( n = 0; s[n]; ++n )
2078                 ;
2079
2080         return n;
2081 }
2082 #endif
2083
2084 void *yyalloc (yy_size_t  size )
2085 {
2086         return (void *) malloc( size );
2087 }
2088
2089 void *yyrealloc  (void * ptr, yy_size_t  size )
2090 {
2091         /* The cast to (char *) in the following accommodates both
2092          * implementations that use char* generic pointers, and those
2093          * that use void* generic pointers.  It works with the latter
2094          * because both ANSI C and C++ allow castless assignment from
2095          * any pointer type to void*, and deal with argument conversions
2096          * as though doing an assignment.
2097          */
2098         return (void *) realloc( (char *) ptr, size );
2099 }
2100
2101 void yyfree (void * ptr )
2102 {
2103         free( (char *) ptr );   /* see yyrealloc() for (char *) cast */
2104 }
2105
2106 #define YYTABLES_NAME "yytables"
2107
2108 #line 166 "uscan.l"
2109
2110
2111
2112 int
2113 process_line(
2114     char *      line)
2115 {
2116     YY_BUFFER_STATE b;
2117     int result;
2118
2119     b = yy_scan_string(line);           /* tell lex to scan lineread */
2120     result = yyparse();                 /* parse lineread and act */
2121     yy_delete_buffer(b);
2122     return result;
2123 }
2124
2125 static int
2126 ll_parse_date(
2127     int         type,
2128     char *      text)
2129 {
2130     time_t now;
2131     struct tm *t;
2132     int y=2000, m=0, d=1, h=0, mi=0, s=0;
2133     int ret;
2134
2135     now = time((time_t *)NULL);
2136     t = localtime(&now);
2137     if (t) {
2138         y = 1900+t->tm_year;
2139         m = t->tm_mon+1;
2140         d = t->tm_mday;
2141     }
2142     switch(type) {
2143     case 1:
2144         if (sscanf(text, "---%d", &d) != 1) {
2145             yyerror("invalid date");
2146         }
2147         break;
2148     case 2:
2149         if (sscanf(text, "--%d-%d", &m, &d) != 2) {
2150             yyerror("invalid date");
2151         }
2152         break;
2153     case 3:
2154         if (sscanf(text, "%d-%d-%d", &y, &m, &d) != 3) {
2155             yyerror("invalid date");        
2156         }
2157         break;
2158     case 4:
2159         if (sscanf(text, "%d-%d-%d-%d-%d-%d", &y, &m, &d, &h, &mi, &s) != 6) {
2160             yyerror("invalid date");
2161         }
2162         break;
2163     case 5:
2164         if (sscanf(text, "%d-%d-%d-%d-%d", &y, &m, &d, &h, &mi) != 5) {
2165             yyerror("invalid date");
2166         }
2167         break;
2168     }
2169
2170     ret = PATH;                         /* cause a parse error */
2171     if(y < 70) {
2172         y += 2000;
2173     } else if(y < 100) {
2174         y += 1900;
2175     }
2176     if(y < 1000 || y > 9999) {
2177         yyerror("invalid year");
2178     } else if(m < 1 || m > 12) {
2179         yyerror("invalid month");
2180     } else if(d < 1 || d > 31) {
2181         yyerror("invalid day");
2182     } else if(h < 0 || h > 24) {
2183         yyerror("invalid hour");
2184     } else if(mi < 0 || mi > 59) {
2185         yyerror("invalid minute");
2186     } else if(s < 0 || s > 59) {
2187         yyerror("invalid second");
2188     } else if(type < 4) {
2189         yylval.strval = alloc(DATE_ALLOC_SIZE);
2190         g_snprintf(yylval.strval, DATE_ALLOC_SIZE, "%04d-%02d-%02d", y, m, d);
2191         ret = DATE;
2192     } else {
2193         yylval.strval = alloc(DATE_ALLOC_SIZE);
2194         g_snprintf(yylval.strval, DATE_ALLOC_SIZE, "%04d-%02d-%02d-%02d-%02d-%02d", y, m, d, h, mi, s);
2195         ret = DATE;
2196     }
2197     return ret;
2198 }
2199
2200 int
2201 yywrap(void)
2202 {
2203   return 1;
2204 }
2205