Added quantiling UDAFs
[com/gs-lite.git] / src / ftacmp / res.l
1 /* ------------------------------------------------\r
2 Copyright 2014 AT&T Intellectual Property\r
3    Licensed under the Apache License, Version 2.0 (the "License");\r
4    you may not use this file except in compliance with the License.\r
5    You may obtain a copy of the License at\r
6 \r
7      http://www.apache.org/licenses/LICENSE-2.0\r
8 \r
9    Unless required by applicable law or agreed to in writing, software\r
10    distributed under the License is distributed on an "AS IS" BASIS,\r
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12    See the License for the specific language governing permissions and\r
13    limitations under the License.\r
14  ------------------------------------------- */\r
15 \r
16 \r
17 /*\r
18         MUST COMPILE WITH\r
19                 flex -PResParser -oreslexer.cc res.l\r
20         (or equivalent).\r
21 */      \r
22 \r
23 %{\r
24 /*\r
25  * AT&T lex can't handle this lexer due to lex bugs.  It works with flex\r
26  * 2.3.7, pclex 2.0.5, and MKS lex 3.1a.\r
27  */\r
28 \r
29  #include "parse_fta.h"\r
30  #include <string.h>\r
31 \r
32 \r
33 \r
34 #include "res.tab.cc.h"\r
35 \r
36 /*\r
37         Some includes that flex doesn't include as standard,\r
38         but which are needed.\r
39 */\r
40 \r
41 #include <stdlib.h>\r
42 #include <string.h>\r
43 \r
44 \r
45 //              Prevent flex from defining yywrap as extern "C" \r
46 \r
47 #define YY_SKIP_YYWRAP\r
48 \r
49 /*              No lex lib, supply the yywrap fcn. that normally resides there\r
50 */\r
51 \r
52 int ResParserwrap(){return(1);}\r
53 \r
54 extern int ResParserdebug;\r
55 \r
56 \r
57 /*\r
58                 These variables are used for error reporting:\r
59                 flex_res_lineno : the line currently being parsed when the error occurs.\r
60                 flex_res_ch : the character on the line where the error occurs\r
61                 flex_res_linebuf : store the line for reporting.\r
62 \r
63                 NOTE : 1) the fixed size flex_res_linebuf buffer is dangerous.\r
64                            2) You might get pointed to a place shortly after\r
65                                   where the syntax error occurs.  It is close enough\r
66                                   for now.\r
67 */\r
68 \r
69 int flex_res_lineno = 1;\r
70 int flex_res_ch = 0;\r
71 char flex_res_linebuf[20000];\r
72 \r
73 char *flex_res_stringinput = NULL;\r
74 int flex_res_stringinput_ptr = 0;\r
75 FILE *flex_res_fileinput = NULL;\r
76 int my_ResParser_yyinput(char *buf, int max_size);\r
77 \r
78 \r
79 \r
80 void ResParsererror(char *s){\r
81         int i;\r
82         fprintf(stderr,"On line %d, char %d: %s (token %s):\n%s\n",\r
83                                 flex_res_lineno, flex_res_ch, s, ResParsertext, flex_res_linebuf );\r
84     for(i=0;i<flex_res_ch;i++){\r
85                 if(flex_res_linebuf[i] == '\t'){\r
86                         fprintf(stderr,"\t");\r
87                 }else{\r
88                         fprintf(stderr," ");\r
89                 }\r
90         }\r
91         fprintf(stderr,"^\n");\r
92         //      fprintf(stderr,"%*s\n",1+flex_res_ch,"^");\r
93 }\r
94 \r
95 #undef YY_INPUT\r
96 #define YY_INPUT(b, r, ms) (r = my_ResParser_yyinput(b,ms))\r
97 \r
98 %}\r
99         /* MKS needs the next line to increase the NFA table */\r
100 %e 1200\r
101 %option noyywrap\r
102 \r
103 %%\r
104 \r
105         /* literal keyword tokens */\r
106 \r
107  /*\r
108                         The actions associated with each text token are to\r
109                         keep track of the current location (for syntax error reporting)\r
110                         and to report any necessary info to the emf.y parse tree builder\r
111 \r
112                         Its likely that there are a number of omissions, inconsistencies\r
113                         (some keywords do not need to be in caps), and relics\r
114                         (keywords such as BETWEEN, INDICATOR, etc., are not used\r
115                          in emf.y)\r
116                         This parser is somewhat of a work in progress.\r
117  */\r
118 \r
119  /*             Query keywords          */\r
120 \r
121 \r
122 \r
123 \r
124 [<>=/]  { flex_res_ch+=ResParserleng; return yytext[0]; }\r
125 \r
126         /* names */\r
127 \r
128 [A-Za-z_][A-Za-z0-9_]*  { flex_res_ch+=ResParserleng; ResParserlval.strval = strdup(yytext); return NAME; }\r
129 \r
130 \r
131         /* strings */\r
132 \r
133 '[^'\n]*'       {\r
134                 \r
135                 int c;\r
136                 \r
137                 ResParserlval.strval = strdup(ResParsertext+1); \r
138 \r
139                 c = yyinput();\r
140 \r
141                 unput(c);       /* just peeking */\r
142                 if(c != '\'') {\r
143                         flex_res_ch+=ResParserleng; \r
144                         ResParserlval.strval[ResParserleng-2] = '\0';\r
145                         return STRING_TOKEN;\r
146                 } else\r
147                         yymore();\r
148         }\r
149                 \r
150 '[^'\n]*$       { flex_res_ch+=ResParserleng; ResParsererror("Unterminated string"); }\r
151 \r
152  /*                                                                                                                     */\r
153  /*             Newline : advance the error reporting line number       */\r
154  /*             and grab the next line into flex_res_linebuf                    */\r
155  /*                                                                                                                     */\r
156 \r
157 \n.*            {flex_res_ch=0; flex_res_lineno++;\r
158                            strcpy(flex_res_linebuf,ResParsertext+1);\r
159                            yyless(1);\r
160                            }\r
161 \r
162 [ \t\r]+        {flex_res_ch+=ResParserleng; }  /* white space */\r
163 \r
164 "--".*$         {flex_res_ch+=ResParserleng; }; /* comment */\r
165 "//".*$         {flex_res_ch+=ResParserleng; }; /* comment */\r
166 "<?xml".*$      {flex_res_ch+=ResParserleng; }; /* comment */\r
167 \r
168 .|\n            {flex_res_ch+=ResParserleng; fprintf(stderr,"Warning: unknown token (ignored)\n");  ResParsererror(yytext);}\r
169 \r
170 %%\r
171 \r
172 int my_ResParser_yyinput(char *buf, int max_size){\r
173         int c = 0;\r
174         int inchar = 0;\r
175         \r
176         if(flex_res_stringinput != NULL){\r
177                 while(c<max_size){\r
178                         if(flex_res_stringinput[flex_res_stringinput_ptr] != '\0'){\r
179                                 buf[c++] = flex_res_stringinput[flex_res_stringinput_ptr++];\r
180                         }else{\r
181                                 break;\r
182                         }\r
183                 }\r
184                 return(c);\r
185         }\r
186         \r
187         if(flex_res_fileinput != NULL){\r
188                 while(c < max_size){\r
189                         inchar = getc(flex_res_fileinput);\r
190                         if(inchar != EOF){\r
191                                 buf[c++] = inchar;\r
192                         }else{\r
193                                 break;\r
194                         }\r
195                 }\r
196                 return(c);\r
197         }\r
198         \r
199         return(0);\r
200 }\r
201 \r
202 void ResParser_setfileinput(FILE *f){\r
203         ResParserrestart(NULL);\r
204 \r
205         flex_res_fileinput = f;\r
206         flex_res_stringinput = NULL;\r
207         flex_res_lineno = 1;\r
208         flex_res_ch = 0;\r
209 }\r
210 \r
211 void ResParser_setstringinput(char *s){\r
212         ResParserrestart(NULL);\r
213 \r
214         flex_res_fileinput = NULL;\r
215         flex_res_stringinput = s;\r
216         flex_res_stringinput_ptr = 0;\r
217         flex_res_lineno = 1;\r
218         flex_res_ch = 0;\r
219 }\r
220         \r
221                 \r
222 \r
223 \r