]> git.saurik.com Git - bison.git/blob - src/getargs.c
* src/bison.simple: Remove YYERROR_VERBOSE using.
[bison.git] / src / getargs.c
1 /* Parse command line arguments for bison.
2 Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.
3
4 This file is part of Bison, the GNU Compiler Compiler.
5
6 Bison is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 Bison is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
20
21 #include <stdio.h>
22 #include "getopt.h"
23 #include "system.h"
24 #include "files.h"
25 #include "complain.h"
26 #include "getargs.h"
27 #include "xalloc.h"
28 #include "options.h"
29
30 int debug_flag = 0;
31 int defines_flag = 0;
32 int locations_flag = 0;
33 int no_lines_flag = 0;
34 int no_parser_flag = 0;
35 int token_table_flag = 0;
36 int verbose_flag = 0;
37 int error_verbose_flag = 0;
38 int yacc_flag = 0; /* for -y */
39 int graph_flag = 0;
40 int trace_flag = 0;
41
42 const char *skeleton = NULL;
43 const char *include = NULL;
44
45 extern char *program_name;
46
47 /*---------------------------.
48 | Display the help message. |
49 `---------------------------*/
50
51 static void
52 usage (FILE *stream)
53 {
54 /* Some efforts were made to ease the translators' task, please
55 continue. */
56 fputs (_("\
57 GNU bison generates parsers for LALR(1) grammars.\n"), stream);
58 putc ('\n', stream);
59
60 fprintf (stream, _("\
61 Usage: %s [OPTION]... FILE\n"), program_name);
62 putc ('\n', stream);
63
64 fputs (_("\
65 If a long option shows an argument as mandatory, then it is mandatory\n\
66 for the equivalent short option also. Similarly for optional arguments.\n"),
67 stream);
68 putc ('\n', stream);
69
70 fputs (_("\
71 Operation modes:\n\
72 -h, --help display this help and exit\n\
73 -V, --version output version information and exit\n\
74 -y, --yacc emulate POSIX yacc\n"), stream);
75 putc ('\n', stream);
76
77 fputs (_("\
78 Parser:\n\
79 -S, --skeleton=FILE specify the skeleton to use\n\
80 -t, --debug instrument the parser for debugging\n\
81 --locations enable locations computation\n\
82 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
83 -l, --no-lines don't generate `#line' directives\n\
84 -n, --no-parser generate the tables only\n\
85 -k, --token-table include a table of token names\n\
86 "), stream);
87 putc ('\n', stream);
88
89 fputs (_("\
90 Output:\n\
91 -d, --defines also produce a header file\n\
92 -v, --verbose also produce an explanation of the automaton\n\
93 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
94 -o, --output=FILE leave output to FILE\n\
95 -g, --graph also produce a VCG description of the automaton\n\
96 "), stream);
97 putc ('\n', stream);
98
99 fputs (_("\
100 Report bugs to <bug-bison@gnu.org>.\n"), stream);
101 }
102
103
104 /*------------------------------.
105 | Display the version message. |
106 `------------------------------*/
107
108 static void
109 version (FILE *stream)
110 {
111 /* Some efforts were made to ease the translators' task, please
112 continue. */
113 fprintf (stream, _("\
114 bison (GNU Bison) %s"), VERSION);
115 putc ('\n', stream);
116 putc ('\n', stream);
117
118 fputs (_("\
119 Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"),
120 stream);
121
122 fputs (_("\
123 This is free software; see the source for copying conditions. There is NO\n\
124 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
125 "),
126 stream);
127 }
128
129
130 /*----------------------.
131 | Process the options. |
132 `----------------------*/
133
134 void
135 getargs (int argc, char *argv[])
136 {
137 int c;
138
139 create_long_option_table ();
140 while ((c = getopt_long (argc, argv, shortopts, longopts, NULL)) != EOF)
141 switch (c)
142 {
143 case 0:
144 /* Certain long options cause getopt_long to return 0. */
145 break;
146
147 case 'y':
148 yacc_flag = 1;
149 break;
150
151 case 'h':
152 usage (stdout);
153 exit (0);
154
155 case 'V':
156 version (stdout);
157 exit (0);
158
159 case 'g':
160 /* Here, the -g and --graph=FILE options are differentiated. */
161 graph_flag = 1;
162 spec_graph_file = optarg;
163 break;
164
165 case 'v':
166 verbose_flag = 1;
167 break;
168
169 case 'e':
170 error_verbose_flag = 1;
171 break;
172
173 case 'S':
174 skeleton = optarg;
175 break;
176
177 case 'I':
178 include = optarg;
179 break;
180
181 case 'd':
182 /* Here, the -d and --defines options are differentiated. */
183 defines_flag = 1;
184 spec_defines_file = optarg;
185 break;
186
187 case 'l':
188 no_lines_flag = 1;
189 break;
190
191 case 'k':
192 token_table_flag = 1;
193 break;
194
195 case 'r':
196 fatal (_("`%s' is no longer supported"), "--raw");
197 break;
198
199 case 'n':
200 no_parser_flag = 1;
201 break;
202
203 case 't':
204 debug_flag = 1;
205 break;
206
207 case 'o':
208 spec_outfile = optarg;
209 break;
210
211 case 'b':
212 spec_file_prefix = optarg;
213 break;
214
215 case 'p':
216 spec_name_prefix = optarg;
217 break;
218
219 default:
220 fprintf (stderr, _("Try `%s --help' for more information.\n"),
221 program_name);
222 exit (1);
223 }
224
225 XFREE (longopts);
226 if (optind == argc)
227 {
228 fprintf (stderr, _("%s: no grammar file given\n"), program_name);
229 exit (1);
230 }
231 if (optind < argc - 1)
232 fprintf (stderr, _("%s: extra arguments ignored after `%s'\n"),
233 program_name, argv[optind]);
234
235 infile = argv[optind];
236 }