* config/m32c/predicates.md (m32c_psi_scale): New.
[official-gcc.git] / libgfortran / io / inquire.c
blob9044bf83e2114e153cf1a141a48b2e0fa0f587fc
1 /* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran 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 2, or (at your option)
9 any later version.
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with Libgfortran; see the file COPYING. If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA. */
31 /* Implement the non-IOLENGTH variant of the INQUIRY statement */
33 #include "config.h"
34 #include "libgfortran.h"
35 #include "io.h"
38 static const char undefined[] = "UNDEFINED";
41 /* inquire_via_unit()-- Inquiry via unit number. The unit might not exist. */
43 static void
44 inquire_via_unit (st_parameter_inquire *iqp, gfc_unit * u)
46 const char *p;
47 GFC_INTEGER_4 cf = iqp->common.flags;
49 if ((cf & IOPARM_INQUIRE_HAS_EXIST) != 0)
50 *iqp->exist = iqp->common.unit >= 0;
52 if ((cf & IOPARM_INQUIRE_HAS_OPENED) != 0)
53 *iqp->opened = (u != NULL);
55 if ((cf & IOPARM_INQUIRE_HAS_NUMBER) != 0)
56 *iqp->number = (u != NULL) ? u->unit_number : -1;
58 if ((cf & IOPARM_INQUIRE_HAS_NAMED) != 0)
59 *iqp->named = (u != NULL && u->flags.status != STATUS_SCRATCH);
61 if ((cf & IOPARM_INQUIRE_HAS_NAME) != 0
62 && u != NULL && u->flags.status != STATUS_SCRATCH)
63 fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len);
65 if ((cf & IOPARM_INQUIRE_HAS_ACCESS) != 0)
67 if (u == NULL)
68 p = undefined;
69 else
70 switch (u->flags.access)
72 case ACCESS_SEQUENTIAL:
73 p = "SEQUENTIAL";
74 break;
75 case ACCESS_DIRECT:
76 p = "DIRECT";
77 break;
78 default:
79 internal_error (&iqp->common, "inquire_via_unit(): Bad access");
82 cf_strcpy (iqp->access, iqp->access_len, p);
85 if ((cf & IOPARM_INQUIRE_HAS_SEQUENTIAL) != 0)
87 if (u == NULL)
88 p = inquire_sequential (NULL, 0);
89 else
91 /* disallow an open direct access file to be accessed sequentially */
92 if (u->flags.access == ACCESS_DIRECT)
93 p = "NO";
94 else
95 p = inquire_sequential (u->file, u->file_len);
98 cf_strcpy (iqp->sequential, iqp->sequential_len, p);
101 if ((cf & IOPARM_INQUIRE_HAS_DIRECT) != 0)
103 p = (u == NULL) ? inquire_direct (NULL, 0) :
104 inquire_direct (u->file, u->file_len);
106 cf_strcpy (iqp->direct, iqp->direct_len, p);
109 if ((cf & IOPARM_INQUIRE_HAS_FORM) != 0)
111 if (u == NULL)
112 p = undefined;
113 else
114 switch (u->flags.form)
116 case FORM_FORMATTED:
117 p = "FORMATTED";
118 break;
119 case FORM_UNFORMATTED:
120 p = "UNFORMATTED";
121 break;
122 default:
123 internal_error (&iqp->common, "inquire_via_unit(): Bad form");
126 cf_strcpy (iqp->form, iqp->form_len, p);
129 if ((cf & IOPARM_INQUIRE_HAS_FORMATTED) != 0)
131 p = (u == NULL) ? inquire_formatted (NULL, 0) :
132 inquire_formatted (u->file, u->file_len);
134 cf_strcpy (iqp->formatted, iqp->formatted_len, p);
137 if ((cf & IOPARM_INQUIRE_HAS_UNFORMATTED) != 0)
139 p = (u == NULL) ? inquire_unformatted (NULL, 0) :
140 inquire_unformatted (u->file, u->file_len);
142 cf_strcpy (iqp->unformatted, iqp->unformatted_len, p);
145 if ((cf & IOPARM_INQUIRE_HAS_RECL_OUT) != 0)
146 *iqp->recl_out = (u != NULL) ? u->recl : 0;
148 if ((cf & IOPARM_INQUIRE_HAS_NEXTREC) != 0)
149 *iqp->nextrec = (u != NULL) ? u->last_record + 1 : 0;
151 if ((cf & IOPARM_INQUIRE_HAS_BLANK) != 0)
153 if (u == NULL)
154 p = undefined;
155 else
156 switch (u->flags.blank)
158 case BLANK_NULL:
159 p = "NULL";
160 break;
161 case BLANK_ZERO:
162 p = "ZERO";
163 break;
164 default:
165 internal_error (&iqp->common, "inquire_via_unit(): Bad blank");
168 cf_strcpy (iqp->blank, iqp->blank_len, p);
171 if ((cf & IOPARM_INQUIRE_HAS_POSITION) != 0)
173 if (u == NULL || u->flags.access == ACCESS_DIRECT)
174 p = undefined;
175 else
176 switch (u->flags.position)
178 case POSITION_REWIND:
179 p = "REWIND";
180 break;
181 case POSITION_APPEND:
182 p = "APPEND";
183 break;
184 case POSITION_ASIS:
185 p = "ASIS";
186 break;
187 default:
188 /* if not direct access, it must be
189 either REWIND, APPEND, or ASIS.
190 ASIS seems to be the best default */
191 p = "ASIS";
192 break;
194 cf_strcpy (iqp->position, iqp->position_len, p);
197 if ((cf & IOPARM_INQUIRE_HAS_ACTION) != 0)
199 if (u == NULL)
200 p = undefined;
201 else
202 switch (u->flags.action)
204 case ACTION_READ:
205 p = "READ";
206 break;
207 case ACTION_WRITE:
208 p = "WRITE";
209 break;
210 case ACTION_READWRITE:
211 p = "READWRITE";
212 break;
213 default:
214 internal_error (&iqp->common, "inquire_via_unit(): Bad action");
217 cf_strcpy (iqp->action, iqp->action_len, p);
220 if ((cf & IOPARM_INQUIRE_HAS_READ) != 0)
222 p = (u == NULL) ? inquire_read (NULL, 0) :
223 inquire_read (u->file, u->file_len);
225 cf_strcpy (iqp->read, iqp->read_len, p);
228 if ((cf & IOPARM_INQUIRE_HAS_WRITE) != 0)
230 p = (u == NULL) ? inquire_write (NULL, 0) :
231 inquire_write (u->file, u->file_len);
233 cf_strcpy (iqp->write, iqp->write_len, p);
236 if ((cf & IOPARM_INQUIRE_HAS_READWRITE) != 0)
238 p = (u == NULL) ? inquire_readwrite (NULL, 0) :
239 inquire_readwrite (u->file, u->file_len);
241 cf_strcpy (iqp->readwrite, iqp->readwrite_len, p);
244 if ((cf & IOPARM_INQUIRE_HAS_DELIM) != 0)
246 if (u == NULL || u->flags.form != FORM_FORMATTED)
247 p = undefined;
248 else
249 switch (u->flags.delim)
251 case DELIM_NONE:
252 p = "NONE";
253 break;
254 case DELIM_QUOTE:
255 p = "QUOTE";
256 break;
257 case DELIM_APOSTROPHE:
258 p = "APOSTROPHE";
259 break;
260 default:
261 internal_error (&iqp->common, "inquire_via_unit(): Bad delim");
264 cf_strcpy (iqp->delim, iqp->delim_len, p);
267 if ((cf & IOPARM_INQUIRE_HAS_PAD) != 0)
269 if (u == NULL || u->flags.form != FORM_FORMATTED)
270 p = undefined;
271 else
272 switch (u->flags.pad)
274 case PAD_NO:
275 p = "NO";
276 break;
277 case PAD_YES:
278 p = "YES";
279 break;
280 default:
281 internal_error (&iqp->common, "inquire_via_unit(): Bad pad");
284 cf_strcpy (iqp->pad, iqp->pad_len, p);
287 if ((cf & IOPARM_INQUIRE_HAS_CONVERT) != 0)
289 if (u == NULL)
290 p = undefined;
291 else
292 switch (u->flags.convert)
294 /* l8_to_l4_offset is 0 for little-endian, 1 for big-endian. */
295 case CONVERT_NATIVE:
296 p = l8_to_l4_offset ? "BIG_ENDIAN" : "LITTLE_ENDIAN";
297 break;
299 case CONVERT_SWAP:
300 p = l8_to_l4_offset ? "LITTLE_ENDIAN" : "BIG_ENDIAN";
301 break;
303 default:
304 internal_error (&iqp->common, "inquire_via_unit(): Bad convert");
307 cf_strcpy (iqp->convert, iqp->convert_len, p);
312 /* inquire_via_filename()-- Inquiry via filename. This subroutine is
313 * only used if the filename is *not* connected to a unit number. */
315 static void
316 inquire_via_filename (st_parameter_inquire *iqp)
318 const char *p;
319 GFC_INTEGER_4 cf = iqp->common.flags;
321 if ((cf & IOPARM_INQUIRE_HAS_EXIST) != 0)
322 *iqp->exist = file_exists (iqp->file, iqp->file_len);
324 if ((cf & IOPARM_INQUIRE_HAS_OPENED) != 0)
325 *iqp->opened = 0;
327 if ((cf & IOPARM_INQUIRE_HAS_NUMBER) != 0)
328 *iqp->number = -1;
330 if ((cf & IOPARM_INQUIRE_HAS_NAMED) != 0)
331 *iqp->named = 1;
333 if ((cf & IOPARM_INQUIRE_HAS_NAME) != 0)
334 fstrcpy (iqp->name, iqp->name_len, iqp->file, iqp->file_len);
336 if ((cf & IOPARM_INQUIRE_HAS_ACCESS) != 0)
337 cf_strcpy (iqp->access, iqp->access_len, undefined);
339 if ((cf & IOPARM_INQUIRE_HAS_SEQUENTIAL) != 0)
341 p = inquire_sequential (iqp->file, iqp->file_len);
342 cf_strcpy (iqp->sequential, iqp->sequential_len, p);
345 if ((cf & IOPARM_INQUIRE_HAS_DIRECT) != 0)
347 p = inquire_direct (iqp->file, iqp->file_len);
348 cf_strcpy (iqp->direct, iqp->direct_len, p);
351 if ((cf & IOPARM_INQUIRE_HAS_FORM) != 0)
352 cf_strcpy (iqp->form, iqp->form_len, undefined);
354 if ((cf & IOPARM_INQUIRE_HAS_FORMATTED) != 0)
356 p = inquire_formatted (iqp->file, iqp->file_len);
357 cf_strcpy (iqp->formatted, iqp->formatted_len, p);
360 if ((cf & IOPARM_INQUIRE_HAS_UNFORMATTED) != 0)
362 p = inquire_unformatted (iqp->file, iqp->file_len);
363 cf_strcpy (iqp->unformatted, iqp->unformatted_len, p);
366 if ((cf & IOPARM_INQUIRE_HAS_RECL_OUT) != 0)
367 *iqp->recl_out = 0;
369 if ((cf & IOPARM_INQUIRE_HAS_NEXTREC) != 0)
370 *iqp->nextrec = 0;
372 if ((cf & IOPARM_INQUIRE_HAS_BLANK) != 0)
373 cf_strcpy (iqp->blank, iqp->blank_len, undefined);
375 if ((cf & IOPARM_INQUIRE_HAS_POSITION) != 0)
376 cf_strcpy (iqp->position, iqp->position_len, undefined);
378 if ((cf & IOPARM_INQUIRE_HAS_ACCESS) != 0)
379 cf_strcpy (iqp->access, iqp->access_len, undefined);
381 if ((cf & IOPARM_INQUIRE_HAS_READ) != 0)
383 p = inquire_read (iqp->file, iqp->file_len);
384 cf_strcpy (iqp->read, iqp->read_len, p);
387 if ((cf & IOPARM_INQUIRE_HAS_WRITE) != 0)
389 p = inquire_write (iqp->file, iqp->file_len);
390 cf_strcpy (iqp->write, iqp->write_len, p);
393 if ((cf & IOPARM_INQUIRE_HAS_READWRITE) != 0)
395 p = inquire_read (iqp->file, iqp->file_len);
396 cf_strcpy (iqp->readwrite, iqp->readwrite_len, p);
399 if ((cf & IOPARM_INQUIRE_HAS_DELIM) != 0)
400 cf_strcpy (iqp->delim, iqp->delim_len, undefined);
402 if ((cf & IOPARM_INQUIRE_HAS_PAD) != 0)
403 cf_strcpy (iqp->pad, iqp->pad_len, undefined);
407 /* Library entry point for the INQUIRE statement (non-IOLENGTH
408 form). */
410 extern void st_inquire (st_parameter_inquire *);
411 export_proto(st_inquire);
413 void
414 st_inquire (st_parameter_inquire *iqp)
416 gfc_unit *u;
418 library_start (&iqp->common);
420 if ((iqp->common.flags & IOPARM_INQUIRE_HAS_FILE) == 0)
422 u = find_unit (iqp->common.unit);
423 inquire_via_unit (iqp, u);
425 else
427 u = find_file (iqp->file, iqp->file_len);
428 if (u == NULL)
429 inquire_via_filename (iqp);
430 else
431 inquire_via_unit (iqp, u);
433 if (u != NULL)
434 unlock_unit (u);
436 library_end ();