]>
Commit | Line | Data |
---|---|---|
1239777d AD |
1 | /* -*- C -*- */ |
2 | /* Parse Bison Skeletons. | |
3 | Copyright (C) 2001 Free Software Foundation, Inc. | |
4 | ||
5 | This file is part of Bison, the GNU Compiler Compiler. | |
6 | ||
7 | Bison is free software; you can redistribute it and/or modify it | |
8 | under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
12 | Bison is distributed in the hope that it will be useful, but | |
13 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with Bison; see the file COPYING. If not, write to the Free | |
19 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
20 | 02111-1307, USA. */ | |
21 | ||
22 | %debug | |
23 | %defines | |
a4b36db4 | 24 | %verbose |
1239777d | 25 | %error-verbose |
aed7fd9b AD |
26 | %locations |
27 | %name-prefix="skel_" | |
28 | %pure-parser | |
9b3add5b | 29 | |
1239777d | 30 | %{ |
9b3add5b RA |
31 | #include "system.h" |
32 | #include "obstack.h" | |
aed7fd9b | 33 | #include "quotearg.h" |
9b3add5b | 34 | #include "files.h" |
aed7fd9b | 35 | #include "getargs.h" |
1239777d AD |
36 | #include "output.h" |
37 | #include "skeleton.h" | |
9b3add5b RA |
38 | #include "muscle_tab.h" |
39 | ||
aed7fd9b AD |
40 | /* Pass the control structure to YYPARSE but not YYLEX (yet?). */ |
41 | #define YYPARSE_PARAM skel_control | |
42 | /* YYPARSE receives SKEL_CONTROL as a void *. Provide a correctly | |
43 | typed access to it. */ | |
44 | #define yycontrol ((skel_control_t *) skel_control) | |
9b3add5b RA |
45 | |
46 | char* prefix = NULL; | |
47 | FILE* parser = NULL; | |
48 | ||
49 | size_t output_line; | |
50 | size_t skeleton_line; | |
51 | ||
aed7fd9b | 52 | static void merror PARAMS ((const char* error)); |
9b3add5b | 53 | |
aed7fd9b AD |
54 | /* Request detailed parse error messages, and pass them to |
55 | YLEVAL_ERROR. */ | |
56 | #undef yyerror | |
57 | #define yyerror(Msg) \ | |
58 | skel_error (yycontrol, &yylloc, Msg) | |
59 | ||
60 | /* When debugging our pure parser, we want to see values and locations | |
61 | of the tokens. */ | |
62 | #define YYPRINT(File, Type, Value) \ | |
63 | yyprint (File, &yylloc, Type, &Value) | |
64 | static void yyprint (FILE *file, const yyltype *loc, | |
65 | int type, const yystype *value); | |
9b3add5b RA |
66 | %} |
67 | ||
68 | %union | |
69 | { | |
a4b36db4 | 70 | char *string; |
9b3add5b | 71 | char character; |
aed7fd9b | 72 | int boolean; |
9b3add5b RA |
73 | } |
74 | ||
24fad99e | 75 | /* Name of a muscle. */ |
aed7fd9b | 76 | %token <string> MUSCLE |
24fad99e | 77 | /* A string dedicated to Bison (%%"foo"). */ |
1239777d | 78 | %token <string> STRING |
24fad99e | 79 | /* Raw data, to output directly. */ |
aed7fd9b | 80 | %token <string> RAW |
24fad99e | 81 | /* Spaces. */ |
aed7fd9b | 82 | %token <string> BLANKS |
24fad99e | 83 | /* Raw data, but char by char. */ |
1239777d | 84 | %token <character> CHARACTER |
9b3add5b RA |
85 | |
86 | %token LINE | |
87 | %token SLINE | |
88 | ||
89 | %token YACC | |
90 | %token SECTION | |
91 | ||
92 | %token GUARDS | |
93 | %token TOKENS | |
94 | %token ACTIONS | |
95 | ||
aed7fd9b | 96 | %type <boolean> section.yacc |
9b3add5b | 97 | |
aed7fd9b | 98 | %start input |
9b3add5b RA |
99 | |
100 | %% | |
aed7fd9b AD |
101 | input: |
102 | { LOCATION_RESET (yylloc) } skeleton | |
103 | ; | |
9b3add5b RA |
104 | |
105 | skeleton : /* Empty. */ { } | |
106 | | section skeleton { } | |
107 | ; | |
108 | ||
109 | section : section.header section.body { } | |
110 | ; | |
111 | ||
24fad99e | 112 | section.header : SECTION BLANKS MUSCLE BLANKS STRING BLANKS section.yacc '\n' |
9b3add5b | 113 | { |
1239777d AD |
114 | char *name = 0; |
115 | char *limit = 0; | |
116 | char *suffix = $5; | |
9b3add5b RA |
117 | |
118 | /* Close the previous parser. */ | |
119 | if (parser) | |
120 | parser = (xfclose (parser), NULL); | |
121 | ||
122 | /* If the following section should be named with the yacc-style, and it's | |
123 | suffix is of the form 'something.h' or 'something.c', then add '.tab' in | |
124 | the middle of the suffix. */ | |
1239777d | 125 | if (tab_extension && $7 && (strsuffix (suffix, ".h") || |
9b3add5b RA |
126 | strsuffix (suffix, ".c"))) |
127 | { | |
128 | size_t prefix_len = strlen (prefix); | |
129 | size_t suffix_len = strlen (suffix); | |
130 | ||
131 | /* Allocate enough space to insert '.tab'. */ | |
132 | name = XMALLOC (char, prefix_len + suffix_len + 5); | |
133 | limit = strrchr (suffix, '.'); | |
134 | if (!limit) | |
135 | limit = suffix; | |
136 | ||
137 | /* Prefix is 'X', suffix is 'Y.Z'. Name will be 'XY.tab.Z'. */ | |
138 | { | |
139 | char* cp = 0; | |
140 | cp = stpcpy (name, prefix); | |
141 | cp = stpncpy (cp, suffix, limit - suffix); | |
142 | cp = stpcpy (cp, ".tab"); | |
143 | cp = stpcpy (cp, limit); | |
144 | } | |
145 | } | |
146 | else | |
147 | name = stringappend (prefix, suffix); | |
1239777d | 148 | |
9b3add5b RA |
149 | /* Prepare the next parser to be output. */ |
150 | parser = xfopen (name, "w"); | |
151 | MUSCLE_INSERT_STRING ("parser-file-name", name); | |
152 | XFREE (name); | |
153 | ||
154 | ++skeleton_line; | |
155 | } | |
156 | ; | |
157 | ||
158 | section.yacc : /* Empty. */ { $$ = 0; } | |
159 | | YACC { $$ = 1; } | |
160 | ; | |
161 | ||
1239777d | 162 | section.body |
9b3add5b RA |
163 | : /* Empty. */ { } |
164 | | section.body '\n' { fputc ('\n', parser); ++output_line; ++skeleton_line; } | |
165 | | section.body LINE { fprintf (parser, "%d", output_line); } | |
166 | | section.body SLINE { fprintf (parser, "%d", skeleton_line); } | |
167 | | section.body GUARDS { guards_output (parser, &output_line); } | |
168 | | section.body TOKENS { token_definitions_output (parser, &output_line); } | |
169 | | section.body ACTIONS { actions_output (parser, &output_line); } | |
170 | | section.body CHARACTER { fputc ($2, parser); } | |
24fad99e AD |
171 | | section.body RAW { fputs ($2, parser); } |
172 | | section.body BLANKS { fputs ($2, parser); } | |
1239777d | 173 | | section.body MUSCLE { |
9b3add5b RA |
174 | const char* value = muscle_find ($2); |
175 | if (value) | |
176 | { | |
177 | fputs (value, parser); | |
178 | output_line += get_lines_number (value); | |
179 | } | |
180 | else | |
181 | { | |
182 | fprintf (parser, "%%{%s}", $2); | |
183 | merror ($2); | |
184 | } | |
185 | } | |
186 | ; | |
9b3add5b | 187 | %% |
aed7fd9b AD |
188 | /*------------------------------------------------------------------. |
189 | | When debugging the parser, display tokens' locations and values. | | |
190 | `------------------------------------------------------------------*/ | |
191 | ||
192 | static void | |
193 | yyprint (FILE *file, | |
194 | const yyltype *loc, int type, const yystype *value) | |
195 | { | |
196 | fputs (" (", file); | |
197 | LOCATION_PRINT (file, *loc); | |
198 | fputs (")", file); | |
199 | switch (type) | |
200 | { | |
201 | case MUSCLE: | |
202 | case STRING: | |
203 | case RAW: | |
204 | case BLANKS: | |
205 | fprintf (file, " = %s", quotearg_style (c_quoting_style, | |
206 | value->string)); | |
207 | break; | |
208 | ||
209 | case CHARACTER: | |
210 | fprintf (file, " = '%c'", value->character); | |
211 | break; | |
212 | ||
213 | case YACC: | |
214 | fprintf (file, " = %s", value->boolean ? "true" : "false"); | |
215 | break; | |
216 | } | |
217 | } | |
9b3add5b | 218 | |
aed7fd9b AD |
219 | |
220 | static void | |
9b3add5b RA |
221 | merror (const char* error) |
222 | { | |
223 | printf ("line %d: %%{%s} undeclared.\n", skeleton_line, error); | |
9b3add5b RA |
224 | } |
225 | ||
aed7fd9b AD |
226 | void |
227 | skel_error (skel_control_t *control, | |
228 | const yyltype *loc, const char *msg) | |
9b3add5b | 229 | { |
aed7fd9b AD |
230 | /* Neutralize GCC warnings for unused parameters. */ |
231 | skel_control_t *c = control; | |
232 | c++; | |
233 | LOCATION_PRINT (stderr, *loc); | |
234 | fprintf (stderr, "%s\n", msg); | |
9b3add5b RA |
235 | } |
236 | ||
1239777d AD |
237 | void |
238 | process_skeleton (const char* skel) | |
9b3add5b | 239 | { |
9b3add5b RA |
240 | /* Compute prefix. Actually, it seems that the processing I need here is |
241 | done in compute_base_names, and the result stored in short_base_name. */ | |
242 | prefix = short_base_name; | |
243 | ||
244 | /* Prepare a few things. */ | |
245 | output_line = 1; | |
246 | skeleton_line = 1; | |
247 | ||
248 | /* Output. */ | |
aed7fd9b | 249 | skel_in = fopen (skel, "r"); |
1109455c AD |
250 | /* FIXME: This is not acceptable for a release. */ |
251 | skel__flex_debug = getenv ("BISON_TRACE_SCAN") ? 1 : 0; | |
252 | skel_debug = getenv ("BISON_TRACE_PARSE") ? 1 : 0; | |
aed7fd9b | 253 | skel_parse (NULL); |
9b3add5b RA |
254 | |
255 | /* Close the last parser. */ | |
256 | if (parser) | |
257 | parser = (xfclose (parser), NULL); | |
258 | } |