]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for Bison.
3 Copyright (C) 1984, 1986, 1989, 1992, 2000-2011 Free Software
6 This file is part of Bison, the GNU Compiler Compiler.
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.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include <c-strcase.h>
27 #include <configmake.h>
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
39 #ifdef HACK_FOR___GNU_LIBRARY___PROTOTYPE
40 # undef __GNU_LIBRARY__
41 # undef HACK_FOR___GNU_LIBRARY___PROTOTYPE
47 #include "muscle-tab.h"
56 bool token_table_flag
;
57 bool yacc_flag
; /* for -y */
59 bool error_verbose
= false;
61 bool nondeterministic_parser
= false;
62 bool glr_parser
= false;
64 int report_flag
= report_none
;
65 int trace_flag
= trace_none
;
66 int warnings_flag
= warnings_other
;
68 static struct bison_language
const valid_languages
[] = {
69 { "c", "c-skel.m4", ".c", ".h", true },
70 { "c++", "c++-skel.m4", ".cc", ".hh", true },
71 { "java", "java-skel.m4", ".java", ".java", false },
72 { "", "", "", "", false }
75 int skeleton_prio
= default_prio
;
76 const char *skeleton
= NULL
;
77 int language_prio
= default_prio
;
78 struct bison_language
const *language
= &valid_languages
[0];
79 const char *include
= NULL
;
84 /** Decode an option's set of keys.
86 * \param option option being decoded.
87 * \param keys array of valid subarguments.
88 * \param values array of corresponding (int) values.
89 * \param all the all value.
90 * \param flags the flags to update
91 * \param args comma separated list of effective subarguments to decode.
92 * If 0, then activate all the flags.
94 * If VALUE != 0 then KEY sets flags and no-KEY clears them.
95 * If VALUE == 0 then KEY clears all flags from \c all and no-KEY sets all
96 * flags from \c all. Thus no-none = all and no-all = none.
99 flags_argmatch (const char *option
,
100 const char * const keys
[], const int values
[],
101 int all
, int *flags
, char *args
)
105 args
= strtok (args
, ",");
108 int no
= strncmp (args
, "no-", 3) == 0 ? 3 : 0;
109 int value
= XARGMATCH (option
, args
+ no
, keys
, values
);
124 args
= strtok (NULL
, ",");
131 /** Decode a set of sub arguments.
133 * \param FlagName the flag familly to update.
134 * \param Args the effective sub arguments to decode.
136 * \arg FlagName_args the list of keys.
137 * \arg FlagName_types the list of values.
138 * \arg FlagName_all the all value.
139 * \arg FlagName_flag the flag to update.
141 #define FLAGS_ARGMATCH(FlagName, Args) \
142 flags_argmatch ("--" #FlagName, FlagName ## _args, FlagName ## _types, \
143 FlagName ## _all, &FlagName ## _flag, Args)
146 /*----------------------.
147 | --report's handling. |
148 `----------------------*/
150 static const char * const report_args
[] =
152 /* In a series of synonyms, present the most meaningful first, so
153 that argmatch_valid be more readable. */
156 "itemset", "itemsets",
157 "lookahead", "lookaheads", "look-ahead",
163 static const int report_types
[] =
166 report_states
, report_states
,
167 report_states
| report_itemsets
, report_states
| report_itemsets
,
168 report_states
| report_lookahead_tokens
,
169 report_states
| report_lookahead_tokens
,
170 report_states
| report_lookahead_tokens
,
171 report_states
| report_solved_conflicts
,
175 ARGMATCH_VERIFY (report_args
, report_types
);
178 /*---------------------.
179 | --trace's handling. |
180 `---------------------*/
182 static const char * const trace_args
[] =
184 /* In a series of synonyms, present the most meaningful first, so
185 that argmatch_valid be more readable. */
187 "scan - grammar scanner traces",
188 "parse - grammar parser traces",
189 "automaton - construction of the automaton",
190 "bitsets - use of bitsets",
191 "grammar - reading, reducing the grammar",
192 "resource - memory consumption (where available)",
193 "sets - grammar sets: firsts, nullable etc.",
194 "muscles - m4 definitions passed to the skeleton",
195 "tools - m4 invocation",
197 "skeleton - skeleton postprocessing",
198 "time - time consumption",
199 "ielr - IELR conversion",
200 "all - all of the above",
204 static const int trace_types
[] =
223 ARGMATCH_VERIFY (trace_args
, trace_types
);
226 /*------------------------.
227 | --warnings's handling. |
228 `------------------------*/
230 static const char * const warnings_args
[] =
232 /* In a series of synonyms, present the most meaningful first, so
233 that argmatch_valid be more readable. */
234 "none - no warnings",
235 "midrule-values - unset or unused midrule values",
236 "yacc - incompatibilities with POSIX Yacc",
237 "other - all other warnings",
238 "all - all of the above",
239 "error - warnings are errors",
243 static const int warnings_types
[] =
246 warnings_midrule_values
,
253 ARGMATCH_VERIFY (warnings_args
, warnings_types
);
256 /*-------------------------------------------.
257 | Display the help message and exit STATUS. |
258 `-------------------------------------------*/
260 static void usage (int) ATTRIBUTE_NORETURN
;
266 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
270 /* For ../build-aux/cross-options.pl to work, use the format:
271 ^ -S, --long[=ARGS] (whitespace)
272 A --long option is required.
273 Otherwise, add exceptions to ../build-aux/cross-options.pl. */
275 printf (_("Usage: %s [OPTION]... FILE\n"), program_name
);
277 Generate a deterministic LR or generalized LR (GLR) parser employing\n\
278 LALR(1), IELR(1), or canonical LR(1) parser tables. IELR(1) and\n\
279 canonical LR(1) support is experimental.\n\
284 Mandatory arguments to long options are mandatory for short options too.\n\
287 The same is true for optional arguments.\n\
293 -h, --help display this help and exit\n\
294 -V, --version output version information and exit\n\
295 --print-localedir output directory containing locale-dependent data\n\
296 --print-datadir output directory containing skeletons and XSLT\n\
297 -y, --yacc emulate POSIX Yacc\n\
298 -W, --warnings[=CATEGORY] report the warnings falling in CATEGORY\n\
304 -L, --language=LANGUAGE specify the output programming language\n\
305 (this is an experimental feature)\n\
306 -S, --skeleton=FILE specify the skeleton to use\n\
307 -t, --debug instrument the parser for debugging\n\
308 --locations enable location support\n\
309 -D, --define=NAME[=VALUE] similar to `%define NAME \"VALUE\"'\n\
310 -F, --force-define=NAME[=VALUE] override `%define NAME \"VALUE\"'\n\
311 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
312 -l, --no-lines don't generate `#line' directives\n\
313 -k, --token-table include a table of token names\n\
317 /* Keep -d and --defines separate so that ../build-aux/cross-options.pl
318 * won't assume that -d also takes an argument. */
321 --defines[=FILE] also produce a header file\n\
322 -d likewise but cannot specify FILE (for POSIX Yacc)\n\
323 -r, --report=THINGS also produce details on the automaton\n\
324 --report-file=FILE write report to FILE\n\
325 -v, --verbose same as `--report=state'\n\
326 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
327 -o, --output=FILE leave output to FILE\n\
328 -g, --graph[=FILE] also output a graph of the automaton\n\
329 -x, --xml[=FILE] also output an XML report of the automaton\n\
330 (the XML schema is experimental)\n\
335 Warning categories include:\n\
336 `midrule-values' unset or unused midrule values\n\
337 `yacc' incompatibilities with POSIX Yacc\n\
338 `other' all other warnings (enabled by default)\n\
339 `all' all the warnings\n\
340 `no-CATEGORY' turn off warnings in CATEGORY\n\
341 `none' turn off all the warnings\n\
342 `error' treat warnings as errors\n\
347 THINGS is a list of comma separated words that can include:\n\
348 `state' describe the states\n\
349 `itemset' complete the core item sets with their closure\n\
350 `lookahead' explicitly associate lookahead tokens to items\n\
351 `solved' describe shift/reduce conflicts solving\n\
352 `all' include all the above information\n\
353 `none' disable the report\n\
356 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
363 /*------------------------------.
364 | Display the version message. |
365 `------------------------------*/
370 /* Some efforts were made to ease the translators' task, please
372 printf (_("bison (GNU Bison) %s"), VERSION
);
374 fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stdout
);
378 _("Copyright (C) %d Free Software Foundation, Inc.\n"),
379 PACKAGE_COPYRIGHT_YEAR
);
382 This is free software; see the source for copying conditions. There is NO\n\
383 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
389 /*-------------------------------------.
390 | --skeleton and --language handling. |
391 `--------------------------------------*/
394 skeleton_arg (char const *arg
, int prio
, location loc
)
396 if (prio
< skeleton_prio
)
398 skeleton_prio
= prio
;
401 else if (prio
== skeleton_prio
)
402 complain_at (loc
, _("multiple skeleton declarations are invalid"));
406 language_argmatch (char const *arg
, int prio
, location loc
)
410 if (prio
< language_prio
)
413 for (i
= 0; valid_languages
[i
].language
[0]; i
++)
414 if (c_strcasecmp (arg
, valid_languages
[i
].language
) == 0)
416 language_prio
= prio
;
417 language
= &valid_languages
[i
];
420 msg
= _("invalid language `%s'");
422 else if (language_prio
== prio
)
423 msg
= _("multiple language declarations are invalid");
427 complain_at (loc
, msg
, arg
);
430 /*----------------------.
431 | Process the options. |
432 `----------------------*/
435 Should be computed from long_options. */
436 static char const short_options
[] =
461 /* Values for long options that do not have single-letter equivalents. */
464 LOCATIONS_OPTION
= CHAR_MAX
+ 1,
465 PRINT_LOCALEDIR_OPTION
,
466 PRINT_DATADIR_OPTION
,
470 static struct option
const long_options
[] =
472 /* Operation modes. */
473 { "help", no_argument
, 0, 'h' },
474 { "version", no_argument
, 0, 'V' },
475 { "print-localedir", no_argument
, 0, PRINT_LOCALEDIR_OPTION
},
476 { "print-datadir", no_argument
, 0, PRINT_DATADIR_OPTION
},
477 { "warnings", optional_argument
, 0, 'W' },
480 { "name-prefix", required_argument
, 0, 'p' },
481 { "include", required_argument
, 0, 'I' },
484 { "file-prefix", required_argument
, 0, 'b' },
485 { "output", required_argument
, 0, 'o' },
486 { "output-file", required_argument
, 0, 'o' },
487 { "graph", optional_argument
, 0, 'g' },
488 { "xml", optional_argument
, 0, 'x' },
489 { "report", required_argument
, 0, 'r' },
490 { "report-file", required_argument
, 0, REPORT_FILE_OPTION
},
491 { "verbose", no_argument
, 0, 'v' },
494 { "trace", optional_argument
, 0, 'T' },
497 { "defines", optional_argument
, 0, 'd' },
499 /* Operation modes. */
500 { "fixed-output-files", no_argument
, 0, 'y' },
501 { "yacc", no_argument
, 0, 'y' },
504 { "debug", no_argument
, 0, 't' },
505 { "define", required_argument
, 0, 'D' },
506 { "force-define", required_argument
, 0, 'F' },
507 { "locations", no_argument
, 0, LOCATIONS_OPTION
},
508 { "no-lines", no_argument
, 0, 'l' },
509 { "raw", no_argument
, 0, 0 },
510 { "skeleton", required_argument
, 0, 'S' },
511 { "language", required_argument
, 0, 'L' },
512 { "token-table", no_argument
, 0, 'k' },
517 /* Under DOS, there is no difference on the case. This can be
518 troublesome when looking for `.tab' etc. */
520 # define AS_FILE_NAME(File) (strlwr (File), (File))
522 # define AS_FILE_NAME(File) (File)
525 /* Build a location for the current command line argument. */
528 command_line_location (void)
531 /* "<command line>" is used in GCC's messages about -D. */
532 boundary_set (&res
.start
, uniqstr_new ("<command line>"), optind
, -1);
539 getargs (int argc
, char *argv
[])
543 while ((c
= getopt_long (argc
, argv
, short_options
, long_options
, NULL
))
547 /* ASCII Sorting for short options (i.e., upper case then
548 lower case), and then long-only options. */
551 /* Certain long options cause getopt_long to return 0. */
554 case 'D': /* -DNAME[=VALUE]. */
555 case 'F': /* -FNAME[=VALUE]. */
558 char* value
= strchr (optarg
, '=');
561 muscle_percent_define_insert (name
, command_line_location (),
563 c
== 'D' ? MUSCLE_PERCENT_DEFINE_D
564 : MUSCLE_PERCENT_DEFINE_F
);
569 include
= AS_FILE_NAME (optarg
);
573 language_argmatch (optarg
, command_line_prio
,
574 command_line_location ());
578 skeleton_arg (AS_FILE_NAME (optarg
), command_line_prio
,
579 command_line_location ());
583 FLAGS_ARGMATCH (trace
, optarg
);
591 FLAGS_ARGMATCH (warnings
, optarg
);
595 spec_file_prefix
= AS_FILE_NAME (optarg
);
599 /* Here, the -d and --defines options are differentiated. */
602 spec_defines_file
= xstrdup (AS_FILE_NAME (optarg
));
608 spec_graph_file
= xstrdup (AS_FILE_NAME (optarg
));
612 usage (EXIT_SUCCESS
);
615 token_table_flag
= true;
619 no_lines_flag
= true;
623 spec_outfile
= AS_FILE_NAME (optarg
);
627 spec_name_prefix
= optarg
;
631 FLAGS_ARGMATCH (report
, optarg
);
639 report_flag
|= report_states
;
645 spec_xml_file
= xstrdup (AS_FILE_NAME (optarg
));
652 case LOCATIONS_OPTION
:
653 locations_flag
= true;
656 case PRINT_LOCALEDIR_OPTION
:
657 printf ("%s\n", LOCALEDIR
);
660 case PRINT_DATADIR_OPTION
:
661 printf ("%s\n", compute_pkgdatadir ());
664 case REPORT_FILE_OPTION
:
665 spec_verbose_file
= xstrdup (AS_FILE_NAME (optarg
));
669 usage (EXIT_FAILURE
);
672 if (argc
- optind
!= 1)
674 if (argc
- optind
< 1)
675 error (0, 0, _("missing operand after `%s'"), argv
[argc
- 1]);
677 error (0, 0, _("extra operand `%s'"), argv
[optind
+ 1]);
678 usage (EXIT_FAILURE
);
681 current_file
= grammar_file
= uniqstr_new (argv
[optind
]);
682 MUSCLE_INSERT_C_STRING ("file_name", grammar_file
);
686 tr (char *s
, char from
, char to
)