4 * Copyright 2002 Ove Kaaven
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.
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.
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
22 %option nounput noyy_top_state
23 %option 8bit never-interactive
27 cident [a-zA-Z_][0-9a-zA-Z_]*
31 uuid {hexd}{8}-{hexd}{4}-{hexd}{4}-{hexd}{4}-{hexd}{12}
54 #include "parser.tab.h"
56 extern char *temp_name;
58 static void addcchar(char c);
59 static char *get_buffered_cstring(void);
63 static int cbufalloc = 0;
65 static int kw_token(const char *kw);
67 #define MAX_IMPORT_DEPTH 10
69 YY_BUFFER_STATE state;
73 } import_stack[MAX_IMPORT_DEPTH];
74 int import_stack_ptr = 0;
76 static void pop_import(void);
78 static UUID* parse_uuid(const char*u)
80 UUID* uuid = xmalloc(sizeof(UUID));
82 /* it would be nice to use UuidFromStringA */
83 uuid->Data1 = strtoul(u, NULL, 16);
84 uuid->Data2 = strtoul(u+9, NULL, 16);
85 uuid->Data3 = strtoul(u+14, NULL, 16);
87 memcpy(b, u+19, 2); uuid->Data4[0] = strtoul(b, NULL, 16);
88 memcpy(b, u+21, 2); uuid->Data4[1] = strtoul(b, NULL, 16);
89 memcpy(b, u+24, 2); uuid->Data4[2] = strtoul(b, NULL, 16);
90 memcpy(b, u+26, 2); uuid->Data4[3] = strtoul(b, NULL, 16);
91 memcpy(b, u+28, 2); uuid->Data4[4] = strtoul(b, NULL, 16);
92 memcpy(b, u+30, 2); uuid->Data4[5] = strtoul(b, NULL, 16);
93 memcpy(b, u+32, 2); uuid->Data4[6] = strtoul(b, NULL, 16);
94 memcpy(b, u+34, 2); uuid->Data4[7] = strtoul(b, NULL, 16);
101 **************************************************************************
102 * The flexer starts here
103 **************************************************************************
106 <INITIAL>^{ws}*\#{ws}* yy_push_state(pp_line);
111 lineno = (int)strtol(yytext, &cptr, 10);
113 yyerror("Malformed '#...' line-directive; invalid linenumber");
114 fname = strchr(cptr, '"');
116 yyerror("Malformed '#...' line-directive; missing filename");
118 cptr = strchr(fname, '"');
120 yyerror("Malformed '#...' line-directive; missing terminating \"");
122 line_number = lineno - 1; /* We didn't read the newline */
124 input_name = xstrdup(fname);
126 \" yy_push_state(QUOTE); cbufidx = 0;
129 yylval.str = get_buffered_cstring();
133 <QUOTE>\\\" addcchar(yytext[1]);
134 <QUOTE>\\. addcchar('\\'); addcchar(yytext[1]);
135 <QUOTE>. addcchar(yytext[0]);
137 yylval.uuid = parse_uuid(yytext);
141 yylval.num = strtoul(yytext, NULL, 0);
145 yylval.num = strtoul(yytext, NULL, 0);
148 {cident} return kw_token(yytext);
155 if (import_stack_ptr) {
170 static struct keyword {
177 {"__stdcall", tSTDCALL},
178 {"_stdcall", tSTDCALL},
179 {"aggregatable", tAGGREGATABLE},
180 {"allocate", tALLOCATE},
181 {"appobject", tAPPOBJECT},
183 {"async_uuid", tASYNCUUID},
184 {"auto_handle", tAUTOHANDLE},
185 {"bindable", tBINDABLE},
186 {"boolean", tBOOLEAN},
187 {"broadcast", tBROADCAST},
189 {"byte_count", tBYTECOUNT},
190 {"call_as", tCALLAS},
191 {"callback", tCALLBACK},
194 {"coclass", tCOCLASS},
196 {"comm_status", tCOMMSTATUS},
198 {"context_handle", tCONTEXTHANDLE},
199 {"context_handle_noserialize", tCONTEXTHANDLENOSERIALIZE},
200 {"context_handle_serialize", tCONTEXTHANDLENOSERIALIZE},
201 {"control", tCONTROL},
202 {"cpp_quote", tCPPQUOTE},
204 {"default", tDEFAULT},
205 {"defaultcollelem", tDEFAULTCOLLELEM},
206 {"defaultvalue", tDEFAULTVALUE},
207 {"defaultvtable", tDEFAULTVTABLE},
208 {"dispinterface", tDISPINTERFACE},
209 {"displaybind", tDISPLAYBIND},
210 {"dllname", tDLLNAME},
213 {"endpoint", tENDPOINT},
216 {"error_status_t", tERRORSTATUST},
217 {"explicit_handle", tEXPLICITHANDLE},
221 {"handle_t", tHANDLET},
222 {"helpcontext", tHELPCONTEXT},
223 {"helpfile", tHELPFILE},
224 {"helpstring", tHELPSTRING},
225 {"helpstringcontext", tHELPSTRINGCONTEXT},
226 {"helpstringdll", tHELPSTRINGDLL},
230 {"idempotent", tIDEMPOTENT},
233 {"immediatebind", tIMMEDIATEBIND},
234 {"implicit_handle", tIMPLICITHANDLE},
236 {"importlib", tIMPORTLIB},
238 {"in_line", tINLINE},
239 {"input_sync", tINPUTSYNC},
242 {"interface", tINTERFACE},
244 {"length_is", tLENGTHIS},
245 {"library", tLIBRARY},
250 {"methods", tMETHODS},
254 {"nonbrowsable", tNONBROWSABLE},
255 {"noncreatable", tNONCREATABLE},
256 {"nonextensible", tNONEXTENSIBLE},
259 {"oleautomation", tOLEAUTOMATION},
261 {"optional", tOPTIONAL},
264 {"pointer_default", tPOINTERDEFAULT},
266 {"properties", tPROPERTIES},
267 {"propget", tPROPGET},
268 {"propput", tPROPPUT},
269 {"propputref", tPROPPUTREF},
275 {"readonly", tREADONLY},
277 {"requestedit", tREQUESTEDIT},
278 {"restricted", tRESTRICTED},
284 {"size_is", tSIZEIS},
293 {"switch_is", tSWITCHIS},
294 {"switch_type", tSWITCHTYPE},
296 {"transmit_as", tTRANSMITAS},
297 {"typedef", tTYPEDEF},
301 {"unsigned", tUNSIGNED},
304 {"v1_enum", tV1ENUM},
307 {"version", tVERSION},
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);
321 static int kw_token(const char *kw)
323 struct keyword key, *kwp;
326 kwp = bsearch(&key, keywords, NKEYWORDS, sizeof(keywords[0]), kw_cmp_func);
330 for (kwp=NULL, i=0; i < NKEYWORDS; i++)
331 if (!kw_cmp_func(&key, &keywords[i])) {
338 yylval.str = (char*)kwp->kw;
341 yylval.str = xstrdup(kw);
342 return is_type(kw) ? aKNOWNTYPE : aIDENTIFIER;
345 static void addcchar(char c)
347 if(cbufidx >= cbufalloc)
350 cbuffer = xrealloc(cbuffer, cbufalloc * sizeof(cbuffer[0]));
351 if(cbufalloc > 65536)
352 yywarning("Reallocating string buffer larger than 64kB");
354 cbuffer[cbufidx++] = c;
357 static char *get_buffered_cstring(void)
360 return xstrdup(cbuffer);
363 static void pop_import(void)
365 int ptr = import_stack_ptr-1;
368 yy_delete_buffer( YY_CURRENT_BUFFER );
369 yy_switch_to_buffer( import_stack[ptr].state );
374 temp_name = import_stack[ptr].temp_name;
376 input_name = import_stack[ptr].input_name;
377 line_number = import_stack[ptr].line_number;
383 struct imports *next;
386 int do_import(char *fname)
389 char *hname, *path, *p;
390 struct imports *import;
391 int ptr = import_stack_ptr;
394 if (!parse_only && do_header) {
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);
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, input_name )))
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;
423 ret = wpp_parse_temp( path, NULL, &temp_name );
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));
434 void abort_import(void)
438 for (ptr=0; ptr<import_stack_ptr; ptr++)
439 unlink(import_stack[ptr].temp_name);