]> git.saurik.com Git - bison.git/blame_incremental - src/options.c
Remove `%thong' support as it is undocumented, unused, duplicates
[bison.git] / src / options.c
... / ...
CommitLineData
1/* Concentrate all options use in bison,
2 Copyright 2001, 2002 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
7 it 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,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU 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
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include "system.h"
22#include "getopt.h"
23#include "files.h"
24#include "getargs.h"
25#include "symtab.h"
26#include "gram.h"
27#include "lex.h"
28#include "output.h"
29#include "options.h"
30
31/* Shorts options. */
32const char *shortopts = "yvegdhr:ltknVo:b:p:S:";
33
34/* A CLI option only.
35 Arguments is the policy: `no', `optional', `required'.
36 OptionChar is the value given to the Var if the latter is specified. */
37#undef OPTN
38#define OPTN(OptionString, Arguments, Var, Token, OptionChar) \
39 { opt_cmd_line, \
40 (OptionString), (Arguments##_argument), (Var), (Token), (OptionChar) },
41
42/* A directive only. */
43#undef DRTV
44#define DRTV(DirectiveString, Arguments, Var, Token) \
45 { opt_percent, \
46 (DirectiveString), (Arguments##_argument), (Var), (Token), (0) },
47
48/* An option activated both by a directive and an CLI option. */
49#undef BOTH
50#define BOTH(String, Arguments, Var, Token, OptionChar) \
51 { opt_both, \
52 (String), (Arguments##_argument), (Var), (Token), (OptionChar) },
53
54
55const struct option_table_s option_table[] =
56{
57 /*
58 * Command line.
59 */
60
61 /* Operation modes. */
62 OPTN ("help", no, 0, 0, 'h')
63 OPTN ("version", no, 0, 0, 'V')
64
65 /* Parser. */
66 OPTN ("name-prefix", required, 0, 0, 'p')
67 OPTN ("include", required, 0, 0, 'I')
68
69 /* Output. */
70 OPTN ("file-prefix", required, 0, 0, 'b')
71 OPTN ("output", required, 0, 0, 'o')
72 OPTN ("output-file", required, 0, 0, 'o')
73 OPTN ("graph", optional, 0, 0, 'g')
74 OPTN ("report", required, 0, 0, 'r')
75 OPTN ("verbose", no, 0, 0, 'v')
76
77 /* Hidden. */
78 OPTN ("trace", no, &trace_flag, 0, 1)
79
80 /*
81 * Percent declarations.
82 */
83
84 DRTV ("token", no, NULL, tok_token)
85 DRTV ("term", no, NULL, tok_token)
86 DRTV ("nterm", no, NULL, tok_nterm)
87 DRTV ("type", no, NULL, tok_type)
88 DRTV ("union", no, NULL, tok_union)
89 DRTV ("expect", no, NULL, tok_expect)
90 DRTV ("start", no, NULL, tok_start)
91 DRTV ("left", no, NULL, tok_left)
92 DRTV ("right", no, NULL, tok_right)
93 DRTV ("nonassoc", no, NULL, tok_nonassoc)
94 DRTV ("binary", no, NULL, tok_nonassoc)
95 DRTV ("prec", no, NULL, tok_prec)
96 DRTV ("verbose", no, &report_flag, tok_intopt)
97 DRTV ("error-verbose",no, &error_verbose, tok_intopt)
98
99 /* FIXME: semantic parsers will output an `include' of an
100 output file: be sure that the naem included is indeed the name of
101 the output file. */ /* FIXME Should we activate this options ?
102 */
103 BOTH ("output", required, &spec_outfile, tok_stropt, 'o')
104 BOTH ("file-prefix", required, &spec_file_prefix, tok_stropt, 'b')
105 BOTH ("name-prefix", required, &spec_name_prefix, tok_stropt, 'p')
106
107 DRTV ("define", no, NULL, tok_define)
108 DRTV ("pure-parser", no, &pure_parser, tok_intopt)
109
110 /*
111 * Percent and command line declarations.
112 */
113
114 /* Output. */
115 BOTH ("defines", optional, &defines_flag, tok_intopt, 'd')
116
117 /* Operation modes. */
118 BOTH ("fixed-output-files", no, &yacc_flag, tok_intopt, 'y')
119 BOTH ("yacc", no, &yacc_flag, tok_intopt, 'y')
120
121 /* Parser. */
122 BOTH ("debug", no, &debug_flag, tok_intopt, 't')
123 BOTH ("locations", no, &locations_flag, tok_intopt, 1)
124 BOTH ("no-lines", no, &no_lines_flag, tok_intopt, 'l')
125 BOTH ("no-parser", no, &no_parser_flag, tok_intopt, 'n')
126 BOTH ("raw", no, 0, tok_obsolete, 0)
127 BOTH ("skeleton", required, 0, tok_skel, 'S')
128 BOTH ("token-table", no, &token_table_flag, tok_intopt, 'k')
129
130 {0, 0, 0, 0, 0, 0}
131};
132
133
134/*--------------------------------------------------------.
135| Create the longoptions structure from the option_table, |
136| for the getopt file. |
137`--------------------------------------------------------*/
138
139struct option *
140long_option_table_new ()
141{
142 struct option *res = NULL;
143 int i = 0;
144 int j = 0;
145 int number_options;
146
147 for (number_options = 0; option_table[i].name; i++)
148 if (option_table[i].access == opt_cmd_line
149 || option_table[i].access == opt_both)
150 ++number_options;
151
152 res = XMALLOC (struct option, number_options + 1);
153 for (i = 0; option_table[i].name; i++)
154 if (option_table[i].access == opt_cmd_line
155 || option_table[i].access == opt_both)
156 {
157 res[j].name = option_table[i].name;
158 res[j].has_arg = option_table[i].has_arg;
159 /* When a getopt_long option has an associated variable
160 (member FLAG), then it is set of the VAL member value. In
161 other words, we cannot expect getopt_long to store the
162 argument if we also want a short option. */
163 if (res[j].has_arg == optional_argument)
164 res[j].flag = NULL;
165 else
166 res[j].flag = option_table[i].flag;
167 res[j++].val = option_table[i].val;
168 }
169 res[number_options].name = NULL;
170 res[number_options].has_arg = 0;
171 res[number_options].flag = NULL;
172 res[number_options].val = 0;
173
174 return res;
175}