Automatic date update in version.in
[binutils-gdb.git] / gas / input-file.c
blobc96d2760a47b497b21d92ebbb39162fc39c5cc50
1 /* input_file.c - Deal with Input Files -
2 Copyright (C) 1987-2024 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
21 /* Confines all details of reading source bytes to this module.
22 All O/S specific crocks should live here.
23 What we lose in "efficiency" we gain in modularity.
24 Note we don't need to #include the "as.h" file. No common coupling! */
26 #include "as.h"
27 #include "input-file.h"
28 #include "safe-ctype.h"
30 /* This variable is non-zero if the file currently being read should be
31 preprocessed by app. It is zero if the file can be read straight in. */
32 int preprocess = 0;
34 /* This code opens a file, then delivers BUFFER_SIZE character
35 chunks of the file on demand.
36 BUFFER_SIZE is supposed to be a number chosen for speed.
37 The caller only asks once what BUFFER_SIZE is, and asks before
38 the nature of the input files (if any) is known. */
40 #define BUFFER_SIZE (32 * 1024)
42 /* We use static data: the data area is not sharable. */
44 static FILE *f_in;
45 static const char *file_name;
47 /* Struct for saving the state of this module for file includes. */
48 struct saved_file
50 FILE * f_in;
51 const char * file_name;
52 int preprocess;
53 char * app_save;
56 /* These hooks accommodate most operating systems. */
58 void
59 input_file_begin (void)
61 f_in = (FILE *) 0;
64 void
65 input_file_end (void)
69 /* Return BUFFER_SIZE. */
70 size_t
71 input_file_buffer_size (void)
73 return (BUFFER_SIZE);
76 /* Push the state of our input, returning a pointer to saved info that
77 can be restored with input_file_pop (). */
79 char *
80 input_file_push (void)
82 struct saved_file *saved;
84 saved = XNEW (struct saved_file);
86 saved->f_in = f_in;
87 saved->file_name = file_name;
88 saved->preprocess = preprocess;
89 if (preprocess)
90 saved->app_save = app_push ();
92 /* Initialize for new file. */
93 input_file_begin ();
95 return (char *) saved;
98 void
99 input_file_pop (char *arg)
101 struct saved_file *saved = (struct saved_file *) arg;
103 input_file_end (); /* Close out old file. */
105 f_in = saved->f_in;
106 file_name = saved->file_name;
107 preprocess = saved->preprocess;
108 if (preprocess)
109 app_pop (saved->app_save);
111 free (arg);
114 /* Open the specified file, "" means stdin. Filename must not be null. */
116 void
117 input_file_open (const char *filename,
118 int pre)
120 int c;
121 char buf[80];
123 preprocess = pre;
125 gas_assert (filename != 0); /* Filename may not be NULL. */
126 if (filename[0])
128 f_in = fopen (filename, FOPEN_RT);
129 file_name = filename;
131 else
133 /* Use stdin for the input file. */
134 f_in = stdin;
135 /* For error messages. */
136 file_name = _("{standard input}");
139 if (f_in == NULL)
141 as_bad (_("can't open %s for reading: %s"),
142 file_name, xstrerror (errno));
143 return;
146 c = getc (f_in);
148 if (ferror (f_in))
150 as_bad (_("can't read from %s: %s"),
151 file_name, xstrerror (errno));
153 fclose (f_in);
154 f_in = NULL;
155 return;
158 /* Check for an empty input file. */
159 if (feof (f_in))
161 fclose (f_in);
162 f_in = NULL;
163 return;
165 gas_assert (c != EOF);
167 if (strchr (line_comment_chars, '#')
168 ? c == '#'
169 : c && strchr (line_comment_chars, c))
171 /* Begins with comment, may not want to preprocess. */
172 int lead = c;
174 c = getc (f_in);
175 if (c == 'N')
177 char *p = fgets (buf, sizeof (buf), f_in);
178 if (p && startswith (p, "O_APP") && is_end_of_line (p[5]))
179 preprocess = 0;
180 if (!p || !strchr (p, '\n'))
181 ungetc (lead, f_in);
182 else
183 ungetc ('\n', f_in);
185 else if (c == 'A')
187 char *p = fgets (buf, sizeof (buf), f_in);
188 if (p && startswith (p, "PP") && is_end_of_line (p[2]))
189 preprocess = 1;
190 if (!p || !strchr (p, '\n'))
191 ungetc (lead, f_in);
192 else
193 ungetc ('\n', f_in);
195 else if (c == '\n')
196 ungetc ('\n', f_in);
197 else
198 ungetc (lead, f_in);
200 else
201 ungetc (c, f_in);
204 /* Close input file. */
206 void
207 input_file_close (void)
209 /* Don't close a null file pointer. */
210 if (f_in != NULL)
211 fclose (f_in);
213 f_in = 0;
216 /* This function is passed to do_scrub_chars. */
218 static size_t
219 input_file_get (char *buf, size_t buflen)
221 size_t size;
223 if (feof (f_in))
224 return 0;
226 size = fread (buf, sizeof (char), buflen, f_in);
227 if (ferror (f_in))
228 as_bad (_("can't read from %s: %s"), file_name, xstrerror (errno));
229 return size;
232 /* Read a buffer from the input file. */
234 char *
235 input_file_give_next_buffer (char *where /* Where to place 1st character of new buffer. */)
237 char *return_value; /* -> Last char of what we read, + 1. */
238 size_t size;
240 if (f_in == (FILE *) 0)
241 return 0;
242 /* fflush (stdin); could be done here if you want to synchronise
243 stdin and stdout, for the case where our input file is stdin.
244 Since the assembler shouldn't do any output to stdout, we
245 don't bother to synch output and input. */
246 if (preprocess)
247 size = do_scrub_chars (input_file_get, where, BUFFER_SIZE,
248 multibyte_handling == multibyte_warn);
249 else
251 size = input_file_get (where, BUFFER_SIZE);
253 if (multibyte_handling == multibyte_warn)
255 const unsigned char *start = (const unsigned char *) where;
257 (void) scan_for_multibyte_characters (start, start + size,
258 true /* Generate warnings */);
262 if (size)
263 return_value = where + size;
264 else
266 if (fclose (f_in))
267 as_warn (_("can't close %s: %s"), file_name, xstrerror (errno));
269 f_in = (FILE *) 0;
270 return_value = 0;
273 return return_value;