Replace a number of calls to WIN_FindWndPtr by WIN_GetPtr.
[wine/testsucceed.git] / tools / widl / parser.l
blob0825a157b9a8317bbd9912be21f58404f8f6aa7a
1 /*
2  * IDL Compiler
3  *
4  * Copyright 2002 Ove Kaaven
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 %option stack
22 %option never-interactive
24 nl      \r?\n
25 ws      [ \f\t\r]
26 cident  [a-zA-Z_][0-9a-zA-Z_]*
27 int     [0-9]+
28 hexd    [0-9a-fA-F]
29 hex     0x{hexd}+
30 uuid    {hexd}{8}-{hexd}{4}-{hexd}{4}-{hexd}{4}-{hexd}{12}
32 %x QUOTE
33 %x pp_line
37 #include "config.h"
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <ctype.h>
43 #include <assert.h>
44 #ifdef HAVE_UNISTD_H
45 # include <unistd.h>
46 #endif
48 #include "widl.h"
49 #include "utils.h"
50 #include "parser.h"
51 #include "wine/wpp.h"
53 #include "y.tab.h"
55 #define YY_USE_PROTOS
56 #define YY_NO_UNPUT
57 #define YY_NO_TOP_STATE
59 extern char *temp_name;
61 static void addcchar(char c);
62 static char *get_buffered_cstring(void);
64 static char *cbuffer;
65 static int cbufidx;
66 static int cbufalloc = 0;
68 static int kw_token(const char *kw);
70 #define MAX_IMPORT_DEPTH 10
71 struct {
72   YY_BUFFER_STATE state;
73   char *input_name;
74   int   line_number;
75   char *temp_name;
76 } import_stack[MAX_IMPORT_DEPTH];
77 int import_stack_ptr = 0;
79 static void pop_import(void);
81 static UUID* parse_uuid(const char*u)
83   UUID* uuid = xmalloc(sizeof(UUID));
84   char b[3];
85   /* it would be nice to use UuidFromStringA */
86   uuid->Data1 = strtoul(u, NULL, 16);
87   uuid->Data2 = strtoul(u+9, NULL, 16);
88   uuid->Data3 = strtoul(u+14, NULL, 16);
89   b[2] = 0;
90   memcpy(b, u+19, 2); uuid->Data4[0] = strtoul(b, NULL, 16);
91   memcpy(b, u+21, 2); uuid->Data4[1] = strtoul(b, NULL, 16);
92   memcpy(b, u+24, 2); uuid->Data4[2] = strtoul(b, NULL, 16);
93   memcpy(b, u+26, 2); uuid->Data4[3] = strtoul(b, NULL, 16);
94   memcpy(b, u+28, 2); uuid->Data4[4] = strtoul(b, NULL, 16);
95   memcpy(b, u+30, 2); uuid->Data4[5] = strtoul(b, NULL, 16);
96   memcpy(b, u+32, 2); uuid->Data4[6] = strtoul(b, NULL, 16);
97   memcpy(b, u+34, 2); uuid->Data4[7] = strtoul(b, NULL, 16);
98   return uuid;
104  **************************************************************************
105  * The flexer starts here
106  **************************************************************************
107  */
109 <INITIAL>^{ws}*\#{ws}*  yy_push_state(pp_line);
110 <pp_line>[^\n]*         {
111                             int lineno;
112                             char *cptr, *fname;
113                             yy_pop_state();
114                             lineno = (int)strtol(yytext, &cptr, 10);
115                             if(!lineno)
116                                 yyerror("Malformed '#...' line-directive; invalid linenumber");
117                             fname = strchr(cptr, '"');
118                             if(!fname)
119                                 yyerror("Malformed '#...' line-directive; missing filename");
120                             fname++;
121                             cptr = strchr(fname, '"');
122                             if(!cptr)
123                                 yyerror("Malformed '#...' line-directive; missing terminating \"");
124                             *cptr = '\0';
125                             line_number = lineno - 1;  /* We didn't read the newline */
126                             free( input_name );
127                             input_name = xstrdup(fname);
128                         }
129 \"                      yy_push_state(QUOTE); cbufidx = 0;
130 <QUOTE>\"               {
131                                 yy_pop_state();
132                                 yylval.str = get_buffered_cstring();
133                                 return aSTRING;
134                         }
135 <QUOTE>\\\\             |
136 <QUOTE>\\\"             addcchar(yytext[1]);
137 <QUOTE>\\.              addcchar('\\'); addcchar(yytext[1]);
138 <QUOTE>.                addcchar(yytext[0]);
139 {uuid}                  {
140                                 yylval.uuid = parse_uuid(yytext);
141                                 return aUUID;
142                         }
143 {hex}                   {
144                                 yylval.num = strtoul(yytext, NULL, 0);
145                                 return aHEXNUM;
146                         }
147 {int}                   {
148                                 yylval.num = strtoul(yytext, NULL, 0);
149                                 return aNUM;
150                         }
151 {cident}                return kw_token(yytext);
152 \n                      line_number++;
153 {ws}
154 \<\<                    return SHL;
155 \>\>                    return SHR;
156 .                       return yytext[0];
157 <<EOF>>                 {
158                                 if (import_stack_ptr) {
159                                         pop_import();
160                                         return aEOF;
161                                 }
162                                 else yyterminate();
163                         }
166 #ifndef yywrap
167 int yywrap(void)
169         return 1;
171 #endif
173 static struct keyword {
174         const char *kw;
175         int token;
176         int val;
177 } keywords[] = {
178         {"__cdecl",                     tCDECL},
179         {"__int64",                     tINT64},
180         {"__stdcall",                   tSTDCALL},
181         {"_stdcall",                    tSTDCALL},
182         {"aggregatable",                tAGGREGATABLE},
183         {"allocate",                    tALLOCATE},
184         {"appobject",                   tAPPOBJECT},
185         {"arrays",                      tARRAYS},
186         {"async",                       tASYNC},
187         {"async_uuid",                  tASYNCUUID},
188         {"auto_handle",                 tAUTOHANDLE},
189         {"bindable",                    tBINDABLE},
190         {"boolean",                     tBOOLEAN},
191         {"broadcast",                   tBROADCAST},
192         {"byte",                        tBYTE},
193         {"byte_count",                  tBYTECOUNT},
194         {"call_as",                     tCALLAS},
195         {"callback",                    tCALLBACK},
196         {"case",                        tCASE},
197         {"char",                        tCHAR},
198         {"coclass",                     tCOCLASS},
199         {"code",                        tCODE},
200         {"comm_status",                 tCOMMSTATUS},
201         {"const",                       tCONST},
202         {"context_handle",              tCONTEXTHANDLE},
203         {"context_handle_noserialize",  tCONTEXTHANDLENOSERIALIZE},
204         {"context_handle_serialize",    tCONTEXTHANDLENOSERIALIZE},
205         {"control",                     tCONTROL},
206         {"cpp_quote",                   tCPPQUOTE},
207 /* ... */
208         {"default",                     tDEFAULT},
209         {"defaultvalue",                tDEFAULTVALUE},
210 /* ... */
211         {"dispinterface",               tDISPINTERFACE},
212 /* ... */
213         {"dllname",                     tDLLNAME},
214         {"double",                      tDOUBLE},
215         {"dual",                        tDUAL},
216 /* ... */
217         {"endpoint",                    tENDPOINT},
218         {"entry",                       tENTRY},
219         {"enum",                        tENUM},
220         {"error_status_t",              tERRORSTATUST},
221 /* ... */
222         {"extern",                      tEXTERN},
223 /* ... */
224         {"float",                       tFLOAT},
225 /* ... */
226         {"handle",                      tHANDLE},
227         {"handle_t",                    tHANDLET},
228 /* ... */
229         {"helpcontext",                 tHELPCONTEXT},
230         {"helpfile",                    tHELPFILE},
231         {"helpstring",                  tHELPSTRING},
232         {"helpstringcontext",           tHELPSTRINGCONTEXT},
233         {"helpstringdll",               tHELPSTRINGDLL},
234 /* ... */
235         {"hidden",                      tHIDDEN},
236         {"hyper",                       tHYPER},
237         {"id",                          tID},
238         {"idempotent",                  tIDEMPOTENT},
239 /* ... */
240         {"iid_is",                      tIIDIS},
241 /* ... */
242         {"import",                      tIMPORT},
243         {"importlib",                   tIMPORTLIB},
244         {"in",                          tIN},
245         {"include",                     tINCLUDE},
246         {"in_line",                     tINLINE},
247         {"input_sync",                  tINPUTSYNC},
248         {"int",                         tINT},
249 /* ... */
250         {"interface",                   tINTERFACE},
251 /* ... */
252         {"length_is",                   tLENGTHIS},
253         {"library",                     tLIBRARY},
254 /* ... */
255         {"local",                       tLOCAL},
256         {"long",                        tLONG},
257 /* ... */
258         {"methods",                     tMETHODS},
259 /* ... */
260         {"module",                      tMODULE},
261 /* ... */
262         {"object",                      tOBJECT},
263         {"odl",                         tODL},
264         {"oleautomation",               tOLEAUTOMATION},
265 /* ... */
266         {"optional",                    tOPTIONAL},
267         {"out",                         tOUT},
268 /* ... */
269         {"pointer_default",             tPOINTERDEFAULT},
270 /* ... */
271         {"properties",                  tPROPERTIES},
272         {"propget",                     tPROPGET},
273         {"propput",                     tPROPPUT},
274 /* ... */
275         {"public",                      tPUBLIC},
276 /* ... */
277         {"readonly",                    tREADONLY},
278         {"ref",                         tREF},
279 /* ... */
280         {"restricted",                  tRESTRICTED},
281         {"retval",                      tRETVAL},
282 /* ... */
283         {"short",                       tSHORT},
284         {"signed",                      tSIGNED},
285         {"size_is",                     tSIZEIS},
286         {"sizeof",                      tSIZEOF},
287 /* ... */
288         {"source",                      tSOURCE},
289 /* ... */       
290         {"string",                      tSTRING},
291         {"struct",                      tSTRUCT},
292         {"switch",                      tSWITCH},
293         {"switch_is",                   tSWITCHIS},
294         {"switch_type",                 tSWITCHTYPE},
295 /* ... */
296         {"transmit_as",                 tTRANSMITAS},
297         {"typedef",                     tTYPEDEF},
298         {"union",                       tUNION},
299 /* ... */
300         {"unique",                      tUNIQUE},
301         {"unsigned",                    tUNSIGNED},
302 /* ... */
303         {"uuid",                        tUUID},
304         {"v1_enum",                     tV1ENUM},
305 /* ... */
306         {"vararg",                      tVARARG},
307         {"version",                     tVERSION},
308         {"void",                        tVOID},
309         {"wchar_t",                     tWCHAR},
310         {"wire_marshal",                tWIREMARSHAL}
312 #define NKEYWORDS (sizeof(keywords)/sizeof(keywords[0]))
313 #define KWP(p) ((const struct keyword *)(p))
315 static int kw_cmp_func(const void *s1, const void *s2)
317         return strcmp(KWP(s1)->kw, KWP(s2)->kw);
320 #define KW_BSEARCH
321 static int kw_token(const char *kw)
323         struct keyword key, *kwp;
324         key.kw = kw;
325 #ifdef KW_BSEARCH
326         kwp = bsearch(&key, keywords, NKEYWORDS, sizeof(keywords[0]), kw_cmp_func);
327 #else
328         {
329                 int i;
330                 for (kwp=NULL, i=0; i < NKEYWORDS; i++)
331                         if (!kw_cmp_func(&key, &keywords[i])) {
332                                 kwp = &keywords[i];
333                                 break;
334                         }
335         }
336 #endif
337         if (kwp) {
338                 yylval.str = (char*)kwp->kw;
339                 return kwp->token;
340         }
341         yylval.str = xstrdup(kw);
342         return is_type(kw) ? aKNOWNTYPE : aIDENTIFIER;
345 static void addcchar(char c)
347         if(cbufidx >= cbufalloc)
348         {
349                 cbufalloc += 1024;
350                 cbuffer = xrealloc(cbuffer, cbufalloc * sizeof(cbuffer[0]));
351                 if(cbufalloc > 65536)
352                         yywarning("Reallocating string buffer larger than 64kB");
353         }
354         cbuffer[cbufidx++] = c;
357 static char *get_buffered_cstring(void)
359         addcchar(0);
360         return xstrdup(cbuffer);
363 static void pop_import(void)
365         int ptr = import_stack_ptr-1;
367         fclose(yyin);
368         yy_delete_buffer( YY_CURRENT_BUFFER );
369         yy_switch_to_buffer( import_stack[ptr].state );
370         if (temp_name) {
371                 unlink(temp_name);
372                 free(temp_name);
373         }
374         temp_name = import_stack[ptr].temp_name;
375         free( input_name );
376         input_name = import_stack[ptr].input_name;
377         line_number = import_stack[ptr].line_number;
378         import_stack_ptr--;
381 struct imports {
382         char *name;
383         struct imports *next;
384 } *first_import;
386 int do_import(char *fname)
388         FILE *f;
389         char *hname, *path, *p;
390         struct imports *import;
391         int ptr = import_stack_ptr;
392         int ret;
394         if (!parse_only) {
395                 hname = dup_basename(fname, ".idl");
396                 p = hname + strlen(hname) - 2;
397                 if (p <= hname || strcmp( p, ".h" )) strcat(hname, ".h");
399                 fprintf(header, "#include <%s>\n", hname);
400                 free(hname);
401         }
403         import = first_import;
404         while (import && strcmp(import->name, fname))
405                 import = import->next;
406         if (import) return 0; /* already imported */
408         import = xmalloc(sizeof(struct imports));
409         import->name = xstrdup(fname);
410         import->next = first_import;
411         first_import = import;
413         if (!(path = wpp_find_include( fname, 1 )))
414             yyerror("Unable to open include file %s", fname);
416         import_stack[ptr].temp_name = temp_name;
417         import_stack[ptr].input_name = input_name;
418         import_stack[ptr].line_number = line_number;
419         import_stack_ptr++;
420         input_name = path;
421         line_number = 1;
423         ret = wpp_parse_temp( path, NULL, &temp_name );
424         if (ret) exit(1);
426         if((f = fopen(temp_name, "r")) == NULL)
427                 yyerror("Unable to open %s", temp_name);
429         import_stack[ptr].state = YY_CURRENT_BUFFER;
430         yy_switch_to_buffer(yy_create_buffer(f, YY_BUF_SIZE));
431         return 1;
434 void abort_import(void)
436         int ptr;
438         for (ptr=0; ptr<import_stack_ptr; ptr++)
439                 unlink(import_stack[ptr].temp_name);