]>
Commit | Line | Data |
---|---|---|
08721544 PE |
1 | /* Parse command line arguments for Bison. |
2 | ||
e2a21b6f | 3 | Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003, 2004, |
59da312b | 4 | 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
3d8fc6ca | 5 | |
9f306f2a | 6 | This file is part of Bison, the GNU Compiler Compiler. |
3d8fc6ca | 7 | |
f16b0819 PE |
8 | This program is free software: you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation, either version 3 of the License, or | |
11 | (at your option) any later version. | |
3d8fc6ca | 12 | |
f16b0819 PE |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
3d8fc6ca | 17 | |
9f306f2a | 18 | You should have received a copy of the GNU General Public License |
f16b0819 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
3d8fc6ca | 20 | |
2cec9080 | 21 | #include <config.h> |
3d8fc6ca | 22 | #include "system.h" |
d4bd2295 | 23 | #include "output.h" |
d38a11a6 PE |
24 | |
25 | #include <argmatch.h> | |
d7e0a1a7 | 26 | #include <c-strcase.h> |
3b2942e6 | 27 | #include <configmake.h> |
d38a11a6 | 28 | #include <error.h> |
9fe5a457 | 29 | #include <quotearg.h> |
f47dbf6b PE |
30 | |
31 | /* Hack to get <getopt.h> to declare getopt with a prototype. */ | |
32 | #if lint && ! defined __GNU_LIBRARY__ | |
33 | # define __GNU_LIBRARY__ | |
34 | # define HACK_FOR___GNU_LIBRARY___PROTOTYPE 1 | |
35 | #endif | |
36 | ||
d38a11a6 PE |
37 | #include <getopt.h> |
38 | ||
f47dbf6b PE |
39 | #ifdef HACK_FOR___GNU_LIBRARY___PROTOTYPE |
40 | # undef __GNU_LIBRARY__ | |
41 | # undef HACK_FOR___GNU_LIBRARY___PROTOTYPE | |
42 | #endif | |
43 | ||
b0ce6046 | 44 | #include "complain.h" |
ec3bc396 | 45 | #include "files.h" |
d38a11a6 | 46 | #include "getargs.h" |
9fe5a457 | 47 | #include "muscle_tab.h" |
d38a11a6 | 48 | #include "uniqstr.h" |
3d8fc6ca | 49 | |
d0829076 PE |
50 | bool debug_flag; |
51 | bool defines_flag; | |
4e83ea15 | 52 | bool graph_flag; |
41d7a5f2 | 53 | bool xml_flag; |
d0829076 PE |
54 | bool locations_flag; |
55 | bool no_lines_flag; | |
d0829076 PE |
56 | bool token_table_flag; |
57 | bool yacc_flag; /* for -y */ | |
4e83ea15 AD |
58 | |
59 | bool error_verbose = false; | |
d2729d44 | 60 | |
916708d5 AD |
61 | bool nondeterministic_parser = false; |
62 | bool glr_parser = false; | |
916708d5 | 63 | |
4e83ea15 AD |
64 | int report_flag = report_none; |
65 | int trace_flag = trace_none; | |
7b42569e | 66 | int warnings_flag = warnings_none; |
4e83ea15 | 67 | |
0e021770 PE |
68 | static struct bison_language const valid_languages[] = { |
69 | { "c", "c-skel.m4", ".c", ".h", true }, | |
70 | { "c++", "c++-skel.m4", ".cc", ".hh", true }, | |
8405b70c | 71 | { "java", "java-skel.m4", ".java", ".java", false }, |
0e021770 PE |
72 | { "", "", "", "", false } |
73 | }; | |
74 | ||
75 | static int skeleton_prio = 2; | |
b0ce6046 | 76 | const char *skeleton = NULL; |
0e021770 PE |
77 | static int language_prio = 2; |
78 | struct bison_language const *language = &valid_languages[0]; | |
f6bd5427 | 79 | const char *include = NULL; |
b0ce6046 | 80 | |
0e021770 | 81 | char *program_name; |
3d8fc6ca | 82 | |
273a74fa | 83 | |
7b42569e AD |
84 | /** Decode an option's set of keys. |
85 | * | |
86 | * \param option option being decoded. | |
07c39ae9 | 87 | * \param keys array of valid subarguments. |
7b42569e | 88 | * \param values array of corresponding (int) values. |
07c39ae9 | 89 | * \param flags the flags to update |
7b42569e AD |
90 | * \param args colon separated list of effective subarguments to decode. |
91 | * If 0, then activate all the flags. | |
92 | * | |
93 | * The special value 0 resets the flags to 0. | |
94 | */ | |
80ac75bc PE |
95 | static void |
96 | flags_argmatch (const char *option, | |
7b42569e AD |
97 | const char * const keys[], const int values[], |
98 | int *flags, char *args) | |
99 | { | |
100 | if (args) | |
101 | { | |
102 | args = strtok (args, ","); | |
ba7560e2 | 103 | while (args) |
7b42569e AD |
104 | { |
105 | int value = XARGMATCH (option, args, keys, values); | |
106 | if (value == 0) | |
107 | *flags = 0; | |
108 | else | |
109 | *flags |= value; | |
eb095650 | 110 | args = strtok (NULL, ","); |
7b42569e | 111 | } |
7b42569e AD |
112 | } |
113 | else | |
114 | *flags = ~0; | |
115 | } | |
116 | ||
80ac75bc | 117 | /** Decode a set of sub arguments. |
7b42569e AD |
118 | * |
119 | * \param FlagName the flag familly to update. | |
07c39ae9 | 120 | * \param Args the effective sub arguments to decode. |
7b42569e AD |
121 | * |
122 | * \arg FlagName_args the list of keys. | |
123 | * \arg FlagName_types the list of values. | |
124 | * \arg FlagName_flag the flag to update. | |
125 | */ | |
126 | #define FLAGS_ARGMATCH(FlagName, Args) \ | |
127 | flags_argmatch ("--" #FlagName, FlagName ## _args, FlagName ## _types, \ | |
128 | &FlagName ## _flag, Args) | |
129 | ||
130 | ||
b8a41559 AD |
131 | /*----------------------. |
132 | | --report's handling. | | |
133 | `----------------------*/ | |
134 | ||
135 | static const char * const report_args[] = | |
136 | { | |
137 | /* In a series of synonyms, present the most meaningful first, so | |
138 | that argmatch_valid be more readable. */ | |
139 | "none", | |
140 | "state", "states", | |
141 | "itemset", "itemsets", | |
142 | "lookahead", "lookaheads", "look-ahead", | |
143 | "solved", | |
144 | "all", | |
145 | 0 | |
146 | }; | |
147 | ||
148 | static const int report_types[] = | |
149 | { | |
150 | report_none, | |
151 | report_states, report_states, | |
152 | report_states | report_itemsets, report_states | report_itemsets, | |
153 | report_states | report_lookahead_tokens, | |
154 | report_states | report_lookahead_tokens, | |
155 | report_states | report_lookahead_tokens, | |
156 | report_states | report_solved_conflicts, | |
157 | report_all | |
158 | }; | |
159 | ||
160 | ARGMATCH_VERIFY (report_args, report_types); | |
161 | ||
b8a41559 | 162 | |
273a74fa AD |
163 | /*---------------------. |
164 | | --trace's handling. | | |
165 | `---------------------*/ | |
166 | ||
167 | static const char * const trace_args[] = | |
168 | { | |
169 | /* In a series of synonyms, present the most meaningful first, so | |
170 | that argmatch_valid be more readable. */ | |
b8a41559 | 171 | "none - no traces", |
c5e3e510 AD |
172 | "scan - grammar scanner traces", |
173 | "parse - grammar parser traces", | |
b8a41559 | 174 | "automaton - construction of the automaton", |
273a74fa | 175 | "bitsets - use of bitsets", |
b8a41559 | 176 | "grammar - reading, reducing the grammar", |
1509d42f | 177 | "resource - memory consumption (where available)", |
273a74fa | 178 | "sets - grammar sets: firsts, nullable etc.", |
327afc7c AD |
179 | "tools - m4 invocation", |
180 | "m4 - m4 traces", | |
c5e3e510 AD |
181 | "skeleton - skeleton postprocessing", |
182 | "time - time consumption", | |
273a74fa AD |
183 | "all - all of the above", |
184 | 0 | |
185 | }; | |
186 | ||
187 | static const int trace_types[] = | |
188 | { | |
189 | trace_none, | |
473d0a75 AD |
190 | trace_scan, |
191 | trace_parse, | |
273a74fa AD |
192 | trace_automaton, |
193 | trace_bitsets, | |
194 | trace_grammar, | |
195 | trace_resource, | |
196 | trace_sets, | |
197 | trace_tools, | |
327afc7c | 198 | trace_m4, |
c5e3e510 AD |
199 | trace_skeleton, |
200 | trace_time, | |
273a74fa AD |
201 | trace_all |
202 | }; | |
203 | ||
8a6f72f3 | 204 | ARGMATCH_VERIFY (trace_args, trace_types); |
273a74fa | 205 | |
7b42569e AD |
206 | |
207 | /*------------------------. | |
208 | | --warnings's handling. | | |
209 | `------------------------*/ | |
210 | ||
211 | static const char * const warnings_args[] = | |
273a74fa | 212 | { |
7b42569e AD |
213 | /* In a series of synonyms, present the most meaningful first, so |
214 | that argmatch_valid be more readable. */ | |
17bd8a73 JD |
215 | "none - no warnings", |
216 | "midrule-values - unset or unused midrule values", | |
217 | "yacc - incompatibilities with POSIX YACC", | |
218 | "all - all of the above", | |
219 | "error - warnings are errors", | |
7b42569e AD |
220 | 0 |
221 | }; | |
222 | ||
223 | static const int warnings_types[] = | |
224 | { | |
225 | warnings_none, | |
17bd8a73 | 226 | warnings_midrule_values, |
7b42569e | 227 | warnings_yacc, |
89eb3c76 JD |
228 | warnings_all, |
229 | warnings_error | |
7b42569e AD |
230 | }; |
231 | ||
232 | ARGMATCH_VERIFY (warnings_args, warnings_types); | |
273a74fa AD |
233 | |
234 | ||
0e575721 AD |
235 | /*-------------------------------------------. |
236 | | Display the help message and exit STATUS. | | |
237 | `-------------------------------------------*/ | |
e79137ac | 238 | |
0df27e8b PE |
239 | static void usage (int) ATTRIBUTE_NORETURN; |
240 | ||
4a120d45 | 241 | static void |
0e575721 | 242 | usage (int status) |
cbd8ffc5 | 243 | { |
0e575721 AD |
244 | if (status != 0) |
245 | fprintf (stderr, _("Try `%s --help' for more information.\n"), | |
246 | program_name); | |
247 | else | |
248 | { | |
a92be413 | 249 | printf (_("Usage: %s [OPTION]... FILE\n"), program_name); |
0e575721 | 250 | fputs (_("\ |
a92be413 PE |
251 | Generate LALR(1) and GLR parsers.\n\ |
252 | \n\ | |
253 | "), stdout); | |
9f306f2a | 254 | |
0e575721 | 255 | fputs (_("\ |
a92be413 | 256 | Mandatory arguments to long options are mandatory for short options too.\n\ |
8e55b3aa JD |
257 | "), stdout); |
258 | fputs (_("\ | |
259 | The same is true for optional arguments.\n\ | |
a92be413 | 260 | "), stdout); |
9f306f2a | 261 | |
0e575721 | 262 | fputs (_("\ |
a92be413 | 263 | \n\ |
9f306f2a | 264 | Operation modes:\n\ |
f7ab6a50 PE |
265 | -h, --help display this help and exit\n\ |
266 | -V, --version output version information and exit\n\ | |
267 | --print-localedir output directory containing locale-dependent data\n\ | |
d4bd2295 | 268 | --print-datadir output directory containing skeletons and XSLT\n\ |
a92be413 | 269 | -y, --yacc emulate POSIX Yacc\n\ |
9b9e0a7d | 270 | -W, --warnings[=CATEGORY] report the warnings falling in CATEGORY\n\ |
a92be413 PE |
271 | \n\ |
272 | "), stdout); | |
9f306f2a | 273 | |
0e575721 | 274 | fputs (_("\ |
9f306f2a | 275 | Parser:\n\ |
59da312b | 276 | -L, --language=LANGUAGE specify the output programming language\n\ |
ed4d67dc | 277 | (this is an experimental feature)\n\ |
cd5bd6ac | 278 | -S, --skeleton=FILE specify the skeleton to use\n\ |
9f306f2a | 279 | -t, --debug instrument the parser for debugging\n\ |
89cab50d | 280 | --locations enable locations computation\n\ |
9f306f2a AD |
281 | -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\ |
282 | -l, --no-lines don't generate `#line' directives\n\ | |
9f306f2a | 283 | -k, --token-table include a table of token names\n\ |
a92be413 | 284 | \n\ |
0e575721 | 285 | "), stdout); |
9f306f2a | 286 | |
8e55b3aa JD |
287 | /* Keep -d and --defines separate so that ../build-aux/cross-options.pl |
288 | * won't assume that -d also takes an argument. */ | |
0e575721 | 289 | fputs (_("\ |
9f306f2a | 290 | Output:\n\ |
8e55b3aa JD |
291 | --defines[=FILE] also produce a header file\n\ |
292 | -d likewise but cannot specify FILE (for POSIX Yacc)\n\ | |
ec3bc396 | 293 | -r, --report=THINGS also produce details on the automaton\n\ |
1bb2bd75 | 294 | --report-file=FILE write report to FILE\n\ |
ec3bc396 | 295 | -v, --verbose same as `--report=state'\n\ |
9f306f2a | 296 | -b, --file-prefix=PREFIX specify a PREFIX for output files\n\ |
951366c1 | 297 | -o, --output=FILE leave output to FILE\n\ |
6aeb9c57 AD |
298 | -g, --graph[=FILE] also output a graph of the automaton\n\ |
299 | -x, --xml[=FILE] also output an XML report of the automaton\n\ | |
59da312b | 300 | (the XML schema is experimental)\n\ |
a92be413 | 301 | \n\ |
0e575721 | 302 | "), stdout); |
86eff183 | 303 | |
6aeb9c57 AD |
304 | fputs (_("\ |
305 | Warning categories include:\n\ | |
306 | `midrule-values' unset or unused midrule values\n\ | |
307 | `yacc' incompatibilities with POSIX YACC\n\ | |
308 | `all' all the warnings\n\ | |
309 | `no-CATEGORY' turn off warnings in CATEGORY\n\ | |
310 | `none' turn off all the warnings\n\ | |
311 | `error' treat warnings as errors\n\ | |
66f0441d | 312 | \n\ |
6aeb9c57 AD |
313 | "), stdout); |
314 | ||
0e575721 | 315 | fputs (_("\ |
ec3bc396 AD |
316 | THINGS is a list of comma separated words that can include:\n\ |
317 | `state' describe the states\n\ | |
318 | `itemset' complete the core item sets with their closure\n\ | |
742e4900 | 319 | `lookahead' explicitly associate lookahead tokens to items\n\ |
b408954b | 320 | `solved' describe shift/reduce conflicts solving\n\ |
ec3bc396 AD |
321 | `all' include all the above information\n\ |
322 | `none' disable the report\n\ | |
0e575721 | 323 | "), stdout); |
9f306f2a | 324 | |
a92be413 | 325 | printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); |
0e575721 AD |
326 | } |
327 | ||
328 | exit (status); | |
cbd8ffc5 DM |
329 | } |
330 | ||
e79137ac AD |
331 | |
332 | /*------------------------------. | |
333 | | Display the version message. | | |
334 | `------------------------------*/ | |
335 | ||
336 | static void | |
0e575721 | 337 | version (void) |
e79137ac AD |
338 | { |
339 | /* Some efforts were made to ease the translators' task, please | |
340 | continue. */ | |
0e575721 AD |
341 | printf (_("bison (GNU Bison) %s"), VERSION); |
342 | putc ('\n', stdout); | |
343 | fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stdout); | |
344 | putc ('\n', stdout); | |
e79137ac | 345 | |
0e575721 | 346 | fprintf (stdout, |
a005a9c4 AD |
347 | _("Copyright (C) %d Free Software Foundation, Inc.\n"), |
348 | PACKAGE_COPYRIGHT_YEAR); | |
e79137ac AD |
349 | |
350 | fputs (_("\ | |
351 | This is free software; see the source for copying conditions. There is NO\n\ | |
352 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ | |
353 | "), | |
0e575721 | 354 | stdout); |
e79137ac AD |
355 | } |
356 | ||
357 | ||
0e021770 PE |
358 | /*-------------------------------------. |
359 | | --skeleton and --language handling. | | |
360 | `--------------------------------------*/ | |
361 | ||
362 | void | |
363 | skeleton_arg (char const *arg, int prio, location const *loc) | |
364 | { | |
365 | if (prio < skeleton_prio) | |
366 | { | |
367 | skeleton_prio = prio; | |
368 | skeleton = arg; | |
369 | } | |
370 | else if (prio == skeleton_prio) | |
371 | { | |
372 | char const *msg = | |
373 | _("multiple skeleton declarations are invalid"); | |
374 | if (loc) | |
375 | complain_at (*loc, msg); | |
376 | else | |
377 | complain (msg); | |
378 | } | |
379 | } | |
380 | ||
381 | void | |
382 | language_argmatch (char const *arg, int prio, location const *loc) | |
383 | { | |
384 | char const *msg; | |
385 | ||
386 | if (prio < language_prio) | |
387 | { | |
388 | int i; | |
389 | for (i = 0; valid_languages[i].language[0]; i++) | |
d7e0a1a7 | 390 | if (c_strcasecmp (arg, valid_languages[i].language) == 0) |
0e021770 PE |
391 | { |
392 | language_prio = prio; | |
393 | language = &valid_languages[i]; | |
394 | return; | |
395 | } | |
396 | msg = _("invalid language `%s'"); | |
397 | } | |
398 | else if (language_prio == prio) | |
399 | msg = _("multiple language declarations are invalid"); | |
400 | else | |
401 | return; | |
402 | ||
403 | if (loc) | |
404 | complain_at (*loc, msg, arg); | |
405 | else | |
406 | complain (msg, arg); | |
407 | } | |
408 | ||
e79137ac AD |
409 | /*----------------------. |
410 | | Process the options. | | |
411 | `----------------------*/ | |
412 | ||
7020f1e9 AD |
413 | /* Shorts options. |
414 | Should be computed from long_options. */ | |
415 | static char const short_options[] = | |
416 | "L:" | |
417 | "S:" | |
418 | "T::" | |
419 | "V" | |
8e55b3aa | 420 | "W::" |
7020f1e9 AD |
421 | "b:" |
422 | "d" | |
423 | "e" | |
424 | "g::" | |
425 | "h" | |
426 | "k" | |
427 | "l" | |
428 | "n" | |
429 | "o:" | |
430 | "p:" | |
431 | "r:" | |
432 | "t" | |
433 | "v" | |
434 | "x::" | |
435 | "y" | |
436 | ; | |
e2aaf4c4 | 437 | |
d0829076 PE |
438 | /* Values for long options that do not have single-letter equivalents. */ |
439 | enum | |
440 | { | |
f7ab6a50 | 441 | LOCATIONS_OPTION = CHAR_MAX + 1, |
d4bd2295 | 442 | PRINT_LOCALEDIR_OPTION, |
1bb2bd75 JD |
443 | PRINT_DATADIR_OPTION, |
444 | REPORT_FILE_OPTION | |
d0829076 PE |
445 | }; |
446 | ||
e2aaf4c4 AD |
447 | static struct option const long_options[] = |
448 | { | |
449 | /* Operation modes. */ | |
7b42569e AD |
450 | { "help", no_argument, 0, 'h' }, |
451 | { "version", no_argument, 0, 'V' }, | |
452 | { "print-localedir", no_argument, 0, PRINT_LOCALEDIR_OPTION }, | |
d4bd2295 | 453 | { "print-datadir", no_argument, 0, PRINT_DATADIR_OPTION }, |
7b42569e | 454 | { "warnings", optional_argument, 0, 'W' }, |
e2aaf4c4 AD |
455 | |
456 | /* Parser. */ | |
457 | { "name-prefix", required_argument, 0, 'p' }, | |
458 | { "include", required_argument, 0, 'I' }, | |
459 | ||
460 | /* Output. */ | |
461 | { "file-prefix", required_argument, 0, 'b' }, | |
462 | { "output", required_argument, 0, 'o' }, | |
463 | { "output-file", required_argument, 0, 'o' }, | |
464 | { "graph", optional_argument, 0, 'g' }, | |
41d7a5f2 | 465 | { "xml", optional_argument, 0, 'x' }, |
e2aaf4c4 | 466 | { "report", required_argument, 0, 'r' }, |
1bb2bd75 | 467 | { "report-file", required_argument, 0, REPORT_FILE_OPTION }, |
e2aaf4c4 AD |
468 | { "verbose", no_argument, 0, 'v' }, |
469 | ||
470 | /* Hidden. */ | |
273a74fa | 471 | { "trace", optional_argument, 0, 'T' }, |
e2aaf4c4 | 472 | |
e2aaf4c4 AD |
473 | /* Output. */ |
474 | { "defines", optional_argument, 0, 'd' }, | |
475 | ||
476 | /* Operation modes. */ | |
477 | { "fixed-output-files", no_argument, 0, 'y' }, | |
478 | { "yacc", no_argument, 0, 'y' }, | |
479 | ||
480 | /* Parser. */ | |
481 | { "debug", no_argument, 0, 't' }, | |
d0829076 | 482 | { "locations", no_argument, 0, LOCATIONS_OPTION }, |
e2aaf4c4 | 483 | { "no-lines", no_argument, 0, 'l' }, |
e2aaf4c4 AD |
484 | { "raw", no_argument, 0, 0 }, |
485 | { "skeleton", required_argument, 0, 'S' }, | |
0e021770 | 486 | { "language", required_argument, 0, 'L' }, |
e2aaf4c4 AD |
487 | { "token-table", no_argument, 0, 'k' }, |
488 | ||
489 | {0, 0, 0, 0} | |
490 | }; | |
491 | ||
ae404801 AD |
492 | /* Under DOS, there is no difference on the case. This can be |
493 | troublesome when looking for `.tab' etc. */ | |
494 | #ifdef MSDOS | |
495 | # define AS_FILE_NAME(File) (strlwr (File), (File)) | |
496 | #else | |
497 | # define AS_FILE_NAME(File) (File) | |
498 | #endif | |
499 | ||
3d8fc6ca | 500 | void |
d2729d44 | 501 | getargs (int argc, char *argv[]) |
3d8fc6ca | 502 | { |
1916f98e | 503 | int c; |
3d8fc6ca | 504 | |
08721544 PE |
505 | while ((c = getopt_long (argc, argv, short_options, long_options, NULL)) |
506 | != -1) | |
cd5bd6ac AD |
507 | switch (c) |
508 | { | |
509 | case 0: | |
510 | /* Certain long options cause getopt_long to return 0. */ | |
511 | break; | |
512 | ||
8e55b3aa JD |
513 | case 'd': |
514 | /* Here, the -d and --defines options are differentiated. */ | |
515 | defines_flag = true; | |
fcbfa6b0 | 516 | if (optarg) |
8e55b3aa | 517 | spec_defines_file = xstrdup (AS_FILE_NAME (optarg)); |
22c2cbc0 AD |
518 | break; |
519 | ||
8e55b3aa JD |
520 | case 'I': |
521 | include = AS_FILE_NAME (optarg); | |
41d7a5f2 PE |
522 | break; |
523 | ||
0e021770 PE |
524 | case 'L': |
525 | language_argmatch (optarg, 0, NULL); | |
526 | break; | |
527 | ||
cd5bd6ac | 528 | case 'S': |
0e021770 | 529 | skeleton_arg (AS_FILE_NAME (optarg), 0, NULL); |
cd5bd6ac AD |
530 | break; |
531 | ||
8e55b3aa JD |
532 | case 'T': |
533 | FLAGS_ARGMATCH (trace, optarg); | |
f6bd5427 MA |
534 | break; |
535 | ||
8e55b3aa JD |
536 | case 'V': |
537 | version (); | |
538 | exit (EXIT_SUCCESS); | |
539 | ||
540 | case 'W': | |
ae404801 | 541 | if (optarg) |
8e55b3aa JD |
542 | FLAGS_ARGMATCH (warnings, optarg); |
543 | else | |
544 | warnings_flag |= warnings_all; | |
545 | break; | |
546 | ||
547 | case 'b': | |
548 | spec_file_prefix = AS_FILE_NAME (optarg); | |
549 | break; | |
550 | ||
551 | case 'g': | |
552 | graph_flag = true; | |
553 | if (optarg) | |
554 | spec_graph_file = xstrdup (AS_FILE_NAME (optarg)); | |
cd5bd6ac AD |
555 | break; |
556 | ||
8e55b3aa JD |
557 | case 'h': |
558 | usage (EXIT_SUCCESS); | |
559 | ||
7b42569e AD |
560 | case 'k': |
561 | token_table_flag = true; | |
562 | break; | |
563 | ||
cd5bd6ac | 564 | case 'l': |
d0829076 PE |
565 | no_lines_flag = true; |
566 | break; | |
567 | ||
7b42569e AD |
568 | case 'o': |
569 | spec_outfile = AS_FILE_NAME (optarg); | |
cd5bd6ac AD |
570 | break; |
571 | ||
7b42569e AD |
572 | case 'p': |
573 | spec_name_prefix = optarg; | |
574 | break; | |
575 | ||
576 | case 'r': | |
577 | FLAGS_ARGMATCH (report, optarg); | |
578 | break; | |
579 | ||
cd5bd6ac | 580 | case 't': |
d0829076 | 581 | debug_flag = true; |
cd5bd6ac AD |
582 | break; |
583 | ||
7b42569e AD |
584 | case 'v': |
585 | report_flag |= report_states; | |
cd5bd6ac AD |
586 | break; |
587 | ||
8e55b3aa JD |
588 | case 'x': |
589 | xml_flag = true; | |
590 | if (optarg) | |
591 | spec_xml_file = xstrdup (AS_FILE_NAME (optarg)); | |
cd5bd6ac AD |
592 | break; |
593 | ||
8e55b3aa JD |
594 | case 'y': |
595 | yacc_flag = true; | |
ec3bc396 AD |
596 | break; |
597 | ||
7b42569e AD |
598 | case LOCATIONS_OPTION: |
599 | locations_flag = true; | |
273a74fa AD |
600 | break; |
601 | ||
7b42569e AD |
602 | case PRINT_LOCALEDIR_OPTION: |
603 | printf ("%s\n", LOCALEDIR); | |
604 | exit (EXIT_SUCCESS); | |
605 | ||
d4bd2295 JD |
606 | case PRINT_DATADIR_OPTION: |
607 | printf ("%s\n", compute_pkgdatadir ()); | |
608 | exit (EXIT_SUCCESS); | |
609 | ||
8e55b3aa JD |
610 | case REPORT_FILE_OPTION: |
611 | spec_verbose_file = xstrdup (AS_FILE_NAME (optarg)); | |
612 | break; | |
613 | ||
cd5bd6ac | 614 | default: |
0df27e8b | 615 | usage (EXIT_FAILURE); |
cd5bd6ac | 616 | } |
3d8fc6ca | 617 | |
a4b6efd4 | 618 | if (argc - optind != 1) |
3d8fc6ca | 619 | { |
a4b6efd4 PE |
620 | if (argc - optind < 1) |
621 | error (0, 0, _("missing operand after `%s'"), argv[argc - 1]); | |
622 | else | |
623 | error (0, 0, _("extra operand `%s'"), argv[optind + 1]); | |
0e575721 | 624 | usage (EXIT_FAILURE); |
3d8fc6ca | 625 | } |
3d8fc6ca | 626 | |
d38a11a6 | 627 | current_file = grammar_file = uniqstr_new (argv[optind]); |
9fe5a457 | 628 | MUSCLE_INSERT_C_STRING ("file_name", grammar_file); |
3d8fc6ca | 629 | } |