]>
Commit | Line | Data |
---|---|---|
1 | /* Parse command line arguments for Bison. | |
2 | ||
3 | Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003 | |
4 | Free Software Foundation, Inc. | |
5 | ||
6 | This file is part of Bison, the GNU Compiler Compiler. | |
7 | ||
8 | Bison is free software; you can redistribute it and/or modify it | |
9 | under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2, or (at your option) | |
11 | any later version. | |
12 | ||
13 | Bison is distributed in the hope that it will be useful, but | |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with Bison; see the file COPYING. If not, write to the Free | |
20 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
21 | 02111-1307, USA. */ | |
22 | ||
23 | #include "system.h" | |
24 | ||
25 | #include <argmatch.h> | |
26 | #include <error.h> | |
27 | ||
28 | /* Hack to get <getopt.h> to declare getopt with a prototype. */ | |
29 | #if lint && ! defined __GNU_LIBRARY__ | |
30 | # define __GNU_LIBRARY__ | |
31 | # define HACK_FOR___GNU_LIBRARY___PROTOTYPE 1 | |
32 | #endif | |
33 | ||
34 | #include <getopt.h> | |
35 | ||
36 | #ifdef HACK_FOR___GNU_LIBRARY___PROTOTYPE | |
37 | # undef __GNU_LIBRARY__ | |
38 | # undef HACK_FOR___GNU_LIBRARY___PROTOTYPE | |
39 | #endif | |
40 | ||
41 | #include "complain.h" | |
42 | #include "files.h" | |
43 | #include "getargs.h" | |
44 | #include "uniqstr.h" | |
45 | ||
46 | bool debug_flag; | |
47 | bool defines_flag; | |
48 | bool locations_flag; | |
49 | bool no_lines_flag; | |
50 | bool no_parser_flag; | |
51 | int report_flag = report_none; | |
52 | bool token_table_flag; | |
53 | bool yacc_flag; /* for -y */ | |
54 | bool graph_flag; | |
55 | int trace_flag = trace_none; | |
56 | ||
57 | bool nondeterministic_parser = false; | |
58 | bool glr_parser = false; | |
59 | bool pure_parser = false; | |
60 | ||
61 | const char *skeleton = NULL; | |
62 | const char *include = NULL; | |
63 | ||
64 | extern char *program_name; | |
65 | ||
66 | ||
67 | /*---------------------. | |
68 | | --trace's handling. | | |
69 | `---------------------*/ | |
70 | ||
71 | static const char * const trace_args[] = | |
72 | { | |
73 | /* In a series of synonyms, present the most meaningful first, so | |
74 | that argmatch_valid be more readable. */ | |
75 | "none - no report", | |
76 | "scan - grammar scanner traces", | |
77 | "parse - grammar parser traces", | |
78 | "automaton - contruction of the automaton", | |
79 | "bitsets - use of bitsets", | |
80 | "grammar - reading, reducing of the grammar", | |
81 | "resource - memory consumption (where available)", | |
82 | "sets - grammar sets: firsts, nullable etc.", | |
83 | "tools - m4 invocation and preserve the temporary file", | |
84 | "skeleton - skeleton postprocessing", | |
85 | "time - time consumption", | |
86 | "all - all of the above", | |
87 | 0 | |
88 | }; | |
89 | ||
90 | static const int trace_types[] = | |
91 | { | |
92 | trace_none, | |
93 | trace_scan, | |
94 | trace_parse, | |
95 | trace_automaton, | |
96 | trace_bitsets, | |
97 | trace_grammar, | |
98 | trace_resource, | |
99 | trace_sets, | |
100 | trace_tools, | |
101 | trace_skeleton, | |
102 | trace_time, | |
103 | trace_all | |
104 | }; | |
105 | ||
106 | ||
107 | static void | |
108 | trace_argmatch (char *args) | |
109 | { | |
110 | verify (trace_constraint, ARGMATCH_CONSTRAINT (trace_args, trace_types)); | |
111 | if (args) | |
112 | { | |
113 | args = strtok (args, ","); | |
114 | do | |
115 | { | |
116 | int trace = XARGMATCH ("--trace", args, | |
117 | trace_args, trace_types); | |
118 | if (trace == trace_none) | |
119 | trace_flag = trace_none; | |
120 | else | |
121 | trace_flag |= trace; | |
122 | } | |
123 | while ((args = strtok (NULL, ","))); | |
124 | } | |
125 | else | |
126 | trace_flag = trace_all; | |
127 | } | |
128 | ||
129 | ||
130 | /*----------------------. | |
131 | | --report's handling. | | |
132 | `----------------------*/ | |
133 | ||
134 | static const char * const report_args[] = | |
135 | { | |
136 | /* In a series of synonyms, present the most meaningful first, so | |
137 | that argmatch_valid be more readable. */ | |
138 | "none", | |
139 | "state", "states", | |
140 | "itemset", "itemsets", | |
141 | "lookahead", "lookaheads", | |
142 | "solved", | |
143 | "all", | |
144 | 0 | |
145 | }; | |
146 | ||
147 | static const int report_types[] = | |
148 | { | |
149 | report_none, | |
150 | report_states, report_states, | |
151 | report_states | report_itemsets, report_states | report_itemsets, | |
152 | report_states | report_lookaheads, report_states | report_lookaheads, | |
153 | report_states | report_solved_conflicts, | |
154 | report_all | |
155 | }; | |
156 | ||
157 | ||
158 | static void | |
159 | report_argmatch (char *args) | |
160 | { | |
161 | verify (report_constraint, ARGMATCH_CONSTRAINT (report_args, report_types)); | |
162 | args = strtok (args, ","); | |
163 | do | |
164 | { | |
165 | int report = XARGMATCH ("--report", args, | |
166 | report_args, report_types); | |
167 | if (report == report_none) | |
168 | report_flag = report_none; | |
169 | else | |
170 | report_flag |= report; | |
171 | } | |
172 | while ((args = strtok (NULL, ","))); | |
173 | } | |
174 | ||
175 | ||
176 | /*-------------------------------------------. | |
177 | | Display the help message and exit STATUS. | | |
178 | `-------------------------------------------*/ | |
179 | ||
180 | static void usage (int) ATTRIBUTE_NORETURN; | |
181 | ||
182 | static void | |
183 | usage (int status) | |
184 | { | |
185 | if (status != 0) | |
186 | fprintf (stderr, _("Try `%s --help' for more information.\n"), | |
187 | program_name); | |
188 | else | |
189 | { | |
190 | /* Some efforts were made to ease the translators' task, please | |
191 | continue. */ | |
192 | fputs (_("\ | |
193 | GNU bison generates parsers for LALR(1) grammars.\n"), stdout); | |
194 | putc ('\n', stdout); | |
195 | ||
196 | fprintf (stdout, _("\ | |
197 | Usage: %s [OPTION]... FILE\n"), program_name); | |
198 | putc ('\n', stdout); | |
199 | ||
200 | fputs (_("\ | |
201 | If a long option shows an argument as mandatory, then it is mandatory\n\ | |
202 | for the equivalent short option also. Similarly for optional arguments.\n"), | |
203 | stdout); | |
204 | putc ('\n', stdout); | |
205 | ||
206 | fputs (_("\ | |
207 | Operation modes:\n\ | |
208 | -h, --help display this help and exit\n\ | |
209 | -V, --version output version information and exit\n\ | |
210 | -y, --yacc emulate POSIX yacc\n"), stdout); | |
211 | putc ('\n', stdout); | |
212 | ||
213 | fputs (_("\ | |
214 | Parser:\n\ | |
215 | -S, --skeleton=FILE specify the skeleton to use\n\ | |
216 | -t, --debug instrument the parser for debugging\n\ | |
217 | --locations enable locations computation\n\ | |
218 | -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\ | |
219 | -l, --no-lines don't generate `#line' directives\n\ | |
220 | -n, --no-parser generate the tables only\n\ | |
221 | -k, --token-table include a table of token names\n\ | |
222 | "), stdout); | |
223 | putc ('\n', stdout); | |
224 | ||
225 | fputs (_("\ | |
226 | Output:\n\ | |
227 | -d, --defines also produce a header file\n\ | |
228 | -r, --report=THINGS also produce details on the automaton\n\ | |
229 | -v, --verbose same as `--report=state'\n\ | |
230 | -b, --file-prefix=PREFIX specify a PREFIX for output files\n\ | |
231 | -o, --output=FILE leave output to FILE\n\ | |
232 | -g, --graph also produce a VCG description of the automaton\n\ | |
233 | "), stdout); | |
234 | putc ('\n', stdout); | |
235 | ||
236 | fputs (_("\ | |
237 | THINGS is a list of comma separated words that can include:\n\ | |
238 | `state' describe the states\n\ | |
239 | `itemset' complete the core item sets with their closure\n\ | |
240 | `lookahead' explicitly associate lookaheads to items\n\ | |
241 | `solved' describe shift/reduce conflicts solving\n\ | |
242 | `all' include all the above information\n\ | |
243 | `none' disable the report\n\ | |
244 | "), stdout); | |
245 | putc ('\n', stdout); | |
246 | ||
247 | fputs (_("\ | |
248 | Report bugs to <bug-bison@gnu.org>.\n"), stdout); | |
249 | } | |
250 | ||
251 | exit (status); | |
252 | } | |
253 | ||
254 | ||
255 | /*------------------------------. | |
256 | | Display the version message. | | |
257 | `------------------------------*/ | |
258 | ||
259 | static void | |
260 | version (void) | |
261 | { | |
262 | /* Some efforts were made to ease the translators' task, please | |
263 | continue. */ | |
264 | printf (_("bison (GNU Bison) %s"), VERSION); | |
265 | putc ('\n', stdout); | |
266 | fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stdout); | |
267 | putc ('\n', stdout); | |
268 | ||
269 | fprintf (stdout, | |
270 | _("Copyright (C) %d Free Software Foundation, Inc.\n"), 2003); | |
271 | ||
272 | fputs (_("\ | |
273 | This is free software; see the source for copying conditions. There is NO\n\ | |
274 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ | |
275 | "), | |
276 | stdout); | |
277 | } | |
278 | ||
279 | ||
280 | /*----------------------. | |
281 | | Process the options. | | |
282 | `----------------------*/ | |
283 | ||
284 | /* Shorts options. */ | |
285 | const char *short_options = "yvegdhr:ltknVo:b:p:S:T::"; | |
286 | ||
287 | /* Values for long options that do not have single-letter equivalents. */ | |
288 | enum | |
289 | { | |
290 | LOCATIONS_OPTION = CHAR_MAX + 1 | |
291 | }; | |
292 | ||
293 | static struct option const long_options[] = | |
294 | { | |
295 | /* Operation modes. */ | |
296 | { "help", no_argument, 0, 'h' }, | |
297 | { "version", no_argument, 0, 'V' }, | |
298 | ||
299 | /* Parser. */ | |
300 | { "name-prefix", required_argument, 0, 'p' }, | |
301 | { "include", required_argument, 0, 'I' }, | |
302 | ||
303 | /* Output. */ | |
304 | { "file-prefix", required_argument, 0, 'b' }, | |
305 | { "output", required_argument, 0, 'o' }, | |
306 | { "output-file", required_argument, 0, 'o' }, | |
307 | { "graph", optional_argument, 0, 'g' }, | |
308 | { "report", required_argument, 0, 'r' }, | |
309 | { "verbose", no_argument, 0, 'v' }, | |
310 | ||
311 | /* Hidden. */ | |
312 | { "trace", optional_argument, 0, 'T' }, | |
313 | ||
314 | /* Output. */ | |
315 | { "defines", optional_argument, 0, 'd' }, | |
316 | ||
317 | /* Operation modes. */ | |
318 | { "fixed-output-files", no_argument, 0, 'y' }, | |
319 | { "yacc", no_argument, 0, 'y' }, | |
320 | ||
321 | /* Parser. */ | |
322 | { "debug", no_argument, 0, 't' }, | |
323 | { "locations", no_argument, 0, LOCATIONS_OPTION }, | |
324 | { "no-lines", no_argument, 0, 'l' }, | |
325 | { "no-parser", no_argument, 0, 'n' }, | |
326 | { "raw", no_argument, 0, 0 }, | |
327 | { "skeleton", required_argument, 0, 'S' }, | |
328 | { "token-table", no_argument, 0, 'k' }, | |
329 | ||
330 | {0, 0, 0, 0} | |
331 | }; | |
332 | ||
333 | /* Under DOS, there is no difference on the case. This can be | |
334 | troublesome when looking for `.tab' etc. */ | |
335 | #ifdef MSDOS | |
336 | # define AS_FILE_NAME(File) (strlwr (File), (File)) | |
337 | #else | |
338 | # define AS_FILE_NAME(File) (File) | |
339 | #endif | |
340 | ||
341 | void | |
342 | getargs (int argc, char *argv[]) | |
343 | { | |
344 | int c; | |
345 | ||
346 | while ((c = getopt_long (argc, argv, short_options, long_options, NULL)) | |
347 | != -1) | |
348 | switch (c) | |
349 | { | |
350 | case 0: | |
351 | /* Certain long options cause getopt_long to return 0. */ | |
352 | break; | |
353 | ||
354 | case 'y': | |
355 | yacc_flag = true; | |
356 | break; | |
357 | ||
358 | case 'h': | |
359 | usage (EXIT_SUCCESS); | |
360 | ||
361 | case 'V': | |
362 | version (); | |
363 | exit (EXIT_SUCCESS); | |
364 | ||
365 | case 'g': | |
366 | /* Here, the -g and --graph=FILE options are differentiated. */ | |
367 | graph_flag = true; | |
368 | if (optarg) | |
369 | spec_graph_file = AS_FILE_NAME (optarg); | |
370 | break; | |
371 | ||
372 | case 'v': | |
373 | report_flag |= report_states; | |
374 | break; | |
375 | ||
376 | case 'S': | |
377 | skeleton = AS_FILE_NAME (optarg); | |
378 | break; | |
379 | ||
380 | case 'I': | |
381 | include = AS_FILE_NAME (optarg); | |
382 | break; | |
383 | ||
384 | case 'd': | |
385 | /* Here, the -d and --defines options are differentiated. */ | |
386 | defines_flag = true; | |
387 | if (optarg) | |
388 | spec_defines_file = AS_FILE_NAME (optarg); | |
389 | break; | |
390 | ||
391 | case 'l': | |
392 | no_lines_flag = true; | |
393 | break; | |
394 | ||
395 | case LOCATIONS_OPTION: | |
396 | locations_flag = true; | |
397 | break; | |
398 | ||
399 | case 'k': | |
400 | token_table_flag = true; | |
401 | break; | |
402 | ||
403 | case 'n': | |
404 | no_parser_flag = true; | |
405 | break; | |
406 | ||
407 | case 't': | |
408 | debug_flag = true; | |
409 | break; | |
410 | ||
411 | case 'o': | |
412 | spec_outfile = AS_FILE_NAME (optarg); | |
413 | break; | |
414 | ||
415 | case 'b': | |
416 | spec_file_prefix = AS_FILE_NAME (optarg); | |
417 | break; | |
418 | ||
419 | case 'p': | |
420 | spec_name_prefix = optarg; | |
421 | break; | |
422 | ||
423 | case 'r': | |
424 | report_argmatch (optarg); | |
425 | break; | |
426 | ||
427 | case 'T': | |
428 | trace_argmatch (optarg); | |
429 | break; | |
430 | ||
431 | default: | |
432 | usage (EXIT_FAILURE); | |
433 | } | |
434 | ||
435 | if (argc - optind != 1) | |
436 | { | |
437 | if (argc - optind < 1) | |
438 | error (0, 0, _("missing operand after `%s'"), argv[argc - 1]); | |
439 | else | |
440 | error (0, 0, _("extra operand `%s'"), argv[optind + 1]); | |
441 | usage (EXIT_FAILURE); | |
442 | } | |
443 | ||
444 | current_file = grammar_file = uniqstr_new (argv[optind]); | |
445 | } |