ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / gas / input-file.c
CommitLineData
252b5132 1/* input_file.c - Deal with Input Files -
b90efa5b 2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
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
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
2b47531b 17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
f740e790
NC
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! */
252b5132 25
252b5132
RH
26#include "as.h"
27#include "input-file.h"
685bd869 28#include "safe-ctype.h"
252b5132 29
252b5132 30/* This variable is non-zero if the file currently being read should be
f740e790 31 preprocessed by app. It is zero if the file can be read straight in. */
252b5132
RH
32int preprocess = 0;
33
f740e790
NC
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. */
252b5132
RH
39
40#define BUFFER_SIZE (32 * 1024)
41
f740e790 42/* We use static data: the data area is not sharable. */
252b5132
RH
43
44static FILE *f_in;
45static char *file_name;
46
47/* Struct for saving the state of this module for file includes. */
f740e790
NC
48struct saved_file
49 {
50 FILE * f_in;
51 char * file_name;
52 int preprocess;
53 char * app_save;
54 };
252b5132 55\f
47eebc20 56/* These hooks accommodate most operating systems. */
252b5132 57
c488923f 58void
b1f1fa96 59input_file_begin (void)
252b5132
RH
60{
61 f_in = (FILE *) 0;
62}
63
c488923f 64void
b1f1fa96 65input_file_end (void)
252b5132
RH
66{
67}
68
c488923f 69/* Return BUFFER_SIZE. */
39a45edc 70size_t
b1f1fa96 71input_file_buffer_size (void)
252b5132
RH
72{
73 return (BUFFER_SIZE);
74}
75
252b5132
RH
76/* Push the state of our input, returning a pointer to saved info that
77 can be restored with input_file_pop (). */
f740e790 78
252b5132 79char *
b1f1fa96 80input_file_push (void)
252b5132 81{
ed9e98c2 82 struct saved_file *saved;
252b5132
RH
83
84 saved = (struct saved_file *) xmalloc (sizeof *saved);
85
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 ();
91
f740e790
NC
92 /* Initialize for new file. */
93 input_file_begin ();
252b5132
RH
94
95 return (char *) saved;
96}
97
98void
b1f1fa96 99input_file_pop (char *arg)
252b5132 100{
ed9e98c2 101 struct saved_file *saved = (struct saved_file *) arg;
252b5132 102
f740e790 103 input_file_end (); /* Close out old file. */
252b5132
RH
104
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);
110
111 free (arg);
112}
113\f
114void
b1f1fa96
KH
115input_file_open (char *filename, /* "" means use stdin. Must not be 0. */
116 int pre)
252b5132
RH
117{
118 int c;
119 char buf[80];
120
121 preprocess = pre;
122
9c2799c2 123 gas_assert (filename != 0); /* Filename may not be NULL. */
252b5132 124 if (filename[0])
f24ddbdd 125 {
f740e790 126 f_in = fopen (filename, FOPEN_RT);
252b5132
RH
127 file_name = filename;
128 }
129 else
f24ddbdd
NC
130 {
131 /* Use stdin for the input file. */
252b5132 132 f_in = stdin;
f24ddbdd
NC
133 /* For error messages. */
134 file_name = _("{standard input}");
252b5132 135 }
f24ddbdd 136
ac4528d2
AM
137 if (f_in == NULL)
138 {
f79d9c1d
AM
139 as_bad (_("can't open %s for reading: %s"),
140 file_name, xstrerror (errno));
ac4528d2
AM
141 return;
142 }
19e7825f 143
ac4528d2
AM
144 c = getc (f_in);
145
146 if (ferror (f_in))
252b5132 147 {
f79d9c1d
AM
148 as_bad (_("can't read from %s: %s"),
149 file_name, xstrerror (errno));
19e7825f 150
ac4528d2
AM
151 fclose (f_in);
152 f_in = NULL;
252b5132
RH
153 return;
154 }
155
47e8018d
NC
156 /* Check for an empty input file. */
157 if (feof (f_in))
158 {
159 fclose (f_in);
160 f_in = NULL;
161 return;
162 }
163 gas_assert (c != EOF);
164
252b5132 165 if (c == '#')
f740e790
NC
166 {
167 /* Begins with comment, may not want to preprocess. */
252b5132
RH
168 c = getc (f_in);
169 if (c == 'N')
411863a4 170 {
1f5409bb
AM
171 if (fgets (buf, sizeof (buf), f_in)
172 && !strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
411863a4
KH
173 preprocess = 0;
174 if (!strchr (buf, '\n'))
175 ungetc ('#', f_in); /* It was longer. */
176 else
177 ungetc ('\n', f_in);
178 }
1fd716b9 179 else if (c == 'A')
411863a4 180 {
1f5409bb
AM
181 if (fgets (buf, sizeof (buf), f_in)
182 && !strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
411863a4
KH
183 preprocess = 1;
184 if (!strchr (buf, '\n'))
185 ungetc ('#', f_in);
186 else
187 ungetc ('\n', f_in);
188 }
252b5132 189 else if (c == '\n')
411863a4 190 ungetc ('\n', f_in);
252b5132 191 else
411863a4 192 ungetc ('#', f_in);
252b5132
RH
193 }
194 else
195 ungetc (c, f_in);
196}
197
198/* Close input file. */
f740e790 199
c488923f 200void
b1f1fa96 201input_file_close (void)
252b5132 202{
f740e790 203 /* Don't close a null file pointer. */
252b5132 204 if (f_in != NULL)
f740e790
NC
205 fclose (f_in);
206
252b5132 207 f_in = 0;
7152f1dc 208}
252b5132
RH
209
210/* This function is passed to do_scrub_chars. */
211
39a45edc
AM
212static size_t
213input_file_get (char *buf, size_t buflen)
252b5132 214{
39a45edc 215 size_t size;
252b5132 216
47e8018d
NC
217 if (feof (f_in))
218 return 0;
34bca508 219
2b47531b 220 size = fread (buf, sizeof (char), buflen, f_in);
39a45edc
AM
221 if (ferror (f_in))
222 as_bad (_("can't read from %s: %s"), file_name, xstrerror (errno));
252b5132
RH
223 return size;
224}
225
226/* Read a buffer from the input file. */
227
228char *
b1f1fa96 229input_file_give_next_buffer (char *where /* Where to place 1st character of new buffer. */)
252b5132 230{
c488923f 231 char *return_value; /* -> Last char of what we read, + 1. */
39a45edc 232 size_t size;
252b5132
RH
233
234 if (f_in == (FILE *) 0)
235 return 0;
f740e790
NC
236 /* fflush (stdin); could be done here if you want to synchronise
237 stdin and stdout, for the case where our input file is stdin.
238 Since the assembler shouldn't do any output to stdout, we
239 don't bother to synch output and input. */
252b5132
RH
240 if (preprocess)
241 size = do_scrub_chars (input_file_get, where, BUFFER_SIZE);
242 else
39a45edc 243 size = input_file_get (where, BUFFER_SIZE);
47e8018d 244
252b5132
RH
245 if (size)
246 return_value = where + size;
247 else
248 {
249 if (fclose (f_in))
e5d4a5a6 250 as_warn (_("can't close %s: %s"), file_name, xstrerror (errno));
f79d9c1d 251
252b5132
RH
252 f_in = (FILE *) 0;
253 return_value = 0;
254 }
f740e790
NC
255
256 return return_value;
252b5132 257}
This page took 0.687251 seconds and 4 git commands to generate.