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)
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
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 */
34 #include "libgfortran.h"
38 static const char undefined
[] = "UNDEFINED";
41 /* inquire_via_unit()-- Inquiry via unit number. The unit might not exist. */
44 inquire_via_unit (st_parameter_inquire
*iqp
, gfc_unit
* u
)
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)
70 switch (u
->flags
.access
)
72 case ACCESS_SEQUENTIAL
:
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)
88 p
= inquire_sequential (NULL
, 0);
91 /* disallow an open direct access file to be accessed sequentially */
92 if (u
->flags
.access
== ACCESS_DIRECT
)
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)
114 switch (u
->flags
.form
)
119 case FORM_UNFORMATTED
:
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)
156 switch (u
->flags
.blank
)
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
)
176 switch (u
->flags
.position
)
178 case POSITION_REWIND
:
181 case POSITION_APPEND
:
188 /* if not direct access, it must be
189 either REWIND, APPEND, or ASIS.
190 ASIS seems to be the best default */
194 cf_strcpy (iqp
->position
, iqp
->position_len
, p
);
197 if ((cf
& IOPARM_INQUIRE_HAS_ACTION
) != 0)
202 switch (u
->flags
.action
)
210 case ACTION_READWRITE
:
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
)
249 switch (u
->flags
.delim
)
257 case DELIM_APOSTROPHE
:
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
)
272 switch (u
->flags
.pad
)
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)
292 switch (u
->flags
.convert
)
294 /* l8_to_l4_offset is 0 for little-endian, 1 for big-endian. */
296 p
= l8_to_l4_offset
? "BIG_ENDIAN" : "LITTLE_ENDIAN";
300 p
= l8_to_l4_offset
? "LITTLE_ENDIAN" : "BIG_ENDIAN";
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. */
316 inquire_via_filename (st_parameter_inquire
*iqp
)
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)
327 if ((cf
& IOPARM_INQUIRE_HAS_NUMBER
) != 0)
330 if ((cf
& IOPARM_INQUIRE_HAS_NAMED
) != 0)
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)
369 if ((cf
& IOPARM_INQUIRE_HAS_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
410 extern void st_inquire (st_parameter_inquire
*);
411 export_proto(st_inquire
);
414 st_inquire (st_parameter_inquire
*iqp
)
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
);
427 u
= find_file (iqp
->file
, iqp
->file_len
);
429 inquire_via_filename (iqp
);
431 inquire_via_unit (iqp
, u
);