1 /* Copyright (C) 2002-2017 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
3 Namelist transfer functions contributed by Paul Thomas
4 F2003 I/O support contributed by Jerry DeLisle
6 This file is part of the GNU Fortran runtime library (libgfortran).
8 Libgfortran is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 Libgfortran is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
28 /* transfer.c -- Top level handling of data transfer statements. */
38 /* Calling conventions: Data transfer statements are unlike other
39 library calls in that they extend over several calls.
41 The first call is always a call to st_read() or st_write(). These
42 subroutines return no status unless a namelist read or write is
43 being done, in which case there is the usual status. No further
44 calls are necessary in this case.
46 For other sorts of data transfer, there are zero or more data
47 transfer statement that depend on the format of the data transfer
48 statement. For READ (and for backwards compatibily: for WRITE), one has
53 transfer_character_wide
61 transfer_integer_write
62 transfer_logical_write
63 transfer_character_write
64 transfer_character_wide_write
66 transfer_complex_write
67 transfer_real128_write
68 transfer_complex128_write
70 These subroutines do not return status. The *128 functions
71 are in the file transfer128.c.
73 The last call is a call to st_[read|write]_done(). While
74 something can easily go wrong with the initial st_read() or
75 st_write(), an error inhibits any data from actually being
78 extern void transfer_integer (st_parameter_dt
*, void *, int);
79 export_proto(transfer_integer
);
81 extern void transfer_integer_write (st_parameter_dt
*, void *, int);
82 export_proto(transfer_integer_write
);
84 extern void transfer_real (st_parameter_dt
*, void *, int);
85 export_proto(transfer_real
);
87 extern void transfer_real_write (st_parameter_dt
*, void *, int);
88 export_proto(transfer_real_write
);
90 extern void transfer_logical (st_parameter_dt
*, void *, int);
91 export_proto(transfer_logical
);
93 extern void transfer_logical_write (st_parameter_dt
*, void *, int);
94 export_proto(transfer_logical_write
);
96 extern void transfer_character (st_parameter_dt
*, void *, int);
97 export_proto(transfer_character
);
99 extern void transfer_character_write (st_parameter_dt
*, void *, int);
100 export_proto(transfer_character_write
);
102 extern void transfer_character_wide (st_parameter_dt
*, void *, int, int);
103 export_proto(transfer_character_wide
);
105 extern void transfer_character_wide_write (st_parameter_dt
*,
107 export_proto(transfer_character_wide_write
);
109 extern void transfer_complex (st_parameter_dt
*, void *, int);
110 export_proto(transfer_complex
);
112 extern void transfer_complex_write (st_parameter_dt
*, void *, int);
113 export_proto(transfer_complex_write
);
115 extern void transfer_array (st_parameter_dt
*, gfc_array_char
*, int,
117 export_proto(transfer_array
);
119 extern void transfer_array_write (st_parameter_dt
*, gfc_array_char
*, int,
121 export_proto(transfer_array_write
);
123 /* User defined derived type input/output. */
125 transfer_derived (st_parameter_dt
*dtp
, void *dtio_source
, void *dtio_proc
);
126 export_proto(transfer_derived
);
129 transfer_derived_write (st_parameter_dt
*dtp
, void *dtio_source
, void *dtio_proc
);
130 export_proto(transfer_derived_write
);
132 static void us_read (st_parameter_dt
*, int);
133 static void us_write (st_parameter_dt
*, int);
134 static void next_record_r_unf (st_parameter_dt
*, int);
135 static void next_record_w_unf (st_parameter_dt
*, int);
137 static const st_option advance_opt
[] = {
138 {"yes", ADVANCE_YES
},
144 static const st_option decimal_opt
[] = {
145 {"point", DECIMAL_POINT
},
146 {"comma", DECIMAL_COMMA
},
150 static const st_option round_opt
[] = {
152 {"down", ROUND_DOWN
},
153 {"zero", ROUND_ZERO
},
154 {"nearest", ROUND_NEAREST
},
155 {"compatible", ROUND_COMPATIBLE
},
156 {"processor_defined", ROUND_PROCDEFINED
},
161 static const st_option sign_opt
[] = {
163 {"suppress", SIGN_SS
},
164 {"processor_defined", SIGN_S
},
168 static const st_option blank_opt
[] = {
169 {"null", BLANK_NULL
},
170 {"zero", BLANK_ZERO
},
174 static const st_option delim_opt
[] = {
175 {"apostrophe", DELIM_APOSTROPHE
},
176 {"quote", DELIM_QUOTE
},
177 {"none", DELIM_NONE
},
181 static const st_option pad_opt
[] = {
188 { FORMATTED_SEQUENTIAL
, UNFORMATTED_SEQUENTIAL
,
189 FORMATTED_DIRECT
, UNFORMATTED_DIRECT
, FORMATTED_STREAM
, UNFORMATTED_STREAM
195 current_mode (st_parameter_dt
*dtp
)
199 m
= FORM_UNSPECIFIED
;
201 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
203 m
= dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
?
204 FORMATTED_DIRECT
: UNFORMATTED_DIRECT
;
206 else if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
208 m
= dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
?
209 FORMATTED_SEQUENTIAL
: UNFORMATTED_SEQUENTIAL
;
211 else if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
)
213 m
= dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
?
214 FORMATTED_STREAM
: UNFORMATTED_STREAM
;
221 /* Mid level data transfer statements. */
223 /* Read sequential file - internal unit */
226 read_sf_internal (st_parameter_dt
*dtp
, int * length
)
228 static char *empty_string
[0];
232 /* Zero size array gives internal unit len of 0. Nothing to read. */
233 if (dtp
->internal_unit_len
== 0
234 && dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
237 /* If we have seen an eor previously, return a length of 0. The
238 caller is responsible for correctly padding the input field. */
239 if (dtp
->u
.p
.sf_seen_eor
)
242 /* Just return something that isn't a NULL pointer, otherwise the
243 caller thinks an error occurred. */
244 return (char*) empty_string
;
248 if (is_char4_unit(dtp
))
251 gfc_char4_t
*p
= (gfc_char4_t
*) mem_alloc_r4 (dtp
->u
.p
.current_unit
->s
,
253 base
= fbuf_alloc (dtp
->u
.p
.current_unit
, lorig
);
254 for (i
= 0; i
< *length
; i
++, p
++)
255 base
[i
] = *p
> 255 ? '?' : (unsigned char) *p
;
258 base
= mem_alloc_r (dtp
->u
.p
.current_unit
->s
, length
);
260 if (unlikely (lorig
> *length
))
266 dtp
->u
.p
.current_unit
->bytes_left
-= *length
;
268 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
269 dtp
->u
.p
.current_unit
->has_size
)
270 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *length
;
276 /* When reading sequential formatted records we have a problem. We
277 don't know how long the line is until we read the trailing newline,
278 and we don't want to read too much. If we read too much, we might
279 have to do a physical seek backwards depending on how much data is
280 present, and devices like terminals aren't seekable and would cause
283 Given this, the solution is to read a byte at a time, stopping if
284 we hit the newline. For small allocations, we use a static buffer.
285 For larger allocations, we are forced to allocate memory on the
286 heap. Hopefully this won't happen very often. */
288 /* Read sequential file - external unit */
291 read_sf (st_parameter_dt
*dtp
, int * length
)
293 static char *empty_string
[0];
295 int n
, lorig
, seen_comma
;
297 /* If we have seen an eor previously, return a length of 0. The
298 caller is responsible for correctly padding the input field. */
299 if (dtp
->u
.p
.sf_seen_eor
)
302 /* Just return something that isn't a NULL pointer, otherwise the
303 caller thinks an error occurred. */
304 return (char*) empty_string
;
309 /* Read data into format buffer and scan through it. */
314 q
= fbuf_getc (dtp
->u
.p
.current_unit
);
317 else if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
318 && (q
== '\n' || q
== '\r'))
320 /* Unexpected end of line. Set the position. */
321 dtp
->u
.p
.sf_seen_eor
= 1;
323 /* If we see an EOR during non-advancing I/O, we need to skip
324 the rest of the I/O statement. Set the corresponding flag. */
325 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
|| dtp
->u
.p
.seen_dollar
)
326 dtp
->u
.p
.eor_condition
= 1;
328 /* If we encounter a CR, it might be a CRLF. */
329 if (q
== '\r') /* Probably a CRLF */
331 /* See if there is an LF. */
332 q2
= fbuf_getc (dtp
->u
.p
.current_unit
);
334 dtp
->u
.p
.sf_seen_eor
= 2;
335 else if (q2
!= EOF
) /* Oops, seek back. */
336 fbuf_seek (dtp
->u
.p
.current_unit
, -1, SEEK_CUR
);
339 /* Without padding, terminate the I/O statement without assigning
340 the value. With padding, the value still needs to be assigned,
341 so we can just continue with a short read. */
342 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
344 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
351 /* Short circuit the read if a comma is found during numeric input.
352 The flag is set to zero during character reads so that commas in
353 strings are not ignored */
355 if (dtp
->u
.p
.sf_read_comma
== 1)
358 notify_std (&dtp
->common
, GFC_STD_GNU
,
359 "Comma in formatted numeric read.");
367 /* A short read implies we hit EOF, unless we hit EOR, a comma, or
368 some other stuff. Set the relevant flags. */
369 if (lorig
> *length
&& !dtp
->u
.p
.sf_seen_eor
&& !seen_comma
)
373 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
375 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
381 dtp
->u
.p
.eor_condition
= 1;
386 else if (dtp
->u
.p
.advance_status
== ADVANCE_NO
387 || dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
388 || dtp
->u
.p
.current_unit
->bytes_left
389 == dtp
->u
.p
.current_unit
->recl
)
398 dtp
->u
.p
.current_unit
->bytes_left
-= n
;
400 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
401 dtp
->u
.p
.current_unit
->has_size
)
402 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) n
;
404 /* We can't call fbuf_getptr before the loop doing fbuf_getc, because
405 fbuf_getc might reallocate the buffer. So return current pointer
406 minus all the advances, which is n plus up to two characters
407 of newline or comma. */
408 return fbuf_getptr (dtp
->u
.p
.current_unit
)
409 - n
- dtp
->u
.p
.sf_seen_eor
- seen_comma
;
413 /* Function for reading the next couple of bytes from the current
414 file, advancing the current position. We return NULL on end of record or
415 end of file. This function is only for formatted I/O, unformatted uses
418 If the read is short, then it is because the current record does not
419 have enough data to satisfy the read request and the file was
420 opened with PAD=YES. The caller must assume tailing spaces for
424 read_block_form (st_parameter_dt
*dtp
, int * nbytes
)
429 if (!is_stream_io (dtp
))
431 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) *nbytes
)
433 /* For preconnected units with default record length, set bytes left
434 to unit record length and proceed, otherwise error. */
435 if (dtp
->u
.p
.current_unit
->unit_number
== options
.stdin_unit
436 && dtp
->u
.p
.current_unit
->recl
== DEFAULT_RECL
)
437 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
440 if (unlikely (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
441 && !is_internal_unit (dtp
))
443 /* Not enough data left. */
444 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
449 if (unlikely (dtp
->u
.p
.current_unit
->bytes_left
== 0
450 && !is_internal_unit(dtp
)))
456 *nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
460 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
&&
461 (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
||
462 dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
))
464 if (is_internal_unit (dtp
))
465 source
= read_sf_internal (dtp
, nbytes
);
467 source
= read_sf (dtp
, nbytes
);
469 dtp
->u
.p
.current_unit
->strm_pos
+=
470 (gfc_offset
) (*nbytes
+ dtp
->u
.p
.sf_seen_eor
);
474 /* If we reach here, we can assume it's direct access. */
476 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) *nbytes
;
479 source
= fbuf_read (dtp
->u
.p
.current_unit
, nbytes
);
480 fbuf_seek (dtp
->u
.p
.current_unit
, *nbytes
, SEEK_CUR
);
482 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
483 dtp
->u
.p
.current_unit
->has_size
)
484 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *nbytes
;
486 if (norig
!= *nbytes
)
488 /* Short read, this shouldn't happen. */
489 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
491 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
496 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) *nbytes
;
502 /* Read a block from a character(kind=4) internal unit, to be transferred into
503 a character(kind=4) variable. Note: Portions of this code borrowed from
506 read_block_form4 (st_parameter_dt
*dtp
, int * nbytes
)
508 static gfc_char4_t
*empty_string
[0];
512 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) *nbytes
)
513 *nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
515 /* Zero size array gives internal unit len of 0. Nothing to read. */
516 if (dtp
->internal_unit_len
== 0
517 && dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
520 /* If we have seen an eor previously, return a length of 0. The
521 caller is responsible for correctly padding the input field. */
522 if (dtp
->u
.p
.sf_seen_eor
)
525 /* Just return something that isn't a NULL pointer, otherwise the
526 caller thinks an error occurred. */
531 source
= (gfc_char4_t
*) mem_alloc_r4 (dtp
->u
.p
.current_unit
->s
, nbytes
);
533 if (unlikely (lorig
> *nbytes
))
539 dtp
->u
.p
.current_unit
->bytes_left
-= *nbytes
;
541 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
542 dtp
->u
.p
.current_unit
->has_size
)
543 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *nbytes
;
549 /* Reads a block directly into application data space. This is for
550 unformatted files. */
553 read_block_direct (st_parameter_dt
*dtp
, void *buf
, size_t nbytes
)
555 ssize_t to_read_record
;
556 ssize_t have_read_record
;
557 ssize_t to_read_subrecord
;
558 ssize_t have_read_subrecord
;
561 if (is_stream_io (dtp
))
563 have_read_record
= sread (dtp
->u
.p
.current_unit
->s
, buf
,
565 if (unlikely (have_read_record
< 0))
567 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
571 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_read_record
;
573 if (unlikely ((ssize_t
) nbytes
!= have_read_record
))
575 /* Short read, e.g. if we hit EOF. For stream files,
576 we have to set the end-of-file condition. */
582 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
584 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) nbytes
)
587 to_read_record
= dtp
->u
.p
.current_unit
->bytes_left
;
588 nbytes
= to_read_record
;
593 to_read_record
= nbytes
;
596 dtp
->u
.p
.current_unit
->bytes_left
-= to_read_record
;
598 to_read_record
= sread (dtp
->u
.p
.current_unit
->s
, buf
, to_read_record
);
599 if (unlikely (to_read_record
< 0))
601 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
605 if (to_read_record
!= (ssize_t
) nbytes
)
607 /* Short read, e.g. if we hit EOF. Apparently, we read
608 more than was written to the last record. */
612 if (unlikely (short_record
))
614 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
619 /* Unformatted sequential. We loop over the subrecords, reading
620 until the request has been fulfilled or the record has run out
621 of continuation subrecords. */
623 /* Check whether we exceed the total record length. */
625 if (dtp
->u
.p
.current_unit
->flags
.has_recl
626 && ((gfc_offset
) nbytes
> dtp
->u
.p
.current_unit
->bytes_left
))
628 to_read_record
= dtp
->u
.p
.current_unit
->bytes_left
;
633 to_read_record
= nbytes
;
636 have_read_record
= 0;
640 if (dtp
->u
.p
.current_unit
->bytes_left_subrecord
641 < (gfc_offset
) to_read_record
)
643 to_read_subrecord
= dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
644 to_read_record
-= to_read_subrecord
;
648 to_read_subrecord
= to_read_record
;
652 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-= to_read_subrecord
;
654 have_read_subrecord
= sread (dtp
->u
.p
.current_unit
->s
,
655 buf
+ have_read_record
, to_read_subrecord
);
656 if (unlikely (have_read_subrecord
< 0))
658 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
662 have_read_record
+= have_read_subrecord
;
664 if (unlikely (to_read_subrecord
!= have_read_subrecord
))
666 /* Short read, e.g. if we hit EOF. This means the record
667 structure has been corrupted, or the trailing record
668 marker would still be present. */
670 generate_error (&dtp
->common
, LIBERROR_CORRUPT_FILE
, NULL
);
674 if (to_read_record
> 0)
676 if (likely (dtp
->u
.p
.current_unit
->continued
))
678 next_record_r_unf (dtp
, 0);
683 /* Let's make sure the file position is correctly pre-positioned
684 for the next read statement. */
686 dtp
->u
.p
.current_unit
->current_record
= 0;
687 next_record_r_unf (dtp
, 0);
688 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
694 /* Normal exit, the read request has been fulfilled. */
699 dtp
->u
.p
.current_unit
->bytes_left
-= have_read_record
;
700 if (unlikely (short_record
))
702 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
709 /* Function for writing a block of bytes to the current file at the
710 current position, advancing the file pointer. We are given a length
711 and return a pointer to a buffer that the caller must (completely)
712 fill in. Returns NULL on error. */
715 write_block (st_parameter_dt
*dtp
, int length
)
719 if (!is_stream_io (dtp
))
721 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) length
)
723 /* For preconnected units with default record length, set bytes left
724 to unit record length and proceed, otherwise error. */
725 if (likely ((dtp
->u
.p
.current_unit
->unit_number
726 == options
.stdout_unit
727 || dtp
->u
.p
.current_unit
->unit_number
728 == options
.stderr_unit
)
729 && dtp
->u
.p
.current_unit
->recl
== DEFAULT_RECL
))
730 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
733 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
738 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) length
;
741 if (is_internal_unit (dtp
))
743 if (is_char4_unit(dtp
)) /* char4 internel unit. */
746 dest4
= mem_alloc_w4 (dtp
->u
.p
.current_unit
->s
, &length
);
749 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
755 dest
= mem_alloc_w (dtp
->u
.p
.current_unit
->s
, &length
);
759 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
763 if (unlikely (dtp
->u
.p
.current_unit
->endfile
== AT_ENDFILE
))
764 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
768 dest
= fbuf_alloc (dtp
->u
.p
.current_unit
, length
);
771 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
776 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
777 dtp
->u
.p
.current_unit
->has_size
)
778 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) length
;
780 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) length
;
786 /* High level interface to swrite(), taking care of errors. This is only
787 called for unformatted files. There are three cases to consider:
788 Stream I/O, unformatted direct, unformatted sequential. */
791 write_buf (st_parameter_dt
*dtp
, void *buf
, size_t nbytes
)
794 ssize_t have_written
;
795 ssize_t to_write_subrecord
;
800 if (is_stream_io (dtp
))
802 have_written
= swrite (dtp
->u
.p
.current_unit
->s
, buf
, nbytes
);
803 if (unlikely (have_written
< 0))
805 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
809 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_written
;
814 /* Unformatted direct access. */
816 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
818 if (unlikely (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) nbytes
))
820 generate_error (&dtp
->common
, LIBERROR_DIRECT_EOR
, NULL
);
824 if (buf
== NULL
&& nbytes
== 0)
827 have_written
= swrite (dtp
->u
.p
.current_unit
->s
, buf
, nbytes
);
828 if (unlikely (have_written
< 0))
830 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
834 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_written
;
835 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) have_written
;
840 /* Unformatted sequential. */
844 if (dtp
->u
.p
.current_unit
->flags
.has_recl
845 && (gfc_offset
) nbytes
> dtp
->u
.p
.current_unit
->bytes_left
)
847 nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
859 (size_t) dtp
->u
.p
.current_unit
->bytes_left_subrecord
< nbytes
?
860 (size_t) dtp
->u
.p
.current_unit
->bytes_left_subrecord
: nbytes
;
862 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-=
863 (gfc_offset
) to_write_subrecord
;
865 to_write_subrecord
= swrite (dtp
->u
.p
.current_unit
->s
,
866 buf
+ have_written
, to_write_subrecord
);
867 if (unlikely (to_write_subrecord
< 0))
869 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
873 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) to_write_subrecord
;
874 nbytes
-= to_write_subrecord
;
875 have_written
+= to_write_subrecord
;
880 next_record_w_unf (dtp
, 1);
883 dtp
->u
.p
.current_unit
->bytes_left
-= have_written
;
884 if (unlikely (short_record
))
886 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
893 /* Reverse memcpy - used for byte swapping. */
896 reverse_memcpy (void *dest
, const void *src
, size_t n
)
902 s
= (char *) src
+ n
- 1;
904 /* Write with ascending order - this is likely faster
905 on modern architectures because of write combining. */
911 /* Utility function for byteswapping an array, using the bswap
912 builtins if possible. dest and src can overlap completely, or then
913 they must point to separate objects; partial overlaps are not
917 bswap_array (void *dest
, const void *src
, size_t size
, size_t nelems
)
927 for (size_t i
= 0; i
< nelems
; i
++)
928 ((uint16_t*)dest
)[i
] = __builtin_bswap16 (((uint16_t*)src
)[i
]);
931 for (size_t i
= 0; i
< nelems
; i
++)
932 ((uint32_t*)dest
)[i
] = __builtin_bswap32 (((uint32_t*)src
)[i
]);
935 for (size_t i
= 0; i
< nelems
; i
++)
936 ((uint64_t*)dest
)[i
] = __builtin_bswap64 (((uint64_t*)src
)[i
]);
941 for (size_t i
= 0; i
< nelems
; i
++)
944 memcpy (&tmp
, ps
, 4);
945 *(uint32_t*)pd
= __builtin_bswap32 (*(uint32_t*)(ps
+ 8));
946 *(uint32_t*)(pd
+ 4) = __builtin_bswap32 (*(uint32_t*)(ps
+ 4));
947 *(uint32_t*)(pd
+ 8) = __builtin_bswap32 (tmp
);
955 for (size_t i
= 0; i
< nelems
; i
++)
958 memcpy (&tmp
, ps
, 8);
959 *(uint64_t*)pd
= __builtin_bswap64 (*(uint64_t*)(ps
+ 8));
960 *(uint64_t*)(pd
+ 8) = __builtin_bswap64 (tmp
);
970 for (size_t i
= 0; i
< nelems
; i
++)
972 reverse_memcpy (pd
, ps
, size
);
979 /* In-place byte swap. */
980 for (size_t i
= 0; i
< nelems
; i
++)
982 char tmp
, *low
= pd
, *high
= pd
+ size
- 1;
983 for (size_t j
= 0; j
< size
/2; j
++)
998 /* Master function for unformatted reads. */
1001 unformatted_read (st_parameter_dt
*dtp
, bt type
,
1002 void *dest
, int kind
, size_t size
, size_t nelems
)
1004 if (type
== BT_CLASS
)
1006 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1007 char tmp_iomsg
[IOMSG_LEN
] = "";
1009 gfc_charlen_type child_iomsg_len
;
1011 int *child_iostat
= NULL
;
1013 /* Set iostat, intent(out). */
1015 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1016 dtp
->common
.iostat
: &noiostat
;
1018 /* Set iomsg, intent(inout). */
1019 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1021 child_iomsg
= dtp
->common
.iomsg
;
1022 child_iomsg_len
= dtp
->common
.iomsg_len
;
1026 child_iomsg
= tmp_iomsg
;
1027 child_iomsg_len
= IOMSG_LEN
;
1030 /* Call the user defined unformatted READ procedure. */
1031 dtp
->u
.p
.current_unit
->child_dtio
++;
1032 dtp
->u
.p
.ufdtio_ptr (dest
, &unit
, child_iostat
, child_iomsg
,
1034 dtp
->u
.p
.current_unit
->child_dtio
--;
1038 if (type
== BT_CHARACTER
)
1039 size
*= GFC_SIZE_OF_CHAR_KIND(kind
);
1040 read_block_direct (dtp
, dest
, size
* nelems
);
1042 if (unlikely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_SWAP
)
1045 /* Handle wide chracters. */
1046 if (type
== BT_CHARACTER
)
1052 /* Break up complex into its constituent reals. */
1053 else if (type
== BT_COMPLEX
)
1058 bswap_array (dest
, dest
, size
, nelems
);
1063 /* Master function for unformatted writes. NOTE: For kind=10 the size is 16
1064 bytes on 64 bit machines. The unused bytes are not initialized and never
1065 used, which can show an error with memory checking analyzers like
1066 valgrind. We us BT_CLASS to denote a User Defined I/O call. */
1069 unformatted_write (st_parameter_dt
*dtp
, bt type
,
1070 void *source
, int kind
, size_t size
, size_t nelems
)
1072 if (type
== BT_CLASS
)
1074 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1075 char tmp_iomsg
[IOMSG_LEN
] = "";
1077 gfc_charlen_type child_iomsg_len
;
1079 int *child_iostat
= NULL
;
1081 /* Set iostat, intent(out). */
1083 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1084 dtp
->common
.iostat
: &noiostat
;
1086 /* Set iomsg, intent(inout). */
1087 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1089 child_iomsg
= dtp
->common
.iomsg
;
1090 child_iomsg_len
= dtp
->common
.iomsg_len
;
1094 child_iomsg
= tmp_iomsg
;
1095 child_iomsg_len
= IOMSG_LEN
;
1098 /* Call the user defined unformatted WRITE procedure. */
1099 dtp
->u
.p
.current_unit
->child_dtio
++;
1100 dtp
->u
.p
.ufdtio_ptr (source
, &unit
, child_iostat
, child_iomsg
,
1102 dtp
->u
.p
.current_unit
->child_dtio
--;
1106 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
)
1109 size_t stride
= type
== BT_CHARACTER
?
1110 size
* GFC_SIZE_OF_CHAR_KIND(kind
) : size
;
1112 write_buf (dtp
, source
, stride
* nelems
);
1116 #define BSWAP_BUFSZ 512
1117 char buffer
[BSWAP_BUFSZ
];
1123 /* Handle wide chracters. */
1124 if (type
== BT_CHARACTER
&& kind
!= 1)
1130 /* Break up complex into its constituent reals. */
1131 if (type
== BT_COMPLEX
)
1137 /* By now, all complex variables have been split into their
1138 constituent reals. */
1144 if (size
* nrem
> BSWAP_BUFSZ
)
1145 nc
= BSWAP_BUFSZ
/ size
;
1149 bswap_array (buffer
, p
, size
, nc
);
1150 write_buf (dtp
, buffer
, size
* nc
);
1159 /* Return a pointer to the name of a type. */
1184 p
= "CLASS or DERIVED";
1187 internal_error (NULL
, "type_name(): Bad type");
1194 /* Write a constant string to the output.
1195 This is complicated because the string can have doubled delimiters
1196 in it. The length in the format node is the true length. */
1199 write_constant_string (st_parameter_dt
*dtp
, const fnode
*f
)
1201 char c
, delimiter
, *p
, *q
;
1204 length
= f
->u
.string
.length
;
1208 p
= write_block (dtp
, length
);
1215 for (; length
> 0; length
--)
1218 if (c
== delimiter
&& c
!= 'H' && c
!= 'h')
1219 q
++; /* Skip the doubled delimiter. */
1224 /* Given actual and expected types in a formatted data transfer, make
1225 sure they agree. If not, an error message is generated. Returns
1226 nonzero if something went wrong. */
1229 require_type (st_parameter_dt
*dtp
, bt expected
, bt actual
, const fnode
*f
)
1232 char buffer
[BUFLEN
];
1234 if (actual
== expected
)
1237 /* Adjust item_count before emitting error message. */
1238 snprintf (buffer
, BUFLEN
,
1239 "Expected %s for item %d in formatted transfer, got %s",
1240 type_name (expected
), dtp
->u
.p
.item_count
- 1, type_name (actual
));
1242 format_error (dtp
, f
, buffer
);
1248 require_numeric_type (st_parameter_dt
*dtp
, bt actual
, const fnode
*f
)
1251 char buffer
[BUFLEN
];
1253 if (actual
== BT_INTEGER
|| actual
== BT_REAL
|| actual
== BT_COMPLEX
)
1256 /* Adjust item_count before emitting error message. */
1257 snprintf (buffer
, BUFLEN
,
1258 "Expected numeric type for item %d in formatted transfer, got %s",
1259 dtp
->u
.p
.item_count
- 1, type_name (actual
));
1261 format_error (dtp
, f
, buffer
);
1266 get_dt_format (char *p
, gfc_charlen_type
*length
)
1268 char delim
= p
[-1]; /* The delimiter is always the first character back. */
1270 gfc_charlen_type len
= *length
; /* This length already correct, less 'DT'. */
1272 res
= q
= xmalloc (len
+ 2);
1274 /* Set the beginning of the string to 'DT', length adjusted below. */
1278 /* The string may contain doubled quotes so scan and skip as needed. */
1279 for (; len
> 0; len
--)
1283 p
++; /* Skip the doubled delimiter. */
1286 /* Adjust the string length by two now that we are done. */
1293 /* This function is in the main loop for a formatted data transfer
1294 statement. It would be natural to implement this as a coroutine
1295 with the user program, but C makes that awkward. We loop,
1296 processing format elements. When we actually have to transfer
1297 data instead of just setting flags, we return control to the user
1298 program which calls a function that supplies the address and type
1299 of the next element, then comes back here to process it. */
1302 formatted_transfer_scalar_read (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1305 int pos
, bytes_used
;
1309 int consume_data_flag
;
1311 /* Change a complex data item into a pair of reals. */
1313 n
= (p
== NULL
) ? 0 : ((type
!= BT_COMPLEX
) ? 1 : 2);
1314 if (type
== BT_COMPLEX
)
1320 /* If there's an EOR condition, we simulate finalizing the transfer
1321 by doing nothing. */
1322 if (dtp
->u
.p
.eor_condition
)
1325 /* Set this flag so that commas in reads cause the read to complete before
1326 the entire field has been read. The next read field will start right after
1327 the comma in the stream. (Set to 0 for character reads). */
1328 dtp
->u
.p
.sf_read_comma
=
1329 dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
? 0 : 1;
1333 /* If reversion has occurred and there is another real data item,
1334 then we have to move to the next record. */
1335 if (dtp
->u
.p
.reversion_flag
&& n
> 0)
1337 dtp
->u
.p
.reversion_flag
= 0;
1338 next_record (dtp
, 0);
1341 consume_data_flag
= 1;
1342 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1345 f
= next_format (dtp
);
1348 /* No data descriptors left. */
1349 if (unlikely (n
> 0))
1350 generate_error (&dtp
->common
, LIBERROR_FORMAT
,
1351 "Insufficient data descriptors in format after reversion");
1357 bytes_used
= (int)(dtp
->u
.p
.current_unit
->recl
1358 - dtp
->u
.p
.current_unit
->bytes_left
);
1360 if (is_stream_io(dtp
))
1367 goto need_read_data
;
1368 if (require_type (dtp
, BT_INTEGER
, type
, f
))
1370 read_decimal (dtp
, f
, p
, kind
);
1375 goto need_read_data
;
1376 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1377 && require_numeric_type (dtp
, type
, f
))
1379 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1380 && require_type (dtp
, BT_INTEGER
, type
, f
))
1382 read_radix (dtp
, f
, p
, kind
, 2);
1387 goto need_read_data
;
1388 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1389 && require_numeric_type (dtp
, type
, f
))
1391 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1392 && require_type (dtp
, BT_INTEGER
, type
, f
))
1394 read_radix (dtp
, f
, p
, kind
, 8);
1399 goto need_read_data
;
1400 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1401 && require_numeric_type (dtp
, type
, f
))
1403 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1404 && require_type (dtp
, BT_INTEGER
, type
, f
))
1406 read_radix (dtp
, f
, p
, kind
, 16);
1411 goto need_read_data
;
1413 /* It is possible to have FMT_A with something not BT_CHARACTER such
1414 as when writing out hollerith strings, so check both type
1415 and kind before calling wide character routines. */
1416 if (type
== BT_CHARACTER
&& kind
== 4)
1417 read_a_char4 (dtp
, f
, p
, size
);
1419 read_a (dtp
, f
, p
, size
);
1424 goto need_read_data
;
1425 read_l (dtp
, f
, p
, kind
);
1430 goto need_read_data
;
1431 if (require_type (dtp
, BT_REAL
, type
, f
))
1433 read_f (dtp
, f
, p
, kind
);
1438 goto need_read_data
;
1439 if (require_type (dtp
, BT_CLASS
, type
, f
))
1441 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1443 char tmp_iomsg
[IOMSG_LEN
] = "";
1445 gfc_charlen_type child_iomsg_len
;
1447 int *child_iostat
= NULL
;
1449 gfc_charlen_type iotype_len
= f
->u
.udf
.string_len
;
1451 /* Build the iotype string. */
1452 if (iotype_len
== 0)
1458 iotype
= get_dt_format (f
->u
.udf
.string
, &iotype_len
);
1460 /* Set iostat, intent(out). */
1462 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1463 dtp
->common
.iostat
: &noiostat
;
1465 /* Set iomsg, intent(inout). */
1466 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1468 child_iomsg
= dtp
->common
.iomsg
;
1469 child_iomsg_len
= dtp
->common
.iomsg_len
;
1473 child_iomsg
= tmp_iomsg
;
1474 child_iomsg_len
= IOMSG_LEN
;
1477 /* Call the user defined formatted READ procedure. */
1478 dtp
->u
.p
.current_unit
->child_dtio
++;
1479 dtp
->u
.p
.fdtio_ptr (p
, &unit
, iotype
, f
->u
.udf
.vlist
,
1480 child_iostat
, child_iomsg
,
1481 iotype_len
, child_iomsg_len
);
1482 dtp
->u
.p
.current_unit
->child_dtio
--;
1484 if (f
->u
.udf
.string_len
!= 0)
1486 /* Note: vlist is freed in free_format_data. */
1491 goto need_read_data
;
1492 if (require_type (dtp
, BT_REAL
, type
, f
))
1494 read_f (dtp
, f
, p
, kind
);
1499 goto need_read_data
;
1500 if (require_type (dtp
, BT_REAL
, type
, f
))
1502 read_f (dtp
, f
, p
, kind
);
1507 goto need_read_data
;
1508 if (require_type (dtp
, BT_REAL
, type
, f
))
1510 read_f (dtp
, f
, p
, kind
);
1515 goto need_read_data
;
1516 if (require_type (dtp
, BT_REAL
, type
, f
))
1518 read_f (dtp
, f
, p
, kind
);
1523 goto need_read_data
;
1527 read_decimal (dtp
, f
, p
, kind
);
1530 read_l (dtp
, f
, p
, kind
);
1534 read_a_char4 (dtp
, f
, p
, size
);
1536 read_a (dtp
, f
, p
, size
);
1539 read_f (dtp
, f
, p
, kind
);
1542 internal_error (&dtp
->common
, "formatted_transfer(): Bad type");
1547 consume_data_flag
= 0;
1548 format_error (dtp
, f
, "Constant string in input format");
1551 /* Format codes that don't transfer data. */
1554 consume_data_flag
= 0;
1555 dtp
->u
.p
.skips
+= f
->u
.n
;
1556 pos
= bytes_used
+ dtp
->u
.p
.skips
- 1;
1557 dtp
->u
.p
.pending_spaces
= pos
- dtp
->u
.p
.max_pos
+ 1;
1558 read_x (dtp
, f
->u
.n
);
1563 consume_data_flag
= 0;
1565 if (f
->format
== FMT_TL
)
1567 /* Handle the special case when no bytes have been used yet.
1568 Cannot go below zero. */
1569 if (bytes_used
== 0)
1571 dtp
->u
.p
.pending_spaces
-= f
->u
.n
;
1572 dtp
->u
.p
.skips
-= f
->u
.n
;
1573 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
< 0 ? 0 : dtp
->u
.p
.skips
;
1576 pos
= bytes_used
- f
->u
.n
;
1581 /* Standard 10.6.1.1: excessive left tabbing is reset to the
1582 left tab limit. We do not check if the position has gone
1583 beyond the end of record because a subsequent tab could
1584 bring us back again. */
1585 pos
= pos
< 0 ? 0 : pos
;
1587 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
+ pos
- bytes_used
;
1588 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
1589 + pos
- dtp
->u
.p
.max_pos
;
1590 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
< 0
1591 ? 0 : dtp
->u
.p
.pending_spaces
;
1592 if (dtp
->u
.p
.skips
== 0)
1595 /* Adjust everything for end-of-record condition */
1596 if (dtp
->u
.p
.sf_seen_eor
&& !is_internal_unit (dtp
))
1598 dtp
->u
.p
.current_unit
->bytes_left
-= dtp
->u
.p
.sf_seen_eor
;
1599 dtp
->u
.p
.skips
-= dtp
->u
.p
.sf_seen_eor
;
1601 if (dtp
->u
.p
.pending_spaces
== 0)
1602 dtp
->u
.p
.sf_seen_eor
= 0;
1604 if (dtp
->u
.p
.skips
< 0)
1606 if (is_internal_unit (dtp
))
1607 sseek (dtp
->u
.p
.current_unit
->s
, dtp
->u
.p
.skips
, SEEK_CUR
);
1609 fbuf_seek (dtp
->u
.p
.current_unit
, dtp
->u
.p
.skips
, SEEK_CUR
);
1610 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) dtp
->u
.p
.skips
;
1611 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1614 read_x (dtp
, dtp
->u
.p
.skips
);
1618 consume_data_flag
= 0;
1619 dtp
->u
.p
.sign_status
= SIGN_S
;
1623 consume_data_flag
= 0;
1624 dtp
->u
.p
.sign_status
= SIGN_SS
;
1628 consume_data_flag
= 0;
1629 dtp
->u
.p
.sign_status
= SIGN_SP
;
1633 consume_data_flag
= 0 ;
1634 dtp
->u
.p
.blank_status
= BLANK_NULL
;
1638 consume_data_flag
= 0;
1639 dtp
->u
.p
.blank_status
= BLANK_ZERO
;
1643 consume_data_flag
= 0;
1644 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_COMMA
;
1648 consume_data_flag
= 0;
1649 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_POINT
;
1653 consume_data_flag
= 0;
1654 dtp
->u
.p
.current_unit
->round_status
= ROUND_COMPATIBLE
;
1658 consume_data_flag
= 0;
1659 dtp
->u
.p
.current_unit
->round_status
= ROUND_DOWN
;
1663 consume_data_flag
= 0;
1664 dtp
->u
.p
.current_unit
->round_status
= ROUND_NEAREST
;
1668 consume_data_flag
= 0;
1669 dtp
->u
.p
.current_unit
->round_status
= ROUND_PROCDEFINED
;
1673 consume_data_flag
= 0;
1674 dtp
->u
.p
.current_unit
->round_status
= ROUND_UP
;
1678 consume_data_flag
= 0;
1679 dtp
->u
.p
.current_unit
->round_status
= ROUND_ZERO
;
1683 consume_data_flag
= 0;
1684 dtp
->u
.p
.scale_factor
= f
->u
.k
;
1688 consume_data_flag
= 0;
1689 dtp
->u
.p
.seen_dollar
= 1;
1693 consume_data_flag
= 0;
1694 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1695 next_record (dtp
, 0);
1699 /* A colon descriptor causes us to exit this loop (in
1700 particular preventing another / descriptor from being
1701 processed) unless there is another data item to be
1703 consume_data_flag
= 0;
1709 internal_error (&dtp
->common
, "Bad format node");
1712 /* Adjust the item count and data pointer. */
1714 if ((consume_data_flag
> 0) && (n
> 0))
1717 p
= ((char *) p
) + size
;
1722 pos
= (int)(dtp
->u
.p
.current_unit
->recl
- dtp
->u
.p
.current_unit
->bytes_left
);
1723 dtp
->u
.p
.max_pos
= (dtp
->u
.p
.max_pos
> pos
) ? dtp
->u
.p
.max_pos
: pos
;
1728 /* Come here when we need a data descriptor but don't have one. We
1729 push the current format node back onto the input, then return and
1730 let the user program call us back with the data. */
1732 unget_format (dtp
, f
);
1737 formatted_transfer_scalar_write (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1740 int pos
, bytes_used
;
1744 int consume_data_flag
;
1746 /* Change a complex data item into a pair of reals. */
1748 n
= (p
== NULL
) ? 0 : ((type
!= BT_COMPLEX
) ? 1 : 2);
1749 if (type
== BT_COMPLEX
)
1755 /* If there's an EOR condition, we simulate finalizing the transfer
1756 by doing nothing. */
1757 if (dtp
->u
.p
.eor_condition
)
1760 /* Set this flag so that commas in reads cause the read to complete before
1761 the entire field has been read. The next read field will start right after
1762 the comma in the stream. (Set to 0 for character reads). */
1763 dtp
->u
.p
.sf_read_comma
=
1764 dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
? 0 : 1;
1768 /* If reversion has occurred and there is another real data item,
1769 then we have to move to the next record. */
1770 if (dtp
->u
.p
.reversion_flag
&& n
> 0)
1772 dtp
->u
.p
.reversion_flag
= 0;
1773 next_record (dtp
, 0);
1776 consume_data_flag
= 1;
1777 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1780 f
= next_format (dtp
);
1783 /* No data descriptors left. */
1784 if (unlikely (n
> 0))
1785 generate_error (&dtp
->common
, LIBERROR_FORMAT
,
1786 "Insufficient data descriptors in format after reversion");
1790 /* Now discharge T, TR and X movements to the right. This is delayed
1791 until a data producing format to suppress trailing spaces. */
1794 if (dtp
->u
.p
.mode
== WRITING
&& dtp
->u
.p
.skips
!= 0
1795 && ((n
>0 && ( t
== FMT_I
|| t
== FMT_B
|| t
== FMT_O
1796 || t
== FMT_Z
|| t
== FMT_F
|| t
== FMT_E
1797 || t
== FMT_EN
|| t
== FMT_ES
|| t
== FMT_G
1798 || t
== FMT_L
|| t
== FMT_A
|| t
== FMT_D
1800 || t
== FMT_STRING
))
1802 if (dtp
->u
.p
.skips
> 0)
1805 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
1806 tmp
= (int)(dtp
->u
.p
.current_unit
->recl
1807 - dtp
->u
.p
.current_unit
->bytes_left
);
1809 dtp
->u
.p
.max_pos
> tmp
? dtp
->u
.p
.max_pos
: tmp
;
1812 if (dtp
->u
.p
.skips
< 0)
1814 if (is_internal_unit (dtp
))
1815 sseek (dtp
->u
.p
.current_unit
->s
, dtp
->u
.p
.skips
, SEEK_CUR
);
1817 fbuf_seek (dtp
->u
.p
.current_unit
, dtp
->u
.p
.skips
, SEEK_CUR
);
1818 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) dtp
->u
.p
.skips
;
1820 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1823 bytes_used
= (int)(dtp
->u
.p
.current_unit
->recl
1824 - dtp
->u
.p
.current_unit
->bytes_left
);
1826 if (is_stream_io(dtp
))
1834 if (require_type (dtp
, BT_INTEGER
, type
, f
))
1836 write_i (dtp
, f
, p
, kind
);
1842 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1843 && require_numeric_type (dtp
, type
, f
))
1845 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1846 && require_type (dtp
, BT_INTEGER
, type
, f
))
1848 write_b (dtp
, f
, p
, kind
);
1854 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1855 && require_numeric_type (dtp
, type
, f
))
1857 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1858 && require_type (dtp
, BT_INTEGER
, type
, f
))
1860 write_o (dtp
, f
, p
, kind
);
1866 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1867 && require_numeric_type (dtp
, type
, f
))
1869 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1870 && require_type (dtp
, BT_INTEGER
, type
, f
))
1872 write_z (dtp
, f
, p
, kind
);
1879 /* It is possible to have FMT_A with something not BT_CHARACTER such
1880 as when writing out hollerith strings, so check both type
1881 and kind before calling wide character routines. */
1882 if (type
== BT_CHARACTER
&& kind
== 4)
1883 write_a_char4 (dtp
, f
, p
, size
);
1885 write_a (dtp
, f
, p
, size
);
1891 write_l (dtp
, f
, p
, kind
);
1897 if (require_type (dtp
, BT_REAL
, type
, f
))
1899 write_d (dtp
, f
, p
, kind
);
1905 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1907 char tmp_iomsg
[IOMSG_LEN
] = "";
1909 gfc_charlen_type child_iomsg_len
;
1911 int *child_iostat
= NULL
;
1913 gfc_charlen_type iotype_len
= f
->u
.udf
.string_len
;
1915 /* Build the iotype string. */
1916 if (iotype_len
== 0)
1922 iotype
= get_dt_format (f
->u
.udf
.string
, &iotype_len
);
1924 /* Set iostat, intent(out). */
1926 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1927 dtp
->common
.iostat
: &noiostat
;
1929 /* Set iomsg, intent(inout). */
1930 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1932 child_iomsg
= dtp
->common
.iomsg
;
1933 child_iomsg_len
= dtp
->common
.iomsg_len
;
1937 child_iomsg
= tmp_iomsg
;
1938 child_iomsg_len
= IOMSG_LEN
;
1941 /* Call the user defined formatted WRITE procedure. */
1942 dtp
->u
.p
.current_unit
->child_dtio
++;
1943 dtp
->u
.p
.fdtio_ptr (p
, &unit
, iotype
, f
->u
.udf
.vlist
,
1944 child_iostat
, child_iomsg
,
1945 iotype_len
, child_iomsg_len
);
1946 dtp
->u
.p
.current_unit
->child_dtio
--;
1948 if (f
->u
.udf
.string_len
!= 0)
1950 /* Note: vlist is freed in free_format_data. */
1956 if (require_type (dtp
, BT_REAL
, type
, f
))
1958 write_e (dtp
, f
, p
, kind
);
1964 if (require_type (dtp
, BT_REAL
, type
, f
))
1966 write_en (dtp
, f
, p
, kind
);
1972 if (require_type (dtp
, BT_REAL
, type
, f
))
1974 write_es (dtp
, f
, p
, kind
);
1980 if (require_type (dtp
, BT_REAL
, type
, f
))
1982 write_f (dtp
, f
, p
, kind
);
1991 write_i (dtp
, f
, p
, kind
);
1994 write_l (dtp
, f
, p
, kind
);
1998 write_a_char4 (dtp
, f
, p
, size
);
2000 write_a (dtp
, f
, p
, size
);
2003 if (f
->u
.real
.w
== 0)
2004 write_real_g0 (dtp
, p
, kind
, f
->u
.real
.d
);
2006 write_d (dtp
, f
, p
, kind
);
2009 internal_error (&dtp
->common
,
2010 "formatted_transfer(): Bad type");
2015 consume_data_flag
= 0;
2016 write_constant_string (dtp
, f
);
2019 /* Format codes that don't transfer data. */
2022 consume_data_flag
= 0;
2024 dtp
->u
.p
.skips
+= f
->u
.n
;
2025 pos
= bytes_used
+ dtp
->u
.p
.skips
- 1;
2026 dtp
->u
.p
.pending_spaces
= pos
- dtp
->u
.p
.max_pos
+ 1;
2027 /* Writes occur just before the switch on f->format, above, so
2028 that trailing blanks are suppressed, unless we are doing a
2029 non-advancing write in which case we want to output the blanks
2031 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
2033 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
2034 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
2040 consume_data_flag
= 0;
2042 if (f
->format
== FMT_TL
)
2045 /* Handle the special case when no bytes have been used yet.
2046 Cannot go below zero. */
2047 if (bytes_used
== 0)
2049 dtp
->u
.p
.pending_spaces
-= f
->u
.n
;
2050 dtp
->u
.p
.skips
-= f
->u
.n
;
2051 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
< 0 ? 0 : dtp
->u
.p
.skips
;
2054 pos
= bytes_used
- f
->u
.n
;
2057 pos
= f
->u
.n
- dtp
->u
.p
.pending_spaces
- 1;
2059 /* Standard 10.6.1.1: excessive left tabbing is reset to the
2060 left tab limit. We do not check if the position has gone
2061 beyond the end of record because a subsequent tab could
2062 bring us back again. */
2063 pos
= pos
< 0 ? 0 : pos
;
2065 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
+ pos
- bytes_used
;
2066 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
2067 + pos
- dtp
->u
.p
.max_pos
;
2068 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
< 0
2069 ? 0 : dtp
->u
.p
.pending_spaces
;
2073 consume_data_flag
= 0;
2074 dtp
->u
.p
.sign_status
= SIGN_S
;
2078 consume_data_flag
= 0;
2079 dtp
->u
.p
.sign_status
= SIGN_SS
;
2083 consume_data_flag
= 0;
2084 dtp
->u
.p
.sign_status
= SIGN_SP
;
2088 consume_data_flag
= 0 ;
2089 dtp
->u
.p
.blank_status
= BLANK_NULL
;
2093 consume_data_flag
= 0;
2094 dtp
->u
.p
.blank_status
= BLANK_ZERO
;
2098 consume_data_flag
= 0;
2099 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_COMMA
;
2103 consume_data_flag
= 0;
2104 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_POINT
;
2108 consume_data_flag
= 0;
2109 dtp
->u
.p
.current_unit
->round_status
= ROUND_COMPATIBLE
;
2113 consume_data_flag
= 0;
2114 dtp
->u
.p
.current_unit
->round_status
= ROUND_DOWN
;
2118 consume_data_flag
= 0;
2119 dtp
->u
.p
.current_unit
->round_status
= ROUND_NEAREST
;
2123 consume_data_flag
= 0;
2124 dtp
->u
.p
.current_unit
->round_status
= ROUND_PROCDEFINED
;
2128 consume_data_flag
= 0;
2129 dtp
->u
.p
.current_unit
->round_status
= ROUND_UP
;
2133 consume_data_flag
= 0;
2134 dtp
->u
.p
.current_unit
->round_status
= ROUND_ZERO
;
2138 consume_data_flag
= 0;
2139 dtp
->u
.p
.scale_factor
= f
->u
.k
;
2143 consume_data_flag
= 0;
2144 dtp
->u
.p
.seen_dollar
= 1;
2148 consume_data_flag
= 0;
2149 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
2150 next_record (dtp
, 0);
2154 /* A colon descriptor causes us to exit this loop (in
2155 particular preventing another / descriptor from being
2156 processed) unless there is another data item to be
2158 consume_data_flag
= 0;
2164 internal_error (&dtp
->common
, "Bad format node");
2167 /* Adjust the item count and data pointer. */
2169 if ((consume_data_flag
> 0) && (n
> 0))
2172 p
= ((char *) p
) + size
;
2175 pos
= (int)(dtp
->u
.p
.current_unit
->recl
- dtp
->u
.p
.current_unit
->bytes_left
);
2176 dtp
->u
.p
.max_pos
= (dtp
->u
.p
.max_pos
> pos
) ? dtp
->u
.p
.max_pos
: pos
;
2181 /* Come here when we need a data descriptor but don't have one. We
2182 push the current format node back onto the input, then return and
2183 let the user program call us back with the data. */
2185 unget_format (dtp
, f
);
2188 /* This function is first called from data_init_transfer to initiate the loop
2189 over each item in the format, transferring data as required. Subsequent
2190 calls to this function occur for each data item foound in the READ/WRITE
2191 statement. The item_count is incremented for each call. Since the first
2192 call is from data_transfer_init, the item_count is always one greater than
2193 the actual count number of the item being transferred. */
2196 formatted_transfer (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
2197 size_t size
, size_t nelems
)
2203 size_t stride
= type
== BT_CHARACTER
?
2204 size
* GFC_SIZE_OF_CHAR_KIND(kind
) : size
;
2205 if (dtp
->u
.p
.mode
== READING
)
2207 /* Big loop over all the elements. */
2208 for (elem
= 0; elem
< nelems
; elem
++)
2210 dtp
->u
.p
.item_count
++;
2211 formatted_transfer_scalar_read (dtp
, type
, tmp
+ stride
*elem
, kind
, size
);
2216 /* Big loop over all the elements. */
2217 for (elem
= 0; elem
< nelems
; elem
++)
2219 dtp
->u
.p
.item_count
++;
2220 formatted_transfer_scalar_write (dtp
, type
, tmp
+ stride
*elem
, kind
, size
);
2226 /* Data transfer entry points. The type of the data entity is
2227 implicit in the subroutine call. This prevents us from having to
2228 share a common enum with the compiler. */
2231 transfer_integer (st_parameter_dt
*dtp
, void *p
, int kind
)
2233 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2235 dtp
->u
.p
.transfer (dtp
, BT_INTEGER
, p
, kind
, kind
, 1);
2239 transfer_integer_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2241 transfer_integer (dtp
, p
, kind
);
2245 transfer_real (st_parameter_dt
*dtp
, void *p
, int kind
)
2248 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2250 size
= size_from_real_kind (kind
);
2251 dtp
->u
.p
.transfer (dtp
, BT_REAL
, p
, kind
, size
, 1);
2255 transfer_real_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2257 transfer_real (dtp
, p
, kind
);
2261 transfer_logical (st_parameter_dt
*dtp
, void *p
, int kind
)
2263 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2265 dtp
->u
.p
.transfer (dtp
, BT_LOGICAL
, p
, kind
, kind
, 1);
2269 transfer_logical_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2271 transfer_logical (dtp
, p
, kind
);
2275 transfer_character (st_parameter_dt
*dtp
, void *p
, int len
)
2277 static char *empty_string
[0];
2279 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2282 /* Strings of zero length can have p == NULL, which confuses the
2283 transfer routines into thinking we need more data elements. To avoid
2284 this, we give them a nice pointer. */
2285 if (len
== 0 && p
== NULL
)
2288 /* Set kind here to 1. */
2289 dtp
->u
.p
.transfer (dtp
, BT_CHARACTER
, p
, 1, len
, 1);
2293 transfer_character_write (st_parameter_dt
*dtp
, void *p
, int len
)
2295 transfer_character (dtp
, p
, len
);
2299 transfer_character_wide (st_parameter_dt
*dtp
, void *p
, int len
, int kind
)
2301 static char *empty_string
[0];
2303 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2306 /* Strings of zero length can have p == NULL, which confuses the
2307 transfer routines into thinking we need more data elements. To avoid
2308 this, we give them a nice pointer. */
2309 if (len
== 0 && p
== NULL
)
2312 /* Here we pass the actual kind value. */
2313 dtp
->u
.p
.transfer (dtp
, BT_CHARACTER
, p
, kind
, len
, 1);
2317 transfer_character_wide_write (st_parameter_dt
*dtp
, void *p
, int len
, int kind
)
2319 transfer_character_wide (dtp
, p
, len
, kind
);
2323 transfer_complex (st_parameter_dt
*dtp
, void *p
, int kind
)
2326 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2328 size
= size_from_complex_kind (kind
);
2329 dtp
->u
.p
.transfer (dtp
, BT_COMPLEX
, p
, kind
, size
, 1);
2333 transfer_complex_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2335 transfer_complex (dtp
, p
, kind
);
2339 transfer_array (st_parameter_dt
*dtp
, gfc_array_char
*desc
, int kind
,
2340 gfc_charlen_type charlen
)
2342 index_type count
[GFC_MAX_DIMENSIONS
];
2343 index_type extent
[GFC_MAX_DIMENSIONS
];
2344 index_type stride
[GFC_MAX_DIMENSIONS
];
2345 index_type stride0
, rank
, size
, n
;
2350 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2353 iotype
= (bt
) GFC_DESCRIPTOR_TYPE (desc
);
2354 size
= iotype
== BT_CHARACTER
? charlen
: GFC_DESCRIPTOR_SIZE (desc
);
2356 rank
= GFC_DESCRIPTOR_RANK (desc
);
2357 for (n
= 0; n
< rank
; n
++)
2360 stride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(desc
,n
);
2361 extent
[n
] = GFC_DESCRIPTOR_EXTENT(desc
,n
);
2363 /* If the extent of even one dimension is zero, then the entire
2364 array section contains zero elements, so we return after writing
2365 a zero array record. */
2370 dtp
->u
.p
.transfer (dtp
, iotype
, data
, kind
, size
, tsize
);
2375 stride0
= stride
[0];
2377 /* If the innermost dimension has a stride of 1, we can do the transfer
2378 in contiguous chunks. */
2379 if (stride0
== size
)
2384 data
= GFC_DESCRIPTOR_DATA (desc
);
2388 dtp
->u
.p
.transfer (dtp
, iotype
, data
, kind
, size
, tsize
);
2389 data
+= stride0
* tsize
;
2392 while (count
[n
] == extent
[n
])
2395 data
-= stride
[n
] * extent
[n
];
2412 transfer_array_write (st_parameter_dt
*dtp
, gfc_array_char
*desc
, int kind
,
2413 gfc_charlen_type charlen
)
2415 transfer_array (dtp
, desc
, kind
, charlen
);
2419 /* User defined input/output iomsg. */
2421 #define IOMSG_LEN 256
2424 transfer_derived (st_parameter_dt
*parent
, void *dtio_source
, void *dtio_proc
)
2426 if (parent
->u
.p
.current_unit
)
2428 if (parent
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
2429 parent
->u
.p
.ufdtio_ptr
= (unformatted_dtio
) dtio_proc
;
2431 parent
->u
.p
.fdtio_ptr
= (formatted_dtio
) dtio_proc
;
2433 parent
->u
.p
.transfer (parent
, BT_CLASS
, dtio_source
, 0, 0, 1);
2437 /* Preposition a sequential unformatted file while reading. */
2440 us_read (st_parameter_dt
*dtp
, int continued
)
2447 if (compile_options
.record_marker
== 0)
2448 n
= sizeof (GFC_INTEGER_4
);
2450 n
= compile_options
.record_marker
;
2452 nr
= sread (dtp
->u
.p
.current_unit
->s
, &i
, n
);
2453 if (unlikely (nr
< 0))
2455 generate_error (&dtp
->common
, LIBERROR_BAD_US
, NULL
);
2461 return; /* end of file */
2463 else if (unlikely (n
!= nr
))
2465 generate_error (&dtp
->common
, LIBERROR_BAD_US
, NULL
);
2469 /* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here. */
2470 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
))
2474 case sizeof(GFC_INTEGER_4
):
2475 memcpy (&i4
, &i
, sizeof (i4
));
2479 case sizeof(GFC_INTEGER_8
):
2480 memcpy (&i8
, &i
, sizeof (i8
));
2485 runtime_error ("Illegal value for record marker");
2495 case sizeof(GFC_INTEGER_4
):
2496 memcpy (&u32
, &i
, sizeof (u32
));
2497 u32
= __builtin_bswap32 (u32
);
2498 memcpy (&i4
, &u32
, sizeof (i4
));
2502 case sizeof(GFC_INTEGER_8
):
2503 memcpy (&u64
, &i
, sizeof (u64
));
2504 u64
= __builtin_bswap64 (u64
);
2505 memcpy (&i8
, &u64
, sizeof (i8
));
2510 runtime_error ("Illegal value for record marker");
2517 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= i
;
2518 dtp
->u
.p
.current_unit
->continued
= 0;
2522 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= -i
;
2523 dtp
->u
.p
.current_unit
->continued
= 1;
2527 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
2531 /* Preposition a sequential unformatted file while writing. This
2532 amount to writing a bogus length that will be filled in later. */
2535 us_write (st_parameter_dt
*dtp
, int continued
)
2542 if (compile_options
.record_marker
== 0)
2543 nbytes
= sizeof (GFC_INTEGER_4
);
2545 nbytes
= compile_options
.record_marker
;
2547 if (swrite (dtp
->u
.p
.current_unit
->s
, &dummy
, nbytes
) != nbytes
)
2548 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
2550 /* For sequential unformatted, if RECL= was not specified in the OPEN
2551 we write until we have more bytes than can fit in the subrecord
2552 markers, then we write a new subrecord. */
2554 dtp
->u
.p
.current_unit
->bytes_left_subrecord
=
2555 dtp
->u
.p
.current_unit
->recl_subrecord
;
2556 dtp
->u
.p
.current_unit
->continued
= continued
;
2560 /* Position to the next record prior to transfer. We are assumed to
2561 be before the next record. We also calculate the bytes in the next
2565 pre_position (st_parameter_dt
*dtp
)
2567 if (dtp
->u
.p
.current_unit
->current_record
)
2568 return; /* Already positioned. */
2570 switch (current_mode (dtp
))
2572 case FORMATTED_STREAM
:
2573 case UNFORMATTED_STREAM
:
2574 /* There are no records with stream I/O. If the position was specified
2575 data_transfer_init has already positioned the file. If no position
2576 was specified, we continue from where we last left off. I.e.
2577 there is nothing to do here. */
2580 case UNFORMATTED_SEQUENTIAL
:
2581 if (dtp
->u
.p
.mode
== READING
)
2588 case FORMATTED_SEQUENTIAL
:
2589 case FORMATTED_DIRECT
:
2590 case UNFORMATTED_DIRECT
:
2591 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
2595 dtp
->u
.p
.current_unit
->current_record
= 1;
2599 /* Initialize things for a data transfer. This code is common for
2600 both reading and writing. */
2603 data_transfer_init (st_parameter_dt
*dtp
, int read_flag
)
2605 unit_flags u_flags
; /* Used for creating a unit if needed. */
2606 GFC_INTEGER_4 cf
= dtp
->common
.flags
;
2607 namelist_info
*ionml
;
2609 ionml
= ((cf
& IOPARM_DT_IONML_SET
) != 0) ? dtp
->u
.p
.ionml
: NULL
;
2611 memset (&dtp
->u
.p
, 0, sizeof (dtp
->u
.p
));
2613 dtp
->u
.p
.ionml
= ionml
;
2614 dtp
->u
.p
.mode
= read_flag
? READING
: WRITING
;
2616 dtp
->u
.p
.cc
.len
= 0;
2618 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2621 dtp
->u
.p
.current_unit
= get_unit (dtp
, 1);
2623 if (dtp
->u
.p
.current_unit
== NULL
)
2625 /* This means we tried to access an external unit < 0 without
2626 having opened it first with NEWUNIT=. */
2627 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
2628 "Unit number is negative and unit was not already "
2629 "opened with OPEN(NEWUNIT=...)");
2632 else if (dtp
->u
.p
.current_unit
->s
== NULL
)
2633 { /* Open the unit with some default flags. */
2634 st_parameter_open opp
;
2637 memset (&u_flags
, '\0', sizeof (u_flags
));
2638 u_flags
.access
= ACCESS_SEQUENTIAL
;
2639 u_flags
.action
= ACTION_READWRITE
;
2641 /* Is it unformatted? */
2642 if (!(cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
2643 | IOPARM_DT_IONML_SET
)))
2644 u_flags
.form
= FORM_UNFORMATTED
;
2646 u_flags
.form
= FORM_UNSPECIFIED
;
2648 u_flags
.delim
= DELIM_UNSPECIFIED
;
2649 u_flags
.blank
= BLANK_UNSPECIFIED
;
2650 u_flags
.pad
= PAD_UNSPECIFIED
;
2651 u_flags
.decimal
= DECIMAL_UNSPECIFIED
;
2652 u_flags
.encoding
= ENCODING_UNSPECIFIED
;
2653 u_flags
.async
= ASYNC_UNSPECIFIED
;
2654 u_flags
.round
= ROUND_UNSPECIFIED
;
2655 u_flags
.sign
= SIGN_UNSPECIFIED
;
2656 u_flags
.share
= SHARE_UNSPECIFIED
;
2657 u_flags
.cc
= CC_UNSPECIFIED
;
2658 u_flags
.readonly
= 0;
2660 u_flags
.status
= STATUS_UNKNOWN
;
2662 conv
= get_unformatted_convert (dtp
->common
.unit
);
2664 if (conv
== GFC_CONVERT_NONE
)
2665 conv
= compile_options
.convert
;
2667 /* We use big_endian, which is 0 on little-endian machines
2668 and 1 on big-endian machines. */
2671 case GFC_CONVERT_NATIVE
:
2672 case GFC_CONVERT_SWAP
:
2675 case GFC_CONVERT_BIG
:
2676 conv
= big_endian
? GFC_CONVERT_NATIVE
: GFC_CONVERT_SWAP
;
2679 case GFC_CONVERT_LITTLE
:
2680 conv
= big_endian
? GFC_CONVERT_SWAP
: GFC_CONVERT_NATIVE
;
2684 internal_error (&opp
.common
, "Illegal value for CONVERT");
2688 u_flags
.convert
= conv
;
2690 opp
.common
= dtp
->common
;
2691 opp
.common
.flags
&= IOPARM_COMMON_MASK
;
2692 dtp
->u
.p
.current_unit
= new_unit (&opp
, dtp
->u
.p
.current_unit
, &u_flags
);
2693 dtp
->common
.flags
&= ~IOPARM_COMMON_MASK
;
2694 dtp
->common
.flags
|= (opp
.common
.flags
& IOPARM_COMMON_MASK
);
2695 if (dtp
->u
.p
.current_unit
== NULL
)
2699 if (dtp
->u
.p
.current_unit
->child_dtio
== 0)
2701 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0)
2703 dtp
->u
.p
.current_unit
->has_size
= true;
2704 /* Initialize the count. */
2705 dtp
->u
.p
.current_unit
->size_used
= 0;
2708 dtp
->u
.p
.current_unit
->has_size
= false;
2711 /* Check the action. */
2713 if (read_flag
&& dtp
->u
.p
.current_unit
->flags
.action
== ACTION_WRITE
)
2715 generate_error (&dtp
->common
, LIBERROR_BAD_ACTION
,
2716 "Cannot read from file opened for WRITE");
2720 if (!read_flag
&& dtp
->u
.p
.current_unit
->flags
.action
== ACTION_READ
)
2722 generate_error (&dtp
->common
, LIBERROR_BAD_ACTION
,
2723 "Cannot write to file opened for READ");
2727 dtp
->u
.p
.first_item
= 1;
2729 /* Check the format. */
2731 if ((cf
& IOPARM_DT_HAS_FORMAT
) != 0)
2734 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
2735 && (cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
))
2738 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2739 "Format present for UNFORMATTED data transfer");
2743 if ((cf
& IOPARM_DT_HAS_NAMELIST_NAME
) != 0 && dtp
->u
.p
.ionml
!= NULL
)
2745 if ((cf
& IOPARM_DT_HAS_FORMAT
) != 0)
2747 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2748 "A format cannot be specified with a namelist");
2752 else if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
&&
2753 !(cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
)))
2755 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2756 "Missing format for FORMATTED data transfer");
2760 if (is_internal_unit (dtp
)
2761 && dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
2763 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2764 "Internal file cannot be accessed by UNFORMATTED "
2769 /* Check the record or position number. */
2771 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
2772 && (cf
& IOPARM_DT_HAS_REC
) == 0)
2774 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2775 "Direct access data transfer requires record number");
2779 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
2781 if ((cf
& IOPARM_DT_HAS_REC
) != 0)
2783 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2784 "Record number not allowed for sequential access "
2789 if (compile_options
.warn_std
&&
2790 dtp
->u
.p
.current_unit
->endfile
== AFTER_ENDFILE
)
2792 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2793 "Sequential READ or WRITE not allowed after "
2794 "EOF marker, possibly use REWIND or BACKSPACE");
2798 /* Process the ADVANCE option. */
2800 dtp
->u
.p
.advance_status
2801 = !(cf
& IOPARM_DT_HAS_ADVANCE
) ? ADVANCE_UNSPECIFIED
:
2802 find_option (&dtp
->common
, dtp
->advance
, dtp
->advance_len
, advance_opt
,
2803 "Bad ADVANCE parameter in data transfer statement");
2805 if (dtp
->u
.p
.advance_status
!= ADVANCE_UNSPECIFIED
)
2807 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
2809 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2810 "ADVANCE specification conflicts with sequential "
2815 if (is_internal_unit (dtp
))
2817 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2818 "ADVANCE specification conflicts with internal file");
2822 if ((cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
))
2823 != IOPARM_DT_HAS_FORMAT
)
2825 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2826 "ADVANCE specification requires an explicit format");
2833 dtp
->u
.p
.current_unit
->previous_nonadvancing_write
= 0;
2835 if ((cf
& IOPARM_EOR
) != 0 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
2837 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2838 "EOR specification requires an ADVANCE specification "
2843 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0
2844 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
2846 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2847 "SIZE specification requires an ADVANCE "
2848 "specification of NO");
2853 { /* Write constraints. */
2854 if ((cf
& IOPARM_END
) != 0)
2856 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2857 "END specification cannot appear in a write "
2862 if ((cf
& IOPARM_EOR
) != 0)
2864 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2865 "EOR specification cannot appear in a write "
2870 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0)
2872 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2873 "SIZE specification cannot appear in a write "
2879 if (dtp
->u
.p
.advance_status
== ADVANCE_UNSPECIFIED
)
2880 dtp
->u
.p
.advance_status
= ADVANCE_YES
;
2882 /* Check the decimal mode. */
2883 dtp
->u
.p
.current_unit
->decimal_status
2884 = !(cf
& IOPARM_DT_HAS_DECIMAL
) ? DECIMAL_UNSPECIFIED
:
2885 find_option (&dtp
->common
, dtp
->decimal
, dtp
->decimal_len
,
2886 decimal_opt
, "Bad DECIMAL parameter in data transfer "
2889 if (dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_UNSPECIFIED
)
2890 dtp
->u
.p
.current_unit
->decimal_status
= dtp
->u
.p
.current_unit
->flags
.decimal
;
2892 /* Check the round mode. */
2893 dtp
->u
.p
.current_unit
->round_status
2894 = !(cf
& IOPARM_DT_HAS_ROUND
) ? ROUND_UNSPECIFIED
:
2895 find_option (&dtp
->common
, dtp
->round
, dtp
->round_len
,
2896 round_opt
, "Bad ROUND parameter in data transfer "
2899 if (dtp
->u
.p
.current_unit
->round_status
== ROUND_UNSPECIFIED
)
2900 dtp
->u
.p
.current_unit
->round_status
= dtp
->u
.p
.current_unit
->flags
.round
;
2902 /* Check the sign mode. */
2903 dtp
->u
.p
.sign_status
2904 = !(cf
& IOPARM_DT_HAS_SIGN
) ? SIGN_UNSPECIFIED
:
2905 find_option (&dtp
->common
, dtp
->sign
, dtp
->sign_len
, sign_opt
,
2906 "Bad SIGN parameter in data transfer statement");
2908 if (dtp
->u
.p
.sign_status
== SIGN_UNSPECIFIED
)
2909 dtp
->u
.p
.sign_status
= dtp
->u
.p
.current_unit
->flags
.sign
;
2911 /* Check the blank mode. */
2912 dtp
->u
.p
.blank_status
2913 = !(cf
& IOPARM_DT_HAS_BLANK
) ? BLANK_UNSPECIFIED
:
2914 find_option (&dtp
->common
, dtp
->blank
, dtp
->blank_len
,
2916 "Bad BLANK parameter in data transfer statement");
2918 if (dtp
->u
.p
.blank_status
== BLANK_UNSPECIFIED
)
2919 dtp
->u
.p
.blank_status
= dtp
->u
.p
.current_unit
->flags
.blank
;
2921 /* Check the delim mode. */
2922 dtp
->u
.p
.current_unit
->delim_status
2923 = !(cf
& IOPARM_DT_HAS_DELIM
) ? DELIM_UNSPECIFIED
:
2924 find_option (&dtp
->common
, dtp
->delim
, dtp
->delim_len
,
2925 delim_opt
, "Bad DELIM parameter in data transfer statement");
2927 if (dtp
->u
.p
.current_unit
->delim_status
== DELIM_UNSPECIFIED
)
2929 if (ionml
&& dtp
->u
.p
.current_unit
->flags
.delim
== DELIM_UNSPECIFIED
)
2930 dtp
->u
.p
.current_unit
->delim_status
= DELIM_QUOTE
;
2932 dtp
->u
.p
.current_unit
->delim_status
= dtp
->u
.p
.current_unit
->flags
.delim
;
2935 /* Check the pad mode. */
2936 dtp
->u
.p
.current_unit
->pad_status
2937 = !(cf
& IOPARM_DT_HAS_PAD
) ? PAD_UNSPECIFIED
:
2938 find_option (&dtp
->common
, dtp
->pad
, dtp
->pad_len
, pad_opt
,
2939 "Bad PAD parameter in data transfer statement");
2941 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_UNSPECIFIED
)
2942 dtp
->u
.p
.current_unit
->pad_status
= dtp
->u
.p
.current_unit
->flags
.pad
;
2944 /* Check to see if we might be reading what we wrote before */
2946 if (dtp
->u
.p
.mode
!= dtp
->u
.p
.current_unit
->mode
2947 && !is_internal_unit (dtp
))
2949 int pos
= fbuf_reset (dtp
->u
.p
.current_unit
);
2951 sseek (dtp
->u
.p
.current_unit
->s
, pos
, SEEK_CUR
);
2952 sflush(dtp
->u
.p
.current_unit
->s
);
2955 /* Check the POS= specifier: that it is in range and that it is used with a
2956 unit that has been connected for STREAM access. F2003 9.5.1.10. */
2958 if (((cf
& IOPARM_DT_HAS_POS
) != 0))
2960 if (is_stream_io (dtp
))
2965 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
2966 "POS=specifier must be positive");
2970 if (dtp
->pos
>= dtp
->u
.p
.current_unit
->maxrec
)
2972 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
2973 "POS=specifier too large");
2977 dtp
->rec
= dtp
->pos
;
2979 if (dtp
->u
.p
.mode
== READING
)
2981 /* Reset the endfile flag; if we hit EOF during reading
2982 we'll set the flag and generate an error at that point
2983 rather than worrying about it here. */
2984 dtp
->u
.p
.current_unit
->endfile
= NO_ENDFILE
;
2987 if (dtp
->pos
!= dtp
->u
.p
.current_unit
->strm_pos
)
2989 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
2990 if (sseek (dtp
->u
.p
.current_unit
->s
, dtp
->pos
- 1, SEEK_SET
) < 0)
2992 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
2995 dtp
->u
.p
.current_unit
->strm_pos
= dtp
->pos
;
3000 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3001 "POS=specifier not allowed, "
3002 "Try OPEN with ACCESS='stream'");
3008 /* Sanity checks on the record number. */
3009 if ((cf
& IOPARM_DT_HAS_REC
) != 0)
3013 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3014 "Record number must be positive");
3018 if (dtp
->rec
>= dtp
->u
.p
.current_unit
->maxrec
)
3020 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3021 "Record number too large");
3025 /* Make sure format buffer is reset. */
3026 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
)
3027 fbuf_reset (dtp
->u
.p
.current_unit
);
3030 /* Check whether the record exists to be read. Only
3031 a partial record needs to exist. */
3033 if (dtp
->u
.p
.mode
== READING
&& (dtp
->rec
- 1)
3034 * dtp
->u
.p
.current_unit
->recl
>= ssize (dtp
->u
.p
.current_unit
->s
))
3036 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3037 "Non-existing record number");
3041 /* Position the file. */
3042 if (sseek (dtp
->u
.p
.current_unit
->s
, (gfc_offset
) (dtp
->rec
- 1)
3043 * dtp
->u
.p
.current_unit
->recl
, SEEK_SET
) < 0)
3045 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3049 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
)
3051 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
3052 "Record number not allowed for stream access "
3058 /* Bugware for badly written mixed C-Fortran I/O. */
3059 if (!is_internal_unit (dtp
))
3060 flush_if_preconnected(dtp
->u
.p
.current_unit
->s
);
3062 dtp
->u
.p
.current_unit
->mode
= dtp
->u
.p
.mode
;
3064 /* Set the maximum position reached from the previous I/O operation. This
3065 could be greater than zero from a previous non-advancing write. */
3066 dtp
->u
.p
.max_pos
= dtp
->u
.p
.current_unit
->saved_pos
;
3071 /* Set up the subroutine that will handle the transfers. */
3075 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
3076 dtp
->u
.p
.transfer
= unformatted_read
;
3079 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0)
3081 if (dtp
->u
.p
.current_unit
->child_dtio
== 0)
3082 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
3083 dtp
->u
.p
.transfer
= list_formatted_read
;
3086 dtp
->u
.p
.transfer
= formatted_transfer
;
3091 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
3092 dtp
->u
.p
.transfer
= unformatted_write
;
3095 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0)
3096 dtp
->u
.p
.transfer
= list_formatted_write
;
3098 dtp
->u
.p
.transfer
= formatted_transfer
;
3102 /* Make sure that we don't do a read after a nonadvancing write. */
3106 if (dtp
->u
.p
.current_unit
->read_bad
&& !is_stream_io (dtp
))
3108 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3109 "Cannot READ after a nonadvancing WRITE");
3115 if (dtp
->u
.p
.advance_status
== ADVANCE_YES
&& !dtp
->u
.p
.seen_dollar
)
3116 dtp
->u
.p
.current_unit
->read_bad
= 1;
3119 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
)
3121 #ifdef HAVE_USELOCALE
3122 dtp
->u
.p
.old_locale
= uselocale (c_locale
);
3124 __gthread_mutex_lock (&old_locale_lock
);
3125 if (!old_locale_ctr
++)
3127 old_locale
= setlocale (LC_NUMERIC
, NULL
);
3128 setlocale (LC_NUMERIC
, "C");
3130 __gthread_mutex_unlock (&old_locale_lock
);
3132 /* Start the data transfer if we are doing a formatted transfer. */
3133 if ((cf
& (IOPARM_DT_LIST_FORMAT
| IOPARM_DT_HAS_NAMELIST_NAME
)) == 0
3134 && dtp
->u
.p
.ionml
== NULL
)
3135 formatted_transfer (dtp
, 0, NULL
, 0, 0, 1);
3140 /* Initialize an array_loop_spec given the array descriptor. The function
3141 returns the index of the last element of the array, and also returns
3142 starting record, where the first I/O goes to (necessary in case of
3143 negative strides). */
3146 init_loop_spec (gfc_array_char
*desc
, array_loop_spec
*ls
,
3147 gfc_offset
*start_record
)
3149 int rank
= GFC_DESCRIPTOR_RANK(desc
);
3158 for (i
=0; i
<rank
; i
++)
3160 ls
[i
].idx
= GFC_DESCRIPTOR_LBOUND(desc
,i
);
3161 ls
[i
].start
= GFC_DESCRIPTOR_LBOUND(desc
,i
);
3162 ls
[i
].end
= GFC_DESCRIPTOR_UBOUND(desc
,i
);
3163 ls
[i
].step
= GFC_DESCRIPTOR_STRIDE(desc
,i
);
3164 empty
= empty
|| (GFC_DESCRIPTOR_UBOUND(desc
,i
)
3165 < GFC_DESCRIPTOR_LBOUND(desc
,i
));
3167 if (GFC_DESCRIPTOR_STRIDE(desc
,i
) > 0)
3169 index
+= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3170 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3174 index
-= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3175 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3176 *start_record
-= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3177 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3187 /* Determine the index to the next record in an internal unit array by
3188 by incrementing through the array_loop_spec. */
3191 next_array_record (st_parameter_dt
*dtp
, array_loop_spec
*ls
, int *finished
)
3199 for (i
= 0; i
< dtp
->u
.p
.current_unit
->rank
; i
++)
3204 if (ls
[i
].idx
> ls
[i
].end
)
3206 ls
[i
].idx
= ls
[i
].start
;
3212 index
= index
+ (ls
[i
].idx
- ls
[i
].start
) * ls
[i
].step
;
3222 /* Skip to the end of the current record, taking care of an optional
3223 record marker of size bytes. If the file is not seekable, we
3224 read chunks of size MAX_READ until we get to the right
3228 skip_record (st_parameter_dt
*dtp
, ssize_t bytes
)
3230 ssize_t rlength
, readb
;
3231 #define MAX_READ 4096
3234 dtp
->u
.p
.current_unit
->bytes_left_subrecord
+= bytes
;
3235 if (dtp
->u
.p
.current_unit
->bytes_left_subrecord
== 0)
3238 /* Direct access files do not generate END conditions,
3240 if (sseek (dtp
->u
.p
.current_unit
->s
,
3241 dtp
->u
.p
.current_unit
->bytes_left_subrecord
, SEEK_CUR
) < 0)
3243 /* Seeking failed, fall back to seeking by reading data. */
3244 while (dtp
->u
.p
.current_unit
->bytes_left_subrecord
> 0)
3247 (MAX_READ
< dtp
->u
.p
.current_unit
->bytes_left_subrecord
) ?
3248 MAX_READ
: dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
3250 readb
= sread (dtp
->u
.p
.current_unit
->s
, p
, rlength
);
3253 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3257 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-= readb
;
3261 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= 0;
3265 /* Advance to the next record reading unformatted files, taking
3266 care of subrecords. If complete_record is nonzero, we loop
3267 until all subrecords are cleared. */
3270 next_record_r_unf (st_parameter_dt
*dtp
, int complete_record
)
3274 bytes
= compile_options
.record_marker
== 0 ?
3275 sizeof (GFC_INTEGER_4
) : compile_options
.record_marker
;
3280 /* Skip over tail */
3282 skip_record (dtp
, bytes
);
3284 if ( ! (complete_record
&& dtp
->u
.p
.current_unit
->continued
))
3293 min_off (gfc_offset a
, gfc_offset b
)
3295 return (a
< b
? a
: b
);
3299 /* Space to the next record for read mode. */
3302 next_record_r (st_parameter_dt
*dtp
, int done
)
3309 switch (current_mode (dtp
))
3311 /* No records in unformatted STREAM I/O. */
3312 case UNFORMATTED_STREAM
:
3315 case UNFORMATTED_SEQUENTIAL
:
3316 next_record_r_unf (dtp
, 1);
3317 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3320 case FORMATTED_DIRECT
:
3321 case UNFORMATTED_DIRECT
:
3322 skip_record (dtp
, dtp
->u
.p
.current_unit
->bytes_left
);
3325 case FORMATTED_STREAM
:
3326 case FORMATTED_SEQUENTIAL
:
3327 /* read_sf has already terminated input because of an '\n', or
3329 if (dtp
->u
.p
.sf_seen_eor
)
3331 dtp
->u
.p
.sf_seen_eor
= 0;
3335 if (is_internal_unit (dtp
))
3337 if (is_array_io (dtp
))
3341 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
,
3343 if (!done
&& finished
)
3346 /* Now seek to this record. */
3347 record
= record
* dtp
->u
.p
.current_unit
->recl
;
3348 if (sseek (dtp
->u
.p
.current_unit
->s
, record
, SEEK_SET
) < 0)
3350 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3353 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3357 bytes_left
= (int) dtp
->u
.p
.current_unit
->bytes_left
;
3358 bytes_left
= min_off (bytes_left
,
3359 ssize (dtp
->u
.p
.current_unit
->s
)
3360 - stell (dtp
->u
.p
.current_unit
->s
));
3361 if (sseek (dtp
->u
.p
.current_unit
->s
,
3362 bytes_left
, SEEK_CUR
) < 0)
3364 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3367 dtp
->u
.p
.current_unit
->bytes_left
3368 = dtp
->u
.p
.current_unit
->recl
;
3372 else if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
)
3377 cc
= fbuf_getc (dtp
->u
.p
.current_unit
);
3381 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3384 if (is_stream_io (dtp
)
3385 || dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
3386 || dtp
->u
.p
.current_unit
->bytes_left
3387 == dtp
->u
.p
.current_unit
->recl
)
3393 if (is_stream_io (dtp
))
3394 dtp
->u
.p
.current_unit
->strm_pos
++;
3405 /* Small utility function to write a record marker, taking care of
3406 byte swapping and of choosing the correct size. */
3409 write_us_marker (st_parameter_dt
*dtp
, const gfc_offset buf
)
3415 if (compile_options
.record_marker
== 0)
3416 len
= sizeof (GFC_INTEGER_4
);
3418 len
= compile_options
.record_marker
;
3420 /* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here. */
3421 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
))
3425 case sizeof (GFC_INTEGER_4
):
3427 return swrite (dtp
->u
.p
.current_unit
->s
, &buf4
, len
);
3430 case sizeof (GFC_INTEGER_8
):
3432 return swrite (dtp
->u
.p
.current_unit
->s
, &buf8
, len
);
3436 runtime_error ("Illegal value for record marker");
3446 case sizeof (GFC_INTEGER_4
):
3448 memcpy (&u32
, &buf4
, sizeof (u32
));
3449 u32
= __builtin_bswap32 (u32
);
3450 return swrite (dtp
->u
.p
.current_unit
->s
, &u32
, len
);
3453 case sizeof (GFC_INTEGER_8
):
3455 memcpy (&u64
, &buf8
, sizeof (u64
));
3456 u64
= __builtin_bswap64 (u64
);
3457 return swrite (dtp
->u
.p
.current_unit
->s
, &u64
, len
);
3461 runtime_error ("Illegal value for record marker");
3468 /* Position to the next (sub)record in write mode for
3469 unformatted sequential files. */
3472 next_record_w_unf (st_parameter_dt
*dtp
, int next_subrecord
)
3474 gfc_offset m
, m_write
, record_marker
;
3476 /* Bytes written. */
3477 m
= dtp
->u
.p
.current_unit
->recl_subrecord
3478 - dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
3480 if (compile_options
.record_marker
== 0)
3481 record_marker
= sizeof (GFC_INTEGER_4
);
3483 record_marker
= compile_options
.record_marker
;
3485 /* Seek to the head and overwrite the bogus length with the real
3488 if (unlikely (sseek (dtp
->u
.p
.current_unit
->s
, - m
- record_marker
,
3497 if (unlikely (write_us_marker (dtp
, m_write
) < 0))
3500 /* Seek past the end of the current record. */
3502 if (unlikely (sseek (dtp
->u
.p
.current_unit
->s
, m
, SEEK_CUR
) < 0))
3505 /* Write the length tail. If we finish a record containing
3506 subrecords, we write out the negative length. */
3508 if (dtp
->u
.p
.current_unit
->continued
)
3513 if (unlikely (write_us_marker (dtp
, m_write
) < 0))
3519 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3525 /* Utility function like memset() but operating on streams. Return
3526 value is same as for POSIX write(). */
3529 sset (stream
* s
, int c
, ssize_t nbyte
)
3531 #define WRITE_CHUNK 256
3532 char p
[WRITE_CHUNK
];
3533 ssize_t bytes_left
, trans
;
3535 if (nbyte
< WRITE_CHUNK
)
3536 memset (p
, c
, nbyte
);
3538 memset (p
, c
, WRITE_CHUNK
);
3541 while (bytes_left
> 0)
3543 trans
= (bytes_left
< WRITE_CHUNK
) ? bytes_left
: WRITE_CHUNK
;
3544 trans
= swrite (s
, p
, trans
);
3547 bytes_left
-= trans
;
3550 return nbyte
- bytes_left
;
3554 /* Finish up a record according to the legacy carriagecontrol type, based
3555 on the first character in the record. */
3558 next_record_cc (st_parameter_dt
*dtp
)
3560 /* Only valid with CARRIAGECONTROL=FORTRAN. */
3561 if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_FORTRAN
)
3564 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3565 if (dtp
->u
.p
.cc
.len
> 0)
3567 char * p
= fbuf_alloc (dtp
->u
.p
.current_unit
, dtp
->u
.p
.cc
.len
);
3569 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3571 /* Output CR for the first character with default CC setting. */
3572 *(p
++) = dtp
->u
.p
.cc
.u
.end
;
3573 if (dtp
->u
.p
.cc
.len
> 1)
3574 *p
= dtp
->u
.p
.cc
.u
.end
;
3578 /* Position to the next record in write mode. */
3581 next_record_w (st_parameter_dt
*dtp
, int done
)
3583 gfc_offset m
, record
, max_pos
;
3586 /* Zero counters for X- and T-editing. */
3587 max_pos
= dtp
->u
.p
.max_pos
;
3588 dtp
->u
.p
.max_pos
= dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
3590 switch (current_mode (dtp
))
3592 /* No records in unformatted STREAM I/O. */
3593 case UNFORMATTED_STREAM
:
3596 case FORMATTED_DIRECT
:
3597 if (dtp
->u
.p
.current_unit
->bytes_left
== 0)
3600 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3601 fbuf_flush (dtp
->u
.p
.current_unit
, WRITING
);
3602 if (sset (dtp
->u
.p
.current_unit
->s
, ' ',
3603 dtp
->u
.p
.current_unit
->bytes_left
)
3604 != dtp
->u
.p
.current_unit
->bytes_left
)
3609 case UNFORMATTED_DIRECT
:
3610 if (dtp
->u
.p
.current_unit
->bytes_left
> 0)
3612 length
= (int) dtp
->u
.p
.current_unit
->bytes_left
;
3613 if (sset (dtp
->u
.p
.current_unit
->s
, 0, length
) != length
)
3618 case UNFORMATTED_SEQUENTIAL
:
3619 next_record_w_unf (dtp
, 0);
3620 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3623 case FORMATTED_STREAM
:
3624 case FORMATTED_SEQUENTIAL
:
3626 if (is_internal_unit (dtp
))
3629 if (is_array_io (dtp
))
3633 length
= (int) dtp
->u
.p
.current_unit
->bytes_left
;
3635 /* If the farthest position reached is greater than current
3636 position, adjust the position and set length to pad out
3637 whats left. Otherwise just pad whats left.
3638 (for character array unit) */
3639 m
= dtp
->u
.p
.current_unit
->recl
3640 - dtp
->u
.p
.current_unit
->bytes_left
;
3643 length
= (int) (max_pos
- m
);
3644 if (sseek (dtp
->u
.p
.current_unit
->s
,
3645 length
, SEEK_CUR
) < 0)
3647 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3650 length
= (int) (dtp
->u
.p
.current_unit
->recl
- max_pos
);
3653 p
= write_block (dtp
, length
);
3657 if (unlikely (is_char4_unit (dtp
)))
3659 gfc_char4_t
*p4
= (gfc_char4_t
*) p
;
3660 memset4 (p4
, ' ', length
);
3663 memset (p
, ' ', length
);
3665 /* Now that the current record has been padded out,
3666 determine where the next record in the array is. */
3667 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
,
3670 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
3672 /* Now seek to this record */
3673 record
= record
* dtp
->u
.p
.current_unit
->recl
;
3675 if (sseek (dtp
->u
.p
.current_unit
->s
, record
, SEEK_SET
) < 0)
3677 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3681 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3687 /* If this is the last call to next_record move to the farthest
3688 position reached and set length to pad out the remainder
3689 of the record. (for character scaler unit) */
3692 m
= dtp
->u
.p
.current_unit
->recl
3693 - dtp
->u
.p
.current_unit
->bytes_left
;
3696 length
= (int) (max_pos
- m
);
3697 if (sseek (dtp
->u
.p
.current_unit
->s
,
3698 length
, SEEK_CUR
) < 0)
3700 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3703 length
= (int) (dtp
->u
.p
.current_unit
->recl
- max_pos
);
3706 length
= (int) dtp
->u
.p
.current_unit
->bytes_left
;
3710 p
= write_block (dtp
, length
);
3714 if (unlikely (is_char4_unit (dtp
)))
3716 gfc_char4_t
*p4
= (gfc_char4_t
*) p
;
3717 memset4 (p4
, (gfc_char4_t
) ' ', length
);
3720 memset (p
, ' ', length
);
3724 /* Handle legacy CARRIAGECONTROL line endings. */
3725 else if (dtp
->u
.p
.current_unit
->flags
.cc
== CC_FORTRAN
)
3726 next_record_cc (dtp
);
3729 /* Skip newlines for CC=CC_NONE. */
3730 const int len
= (dtp
->u
.p
.current_unit
->flags
.cc
== CC_NONE
)
3737 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3738 if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
)
3740 char * p
= fbuf_alloc (dtp
->u
.p
.current_unit
, len
);
3748 if (is_stream_io (dtp
))
3750 dtp
->u
.p
.current_unit
->strm_pos
+= len
;
3751 if (dtp
->u
.p
.current_unit
->strm_pos
3752 < ssize (dtp
->u
.p
.current_unit
->s
))
3753 unit_truncate (dtp
->u
.p
.current_unit
,
3754 dtp
->u
.p
.current_unit
->strm_pos
- 1,
3762 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3767 /* Position to the next record, which means moving to the end of the
3768 current record. This can happen under several different
3769 conditions. If the done flag is not set, we get ready to process
3773 next_record (st_parameter_dt
*dtp
, int done
)
3775 gfc_offset fp
; /* File position. */
3777 dtp
->u
.p
.current_unit
->read_bad
= 0;
3779 if (dtp
->u
.p
.mode
== READING
)
3780 next_record_r (dtp
, done
);
3782 next_record_w (dtp
, done
);
3784 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3786 if (!is_stream_io (dtp
))
3788 /* Since we have changed the position, set it to unspecified so
3789 that INQUIRE(POSITION=) knows it needs to look into it. */
3791 dtp
->u
.p
.current_unit
->flags
.position
= POSITION_UNSPECIFIED
;
3793 dtp
->u
.p
.current_unit
->current_record
= 0;
3794 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
3796 fp
= stell (dtp
->u
.p
.current_unit
->s
);
3797 /* Calculate next record, rounding up partial records. */
3798 dtp
->u
.p
.current_unit
->last_record
=
3799 (fp
+ dtp
->u
.p
.current_unit
->recl
) /
3800 dtp
->u
.p
.current_unit
->recl
- 1;
3803 dtp
->u
.p
.current_unit
->last_record
++;
3809 smarkeor (dtp
->u
.p
.current_unit
->s
);
3813 /* Finalize the current data transfer. For a nonadvancing transfer,
3814 this means advancing to the next record. For internal units close the
3815 stream associated with the unit. */
3818 finalize_transfer (st_parameter_dt
*dtp
)
3820 GFC_INTEGER_4 cf
= dtp
->common
.flags
;
3822 if ((dtp
->u
.p
.ionml
!= NULL
)
3823 && (cf
& IOPARM_DT_HAS_NAMELIST_NAME
) != 0)
3825 if ((cf
& IOPARM_DT_NAMELIST_READ_MODE
) != 0)
3826 namelist_read (dtp
);
3828 namelist_write (dtp
);
3831 if (dtp
->u
.p
.current_unit
&& (dtp
->u
.p
.current_unit
->child_dtio
> 0))
3833 if (cf
& IOPARM_DT_HAS_FORMAT
)
3835 free (dtp
->u
.p
.fmt
);
3841 if ((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0)
3842 *dtp
->size
= dtp
->u
.p
.current_unit
->size_used
;
3844 if (dtp
->u
.p
.eor_condition
)
3846 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
3850 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
3852 if (dtp
->u
.p
.current_unit
&& current_mode (dtp
) == UNFORMATTED_SEQUENTIAL
)
3853 dtp
->u
.p
.current_unit
->current_record
= 0;
3857 dtp
->u
.p
.transfer
= NULL
;
3858 if (dtp
->u
.p
.current_unit
== NULL
)
3861 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0 && dtp
->u
.p
.mode
== READING
)
3863 finish_list_read (dtp
);
3867 if (dtp
->u
.p
.mode
== WRITING
)
3868 dtp
->u
.p
.current_unit
->previous_nonadvancing_write
3869 = dtp
->u
.p
.advance_status
== ADVANCE_NO
;
3871 if (is_stream_io (dtp
))
3873 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
3874 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
3875 next_record (dtp
, 1);
3880 dtp
->u
.p
.current_unit
->current_record
= 0;
3882 if (!is_internal_unit (dtp
) && dtp
->u
.p
.seen_dollar
)
3884 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3885 dtp
->u
.p
.seen_dollar
= 0;
3889 /* For non-advancing I/O, save the current maximum position for use in the
3890 next I/O operation if needed. */
3891 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
3893 if (dtp
->u
.p
.skips
> 0)
3896 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
3897 tmp
= (int)(dtp
->u
.p
.current_unit
->recl
3898 - dtp
->u
.p
.current_unit
->bytes_left
);
3900 dtp
->u
.p
.max_pos
> tmp
? dtp
->u
.p
.max_pos
: tmp
;
3903 int bytes_written
= (int) (dtp
->u
.p
.current_unit
->recl
3904 - dtp
->u
.p
.current_unit
->bytes_left
);
3905 dtp
->u
.p
.current_unit
->saved_pos
=
3906 dtp
->u
.p
.max_pos
> 0 ? dtp
->u
.p
.max_pos
- bytes_written
: 0;
3907 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3910 else if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
3911 && dtp
->u
.p
.mode
== WRITING
&& !is_internal_unit (dtp
))
3912 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3914 dtp
->u
.p
.current_unit
->saved_pos
= 0;
3916 next_record (dtp
, 1);
3919 #ifdef HAVE_USELOCALE
3920 if (dtp
->u
.p
.old_locale
!= (locale_t
) 0)
3922 uselocale (dtp
->u
.p
.old_locale
);
3923 dtp
->u
.p
.old_locale
= (locale_t
) 0;
3926 __gthread_mutex_lock (&old_locale_lock
);
3927 if (!--old_locale_ctr
)
3929 setlocale (LC_NUMERIC
, old_locale
);
3932 __gthread_mutex_unlock (&old_locale_lock
);
3936 /* Transfer function for IOLENGTH. It doesn't actually do any
3937 data transfer, it just updates the length counter. */
3940 iolength_transfer (st_parameter_dt
*dtp
, bt type
__attribute__((unused
)),
3941 void *dest
__attribute__ ((unused
)),
3942 int kind
__attribute__((unused
)),
3943 size_t size
, size_t nelems
)
3945 if ((dtp
->common
.flags
& IOPARM_DT_HAS_IOLENGTH
) != 0)
3946 *dtp
->iolength
+= (GFC_IO_INT
) (size
* nelems
);
3950 /* Initialize the IOLENGTH data transfer. This function is in essence
3951 a very much simplified version of data_transfer_init(), because it
3952 doesn't have to deal with units at all. */
3955 iolength_transfer_init (st_parameter_dt
*dtp
)
3957 if ((dtp
->common
.flags
& IOPARM_DT_HAS_IOLENGTH
) != 0)
3960 memset (&dtp
->u
.p
, 0, sizeof (dtp
->u
.p
));
3962 /* Set up the subroutine that will handle the transfers. */
3964 dtp
->u
.p
.transfer
= iolength_transfer
;
3968 /* Library entry point for the IOLENGTH form of the INQUIRE
3969 statement. The IOLENGTH form requires no I/O to be performed, but
3970 it must still be a runtime library call so that we can determine
3971 the iolength for dynamic arrays and such. */
3973 extern void st_iolength (st_parameter_dt
*);
3974 export_proto(st_iolength
);
3977 st_iolength (st_parameter_dt
*dtp
)
3979 library_start (&dtp
->common
);
3980 iolength_transfer_init (dtp
);
3983 extern void st_iolength_done (st_parameter_dt
*);
3984 export_proto(st_iolength_done
);
3987 st_iolength_done (st_parameter_dt
*dtp
__attribute__((unused
)))
3994 /* The READ statement. */
3996 extern void st_read (st_parameter_dt
*);
3997 export_proto(st_read
);
4000 st_read (st_parameter_dt
*dtp
)
4002 library_start (&dtp
->common
);
4004 data_transfer_init (dtp
, 1);
4007 extern void st_read_done (st_parameter_dt
*);
4008 export_proto(st_read_done
);
4011 st_read_done (st_parameter_dt
*dtp
)
4013 finalize_transfer (dtp
);
4017 /* If this is a parent READ statement we do not need to retain the
4018 internal unit structure for child use. Free it and stash the unit
4019 number for reuse. */
4020 if (dtp
->u
.p
.current_unit
!= NULL
4021 && dtp
->u
.p
.current_unit
->child_dtio
== 0)
4023 if (is_internal_unit (dtp
) &&
4024 (dtp
->common
.flags
& IOPARM_DT_HAS_UDTIO
) == 0)
4026 free (dtp
->u
.p
.current_unit
->filename
);
4027 dtp
->u
.p
.current_unit
->filename
= NULL
;
4028 free (dtp
->u
.p
.current_unit
->s
);
4029 dtp
->u
.p
.current_unit
->s
= NULL
;
4030 if (dtp
->u
.p
.current_unit
->ls
)
4031 free (dtp
->u
.p
.current_unit
->ls
);
4032 dtp
->u
.p
.current_unit
->ls
= NULL
;
4033 stash_internal_unit (dtp
);
4035 if (is_internal_unit (dtp
) || dtp
->u
.p
.format_not_saved
)
4037 free_format_data (dtp
->u
.p
.fmt
);
4040 unlock_unit (dtp
->u
.p
.current_unit
);
4046 extern void st_write (st_parameter_dt
*);
4047 export_proto(st_write
);
4050 st_write (st_parameter_dt
*dtp
)
4052 library_start (&dtp
->common
);
4053 data_transfer_init (dtp
, 0);
4056 extern void st_write_done (st_parameter_dt
*);
4057 export_proto(st_write_done
);
4060 st_write_done (st_parameter_dt
*dtp
)
4062 finalize_transfer (dtp
);
4064 if (dtp
->u
.p
.current_unit
!= NULL
4065 && dtp
->u
.p
.current_unit
->child_dtio
== 0)
4067 /* Deal with endfile conditions associated with sequential files. */
4068 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
4069 switch (dtp
->u
.p
.current_unit
->endfile
)
4071 case AT_ENDFILE
: /* Remain at the endfile record. */
4075 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
; /* Just at it now. */
4079 /* Get rid of whatever is after this record. */
4080 if (!is_internal_unit (dtp
))
4081 unit_truncate (dtp
->u
.p
.current_unit
,
4082 stell (dtp
->u
.p
.current_unit
->s
),
4084 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4090 /* If this is a parent WRITE statement we do not need to retain the
4091 internal unit structure for child use. Free it and stash the
4092 unit number for reuse. */
4093 if (is_internal_unit (dtp
) &&
4094 (dtp
->common
.flags
& IOPARM_DT_HAS_UDTIO
) == 0)
4096 free (dtp
->u
.p
.current_unit
->filename
);
4097 dtp
->u
.p
.current_unit
->filename
= NULL
;
4098 free (dtp
->u
.p
.current_unit
->s
);
4099 dtp
->u
.p
.current_unit
->s
= NULL
;
4100 if (dtp
->u
.p
.current_unit
->ls
)
4101 free (dtp
->u
.p
.current_unit
->ls
);
4102 dtp
->u
.p
.current_unit
->ls
= NULL
;
4103 stash_internal_unit (dtp
);
4105 if (is_internal_unit (dtp
) || dtp
->u
.p
.format_not_saved
)
4107 free_format_data (dtp
->u
.p
.fmt
);
4110 unlock_unit (dtp
->u
.p
.current_unit
);
4116 /* F2003: This is a stub for the runtime portion of the WAIT statement. */
4118 st_wait (st_parameter_wait
*wtp
__attribute__((unused
)))
4123 /* Receives the scalar information for namelist objects and stores it
4124 in a linked list of namelist_info types. */
4127 set_nml_var (st_parameter_dt
*dtp
, void * var_addr
, char * var_name
,
4128 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4129 GFC_INTEGER_4 dtype
, void *dtio_sub
, void *vtable
)
4131 namelist_info
*t1
= NULL
;
4133 size_t var_name_len
= strlen (var_name
);
4135 nml
= (namelist_info
*) xmalloc (sizeof (namelist_info
));
4137 nml
->mem_pos
= var_addr
;
4138 nml
->dtio_sub
= dtio_sub
;
4139 nml
->vtable
= vtable
;
4141 nml
->var_name
= (char*) xmalloc (var_name_len
+ 1);
4142 memcpy (nml
->var_name
, var_name
, var_name_len
);
4143 nml
->var_name
[var_name_len
] = '\0';
4145 nml
->len
= (int) len
;
4146 nml
->string_length
= (index_type
) string_length
;
4148 nml
->var_rank
= (int) (dtype
& GFC_DTYPE_RANK_MASK
);
4149 nml
->size
= (index_type
) (dtype
>> GFC_DTYPE_SIZE_SHIFT
);
4150 nml
->type
= (bt
) ((dtype
& GFC_DTYPE_TYPE_MASK
) >> GFC_DTYPE_TYPE_SHIFT
);
4152 if (nml
->var_rank
> 0)
4154 nml
->dim
= (descriptor_dimension
*)
4155 xmallocarray (nml
->var_rank
, sizeof (descriptor_dimension
));
4156 nml
->ls
= (array_loop_spec
*)
4157 xmallocarray (nml
->var_rank
, sizeof (array_loop_spec
));
4167 if ((dtp
->common
.flags
& IOPARM_DT_IONML_SET
) == 0)
4169 dtp
->common
.flags
|= IOPARM_DT_IONML_SET
;
4170 dtp
->u
.p
.ionml
= nml
;
4174 for (t1
= dtp
->u
.p
.ionml
; t1
->next
; t1
= t1
->next
);
4179 extern void st_set_nml_var (st_parameter_dt
*dtp
, void *, char *,
4180 GFC_INTEGER_4
, gfc_charlen_type
, GFC_INTEGER_4
);
4181 export_proto(st_set_nml_var
);
4184 st_set_nml_var (st_parameter_dt
*dtp
, void * var_addr
, char * var_name
,
4185 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4186 GFC_INTEGER_4 dtype
)
4188 set_nml_var (dtp
, var_addr
, var_name
, len
, string_length
,
4193 /* Essentially the same as previous but carrying the dtio procedure
4194 and the vtable as additional arguments. */
4195 extern void st_set_nml_dtio_var (st_parameter_dt
*dtp
, void *, char *,
4196 GFC_INTEGER_4
, gfc_charlen_type
, GFC_INTEGER_4
,
4198 export_proto(st_set_nml_dtio_var
);
4202 st_set_nml_dtio_var (st_parameter_dt
*dtp
, void * var_addr
, char * var_name
,
4203 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4204 GFC_INTEGER_4 dtype
, void *dtio_sub
, void *vtable
)
4206 set_nml_var (dtp
, var_addr
, var_name
, len
, string_length
,
4207 dtype
, dtio_sub
, vtable
);
4210 /* Store the dimensional information for the namelist object. */
4211 extern void st_set_nml_var_dim (st_parameter_dt
*, GFC_INTEGER_4
,
4212 index_type
, index_type
,
4214 export_proto(st_set_nml_var_dim
);
4217 st_set_nml_var_dim (st_parameter_dt
*dtp
, GFC_INTEGER_4 n_dim
,
4218 index_type stride
, index_type lbound
,
4221 namelist_info
* nml
;
4226 for (nml
= dtp
->u
.p
.ionml
; nml
->next
; nml
= nml
->next
);
4228 GFC_DIMENSION_SET(nml
->dim
[n
],lbound
,ubound
,stride
);
4232 /* Once upon a time, a poor innocent Fortran program was reading a
4233 file, when suddenly it hit the end-of-file (EOF). Unfortunately
4234 the OS doesn't tell whether we're at the EOF or whether we already
4235 went past it. Luckily our hero, libgfortran, keeps track of this.
4236 Call this function when you detect an EOF condition. See Section
4240 hit_eof (st_parameter_dt
* dtp
)
4242 dtp
->u
.p
.current_unit
->flags
.position
= POSITION_APPEND
;
4244 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
4245 switch (dtp
->u
.p
.current_unit
->endfile
)
4249 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
4250 if (!is_internal_unit (dtp
) && !dtp
->u
.p
.namelist_mode
)
4252 dtp
->u
.p
.current_unit
->endfile
= AFTER_ENDFILE
;
4253 dtp
->u
.p
.current_unit
->current_record
= 0;
4256 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4260 generate_error (&dtp
->common
, LIBERROR_ENDFILE
, NULL
);
4261 dtp
->u
.p
.current_unit
->current_record
= 0;
4266 /* Non-sequential files don't have an ENDFILE record, so we
4267 can't be at AFTER_ENDFILE. */
4268 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4269 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
4270 dtp
->u
.p
.current_unit
->current_record
= 0;