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