]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/spotlight_rawquery_lexer.c
Various fixes
[netatalk.git] / etc / afpd / spotlight_rawquery_lexer.c
1
2 #line 3 "spotlight_rawquery_lexer.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 20
363 #define YY_END_OF_BUFFER 21
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[75] =
372     {   0,
373         0,    0,   21,   20,   17,   17,   20,    7,   20,   20,
374         8,    9,    6,   16,   14,   20,   15,    6,    6,    6,
375         6,   20,    0,   13,    0,   10,    6,   12,    6,    6,
376         6,    6,    6,   11,    0,    0,    6,    6,    6,    6,
377         6,    0,    0,    6,    6,    6,    5,    0,    0,    6,
378         6,    4,    0,    0,    6,    0,    0,    1,    0,    0,
379         0,    2,    0,    0,    0,    0,    0,    0,    0,    0,
380         0,    0,    3,    0
381     } ;
382
383 static yyconst flex_int32_t yy_ec[256] =
384     {   0,
385         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
386         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
387         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
388         1,    2,    4,    5,    1,    6,    1,    7,    1,    8,
389         9,   10,    1,   11,   12,   13,    1,    1,    1,    1,
390         1,    1,    1,    1,    1,    1,    1,   14,    1,   15,
391        16,   17,    1,    1,   10,   10,   10,   10,   10,   10,
392        10,   10,   18,   10,   10,   10,   10,   10,   10,   10,
393        10,   19,   10,   20,   10,   10,   10,   10,   10,   21,
394         1,    1,    1,    1,    1,    1,   22,   10,   23,   24,
395
396        25,   26,   27,   10,   28,   10,   10,   29,   30,   31,
397        32,   10,   10,   33,   34,   35,   36,   10,   37,   10,
398        10,   10,    1,   38,    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,
403         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
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,    1,    1,    1,    1,    1,
410         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
411         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
412         1,    1,    1,    1,    1
413     } ;
414
415 static yyconst flex_int32_t yy_meta[39] =
416     {   0,
417         1,    1,    2,    1,    1,    1,    1,    1,    1,    3,
418         1,    3,    1,    1,    1,    1,    1,    3,    3,    3,
419         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
420         3,    3,    3,    3,    3,    3,    3,    1
421     } ;
422
423 static yyconst flex_int16_t yy_base[89] =
424     {   0,
425         0,    0,  212,    0,    0,  226,  193,    0,  171,  196,
426         0,    0,   38,    0,    0,  184,    0,  166,   53,  172,
427       158,  150,    0,    0,  157,    0,   90,    0,  163,    0,
428       156,  150,  142,    0,    0,  147,  128,  154,    0,  141,
429       149,  161,   68,  160,  155,  156,  159,    0,  118,   77,
430       157,   76,    0,   59,  158,   74,   51,   72,    0,   51,
431         0,  226,   62,    0,    0,   67,    0,    0,   65,    0,
432         0,   57,  226,  226,  186,  189,  192,   38,  195,  198,
433       201,  204,  207,  210,  213,  216,  219,  222
434     } ;
435
436 static yyconst flex_int16_t yy_def[89] =
437     {   0,
438        74,    1,   74,   75,   75,   74,   75,   75,   75,   75,
439        75,   75,   74,   75,   75,   75,   75,   13,   13,   13,
440        13,   75,   76,   76,   76,   76,   74,   76,   27,   27,
441        27,   27,   27,   76,   77,   77,   74,   37,   37,   37,
442        37,   74,   74,   78,   78,   78,   78,   79,   74,   78,
443        78,   78,   80,   74,   78,   74,   74,   78,   81,   74,
444        82,   74,   74,   83,   84,   74,   85,   86,   74,   87,
445        88,   74,   74,    0,   74,   74,   74,   74,   74,   74,
446        74,   74,   74,   74,   74,   74,   74,   74
447     } ;
448
449 static yyconst flex_int16_t yy_nxt[265] =
450     {   0,
451         4,    5,    6,    7,    8,    9,   10,   11,   12,   13,
452        14,    4,    4,    4,   15,   16,   17,   18,   13,   13,
453        13,   13,   19,   13,   13,   20,   13,   13,   13,   13,
454        13,   13,   13,   13,   21,   13,   13,   22,   23,   23,
455        50,   23,   23,   23,   23,   23,   23,   27,   23,   23,
456        23,   23,   23,   23,   23,   27,   27,   27,   27,   27,
457        27,   27,   27,   27,   27,   27,   27,   27,   27,   27,
458        27,   27,   27,   27,   27,   23,   30,   73,   70,   48,
459        67,   64,   62,   74,   60,   59,   57,   74,   74,   31,
460        35,   35,   49,   35,   35,   35,   35,   35,   35,   37,
461
462        35,   35,   35,   35,   35,   35,   35,   37,   37,   37,
463        37,   37,   37,   37,   37,   37,   37,   37,   37,   37,
464        37,   37,   37,   37,   37,   37,   37,   35,   42,   42,
465        54,   42,   42,   42,   42,   42,   42,   44,   42,   42,
466        42,   42,   42,   42,   42,   44,   44,   44,   44,   44,
467        44,   44,   44,   44,   44,   44,   44,   44,   44,   44,
468        44,   44,   44,   44,   44,   42,   48,   48,   74,   74,
469        48,   48,   48,   47,   46,   45,   43,   41,   40,   39,
470        52,   38,   58,   55,   36,   51,   23,   34,   23,   35,
471        33,   35,   42,   32,   42,   53,   29,   53,   56,   28,
472
473        56,   61,   26,   61,   63,   25,   63,   65,   24,   65,
474        66,   74,   66,   68,   74,   68,   69,   74,   69,   71,
475        74,   71,   72,   74,   72,    3,   74,   74,   74,   74,
476        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
477        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
478        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
479        74,   74,   74,   74
480     } ;
481
482 static yyconst flex_int16_t yy_chk[265] =
483     {   0,
484         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
485         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
486         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
487         1,    1,    1,    1,    1,    1,    1,    1,   13,   13,
488        78,   13,   13,   13,   13,   13,   13,   13,   13,   13,
489        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
490        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
491        13,   13,   13,   13,   13,   13,   19,   72,   69,   43,
492        66,   63,   60,   58,   57,   56,   54,   52,   50,   19,
493        27,   27,   43,   27,   27,   27,   27,   27,   27,   27,
494
495        27,   27,   27,   27,   27,   27,   27,   27,   27,   27,
496        27,   27,   27,   27,   27,   27,   27,   27,   27,   27,
497        27,   27,   27,   27,   27,   27,   27,   27,   37,   37,
498        49,   37,   37,   37,   37,   37,   37,   37,   37,   37,
499        37,   37,   37,   37,   37,   37,   37,   37,   37,   37,
500        37,   37,   37,   37,   37,   37,   37,   37,   37,   37,
501        37,   37,   37,   37,   37,   37,   45,   46,   51,   55,
502        47,   44,   42,   41,   40,   38,   36,   33,   32,   31,
503        46,   29,   55,   51,   25,   45,   75,   22,   75,   76,
504        21,   76,   77,   20,   77,   79,   18,   79,   80,   16,
505
506        80,   81,   10,   81,   82,    9,   82,   83,    7,   83,
507        84,    3,   84,   85,    0,   85,   86,    0,   86,   87,
508         0,   87,   88,    0,   88,   74,   74,   74,   74,   74,
509        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
510        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
511        74,   74,   74,   74,   74,   74,   74,   74,   74,   74,
512        74,   74,   74,   74
513     } ;
514
515 static yy_state_type yy_last_accepting_state;
516 static char *yy_last_accepting_cpos;
517
518 extern int yy_flex_debug;
519 int yy_flex_debug = 0;
520
521 /* The intent behind this definition is that it'll catch
522  * any uses of REJECT which flex missed.
523  */
524 #define REJECT reject_used_but_not_detected
525 #define yymore() yymore_used_but_not_detected
526 #define YY_MORE_ADJ 0
527 #define YY_RESTORE_YY_MORE_OFFSET
528 char *yytext;
529 #line 1 "spotlight_rawquery_lexer.l"
530 #line 2 "spotlight_rawquery_lexer.l"
531 #include <string.h>
532 #include <stdbool.h>
533 #include <gio/gio.h>
534 #include <atalk/talloc.h>
535 #include "spotlight.h"
536 #include "spotlight_rawquery_parser.h"
537 #line 538 "spotlight_rawquery_lexer.c"
538
539 #define INITIAL 0
540
541 #ifndef YY_NO_UNISTD_H
542 /* Special case for "unistd.h", since it is non-ANSI. We include it way
543  * down here because we want the user's section 1 to have been scanned first.
544  * The user has a chance to override it with an option.
545  */
546 #include <unistd.h>
547 #endif
548
549 #ifndef YY_EXTRA_TYPE
550 #define YY_EXTRA_TYPE void *
551 #endif
552
553 static int yy_init_globals (void );
554
555 /* Accessor methods to globals.
556    These are made visible to non-reentrant scanners for convenience. */
557
558 int yylex_destroy (void );
559
560 int yyget_debug (void );
561
562 void yyset_debug (int debug_flag  );
563
564 YY_EXTRA_TYPE yyget_extra (void );
565
566 void yyset_extra (YY_EXTRA_TYPE user_defined  );
567
568 FILE *yyget_in (void );
569
570 void yyset_in  (FILE * in_str  );
571
572 FILE *yyget_out (void );
573
574 void yyset_out  (FILE * out_str  );
575
576 int yyget_leng (void );
577
578 char *yyget_text (void );
579
580 int yyget_lineno (void );
581
582 void yyset_lineno (int line_number  );
583
584 /* Macros after this point can all be overridden by user definitions in
585  * section 1.
586  */
587
588 #ifndef YY_SKIP_YYWRAP
589 #ifdef __cplusplus
590 extern "C" int yywrap (void );
591 #else
592 extern int yywrap (void );
593 #endif
594 #endif
595
596     static void yyunput (int c,char *buf_ptr  );
597     
598 #ifndef yytext_ptr
599 static void yy_flex_strncpy (char *,yyconst char *,int );
600 #endif
601
602 #ifdef YY_NEED_STRLEN
603 static int yy_flex_strlen (yyconst char * );
604 #endif
605
606 #ifndef YY_NO_INPUT
607
608 #ifdef __cplusplus
609 static int yyinput (void );
610 #else
611 static int input (void );
612 #endif
613
614 #endif
615
616 /* Amount of stuff to slurp up with each read. */
617 #ifndef YY_READ_BUF_SIZE
618 #define YY_READ_BUF_SIZE 8192
619 #endif
620
621 /* Copy whatever the last rule matched to the standard output. */
622 #ifndef ECHO
623 /* This used to be an fputs(), but since the string might contain NUL's,
624  * we now use fwrite().
625  */
626 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
627 #endif
628
629 /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
630  * is returned in "result".
631  */
632 #ifndef YY_INPUT
633 #define YY_INPUT(buf,result,max_size) \
634         if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
635                 { \
636                 int c = '*'; \
637                 unsigned n; \
638                 for ( n = 0; n < max_size && \
639                              (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
640                         buf[n] = (char) c; \
641                 if ( c == '\n' ) \
642                         buf[n++] = (char) c; \
643                 if ( c == EOF && ferror( yyin ) ) \
644                         YY_FATAL_ERROR( "input in flex scanner failed" ); \
645                 result = n; \
646                 } \
647         else \
648                 { \
649                 errno=0; \
650                 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
651                         { \
652                         if( errno != EINTR) \
653                                 { \
654                                 YY_FATAL_ERROR( "input in flex scanner failed" ); \
655                                 break; \
656                                 } \
657                         errno=0; \
658                         clearerr(yyin); \
659                         } \
660                 }\
661 \
662
663 #endif
664
665 /* No semi-colon after return; correct usage is to write "yyterminate();" -
666  * we don't want an extra ';' after the "return" because that will cause
667  * some compilers to complain about unreachable statements.
668  */
669 #ifndef yyterminate
670 #define yyterminate() return YY_NULL
671 #endif
672
673 /* Number of entries by which start-condition stack grows. */
674 #ifndef YY_START_STACK_INCR
675 #define YY_START_STACK_INCR 25
676 #endif
677
678 /* Report a fatal error. */
679 #ifndef YY_FATAL_ERROR
680 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
681 #endif
682
683 /* end tables serialization structures and prototypes */
684
685 /* Default declaration of generated scanner - a define so the user can
686  * easily add parameters.
687  */
688 #ifndef YY_DECL
689 #define YY_DECL_IS_OURS 1
690
691 extern int yylex (void);
692
693 #define YY_DECL int yylex (void)
694 #endif /* !YY_DECL */
695
696 /* Code executed at the beginning of each rule, after yytext and yyleng
697  * have been set up.
698  */
699 #ifndef YY_USER_ACTION
700 #define YY_USER_ACTION
701 #endif
702
703 /* Code executed at the end of each rule. */
704 #ifndef YY_BREAK
705 #define YY_BREAK break;
706 #endif
707
708 #define YY_RULE_SETUP \
709         YY_USER_ACTION
710
711 /** The main scanner function which does all the work.
712  */
713 YY_DECL
714 {
715         register yy_state_type yy_current_state;
716         register char *yy_cp, *yy_bp;
717         register int yy_act;
718     
719 #line 10 "spotlight_rawquery_lexer.l"
720
721 #line 722 "spotlight_rawquery_lexer.c"
722
723         if ( !(yy_init) )
724                 {
725                 (yy_init) = 1;
726
727 #ifdef YY_USER_INIT
728                 YY_USER_INIT;
729 #endif
730
731                 if ( ! (yy_start) )
732                         (yy_start) = 1; /* first start state */
733
734                 if ( ! yyin )
735                         yyin = stdin;
736
737                 if ( ! yyout )
738                         yyout = stdout;
739
740                 if ( ! YY_CURRENT_BUFFER ) {
741                         yyensure_buffer_stack ();
742                         YY_CURRENT_BUFFER_LVALUE =
743                                 yy_create_buffer(yyin,YY_BUF_SIZE );
744                 }
745
746                 yy_load_buffer_state( );
747                 }
748
749         while ( 1 )             /* loops until end-of-file is reached */
750                 {
751                 yy_cp = (yy_c_buf_p);
752
753                 /* Support of yytext. */
754                 *yy_cp = (yy_hold_char);
755
756                 /* yy_bp points to the position in yy_ch_buf of the start of
757                  * the current run.
758                  */
759                 yy_bp = yy_cp;
760
761                 yy_current_state = (yy_start);
762 yy_match:
763                 do
764                         {
765                         register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
766                         if ( yy_accept[yy_current_state] )
767                                 {
768                                 (yy_last_accepting_state) = yy_current_state;
769                                 (yy_last_accepting_cpos) = yy_cp;
770                                 }
771                         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
772                                 {
773                                 yy_current_state = (int) yy_def[yy_current_state];
774                                 if ( yy_current_state >= 75 )
775                                         yy_c = yy_meta[(unsigned int) yy_c];
776                                 }
777                         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
778                         ++yy_cp;
779                         }
780                 while ( yy_base[yy_current_state] != 226 );
781
782 yy_find_action:
783                 yy_act = yy_accept[yy_current_state];
784                 if ( yy_act == 0 )
785                         { /* have to back up */
786                         yy_cp = (yy_last_accepting_cpos);
787                         yy_current_state = (yy_last_accepting_state);
788                         yy_act = yy_accept[yy_current_state];
789                         }
790
791                 YY_DO_BEFORE_ACTION;
792
793 do_action:      /* This label is used only to access EOF actions. */
794
795                 switch ( yy_act )
796         { /* beginning of action switch */
797                         case 0: /* must back up */
798                         /* undo the effects of YY_DO_BEFORE_ACTION */
799                         *yy_cp = (yy_hold_char);
800                         yy_cp = (yy_last_accepting_cpos);
801                         yy_current_state = (yy_last_accepting_state);
802                         goto yy_find_action;
803
804 case 1:
805 YY_RULE_SETUP
806 #line 11 "spotlight_rawquery_lexer.l"
807 return FUNC_INRANGE;
808         YY_BREAK
809 case 2:
810 YY_RULE_SETUP
811 #line 12 "spotlight_rawquery_lexer.l"
812 return DATE_SPEC;
813         YY_BREAK
814 case 3:
815 YY_RULE_SETUP
816 #line 13 "spotlight_rawquery_lexer.l"
817 {yylval.sval = talloc_strdup(ssp_slq, yytext); return DATE;}
818         YY_BREAK
819 case 4:
820 YY_RULE_SETUP
821 #line 14 "spotlight_rawquery_lexer.l"
822 {yylval.bval = false; return BOOL;}
823         YY_BREAK
824 case 5:
825 YY_RULE_SETUP
826 #line 15 "spotlight_rawquery_lexer.l"
827 {yylval.bval = true; return BOOL;}
828         YY_BREAK
829 case 6:
830 YY_RULE_SETUP
831 #line 16 "spotlight_rawquery_lexer.l"
832 {yylval.sval = talloc_strdup(ssp_slq, yytext); return WORD;}
833         YY_BREAK
834 case 7:
835 YY_RULE_SETUP
836 #line 17 "spotlight_rawquery_lexer.l"
837 return QUOTE;
838         YY_BREAK
839 case 8:
840 YY_RULE_SETUP
841 #line 18 "spotlight_rawquery_lexer.l"
842 return OBRACE;
843         YY_BREAK
844 case 9:
845 YY_RULE_SETUP
846 #line 19 "spotlight_rawquery_lexer.l"
847 return CBRACE;
848         YY_BREAK
849 case 10:
850 YY_RULE_SETUP
851 #line 20 "spotlight_rawquery_lexer.l"
852 return AND;
853         YY_BREAK
854 case 11:
855 YY_RULE_SETUP
856 #line 21 "spotlight_rawquery_lexer.l"
857 return OR;
858         YY_BREAK
859 case 12:
860 YY_RULE_SETUP
861 #line 22 "spotlight_rawquery_lexer.l"
862 return EQUAL;
863         YY_BREAK
864 case 13:
865 YY_RULE_SETUP
866 #line 23 "spotlight_rawquery_lexer.l"
867 return UNEQUAL;
868         YY_BREAK
869 case 14:
870 YY_RULE_SETUP
871 #line 24 "spotlight_rawquery_lexer.l"
872 return LT;
873         YY_BREAK
874 case 15:
875 YY_RULE_SETUP
876 #line 25 "spotlight_rawquery_lexer.l"
877 return GT;
878         YY_BREAK
879 case 16:
880 YY_RULE_SETUP
881 #line 26 "spotlight_rawquery_lexer.l"
882 return COMMA;
883         YY_BREAK
884 case 17:
885 /* rule 17 can match eol */
886 YY_RULE_SETUP
887 #line 27 "spotlight_rawquery_lexer.l"
888 /* ignore */
889         YY_BREAK
890 case 18:
891 YY_RULE_SETUP
892 #line 28 "spotlight_rawquery_lexer.l"
893 /* ignore case specifier */
894         YY_BREAK
895 case 19:
896 YY_RULE_SETUP
897 #line 29 "spotlight_rawquery_lexer.l"
898 /* ignore */
899         YY_BREAK
900 case 20:
901 YY_RULE_SETUP
902 #line 30 "spotlight_rawquery_lexer.l"
903 ECHO;
904         YY_BREAK
905 #line 906 "spotlight_rawquery_lexer.c"
906 case YY_STATE_EOF(INITIAL):
907         yyterminate();
908
909         case YY_END_OF_BUFFER:
910                 {
911                 /* Amount of text matched not including the EOB char. */
912                 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
913
914                 /* Undo the effects of YY_DO_BEFORE_ACTION. */
915                 *yy_cp = (yy_hold_char);
916                 YY_RESTORE_YY_MORE_OFFSET
917
918                 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
919                         {
920                         /* We're scanning a new file or input source.  It's
921                          * possible that this happened because the user
922                          * just pointed yyin at a new source and called
923                          * yylex().  If so, then we have to assure
924                          * consistency between YY_CURRENT_BUFFER and our
925                          * globals.  Here is the right place to do so, because
926                          * this is the first action (other than possibly a
927                          * back-up) that will match for the new input source.
928                          */
929                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
930                         YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
931                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
932                         }
933
934                 /* Note that here we test for yy_c_buf_p "<=" to the position
935                  * of the first EOB in the buffer, since yy_c_buf_p will
936                  * already have been incremented past the NUL character
937                  * (since all states make transitions on EOB to the
938                  * end-of-buffer state).  Contrast this with the test
939                  * in input().
940                  */
941                 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
942                         { /* This was really a NUL. */
943                         yy_state_type yy_next_state;
944
945                         (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
946
947                         yy_current_state = yy_get_previous_state(  );
948
949                         /* Okay, we're now positioned to make the NUL
950                          * transition.  We couldn't have
951                          * yy_get_previous_state() go ahead and do it
952                          * for us because it doesn't know how to deal
953                          * with the possibility of jamming (and we don't
954                          * want to build jamming into it because then it
955                          * will run more slowly).
956                          */
957
958                         yy_next_state = yy_try_NUL_trans( yy_current_state );
959
960                         yy_bp = (yytext_ptr) + YY_MORE_ADJ;
961
962                         if ( yy_next_state )
963                                 {
964                                 /* Consume the NUL. */
965                                 yy_cp = ++(yy_c_buf_p);
966                                 yy_current_state = yy_next_state;
967                                 goto yy_match;
968                                 }
969
970                         else
971                                 {
972                                 yy_cp = (yy_c_buf_p);
973                                 goto yy_find_action;
974                                 }
975                         }
976
977                 else switch ( yy_get_next_buffer(  ) )
978                         {
979                         case EOB_ACT_END_OF_FILE:
980                                 {
981                                 (yy_did_buffer_switch_on_eof) = 0;
982
983                                 if ( yywrap( ) )
984                                         {
985                                         /* Note: because we've taken care in
986                                          * yy_get_next_buffer() to have set up
987                                          * yytext, we can now set up
988                                          * yy_c_buf_p so that if some total
989                                          * hoser (like flex itself) wants to
990                                          * call the scanner after we return the
991                                          * YY_NULL, it'll still work - another
992                                          * YY_NULL will get returned.
993                                          */
994                                         (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
995
996                                         yy_act = YY_STATE_EOF(YY_START);
997                                         goto do_action;
998                                         }
999
1000                                 else
1001                                         {
1002                                         if ( ! (yy_did_buffer_switch_on_eof) )
1003                                                 YY_NEW_FILE;
1004                                         }
1005                                 break;
1006                                 }
1007
1008                         case EOB_ACT_CONTINUE_SCAN:
1009                                 (yy_c_buf_p) =
1010                                         (yytext_ptr) + yy_amount_of_matched_text;
1011
1012                                 yy_current_state = yy_get_previous_state(  );
1013
1014                                 yy_cp = (yy_c_buf_p);
1015                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1016                                 goto yy_match;
1017
1018                         case EOB_ACT_LAST_MATCH:
1019                                 (yy_c_buf_p) =
1020                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
1021
1022                                 yy_current_state = yy_get_previous_state(  );
1023
1024                                 yy_cp = (yy_c_buf_p);
1025                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1026                                 goto yy_find_action;
1027                         }
1028                 break;
1029                 }
1030
1031         default:
1032                 YY_FATAL_ERROR(
1033                         "fatal flex scanner internal error--no action found" );
1034         } /* end of action switch */
1035                 } /* end of scanning one token */
1036 } /* end of yylex */
1037
1038 /* yy_get_next_buffer - try to read in a new buffer
1039  *
1040  * Returns a code representing an action:
1041  *      EOB_ACT_LAST_MATCH -
1042  *      EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1043  *      EOB_ACT_END_OF_FILE - end of file
1044  */
1045 static int yy_get_next_buffer (void)
1046 {
1047         register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1048         register char *source = (yytext_ptr);
1049         register int number_to_move, i;
1050         int ret_val;
1051
1052         if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
1053                 YY_FATAL_ERROR(
1054                 "fatal flex scanner internal error--end of buffer missed" );
1055
1056         if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1057                 { /* Don't try to fill the buffer, so this is an EOF. */
1058                 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1059                         {
1060                         /* We matched a single character, the EOB, so
1061                          * treat this as a final EOF.
1062                          */
1063                         return EOB_ACT_END_OF_FILE;
1064                         }
1065
1066                 else
1067                         {
1068                         /* We matched some text prior to the EOB, first
1069                          * process it.
1070                          */
1071                         return EOB_ACT_LAST_MATCH;
1072                         }
1073                 }
1074
1075         /* Try to read more data. */
1076
1077         /* First move last chars to start of buffer. */
1078         number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1079
1080         for ( i = 0; i < number_to_move; ++i )
1081                 *(dest++) = *(source++);
1082
1083         if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1084                 /* don't do the read, it's not guaranteed to return an EOF,
1085                  * just force an EOF
1086                  */
1087                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1088
1089         else
1090                 {
1091                         int num_to_read =
1092                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1093
1094                 while ( num_to_read <= 0 )
1095                         { /* Not enough room in the buffer - grow it. */
1096
1097                         /* just a shorter name for the current buffer */
1098                         YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1099
1100                         int yy_c_buf_p_offset =
1101                                 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1102
1103                         if ( b->yy_is_our_buffer )
1104                                 {
1105                                 int new_size = b->yy_buf_size * 2;
1106
1107                                 if ( new_size <= 0 )
1108                                         b->yy_buf_size += b->yy_buf_size / 8;
1109                                 else
1110                                         b->yy_buf_size *= 2;
1111
1112                                 b->yy_ch_buf = (char *)
1113                                         /* Include room in for 2 EOB chars. */
1114                                         yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
1115                                 }
1116                         else
1117                                 /* Can't grow it, we don't own it. */
1118                                 b->yy_ch_buf = 0;
1119
1120                         if ( ! b->yy_ch_buf )
1121                                 YY_FATAL_ERROR(
1122                                 "fatal error - scanner input buffer overflow" );
1123
1124                         (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1125
1126                         num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1127                                                 number_to_move - 1;
1128
1129                         }
1130
1131                 if ( num_to_read > YY_READ_BUF_SIZE )
1132                         num_to_read = YY_READ_BUF_SIZE;
1133
1134                 /* Read in more data. */
1135                 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1136                         (yy_n_chars), (size_t) num_to_read );
1137
1138                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1139                 }
1140
1141         if ( (yy_n_chars) == 0 )
1142                 {
1143                 if ( number_to_move == YY_MORE_ADJ )
1144                         {
1145                         ret_val = EOB_ACT_END_OF_FILE;
1146                         yyrestart(yyin  );
1147                         }
1148
1149                 else
1150                         {
1151                         ret_val = EOB_ACT_LAST_MATCH;
1152                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1153                                 YY_BUFFER_EOF_PENDING;
1154                         }
1155                 }
1156
1157         else
1158                 ret_val = EOB_ACT_CONTINUE_SCAN;
1159
1160         if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1161                 /* Extend the array by 50%, plus the number we really need. */
1162                 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1163                 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
1164                 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1165                         YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1166         }
1167
1168         (yy_n_chars) += number_to_move;
1169         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1170         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1171
1172         (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1173
1174         return ret_val;
1175 }
1176
1177 /* yy_get_previous_state - get the state just before the EOB char was reached */
1178
1179     static yy_state_type yy_get_previous_state (void)
1180 {
1181         register yy_state_type yy_current_state;
1182         register char *yy_cp;
1183     
1184         yy_current_state = (yy_start);
1185
1186         for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1187                 {
1188                 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1189                 if ( yy_accept[yy_current_state] )
1190                         {
1191                         (yy_last_accepting_state) = yy_current_state;
1192                         (yy_last_accepting_cpos) = yy_cp;
1193                         }
1194                 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1195                         {
1196                         yy_current_state = (int) yy_def[yy_current_state];
1197                         if ( yy_current_state >= 75 )
1198                                 yy_c = yy_meta[(unsigned int) yy_c];
1199                         }
1200                 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1201                 }
1202
1203         return yy_current_state;
1204 }
1205
1206 /* yy_try_NUL_trans - try to make a transition on the NUL character
1207  *
1208  * synopsis
1209  *      next_state = yy_try_NUL_trans( current_state );
1210  */
1211     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
1212 {
1213         register int yy_is_jam;
1214         register char *yy_cp = (yy_c_buf_p);
1215
1216         register YY_CHAR yy_c = 1;
1217         if ( yy_accept[yy_current_state] )
1218                 {
1219                 (yy_last_accepting_state) = yy_current_state;
1220                 (yy_last_accepting_cpos) = yy_cp;
1221                 }
1222         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1223                 {
1224                 yy_current_state = (int) yy_def[yy_current_state];
1225                 if ( yy_current_state >= 75 )
1226                         yy_c = yy_meta[(unsigned int) yy_c];
1227                 }
1228         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1229         yy_is_jam = (yy_current_state == 74);
1230
1231         return yy_is_jam ? 0 : yy_current_state;
1232 }
1233
1234     static void yyunput (int c, register char * yy_bp )
1235 {
1236         register char *yy_cp;
1237     
1238     yy_cp = (yy_c_buf_p);
1239
1240         /* undo effects of setting up yytext */
1241         *yy_cp = (yy_hold_char);
1242
1243         if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1244                 { /* need to shift things up to make room */
1245                 /* +2 for EOB chars. */
1246                 register int number_to_move = (yy_n_chars) + 2;
1247                 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1248                                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1249                 register char *source =
1250                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1251
1252                 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1253                         *--dest = *--source;
1254
1255                 yy_cp += (int) (dest - source);
1256                 yy_bp += (int) (dest - source);
1257                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1258                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1259
1260                 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1261                         YY_FATAL_ERROR( "flex scanner push-back overflow" );
1262                 }
1263
1264         *--yy_cp = (char) c;
1265
1266         (yytext_ptr) = yy_bp;
1267         (yy_hold_char) = *yy_cp;
1268         (yy_c_buf_p) = yy_cp;
1269 }
1270
1271 #ifndef YY_NO_INPUT
1272 #ifdef __cplusplus
1273     static int yyinput (void)
1274 #else
1275     static int input  (void)
1276 #endif
1277
1278 {
1279         int c;
1280     
1281         *(yy_c_buf_p) = (yy_hold_char);
1282
1283         if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1284                 {
1285                 /* yy_c_buf_p now points to the character we want to return.
1286                  * If this occurs *before* the EOB characters, then it's a
1287                  * valid NUL; if not, then we've hit the end of the buffer.
1288                  */
1289                 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1290                         /* This was really a NUL. */
1291                         *(yy_c_buf_p) = '\0';
1292
1293                 else
1294                         { /* need more input */
1295                         int offset = (yy_c_buf_p) - (yytext_ptr);
1296                         ++(yy_c_buf_p);
1297
1298                         switch ( yy_get_next_buffer(  ) )
1299                                 {
1300                                 case EOB_ACT_LAST_MATCH:
1301                                         /* This happens because yy_g_n_b()
1302                                          * sees that we've accumulated a
1303                                          * token and flags that we need to
1304                                          * try matching the token before
1305                                          * proceeding.  But for input(),
1306                                          * there's no matching to consider.
1307                                          * So convert the EOB_ACT_LAST_MATCH
1308                                          * to EOB_ACT_END_OF_FILE.
1309                                          */
1310
1311                                         /* Reset buffer status. */
1312                                         yyrestart(yyin );
1313
1314                                         /*FALLTHROUGH*/
1315
1316                                 case EOB_ACT_END_OF_FILE:
1317                                         {
1318                                         if ( yywrap( ) )
1319                                                 return EOF;
1320
1321                                         if ( ! (yy_did_buffer_switch_on_eof) )
1322                                                 YY_NEW_FILE;
1323 #ifdef __cplusplus
1324                                         return yyinput();
1325 #else
1326                                         return input();
1327 #endif
1328                                         }
1329
1330                                 case EOB_ACT_CONTINUE_SCAN:
1331                                         (yy_c_buf_p) = (yytext_ptr) + offset;
1332                                         break;
1333                                 }
1334                         }
1335                 }
1336
1337         c = *(unsigned char *) (yy_c_buf_p);    /* cast for 8-bit char's */
1338         *(yy_c_buf_p) = '\0';   /* preserve yytext */
1339         (yy_hold_char) = *++(yy_c_buf_p);
1340
1341         return c;
1342 }
1343 #endif  /* ifndef YY_NO_INPUT */
1344
1345 /** Immediately switch to a different input stream.
1346  * @param input_file A readable stream.
1347  * 
1348  * @note This function does not reset the start condition to @c INITIAL .
1349  */
1350     void yyrestart  (FILE * input_file )
1351 {
1352     
1353         if ( ! YY_CURRENT_BUFFER ){
1354         yyensure_buffer_stack ();
1355                 YY_CURRENT_BUFFER_LVALUE =
1356             yy_create_buffer(yyin,YY_BUF_SIZE );
1357         }
1358
1359         yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1360         yy_load_buffer_state( );
1361 }
1362
1363 /** Switch to a different input buffer.
1364  * @param new_buffer The new input buffer.
1365  * 
1366  */
1367     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
1368 {
1369     
1370         /* TODO. We should be able to replace this entire function body
1371          * with
1372          *              yypop_buffer_state();
1373          *              yypush_buffer_state(new_buffer);
1374      */
1375         yyensure_buffer_stack ();
1376         if ( YY_CURRENT_BUFFER == new_buffer )
1377                 return;
1378
1379         if ( YY_CURRENT_BUFFER )
1380                 {
1381                 /* Flush out information for old buffer. */
1382                 *(yy_c_buf_p) = (yy_hold_char);
1383                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1384                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1385                 }
1386
1387         YY_CURRENT_BUFFER_LVALUE = new_buffer;
1388         yy_load_buffer_state( );
1389
1390         /* We don't actually know whether we did this switch during
1391          * EOF (yywrap()) processing, but the only time this flag
1392          * is looked at is after yywrap() is called, so it's safe
1393          * to go ahead and always set it.
1394          */
1395         (yy_did_buffer_switch_on_eof) = 1;
1396 }
1397
1398 static void yy_load_buffer_state  (void)
1399 {
1400         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1401         (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1402         yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1403         (yy_hold_char) = *(yy_c_buf_p);
1404 }
1405
1406 /** Allocate and initialize an input buffer state.
1407  * @param file A readable stream.
1408  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1409  * 
1410  * @return the allocated buffer state.
1411  */
1412     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
1413 {
1414         YY_BUFFER_STATE b;
1415     
1416         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
1417         if ( ! b )
1418                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1419
1420         b->yy_buf_size = size;
1421
1422         /* yy_ch_buf has to be 2 characters longer than the size given because
1423          * we need to put in 2 end-of-buffer characters.
1424          */
1425         b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
1426         if ( ! b->yy_ch_buf )
1427                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1428
1429         b->yy_is_our_buffer = 1;
1430
1431         yy_init_buffer(b,file );
1432
1433         return b;
1434 }
1435
1436 /** Destroy the buffer.
1437  * @param b a buffer created with yy_create_buffer()
1438  * 
1439  */
1440     void yy_delete_buffer (YY_BUFFER_STATE  b )
1441 {
1442     
1443         if ( ! b )
1444                 return;
1445
1446         if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1447                 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1448
1449         if ( b->yy_is_our_buffer )
1450                 yyfree((void *) b->yy_ch_buf  );
1451
1452         yyfree((void *) b  );
1453 }
1454
1455 #ifndef __cplusplus
1456 extern int isatty (int );
1457 #endif /* __cplusplus */
1458     
1459 /* Initializes or reinitializes a buffer.
1460  * This function is sometimes called more than once on the same buffer,
1461  * such as during a yyrestart() or at EOF.
1462  */
1463     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
1464
1465 {
1466         int oerrno = errno;
1467     
1468         yy_flush_buffer(b );
1469
1470         b->yy_input_file = file;
1471         b->yy_fill_buffer = 1;
1472
1473     /* If b is the current buffer, then yy_init_buffer was _probably_
1474      * called from yyrestart() or through yy_get_next_buffer.
1475      * In that case, we don't want to reset the lineno or column.
1476      */
1477     if (b != YY_CURRENT_BUFFER){
1478         b->yy_bs_lineno = 1;
1479         b->yy_bs_column = 0;
1480     }
1481
1482         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1483     
1484         errno = oerrno;
1485 }
1486
1487 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1488  * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1489  * 
1490  */
1491     void yy_flush_buffer (YY_BUFFER_STATE  b )
1492 {
1493         if ( ! b )
1494                 return;
1495
1496         b->yy_n_chars = 0;
1497
1498         /* We always need two end-of-buffer characters.  The first causes
1499          * a transition to the end-of-buffer state.  The second causes
1500          * a jam in that state.
1501          */
1502         b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1503         b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1504
1505         b->yy_buf_pos = &b->yy_ch_buf[0];
1506
1507         b->yy_at_bol = 1;
1508         b->yy_buffer_status = YY_BUFFER_NEW;
1509
1510         if ( b == YY_CURRENT_BUFFER )
1511                 yy_load_buffer_state( );
1512 }
1513
1514 /** Pushes the new state onto the stack. The new state becomes
1515  *  the current state. This function will allocate the stack
1516  *  if necessary.
1517  *  @param new_buffer The new state.
1518  *  
1519  */
1520 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1521 {
1522         if (new_buffer == NULL)
1523                 return;
1524
1525         yyensure_buffer_stack();
1526
1527         /* This block is copied from yy_switch_to_buffer. */
1528         if ( YY_CURRENT_BUFFER )
1529                 {
1530                 /* Flush out information for old buffer. */
1531                 *(yy_c_buf_p) = (yy_hold_char);
1532                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1533                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1534                 }
1535
1536         /* Only push if top exists. Otherwise, replace top. */
1537         if (YY_CURRENT_BUFFER)
1538                 (yy_buffer_stack_top)++;
1539         YY_CURRENT_BUFFER_LVALUE = new_buffer;
1540
1541         /* copied from yy_switch_to_buffer. */
1542         yy_load_buffer_state( );
1543         (yy_did_buffer_switch_on_eof) = 1;
1544 }
1545
1546 /** Removes and deletes the top of the stack, if present.
1547  *  The next element becomes the new top.
1548  *  
1549  */
1550 void yypop_buffer_state (void)
1551 {
1552         if (!YY_CURRENT_BUFFER)
1553                 return;
1554
1555         yy_delete_buffer(YY_CURRENT_BUFFER );
1556         YY_CURRENT_BUFFER_LVALUE = NULL;
1557         if ((yy_buffer_stack_top) > 0)
1558                 --(yy_buffer_stack_top);
1559
1560         if (YY_CURRENT_BUFFER) {
1561                 yy_load_buffer_state( );
1562                 (yy_did_buffer_switch_on_eof) = 1;
1563         }
1564 }
1565
1566 /* Allocates the stack if it does not exist.
1567  *  Guarantees space for at least one push.
1568  */
1569 static void yyensure_buffer_stack (void)
1570 {
1571         int num_to_alloc;
1572     
1573         if (!(yy_buffer_stack)) {
1574
1575                 /* First allocation is just for 2 elements, since we don't know if this
1576                  * scanner will even need a stack. We use 2 instead of 1 to avoid an
1577                  * immediate realloc on the next call.
1578          */
1579                 num_to_alloc = 1;
1580                 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1581                                                                 (num_to_alloc * sizeof(struct yy_buffer_state*)
1582                                                                 );
1583                 if ( ! (yy_buffer_stack) )
1584                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1585                                                                   
1586                 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1587                                 
1588                 (yy_buffer_stack_max) = num_to_alloc;
1589                 (yy_buffer_stack_top) = 0;
1590                 return;
1591         }
1592
1593         if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1594
1595                 /* Increase the buffer to prepare for a possible push. */
1596                 int grow_size = 8 /* arbitrary grow size */;
1597
1598                 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1599                 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1600                                                                 ((yy_buffer_stack),
1601                                                                 num_to_alloc * sizeof(struct yy_buffer_state*)
1602                                                                 );
1603                 if ( ! (yy_buffer_stack) )
1604                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1605
1606                 /* zero only the new slots.*/
1607                 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1608                 (yy_buffer_stack_max) = num_to_alloc;
1609         }
1610 }
1611
1612 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1613  * @param base the character buffer
1614  * @param size the size in bytes of the character buffer
1615  * 
1616  * @return the newly allocated buffer state object. 
1617  */
1618 YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
1619 {
1620         YY_BUFFER_STATE b;
1621     
1622         if ( size < 2 ||
1623              base[size-2] != YY_END_OF_BUFFER_CHAR ||
1624              base[size-1] != YY_END_OF_BUFFER_CHAR )
1625                 /* They forgot to leave room for the EOB's. */
1626                 return 0;
1627
1628         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
1629         if ( ! b )
1630                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1631
1632         b->yy_buf_size = size - 2;      /* "- 2" to take care of EOB's */
1633         b->yy_buf_pos = b->yy_ch_buf = base;
1634         b->yy_is_our_buffer = 0;
1635         b->yy_input_file = 0;
1636         b->yy_n_chars = b->yy_buf_size;
1637         b->yy_is_interactive = 0;
1638         b->yy_at_bol = 1;
1639         b->yy_fill_buffer = 0;
1640         b->yy_buffer_status = YY_BUFFER_NEW;
1641
1642         yy_switch_to_buffer(b  );
1643
1644         return b;
1645 }
1646
1647 /** Setup the input buffer state to scan a string. The next call to yylex() will
1648  * scan from a @e copy of @a str.
1649  * @param yystr a NUL-terminated string to scan
1650  * 
1651  * @return the newly allocated buffer state object.
1652  * @note If you want to scan bytes that may contain NUL values, then use
1653  *       yy_scan_bytes() instead.
1654  */
1655 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1656 {
1657     
1658         return yy_scan_bytes(yystr,strlen(yystr) );
1659 }
1660
1661 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1662  * scan from a @e copy of @a bytes.
1663  * @param bytes the byte buffer to scan
1664  * @param len the number of bytes in the buffer pointed to by @a bytes.
1665  * 
1666  * @return the newly allocated buffer state object.
1667  */
1668 YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
1669 {
1670         YY_BUFFER_STATE b;
1671         char *buf;
1672         yy_size_t n;
1673         int i;
1674     
1675         /* Get memory for full buffer, including space for trailing EOB's. */
1676         n = _yybytes_len + 2;
1677         buf = (char *) yyalloc(n  );
1678         if ( ! buf )
1679                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1680
1681         for ( i = 0; i < _yybytes_len; ++i )
1682                 buf[i] = yybytes[i];
1683
1684         buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1685
1686         b = yy_scan_buffer(buf,n );
1687         if ( ! b )
1688                 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1689
1690         /* It's okay to grow etc. this buffer, and we should throw it
1691          * away when we're done.
1692          */
1693         b->yy_is_our_buffer = 1;
1694
1695         return b;
1696 }
1697
1698 #ifndef YY_EXIT_FAILURE
1699 #define YY_EXIT_FAILURE 2
1700 #endif
1701
1702 static void yy_fatal_error (yyconst char* msg )
1703 {
1704         (void) fprintf( stderr, "%s\n", msg );
1705         exit( YY_EXIT_FAILURE );
1706 }
1707
1708 /* Redefine yyless() so it works in section 3 code. */
1709
1710 #undef yyless
1711 #define yyless(n) \
1712         do \
1713                 { \
1714                 /* Undo effects of setting up yytext. */ \
1715         int yyless_macro_arg = (n); \
1716         YY_LESS_LINENO(yyless_macro_arg);\
1717                 yytext[yyleng] = (yy_hold_char); \
1718                 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1719                 (yy_hold_char) = *(yy_c_buf_p); \
1720                 *(yy_c_buf_p) = '\0'; \
1721                 yyleng = yyless_macro_arg; \
1722                 } \
1723         while ( 0 )
1724
1725 /* Accessor  methods (get/set functions) to struct members. */
1726
1727 /** Get the current line number.
1728  * 
1729  */
1730 int yyget_lineno  (void)
1731 {
1732         
1733     return yylineno;
1734 }
1735
1736 /** Get the input stream.
1737  * 
1738  */
1739 FILE *yyget_in  (void)
1740 {
1741         return yyin;
1742 }
1743
1744 /** Get the output stream.
1745  * 
1746  */
1747 FILE *yyget_out  (void)
1748 {
1749         return yyout;
1750 }
1751
1752 /** Get the length of the current token.
1753  * 
1754  */
1755 int yyget_leng  (void)
1756 {
1757         return yyleng;
1758 }
1759
1760 /** Get the current token.
1761  * 
1762  */
1763
1764 char *yyget_text  (void)
1765 {
1766         return yytext;
1767 }
1768
1769 /** Set the current line number.
1770  * @param line_number
1771  * 
1772  */
1773 void yyset_lineno (int  line_number )
1774 {
1775     
1776     yylineno = line_number;
1777 }
1778
1779 /** Set the input stream. This does not discard the current
1780  * input buffer.
1781  * @param in_str A readable stream.
1782  * 
1783  * @see yy_switch_to_buffer
1784  */
1785 void yyset_in (FILE *  in_str )
1786 {
1787         yyin = in_str ;
1788 }
1789
1790 void yyset_out (FILE *  out_str )
1791 {
1792         yyout = out_str ;
1793 }
1794
1795 int yyget_debug  (void)
1796 {
1797         return yy_flex_debug;
1798 }
1799
1800 void yyset_debug (int  bdebug )
1801 {
1802         yy_flex_debug = bdebug ;
1803 }
1804
1805 static int yy_init_globals (void)
1806 {
1807         /* Initialization is the same as for the non-reentrant scanner.
1808      * This function is called from yylex_destroy(), so don't allocate here.
1809      */
1810
1811     (yy_buffer_stack) = 0;
1812     (yy_buffer_stack_top) = 0;
1813     (yy_buffer_stack_max) = 0;
1814     (yy_c_buf_p) = (char *) 0;
1815     (yy_init) = 0;
1816     (yy_start) = 0;
1817
1818 /* Defined in main.c */
1819 #ifdef YY_STDINIT
1820     yyin = stdin;
1821     yyout = stdout;
1822 #else
1823     yyin = (FILE *) 0;
1824     yyout = (FILE *) 0;
1825 #endif
1826
1827     /* For future reference: Set errno on error, since we are called by
1828      * yylex_init()
1829      */
1830     return 0;
1831 }
1832
1833 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
1834 int yylex_destroy  (void)
1835 {
1836     
1837     /* Pop the buffer stack, destroying each element. */
1838         while(YY_CURRENT_BUFFER){
1839                 yy_delete_buffer(YY_CURRENT_BUFFER  );
1840                 YY_CURRENT_BUFFER_LVALUE = NULL;
1841                 yypop_buffer_state();
1842         }
1843
1844         /* Destroy the stack itself. */
1845         yyfree((yy_buffer_stack) );
1846         (yy_buffer_stack) = NULL;
1847
1848     /* Reset the globals. This is important in a non-reentrant scanner so the next time
1849      * yylex() is called, initialization will occur. */
1850     yy_init_globals( );
1851
1852     return 0;
1853 }
1854
1855 /*
1856  * Internal utility routines.
1857  */
1858
1859 #ifndef yytext_ptr
1860 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1861 {
1862         register int i;
1863         for ( i = 0; i < n; ++i )
1864                 s1[i] = s2[i];
1865 }
1866 #endif
1867
1868 #ifdef YY_NEED_STRLEN
1869 static int yy_flex_strlen (yyconst char * s )
1870 {
1871         register int n;
1872         for ( n = 0; s[n]; ++n )
1873                 ;
1874
1875         return n;
1876 }
1877 #endif
1878
1879 void *yyalloc (yy_size_t  size )
1880 {
1881         return (void *) malloc( size );
1882 }
1883
1884 void *yyrealloc  (void * ptr, yy_size_t  size )
1885 {
1886         /* The cast to (char *) in the following accommodates both
1887          * implementations that use char* generic pointers, and those
1888          * that use void* generic pointers.  It works with the latter
1889          * because both ANSI C and C++ allow castless assignment from
1890          * any pointer type to void*, and deal with argument conversions
1891          * as though doing an assignment.
1892          */
1893         return (void *) realloc( (char *) ptr, size );
1894 }
1895
1896 void yyfree (void * ptr )
1897 {
1898         free( (char *) ptr );   /* see yyrealloc() for (char *) cast */
1899 }
1900
1901 #define YYTABLES_NAME "yytables"
1902
1903 #line 30 "spotlight_rawquery_lexer.l"
1904
1905
1906