]> git.saurik.com Git - bison.git/blame - src/getargs.c
Add support for an Autotest test suite for Bison.
[bison.git] / src / getargs.c
CommitLineData
9f306f2a
AD
1/* Parse command line arguments for bison.
2 Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.
3d8fc6ca 3
9f306f2a 4 This file is part of Bison, the GNU Compiler Compiler.
3d8fc6ca 5
9f306f2a
AD
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.
3d8fc6ca 10
9f306f2a
AD
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.
3d8fc6ca 15
9f306f2a
AD
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. */
3d8fc6ca
RS
20
21#include <stdio.h>
22#include "getopt.h"
23#include "system.h"
24#include "files.h"
25
26int verboseflag;
27int definesflag;
28int debugflag;
29int nolinesflag;
6dd6d212
RS
30int noparserflag = 0;
31int toknumflag = 0;
32int rawtoknumflag = 0;
3d8fc6ca
RS
33char *spec_name_prefix; /* for -p. */
34char *spec_file_prefix; /* for -b. */
35extern int fixed_outfiles;/* for -y */
d2729d44 36
cbd8ffc5 37extern char *program_name;
cbd8ffc5 38
d2729d44 39extern void warns PARAMS((char *, char *)); /* main.c */
4a120d45 40extern void getargs PARAMS((int argc, char *[]));
3d8fc6ca 41
4a120d45 42static struct option longopts[] =
3d8fc6ca
RS
43{
44 {"debug", 0, &debugflag, 1},
45 {"defines", 0, &definesflag, 1},
46 {"file-prefix", 1, 0, 'b'},
47 {"fixed-output-files", 0, &fixed_outfiles, 1},
cbd8ffc5 48 {"help", 0, 0, 'h'},
6dd6d212 49 {"name-prefix", 1, 0, 'p'}, /* was 'a'; apparently unused -wjh */
3d8fc6ca 50 {"no-lines", 0, &nolinesflag, 1},
6dd6d212 51 {"no-parser", 0, &noparserflag, 1},
3d8fc6ca
RS
52 {"output", 1, 0, 'o'},
53 {"output-file", 1, 0, 'o'},
6dd6d212
RS
54 {"raw", 0, &rawtoknumflag, 1},
55 {"token-table", 0, &toknumflag, 1},
3d8fc6ca
RS
56 {"verbose", 0, &verboseflag, 1},
57 {"version", 0, 0, 'V'},
58 {"yacc", 0, &fixed_outfiles, 1},
59 {0, 0, 0, 0}
60};
61
9f306f2a
AD
62/*---------------------------.
63| Display the help message. |
64`---------------------------*/
e79137ac 65
4a120d45 66static void
d2729d44 67usage (FILE *stream)
cbd8ffc5 68{
9f306f2a
AD
69 /* Some efforts were made to ease the translators' task, please
70 continue. */
a0f6b076
AD
71 fputs (_("\
72GNU bison generates parsers for LALR(1) grammars.\n"), stream);
9f306f2a
AD
73 putc ('\n', stream);
74
75 fprintf (stream, _("\
76Usage: %s [OPTION]... FILE\n"), program_name);
77 putc ('\n', stream);
78
79 fputs (_("\
80If a long option shows an argument as mandatory, then it is mandatory\n\
81for the equivalent short option also. Similarly for optional arguments.\n"),
82 stream);
83 putc ('\n', stream);
84
a0f6b076 85 fputs (_("\
9f306f2a
AD
86Operation modes:\n\
87 -h, --help display this help and exit\n\
88 -V, --version output version information and exit\n\
a0f6b076 89 -y, --yacc emulate POSIX yacc\n"), stream);
9f306f2a
AD
90 putc ('\n', stream);
91
a0f6b076 92 fputs (_("\
9f306f2a
AD
93Parser:\n\
94 -t, --debug instrument the parser for debugging\n\
95 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
96 -l, --no-lines don't generate `#line' directives\n\
97 -n, --no-parser generate the tables only\n\
98 -r, --raw number the tokens from 3\n\
99 -k, --token-table include a table of token names\n\
a0f6b076 100"), stream);
9f306f2a
AD
101 putc ('\n', stream);
102
a0f6b076 103 fputs (_("\
9f306f2a
AD
104Output:\n\
105 -d, --defines also produce a header file\n\
106 -v, --verbose also produce an explanation of the automaton\n\
107 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
a0f6b076 108 -o, --output-file=FILE leave output to FILE\n"), stream);
9f306f2a
AD
109 putc ('\n', stream);
110
a0f6b076
AD
111 fputs (_("\
112Report bugs to <bug-bison@gnu.org>.\n"), stream);
cbd8ffc5
DM
113}
114
e79137ac
AD
115
116/*------------------------------.
117| Display the version message. |
118`------------------------------*/
119
120static void
121version (FILE *stream)
122{
123 /* Some efforts were made to ease the translators' task, please
124 continue. */
125 fprintf (stream, _("\
126bison (GNU Bison) %s"), VERSION);
127 putc ('\n', stream);
128 putc ('\n', stream);
129
130 fputs (_("\
131Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"),
132 stream);
133
134 fputs (_("\
135This is free software; see the source for copying conditions. There is NO\n\
136warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
137"),
138 stream);
139}
140
141
142/*----------------------.
143| Process the options. |
144`----------------------*/
145
3d8fc6ca 146void
d2729d44 147getargs (int argc, char *argv[])
3d8fc6ca
RS
148{
149 register int c;
3d8fc6ca
RS
150
151 verboseflag = 0;
152 definesflag = 0;
153 debugflag = 0;
6dd6d212
RS
154 noparserflag = 0;
155 rawtoknumflag = 0;
156 toknumflag = 0;
3d8fc6ca
RS
157 fixed_outfiles = 0;
158
6dd6d212 159 while ((c = getopt_long (argc, argv, "yvdhrltknVo:b:p:", longopts, (int *)0))
3d8fc6ca
RS
160 != EOF)
161 {
3d8fc6ca
RS
162 switch (c)
163 {
164 case 0:
165 /* Certain long options cause getopt_long to return 0. */
166 break;
167
168 case 'y':
169 fixed_outfiles = 1;
170 break;
9f306f2a 171
cbd8ffc5
DM
172 case 'h':
173 usage (stdout);
174 exit (0);
175
3d8fc6ca 176 case 'V':
e79137ac 177 version (stdout);
cbd8ffc5 178 exit (0);
9f306f2a 179
3d8fc6ca
RS
180 case 'v':
181 verboseflag = 1;
182 break;
9f306f2a 183
3d8fc6ca
RS
184 case 'd':
185 definesflag = 1;
186 break;
9f306f2a 187
3d8fc6ca
RS
188 case 'l':
189 nolinesflag = 1;
190 break;
9f306f2a 191
6dd6d212
RS
192 case 'k':
193 toknumflag = 1;
194 break;
195
196 case 'r':
197 rawtoknumflag = 1;
198 break;
9f306f2a 199
6dd6d212
RS
200 case 'n':
201 noparserflag = 1;
202 break;
9f306f2a 203
3d8fc6ca
RS
204 case 't':
205 debugflag = 1;
206 break;
9f306f2a 207
3d8fc6ca
RS
208 case 'o':
209 spec_outfile = optarg;
210 break;
9f306f2a 211
3d8fc6ca
RS
212 case 'b':
213 spec_file_prefix = optarg;
214 break;
9f306f2a 215
3d8fc6ca
RS
216 case 'p':
217 spec_name_prefix = optarg;
218 break;
9f306f2a 219
3d8fc6ca 220 default:
cbd8ffc5 221 usage (stderr);
3d8fc6ca
RS
222 exit (1);
223 }
224 }
225
226 if (optind == argc)
227 {
e79137ac
AD
228 fprintf (stderr, _("%s: no grammar file given\n"), program_name);
229 exit (1);
3d8fc6ca
RS
230 }
231 if (optind < argc - 1)
e79137ac
AD
232 fprintf (stderr, _("%s: extra arguments ignored after `%s'\n"),
233 program_name, argv[optind]);
3d8fc6ca
RS
234
235 infile = argv[optind];
236}