msvcp: Fix some spec file discrepancies.
[wine.git] / tools / widl / parser.l
blob9dce03577c6afb0e64d1880536bbf97a90eac161
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         {"default",         tDEFAULT,        0},
280         {"dispinterface",   tDISPINTERFACE,  0},
281         {"double",          tDOUBLE,         0},
282         {"enum",            tENUM,           0},
283         {"error_status_t",  tERRORSTATUST,   0},
284         {"extern",          tEXTERN,         0},
285         {"float",           tFLOAT,          0},
286         {"handle_t",        tHANDLET,        0},
287         {"hyper",           tHYPER,          0},
288         {"import",          tIMPORT,         0},
289         {"importlib",       tIMPORTLIB,      0},
290         {"inline",          tINLINE,         0},
291         {"int",             tINT,            0},
292         {"interface",       tINTERFACE,      0},
293         {"library",         tLIBRARY,        0},
294         {"long",            tLONG,           0},
295         {"methods",         tMETHODS,        0},
296         {"module",          tMODULE,         0},
297         {"namespace",       tNAMESPACE,      1},
298         {"pascal",          tPASCAL,         0},
299         {"properties",      tPROPERTIES,     0},
300         {"register",        tREGISTER,       0},
301         {"short",           tSHORT,          0},
302         {"signed",          tSIGNED,         0},
303         {"sizeof",          tSIZEOF,         0},
304         {"small",           tSMALL,          0},
305         {"static",          tSTATIC,         0},
306         {"stdcall",         tSTDCALL,        0},
307         {"struct",          tSTRUCT,         0},
308         {"switch",          tSWITCH,         0},
309         {"typedef",         tTYPEDEF,        0},
310         {"union",           tUNION,          0},
311         {"unsigned",        tUNSIGNED,       0},
312         {"void",            tVOID,           0},
313         {"wchar_t",         tWCHAR,          0},
315 #define NKEYWORDS (sizeof(keywords)/sizeof(keywords[0]))
317 /* keywords only recognized in attribute lists
318  * This table MUST be alphabetically sorted on the kw field
319  */
320 static const struct keyword attr_keywords[] =
322         {"aggregatable",                tAGGREGATABLE,              0},
323         {"all_nodes",                   tALLNODES,                  0},
324         {"allocate",                    tALLOCATE,                  0},
325         {"annotation",                  tANNOTATION,                0},
326         {"apartment",                   tAPARTMENT,                 0},
327         {"appobject",                   tAPPOBJECT,                 0},
328         {"async",                       tASYNC,                     0},
329         {"async_uuid",                  tASYNCUUID,                 0},
330         {"auto_handle",                 tAUTOHANDLE,                0},
331         {"bindable",                    tBINDABLE,                  0},
332         {"both",                        tBOTH,                      0},
333         {"broadcast",                   tBROADCAST,                 0},
334         {"byte_count",                  tBYTECOUNT,                 0},
335         {"call_as",                     tCALLAS,                    0},
336         {"callback",                    tCALLBACK,                  0},
337         {"code",                        tCODE,                      0},
338         {"comm_status",                 tCOMMSTATUS,                0},
339         {"context_handle",              tCONTEXTHANDLE,             0},
340         {"context_handle_noserialize",  tCONTEXTHANDLENOSERIALIZE,  0},
341         {"context_handle_serialize",    tCONTEXTHANDLENOSERIALIZE,  0},
342         {"contract",                    tCONTRACT,                  1},
343         {"contractversion",             tCONTRACTVERSION,           1},
344         {"control",                     tCONTROL,                   0},
345         {"custom",                      tCUSTOM,                    0},
346         {"decode",                      tDECODE,                    0},
347         {"defaultbind",                 tDEFAULTBIND,               0},
348         {"defaultcollelem",             tDEFAULTCOLLELEM,           0},
349         {"defaultvalue",                tDEFAULTVALUE,              0},
350         {"defaultvtable",               tDEFAULTVTABLE,             0},
351         {"disable_consistency_check",   tDISABLECONSISTENCYCHECK,   0},
352         {"displaybind",                 tDISPLAYBIND,               0},
353         {"dllname",                     tDLLNAME,                   0},
354         {"dont_free",                   tDONTFREE,                  0},
355         {"dual",                        tDUAL,                      0},
356         {"enable_allocate",             tENABLEALLOCATE,            0},
357         {"encode",                      tENCODE,                    0},
358         {"endpoint",                    tENDPOINT,                  0},
359         {"entry",                       tENTRY,                     0},
360         {"explicit_handle",             tEXPLICITHANDLE,            0},
361         {"fault_status",                tFAULTSTATUS,               0},
362         {"force_allocate",              tFORCEALLOCATE,             0},
363         {"free",                        tFREE,                      0},
364         {"handle",                      tHANDLE,                    0},
365         {"helpcontext",                 tHELPCONTEXT,               0},
366         {"helpfile",                    tHELPFILE,                  0},
367         {"helpstring",                  tHELPSTRING,                0},
368         {"helpstringcontext",           tHELPSTRINGCONTEXT,         0},
369         {"helpstringdll",               tHELPSTRINGDLL,             0},
370         {"hidden",                      tHIDDEN,                    0},
371         {"id",                          tID,                        0},
372         {"idempotent",                  tIDEMPOTENT,                0},
373         {"ignore",                      tIGNORE,                    0},
374         {"iid_is",                      tIIDIS,                     0},
375         {"immediatebind",               tIMMEDIATEBIND,             0},
376         {"implicit_handle",             tIMPLICITHANDLE,            0},
377         {"in",                          tIN,                        0},
378         {"in_line",                     tIN_LINE,                   0},
379         {"input_sync",                  tINPUTSYNC,                 0},
380         {"lcid",                        tLCID,                      0},
381         {"length_is",                   tLENGTHIS,                  0},
382         {"licensed",                    tLICENSED,                  0},
383         {"local",                       tLOCAL,                     0},
384         {"maybe",                       tMAYBE,                     0},
385         {"message",                     tMESSAGE,                   0},
386         {"neutral",                     tNEUTRAL,                   0},
387         {"nocode",                      tNOCODE,                    0},
388         {"nonbrowsable",                tNONBROWSABLE,              0},
389         {"noncreatable",                tNONCREATABLE,              0},
390         {"nonextensible",               tNONEXTENSIBLE,             0},
391         {"notify",                      tNOTIFY,                    0},
392         {"notify_flag",                 tNOTIFYFLAG,                0},
393         {"object",                      tOBJECT,                    0},
394         {"odl",                         tODL,                       0},
395         {"oleautomation",               tOLEAUTOMATION,             0},
396         {"optimize",                    tOPTIMIZE,                  0},
397         {"optional",                    tOPTIONAL,                  0},
398         {"out",                         tOUT,                       0},
399         {"partial_ignore",              tPARTIALIGNORE,             0},
400         {"pointer_default",             tPOINTERDEFAULT,            0},
401         {"progid",                      tPROGID,                    0},
402         {"propget",                     tPROPGET,                   0},
403         {"propput",                     tPROPPUT,                   0},
404         {"propputref",                  tPROPPUTREF,                0},
405         {"proxy",                       tPROXY,                     0},
406         {"ptr",                         tPTR,                       0},
407         {"public",                      tPUBLIC,                    0},
408         {"range",                       tRANGE,                     0},
409         {"readonly",                    tREADONLY,                  0},
410         {"ref",                         tREF,                       0},
411         {"represent_as",                tREPRESENTAS,               0},
412         {"requestedit",                 tREQUESTEDIT,               0},
413         {"restricted",                  tRESTRICTED,                0},
414         {"retval",                      tRETVAL,                    0},
415         {"single",                      tSINGLE,                    0},
416         {"single_node",                 tSINGLENODE,                0},
417         {"size_is",                     tSIZEIS,                    0},
418         {"source",                      tSOURCE,                    0},
419         {"strict_context_handle",       tSTRICTCONTEXTHANDLE,       0},
420         {"string",                      tSTRING,                    0},
421         {"switch_is",                   tSWITCHIS,                  0},
422         {"switch_type",                 tSWITCHTYPE,                0},
423         {"threading",                   tTHREADING,                 0},
424         {"transmit_as",                 tTRANSMITAS,                0},
425         {"uidefault",                   tUIDEFAULT,                 0},
426         {"unique",                      tUNIQUE,                    0},
427         {"user_marshal",                tUSERMARSHAL,               0},
428         {"usesgetlasterror",            tUSESGETLASTERROR,          0},
429         {"uuid",                        tUUID,                      0},
430         {"v1_enum",                     tV1ENUM,                    0},
431         {"vararg",                      tVARARG,                    0},
432         {"version",                     tVERSION,                   0},
433         {"vi_progid",                   tVIPROGID,                  0},
434         {"wire_marshal",                tWIREMARSHAL,               0},
437 /* attributes TODO:
438     first_is
439     last_is
440     max_is
441     min_is
444 #define KWP(p) ((const struct keyword *)(p))
446 static int kw_cmp_func(const void *s1, const void *s2)
448         return strcmp(KWP(s1)->kw, KWP(s2)->kw);
451 static int kw_token(const char *kw)
453         struct keyword key, *kwp;
454         key.kw = kw;
455         kwp = bsearch(&key, keywords, NKEYWORDS, sizeof(keywords[0]), kw_cmp_func);
456         if (kwp && (!kwp->winrt_only || winrt_mode)) {
457                 parser_lval.str = xstrdup(kwp->kw);
458                 return kwp->token;
459         }
460         parser_lval.str = xstrdup(kw);
461         return is_type(kw) ? aKNOWNTYPE : is_namespace(kw) ? aNAMESPACE : aIDENTIFIER;
464 static int attr_token(const char *kw)
466         struct keyword key, *kwp;
467         key.kw = kw;
468         kwp = bsearch(&key, attr_keywords, sizeof(attr_keywords)/sizeof(attr_keywords[0]),
469                       sizeof(attr_keywords[0]), kw_cmp_func);
470         if (kwp && (!kwp->winrt_only || winrt_mode)) {
471             parser_lval.str = xstrdup(kwp->kw);
472             return kwp->token;
473         }
474         return kw_token(kw);
477 static void addcchar(char c)
479         if(cbufidx >= cbufalloc)
480         {
481                 cbufalloc += 1024;
482                 cbuffer = xrealloc(cbuffer, cbufalloc * sizeof(cbuffer[0]));
483                 if(cbufalloc > 65536)
484                         parser_warning("Reallocating string buffer larger than 64kB\n");
485         }
486         cbuffer[cbufidx++] = c;
489 static char *get_buffered_cstring(void)
491         addcchar(0);
492         return xstrdup(cbuffer);
495 void pop_import(void)
497         int ptr = import_stack_ptr-1;
499         fclose(yyin);
500         yy_delete_buffer( YY_CURRENT_BUFFER );
501         yy_switch_to_buffer( import_stack[ptr].state );
502         if (temp_name) {
503                 unlink(temp_name);
504                 free(temp_name);
505         }
506         temp_name = import_stack[ptr].temp_name;
507         input_name = import_stack[ptr].input_name;
508         line_number = import_stack[ptr].line_number;
509         import_stack_ptr--;
512 struct imports {
513     char *name;
514     struct imports *next;
515 } *first_import;
517 int do_import(char *fname)
519     FILE *f;
520     char *path, *name;
521     struct imports *import;
522     int ptr = import_stack_ptr;
523     int ret, fd;
525     import = first_import;
526     while (import && strcmp(import->name, fname))
527         import = import->next;
528     if (import) return 0; /* already imported */
530     import = xmalloc(sizeof(struct imports));
531     import->name = xstrdup(fname);
532     import->next = first_import;
533     first_import = import;
535     /* don't search for a file name with a path in the include directories,
536      * for compatibility with MIDL */
537     if (strchr( fname, '/' ) || strchr( fname, '\\' ))
538         path = xstrdup( fname );
539     else if (!(path = wpp_find_include( fname, input_name )))
540         error_loc("Unable to open include file %s\n", fname);
542     if (import_stack_ptr == MAX_IMPORT_DEPTH)
543         error_loc("Exceeded max import depth\n");
545     import_stack[ptr].temp_name = temp_name;
546     import_stack[ptr].input_name = input_name;
547     import_stack[ptr].line_number = line_number;
548     import_stack_ptr++;
549     input_name = path;
550     line_number = 1;
552     name = xstrdup( "widl.XXXXXX" );
553     if((fd = mkstemps( name, 0 )) == -1)
554         error("Could not generate a temp name from %s\n", name);
556     temp_name = name;
557     if (!(f = fdopen(fd, "wt")))
558         error("Could not open fd %s for writing\n", name);
560     ret = wpp_parse( path, f );
561     fclose( f );
562     if (ret) exit(1);
564     if((f = fopen(temp_name, "r")) == NULL)
565         error_loc("Unable to open %s\n", temp_name);
567     import_stack[ptr].state = YY_CURRENT_BUFFER;
568     yy_switch_to_buffer(yy_create_buffer(f, YY_BUF_SIZE));
569     return 1;
572 void abort_import(void)
574         int ptr;
576         for (ptr=0; ptr<import_stack_ptr; ptr++)
577                 unlink(import_stack[ptr].temp_name);
580 static void switch_to_acf(void)
582     int ptr = import_stack_ptr;
583     int ret, fd;
584     char *name;
585     FILE *f;
587     assert(import_stack_ptr == 0);
589     input_name = acf_name;
590     acf_name = NULL;
591     line_number = 1;
593     name = xstrdup( "widl.XXXXXX" );
594     if((fd = mkstemps( name, 0 )) == -1)
595         error("Could not generate a temp name from %s\n", name);
597     temp_name = name;
598     if (!(f = fdopen(fd, "wt")))
599         error("Could not open fd %s for writing\n", name);
601     ret = wpp_parse(input_name, f);
602     fclose(f);
603     if (ret) exit(1);
605     if((f = fopen(temp_name, "r")) == NULL)
606         error_loc("Unable to open %s\n", temp_name);
608     import_stack[ptr].state = YY_CURRENT_BUFFER;
609     yy_switch_to_buffer(yy_create_buffer(f, YY_BUF_SIZE));
612 static void warning_disable(int warning)
614     warning_t *warning_entry;
615     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
616         if(warning_entry->num == warning)
617             return;
618     warning_entry = xmalloc( sizeof(*warning_entry) );
619     warning_entry->num = warning;
620     list_add_tail(disabled_warnings, &warning_entry->entry);
623 static void warning_enable(int warning)
625     warning_t *warning_entry;
626     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
627         if(warning_entry->num == warning)
628         {
629             list_remove(&warning_entry->entry);
630             free(warning_entry);
631             break;
632         }
635 int do_warning(char *toggle, warning_list_t *wnum)
637     warning_t *warning, *next;
638     int ret = 1;
639     if(!disabled_warnings)
640     {
641         disabled_warnings = xmalloc( sizeof(*disabled_warnings) );
642         list_init( disabled_warnings );
643     }
645     if(!strcmp(toggle, "disable"))
646         LIST_FOR_EACH_ENTRY(warning, wnum, warning_t, entry)
647             warning_disable(warning->num);
648     else if(!strcmp(toggle, "enable"))
649         LIST_FOR_EACH_ENTRY(warning, wnum, warning_t, entry)
650             warning_enable(warning->num);
651     else
652         ret = 0;
654     LIST_FOR_EACH_ENTRY_SAFE(warning, next, wnum, warning_t, entry)
655         free(warning);
656     return ret;
659 int is_warning_enabled(int warning)
661     warning_t *warning_entry;
662     if(!disabled_warnings)
663         return 1;
664     LIST_FOR_EACH_ENTRY(warning_entry, disabled_warnings, warning_t, entry)
665         if(warning_entry->num == warning)
666             return 0;
667     return 1;