]> git.saurik.com Git - bison.git/blob - src/files.c
regen.
[bison.git] / src / files.c
1 /* Open and close files for Bison.
2
3 Copyright (C) 1984, 1986, 1989, 1992, 2000-2012 Free Software
4 Foundation, Inc.
5
6 This file is part of Bison, the GNU Compiler Compiler.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include <config.h>
22 #include "system.h"
23
24 #include <error.h>
25 #include <dirname.h>
26 #include <get-errno.h>
27 #include <quote.h>
28 #include <quotearg.h>
29 #include <stdio-safer.h>
30 #include <xstrndup.h>
31
32 #include "complain.h"
33 #include "files.h"
34 #include "getargs.h"
35 #include "gram.h"
36
37 /* Initializing some values below (such SPEC_NAME_PREFIX to `yy') is
38 tempting, but don't do that: for the time being our handling of the
39 %directive vs --option leaves precedence to the options by deciding
40 that if a %directive sets a variable which is really set (i.e., not
41 NULL), then the %directive is ignored. As a result, %name-prefix,
42 for instance, will not be honored. */
43
44 char const *spec_outfile = NULL; /* for -o. */
45 char const *spec_file_prefix = NULL; /* for -b. */
46 char const *spec_name_prefix = NULL; /* for -p. */
47 char *spec_verbose_file = NULL; /* for --verbose. */
48 char *spec_graph_file = NULL; /* for -g. */
49 char *spec_xml_file = NULL; /* for -x. */
50 char *spec_defines_file = NULL; /* for --defines. */
51 char *parser_file_name;
52
53 /* All computed output file names. */
54 static char **file_names = NULL;
55 static int file_names_count = 0;
56
57 uniqstr grammar_file = NULL;
58 uniqstr current_file = NULL;
59
60 /* If --output=dir/foo.c was specified,
61 DIR_PREFIX is `dir/' and ALL_BUT_EXT and ALL_BUT_TAB_EXT are `dir/foo'.
62
63 If --output=dir/foo.tab.c was specified, DIR_PREFIX is `dir/',
64 ALL_BUT_EXT is `dir/foo.tab', and ALL_BUT_TAB_EXT is `dir/foo'.
65
66 If --output was not specified but --file-prefix=dir/foo was specified,
67 ALL_BUT_EXT = `foo.tab' and ALL_BUT_TAB_EXT = `foo'.
68
69 If neither --output nor --file was specified but the input grammar
70 is name dir/foo.y, ALL_BUT_EXT and ALL_BUT_TAB_EXT are `foo'.
71
72 If neither --output nor --file was specified, DIR_PREFIX is the
73 empty string (meaning the current directory); otherwise it is
74 `dir/'. */
75
76 char *all_but_ext;
77 static char *all_but_tab_ext;
78 char *dir_prefix;
79
80 /* C source file extension (the parser source). */
81 static char *src_extension = NULL;
82 /* Header file extension (if option ``-d'' is specified). */
83 static char *header_extension = NULL;
84 \f
85 /*-----------------------------------------------------------------.
86 | Return a newly allocated string composed of the concatenation of |
87 | STR1, and STR2. |
88 `-----------------------------------------------------------------*/
89
90 static char *
91 concat2 (char const *str1, char const *str2)
92 {
93 size_t len = strlen (str1) + strlen (str2);
94 char *res = xmalloc (len + 1);
95 char *cp;
96 cp = stpcpy (res, str1);
97 cp = stpcpy (cp, str2);
98 return res;
99 }
100
101 /*-----------------------------------------------------------------.
102 | Try to open file NAME with mode MODE, and print an error message |
103 | if fails. |
104 `-----------------------------------------------------------------*/
105
106 FILE *
107 xfopen (const char *name, const char *mode)
108 {
109 FILE *ptr;
110
111 ptr = fopen_safer (name, mode);
112 if (!ptr)
113 error (EXIT_FAILURE, get_errno (),
114 _("%s: cannot open"), quotearg_colon (name));
115
116 return ptr;
117 }
118
119 /*-------------------------------------------------------------.
120 | Try to close file PTR, and print an error message if fails. |
121 `-------------------------------------------------------------*/
122
123 void
124 xfclose (FILE *ptr)
125 {
126 if (ptr == NULL)
127 return;
128
129 if (ferror (ptr))
130 error (EXIT_FAILURE, 0, _("input/output error"));
131
132 if (fclose (ptr) != 0)
133 error (EXIT_FAILURE, get_errno (), _("cannot close file"));
134 }
135 \f
136
137 FILE *
138 xfdopen (int fd, char const *mode)
139 {
140 FILE *res = fdopen (fd, mode);
141 if (! res)
142 error (EXIT_FAILURE, get_errno (), "fdopen");
143 return res;
144 }
145
146 /*------------------------------------------------------------------.
147 | Compute ALL_BUT_EXT, ALL_BUT_TAB_EXT and output files extensions. |
148 `------------------------------------------------------------------*/
149
150 /* Compute extensions from the grammar file extension. */
151 static void
152 compute_exts_from_gf (const char *ext)
153 {
154 if (STREQ (ext, ".y"))
155 {
156 src_extension = xstrdup (language->src_extension);
157 header_extension = xstrdup (language->header_extension);
158 }
159 else
160 {
161 src_extension = xstrdup (ext);
162 header_extension = xstrdup (ext);
163 tr (src_extension, 'y', 'c');
164 tr (src_extension, 'Y', 'C');
165 tr (header_extension, 'y', 'h');
166 tr (header_extension, 'Y', 'H');
167 }
168 }
169
170 /* Compute extensions from the given c source file extension. */
171 static void
172 compute_exts_from_src (const char *ext)
173 {
174 /* We use this function when the user specifies `-o' or `--output',
175 so the extenions must be computed unconditionally from the file name
176 given by this option. */
177 src_extension = xstrdup (ext);
178 header_extension = xstrdup (ext);
179 tr (header_extension, 'c', 'h');
180 tr (header_extension, 'C', 'H');
181 }
182
183
184 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth
185 part, (the directory) is ranging from FILE_NAME to the char before
186 *BASE, so we don't need an additional parameter.
187
188 *EXT points to the last period in the basename, or NULL if none.
189
190 If there is no *EXT, *TAB is NULL. Otherwise, *TAB points to
191 `.tab' or `_tab' if present right before *EXT, or is NULL. *TAB
192 cannot be equal to *BASE.
193
194 None are allocated, they are simply pointers to parts of FILE_NAME.
195 Examples:
196
197 '/tmp/foo.tab.c' -> *BASE = 'foo.tab.c', *TAB = '.tab.c', *EXT =
198 '.c'
199
200 'foo.c' -> *BASE = 'foo.c', *TAB = NULL, *EXT = '.c'
201
202 'tab.c' -> *BASE = 'tab.c', *TAB = NULL, *EXT = '.c'
203
204 '.tab.c' -> *BASE = '.tab.c', *TAB = NULL, *EXT = '.c'
205
206 'foo.tab' -> *BASE = 'foo.tab', *TAB = NULL, *EXT = '.tab'
207
208 'foo_tab' -> *BASE = 'foo_tab', *TAB = NULL, *EXT = NULL
209
210 'foo' -> *BASE = 'foo', *TAB = NULL, *EXT = NULL. */
211
212 static void
213 file_name_split (const char *file_name,
214 const char **base, const char **tab, const char **ext)
215 {
216 *base = last_component (file_name);
217
218 /* Look for the extension, i.e., look for the last dot. */
219 *ext = strrchr (*base, '.');
220 *tab = NULL;
221
222 /* If there is an extension, check if there is a `.tab' part right
223 before. */
224 if (*ext)
225 {
226 size_t baselen = *ext - *base;
227 size_t dottablen = sizeof (TAB_EXT) - 1;
228 if (dottablen < baselen
229 && STRPREFIX_LIT (TAB_EXT, *ext - dottablen))
230 *tab = *ext - dottablen;
231 }
232 }
233
234
235 static void
236 compute_file_name_parts (void)
237 {
238 const char *base, *tab, *ext;
239
240 /* Compute ALL_BUT_EXT and ALL_BUT_TAB_EXT from SPEC_OUTFILE
241 or GRAMMAR_FILE.
242
243 The precise -o name will be used for FTABLE. For other output
244 files, remove the ".c" or ".tab.c" suffix. */
245 if (spec_outfile)
246 {
247 file_name_split (spec_outfile, &base, &tab, &ext);
248 dir_prefix = xstrndup (spec_outfile, base - spec_outfile);
249
250 /* ALL_BUT_EXT goes up the EXT, excluding it. */
251 all_but_ext =
252 xstrndup (spec_outfile,
253 (strlen (spec_outfile) - (ext ? strlen (ext) : 0)));
254
255 /* ALL_BUT_TAB_EXT goes up to TAB, excluding it. */
256 all_but_tab_ext =
257 xstrndup (spec_outfile,
258 (strlen (spec_outfile)
259 - (tab ? strlen (tab) : (ext ? strlen (ext) : 0))));
260
261 if (ext)
262 compute_exts_from_src (ext);
263 }
264 else
265 {
266 file_name_split (grammar_file, &base, &tab, &ext);
267
268 if (spec_file_prefix)
269 {
270 /* If --file-prefix=foo was specified, ALL_BUT_TAB_EXT = `foo'. */
271 dir_prefix =
272 xstrndup (spec_file_prefix,
273 last_component (spec_file_prefix) - spec_file_prefix);
274 all_but_tab_ext = xstrdup (spec_file_prefix);
275 }
276 else if (yacc_flag)
277 {
278 /* If --yacc, then the output is `y.tab.c'. */
279 dir_prefix = xstrdup ("");
280 all_but_tab_ext = xstrdup ("y");
281 }
282 else
283 {
284 /* Otherwise, ALL_BUT_TAB_EXT is computed from the input
285 grammar: `foo/bar.yy' => `bar'. */
286 dir_prefix = xstrdup ("");
287 all_but_tab_ext =
288 xstrndup (base, (strlen (base) - (ext ? strlen (ext) : 0)));
289 }
290
291 if (language->add_tab)
292 all_but_ext = concat2 (all_but_tab_ext, TAB_EXT);
293 else
294 all_but_ext = xstrdup (all_but_tab_ext);
295
296 /* Compute the extensions from the grammar file name. */
297 if (ext && !yacc_flag)
298 compute_exts_from_gf (ext);
299 }
300 }
301
302
303 /* Compute the output file names. Warn if we detect conflicting
304 outputs to the same file. */
305
306 void
307 compute_output_file_names (void)
308 {
309 compute_file_name_parts ();
310
311 /* If not yet done. */
312 if (!src_extension)
313 src_extension = xstrdup (".c");
314 if (!header_extension)
315 header_extension = xstrdup (".h");
316
317 parser_file_name =
318 (spec_outfile
319 ? xstrdup (spec_outfile)
320 : concat2 (all_but_ext, src_extension));
321
322 if (defines_flag)
323 {
324 if (! spec_defines_file)
325 spec_defines_file = concat2 (all_but_ext, header_extension);
326 }
327
328 if (graph_flag)
329 {
330 if (! spec_graph_file)
331 spec_graph_file = concat2 (all_but_tab_ext, ".dot");
332 output_file_name_check (&spec_graph_file);
333 }
334
335 if (xml_flag)
336 {
337 if (! spec_xml_file)
338 spec_xml_file = concat2 (all_but_tab_ext, ".xml");
339 output_file_name_check (&spec_xml_file);
340 }
341
342 if (report_flag)
343 {
344 if (!spec_verbose_file)
345 spec_verbose_file = concat2 (all_but_tab_ext, OUTPUT_EXT);
346 output_file_name_check (&spec_verbose_file);
347 }
348
349 free (all_but_tab_ext);
350 free (src_extension);
351 free (header_extension);
352 }
353
354 void
355 output_file_name_check (char **file_name)
356 {
357 bool conflict = false;
358 if (STREQ (*file_name, grammar_file))
359 {
360 complain (_("refusing to overwrite the input file %s"),
361 quote (*file_name));
362 conflict = true;
363 }
364 else
365 {
366 int i;
367 for (i = 0; i < file_names_count; i++)
368 if (STREQ (file_names[i], *file_name))
369 {
370 warn (_("conflicting outputs to file %s"),
371 quote (*file_name));
372 conflict = true;
373 }
374 }
375 if (conflict)
376 {
377 free (*file_name);
378 *file_name = strdup ("/dev/null");
379 }
380 else
381 {
382 file_names = xnrealloc (file_names, ++file_names_count,
383 sizeof *file_names);
384 file_names[file_names_count-1] = xstrdup (*file_name);
385 }
386 }
387
388 void
389 output_file_names_free (void)
390 {
391 free (all_but_ext);
392 free (spec_verbose_file);
393 free (spec_graph_file);
394 free (spec_xml_file);
395 free (spec_defines_file);
396 free (parser_file_name);
397 free (dir_prefix);
398 {
399 int i;
400 for (i = 0; i < file_names_count; i++)
401 free (file_names[i]);
402 }
403 free (file_names);
404 }