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