]> git.saurik.com Git - bison.git/blame_incremental - src/scan-skel.l
scan-skel: recognize the @directives directly in scanner
[bison.git] / src / scan-skel.l
... / ...
CommitLineData
1/* Scan Bison Skeletons. -*- C -*-
2
3 Copyright (C) 2001-2012 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20%option nodefault noyywrap noinput nounput never-interactive debug
21%option prefix="skel_" outfile="lex.yy.c"
22
23%{
24/* Work around a bug in flex 2.5.31. See Debian bug 333231
25 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */
26#undef skel_wrap
27#define skel_wrap() 1
28
29#define FLEX_PREFIX(Id) skel_ ## Id
30#include <src/flex-scanner.h>
31
32#include <dirname.h>
33#include <error.h>
34#include <quotearg.h>
35
36#include <src/complain.h>
37#include <src/getargs.h>
38#include <src/files.h>
39#include <src/scan-skel.h>
40
41#define YY_DECL static int skel_lex (void)
42YY_DECL;
43
44typedef void (*at_directive)(int, char**, char **, int*);
45static void at_init (int *argc, char *argv[], at_directive *at_ptr, at_directive fun);
46static void at_basename (int argc, char *argv[], char**, int*);
47static void at_complain (int argc, char *argv[], char**, int*);
48static void at_output (int argc, char *argv[], char **name, int *lineno);
49static void fail_for_at_directive_too_many_args (char const *at_directive_name);
50static void fail_for_at_directive_too_few_args (char const *at_directive_name);
51static void fail_for_invalid_at (char const *at);
52%}
53
54%x SC_AT_DIRECTIVE_ARGS
55%x SC_AT_DIRECTIVE_SKIP_WS
56
57%%
58
59%{
60 int out_lineno PACIFY_CC (= 0);
61 char *out_name = NULL;
62
63 /* Currently, only the @complain directive takes multiple arguments, and
64 never more than 7, with argv[0] being the directive name and argv[1]
65 being the type of complaint to dispatch. */
66#define ARGC_MAX 9
67 int argc = 0;
68 char *argv[ARGC_MAX];
69 at_directive at_ptr = NULL;
70%}
71
72"@@" fputc ('@', yyout);
73"@{" fputc ('[', yyout);
74"@}" fputc (']', yyout);
75"@`" continue; /* Used by b4_cat in ../data/bison.m4. */
76@\n continue;
77
78"@oline@" fprintf (yyout, "%d", out_lineno + 1);
79"@ofile@" fputs (quotearg_style (c_quoting_style, out_name), yyout);
80
81@basename"(" at_init (&argc, argv, &at_ptr, &at_basename);
82@complain"(" at_init (&argc, argv, &at_ptr, &at_complain);
83@output"(" at_init (&argc, argv, &at_ptr, &at_output);
84@[a-z_]+"(" at_init (&argc, argv, &at_ptr, NULL);
85
86 /* This pattern must not match more than the previous @ patterns. */
87@[^@{}`(\n]* fail_for_invalid_at (yytext);
88\n out_lineno++; ECHO;
89[^@\n]+ ECHO;
90
91<INITIAL><<EOF>> {
92 if (out_name)
93 {
94 free (out_name);
95 xfclose (yyout);
96 }
97 return EOF;
98}
99
100<SC_AT_DIRECTIVE_ARGS>
101{
102 [^@]+ STRING_GROW;
103
104 "@@" obstack_1grow (&obstack_for_string, '@');
105 "@{" obstack_1grow (&obstack_for_string, '[');
106 "@}" obstack_1grow (&obstack_for_string, ']');
107 "@`" continue; /* For starting an argument that begins with whitespace. */
108 @\n continue;
109
110 @[,)] {
111 if (argc >= ARGC_MAX)
112 fail_for_at_directive_too_many_args (argv[0]);
113
114 argv[argc++] = obstack_finish0 (&obstack_for_string);
115
116 /* Like M4, skip whitespace after a comma. */
117 if (yytext[1] == ',')
118 BEGIN SC_AT_DIRECTIVE_SKIP_WS;
119 else
120 {
121 if (at_ptr)
122 at_ptr (argc, argv, &out_name, &out_lineno);
123 else
124 fail_for_invalid_at (argv[0]);
125
126 obstack_free (&obstack_for_string, argv[0]);
127 argc = 0;
128 BEGIN INITIAL;
129 }
130 }
131
132 @.? fail_for_invalid_at (yytext);
133}
134
135<SC_AT_DIRECTIVE_SKIP_WS>
136{
137 [ \t\r\n] continue;
138 . yyless (0); BEGIN SC_AT_DIRECTIVE_ARGS;
139}
140
141<SC_AT_DIRECTIVE_ARGS,SC_AT_DIRECTIVE_SKIP_WS>
142{
143 <<EOF>> complain (NULL, fatal, _("unclosed %s directive in skeleton"), argv[0]);
144}
145
146%%
147
148static void
149at_init (int *argc, char *argv[], at_directive *at_ptr, at_directive fun)
150{
151 *at_ptr = fun;
152 yytext[yyleng-1] = '\0';
153 obstack_grow (&obstack_for_string, yytext, yyleng);
154 argv[(*argc)++] = obstack_finish (&obstack_for_string);
155 BEGIN SC_AT_DIRECTIVE_ARGS;
156}
157
158/*------------------------.
159| Scan a Bison skeleton. |
160`------------------------*/
161
162void
163scan_skel (FILE *in)
164{
165 static bool initialized = false;
166 if (!initialized)
167 {
168 initialized = true;
169 obstack_init (&obstack_for_string);
170 }
171 skel_in = in;
172 skel__flex_debug = trace_flag & trace_skeleton;
173 skel_lex ();
174}
175
176void
177skel_scanner_free (void)
178{
179 obstack_free (&obstack_for_string, 0);
180 /* Reclaim Flex's buffers. */
181 yylex_destroy ();
182}
183
184static inline warnings
185flag (const char *arg)
186{
187 /* compare with values issued from b4_error */
188 if (STREQ (arg, "complain"))
189 return complaint;
190 else if (STREQ (arg, "fatal"))
191 return fatal;
192 else if (STREQ (arg, "note"))
193 return silent;
194 else if (STREQ (arg, "warn"))
195 return Wother;
196 else
197 aver (false);
198}
199
200static void
201at_basename (int argc, char *argv[], char **out_namep, int *out_linenop)
202{
203 (void) out_namep;
204 (void) out_linenop;
205 if (2 < argc)
206 fail_for_at_directive_too_many_args (argv[0]);
207 fputs (last_component (argv[1]), yyout);
208}
209
210static void
211at_complain (int argc, char *argv[], char **out_namep, int *out_linenop)
212{
213 static unsigned indent;
214 warnings w = flag (argv[1]);
215 location loc;
216 location *locp = NULL;
217
218 (void) out_namep;
219 (void) out_linenop;
220
221 if (argc < 4)
222 fail_for_at_directive_too_few_args (argv[0]);
223 if (argv[2] && argv[2][0])
224 {
225 boundary_set_from_string (&loc.start, argv[2]);
226 boundary_set_from_string (&loc.end, argv[3]);
227 locp = &loc;
228 }
229 if (w & silent)
230 indent += SUB_INDENT;
231 else
232 indent = 0;
233 complain_args (locp, w, &indent, argc - 3, argv + 3);
234 if (w & silent)
235 indent -= SUB_INDENT;
236}
237
238static void
239at_output (int argc, char *argv[], char **out_namep, int *out_linenop)
240{
241 if (2 < argc)
242 fail_for_at_directive_too_many_args (argv[0]);
243 if (*out_namep)
244 {
245 free (*out_namep);
246 xfclose (yyout);
247 }
248 *out_namep = xstrdup (argv[1]);
249 output_file_name_check (out_namep);
250 yyout = xfopen (*out_namep, "w");
251 *out_linenop = 1;
252}
253
254 static void
255fail_for_at_directive_too_few_args (char const *at_directive_name)
256{
257 complain (NULL, fatal, _("too few arguments for %s directive in skeleton"),
258 at_directive_name);
259}
260
261static void
262fail_for_at_directive_too_many_args (char const *at_directive_name)
263{
264 complain (NULL, fatal, _("too many arguments for %s directive in skeleton"),
265 at_directive_name);
266}
267
268static void
269fail_for_invalid_at (char const *at)
270{
271 complain (NULL, fatal, "invalid @ in skeleton: %s", at);
272}