1 /* Open and close files for Bison.
3 Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006 Free Software Foundation, Inc.
6 This file is part of Bison, the GNU Compiler Compiler.
8 Bison is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 Bison is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Bison; see the file COPYING. If not, write to the Free
20 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
28 #include <get-errno.h>
30 #include <stdio-safer.h>
38 struct obstack pre_prologue_obstack
;
39 struct obstack post_prologue_obstack
;
41 /* Initializing some values below (such SPEC_NAME_PREFIX to `yy') is
42 tempting, but don't do that: for the time being our handling of the
43 %directive vs --option leaves precedence to the options by deciding
44 that if a %directive sets a variable which is really set (i.e., not
45 NULL), then the %directive is ignored. As a result, %name-prefix,
46 for instance, will not be honored. */
48 char const *spec_outfile
= NULL
; /* for -o. */
49 char const *spec_file_prefix
= NULL
; /* for -b. */
50 char const *spec_name_prefix
= NULL
; /* for -p. */
51 char *spec_verbose_file
= NULL
; /* for --verbose. */
52 char *spec_graph_file
= NULL
; /* for -g. */
53 char *spec_defines_file
= NULL
; /* for --defines. */
54 char *parser_file_name
;
56 /* All computed output file names. */
57 static char **file_names
= NULL
;
58 static int file_names_count
= 0;
60 uniqstr grammar_file
= NULL
;
61 uniqstr current_file
= NULL
;
63 /* If --output=dir/foo.c was specified,
64 DIR_PREFIX is `dir/' and ALL_BUT_EXT and ALL_BUT_TAB_EXT are `dir/foo'.
66 If --output=dir/foo.tab.c was specified, DIR_PREFIX is `dir/',
67 ALL_BUT_EXT is `dir/foo.tab', and ALL_BUT_TAB_EXT is `dir/foo'.
69 If --output was not specified but --file-prefix=dir/foo was specified,
70 ALL_BUT_EXT = `foo.tab' and ALL_BUT_TAB_EXT = `foo'.
72 If neither --output nor --file was specified but the input grammar
73 is name dir/foo.y, ALL_BUT_EXT and ALL_BUT_TAB_EXT are `foo'.
75 If neither --output nor --file was specified, DIR_PREFIX is the
76 empty string (meaning the current directory); otherwise it is
80 static char *all_but_tab_ext
;
83 /* C source file extension (the parser source). */
84 static char *src_extension
= NULL
;
85 /* Header file extension (if option ``-d'' is specified). */
86 static char *header_extension
= NULL
;
88 /*-----------------------------------------------------------------.
89 | Return a newly allocated string composed of the concatenation of |
91 `-----------------------------------------------------------------*/
94 concat2 (char const *str1
, char const *str2
)
96 size_t len
= strlen (str1
) + strlen (str2
);
97 char *res
= xmalloc (len
+ 1);
99 cp
= stpcpy (res
, str1
);
100 cp
= stpcpy (cp
, str2
);
104 /*-----------------------------------------------------------------.
105 | Try to open file NAME with mode MODE, and print an error message |
107 `-----------------------------------------------------------------*/
110 xfopen (const char *name
, const char *mode
)
114 ptr
= fopen_safer (name
, mode
);
116 error (EXIT_FAILURE
, get_errno (), _("cannot open file `%s'"), name
);
121 /*-------------------------------------------------------------.
122 | Try to close file PTR, and print an error message if fails. |
123 `-------------------------------------------------------------*/
132 error (EXIT_FAILURE
, 0, _("I/O error"));
134 if (fclose (ptr
) != 0)
135 error (EXIT_FAILURE
, get_errno (), _("cannot close file"));
139 /*------------------------------------------------------------------.
140 | Compute ALL_BUT_EXT, ALL_BUT_TAB_EXT and output files extensions. |
141 `------------------------------------------------------------------*/
143 /* In the string S, replace all characters FROM by TO. */
145 tr (char *s
, char from
, char to
)
152 /* Compute extensions from the grammar file extension. */
154 compute_exts_from_gf (const char *ext
)
156 if (strcmp (ext
, ".y") == 0)
158 src_extension
= xstrdup (language
->src_extension
);
159 header_extension
= xstrdup (language
->header_extension
);
163 src_extension
= xstrdup (ext
);
164 header_extension
= xstrdup (ext
);
165 tr (src_extension
, 'y', 'c');
166 tr (src_extension
, 'Y', 'C');
167 tr (header_extension
, 'y', 'h');
168 tr (header_extension
, 'Y', 'H');
172 /* Compute extensions from the given c source file extension. */
174 compute_exts_from_src (const char *ext
)
176 /* We use this function when the user specifies `-o' or `--output',
177 so the extenions must be computed unconditionally from the file name
178 given by this option. */
179 src_extension
= xstrdup (ext
);
180 header_extension
= xstrdup (ext
);
181 tr (header_extension
, 'c', 'h');
182 tr (header_extension
, 'C', 'H');
186 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth
187 part, (the directory) is ranging from FILE_NAME to the char before
188 *BASE, so we don't need an additional parameter.
190 *EXT points to the last period in the basename, or NULL if none.
192 If there is no *EXT, *TAB is NULL. Otherwise, *TAB points to
193 `.tab' or `_tab' if present right before *EXT, or is NULL. *TAB
194 cannot be equal to *BASE.
196 None are allocated, they are simply pointers to parts of FILE_NAME.
199 '/tmp/foo.tab.c' -> *BASE = 'foo.tab.c', *TAB = '.tab.c', *EXT =
202 'foo.c' -> *BASE = 'foo.c', *TAB = NULL, *EXT = '.c'
204 'tab.c' -> *BASE = 'tab.c', *TAB = NULL, *EXT = '.c'
206 '.tab.c' -> *BASE = '.tab.c', *TAB = NULL, *EXT = '.c'
208 'foo.tab' -> *BASE = 'foo.tab', *TAB = NULL, *EXT = '.tab'
210 'foo_tab' -> *BASE = 'foo_tab', *TAB = NULL, *EXT = NULL
212 'foo' -> *BASE = 'foo', *TAB = NULL, *EXT = NULL. */
215 file_name_split (const char *file_name
,
216 const char **base
, const char **tab
, const char **ext
)
218 *base
= last_component (file_name
);
220 /* Look for the extension, i.e., look for the last dot. */
221 *ext
= strrchr (*base
, '.');
224 /* If there is an extension, check if there is a `.tab' part right
228 size_t baselen
= *ext
- *base
;
229 size_t dottablen
= 4;
230 if (dottablen
< baselen
231 && (strncmp (*ext
- dottablen
, ".tab", dottablen
) == 0
232 || strncmp (*ext
- dottablen
, "_tab", dottablen
) == 0))
233 *tab
= *ext
- dottablen
;
239 compute_file_name_parts (void)
241 const char *base
, *tab
, *ext
;
243 /* Compute ALL_BUT_EXT and ALL_BUT_TAB_EXT from SPEC_OUTFILE
246 The precise -o name will be used for FTABLE. For other output
247 files, remove the ".c" or ".tab.c" suffix. */
250 file_name_split (spec_outfile
, &base
, &tab
, &ext
);
251 dir_prefix
= xstrndup (spec_outfile
, base
- spec_outfile
);
253 /* ALL_BUT_EXT goes up the EXT, excluding it. */
255 xstrndup (spec_outfile
,
256 (strlen (spec_outfile
) - (ext
? strlen (ext
) : 0)));
258 /* ALL_BUT_TAB_EXT goes up to TAB, excluding it. */
260 xstrndup (spec_outfile
,
261 (strlen (spec_outfile
)
262 - (tab
? strlen (tab
) : (ext
? strlen (ext
) : 0))));
265 compute_exts_from_src (ext
);
269 file_name_split (grammar_file
, &base
, &tab
, &ext
);
271 if (spec_file_prefix
)
273 /* If --file-prefix=foo was specified, ALL_BUT_TAB_EXT = `foo'. */
274 dir_prefix
= xstrndup (grammar_file
, base
- grammar_file
);
275 all_but_tab_ext
= xstrdup (spec_file_prefix
);
279 /* If --yacc, then the output is `y.tab.c'. */
280 dir_prefix
= xstrdup ("");
281 all_but_tab_ext
= xstrdup ("y");
285 /* Otherwise, ALL_BUT_TAB_EXT is computed from the input
286 grammar: `foo/bar.yy' => `bar'. */
287 dir_prefix
= xstrdup ("");
289 xstrndup (base
, (strlen (base
) - (ext
? strlen (ext
) : 0)));
292 if (language
->add_tab
)
293 all_but_ext
= concat2 (all_but_tab_ext
, TAB_EXT
);
295 all_but_ext
= xstrdup (all_but_tab_ext
);
297 /* Compute the extensions from the grammar file name. */
298 if (ext
&& !yacc_flag
)
299 compute_exts_from_gf (ext
);
304 /* Compute the output file names. Warn if we detect conflicting
305 outputs to the same file. */
308 compute_output_file_names (void)
310 compute_file_name_parts ();
312 /* If not yet done. */
314 src_extension
= xstrdup (".c");
315 if (!header_extension
)
316 header_extension
= xstrdup (".h");
320 ? xstrdup (spec_outfile
)
321 : concat2 (all_but_ext
, src_extension
));
325 if (! spec_defines_file
)
326 spec_defines_file
= concat2 (all_but_ext
, header_extension
);
331 if (! spec_graph_file
)
332 spec_graph_file
= concat2 (all_but_tab_ext
, ".dot");
333 output_file_name_check (spec_graph_file
);
338 spec_verbose_file
= concat2 (all_but_tab_ext
, OUTPUT_EXT
);
339 output_file_name_check (spec_verbose_file
);
342 free (all_but_tab_ext
);
343 free (src_extension
);
344 free (header_extension
);
348 output_file_name_check (char const *file_name
)
352 for (i
= 0; i
< file_names_count
; i
++)
353 if (0 == strcmp (file_names
[i
], file_name
))
354 warn (_("conflicting outputs to file %s"), quote (file_name
));
356 file_names
= xnrealloc (file_names
, ++file_names_count
, sizeof *file_names
);
357 file_names
[file_names_count
-1] = xstrdup (file_name
);
361 output_file_names_free (void)
364 free (spec_verbose_file
);
365 free (spec_graph_file
);
366 free (spec_defines_file
);
367 free (parser_file_name
);
371 for (i
= 0; i
< file_names_count
; i
++)
372 free (file_names
[i
]);