1 /* mclex.c -- lexer for Windows mc files parser.
3 Free Software Foundation, Inc.
5 Written by Kai Tietz, Onevision.
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 /* This is a lexer used by the Windows rc file parser.
25 It basically just recognized a bunch of keywords. */
30 #include "libiberty.h"
31 #include "safe-ctype.h"
37 /* Exported globals. */
38 bfd_boolean mclex_want_nl
= FALSE
;
39 bfd_boolean mclex_want_line
= FALSE
;
40 bfd_boolean mclex_want_filename
= FALSE
;
43 static unichar
*input_stream
= NULL
;
44 static unichar
*input_stream_pos
= NULL
;
45 static int input_line
= 1;
46 static const char *input_filename
= NULL
;
49 mc_set_content (const unichar
*src
)
53 input_stream
= input_stream_pos
= unichar_dup (src
);
57 mc_set_inputfile (const char *name
)
59 if (! name
|| *name
== 0)
63 const char *s1
= strrchr (name
, '/');
64 const char *s2
= strrchr (name
, '\\');
68 if (s1
&& s2
&& s1
< s2
)
80 show_msg (const char *kind
, const char *msg
, va_list argp
)
82 fprintf (stderr
, "In %s at line %d: %s: ", input_filename
, input_line
, kind
);
83 vfprintf (stderr
, msg
, argp
);
84 fprintf (stderr
, ".\n");
88 mc_warn (const char *s
, ...)
92 show_msg ("warning", s
, argp
);
97 mc_fatal (const char *s
, ...)
101 show_msg ("fatal", s
, argp
);
108 yyerror (const char *s
, ...)
112 show_msg ("parser", s
, argp
);
118 get_diff (unichar
*end
, unichar
*start
)
124 ret
= unichar_dup (start
);
130 parse_digit (unichar ch
)
132 rc_uint_type base
= 10, v
= 0, c
;
137 switch (input_stream_pos
[0])
139 case 'x': case 'X': base
= 16; input_stream_pos
++; break;
140 case 'o': case 'O': base
= 8; input_stream_pos
++; break;
141 case 'b': case 'B': base
= 2; input_stream_pos
++; break;
145 v
= (rc_uint_type
) (ch
- '0');
147 while ((ch
= input_stream_pos
[0]) != 0)
149 if (ch
>= 'A' && ch
<= 'F')
150 c
= (rc_uint_type
) (ch
- 'A') + 10;
151 else if (ch
>= 'a' && ch
<= 'f')
152 c
= (rc_uint_type
) (ch
- 'a') + 10;
153 else if (ch
>= '0' && ch
<= '9')
154 c
= (rc_uint_type
) (ch
- '0');
161 if (input_stream_pos
[0] == 'U' || input_stream_pos
[0] == 'u')
163 if (input_stream_pos
[0] == 'L' || input_stream_pos
[0] == 'l')
165 if (input_stream_pos
[0] == 'L' || input_stream_pos
[0] == 'l')
170 static mc_keyword
*keyword_top
= NULL
;
173 enum_facility (int e
)
175 mc_keyword
*h
= keyword_top
;
179 while (h
&& strcmp (h
->group_name
, "facility") != 0)
191 enum_severity (int e
)
193 mc_keyword
*h
= keyword_top
;
197 while (h
&& strcmp (h
->group_name
, "severity") != 0)
209 mc_add_keyword_ascii (const char *sz
, int rid
, const char *grp
, rc_uint_type nv
, const char *sv
)
211 unichar
*usz
, *usv
= NULL
;
212 rc_uint_type usz_len
;
214 unicode_from_codepage (&usz_len
, &usz
, sz
, CP_ACP
);
216 unicode_from_codepage (&usz_len
, &usv
, sv
, CP_ACP
);
217 mc_add_keyword (usz
, rid
, grp
, nv
, usv
);
221 mc_add_keyword (unichar
*usz
, int rid
, const char *grp
, rc_uint_type nv
, unichar
*sv
)
223 mc_keyword
*p
, *c
, *n
;
224 size_t len
= unichar_len (usz
);
234 int e
= memcmp (usz
, c
->usz
, len
* sizeof (unichar
));
240 if (! strcmp (grp
, "keyword") || strcmp (c
->group_name
, grp
) != 0)
241 fatal (_("Duplicate symbol entered into keyword list."));
244 c
->sval
= (!sv
? NULL
: unichar_dup (sv
));
245 if (! strcmp (grp
, "language"))
247 const wind_language_t
*lag
= wind_find_language_by_id ((unsigned) nv
);
250 fatal ("Language ident 0x%lx is not resolvable.\n", (long) nv
);
251 memcpy (&c
->lang_info
, lag
, sizeof (*lag
));
258 n
= xmalloc (sizeof (mc_keyword
));
265 n
->sval
= (!sv
? NULL
: unichar_dup (sv
));
266 if (! strcmp (grp
, "language"))
268 const wind_language_t
*lag
= wind_find_language_by_id ((unsigned) nv
);
270 fatal ("Language ident 0x%lx is not resolvable.\n", (long) nv
);
271 memcpy (&n
->lang_info
, lag
, sizeof (*lag
));
280 mc_token (const unichar
*t
, size_t len
)
282 static int was_init
= 0;
288 mc_add_keyword_ascii ("OutputBase", MCOUTPUTBASE
, "keyword", 0, NULL
);
289 mc_add_keyword_ascii ("MessageIdTypedef", MCMESSAGEIDTYPEDEF
, "keyword", 0, NULL
);
290 mc_add_keyword_ascii ("SeverityNames", MCSEVERITYNAMES
, "keyword", 0, NULL
);
291 mc_add_keyword_ascii ("FacilityNames", MCFACILITYNAMES
, "keyword", 0, NULL
);
292 mc_add_keyword_ascii ("LanguageNames", MCLANGUAGENAMES
, "keyword", 0, NULL
);
293 mc_add_keyword_ascii ("MessageId", MCMESSAGEID
, "keyword", 0, NULL
);
294 mc_add_keyword_ascii ("Severity", MCSEVERITY
, "keyword", 0, NULL
);
295 mc_add_keyword_ascii ("Facility", MCFACILITY
, "keyword", 0, NULL
);
296 mc_add_keyword_ascii ("SymbolicName", MCSYMBOLICNAME
, "keyword", 0, NULL
);
297 mc_add_keyword_ascii ("Language", MCLANGUAGE
, "keyword", 0, NULL
);
298 mc_add_keyword_ascii ("Success", MCTOKEN
, "severity", 0, NULL
);
299 mc_add_keyword_ascii ("Informational", MCTOKEN
, "severity", 1, NULL
);
300 mc_add_keyword_ascii ("Warning", MCTOKEN
, "severity", 2, NULL
);
301 mc_add_keyword_ascii ("Error", MCTOKEN
, "severity", 3, NULL
);
302 mc_add_keyword_ascii ("System", MCTOKEN
, "facility", 0xff, NULL
);
303 mc_add_keyword_ascii ("Application", MCTOKEN
, "facility", 0xfff, NULL
);
304 mc_add_keyword_ascii ("English", MCTOKEN
, "language", 0x409, "MSG00001");
307 if (!len
|| !t
|| *t
== 0)
315 if (! memcmp (k
->usz
, t
, len
* sizeof (unichar
)))
317 if (k
->rid
== MCTOKEN
)
330 unichar
*start_token
;
333 if (! input_stream_pos
)
335 fatal ("Input stream not setuped.\n");
340 start_token
= input_stream_pos
;
341 if (input_stream_pos
[0] == '.'
342 && (input_stream_pos
[1] == '\n'
343 || (input_stream_pos
[1] == '\r' && input_stream_pos
[2] == '\n')))
345 mclex_want_line
= FALSE
;
346 while (input_stream_pos
[0] != 0 && input_stream_pos
[0] != '\n')
348 if (input_stream_pos
[0] == '\n')
352 while (input_stream_pos
[0] != 0 && input_stream_pos
[0] != '\n')
354 if (input_stream_pos
[0] == '\n')
356 yylval
.ustr
= get_diff (input_stream_pos
, start_token
);
359 while ((ch
= input_stream_pos
[0]) <= 0x20)
366 if (mclex_want_nl
&& ch
== '\n')
368 mclex_want_nl
= FALSE
;
372 start_token
= input_stream_pos
;
374 if (mclex_want_filename
)
376 mclex_want_filename
= FALSE
;
380 while ((ch
= input_stream_pos
[0]) != 0)
386 yylval
.ustr
= get_diff (input_stream_pos
, start_token
);
392 while ((ch
= input_stream_pos
[0]) != 0)
394 if (ch
<= 0x20 || ch
== ')')
398 yylval
.ustr
= get_diff (input_stream_pos
, start_token
);
406 while (input_stream_pos
[0] != '\n' && input_stream_pos
[0] != 0)
408 if (input_stream_pos
[0] == '\n')
410 yylval
.ustr
= get_diff (input_stream_pos
, start_token
);
422 case '0': case '1': case '2': case '3': case '4':
423 case '5': case '6': case '7': case '8': case '9':
424 yylval
.ival
= parse_digit (ch
);
430 while (input_stream_pos
[0] >= 0x40 || (input_stream_pos
[0] >= '0' && input_stream_pos
[0] <= '9'))
432 ret
= mc_token (start_token
, (size_t) (input_stream_pos
- start_token
));
435 yylval
.ustr
= get_diff (input_stream_pos
, start_token
);
438 yyerror ("illegal character 0x%x.", ch
);