]> git.saurik.com Git - bison.git/blame - src/getargs.c
Add -Wconflicts-sr and -Wconflicts-rr.
[bison.git] / src / getargs.c
CommitLineData
08721544
PE
1/* Parse command line arguments for Bison.
2
575619af
JD
3 Copyright (C) 1984, 1986, 1989, 1992, 2000-2011 Free Software
4 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"
00f5d575 47#include "muscle-tab.h"
d38a11a6 48#include "uniqstr.h"
3d8fc6ca 49
d0829076 50bool defines_flag;
4e83ea15 51bool graph_flag;
41d7a5f2 52bool xml_flag;
d0829076 53bool no_lines_flag;
d0829076
PE
54bool token_table_flag;
55bool yacc_flag; /* for -y */
4e83ea15 56
916708d5
AD
57bool nondeterministic_parser = false;
58bool glr_parser = false;
916708d5 59
4e83ea15
AD
60int report_flag = report_none;
61int trace_flag = trace_none;
786743d5
JD
62int warnings_flag = warnings_conflicts_sr | warnings_conflicts_rr
63 | warnings_other;
4e83ea15 64
0e021770
PE
65static struct bison_language const valid_languages[] = {
66 { "c", "c-skel.m4", ".c", ".h", true },
67 { "c++", "c++-skel.m4", ".cc", ".hh", true },
8405b70c 68 { "java", "java-skel.m4", ".java", ".java", false },
0e021770
PE
69 { "", "", "", "", false }
70};
71
51365192 72int skeleton_prio = default_prio;
b0ce6046 73const char *skeleton = NULL;
51365192 74int language_prio = default_prio;
0e021770 75struct bison_language const *language = &valid_languages[0];
f6bd5427 76const char *include = NULL;
b0ce6046 77
0e021770 78char *program_name;
3d8fc6ca 79
273a74fa 80
7b42569e
AD
81/** Decode an option's set of keys.
82 *
83 * \param option option being decoded.
07c39ae9 84 * \param keys array of valid subarguments.
7b42569e 85 * \param values array of corresponding (int) values.
bf0e44e8 86 * \param all the all value.
07c39ae9 87 * \param flags the flags to update
4182a0a1 88 * \param args comma separated list of effective subarguments to decode.
7b42569e
AD
89 * If 0, then activate all the flags.
90 *
4182a0a1 91 * If VALUE != 0 then KEY sets flags and no-KEY clears them.
bf0e44e8
JD
92 * If VALUE == 0 then KEY clears all flags from \c all and no-KEY sets all
93 * flags from \c all. Thus no-none = all and no-all = none.
7b42569e 94 */
80ac75bc
PE
95static void
96flags_argmatch (const char *option,
7b42569e 97 const char * const keys[], const int values[],
bf0e44e8 98 int all, int *flags, char *args)
7b42569e
AD
99{
100 if (args)
101 {
102 args = strtok (args, ",");
ba7560e2 103 while (args)
7b42569e 104 {
4182a0a1
DJ
105 int no = strncmp (args, "no-", 3) == 0 ? 3 : 0;
106 int value = XARGMATCH (option, args + no, keys, values);
7b42569e 107 if (value == 0)
bf0e44e8
JD
108 {
109 if (no)
110 *flags |= all;
111 else
112 *flags &= ~all;
113 }
7b42569e 114 else
bf0e44e8
JD
115 {
116 if (no)
117 *flags &= ~value;
118 else
119 *flags |= value;
120 }
eb095650 121 args = strtok (NULL, ",");
7b42569e 122 }
7b42569e
AD
123 }
124 else
bf0e44e8 125 *flags |= all;
7b42569e
AD
126}
127
80ac75bc 128/** Decode a set of sub arguments.
7b42569e
AD
129 *
130 * \param FlagName the flag familly to update.
07c39ae9 131 * \param Args the effective sub arguments to decode.
7b42569e
AD
132 *
133 * \arg FlagName_args the list of keys.
134 * \arg FlagName_types the list of values.
bf0e44e8 135 * \arg FlagName_all the all value.
7b42569e
AD
136 * \arg FlagName_flag the flag to update.
137 */
138#define FLAGS_ARGMATCH(FlagName, Args) \
139 flags_argmatch ("--" #FlagName, FlagName ## _args, FlagName ## _types, \
bf0e44e8 140 FlagName ## _all, &FlagName ## _flag, Args)
7b42569e
AD
141
142
b8a41559
AD
143/*----------------------.
144| --report's handling. |
145`----------------------*/
146
147static const char * const report_args[] =
148{
149 /* In a series of synonyms, present the most meaningful first, so
150 that argmatch_valid be more readable. */
151 "none",
152 "state", "states",
153 "itemset", "itemsets",
154 "lookahead", "lookaheads", "look-ahead",
155 "solved",
156 "all",
157 0
158};
159
160static const int report_types[] =
161{
162 report_none,
163 report_states, report_states,
164 report_states | report_itemsets, report_states | report_itemsets,
165 report_states | report_lookahead_tokens,
166 report_states | report_lookahead_tokens,
167 report_states | report_lookahead_tokens,
168 report_states | report_solved_conflicts,
169 report_all
170};
171
172ARGMATCH_VERIFY (report_args, report_types);
173
b8a41559 174
273a74fa
AD
175/*---------------------.
176| --trace's handling. |
177`---------------------*/
178
179static const char * const trace_args[] =
180{
181 /* In a series of synonyms, present the most meaningful first, so
182 that argmatch_valid be more readable. */
b8a41559 183 "none - no traces",
c5e3e510
AD
184 "scan - grammar scanner traces",
185 "parse - grammar parser traces",
b8a41559 186 "automaton - construction of the automaton",
273a74fa 187 "bitsets - use of bitsets",
b8a41559 188 "grammar - reading, reducing the grammar",
1509d42f 189 "resource - memory consumption (where available)",
273a74fa 190 "sets - grammar sets: firsts, nullable etc.",
5263bea9 191 "muscles - m4 definitions passed to the skeleton",
327afc7c
AD
192 "tools - m4 invocation",
193 "m4 - m4 traces",
c5e3e510
AD
194 "skeleton - skeleton postprocessing",
195 "time - time consumption",
db34f798 196 "ielr - IELR conversion",
273a74fa
AD
197 "all - all of the above",
198 0
199};
200
201static const int trace_types[] =
202{
203 trace_none,
473d0a75
AD
204 trace_scan,
205 trace_parse,
273a74fa
AD
206 trace_automaton,
207 trace_bitsets,
208 trace_grammar,
209 trace_resource,
210 trace_sets,
5263bea9 211 trace_muscles,
273a74fa 212 trace_tools,
327afc7c 213 trace_m4,
c5e3e510
AD
214 trace_skeleton,
215 trace_time,
db34f798 216 trace_ielr,
273a74fa
AD
217 trace_all
218};
219
8a6f72f3 220ARGMATCH_VERIFY (trace_args, trace_types);
273a74fa 221
7b42569e
AD
222
223/*------------------------.
224| --warnings's handling. |
225`------------------------*/
226
227static const char * const warnings_args[] =
273a74fa 228{
7b42569e
AD
229 /* In a series of synonyms, present the most meaningful first, so
230 that argmatch_valid be more readable. */
17bd8a73
JD
231 "none - no warnings",
232 "midrule-values - unset or unused midrule values",
184e3179 233 "yacc - incompatibilities with POSIX Yacc",
786743d5
JD
234 "conflicts-sr - S/R conflicts",
235 "conflicts-rr - R/R conflicts",
c39014ae 236 "other - all other warnings",
17bd8a73
JD
237 "all - all of the above",
238 "error - warnings are errors",
7b42569e
AD
239 0
240};
241
242static const int warnings_types[] =
243{
244 warnings_none,
17bd8a73 245 warnings_midrule_values,
7b42569e 246 warnings_yacc,
786743d5
JD
247 warnings_conflicts_sr,
248 warnings_conflicts_rr,
c39014ae 249 warnings_other,
89eb3c76
JD
250 warnings_all,
251 warnings_error
7b42569e
AD
252};
253
254ARGMATCH_VERIFY (warnings_args, warnings_types);
273a74fa
AD
255
256
0e575721
AD
257/*-------------------------------------------.
258| Display the help message and exit STATUS. |
259`-------------------------------------------*/
e79137ac 260
0df27e8b
PE
261static void usage (int) ATTRIBUTE_NORETURN;
262
4a120d45 263static void
0e575721 264usage (int status)
cbd8ffc5 265{
0e575721
AD
266 if (status != 0)
267 fprintf (stderr, _("Try `%s --help' for more information.\n"),
268 program_name);
269 else
270 {
a7c09cba
DJ
271 /* For ../build-aux/cross-options.pl to work, use the format:
272 ^ -S, --long[=ARGS] (whitespace)
273 A --long option is required.
274 Otherwise, add exceptions to ../build-aux/cross-options.pl. */
275
a92be413 276 printf (_("Usage: %s [OPTION]... FILE\n"), program_name);
0e575721 277 fputs (_("\
9dc3ee6d 278Generate a deterministic LR or generalized LR (GLR) parser employing\n\
af28d414
JD
279LALR(1), IELR(1), or canonical LR(1) parser tables. IELR(1) and\n\
280canonical LR(1) support is experimental.\n\
a92be413
PE
281\n\
282"), stdout);
9f306f2a 283
0e575721 284 fputs (_("\
a92be413 285Mandatory arguments to long options are mandatory for short options too.\n\
8e55b3aa
JD
286"), stdout);
287 fputs (_("\
288The same is true for optional arguments.\n\
a92be413 289"), stdout);
9f306f2a 290
0e575721 291 fputs (_("\
a92be413 292\n\
9f306f2a 293Operation modes:\n\
feeb56cd
JD
294 -h, --help display this help and exit\n\
295 -V, --version output version information and exit\n\
296 --print-localedir output directory containing locale-dependent data\n\
297 --print-datadir output directory containing skeletons and XSLT\n\
298 -y, --yacc emulate POSIX Yacc\n\
299 -W, --warnings[=CATEGORY] report the warnings falling in CATEGORY\n\
a92be413
PE
300\n\
301"), stdout);
9f306f2a 302
0e575721 303 fputs (_("\
9f306f2a 304Parser:\n\
de5ab940
JD
305 -L, --language=LANGUAGE specify the output programming language\n\
306 (this is an experimental feature)\n\
307 -S, --skeleton=FILE specify the skeleton to use\n\
308 -t, --debug instrument the parser for tracing\n\
309 same as `-Dparse.trace'\n\
310 --locations enable location support\n\
311 -D, --define=NAME[=VALUE] similar to `%define NAME \"VALUE\"'\n\
312 -F, --force-define=NAME[=VALUE] override `%define NAME \"VALUE\"'\n\
313 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
314 -l, --no-lines don't generate `#line' directives\n\
315 -k, --token-table include a table of token names\n\
a92be413 316\n\
0e575721 317"), stdout);
9f306f2a 318
8e55b3aa
JD
319 /* Keep -d and --defines separate so that ../build-aux/cross-options.pl
320 * won't assume that -d also takes an argument. */
0e575721 321 fputs (_("\
9f306f2a 322Output:\n\
feeb56cd
JD
323 --defines[=FILE] also produce a header file\n\
324 -d likewise but cannot specify FILE (for POSIX Yacc)\n\
325 -r, --report=THINGS also produce details on the automaton\n\
326 --report-file=FILE write report to FILE\n\
327 -v, --verbose same as `--report=state'\n\
328 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
329 -o, --output=FILE leave output to FILE\n\
330 -g, --graph[=FILE] also output a graph of the automaton\n\
331 -x, --xml[=FILE] also output an XML report of the automaton\n\
332 (the XML schema is experimental)\n\
a92be413 333\n\
0e575721 334"), stdout);
86eff183 335
6aeb9c57
AD
336 fputs (_("\
337Warning categories include:\n\
338 `midrule-values' unset or unused midrule values\n\
184e3179 339 `yacc' incompatibilities with POSIX Yacc\n\
786743d5
JD
340 `conflicts-sr' S/R conflicts (enabled by default)\n\
341 `conflicts-rr' R/R conflicts (enabled by default)\n\
c39014ae 342 `other' all other warnings (enabled by default)\n\
6aeb9c57
AD
343 `all' all the warnings\n\
344 `no-CATEGORY' turn off warnings in CATEGORY\n\
345 `none' turn off all the warnings\n\
346 `error' treat warnings as errors\n\
66f0441d 347\n\
6aeb9c57
AD
348"), stdout);
349
0e575721 350 fputs (_("\
ec3bc396
AD
351THINGS is a list of comma separated words that can include:\n\
352 `state' describe the states\n\
353 `itemset' complete the core item sets with their closure\n\
742e4900 354 `lookahead' explicitly associate lookahead tokens to items\n\
b408954b 355 `solved' describe shift/reduce conflicts solving\n\
ec3bc396
AD
356 `all' include all the above information\n\
357 `none' disable the report\n\
0e575721 358"), stdout);
9f306f2a 359
a92be413 360 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
0e575721
AD
361 }
362
363 exit (status);
cbd8ffc5
DM
364}
365
e79137ac
AD
366
367/*------------------------------.
368| Display the version message. |
369`------------------------------*/
370
371static void
0e575721 372version (void)
e79137ac
AD
373{
374 /* Some efforts were made to ease the translators' task, please
375 continue. */
0e575721
AD
376 printf (_("bison (GNU Bison) %s"), VERSION);
377 putc ('\n', stdout);
378 fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stdout);
379 putc ('\n', stdout);
e79137ac 380
0e575721 381 fprintf (stdout,
a005a9c4
AD
382 _("Copyright (C) %d Free Software Foundation, Inc.\n"),
383 PACKAGE_COPYRIGHT_YEAR);
e79137ac
AD
384
385 fputs (_("\
386This is free software; see the source for copying conditions. There is NO\n\
387warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
388"),
0e575721 389 stdout);
e79137ac
AD
390}
391
392
0e021770
PE
393/*-------------------------------------.
394| --skeleton and --language handling. |
395`--------------------------------------*/
396
397void
5a893c2b 398skeleton_arg (char const *arg, int prio, location loc)
0e021770
PE
399{
400 if (prio < skeleton_prio)
401 {
402 skeleton_prio = prio;
403 skeleton = arg;
404 }
405 else if (prio == skeleton_prio)
9b04dad7 406 complain_at (loc, _("multiple skeleton declarations are invalid"));
0e021770
PE
407}
408
409void
5a893c2b 410language_argmatch (char const *arg, int prio, location loc)
0e021770
PE
411{
412 char const *msg;
413
414 if (prio < language_prio)
415 {
416 int i;
417 for (i = 0; valid_languages[i].language[0]; i++)
d7e0a1a7 418 if (c_strcasecmp (arg, valid_languages[i].language) == 0)
0e021770
PE
419 {
420 language_prio = prio;
421 language = &valid_languages[i];
422 return;
423 }
424 msg = _("invalid language `%s'");
425 }
426 else if (language_prio == prio)
427 msg = _("multiple language declarations are invalid");
428 else
429 return;
430
5a893c2b 431 complain_at (loc, msg, arg);
0e021770
PE
432}
433
e79137ac
AD
434/*----------------------.
435| Process the options. |
436`----------------------*/
437
7020f1e9
AD
438/* Shorts options.
439 Should be computed from long_options. */
440static char const short_options[] =
58697c6d 441 "D:"
de5ab940 442 "F:"
7020f1e9
AD
443 "L:"
444 "S:"
445 "T::"
446 "V"
8e55b3aa 447 "W::"
7020f1e9
AD
448 "b:"
449 "d"
450 "e"
451 "g::"
452 "h"
453 "k"
454 "l"
455 "n"
456 "o:"
457 "p:"
458 "r:"
459 "t"
460 "v"
461 "x::"
462 "y"
463 ;
e2aaf4c4 464
d0829076
PE
465/* Values for long options that do not have single-letter equivalents. */
466enum
467{
f7ab6a50 468 LOCATIONS_OPTION = CHAR_MAX + 1,
d4bd2295 469 PRINT_LOCALEDIR_OPTION,
1bb2bd75
JD
470 PRINT_DATADIR_OPTION,
471 REPORT_FILE_OPTION
d0829076
PE
472};
473
e2aaf4c4
AD
474static struct option const long_options[] =
475{
476 /* Operation modes. */
7b42569e
AD
477 { "help", no_argument, 0, 'h' },
478 { "version", no_argument, 0, 'V' },
479 { "print-localedir", no_argument, 0, PRINT_LOCALEDIR_OPTION },
d4bd2295 480 { "print-datadir", no_argument, 0, PRINT_DATADIR_OPTION },
7b42569e 481 { "warnings", optional_argument, 0, 'W' },
e2aaf4c4
AD
482
483 /* Parser. */
484 { "name-prefix", required_argument, 0, 'p' },
485 { "include", required_argument, 0, 'I' },
486
487 /* Output. */
488 { "file-prefix", required_argument, 0, 'b' },
489 { "output", required_argument, 0, 'o' },
490 { "output-file", required_argument, 0, 'o' },
491 { "graph", optional_argument, 0, 'g' },
41d7a5f2 492 { "xml", optional_argument, 0, 'x' },
e2aaf4c4 493 { "report", required_argument, 0, 'r' },
1bb2bd75 494 { "report-file", required_argument, 0, REPORT_FILE_OPTION },
e2aaf4c4
AD
495 { "verbose", no_argument, 0, 'v' },
496
497 /* Hidden. */
273a74fa 498 { "trace", optional_argument, 0, 'T' },
e2aaf4c4 499
e2aaf4c4
AD
500 /* Output. */
501 { "defines", optional_argument, 0, 'd' },
502
503 /* Operation modes. */
504 { "fixed-output-files", no_argument, 0, 'y' },
505 { "yacc", no_argument, 0, 'y' },
506
507 /* Parser. */
508 { "debug", no_argument, 0, 't' },
58697c6d 509 { "define", required_argument, 0, 'D' },
de5ab940 510 { "force-define", required_argument, 0, 'F' },
d0829076 511 { "locations", no_argument, 0, LOCATIONS_OPTION },
e2aaf4c4 512 { "no-lines", no_argument, 0, 'l' },
e2aaf4c4
AD
513 { "raw", no_argument, 0, 0 },
514 { "skeleton", required_argument, 0, 'S' },
0e021770 515 { "language", required_argument, 0, 'L' },
e2aaf4c4
AD
516 { "token-table", no_argument, 0, 'k' },
517
518 {0, 0, 0, 0}
519};
520
ae404801
AD
521/* Under DOS, there is no difference on the case. This can be
522 troublesome when looking for `.tab' etc. */
523#ifdef MSDOS
524# define AS_FILE_NAME(File) (strlwr (File), (File))
525#else
526# define AS_FILE_NAME(File) (File)
527#endif
528
58697c6d
AD
529/* Build a location for the current command line argument. */
530static
531location
d73e55e0 532command_line_location (void)
58697c6d
AD
533{
534 location res;
535 /* "<command line>" is used in GCC's messages about -D. */
536 boundary_set (&res.start, uniqstr_new ("<command line>"), optind, -1);
537 res.end = res.start;
538 return res;
539}
540
541
3d8fc6ca 542void
d2729d44 543getargs (int argc, char *argv[])
3d8fc6ca 544{
1916f98e 545 int c;
3d8fc6ca 546
08721544
PE
547 while ((c = getopt_long (argc, argv, short_options, long_options, NULL))
548 != -1)
cd5bd6ac
AD
549 switch (c)
550 {
58697c6d
AD
551 /* ASCII Sorting for short options (i.e., upper case then
552 lower case), and then long-only options. */
553
cd5bd6ac
AD
554 case 0:
555 /* Certain long options cause getopt_long to return 0. */
556 break;
557
58697c6d 558 case 'D': /* -DNAME[=VALUE]. */
de5ab940 559 case 'F': /* -FNAME[=VALUE]. */
58697c6d
AD
560 {
561 char* name = optarg;
562 char* value = strchr (optarg, '=');
563 if (value)
9ce405ce 564 *value++ = 0;
a8beef7e 565 muscle_percent_define_insert (name, command_line_location (),
de5ab940
JD
566 value ? value : "",
567 c == 'D' ? MUSCLE_PERCENT_DEFINE_D
568 : MUSCLE_PERCENT_DEFINE_F);
58697c6d 569 }
22c2cbc0
AD
570 break;
571
8e55b3aa
JD
572 case 'I':
573 include = AS_FILE_NAME (optarg);
41d7a5f2
PE
574 break;
575
0e021770 576 case 'L':
51365192
JD
577 language_argmatch (optarg, command_line_prio,
578 command_line_location ());
0e021770
PE
579 break;
580
cd5bd6ac 581 case 'S':
51365192
JD
582 skeleton_arg (AS_FILE_NAME (optarg), command_line_prio,
583 command_line_location ());
cd5bd6ac
AD
584 break;
585
8e55b3aa
JD
586 case 'T':
587 FLAGS_ARGMATCH (trace, optarg);
f6bd5427
MA
588 break;
589
8e55b3aa
JD
590 case 'V':
591 version ();
592 exit (EXIT_SUCCESS);
593
594 case 'W':
bf0e44e8 595 FLAGS_ARGMATCH (warnings, optarg);
8e55b3aa
JD
596 break;
597
598 case 'b':
599 spec_file_prefix = AS_FILE_NAME (optarg);
600 break;
601
58697c6d
AD
602 case 'd':
603 /* Here, the -d and --defines options are differentiated. */
604 defines_flag = true;
605 if (optarg)
606 spec_defines_file = xstrdup (AS_FILE_NAME (optarg));
607 break;
608
8e55b3aa
JD
609 case 'g':
610 graph_flag = true;
611 if (optarg)
612 spec_graph_file = xstrdup (AS_FILE_NAME (optarg));
cd5bd6ac
AD
613 break;
614
8e55b3aa
JD
615 case 'h':
616 usage (EXIT_SUCCESS);
617
7b42569e
AD
618 case 'k':
619 token_table_flag = true;
620 break;
621
cd5bd6ac 622 case 'l':
d0829076
PE
623 no_lines_flag = true;
624 break;
625
7b42569e
AD
626 case 'o':
627 spec_outfile = AS_FILE_NAME (optarg);
cd5bd6ac
AD
628 break;
629
7b42569e
AD
630 case 'p':
631 spec_name_prefix = optarg;
632 break;
633
634 case 'r':
635 FLAGS_ARGMATCH (report, optarg);
636 break;
637
cd5bd6ac 638 case 't':
fa819509 639 muscle_percent_define_insert ("parse.trace",
de5ab940
JD
640 command_line_location (), "",
641 MUSCLE_PERCENT_DEFINE_D);
cd5bd6ac
AD
642 break;
643
7b42569e
AD
644 case 'v':
645 report_flag |= report_states;
cd5bd6ac
AD
646 break;
647
8e55b3aa
JD
648 case 'x':
649 xml_flag = true;
650 if (optarg)
651 spec_xml_file = xstrdup (AS_FILE_NAME (optarg));
cd5bd6ac
AD
652 break;
653
8e55b3aa
JD
654 case 'y':
655 yacc_flag = true;
ec3bc396
AD
656 break;
657
7b42569e 658 case LOCATIONS_OPTION:
bc0f5737
AD
659 muscle_percent_define_ensure ("locations",
660 command_line_location (), true);
273a74fa
AD
661 break;
662
7b42569e
AD
663 case PRINT_LOCALEDIR_OPTION:
664 printf ("%s\n", LOCALEDIR);
665 exit (EXIT_SUCCESS);
666
d4bd2295
JD
667 case PRINT_DATADIR_OPTION:
668 printf ("%s\n", compute_pkgdatadir ());
669 exit (EXIT_SUCCESS);
670
8e55b3aa
JD
671 case REPORT_FILE_OPTION:
672 spec_verbose_file = xstrdup (AS_FILE_NAME (optarg));
673 break;
674
cd5bd6ac 675 default:
0df27e8b 676 usage (EXIT_FAILURE);
cd5bd6ac 677 }
3d8fc6ca 678
a4b6efd4 679 if (argc - optind != 1)
3d8fc6ca 680 {
a4b6efd4
PE
681 if (argc - optind < 1)
682 error (0, 0, _("missing operand after `%s'"), argv[argc - 1]);
683 else
684 error (0, 0, _("extra operand `%s'"), argv[optind + 1]);
0e575721 685 usage (EXIT_FAILURE);
3d8fc6ca 686 }
3d8fc6ca 687
d38a11a6 688 current_file = grammar_file = uniqstr_new (argv[optind]);
9fe5a457 689 MUSCLE_INSERT_C_STRING ("file_name", grammar_file);
3d8fc6ca 690}
67212941
JD
691
692void
693tr (char *s, char from, char to)
694{
695 for (; *s; s++)
696 if (*s == from)
697 *s = to;
698}