]>
git.saurik.com Git - bison.git/blob - 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.
5 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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
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 */
42 int trace_flag
= trace_none
;
44 const char *skeleton
= NULL
;
45 const char *include
= NULL
;
47 extern char *program_name
;
50 /*---------------------.
51 | --trace's handling. |
52 `---------------------*/
54 static const char * const trace_args
[] =
56 /* In a series of synonyms, present the most meaningful first, so
57 that argmatch_valid be more readable. */
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",
73 static const int trace_types
[] =
91 trace_argmatch (char *args
)
93 verify (trace_constraint
, ARGMATCH_CONSTRAINT (trace_args
, trace_types
));
96 args
= strtok (args
, ",");
99 int trace
= XARGMATCH ("--trace", args
,
100 trace_args
, trace_types
);
101 if (trace
== trace_none
)
102 trace_flag
= trace_none
;
106 while ((args
= strtok (NULL
, ",")));
109 trace_flag
= trace_all
;
113 /*----------------------.
114 | --report's handling. |
115 `----------------------*/
117 static const char * const report_args
[] =
119 /* In a series of synonyms, present the most meaningful first, so
120 that argmatch_valid be more readable. */
123 "itemset", "itemsets",
124 "lookahead", "lookaheads",
130 static const int report_types
[] =
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
,
142 report_argmatch (char *args
)
144 verify (report_constraint
, ARGMATCH_CONSTRAINT (report_args
, report_types
));
145 args
= strtok (args
, ",");
148 int report
= XARGMATCH ("--report", args
,
149 report_args
, report_types
);
150 if (report
== report_none
)
151 report_flag
= report_none
;
153 report_flag
|= report
;
155 while ((args
= strtok (NULL
, ",")));
159 /*-------------------------------------------.
160 | Display the help message and exit STATUS. |
161 `-------------------------------------------*/
163 static void usage (int) ATTRIBUTE_NORETURN
;
169 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
173 /* Some efforts were made to ease the translators' task, please
176 GNU bison generates parsers for LALR(1) grammars.\n"), stdout
);
179 fprintf (stdout
, _("\
180 Usage: %s [OPTION]... FILE\n"), program_name
);
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"),
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
);
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\
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\
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\
231 Report bugs to <bug-bison@gnu.org>.\n"), stdout
);
238 /*------------------------------.
239 | Display the version message. |
240 `------------------------------*/
245 /* Some efforts were made to ease the translators' task, please
247 printf (_("bison (GNU Bison) %s"), VERSION
);
249 fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stdout
);
253 _("Copyright (C) %d Free Software Foundation, Inc.\n"), 2002);
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\
263 /*----------------------.
264 | Process the options. |
265 `----------------------*/
267 /* Shorts options. */
268 const char *short_options
= "yvegdhr:ltknVo:b:p:S:T::";
270 static struct option
const long_options
[] =
272 /* Operation modes. */
273 { "help", no_argument
, 0, 'h' },
274 { "version", no_argument
, 0, 'V' },
277 { "name-prefix", required_argument
, 0, 'p' },
278 { "include", required_argument
, 0, 'I' },
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' },
289 { "trace", optional_argument
, 0, 'T' },
292 { "defines", optional_argument
, 0, 'd' },
294 /* Operation modes. */
295 { "fixed-output-files", no_argument
, 0, 'y' },
296 { "yacc", no_argument
, 0, 'y' },
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' },
310 /* Under DOS, there is no difference on the case. This can be
311 troublesome when looking for `.tab' etc. */
313 # define AS_FILE_NAME(File) (strlwr (File), (File))
315 # define AS_FILE_NAME(File) (File)
319 getargs (int argc
, char *argv
[])
323 while ((c
= getopt_long (argc
, argv
, short_options
, long_options
, NULL
)) != EOF
)
327 /* Certain long options cause getopt_long to return 0. */
335 usage (EXIT_SUCCESS
);
342 /* Here, the -g and --graph=FILE options are differentiated. */
344 spec_graph_file
= AS_FILE_NAME (optarg
);
348 report_flag
|= report_states
;
352 skeleton
= AS_FILE_NAME (optarg
);
356 include
= AS_FILE_NAME (optarg
);
360 /* Here, the -d and --defines options are differentiated. */
363 spec_defines_file
= AS_FILE_NAME (optarg
);
371 token_table_flag
= 1;
383 spec_outfile
= AS_FILE_NAME (optarg
);
387 spec_file_prefix
= AS_FILE_NAME (optarg
);
391 spec_name_prefix
= optarg
;
395 report_argmatch (optarg
);
399 trace_argmatch (optarg
);
403 usage (EXIT_FAILURE
);
406 if (argc
- optind
!= 1)
408 if (argc
- optind
< 1)
409 error (0, 0, _("missing operand after `%s'"), argv
[argc
- 1]);
411 error (0, 0, _("extra operand `%s'"), argv
[optind
+ 1]);
412 usage (EXIT_FAILURE
);
415 current_file
= grammar_file
= uniqstr_new (argv
[optind
]);