]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for bison.
2 Copyright 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
32 int locations_flag
= 0;
33 int no_lines_flag
= 0;
34 int no_parser_flag
= 0;
36 int token_table_flag
= 0;
37 int yacc_flag
= 0; /* for -y */
41 const char *skeleton
= NULL
;
42 const char *include
= NULL
;
44 extern char *program_name
;
46 /*----------------------.
47 | --report's handling. |
48 `----------------------*/
50 static const char * const report_args
[] =
52 /* In a series of synonyms, present the most meaningful first, so
53 that argmatch_valid be more readable. */
56 "itemset", "itemsets",
57 "lookahead", "lookaheads",
63 static const int report_types
[] =
66 report_states
, report_states
,
67 report_states
| report_itemsets
, report_states
| report_itemsets
,
68 report_states
| report_lookaheads
, report_states
| report_lookaheads
,
69 report_states
| report_solved_conflicts
,
75 report_argmatch (char *args
)
77 ARGMATCH_ASSERT (report_args
, report_types
);
78 args
= strtok (args
, ",");
81 int report
= XARGMATCH ("--report", args
,
82 report_args
, report_types
);
83 if (report
== report_none
)
84 report_flag
= report_none
;
86 report_flag
|= report
;
88 while ((args
= strtok (NULL
, ",")));
91 /*---------------------------.
92 | Display the help message. |
93 `---------------------------*/
98 /* Some efforts were made to ease the translators' task, please
101 GNU bison generates parsers for LALR(1) grammars.\n"), stream
);
104 fprintf (stream
, _("\
105 Usage: %s [OPTION]... FILE\n"), program_name
);
109 If a long option shows an argument as mandatory, then it is mandatory\n\
110 for the equivalent short option also. Similarly for optional arguments.\n"),
116 -h, --help display this help and exit\n\
117 -V, --version output version information and exit\n\
118 -y, --yacc emulate POSIX yacc\n"), stream
);
123 -S, --skeleton=FILE specify the skeleton to use\n\
124 -t, --debug instrument the parser for debugging\n\
125 --locations enable locations computation\n\
126 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
127 -l, --no-lines don't generate `#line' directives\n\
128 -n, --no-parser generate the tables only\n\
129 -k, --token-table include a table of token names\n\
135 -d, --defines also produce a header file\n\
136 -r, --report=THINGS also produce details on the automaton\n\
137 -v, --verbose same as `--report=state'\n\
138 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
139 -o, --output=FILE leave output to FILE\n\
140 -g, --graph also produce a VCG description of the automaton\n\
145 THINGS is a list of comma separated words that can include:\n\
146 `state' describe the states\n\
147 `itemset' complete the core item sets with their closure\n\
148 `lookahead' explicitly associate lookaheads to items\n\
149 `solved' describe shift/reduce conflicts solving\n\
150 `all' include all the above information\n\
151 `none' disable the report\n\
156 Report bugs to <bug-bison@gnu.org>.\n"), stream
);
160 /*------------------------------.
161 | Display the version message. |
162 `------------------------------*/
165 version (FILE *stream
)
167 /* Some efforts were made to ease the translators' task, please
169 fprintf (stream
, _("bison (GNU Bison) %s"), VERSION
);
171 fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stream
);
175 _("Copyright (C) %d Free Software Foundation, Inc.\n"), 2002);
178 This is free software; see the source for copying conditions. There is NO\n\
179 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
185 /*----------------------.
186 | Process the options. |
187 `----------------------*/
189 /* Under DOS, there is no difference on the case. This can be
190 troublesome when looking for `.tab' etc. */
192 # define AS_FILE_NAME(File) (strlwr (File), (File))
194 # define AS_FILE_NAME(File) (File)
198 getargs (int argc
, char *argv
[])
202 struct option
*longopts
= long_option_table_new ();
203 while ((c
= getopt_long (argc
, argv
, shortopts
, longopts
, NULL
)) != EOF
)
207 /* Certain long options cause getopt_long to return 0. */
223 /* Here, the -g and --graph=FILE options are differentiated. */
225 spec_graph_file
= AS_FILE_NAME (optarg
);
229 report_flag
|= report_states
;
233 skeleton
= AS_FILE_NAME (optarg
);
237 include
= AS_FILE_NAME (optarg
);
241 /* Here, the -d and --defines options are differentiated. */
244 spec_defines_file
= AS_FILE_NAME (optarg
);
252 token_table_flag
= 1;
264 spec_outfile
= AS_FILE_NAME (optarg
);
268 spec_file_prefix
= AS_FILE_NAME (optarg
);
272 spec_name_prefix
= optarg
;
276 report_argmatch (optarg
);
280 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
289 fprintf (stderr
, _("%s: no grammar file given\n"), program_name
);
292 if (optind
< argc
- 1)
293 fprintf (stderr
, _("%s: extra arguments ignored after `%s'\n"),
294 program_name
, argv
[optind
]);
296 infile
= argv
[optind
];