xinput1_3: Check for HID failures and print warnings.
[wine.git] / tools / widl / parser.l
blob4d3b9d683e822de0e443fa543523c2ac933da385
1 /* -*-C-*-
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
21 %option stack
22 %option noinput nounput noyy_top_state
23 %option 8bit never-interactive prefix="parser_"
25 nl      \r?\n
26 ws      [ \f\t\r]
27 cident  [a-zA-Z_][0-9a-zA-Z_]*
28 u_suffix        (u|U)
29 l_suffix        (l|L)
30 int     [0-9]+({l_suffix}?{u_suffix}?|{u_suffix}?{l_suffix}?)?
31 hexd    [0-9a-fA-F]
32 hex     0(x|X){hexd}+({l_suffix}?{u_suffix}?|{u_suffix}?{l_suffix}?)?
33 uuid    {hexd}{8}-{hexd}{4}-{hexd}{4}-{hexd}{4}-{hexd}{12}
34 double  [0-9]+\.[0-9]+([eE][+-]?[0-9]+)*
36 %x QUOTE
37 %x WSTRQUOTE
38 %x ATTR
39 %x PP_LINE
40 %x PP_PRAGMA
41 %x SQUOTE
45 #include "config.h"
46 #include "wine/port.h"
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <ctype.h>
52 #include <assert.h>
53 #include <errno.h>
54 #include <limits.h>
56 #ifdef HAVE_UNISTD_H
57 #include <unistd.h>
58 #else
59 #define YY_NO_UNISTD_H
60 #endif
62 #include "widl.h"
63 #include "utils.h"
64 #include "parser.h"
65 #include "wine/wpp.h"
67 #include "parser.tab.h"
69 static void addcchar(char c);
70 static char *get_buffered_cstring(void);
72 static char *cbuffer;
73 static int cbufidx;
74 static int cbufalloc = 0;
76 static int kw_token(const char *kw);
77 static int attr_token(const char *kw);
79 static void switch_to_acf(void);
81 static warning_list_t *disabled_warnings = NULL;
83 #define MAX_IMPORT_DEPTH 20
84 struct {
85   YY_BUFFER_STATE state;
86   char *input_name;
87   int   line_number;
88   char *temp_name;
89 } import_stack[MAX_IMPORT_DEPTH];
90 int import_stack_ptr = 0;
92 /* converts an integer in string form to an unsigned long and prints an error
93  * on overflow */
94 static unsigned int xstrtoul(const char *nptr, char **endptr, int base)
96     unsigned long val;
98     errno = 0;
99     val = strtoul(nptr, endptr, base);
100     if ((val == ULONG_MAX && errno == ERANGE) || ((unsigned int)val != val))
101         error_loc("integer constant %s is too large\n", nptr);
102     return val;
105 UUID *parse_uuid(const char *u)
107   UUID* uuid = xmalloc(sizeof(UUID));
108   char b[3];
109   /* it would be nice to use UuidFromStringA */
110   uuid->Data1 = strtoul(u, NULL, 16);
111   uuid->Data2 = strtoul(u+9, NULL, 16);
112   uuid->Data3 = strtoul(u+14, NULL, 16);
113   b[2] = 0;
114   memcpy(b, u+19, 2); uuid->Data4[0] = strtoul(b, NULL, 16);
115   memcpy(b, u+21, 2); uuid->Data4[1] = strtoul(b, NULL, 16);
116   memcpy(b, u+24, 2); uuid->Data4[2] = strtoul(b, NULL, 16);
117   memcpy(b, u+26, 2); uuid->Data4[3] = strtoul(b, NULL, 16);
118   memcpy(b, u+28, 2); uuid->Data4[4] = strtoul(b, NULL, 16);
119   memcpy(b, u+30, 2); uuid->Data4[5] = strtoul(b, NULL, 16);
120   memcpy(b, u+32, 2); uuid->Data4[6] = strtoul(b, NULL, 16);
121   memcpy(b, u+34, 2); uuid->Data4[7] = strtoul(b, NULL, 16);
122   return uuid;
128  **************************************************************************
129  * The flexer starts here
130  **************************************************************************
131  */
133 <INITIAL>^{ws}*\#{ws}*pragma{ws}+ yy_push_state(PP_PRAGMA);
134 <INITIAL,ATTR>^{ws}*\#{ws}*     yy_push_state(PP_LINE);
135 <PP_LINE>[^\n]*         {
136                             int lineno;
137                             char *cptr, *fname;
138                             yy_pop_state();
139                             lineno = (int)strtol(yytext, &cptr, 10);
140                             if(!lineno)
141                                 error_loc("Malformed '#...' line-directive; invalid linenumber\n");
142                             fname = strchr(cptr, '"');
143                             if(!fname)
144                                 error_loc("Malformed '#...' line-directive; missing filename\n");
145                             fname++;
146                             cptr = strchr(fname, '"');
147                             if(!cptr)
148                                 error_loc("Malformed '#...' line-directive; missing terminating \"\n");
149                             *cptr = '\0';
150                             line_number = lineno - 1;  /* We didn't read the newline */
151                             input_name = xstrdup(fname);
152                         }
153 <PP_PRAGMA>midl_echo[^\n]*  yyless(9); yy_pop_state(); return tCPPQUOTE;
154 <PP_PRAGMA>winrt[^\n]*  {
155                             if(import_stack_ptr) {
156                                 if(!winrt_mode)
157                                     error_loc("winrt IDL file imported in non-winrt mode\n");
158                             }else {
159                                 const char *ptr = yytext+5;
161                                 winrt_mode = TRUE;
163                                 while(isspace(*ptr))
164                                     ptr++;
165                                 if(!strncmp(ptr, "ns_prefix", 9) && (!*(ptr += 9) || isspace(*ptr)))
166                                     use_abi_namespace = TRUE;
167                             }
168                             yy_pop_state();
169                         }
170 <PP_PRAGMA>[^\n]*       parser_lval.str = xstrdup(yytext); yy_pop_state(); return aPRAGMA;
171 <INITIAL>^{ws}*midl_pragma{ws}+warning return tPRAGMA_WARNING;
172 <INITIAL,ATTR>\"        yy_push_state(QUOTE); cbufidx = 0;
173 <QUOTE>\"               {
174                                 yy_pop_state();
175                                 parser_lval.str = get_buffered_cstring();
176                                 return aSTRING;
177                         }
178 <INITIAL,ATTR>L\"       yy_push_state(WSTRQUOTE); cbufidx = 0;
179 <WSTRQUOTE>\"           {
180                                 yy_pop_state();
181                                 parser_lval.str = get_buffered_cstring();
182                                 return aWSTRING;
183                         }
184 <INITIAL,ATTR>\'        yy_push_state(SQUOTE); cbufidx = 0;
185 <SQUOTE>\'              {
186                                 yy_pop_state();
187                                 parser_lval.str = get_buffered_cstring();
188                                 return aSQSTRING;
189                         }
190 <QUOTE,WSTRQUOTE,SQUOTE>\\\\    |
191 <QUOTE,WSTRQUOTE>\\\"   addcchar(yytext[1]);
192 <SQUOTE>\\\'    addcchar(yytext[1]);
193 <QUOTE,WSTRQUOTE,SQUOTE>\\.     addcchar('\\'); addcchar(yytext[1]);
194 <QUOTE,WSTRQUOTE,SQUOTE>.       addcchar(yytext[0]);
195 <INITIAL,ATTR>\[        yy_push_state(ATTR); return '[';
196 <ATTR>\]                yy_pop_state(); return ']';
197 <ATTR>{cident}          return attr_token(yytext);
198 <ATTR>{uuid}                    {
199                                 parser_lval.uuid = parse_uuid(yytext);
200                                 return aUUID;
201                         }
202 <INITIAL,ATTR>{hex}     {
203                                 parser_lval.num = xstrtoul(yytext, NULL, 0);
204                                 return aHEXNUM;
205                         }
206 <INITIAL,ATTR>{int}     {
207                                 parser_lval.num = xstrtoul(yytext, NULL, 0);
208                                 return aNUM;
209                         }
210 <INITIAL>{double}       {
211                                 parser_lval.dbl = strtod(yytext, NULL);
212                                 return aDOUBLE;
213                         }
214 SAFEARRAY{ws}*/\(       return tSAFEARRAY;
215 {cident}                return kw_token(yytext);
216 <INITIAL,ATTR>\n        line_number++;
217 <INITIAL,ATTR>{ws}
218 <INITIAL,ATTR>\<\<      return SHL;
219 <INITIAL,ATTR>\>\>      return SHR;
220 <INITIAL,ATTR>\-\>      return MEMBERPTR;
221 <INITIAL,ATTR>==        return EQUALITY;
222 <INITIAL,ATTR>!=        return INEQUALITY;
223 <INITIAL,ATTR>\>=       return GREATEREQUAL;
224 <INITIAL,ATTR>\<=       return LESSEQUAL;
225 <INITIAL,ATTR>\|\|      return LOGICALOR;
226 <INITIAL,ATTR>&&        return LOGICALAND;
227 <INITIAL,ATTR>\.\.\.    return ELLIPSIS;
228 <INITIAL,ATTR>.         return yytext[0];
229 <<EOF>>                 {
230                             if (import_stack_ptr)
231                                 return aEOF;
232                             if (acf_name)
233                             {
234                                 switch_to_acf();
235                                 return aACF;
236                             }
237                             yyterminate();
238                         }
241 #ifndef parser_wrap
242 int parser_wrap(void)
244         return 1;
246 #endif
248 struct keyword {
249         const char *kw;
250         int token;
251         int winrt_only : 1;
254 /* This table MUST be alphabetically sorted on the kw field */
255 static const struct keyword keywords[] = {
256         {"FALSE",           tFALSE,          0},
257         {"NULL",            tNULL,           0},
258         {"TRUE",            tTRUE,           0},
259         {"__cdecl",         tCDECL,          0},
260         {"__fastcall",      tFASTCALL,       0},
261         {"__int32",         tINT32,          0},
262         {"__int3264",       tINT3264,        0},
263         {"__int64",         tINT64,          0},
264         {"__pascal",        tPASCAL,         0},
265         {"__stdcall",       tSTDCALL,        0},
266         {"_cdecl",          tCDECL,          0},
267         {"_fastcall",       tFASTCALL,       0},
268         {"_pascal",         tPASCAL,         0},
269         {"_stdcall",        tSTDCALL,        0},
270         {"apicontract",     tAPICONTRACT,    1},
271         {"boolean",         tBOOLEAN,        0},
272         {"byte",            tBYTE,           0},
273         {"case",            tCASE,           0},
274         {"cdecl",           tCDECL,          0},
275         {"char",            tCHAR,           0},
276         {"coclass",         tCOCLASS,        0},
277         {"const",           tCONST,          0},
278         {"cpp_quote",       tCPPQUOTE,       0},
279         {"declare",         tDECLARE,        1},
280         {"default",         tDEFAULT,        0},
281         {"delegate",        tDELEGATE,       1},
282         {"dispinterface",   tDISPINTERFACE,  0},
283         {"double",          tDOUBLE,         0},
284         {"enum",            tENUM,           0},
285         {"error_status_t",  tERRORSTATUST,   0},
286         {"extern",          tEXTERN,         0},
287         {"float",           tFLOAT,          0},
288         {"handle_t",        tHANDLET,        0},
289         {"hyper",           tHYPER,          0},
290         {"import",          tIMPORT,         0},
291         {"importlib",       tIMPORTLIB,      0},
292         {"inline",          tINLINE,         0},
293         {"int",             tINT,            0},
294         {"interface",       tINTERFACE,      0},
295         {"library",         tLIBRARY,        0},
296         {"long",            tLONG,           0},
297         {"methods",         tMETHODS,        0},
298         {"module",          tMODULE,         0},
299         {"namespace",       tNAMESPACE,      1},
300         {"pascal",          tPASCAL,         0},
301         {"properties",      tPROPERTIES,     0},
302         {"register",        tREGISTER,       0},
303         {"requires",        tREQUIRES,       1},
304         {"runtimeclass",    tRUNTIMECLASS,   1},
305         {"short",           tSHORT,          0},
306         {"signed",          tSIGNED,         0},
307         {"sizeof",          tSIZEOF,         0},
308         {"small",           tSMALL,          0},
309         {"static",          tSTATIC,         0},
310         {"stdcall",         tSTDCALL,        0},
311         {"struct",          tSTRUCT,         0},
312         {"switch",          tSWITCH,         0},
313         {"typedef",         tTYPEDEF,        0},
314         {"union",           tUNION,          0},
315         {"unsigned",        tUNSIGNED,       0},
316         {"void",            tVOID,           0},
317         {"wchar_t",         tWCHAR,          0},
319 #define NKEYWORDS (sizeof(keywords)/sizeof(keywords[0]))
321 /* keywords only recognized in attribute lists
322  * This table MUST be alphabetically sorted on the kw field
323  */
324 static const struct keyword attr_keywords[] =
326         {"activatable",                 tACTIVATABLE,               1},
327         {"aggregatable",                tAGGREGATABLE,              0},
328         {"agile",                       tAGILE,                     1},
329         {"all_nodes",                   tALLNODES,                  0},
330         {"allocate",                    tALLOCATE,                  0},
331         {"annotation",                  tANNOTATION,                0},
332         {"apartment",                   tAPARTMENT,                 0},
333         {"appobject",                   tAPPOBJECT,                 0},
334         {"async",                       tASYNC,                     0},
335         {"async_uuid",                  tASYNCUUID,                 0},
336         {"auto_handle",                 tAUTOHANDLE,                0},
337         {"bindable",                    tBINDABLE,                  0},
338         {"both",                        tBOTH,                      0},
339         {"broadcast",                   tBROADCAST,                 0},
340         {"byte_count",                  tBYTECOUNT,                 0},
341         {"call_as",                     tCALLAS,                    0},
342         {"callback",                    tCALLBACK,                  0},
343         {"code",                        tCODE,                      0},
344         {"comm_status",                 tCOMMSTATUS,                0},
345         {"context_handle",              tCONTEXTHANDLE,             0},
346         {"context_handle_noserialize",  tCONTEXTHANDLENOSERIALIZE,  0},
347         {"context_handle_serialize",    tCONTEXTHANDLENOSERIALIZE,  0},
348         {"contract",                    tCONTRACT,                  1},
349         {"contractversion",             tCONTRACTVERSION,           1},
350         {"control",                     tCONTROL,                   0},
351         {"custom",                      tCUSTOM,                    0},
352         {"decode",                      tDECODE,                    0},
353         {"defaultbind",                 tDEFAULTBIND,               0},
354         {"defaultcollelem",             tDEFAULTCOLLELEM,           0},
355         {"defaultvalue",                tDEFAULTVALUE,              0},
356         {"defaultvtable",               tDEFAULTVTABLE,             0},
357         {"disable_consistency_check",   tDISABLECONSISTENCYCHECK,   0},
358         {"displaybind",                 tDISPLAYBIND,               0},
359         {"dllname",                     tDLLNAME,                   0},
360         {"dont_free",                   tDONTFREE,                  0},
361         {"dual",                        tDUAL,                      0},
362         {"enable_allocate",             tENABLEALLOCATE,            0},
363         {"encode",                      tENCODE,                    0},
364         {"endpoint",                    tENDPOINT,                  0},
365         {"entry",                       tENTRY,                     0},
366         {"eventadd",                    tEVENTADD,                  1},
367         {"eventremove",                 tEVENTREMOVE,               1},
368         {"exclusiveto",                 tEXCLUSIVETO,               1},
369         {"explicit_handle",             tEXPLICITHANDLE,            0},
370         {"fault_status",                tFAULTSTATUS,               0},
371         {"flags",                       tFLAGS,                     1},
372         {"force_allocate",              tFORCEALLOCATE,             0},
373         {"free",                        tFREE,                      0},
374         {"handle",                      tHANDLE,                    0},
375         {"helpcontext",                 tHELPCONTEXT,               0},
376         {"helpfile",                    tHELPFILE,                  0},
377         {"helpstring",                  tHELPSTRING,                0},
378         {"helpstringcontext",           tHELPSTRINGCONTEXT,         0},
379         {"helpstringdll",               tHELPSTRINGDLL,             0},
380         {"hidden",                      tHIDDEN,                    0},
381         {"id",                          tID,                        0},
382         {"idempotent",                  tIDEMPOTENT,                0},
383         {"ignore",                      tIGNORE,                    0},
384         {"iid_is",                      tIIDIS,                     0},
385         {"immediatebind",               tIMMEDIATEBIND,             0},
386         {"implicit_handle",             tIMPLICITHANDLE,            0},
387         {"in",                          tIN,                        0},
388         {"in_line",                     tIN_LINE,                   0},
389         {"input_sync",                  tINPUTSYNC,                 0},
390         {"lcid",                        tLCID,                      0},
391         {"length_is",                   tLENGTHIS,                  0},
392         {"licensed",                    tLICENSED,                  0},
393         {"local",                       tLOCAL,                     0},
394         {"marshaling_behavior",         tMARSHALINGBEHAVIOR,        1},
395         {"maybe",                       tMAYBE,                     0},
396         {"message",                     tMESSAGE,                   0},
397         {"mta" ,                        tMTA,                       0},
398         {"neutral",                     tNEUTRAL,                   0},
399         {"nocode",                      tNOCODE,                    0},
400         {"nonbrowsable",                tNONBROWSABLE,              0},
401         {"noncreatable",                tNONCREATABLE,              0},
402         {"none",                        tNONE,                      1},
403         {"nonextensible",               tNONEXTENSIBLE,             0},
404         {"notify",                      tNOTIFY,                    0},
405         {"notify_flag",                 tNOTIFYFLAG,                0},
406         {"object",                      tOBJECT,                    0},
407         {"odl",                         tODL,                       0},
408         {"oleautomation",               tOLEAUTOMATION,             0},
409         {"optimize",                    tOPTIMIZE,                  0},
410         {"optional",                    tOPTIONAL,                  0},
411         {"out",                         tOUT,                       0},
412         {"partial_ignore",              tPARTIALIGNORE,             0},
413         {"pointer_default",             tPOINTERDEFAULT,            0},
414         {"progid",                      tPROGID,                    0},
415         {"propget",                     tPROPGET,                   0},
416         {"propput",                     tPROPPUT,                   0},
417         {"propputref",                  tPROPPUTREF,                0},
418         {"proxy",                       tPROXY,                     0},
419         {"ptr",                         tPTR,                       0},
420         {"public",                      tPUBLIC,                    0},
421         {"range",                       tRANGE,                     0},
422         {"readonly",                    tREADONLY,                  0},
423         {"ref",                         tREF,                       0},
424         {"represent_as",                tREPRESENTAS,               0},
425         {"requestedit",                 tREQUESTEDIT,               0},
426         {"restricted",                  tRESTRICTED,                0},
427         {"retval",                      tRETVAL,                    0},
428         {"single",                      tSINGLE,                    0},
429         {"single_node",                 tSINGLENODE,                0},
430         {"size_is",                     tSIZEIS,                    0},
431         {"source",                      tSOURCE,                    0},
432         {"standard",                    tSTANDARD,                  1},
433         {"static",                      tSTATIC,                    1},
434         {"strict_context_handle",       tSTRICTCONTEXTHANDLE,       0},
435         {"string",                      tSTRING,                    0},
436         {"switch_is",                   tSWITCHIS,                  0},
437         {"switch_type",                 tSWITCHTYPE,                0},
438         {"threading",                   tTHREADING,                 0},
439         {"transmit_as",                 tTRANSMITAS,                0},
440         {"uidefault",                   tUIDEFAULT,                 0},
441         {"unique",                      tUNIQUE,                    0},
442         {"user_marshal",                tUSERMARSHAL,               0},
443         {"usesgetlasterror",            tUSESGETLASTERROR,          0},
444         {"uuid",                        tUUID,                      0},
445         {"v1_enum",                     tV1ENUM,                    0},
446         {"vararg",                      tVARARG,                    0},
447         {"version",                     tVERSION,                   0},
448         {"vi_progid",                   tVIPROGID,                  0},
449         {"wire_marshal",                tWIREMARSHAL,               0},
452 /* attributes TODO:
453     first_is
454     last_is
455     max_is
456     min_is
459 #define KWP(p) ((const struct keyword *)(p))
461 static int kw_cmp_func(const void *s1, const void *s2)
463         return strcmp(KWP(s1)->kw, KWP(s2)->kw);
466 static int kw_token(const char *kw)
468         struct keyword key, *kwp;
469         key.kw = kw;
470         kwp = bsearch(&key, keywords, NKEYWORDS, sizeof(keywords[0]), kw_cmp_func);
471         if (kwp && (!kwp->winrt_only || winrt_mode)) {
472                 parser_lval.str = xstrdup(kwp->kw);
473                 return kwp->token;
474         }
475         parser_lval.str = xstrdup(kw);
476         return is_type(kw) ? aKNOWNTYPE : aIDENTIFIER;
479 static int attr_token(const char *kw)
481         struct keyword key, *kwp;
482         key.kw = kw;
483         kwp = bsearch(&key, attr_keywords, sizeof(attr_keywords)/sizeof(attr_keywords[0]),
484                       sizeof(attr_keywords[0]), kw_cmp_func);
485         if (kwp && (!kwp->winrt_only || winrt_mode)) {
486             parser_lval.str = xstrdup(kwp->kw);
487             return kwp->token;
488         }
489         return kw_token(kw);
492 static void addcchar(char c)
494         if(cbufidx >= cbufalloc)
495         {
496                 cbufalloc += 1024;
497                 cbuffer = xrealloc(cbuffer, cbufalloc * sizeof(cbuffer[0]));
498                 if(cbufalloc > 65536)
499                         parser_warning("Reallocating string buffer larger than 64kB\n");
500         }
501         cbuffer[cbufidx++] = c;
504 static char *get_buffered_cstring(void)
506         addcchar(0);
507         return xstrdup(cbuffer);
510 void pop_import(void)
512         int ptr = import_stack_ptr-1;
514         fclose(yyin);
515         yy_delete_buffer( YY_CURRENT_BUFFER );
516         yy_switch_to_buffer( import_stack[ptr].state );
517         if (temp_name) {
518                 unlink(temp_name);
519                 free(temp_name);
520         }
521         temp_name = import_stack[ptr].temp_name;
522         input_name = import_stack[ptr].input_name;
523         line_number = import_stack[ptr].line_number;
524         import_stack_ptr--;
527 struct imports {
528     char *name;
529     struct imports *next;
530 } *first_import;
532 int do_import(char *fname)
534     FILE *f;
535     char *path, *name;
536     struct imports *import;
537     int ptr = import_stack_ptr;
538     int ret, fd;
540     import = first_import;
541     while (import && strcmp(import->name, fname))
542         import = import->next;
543     if (import) return 0; /* already imported */
545     import = xmalloc(sizeof(struct imports));
546     import->name = xstrdup(fname);
547     import->next = first_import;
548     first_import = import;
550     /* don't search for a file name with a path in the include directories,
551      * for compatibility with MIDL */
552     if (strchr( fname, '/' ) || strchr( fname, '\\' ))
553         path = xstrdup( fname );
554     else if (!(path = wpp_find_include( fname, input_name )))
555         error_loc("Unable to open include file %s\n", fname);
557     if (import_stack_ptr == MAX_IMPORT_DEPTH)
558         error_loc("Exceeded max import depth\n");
560     import_stack[ptr].temp_name = temp_name;
561     import_stack[ptr].input_name = input_name;
562     import_stack[ptr].line_number = line_number;
563     import_stack_ptr++;
564     input_name = path;
565     line_number = 1;
567     name = xstrdup( "widl.XXXXXX" );
568     if((fd = mkstemps( name, 0 )) == -1)
569         error("Could not generate a temp name from %s\n", name);
571     temp_name = name;
572     if (!(f = fdopen(fd, "wt")))
573         error("Could not open fd %s for writing\n", name);
575     ret = wpp_parse( path, f );
576     fclose( f );
577     if (ret) exit(1);
579     if((f = fopen(temp_name, "r")) == NULL)
580         error_loc("Unable to open %s\n", temp_name);
582     import_stack[ptr].state = YY_CURRENT_BUFFER;
583     yy_switch_to_buffer(yy_create_buffer(f, YY_BUF_SIZE));
584     return 1;
587 void abort_import(void)
589         int ptr;
591         for (ptr=0; ptr<import_stack_ptr; ptr++)
592                 unlink(import_stack[ptr].temp_name);
595 static void switch_to_acf(void)
597     int ptr = import_stack_ptr;
598     int ret, fd;
599     char *name;
600     FILE *f;
602     assert(import_stack_ptr == 0);
604     input_name = acf_name;
605     acf_name = NULL;
606     line_number = 1;
608     name = xstrdup( "widl.XXXXXX" );
609     if((fd = mkstemps( name, 0 )) == -1)
610         error("Could not generate a temp name from %s\n", name);
612     temp_name = name;
613     if (!(f = fdopen(fd, "wt")))
614         error("Could not open fd %s for writing\n", name);
616     ret = wpp_parse(input_name, f);
617     fclose(f);
618     if (ret) exit(1);
620     if((f = fopen(temp_name, "r")) == NULL)
621         error_loc("Unable to open %s\n", temp_name);
623     import_stack[ptr].state = YY_CURRENT_BUFFER;
624     yy_switch_to_buffer(yy_create_buffer(f, YY_BUF_SIZE));
627 static void warning_disable(int warning)
629     warning_t *warning_entry;
630     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
631         if(warning_entry->num == warning)
632             return;
633     warning_entry = xmalloc( sizeof(*warning_entry) );
634     warning_entry->num = warning;
635     list_add_tail(disabled_warnings, &warning_entry->entry);
638 static void warning_enable(int warning)
640     warning_t *warning_entry;
641     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
642         if(warning_entry->num == warning)
643         {
644             list_remove(&warning_entry->entry);
645             free(warning_entry);
646             break;
647         }
650 int do_warning(const char *toggle, warning_list_t *wnum)
652     warning_t *warning, *next;
653     int ret = 1;
654     if(!disabled_warnings)
655     {
656         disabled_warnings = xmalloc( sizeof(*disabled_warnings) );
657         list_init( disabled_warnings );
658     }
660     if(!strcmp(toggle, "disable"))
661         LIST_FOR_EACH_ENTRY(warning, wnum, warning_t, entry)
662             warning_disable(warning->num);
663     else if(!strcmp(toggle, "enable") || !strcmp(toggle, "default"))
664         LIST_FOR_EACH_ENTRY(warning, wnum, warning_t, entry)
665             warning_enable(warning->num);
666     else
667         ret = 0;
669     LIST_FOR_EACH_ENTRY_SAFE(warning, next, wnum, warning_t, entry)
670         free(warning);
671     return ret;
674 int is_warning_enabled(int warning)
676     warning_t *warning_entry;
677     if(!disabled_warnings)
678         return 1;
679     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
680         if(warning_entry->num == warning)
681             return 0;
682     return 1;