]>
git.saurik.com Git - bison.git/blob - src/files.c
1 /* Open and close files for bison,
2 Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
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 the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
31 struct obstack action_obstack
;
32 struct obstack attrs_obstack
;
33 struct obstack table_obstack
;
34 struct obstack defines_obstack
;
35 struct obstack guard_obstack
;
36 struct obstack output_obstack
;
38 char *spec_outfile
; /* for -o. */
39 char *spec_file_prefix
; /* for -b. */
40 char *spec_name_prefix
; /* for -p. */
45 static char *base_name
;
46 static char *short_base_name
;
48 /* C source file extension (the parser source). */
49 static char *src_extension
;
50 /* Header file extension (if option ``-d'' is specified). */
51 static char *header_extension
;
54 /*--------------------------.
55 | Is SUFFIX ending STRING? |
56 `--------------------------*/
59 strsuffix (const char *string
, const char *suffix
)
61 size_t string_len
= strlen (string
);
62 size_t suffix_len
= strlen (suffix
);
63 if (suffix_len
<= string_len
)
64 return !strcmp (string
+ string_len
- suffix_len
, suffix
);
70 /*-----------------------------------------------------------------.
71 | Return a newly allocated string composed of the concatenation of |
72 | STRING1, and STRING2. |
73 `-----------------------------------------------------------------*/
76 stringappend (const char *string1
, const char *string2
)
78 size_t len
= strlen (string1
) + strlen (string2
);
79 char *res
= XMALLOC (char, len
+ 1);
81 cp
= stpcpy (res
, string1
);
82 cp
= stpcpy (cp
, string2
);
86 /*-----------------------------------------------------------------.
87 | Try to open file NAME with mode MODE, and print an error message |
89 `-----------------------------------------------------------------*/
92 xfopen (const char *name
, const char *mode
)
96 ptr
= fopen (name
, mode
);
98 error (2, errno
, _("cannot open file `%s'"), name
);
103 /*-------------------------------------------------------------.
104 | Try to close file PTR, and print an error message if fails. |
105 `-------------------------------------------------------------*/
115 result
= fclose (ptr
);
117 error (2, errno
, _("cannot close file"));
122 /*--------------------------------------------------.
123 | Save the content of the obstack OBS in FILENAME. |
124 `--------------------------------------------------*/
127 obstack_save (struct obstack
*obs
, const char *filename
)
129 FILE *out
= xfopen (filename
, "w");
130 size_t size
= obstack_object_size (obs
);
131 fwrite (obstack_finish (obs
), 1, size
, out
);
136 /*------------------------------------------------------------------.
137 | Return the path to the skeleton which locaction might be given in |
138 | ENVVAR, otherwise return SKELETON. |
139 `------------------------------------------------------------------*/
142 skeleton_find (const char *envvar
, const char *skeleton
)
144 const char *res
= getenv (envvar
);
149 /* File doesn't exist in current directory; try in INIT directory. */
150 if (!res
&& (cp
= getenv ("INIT")))
152 res
= XMALLOC (char, strlen (cp
) + strlen (skeleton
) + 2);
153 sprintf (res
, "%s%c%s", cp
, '/', skeleton
);
164 /*----------------------------------------------------------------.
165 | Compute BASE_NAME, SHORT_BASE_NAME and output files extensions. |
166 `----------------------------------------------------------------*/
168 /* Replace all characters FROM by TO in the string IN.
169 and returns a new allocated string. */
171 tr(const char *in
, char from
, char to
)
176 out
= XMALLOC (char, strlen (in
) + 1);
178 for (temp
= out
; *in
; in
++, out
++)
187 /* Gets the extension index in FILENAME. Returns 0 if fails to
188 find an extension. */
190 get_extension_index(const char *filename
)
194 len
= strlen (filename
);
196 if (filename
[len
-- - 1] == '.')
199 while ((len
> 0) && (filename
[len
- 1] != '.'))
200 if (filename
[len
- 1] == '/')
208 /* Computes extensions from the grammar file extension. */
210 compute_exts_from_gf(const char *ext
)
212 src_extension
= tr(ext
, 'y', 'c');
213 src_extension
= tr(src_extension
, 'Y', 'C');
214 header_extension
= tr(ext
, 'y', 'h');
215 header_extension
= tr(header_extension
, 'Y', 'H');
218 /* Computes extensions from the given c source file extension. */
220 compute_exts_from_src(const char *ext
)
222 src_extension
= xstrdup(ext
);
223 header_extension
= tr(ext
, 'c', 'h');
224 header_extension
= tr(header_extension
, 'C', 'H');
227 /* FIXME: Should use xstrndup. */
230 compute_base_names (void)
233 size_t short_base_length
;
236 /* Set default extensions */
237 src_extension
= ".c";
238 header_extension
= ".h";
240 /* If --output=foo.c was specified (SPEC_OUTFILE == foo.c),
241 BASE_NAME and SHORT_BASE_NAME are `foo'.
243 If --output=foo.tab.c was specified, BASE_NAME is `foo.tab' and
244 SHORT_BASE_NAME is `foo'.
246 The precise -o name will be used for FTABLE. For other output
247 files, remove the ".c" or ".tab.c" suffix. */
251 strlwr (spec_outfile
);
253 /* BASE_LENGTH includes ".tab" but not ".c". */
254 base_length
= strlen (spec_outfile
);
256 ext_index
= get_extension_index (spec_outfile
);
257 /* if the initial segment of extension contains 'c' or a 'C', I assume
258 that it is a C or C++ source file */
260 ext_index
= (strspn(spec_outfile
+ ext_index
+ 1, "cC")) ? ext_index
: 0;
263 base_length
-= strlen (spec_outfile
+ ext_index
);
264 compute_exts_from_src(spec_outfile
+ ext_index
);
267 base_name
= strndup (spec_outfile
, base_length
);
268 /* SHORT_BASE_LENGTH includes neither ".tab" nor ".c". */
269 short_base_length
= base_length
;
270 if (strsuffix (base_name
, ".tab") || strsuffix (base_name
, "_tab"))
271 short_base_length
-= 4;
272 short_base_name
= strndup (spec_outfile
, short_base_length
);
277 /* If --file-prefix=foo was specified, BASE_NAME and SHORT_BASE_NAME
280 Construct names from it. */
281 if (spec_file_prefix
)
284 strlwr (spec_file_prefix
);
286 short_base_name
= xstrdup (spec_file_prefix
);
287 base_name
= XMALLOC (char,
288 strlen (short_base_name
) + strlen (EXT_TAB
) + 1);
289 stpcpy (stpcpy (base_name
, short_base_name
), EXT_TAB
);
294 /* If neither -o nor --file-prefix were specified, and the input
295 file is foo.y, BASE_NAME is `foo.tab', and SHORT_BASE_NAME is
298 If --yacc is used, do as if the input file was `y.y'. */
300 const char *name_base
= yacc_flag
? "y.y" : infile
;
302 /* BASE_LENGTH gets length of BASE_NAME, sans ".y" suffix if any. */
304 base_length
= strlen (name_base
);
306 ext_index
= get_extension_index (name_base
);
307 /* if the initial segment of extension contains a 'y' or a 'Y', I assume
308 that it is a yacc or bison grammar file */
310 ext_index
= (strspn(name_base
+ ext_index
+ 1, "yY")) ? ext_index
: 0;
313 base_length
-= strlen (name_base
+ ext_index
);
314 compute_exts_from_gf(name_base
+ ext_index
);
317 short_base_length
= base_length
;
318 short_base_name
= strndup (name_base
, short_base_length
);
320 base_name
= XMALLOC (char,
321 strlen (short_base_name
) + strlen (EXT_TAB
) + 1);
322 stpcpy (stpcpy (base_name
, short_base_name
), EXT_TAB
);
328 /*-----------------------------------------------------------------.
329 | Open the input file. Look for the skeletons. Find the names of |
330 | the output files. Prepare the obstacks. |
331 `-----------------------------------------------------------------*/
336 finput
= xfopen (infile
, "r");
338 /* Initialize the obstacks. */
339 obstack_init (&action_obstack
);
340 obstack_init (&attrs_obstack
);
341 obstack_init (&table_obstack
);
342 obstack_init (&defines_obstack
);
343 obstack_init (&guard_obstack
);
344 obstack_init (&output_obstack
);
349 /*-----------------------------------------------------.
350 | Close the open files, produce all the output files. |
351 `-----------------------------------------------------*/
358 compute_base_names ();
360 attrsfile
= stringappend (short_base_name
, EXT_STYPE_H
);
362 stringappend (attrsfile
, header_extension
);
365 /* Output the main file. */
367 obstack_save (&table_obstack
, spec_outfile
);
369 obstack_save (&table_obstack
, stringappend (base_name
, src_extension
));
371 /* Output the header file if wanted. */
373 obstack_save (&defines_obstack
, stringappend (base_name
, header_extension
));
375 /* If we output only the table, dump the actions in ACTFILE. */
377 obstack_save (&action_obstack
, stringappend (short_base_name
, ".act"));
379 /* If we produced a semantic parser ATTRS_OBSTACK must be dumped
380 into its own file, ATTTRSFILE. */
385 obstack_save (&attrs_obstack
, attrsfile
);
386 temp_name
= stringappend (short_base_name
, EXT_GUARD_C
);
388 temp_name
= stringappend (temp_name
, src_extension
);
390 obstack_save (&guard_obstack
, temp_name
);
394 /* We used to use just .out if spec_name_prefix (-p) was used, but
395 that conflicts with Posix. */
396 obstack_save (&output_obstack
, stringappend (short_base_name
, EXT_OUTPUT
));