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
;
247 /* There are some cases with mixed DTIO where we have read a character
248 and saved it in the last character buffer, so we need to backup. */
249 if (unlikely (dtp
->u
.p
.current_unit
->child_dtio
> 0 &&
250 dtp
->u
.p
.current_unit
->last_char
!= EOF
- 1))
252 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
253 sseek (dtp
->u
.p
.current_unit
->s
, -1, SEEK_CUR
);
257 if (is_char4_unit(dtp
))
260 gfc_char4_t
*p
= (gfc_char4_t
*) mem_alloc_r4 (dtp
->u
.p
.current_unit
->s
,
262 base
= fbuf_alloc (dtp
->u
.p
.current_unit
, lorig
);
263 for (i
= 0; i
< *length
; i
++, p
++)
264 base
[i
] = *p
> 255 ? '?' : (unsigned char) *p
;
267 base
= mem_alloc_r (dtp
->u
.p
.current_unit
->s
, length
);
269 if (unlikely (lorig
> *length
))
275 dtp
->u
.p
.current_unit
->bytes_left
-= *length
;
277 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
278 dtp
->u
.p
.current_unit
->has_size
)
279 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *length
;
285 /* When reading sequential formatted records we have a problem. We
286 don't know how long the line is until we read the trailing newline,
287 and we don't want to read too much. If we read too much, we might
288 have to do a physical seek backwards depending on how much data is
289 present, and devices like terminals aren't seekable and would cause
292 Given this, the solution is to read a byte at a time, stopping if
293 we hit the newline. For small allocations, we use a static buffer.
294 For larger allocations, we are forced to allocate memory on the
295 heap. Hopefully this won't happen very often. */
297 /* Read sequential file - external unit */
300 read_sf (st_parameter_dt
*dtp
, int *length
)
302 static char *empty_string
[0];
304 int n
, lorig
, seen_comma
;
306 /* If we have seen an eor previously, return a length of 0. The
307 caller is responsible for correctly padding the input field. */
308 if (dtp
->u
.p
.sf_seen_eor
)
311 /* Just return something that isn't a NULL pointer, otherwise the
312 caller thinks an error occurred. */
313 return (char*) empty_string
;
316 /* There are some cases with mixed DTIO where we have read a character
317 and saved it in the last character buffer, so we need to backup. */
318 if (unlikely (dtp
->u
.p
.current_unit
->child_dtio
> 0 &&
319 dtp
->u
.p
.current_unit
->last_char
!= EOF
- 1))
321 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
322 fbuf_seek (dtp
->u
.p
.current_unit
, -1, SEEK_CUR
);
327 /* Read data into format buffer and scan through it. */
332 q
= fbuf_getc (dtp
->u
.p
.current_unit
);
335 else if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
336 && (q
== '\n' || q
== '\r'))
338 /* Unexpected end of line. Set the position. */
339 dtp
->u
.p
.sf_seen_eor
= 1;
341 /* If we see an EOR during non-advancing I/O, we need to skip
342 the rest of the I/O statement. Set the corresponding flag. */
343 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
|| dtp
->u
.p
.seen_dollar
)
344 dtp
->u
.p
.eor_condition
= 1;
346 /* If we encounter a CR, it might be a CRLF. */
347 if (q
== '\r') /* Probably a CRLF */
349 /* See if there is an LF. */
350 q2
= fbuf_getc (dtp
->u
.p
.current_unit
);
352 dtp
->u
.p
.sf_seen_eor
= 2;
353 else if (q2
!= EOF
) /* Oops, seek back. */
354 fbuf_seek (dtp
->u
.p
.current_unit
, -1, SEEK_CUR
);
357 /* Without padding, terminate the I/O statement without assigning
358 the value. With padding, the value still needs to be assigned,
359 so we can just continue with a short read. */
360 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
362 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
369 /* Short circuit the read if a comma is found during numeric input.
370 The flag is set to zero during character reads so that commas in
371 strings are not ignored */
373 if (dtp
->u
.p
.sf_read_comma
== 1)
376 notify_std (&dtp
->common
, GFC_STD_GNU
,
377 "Comma in formatted numeric read.");
385 /* A short read implies we hit EOF, unless we hit EOR, a comma, or
386 some other stuff. Set the relevant flags. */
387 if (lorig
> *length
&& !dtp
->u
.p
.sf_seen_eor
&& !seen_comma
)
391 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
393 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
399 dtp
->u
.p
.eor_condition
= 1;
404 else if (dtp
->u
.p
.advance_status
== ADVANCE_NO
405 || dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
406 || dtp
->u
.p
.current_unit
->bytes_left
407 == dtp
->u
.p
.current_unit
->recl
)
416 dtp
->u
.p
.current_unit
->bytes_left
-= n
;
418 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
419 dtp
->u
.p
.current_unit
->has_size
)
420 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) n
;
422 /* We can't call fbuf_getptr before the loop doing fbuf_getc, because
423 fbuf_getc might reallocate the buffer. So return current pointer
424 minus all the advances, which is n plus up to two characters
425 of newline or comma. */
426 return fbuf_getptr (dtp
->u
.p
.current_unit
)
427 - n
- dtp
->u
.p
.sf_seen_eor
- seen_comma
;
431 /* Function for reading the next couple of bytes from the current
432 file, advancing the current position. We return NULL on end of record or
433 end of file. This function is only for formatted I/O, unformatted uses
436 If the read is short, then it is because the current record does not
437 have enough data to satisfy the read request and the file was
438 opened with PAD=YES. The caller must assume tailing spaces for
442 read_block_form (st_parameter_dt
*dtp
, int *nbytes
)
447 if (!is_stream_io (dtp
))
449 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) *nbytes
)
451 /* For preconnected units with default record length, set bytes left
452 to unit record length and proceed, otherwise error. */
453 if (dtp
->u
.p
.current_unit
->unit_number
== options
.stdin_unit
454 && dtp
->u
.p
.current_unit
->recl
== DEFAULT_RECL
)
455 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
458 if (unlikely (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
459 && !is_internal_unit (dtp
))
461 /* Not enough data left. */
462 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
467 if (is_internal_unit(dtp
))
469 if (*nbytes
> 0 && dtp
->u
.p
.current_unit
->bytes_left
== 0)
471 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
473 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
480 if (unlikely (dtp
->u
.p
.current_unit
->bytes_left
== 0))
487 *nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
491 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
&&
492 (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
||
493 dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
))
495 if (is_internal_unit (dtp
))
496 source
= read_sf_internal (dtp
, nbytes
);
498 source
= read_sf (dtp
, nbytes
);
500 dtp
->u
.p
.current_unit
->strm_pos
+=
501 (gfc_offset
) (*nbytes
+ dtp
->u
.p
.sf_seen_eor
);
505 /* If we reach here, we can assume it's direct access. */
507 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) *nbytes
;
510 source
= fbuf_read (dtp
->u
.p
.current_unit
, nbytes
);
511 fbuf_seek (dtp
->u
.p
.current_unit
, *nbytes
, SEEK_CUR
);
513 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
514 dtp
->u
.p
.current_unit
->has_size
)
515 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *nbytes
;
517 if (norig
!= *nbytes
)
519 /* Short read, this shouldn't happen. */
520 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
522 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
527 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) *nbytes
;
533 /* Read a block from a character(kind=4) internal unit, to be transferred into
534 a character(kind=4) variable. Note: Portions of this code borrowed from
537 read_block_form4 (st_parameter_dt
*dtp
, int *nbytes
)
539 static gfc_char4_t
*empty_string
[0];
543 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) *nbytes
)
544 *nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
546 /* Zero size array gives internal unit len of 0. Nothing to read. */
547 if (dtp
->internal_unit_len
== 0
548 && dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
)
551 /* If we have seen an eor previously, return a length of 0. The
552 caller is responsible for correctly padding the input field. */
553 if (dtp
->u
.p
.sf_seen_eor
)
556 /* Just return something that isn't a NULL pointer, otherwise the
557 caller thinks an error occurred. */
562 source
= (gfc_char4_t
*) mem_alloc_r4 (dtp
->u
.p
.current_unit
->s
, nbytes
);
564 if (unlikely (lorig
> *nbytes
))
570 dtp
->u
.p
.current_unit
->bytes_left
-= *nbytes
;
572 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
573 dtp
->u
.p
.current_unit
->has_size
)
574 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) *nbytes
;
580 /* Reads a block directly into application data space. This is for
581 unformatted files. */
584 read_block_direct (st_parameter_dt
*dtp
, void *buf
, size_t nbytes
)
586 ssize_t to_read_record
;
587 ssize_t have_read_record
;
588 ssize_t to_read_subrecord
;
589 ssize_t have_read_subrecord
;
592 if (is_stream_io (dtp
))
594 have_read_record
= sread (dtp
->u
.p
.current_unit
->s
, buf
,
596 if (unlikely (have_read_record
< 0))
598 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
602 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_read_record
;
604 if (unlikely ((ssize_t
) nbytes
!= have_read_record
))
606 /* Short read, e.g. if we hit EOF. For stream files,
607 we have to set the end-of-file condition. */
613 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
615 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) nbytes
)
618 to_read_record
= dtp
->u
.p
.current_unit
->bytes_left
;
619 nbytes
= to_read_record
;
624 to_read_record
= nbytes
;
627 dtp
->u
.p
.current_unit
->bytes_left
-= to_read_record
;
629 to_read_record
= sread (dtp
->u
.p
.current_unit
->s
, buf
, to_read_record
);
630 if (unlikely (to_read_record
< 0))
632 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
636 if (to_read_record
!= (ssize_t
) nbytes
)
638 /* Short read, e.g. if we hit EOF. Apparently, we read
639 more than was written to the last record. */
643 if (unlikely (short_record
))
645 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
650 /* Unformatted sequential. We loop over the subrecords, reading
651 until the request has been fulfilled or the record has run out
652 of continuation subrecords. */
654 /* Check whether we exceed the total record length. */
656 if (dtp
->u
.p
.current_unit
->flags
.has_recl
657 && ((gfc_offset
) nbytes
> dtp
->u
.p
.current_unit
->bytes_left
))
659 to_read_record
= dtp
->u
.p
.current_unit
->bytes_left
;
664 to_read_record
= nbytes
;
667 have_read_record
= 0;
671 if (dtp
->u
.p
.current_unit
->bytes_left_subrecord
672 < (gfc_offset
) to_read_record
)
674 to_read_subrecord
= dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
675 to_read_record
-= to_read_subrecord
;
679 to_read_subrecord
= to_read_record
;
683 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-= to_read_subrecord
;
685 have_read_subrecord
= sread (dtp
->u
.p
.current_unit
->s
,
686 buf
+ have_read_record
, to_read_subrecord
);
687 if (unlikely (have_read_subrecord
< 0))
689 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
693 have_read_record
+= have_read_subrecord
;
695 if (unlikely (to_read_subrecord
!= have_read_subrecord
))
697 /* Short read, e.g. if we hit EOF. This means the record
698 structure has been corrupted, or the trailing record
699 marker would still be present. */
701 generate_error (&dtp
->common
, LIBERROR_CORRUPT_FILE
, NULL
);
705 if (to_read_record
> 0)
707 if (likely (dtp
->u
.p
.current_unit
->continued
))
709 next_record_r_unf (dtp
, 0);
714 /* Let's make sure the file position is correctly pre-positioned
715 for the next read statement. */
717 dtp
->u
.p
.current_unit
->current_record
= 0;
718 next_record_r_unf (dtp
, 0);
719 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
725 /* Normal exit, the read request has been fulfilled. */
730 dtp
->u
.p
.current_unit
->bytes_left
-= have_read_record
;
731 if (unlikely (short_record
))
733 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
740 /* Function for writing a block of bytes to the current file at the
741 current position, advancing the file pointer. We are given a length
742 and return a pointer to a buffer that the caller must (completely)
743 fill in. Returns NULL on error. */
746 write_block (st_parameter_dt
*dtp
, int length
)
750 if (!is_stream_io (dtp
))
752 if (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) length
)
754 /* For preconnected units with default record length, set bytes left
755 to unit record length and proceed, otherwise error. */
756 if (likely ((dtp
->u
.p
.current_unit
->unit_number
757 == options
.stdout_unit
758 || dtp
->u
.p
.current_unit
->unit_number
759 == options
.stderr_unit
)
760 && dtp
->u
.p
.current_unit
->recl
== DEFAULT_RECL
))
761 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
764 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
769 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) length
;
772 if (is_internal_unit (dtp
))
774 if (is_char4_unit(dtp
)) /* char4 internel unit. */
777 dest4
= mem_alloc_w4 (dtp
->u
.p
.current_unit
->s
, &length
);
780 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
786 dest
= mem_alloc_w (dtp
->u
.p
.current_unit
->s
, &length
);
790 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
794 if (unlikely (dtp
->u
.p
.current_unit
->endfile
== AT_ENDFILE
))
795 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
799 dest
= fbuf_alloc (dtp
->u
.p
.current_unit
, length
);
802 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
807 if (((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0) ||
808 dtp
->u
.p
.current_unit
->has_size
)
809 dtp
->u
.p
.current_unit
->size_used
+= (GFC_IO_INT
) length
;
811 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) length
;
817 /* High level interface to swrite(), taking care of errors. This is only
818 called for unformatted files. There are three cases to consider:
819 Stream I/O, unformatted direct, unformatted sequential. */
822 write_buf (st_parameter_dt
*dtp
, void *buf
, size_t nbytes
)
825 ssize_t have_written
;
826 ssize_t to_write_subrecord
;
831 if (is_stream_io (dtp
))
833 have_written
= swrite (dtp
->u
.p
.current_unit
->s
, buf
, nbytes
);
834 if (unlikely (have_written
< 0))
836 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
840 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_written
;
845 /* Unformatted direct access. */
847 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
849 if (unlikely (dtp
->u
.p
.current_unit
->bytes_left
< (gfc_offset
) nbytes
))
851 generate_error (&dtp
->common
, LIBERROR_DIRECT_EOR
, NULL
);
855 if (buf
== NULL
&& nbytes
== 0)
858 have_written
= swrite (dtp
->u
.p
.current_unit
->s
, buf
, nbytes
);
859 if (unlikely (have_written
< 0))
861 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
865 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) have_written
;
866 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) have_written
;
871 /* Unformatted sequential. */
875 if (dtp
->u
.p
.current_unit
->flags
.has_recl
876 && (gfc_offset
) nbytes
> dtp
->u
.p
.current_unit
->bytes_left
)
878 nbytes
= dtp
->u
.p
.current_unit
->bytes_left
;
890 (size_t) dtp
->u
.p
.current_unit
->bytes_left_subrecord
< nbytes
?
891 (size_t) dtp
->u
.p
.current_unit
->bytes_left_subrecord
: nbytes
;
893 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-=
894 (gfc_offset
) to_write_subrecord
;
896 to_write_subrecord
= swrite (dtp
->u
.p
.current_unit
->s
,
897 buf
+ have_written
, to_write_subrecord
);
898 if (unlikely (to_write_subrecord
< 0))
900 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
904 dtp
->u
.p
.current_unit
->strm_pos
+= (gfc_offset
) to_write_subrecord
;
905 nbytes
-= to_write_subrecord
;
906 have_written
+= to_write_subrecord
;
911 next_record_w_unf (dtp
, 1);
914 dtp
->u
.p
.current_unit
->bytes_left
-= have_written
;
915 if (unlikely (short_record
))
917 generate_error (&dtp
->common
, LIBERROR_SHORT_RECORD
, NULL
);
924 /* Reverse memcpy - used for byte swapping. */
927 reverse_memcpy (void *dest
, const void *src
, size_t n
)
933 s
= (char *) src
+ n
- 1;
935 /* Write with ascending order - this is likely faster
936 on modern architectures because of write combining. */
942 /* Utility function for byteswapping an array, using the bswap
943 builtins if possible. dest and src can overlap completely, or then
944 they must point to separate objects; partial overlaps are not
948 bswap_array (void *dest
, const void *src
, size_t size
, size_t nelems
)
958 for (size_t i
= 0; i
< nelems
; i
++)
959 ((uint16_t*)dest
)[i
] = __builtin_bswap16 (((uint16_t*)src
)[i
]);
962 for (size_t i
= 0; i
< nelems
; i
++)
963 ((uint32_t*)dest
)[i
] = __builtin_bswap32 (((uint32_t*)src
)[i
]);
966 for (size_t i
= 0; i
< nelems
; i
++)
967 ((uint64_t*)dest
)[i
] = __builtin_bswap64 (((uint64_t*)src
)[i
]);
972 for (size_t i
= 0; i
< nelems
; i
++)
975 memcpy (&tmp
, ps
, 4);
976 *(uint32_t*)pd
= __builtin_bswap32 (*(uint32_t*)(ps
+ 8));
977 *(uint32_t*)(pd
+ 4) = __builtin_bswap32 (*(uint32_t*)(ps
+ 4));
978 *(uint32_t*)(pd
+ 8) = __builtin_bswap32 (tmp
);
986 for (size_t i
= 0; i
< nelems
; i
++)
989 memcpy (&tmp
, ps
, 8);
990 *(uint64_t*)pd
= __builtin_bswap64 (*(uint64_t*)(ps
+ 8));
991 *(uint64_t*)(pd
+ 8) = __builtin_bswap64 (tmp
);
1001 for (size_t i
= 0; i
< nelems
; i
++)
1003 reverse_memcpy (pd
, ps
, size
);
1010 /* In-place byte swap. */
1011 for (size_t i
= 0; i
< nelems
; i
++)
1013 char tmp
, *low
= pd
, *high
= pd
+ size
- 1;
1014 for (size_t j
= 0; j
< size
/2; j
++)
1029 /* Master function for unformatted reads. */
1032 unformatted_read (st_parameter_dt
*dtp
, bt type
,
1033 void *dest
, int kind
, size_t size
, size_t nelems
)
1035 if (type
== BT_CLASS
)
1037 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1038 char tmp_iomsg
[IOMSG_LEN
] = "";
1040 gfc_charlen_type child_iomsg_len
;
1042 int *child_iostat
= NULL
;
1044 /* Set iostat, intent(out). */
1046 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1047 dtp
->common
.iostat
: &noiostat
;
1049 /* Set iomsg, intent(inout). */
1050 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1052 child_iomsg
= dtp
->common
.iomsg
;
1053 child_iomsg_len
= dtp
->common
.iomsg_len
;
1057 child_iomsg
= tmp_iomsg
;
1058 child_iomsg_len
= IOMSG_LEN
;
1061 /* Call the user defined unformatted READ procedure. */
1062 dtp
->u
.p
.current_unit
->child_dtio
++;
1063 dtp
->u
.p
.ufdtio_ptr (dest
, &unit
, child_iostat
, child_iomsg
,
1065 dtp
->u
.p
.current_unit
->child_dtio
--;
1069 if (type
== BT_CHARACTER
)
1070 size
*= GFC_SIZE_OF_CHAR_KIND(kind
);
1071 read_block_direct (dtp
, dest
, size
* nelems
);
1073 if (unlikely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_SWAP
)
1076 /* Handle wide chracters. */
1077 if (type
== BT_CHARACTER
)
1083 /* Break up complex into its constituent reals. */
1084 else if (type
== BT_COMPLEX
)
1089 bswap_array (dest
, dest
, size
, nelems
);
1094 /* Master function for unformatted writes. NOTE: For kind=10 the size is 16
1095 bytes on 64 bit machines. The unused bytes are not initialized and never
1096 used, which can show an error with memory checking analyzers like
1097 valgrind. We us BT_CLASS to denote a User Defined I/O call. */
1100 unformatted_write (st_parameter_dt
*dtp
, bt type
,
1101 void *source
, int kind
, size_t size
, size_t nelems
)
1103 if (type
== BT_CLASS
)
1105 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1106 char tmp_iomsg
[IOMSG_LEN
] = "";
1108 gfc_charlen_type child_iomsg_len
;
1110 int *child_iostat
= NULL
;
1112 /* Set iostat, intent(out). */
1114 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1115 dtp
->common
.iostat
: &noiostat
;
1117 /* Set iomsg, intent(inout). */
1118 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1120 child_iomsg
= dtp
->common
.iomsg
;
1121 child_iomsg_len
= dtp
->common
.iomsg_len
;
1125 child_iomsg
= tmp_iomsg
;
1126 child_iomsg_len
= IOMSG_LEN
;
1129 /* Call the user defined unformatted WRITE procedure. */
1130 dtp
->u
.p
.current_unit
->child_dtio
++;
1131 dtp
->u
.p
.ufdtio_ptr (source
, &unit
, child_iostat
, child_iomsg
,
1133 dtp
->u
.p
.current_unit
->child_dtio
--;
1137 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
)
1140 size_t stride
= type
== BT_CHARACTER
?
1141 size
* GFC_SIZE_OF_CHAR_KIND(kind
) : size
;
1143 write_buf (dtp
, source
, stride
* nelems
);
1147 #define BSWAP_BUFSZ 512
1148 char buffer
[BSWAP_BUFSZ
];
1154 /* Handle wide chracters. */
1155 if (type
== BT_CHARACTER
&& kind
!= 1)
1161 /* Break up complex into its constituent reals. */
1162 if (type
== BT_COMPLEX
)
1168 /* By now, all complex variables have been split into their
1169 constituent reals. */
1175 if (size
* nrem
> BSWAP_BUFSZ
)
1176 nc
= BSWAP_BUFSZ
/ size
;
1180 bswap_array (buffer
, p
, size
, nc
);
1181 write_buf (dtp
, buffer
, size
* nc
);
1190 /* Return a pointer to the name of a type. */
1215 p
= "CLASS or DERIVED";
1218 internal_error (NULL
, "type_name(): Bad type");
1225 /* Write a constant string to the output.
1226 This is complicated because the string can have doubled delimiters
1227 in it. The length in the format node is the true length. */
1230 write_constant_string (st_parameter_dt
*dtp
, const fnode
*f
)
1232 char c
, delimiter
, *p
, *q
;
1235 length
= f
->u
.string
.length
;
1239 p
= write_block (dtp
, length
);
1246 for (; length
> 0; length
--)
1249 if (c
== delimiter
&& c
!= 'H' && c
!= 'h')
1250 q
++; /* Skip the doubled delimiter. */
1255 /* Given actual and expected types in a formatted data transfer, make
1256 sure they agree. If not, an error message is generated. Returns
1257 nonzero if something went wrong. */
1260 require_type (st_parameter_dt
*dtp
, bt expected
, bt actual
, const fnode
*f
)
1263 char buffer
[BUFLEN
];
1265 if (actual
== expected
)
1268 /* Adjust item_count before emitting error message. */
1269 snprintf (buffer
, BUFLEN
,
1270 "Expected %s for item %d in formatted transfer, got %s",
1271 type_name (expected
), dtp
->u
.p
.item_count
- 1, type_name (actual
));
1273 format_error (dtp
, f
, buffer
);
1278 /* Check that the dtio procedure required for formatted IO is present. */
1281 check_dtio_proc (st_parameter_dt
*dtp
, const fnode
*f
)
1283 char buffer
[BUFLEN
];
1285 if (dtp
->u
.p
.fdtio_ptr
!= NULL
)
1288 snprintf (buffer
, BUFLEN
,
1289 "Missing DTIO procedure or intrinsic type passed for item %d "
1290 "in formatted transfer",
1291 dtp
->u
.p
.item_count
- 1);
1293 format_error (dtp
, f
, buffer
);
1299 require_numeric_type (st_parameter_dt
*dtp
, bt actual
, const fnode
*f
)
1302 char buffer
[BUFLEN
];
1304 if (actual
== BT_INTEGER
|| actual
== BT_REAL
|| actual
== BT_COMPLEX
)
1307 /* Adjust item_count before emitting error message. */
1308 snprintf (buffer
, BUFLEN
,
1309 "Expected numeric type for item %d in formatted transfer, got %s",
1310 dtp
->u
.p
.item_count
- 1, type_name (actual
));
1312 format_error (dtp
, f
, buffer
);
1317 get_dt_format (char *p
, gfc_charlen_type
*length
)
1319 char delim
= p
[-1]; /* The delimiter is always the first character back. */
1321 gfc_charlen_type len
= *length
; /* This length already correct, less 'DT'. */
1323 res
= q
= xmalloc (len
+ 2);
1325 /* Set the beginning of the string to 'DT', length adjusted below. */
1329 /* The string may contain doubled quotes so scan and skip as needed. */
1330 for (; len
> 0; len
--)
1334 p
++; /* Skip the doubled delimiter. */
1337 /* Adjust the string length by two now that we are done. */
1344 /* This function is in the main loop for a formatted data transfer
1345 statement. It would be natural to implement this as a coroutine
1346 with the user program, but C makes that awkward. We loop,
1347 processing format elements. When we actually have to transfer
1348 data instead of just setting flags, we return control to the user
1349 program which calls a function that supplies the address and type
1350 of the next element, then comes back here to process it. */
1353 formatted_transfer_scalar_read (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1356 int pos
, bytes_used
;
1360 int consume_data_flag
;
1362 /* Change a complex data item into a pair of reals. */
1364 n
= (p
== NULL
) ? 0 : ((type
!= BT_COMPLEX
) ? 1 : 2);
1365 if (type
== BT_COMPLEX
)
1371 /* If there's an EOR condition, we simulate finalizing the transfer
1372 by doing nothing. */
1373 if (dtp
->u
.p
.eor_condition
)
1376 /* Set this flag so that commas in reads cause the read to complete before
1377 the entire field has been read. The next read field will start right after
1378 the comma in the stream. (Set to 0 for character reads). */
1379 dtp
->u
.p
.sf_read_comma
=
1380 dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
? 0 : 1;
1384 /* If reversion has occurred and there is another real data item,
1385 then we have to move to the next record. */
1386 if (dtp
->u
.p
.reversion_flag
&& n
> 0)
1388 dtp
->u
.p
.reversion_flag
= 0;
1389 next_record (dtp
, 0);
1392 consume_data_flag
= 1;
1393 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1396 f
= next_format (dtp
);
1399 /* No data descriptors left. */
1400 if (unlikely (n
> 0))
1401 generate_error (&dtp
->common
, LIBERROR_FORMAT
,
1402 "Insufficient data descriptors in format after reversion");
1408 bytes_used
= (int)(dtp
->u
.p
.current_unit
->recl
1409 - dtp
->u
.p
.current_unit
->bytes_left
);
1411 if (is_stream_io(dtp
))
1418 goto need_read_data
;
1419 if (require_type (dtp
, BT_INTEGER
, type
, f
))
1421 read_decimal (dtp
, f
, p
, kind
);
1426 goto need_read_data
;
1427 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1428 && require_numeric_type (dtp
, type
, f
))
1430 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1431 && require_type (dtp
, BT_INTEGER
, type
, f
))
1433 read_radix (dtp
, f
, p
, kind
, 2);
1438 goto need_read_data
;
1439 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1440 && require_numeric_type (dtp
, type
, f
))
1442 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1443 && require_type (dtp
, BT_INTEGER
, type
, f
))
1445 read_radix (dtp
, f
, p
, kind
, 8);
1450 goto need_read_data
;
1451 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1452 && require_numeric_type (dtp
, type
, f
))
1454 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1455 && require_type (dtp
, BT_INTEGER
, type
, f
))
1457 read_radix (dtp
, f
, p
, kind
, 16);
1462 goto need_read_data
;
1464 /* It is possible to have FMT_A with something not BT_CHARACTER such
1465 as when writing out hollerith strings, so check both type
1466 and kind before calling wide character routines. */
1467 if (type
== BT_CHARACTER
&& kind
== 4)
1468 read_a_char4 (dtp
, f
, p
, size
);
1470 read_a (dtp
, f
, p
, size
);
1475 goto need_read_data
;
1476 read_l (dtp
, f
, p
, kind
);
1481 goto need_read_data
;
1482 if (require_type (dtp
, BT_REAL
, type
, f
))
1484 read_f (dtp
, f
, p
, kind
);
1489 goto need_read_data
;
1491 if (check_dtio_proc (dtp
, f
))
1493 if (require_type (dtp
, BT_CLASS
, type
, f
))
1495 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1497 char tmp_iomsg
[IOMSG_LEN
] = "";
1499 gfc_charlen_type child_iomsg_len
;
1501 int *child_iostat
= NULL
;
1503 gfc_charlen_type iotype_len
= f
->u
.udf
.string_len
;
1505 /* Build the iotype string. */
1506 if (iotype_len
== 0)
1512 iotype
= get_dt_format (f
->u
.udf
.string
, &iotype_len
);
1514 /* Set iostat, intent(out). */
1516 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1517 dtp
->common
.iostat
: &noiostat
;
1519 /* Set iomsg, intent(inout). */
1520 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1522 child_iomsg
= dtp
->common
.iomsg
;
1523 child_iomsg_len
= dtp
->common
.iomsg_len
;
1527 child_iomsg
= tmp_iomsg
;
1528 child_iomsg_len
= IOMSG_LEN
;
1531 /* Call the user defined formatted READ procedure. */
1532 dtp
->u
.p
.current_unit
->child_dtio
++;
1533 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
1534 dtp
->u
.p
.fdtio_ptr (p
, &unit
, iotype
, f
->u
.udf
.vlist
,
1535 child_iostat
, child_iomsg
,
1536 iotype_len
, child_iomsg_len
);
1537 dtp
->u
.p
.current_unit
->child_dtio
--;
1539 if (f
->u
.udf
.string_len
!= 0)
1541 /* Note: vlist is freed in free_format_data. */
1546 goto need_read_data
;
1547 if (require_type (dtp
, BT_REAL
, type
, f
))
1549 read_f (dtp
, f
, p
, kind
);
1554 goto need_read_data
;
1555 if (require_type (dtp
, BT_REAL
, type
, f
))
1557 read_f (dtp
, f
, p
, kind
);
1562 goto need_read_data
;
1563 if (require_type (dtp
, BT_REAL
, type
, f
))
1565 read_f (dtp
, f
, p
, kind
);
1570 goto need_read_data
;
1571 if (require_type (dtp
, BT_REAL
, type
, f
))
1573 read_f (dtp
, f
, p
, kind
);
1578 goto need_read_data
;
1582 read_decimal (dtp
, f
, p
, kind
);
1585 read_l (dtp
, f
, p
, kind
);
1589 read_a_char4 (dtp
, f
, p
, size
);
1591 read_a (dtp
, f
, p
, size
);
1594 read_f (dtp
, f
, p
, kind
);
1597 internal_error (&dtp
->common
, "formatted_transfer(): Bad type");
1602 consume_data_flag
= 0;
1603 format_error (dtp
, f
, "Constant string in input format");
1606 /* Format codes that don't transfer data. */
1609 consume_data_flag
= 0;
1610 dtp
->u
.p
.skips
+= f
->u
.n
;
1611 pos
= bytes_used
+ dtp
->u
.p
.skips
- 1;
1612 dtp
->u
.p
.pending_spaces
= pos
- dtp
->u
.p
.max_pos
+ 1;
1613 read_x (dtp
, f
->u
.n
);
1618 consume_data_flag
= 0;
1620 if (f
->format
== FMT_TL
)
1622 /* Handle the special case when no bytes have been used yet.
1623 Cannot go below zero. */
1624 if (bytes_used
== 0)
1626 dtp
->u
.p
.pending_spaces
-= f
->u
.n
;
1627 dtp
->u
.p
.skips
-= f
->u
.n
;
1628 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
< 0 ? 0 : dtp
->u
.p
.skips
;
1631 pos
= bytes_used
- f
->u
.n
;
1636 /* Standard 10.6.1.1: excessive left tabbing is reset to the
1637 left tab limit. We do not check if the position has gone
1638 beyond the end of record because a subsequent tab could
1639 bring us back again. */
1640 pos
= pos
< 0 ? 0 : pos
;
1642 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
+ pos
- bytes_used
;
1643 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
1644 + pos
- dtp
->u
.p
.max_pos
;
1645 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
< 0
1646 ? 0 : dtp
->u
.p
.pending_spaces
;
1647 if (dtp
->u
.p
.skips
== 0)
1650 /* Adjust everything for end-of-record condition */
1651 if (dtp
->u
.p
.sf_seen_eor
&& !is_internal_unit (dtp
))
1653 dtp
->u
.p
.current_unit
->bytes_left
-= dtp
->u
.p
.sf_seen_eor
;
1654 dtp
->u
.p
.skips
-= dtp
->u
.p
.sf_seen_eor
;
1656 if (dtp
->u
.p
.pending_spaces
== 0)
1657 dtp
->u
.p
.sf_seen_eor
= 0;
1659 if (dtp
->u
.p
.skips
< 0)
1661 if (is_internal_unit (dtp
))
1662 sseek (dtp
->u
.p
.current_unit
->s
, dtp
->u
.p
.skips
, SEEK_CUR
);
1664 fbuf_seek (dtp
->u
.p
.current_unit
, dtp
->u
.p
.skips
, SEEK_CUR
);
1665 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) dtp
->u
.p
.skips
;
1666 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1669 read_x (dtp
, dtp
->u
.p
.skips
);
1673 consume_data_flag
= 0;
1674 dtp
->u
.p
.sign_status
= SIGN_S
;
1678 consume_data_flag
= 0;
1679 dtp
->u
.p
.sign_status
= SIGN_SS
;
1683 consume_data_flag
= 0;
1684 dtp
->u
.p
.sign_status
= SIGN_SP
;
1688 consume_data_flag
= 0 ;
1689 dtp
->u
.p
.blank_status
= BLANK_NULL
;
1693 consume_data_flag
= 0;
1694 dtp
->u
.p
.blank_status
= BLANK_ZERO
;
1698 consume_data_flag
= 0;
1699 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_COMMA
;
1703 consume_data_flag
= 0;
1704 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_POINT
;
1708 consume_data_flag
= 0;
1709 dtp
->u
.p
.current_unit
->round_status
= ROUND_COMPATIBLE
;
1713 consume_data_flag
= 0;
1714 dtp
->u
.p
.current_unit
->round_status
= ROUND_DOWN
;
1718 consume_data_flag
= 0;
1719 dtp
->u
.p
.current_unit
->round_status
= ROUND_NEAREST
;
1723 consume_data_flag
= 0;
1724 dtp
->u
.p
.current_unit
->round_status
= ROUND_PROCDEFINED
;
1728 consume_data_flag
= 0;
1729 dtp
->u
.p
.current_unit
->round_status
= ROUND_UP
;
1733 consume_data_flag
= 0;
1734 dtp
->u
.p
.current_unit
->round_status
= ROUND_ZERO
;
1738 consume_data_flag
= 0;
1739 dtp
->u
.p
.scale_factor
= f
->u
.k
;
1743 consume_data_flag
= 0;
1744 dtp
->u
.p
.seen_dollar
= 1;
1748 consume_data_flag
= 0;
1749 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1750 next_record (dtp
, 0);
1754 /* A colon descriptor causes us to exit this loop (in
1755 particular preventing another / descriptor from being
1756 processed) unless there is another data item to be
1758 consume_data_flag
= 0;
1764 internal_error (&dtp
->common
, "Bad format node");
1767 /* Adjust the item count and data pointer. */
1769 if ((consume_data_flag
> 0) && (n
> 0))
1772 p
= ((char *) p
) + size
;
1777 pos
= (int)(dtp
->u
.p
.current_unit
->recl
- dtp
->u
.p
.current_unit
->bytes_left
);
1778 dtp
->u
.p
.max_pos
= (dtp
->u
.p
.max_pos
> pos
) ? dtp
->u
.p
.max_pos
: pos
;
1783 /* Come here when we need a data descriptor but don't have one. We
1784 push the current format node back onto the input, then return and
1785 let the user program call us back with the data. */
1787 unget_format (dtp
, f
);
1792 formatted_transfer_scalar_write (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1795 int pos
, bytes_used
;
1799 int consume_data_flag
;
1801 /* Change a complex data item into a pair of reals. */
1803 n
= (p
== NULL
) ? 0 : ((type
!= BT_COMPLEX
) ? 1 : 2);
1804 if (type
== BT_COMPLEX
)
1810 /* If there's an EOR condition, we simulate finalizing the transfer
1811 by doing nothing. */
1812 if (dtp
->u
.p
.eor_condition
)
1815 /* Set this flag so that commas in reads cause the read to complete before
1816 the entire field has been read. The next read field will start right after
1817 the comma in the stream. (Set to 0 for character reads). */
1818 dtp
->u
.p
.sf_read_comma
=
1819 dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
? 0 : 1;
1823 /* If reversion has occurred and there is another real data item,
1824 then we have to move to the next record. */
1825 if (dtp
->u
.p
.reversion_flag
&& n
> 0)
1827 dtp
->u
.p
.reversion_flag
= 0;
1828 next_record (dtp
, 0);
1831 consume_data_flag
= 1;
1832 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1835 f
= next_format (dtp
);
1838 /* No data descriptors left. */
1839 if (unlikely (n
> 0))
1840 generate_error (&dtp
->common
, LIBERROR_FORMAT
,
1841 "Insufficient data descriptors in format after reversion");
1845 /* Now discharge T, TR and X movements to the right. This is delayed
1846 until a data producing format to suppress trailing spaces. */
1849 if (dtp
->u
.p
.mode
== WRITING
&& dtp
->u
.p
.skips
!= 0
1850 && ((n
>0 && ( t
== FMT_I
|| t
== FMT_B
|| t
== FMT_O
1851 || t
== FMT_Z
|| t
== FMT_F
|| t
== FMT_E
1852 || t
== FMT_EN
|| t
== FMT_ES
|| t
== FMT_G
1853 || t
== FMT_L
|| t
== FMT_A
|| t
== FMT_D
1855 || t
== FMT_STRING
))
1857 if (dtp
->u
.p
.skips
> 0)
1860 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
1861 tmp
= (int)(dtp
->u
.p
.current_unit
->recl
1862 - dtp
->u
.p
.current_unit
->bytes_left
);
1864 dtp
->u
.p
.max_pos
> tmp
? dtp
->u
.p
.max_pos
: tmp
;
1867 if (dtp
->u
.p
.skips
< 0)
1869 if (is_internal_unit (dtp
))
1870 sseek (dtp
->u
.p
.current_unit
->s
, dtp
->u
.p
.skips
, SEEK_CUR
);
1872 fbuf_seek (dtp
->u
.p
.current_unit
, dtp
->u
.p
.skips
, SEEK_CUR
);
1873 dtp
->u
.p
.current_unit
->bytes_left
-= (gfc_offset
) dtp
->u
.p
.skips
;
1875 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
1878 bytes_used
= (int)(dtp
->u
.p
.current_unit
->recl
1879 - dtp
->u
.p
.current_unit
->bytes_left
);
1881 if (is_stream_io(dtp
))
1889 if (require_type (dtp
, BT_INTEGER
, type
, f
))
1891 write_i (dtp
, f
, p
, kind
);
1897 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1898 && require_numeric_type (dtp
, type
, f
))
1900 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1901 && require_type (dtp
, BT_INTEGER
, type
, f
))
1903 write_b (dtp
, f
, p
, kind
);
1909 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1910 && require_numeric_type (dtp
, type
, f
))
1912 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1913 && require_type (dtp
, BT_INTEGER
, type
, f
))
1915 write_o (dtp
, f
, p
, kind
);
1921 if (!(compile_options
.allow_std
& GFC_STD_GNU
)
1922 && require_numeric_type (dtp
, type
, f
))
1924 if (!(compile_options
.allow_std
& GFC_STD_F2008
)
1925 && require_type (dtp
, BT_INTEGER
, type
, f
))
1927 write_z (dtp
, f
, p
, kind
);
1934 /* It is possible to have FMT_A with something not BT_CHARACTER such
1935 as when writing out hollerith strings, so check both type
1936 and kind before calling wide character routines. */
1937 if (type
== BT_CHARACTER
&& kind
== 4)
1938 write_a_char4 (dtp
, f
, p
, size
);
1940 write_a (dtp
, f
, p
, size
);
1946 write_l (dtp
, f
, p
, kind
);
1952 if (require_type (dtp
, BT_REAL
, type
, f
))
1954 write_d (dtp
, f
, p
, kind
);
1960 int unit
= dtp
->u
.p
.current_unit
->unit_number
;
1962 char tmp_iomsg
[IOMSG_LEN
] = "";
1964 gfc_charlen_type child_iomsg_len
;
1966 int *child_iostat
= NULL
;
1968 gfc_charlen_type iotype_len
= f
->u
.udf
.string_len
;
1970 /* Build the iotype string. */
1971 if (iotype_len
== 0)
1977 iotype
= get_dt_format (f
->u
.udf
.string
, &iotype_len
);
1979 /* Set iostat, intent(out). */
1981 child_iostat
= (dtp
->common
.flags
& IOPARM_HAS_IOSTAT
) ?
1982 dtp
->common
.iostat
: &noiostat
;
1984 /* Set iomsg, intent(inout). */
1985 if (dtp
->common
.flags
& IOPARM_HAS_IOMSG
)
1987 child_iomsg
= dtp
->common
.iomsg
;
1988 child_iomsg_len
= dtp
->common
.iomsg_len
;
1992 child_iomsg
= tmp_iomsg
;
1993 child_iomsg_len
= IOMSG_LEN
;
1996 if (check_dtio_proc (dtp
, f
))
1999 /* Call the user defined formatted WRITE procedure. */
2000 dtp
->u
.p
.current_unit
->child_dtio
++;
2002 dtp
->u
.p
.fdtio_ptr (p
, &unit
, iotype
, f
->u
.udf
.vlist
,
2003 child_iostat
, child_iomsg
,
2004 iotype_len
, child_iomsg_len
);
2005 dtp
->u
.p
.current_unit
->child_dtio
--;
2007 if (f
->u
.udf
.string_len
!= 0)
2009 /* Note: vlist is freed in free_format_data. */
2015 if (require_type (dtp
, BT_REAL
, type
, f
))
2017 write_e (dtp
, f
, p
, kind
);
2023 if (require_type (dtp
, BT_REAL
, type
, f
))
2025 write_en (dtp
, f
, p
, kind
);
2031 if (require_type (dtp
, BT_REAL
, type
, f
))
2033 write_es (dtp
, f
, p
, kind
);
2039 if (require_type (dtp
, BT_REAL
, type
, f
))
2041 write_f (dtp
, f
, p
, kind
);
2050 write_i (dtp
, f
, p
, kind
);
2053 write_l (dtp
, f
, p
, kind
);
2057 write_a_char4 (dtp
, f
, p
, size
);
2059 write_a (dtp
, f
, p
, size
);
2062 if (f
->u
.real
.w
== 0)
2063 write_real_g0 (dtp
, p
, kind
, f
->u
.real
.d
);
2065 write_d (dtp
, f
, p
, kind
);
2068 internal_error (&dtp
->common
,
2069 "formatted_transfer(): Bad type");
2074 consume_data_flag
= 0;
2075 write_constant_string (dtp
, f
);
2078 /* Format codes that don't transfer data. */
2081 consume_data_flag
= 0;
2083 dtp
->u
.p
.skips
+= f
->u
.n
;
2084 pos
= bytes_used
+ dtp
->u
.p
.skips
- 1;
2085 dtp
->u
.p
.pending_spaces
= pos
- dtp
->u
.p
.max_pos
+ 1;
2086 /* Writes occur just before the switch on f->format, above, so
2087 that trailing blanks are suppressed, unless we are doing a
2088 non-advancing write in which case we want to output the blanks
2090 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
2092 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
2093 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
2099 consume_data_flag
= 0;
2101 if (f
->format
== FMT_TL
)
2104 /* Handle the special case when no bytes have been used yet.
2105 Cannot go below zero. */
2106 if (bytes_used
== 0)
2108 dtp
->u
.p
.pending_spaces
-= f
->u
.n
;
2109 dtp
->u
.p
.skips
-= f
->u
.n
;
2110 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
< 0 ? 0 : dtp
->u
.p
.skips
;
2113 pos
= bytes_used
- f
->u
.n
;
2116 pos
= f
->u
.n
- dtp
->u
.p
.pending_spaces
- 1;
2118 /* Standard 10.6.1.1: excessive left tabbing is reset to the
2119 left tab limit. We do not check if the position has gone
2120 beyond the end of record because a subsequent tab could
2121 bring us back again. */
2122 pos
= pos
< 0 ? 0 : pos
;
2124 dtp
->u
.p
.skips
= dtp
->u
.p
.skips
+ pos
- bytes_used
;
2125 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
2126 + pos
- dtp
->u
.p
.max_pos
;
2127 dtp
->u
.p
.pending_spaces
= dtp
->u
.p
.pending_spaces
< 0
2128 ? 0 : dtp
->u
.p
.pending_spaces
;
2132 consume_data_flag
= 0;
2133 dtp
->u
.p
.sign_status
= SIGN_S
;
2137 consume_data_flag
= 0;
2138 dtp
->u
.p
.sign_status
= SIGN_SS
;
2142 consume_data_flag
= 0;
2143 dtp
->u
.p
.sign_status
= SIGN_SP
;
2147 consume_data_flag
= 0 ;
2148 dtp
->u
.p
.blank_status
= BLANK_NULL
;
2152 consume_data_flag
= 0;
2153 dtp
->u
.p
.blank_status
= BLANK_ZERO
;
2157 consume_data_flag
= 0;
2158 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_COMMA
;
2162 consume_data_flag
= 0;
2163 dtp
->u
.p
.current_unit
->decimal_status
= DECIMAL_POINT
;
2167 consume_data_flag
= 0;
2168 dtp
->u
.p
.current_unit
->round_status
= ROUND_COMPATIBLE
;
2172 consume_data_flag
= 0;
2173 dtp
->u
.p
.current_unit
->round_status
= ROUND_DOWN
;
2177 consume_data_flag
= 0;
2178 dtp
->u
.p
.current_unit
->round_status
= ROUND_NEAREST
;
2182 consume_data_flag
= 0;
2183 dtp
->u
.p
.current_unit
->round_status
= ROUND_PROCDEFINED
;
2187 consume_data_flag
= 0;
2188 dtp
->u
.p
.current_unit
->round_status
= ROUND_UP
;
2192 consume_data_flag
= 0;
2193 dtp
->u
.p
.current_unit
->round_status
= ROUND_ZERO
;
2197 consume_data_flag
= 0;
2198 dtp
->u
.p
.scale_factor
= f
->u
.k
;
2202 consume_data_flag
= 0;
2203 dtp
->u
.p
.seen_dollar
= 1;
2207 consume_data_flag
= 0;
2208 dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
2209 next_record (dtp
, 0);
2213 /* A colon descriptor causes us to exit this loop (in
2214 particular preventing another / descriptor from being
2215 processed) unless there is another data item to be
2217 consume_data_flag
= 0;
2223 internal_error (&dtp
->common
, "Bad format node");
2226 /* Adjust the item count and data pointer. */
2228 if ((consume_data_flag
> 0) && (n
> 0))
2231 p
= ((char *) p
) + size
;
2234 pos
= (int)(dtp
->u
.p
.current_unit
->recl
- dtp
->u
.p
.current_unit
->bytes_left
);
2235 dtp
->u
.p
.max_pos
= (dtp
->u
.p
.max_pos
> pos
) ? dtp
->u
.p
.max_pos
: pos
;
2240 /* Come here when we need a data descriptor but don't have one. We
2241 push the current format node back onto the input, then return and
2242 let the user program call us back with the data. */
2244 unget_format (dtp
, f
);
2247 /* This function is first called from data_init_transfer to initiate the loop
2248 over each item in the format, transferring data as required. Subsequent
2249 calls to this function occur for each data item foound in the READ/WRITE
2250 statement. The item_count is incremented for each call. Since the first
2251 call is from data_transfer_init, the item_count is always one greater than
2252 the actual count number of the item being transferred. */
2255 formatted_transfer (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
2256 size_t size
, size_t nelems
)
2262 size_t stride
= type
== BT_CHARACTER
?
2263 size
* GFC_SIZE_OF_CHAR_KIND(kind
) : size
;
2264 if (dtp
->u
.p
.mode
== READING
)
2266 /* Big loop over all the elements. */
2267 for (elem
= 0; elem
< nelems
; elem
++)
2269 dtp
->u
.p
.item_count
++;
2270 formatted_transfer_scalar_read (dtp
, type
, tmp
+ stride
*elem
, kind
, size
);
2275 /* Big loop over all the elements. */
2276 for (elem
= 0; elem
< nelems
; elem
++)
2278 dtp
->u
.p
.item_count
++;
2279 formatted_transfer_scalar_write (dtp
, type
, tmp
+ stride
*elem
, kind
, size
);
2285 /* Data transfer entry points. The type of the data entity is
2286 implicit in the subroutine call. This prevents us from having to
2287 share a common enum with the compiler. */
2290 transfer_integer (st_parameter_dt
*dtp
, void *p
, int kind
)
2292 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2294 dtp
->u
.p
.transfer (dtp
, BT_INTEGER
, p
, kind
, kind
, 1);
2298 transfer_integer_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2300 transfer_integer (dtp
, p
, kind
);
2304 transfer_real (st_parameter_dt
*dtp
, void *p
, int kind
)
2307 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2309 size
= size_from_real_kind (kind
);
2310 dtp
->u
.p
.transfer (dtp
, BT_REAL
, p
, kind
, size
, 1);
2314 transfer_real_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2316 transfer_real (dtp
, p
, kind
);
2320 transfer_logical (st_parameter_dt
*dtp
, void *p
, int kind
)
2322 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2324 dtp
->u
.p
.transfer (dtp
, BT_LOGICAL
, p
, kind
, kind
, 1);
2328 transfer_logical_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2330 transfer_logical (dtp
, p
, kind
);
2334 transfer_character (st_parameter_dt
*dtp
, void *p
, int len
)
2336 static char *empty_string
[0];
2338 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2341 /* Strings of zero length can have p == NULL, which confuses the
2342 transfer routines into thinking we need more data elements. To avoid
2343 this, we give them a nice pointer. */
2344 if (len
== 0 && p
== NULL
)
2347 /* Set kind here to 1. */
2348 dtp
->u
.p
.transfer (dtp
, BT_CHARACTER
, p
, 1, len
, 1);
2352 transfer_character_write (st_parameter_dt
*dtp
, void *p
, int len
)
2354 transfer_character (dtp
, p
, len
);
2358 transfer_character_wide (st_parameter_dt
*dtp
, void *p
, int len
, int kind
)
2360 static char *empty_string
[0];
2362 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2365 /* Strings of zero length can have p == NULL, which confuses the
2366 transfer routines into thinking we need more data elements. To avoid
2367 this, we give them a nice pointer. */
2368 if (len
== 0 && p
== NULL
)
2371 /* Here we pass the actual kind value. */
2372 dtp
->u
.p
.transfer (dtp
, BT_CHARACTER
, p
, kind
, len
, 1);
2376 transfer_character_wide_write (st_parameter_dt
*dtp
, void *p
, int len
, int kind
)
2378 transfer_character_wide (dtp
, p
, len
, kind
);
2382 transfer_complex (st_parameter_dt
*dtp
, void *p
, int kind
)
2385 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2387 size
= size_from_complex_kind (kind
);
2388 dtp
->u
.p
.transfer (dtp
, BT_COMPLEX
, p
, kind
, size
, 1);
2392 transfer_complex_write (st_parameter_dt
*dtp
, void *p
, int kind
)
2394 transfer_complex (dtp
, p
, kind
);
2398 transfer_array (st_parameter_dt
*dtp
, gfc_array_char
*desc
, int kind
,
2399 gfc_charlen_type charlen
)
2401 index_type count
[GFC_MAX_DIMENSIONS
];
2402 index_type extent
[GFC_MAX_DIMENSIONS
];
2403 index_type stride
[GFC_MAX_DIMENSIONS
];
2404 index_type stride0
, rank
, size
, n
;
2409 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2412 iotype
= (bt
) GFC_DESCRIPTOR_TYPE (desc
);
2413 size
= iotype
== BT_CHARACTER
? charlen
: GFC_DESCRIPTOR_SIZE (desc
);
2415 rank
= GFC_DESCRIPTOR_RANK (desc
);
2416 for (n
= 0; n
< rank
; n
++)
2419 stride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(desc
,n
);
2420 extent
[n
] = GFC_DESCRIPTOR_EXTENT(desc
,n
);
2422 /* If the extent of even one dimension is zero, then the entire
2423 array section contains zero elements, so we return after writing
2424 a zero array record. */
2429 dtp
->u
.p
.transfer (dtp
, iotype
, data
, kind
, size
, tsize
);
2434 stride0
= stride
[0];
2436 /* If the innermost dimension has a stride of 1, we can do the transfer
2437 in contiguous chunks. */
2438 if (stride0
== size
)
2443 data
= GFC_DESCRIPTOR_DATA (desc
);
2447 dtp
->u
.p
.transfer (dtp
, iotype
, data
, kind
, size
, tsize
);
2448 data
+= stride0
* tsize
;
2451 while (count
[n
] == extent
[n
])
2454 data
-= stride
[n
] * extent
[n
];
2471 transfer_array_write (st_parameter_dt
*dtp
, gfc_array_char
*desc
, int kind
,
2472 gfc_charlen_type charlen
)
2474 transfer_array (dtp
, desc
, kind
, charlen
);
2478 /* User defined input/output iomsg. */
2480 #define IOMSG_LEN 256
2483 transfer_derived (st_parameter_dt
*parent
, void *dtio_source
, void *dtio_proc
)
2485 if (parent
->u
.p
.current_unit
)
2487 if (parent
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
2488 parent
->u
.p
.ufdtio_ptr
= (unformatted_dtio
) dtio_proc
;
2490 parent
->u
.p
.fdtio_ptr
= (formatted_dtio
) dtio_proc
;
2492 parent
->u
.p
.transfer (parent
, BT_CLASS
, dtio_source
, 0, 0, 1);
2496 /* Preposition a sequential unformatted file while reading. */
2499 us_read (st_parameter_dt
*dtp
, int continued
)
2506 if (compile_options
.record_marker
== 0)
2507 n
= sizeof (GFC_INTEGER_4
);
2509 n
= compile_options
.record_marker
;
2511 nr
= sread (dtp
->u
.p
.current_unit
->s
, &i
, n
);
2512 if (unlikely (nr
< 0))
2514 generate_error (&dtp
->common
, LIBERROR_BAD_US
, NULL
);
2520 return; /* end of file */
2522 else if (unlikely (n
!= nr
))
2524 generate_error (&dtp
->common
, LIBERROR_BAD_US
, NULL
);
2528 /* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here. */
2529 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
))
2533 case sizeof(GFC_INTEGER_4
):
2534 memcpy (&i4
, &i
, sizeof (i4
));
2538 case sizeof(GFC_INTEGER_8
):
2539 memcpy (&i8
, &i
, sizeof (i8
));
2544 runtime_error ("Illegal value for record marker");
2554 case sizeof(GFC_INTEGER_4
):
2555 memcpy (&u32
, &i
, sizeof (u32
));
2556 u32
= __builtin_bswap32 (u32
);
2557 memcpy (&i4
, &u32
, sizeof (i4
));
2561 case sizeof(GFC_INTEGER_8
):
2562 memcpy (&u64
, &i
, sizeof (u64
));
2563 u64
= __builtin_bswap64 (u64
);
2564 memcpy (&i8
, &u64
, sizeof (i8
));
2569 runtime_error ("Illegal value for record marker");
2576 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= i
;
2577 dtp
->u
.p
.current_unit
->continued
= 0;
2581 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= -i
;
2582 dtp
->u
.p
.current_unit
->continued
= 1;
2586 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
2590 /* Preposition a sequential unformatted file while writing. This
2591 amount to writing a bogus length that will be filled in later. */
2594 us_write (st_parameter_dt
*dtp
, int continued
)
2601 if (compile_options
.record_marker
== 0)
2602 nbytes
= sizeof (GFC_INTEGER_4
);
2604 nbytes
= compile_options
.record_marker
;
2606 if (swrite (dtp
->u
.p
.current_unit
->s
, &dummy
, nbytes
) != nbytes
)
2607 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
2609 /* For sequential unformatted, if RECL= was not specified in the OPEN
2610 we write until we have more bytes than can fit in the subrecord
2611 markers, then we write a new subrecord. */
2613 dtp
->u
.p
.current_unit
->bytes_left_subrecord
=
2614 dtp
->u
.p
.current_unit
->recl_subrecord
;
2615 dtp
->u
.p
.current_unit
->continued
= continued
;
2619 /* Position to the next record prior to transfer. We are assumed to
2620 be before the next record. We also calculate the bytes in the next
2624 pre_position (st_parameter_dt
*dtp
)
2626 if (dtp
->u
.p
.current_unit
->current_record
)
2627 return; /* Already positioned. */
2629 switch (current_mode (dtp
))
2631 case FORMATTED_STREAM
:
2632 case UNFORMATTED_STREAM
:
2633 /* There are no records with stream I/O. If the position was specified
2634 data_transfer_init has already positioned the file. If no position
2635 was specified, we continue from where we last left off. I.e.
2636 there is nothing to do here. */
2639 case UNFORMATTED_SEQUENTIAL
:
2640 if (dtp
->u
.p
.mode
== READING
)
2647 case FORMATTED_SEQUENTIAL
:
2648 case FORMATTED_DIRECT
:
2649 case UNFORMATTED_DIRECT
:
2650 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
2654 dtp
->u
.p
.current_unit
->current_record
= 1;
2658 /* Initialize things for a data transfer. This code is common for
2659 both reading and writing. */
2662 data_transfer_init (st_parameter_dt
*dtp
, int read_flag
)
2664 unit_flags u_flags
; /* Used for creating a unit if needed. */
2665 GFC_INTEGER_4 cf
= dtp
->common
.flags
;
2666 namelist_info
*ionml
;
2668 ionml
= ((cf
& IOPARM_DT_IONML_SET
) != 0) ? dtp
->u
.p
.ionml
: NULL
;
2670 memset (&dtp
->u
.p
, 0, sizeof (dtp
->u
.p
));
2672 dtp
->u
.p
.ionml
= ionml
;
2673 dtp
->u
.p
.mode
= read_flag
? READING
: WRITING
;
2675 dtp
->u
.p
.cc
.len
= 0;
2677 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
2680 dtp
->u
.p
.current_unit
= get_unit (dtp
, 1);
2682 if (dtp
->u
.p
.current_unit
== NULL
)
2684 /* This means we tried to access an external unit < 0 without
2685 having opened it first with NEWUNIT=. */
2686 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
2687 "Unit number is negative and unit was not already "
2688 "opened with OPEN(NEWUNIT=...)");
2691 else if (dtp
->u
.p
.current_unit
->s
== NULL
)
2692 { /* Open the unit with some default flags. */
2693 st_parameter_open opp
;
2696 memset (&u_flags
, '\0', sizeof (u_flags
));
2697 u_flags
.access
= ACCESS_SEQUENTIAL
;
2698 u_flags
.action
= ACTION_READWRITE
;
2700 /* Is it unformatted? */
2701 if (!(cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
2702 | IOPARM_DT_IONML_SET
)))
2703 u_flags
.form
= FORM_UNFORMATTED
;
2705 u_flags
.form
= FORM_UNSPECIFIED
;
2707 u_flags
.delim
= DELIM_UNSPECIFIED
;
2708 u_flags
.blank
= BLANK_UNSPECIFIED
;
2709 u_flags
.pad
= PAD_UNSPECIFIED
;
2710 u_flags
.decimal
= DECIMAL_UNSPECIFIED
;
2711 u_flags
.encoding
= ENCODING_UNSPECIFIED
;
2712 u_flags
.async
= ASYNC_UNSPECIFIED
;
2713 u_flags
.round
= ROUND_UNSPECIFIED
;
2714 u_flags
.sign
= SIGN_UNSPECIFIED
;
2715 u_flags
.share
= SHARE_UNSPECIFIED
;
2716 u_flags
.cc
= CC_UNSPECIFIED
;
2717 u_flags
.readonly
= 0;
2719 u_flags
.status
= STATUS_UNKNOWN
;
2721 conv
= get_unformatted_convert (dtp
->common
.unit
);
2723 if (conv
== GFC_CONVERT_NONE
)
2724 conv
= compile_options
.convert
;
2728 case GFC_CONVERT_NATIVE
:
2729 case GFC_CONVERT_SWAP
:
2732 case GFC_CONVERT_BIG
:
2733 conv
= __BYTE_ORDER__
== __ORDER_BIG_ENDIAN__
? GFC_CONVERT_NATIVE
: GFC_CONVERT_SWAP
;
2736 case GFC_CONVERT_LITTLE
:
2737 conv
= __BYTE_ORDER__
== __ORDER_BIG_ENDIAN__
? GFC_CONVERT_SWAP
: GFC_CONVERT_NATIVE
;
2741 internal_error (&opp
.common
, "Illegal value for CONVERT");
2745 u_flags
.convert
= conv
;
2747 opp
.common
= dtp
->common
;
2748 opp
.common
.flags
&= IOPARM_COMMON_MASK
;
2749 dtp
->u
.p
.current_unit
= new_unit (&opp
, dtp
->u
.p
.current_unit
, &u_flags
);
2750 dtp
->common
.flags
&= ~IOPARM_COMMON_MASK
;
2751 dtp
->common
.flags
|= (opp
.common
.flags
& IOPARM_COMMON_MASK
);
2752 if (dtp
->u
.p
.current_unit
== NULL
)
2756 if (dtp
->u
.p
.current_unit
->child_dtio
== 0)
2758 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0)
2760 dtp
->u
.p
.current_unit
->has_size
= true;
2761 /* Initialize the count. */
2762 dtp
->u
.p
.current_unit
->size_used
= 0;
2765 dtp
->u
.p
.current_unit
->has_size
= false;
2768 /* Check the action. */
2770 if (read_flag
&& dtp
->u
.p
.current_unit
->flags
.action
== ACTION_WRITE
)
2772 generate_error (&dtp
->common
, LIBERROR_BAD_ACTION
,
2773 "Cannot read from file opened for WRITE");
2777 if (!read_flag
&& dtp
->u
.p
.current_unit
->flags
.action
== ACTION_READ
)
2779 generate_error (&dtp
->common
, LIBERROR_BAD_ACTION
,
2780 "Cannot write to file opened for READ");
2784 dtp
->u
.p
.first_item
= 1;
2786 /* Check the format. */
2788 if ((cf
& IOPARM_DT_HAS_FORMAT
) != 0)
2791 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
2792 && (cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
))
2795 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2796 "Format present for UNFORMATTED data transfer");
2800 if ((cf
& IOPARM_DT_HAS_NAMELIST_NAME
) != 0 && dtp
->u
.p
.ionml
!= NULL
)
2802 if ((cf
& IOPARM_DT_HAS_FORMAT
) != 0)
2804 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2805 "A format cannot be specified with a namelist");
2809 else if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
&&
2810 !(cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
)))
2812 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2813 "Missing format for FORMATTED data transfer");
2817 if (is_internal_unit (dtp
)
2818 && dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
2820 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2821 "Internal file cannot be accessed by UNFORMATTED "
2826 /* Check the record or position number. */
2828 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
2829 && (cf
& IOPARM_DT_HAS_REC
) == 0)
2831 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2832 "Direct access data transfer requires record number");
2836 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
2838 if ((cf
& IOPARM_DT_HAS_REC
) != 0)
2840 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2841 "Record number not allowed for sequential access "
2846 if (compile_options
.warn_std
&&
2847 dtp
->u
.p
.current_unit
->endfile
== AFTER_ENDFILE
)
2849 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2850 "Sequential READ or WRITE not allowed after "
2851 "EOF marker, possibly use REWIND or BACKSPACE");
2856 /* Process the ADVANCE option. */
2858 dtp
->u
.p
.advance_status
2859 = !(cf
& IOPARM_DT_HAS_ADVANCE
) ? ADVANCE_UNSPECIFIED
:
2860 find_option (&dtp
->common
, dtp
->advance
, dtp
->advance_len
, advance_opt
,
2861 "Bad ADVANCE parameter in data transfer statement");
2863 if (dtp
->u
.p
.advance_status
!= ADVANCE_UNSPECIFIED
)
2865 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
2867 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2868 "ADVANCE specification conflicts with sequential "
2873 if (is_internal_unit (dtp
))
2875 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2876 "ADVANCE specification conflicts with internal file");
2880 if ((cf
& (IOPARM_DT_HAS_FORMAT
| IOPARM_DT_LIST_FORMAT
))
2881 != IOPARM_DT_HAS_FORMAT
)
2883 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2884 "ADVANCE specification requires an explicit format");
2889 /* Child IO is non-advancing and any ADVANCE= specifier is ignored.
2891 if (dtp
->u
.p
.current_unit
->child_dtio
> 0)
2892 dtp
->u
.p
.advance_status
= ADVANCE_NO
;
2896 dtp
->u
.p
.current_unit
->previous_nonadvancing_write
= 0;
2898 if ((cf
& IOPARM_EOR
) != 0 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
2900 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2901 "EOR specification requires an ADVANCE specification "
2906 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0
2907 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
2909 generate_error (&dtp
->common
, LIBERROR_MISSING_OPTION
,
2910 "SIZE specification requires an ADVANCE "
2911 "specification of NO");
2916 { /* Write constraints. */
2917 if ((cf
& IOPARM_END
) != 0)
2919 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2920 "END specification cannot appear in a write "
2925 if ((cf
& IOPARM_EOR
) != 0)
2927 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2928 "EOR specification cannot appear in a write "
2933 if ((cf
& IOPARM_DT_HAS_SIZE
) != 0)
2935 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
2936 "SIZE specification cannot appear in a write "
2942 if (dtp
->u
.p
.advance_status
== ADVANCE_UNSPECIFIED
)
2943 dtp
->u
.p
.advance_status
= ADVANCE_YES
;
2945 /* Check the decimal mode. */
2946 dtp
->u
.p
.current_unit
->decimal_status
2947 = !(cf
& IOPARM_DT_HAS_DECIMAL
) ? DECIMAL_UNSPECIFIED
:
2948 find_option (&dtp
->common
, dtp
->decimal
, dtp
->decimal_len
,
2949 decimal_opt
, "Bad DECIMAL parameter in data transfer "
2952 if (dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_UNSPECIFIED
)
2953 dtp
->u
.p
.current_unit
->decimal_status
= dtp
->u
.p
.current_unit
->flags
.decimal
;
2955 /* Check the round mode. */
2956 dtp
->u
.p
.current_unit
->round_status
2957 = !(cf
& IOPARM_DT_HAS_ROUND
) ? ROUND_UNSPECIFIED
:
2958 find_option (&dtp
->common
, dtp
->round
, dtp
->round_len
,
2959 round_opt
, "Bad ROUND parameter in data transfer "
2962 if (dtp
->u
.p
.current_unit
->round_status
== ROUND_UNSPECIFIED
)
2963 dtp
->u
.p
.current_unit
->round_status
= dtp
->u
.p
.current_unit
->flags
.round
;
2965 /* Check the sign mode. */
2966 dtp
->u
.p
.sign_status
2967 = !(cf
& IOPARM_DT_HAS_SIGN
) ? SIGN_UNSPECIFIED
:
2968 find_option (&dtp
->common
, dtp
->sign
, dtp
->sign_len
, sign_opt
,
2969 "Bad SIGN parameter in data transfer statement");
2971 if (dtp
->u
.p
.sign_status
== SIGN_UNSPECIFIED
)
2972 dtp
->u
.p
.sign_status
= dtp
->u
.p
.current_unit
->flags
.sign
;
2974 /* Check the blank mode. */
2975 dtp
->u
.p
.blank_status
2976 = !(cf
& IOPARM_DT_HAS_BLANK
) ? BLANK_UNSPECIFIED
:
2977 find_option (&dtp
->common
, dtp
->blank
, dtp
->blank_len
,
2979 "Bad BLANK parameter in data transfer statement");
2981 if (dtp
->u
.p
.blank_status
== BLANK_UNSPECIFIED
)
2982 dtp
->u
.p
.blank_status
= dtp
->u
.p
.current_unit
->flags
.blank
;
2984 /* Check the delim mode. */
2985 dtp
->u
.p
.current_unit
->delim_status
2986 = !(cf
& IOPARM_DT_HAS_DELIM
) ? DELIM_UNSPECIFIED
:
2987 find_option (&dtp
->common
, dtp
->delim
, dtp
->delim_len
,
2988 delim_opt
, "Bad DELIM parameter in data transfer statement");
2990 if (dtp
->u
.p
.current_unit
->delim_status
== DELIM_UNSPECIFIED
)
2992 if (ionml
&& dtp
->u
.p
.current_unit
->flags
.delim
== DELIM_UNSPECIFIED
)
2993 dtp
->u
.p
.current_unit
->delim_status
= DELIM_QUOTE
;
2995 dtp
->u
.p
.current_unit
->delim_status
= dtp
->u
.p
.current_unit
->flags
.delim
;
2998 /* Check the pad mode. */
2999 dtp
->u
.p
.current_unit
->pad_status
3000 = !(cf
& IOPARM_DT_HAS_PAD
) ? PAD_UNSPECIFIED
:
3001 find_option (&dtp
->common
, dtp
->pad
, dtp
->pad_len
, pad_opt
,
3002 "Bad PAD parameter in data transfer statement");
3004 if (dtp
->u
.p
.current_unit
->pad_status
== PAD_UNSPECIFIED
)
3005 dtp
->u
.p
.current_unit
->pad_status
= dtp
->u
.p
.current_unit
->flags
.pad
;
3007 /* Check to see if we might be reading what we wrote before */
3009 if (dtp
->u
.p
.mode
!= dtp
->u
.p
.current_unit
->mode
3010 && !is_internal_unit (dtp
))
3012 int pos
= fbuf_reset (dtp
->u
.p
.current_unit
);
3014 sseek (dtp
->u
.p
.current_unit
->s
, pos
, SEEK_CUR
);
3015 sflush(dtp
->u
.p
.current_unit
->s
);
3018 /* Check the POS= specifier: that it is in range and that it is used with a
3019 unit that has been connected for STREAM access. F2003 9.5.1.10. */
3021 if (((cf
& IOPARM_DT_HAS_POS
) != 0))
3023 if (is_stream_io (dtp
))
3028 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3029 "POS=specifier must be positive");
3033 if (dtp
->pos
>= dtp
->u
.p
.current_unit
->maxrec
)
3035 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3036 "POS=specifier too large");
3040 dtp
->rec
= dtp
->pos
;
3042 if (dtp
->u
.p
.mode
== READING
)
3044 /* Reset the endfile flag; if we hit EOF during reading
3045 we'll set the flag and generate an error at that point
3046 rather than worrying about it here. */
3047 dtp
->u
.p
.current_unit
->endfile
= NO_ENDFILE
;
3050 if (dtp
->pos
!= dtp
->u
.p
.current_unit
->strm_pos
)
3052 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3053 if (sseek (dtp
->u
.p
.current_unit
->s
, dtp
->pos
- 1, SEEK_SET
) < 0)
3055 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3058 dtp
->u
.p
.current_unit
->strm_pos
= dtp
->pos
;
3063 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3064 "POS=specifier not allowed, "
3065 "Try OPEN with ACCESS='stream'");
3071 /* Sanity checks on the record number. */
3072 if ((cf
& IOPARM_DT_HAS_REC
) != 0)
3076 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3077 "Record number must be positive");
3081 if (dtp
->rec
>= dtp
->u
.p
.current_unit
->maxrec
)
3083 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3084 "Record number too large");
3088 /* Make sure format buffer is reset. */
3089 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
)
3090 fbuf_reset (dtp
->u
.p
.current_unit
);
3093 /* Check whether the record exists to be read. Only
3094 a partial record needs to exist. */
3096 if (dtp
->u
.p
.mode
== READING
&& (dtp
->rec
- 1)
3097 * dtp
->u
.p
.current_unit
->recl
>= ssize (dtp
->u
.p
.current_unit
->s
))
3099 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3100 "Non-existing record number");
3104 /* Position the file. */
3105 if (sseek (dtp
->u
.p
.current_unit
->s
, (gfc_offset
) (dtp
->rec
- 1)
3106 * dtp
->u
.p
.current_unit
->recl
, SEEK_SET
) < 0)
3108 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3112 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
)
3114 generate_error (&dtp
->common
, LIBERROR_OPTION_CONFLICT
,
3115 "Record number not allowed for stream access "
3121 /* Bugware for badly written mixed C-Fortran I/O. */
3122 if (!is_internal_unit (dtp
))
3123 flush_if_preconnected(dtp
->u
.p
.current_unit
->s
);
3125 dtp
->u
.p
.current_unit
->mode
= dtp
->u
.p
.mode
;
3127 /* Set the maximum position reached from the previous I/O operation. This
3128 could be greater than zero from a previous non-advancing write. */
3129 dtp
->u
.p
.max_pos
= dtp
->u
.p
.current_unit
->saved_pos
;
3134 /* Set up the subroutine that will handle the transfers. */
3138 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
3139 dtp
->u
.p
.transfer
= unformatted_read
;
3142 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0)
3144 if (dtp
->u
.p
.current_unit
->child_dtio
== 0)
3145 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
3146 dtp
->u
.p
.transfer
= list_formatted_read
;
3149 dtp
->u
.p
.transfer
= formatted_transfer
;
3154 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_UNFORMATTED
)
3155 dtp
->u
.p
.transfer
= unformatted_write
;
3158 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0)
3159 dtp
->u
.p
.transfer
= list_formatted_write
;
3161 dtp
->u
.p
.transfer
= formatted_transfer
;
3165 /* Make sure that we don't do a read after a nonadvancing write. */
3169 if (dtp
->u
.p
.current_unit
->read_bad
&& !is_stream_io (dtp
))
3171 generate_error (&dtp
->common
, LIBERROR_BAD_OPTION
,
3172 "Cannot READ after a nonadvancing WRITE");
3178 if (dtp
->u
.p
.advance_status
== ADVANCE_YES
&& !dtp
->u
.p
.seen_dollar
)
3179 dtp
->u
.p
.current_unit
->read_bad
= 1;
3182 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
)
3184 #ifdef HAVE_USELOCALE
3185 dtp
->u
.p
.old_locale
= uselocale (c_locale
);
3187 __gthread_mutex_lock (&old_locale_lock
);
3188 if (!old_locale_ctr
++)
3190 old_locale
= setlocale (LC_NUMERIC
, NULL
);
3191 setlocale (LC_NUMERIC
, "C");
3193 __gthread_mutex_unlock (&old_locale_lock
);
3195 /* Start the data transfer if we are doing a formatted transfer. */
3196 if ((cf
& (IOPARM_DT_LIST_FORMAT
| IOPARM_DT_HAS_NAMELIST_NAME
)) == 0
3197 && dtp
->u
.p
.ionml
== NULL
)
3198 formatted_transfer (dtp
, 0, NULL
, 0, 0, 1);
3203 /* Initialize an array_loop_spec given the array descriptor. The function
3204 returns the index of the last element of the array, and also returns
3205 starting record, where the first I/O goes to (necessary in case of
3206 negative strides). */
3209 init_loop_spec (gfc_array_char
*desc
, array_loop_spec
*ls
,
3210 gfc_offset
*start_record
)
3212 int rank
= GFC_DESCRIPTOR_RANK(desc
);
3221 for (i
=0; i
<rank
; i
++)
3223 ls
[i
].idx
= GFC_DESCRIPTOR_LBOUND(desc
,i
);
3224 ls
[i
].start
= GFC_DESCRIPTOR_LBOUND(desc
,i
);
3225 ls
[i
].end
= GFC_DESCRIPTOR_UBOUND(desc
,i
);
3226 ls
[i
].step
= GFC_DESCRIPTOR_STRIDE(desc
,i
);
3227 empty
= empty
|| (GFC_DESCRIPTOR_UBOUND(desc
,i
)
3228 < GFC_DESCRIPTOR_LBOUND(desc
,i
));
3230 if (GFC_DESCRIPTOR_STRIDE(desc
,i
) > 0)
3232 index
+= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3233 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3237 index
-= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3238 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3239 *start_record
-= (GFC_DESCRIPTOR_EXTENT(desc
,i
) - 1)
3240 * GFC_DESCRIPTOR_STRIDE(desc
,i
);
3250 /* Determine the index to the next record in an internal unit array by
3251 by incrementing through the array_loop_spec. */
3254 next_array_record (st_parameter_dt
*dtp
, array_loop_spec
*ls
, int *finished
)
3262 for (i
= 0; i
< dtp
->u
.p
.current_unit
->rank
; i
++)
3267 if (ls
[i
].idx
> ls
[i
].end
)
3269 ls
[i
].idx
= ls
[i
].start
;
3275 index
= index
+ (ls
[i
].idx
- ls
[i
].start
) * ls
[i
].step
;
3285 /* Skip to the end of the current record, taking care of an optional
3286 record marker of size bytes. If the file is not seekable, we
3287 read chunks of size MAX_READ until we get to the right
3291 skip_record (st_parameter_dt
*dtp
, gfc_offset bytes
)
3293 ssize_t rlength
, readb
;
3294 #define MAX_READ 4096
3297 dtp
->u
.p
.current_unit
->bytes_left_subrecord
+= bytes
;
3298 if (dtp
->u
.p
.current_unit
->bytes_left_subrecord
== 0)
3301 /* Direct access files do not generate END conditions,
3303 if (sseek (dtp
->u
.p
.current_unit
->s
,
3304 dtp
->u
.p
.current_unit
->bytes_left_subrecord
, SEEK_CUR
) < 0)
3306 /* Seeking failed, fall back to seeking by reading data. */
3307 while (dtp
->u
.p
.current_unit
->bytes_left_subrecord
> 0)
3310 (MAX_READ
< dtp
->u
.p
.current_unit
->bytes_left_subrecord
) ?
3311 MAX_READ
: dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
3313 readb
= sread (dtp
->u
.p
.current_unit
->s
, p
, rlength
);
3316 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3320 dtp
->u
.p
.current_unit
->bytes_left_subrecord
-= readb
;
3324 dtp
->u
.p
.current_unit
->bytes_left_subrecord
= 0;
3328 /* Advance to the next record reading unformatted files, taking
3329 care of subrecords. If complete_record is nonzero, we loop
3330 until all subrecords are cleared. */
3333 next_record_r_unf (st_parameter_dt
*dtp
, int complete_record
)
3337 bytes
= compile_options
.record_marker
== 0 ?
3338 sizeof (GFC_INTEGER_4
) : compile_options
.record_marker
;
3343 /* Skip over tail */
3345 skip_record (dtp
, bytes
);
3347 if ( ! (complete_record
&& dtp
->u
.p
.current_unit
->continued
))
3356 min_off (gfc_offset a
, gfc_offset b
)
3358 return (a
< b
? a
: b
);
3362 /* Space to the next record for read mode. */
3365 next_record_r (st_parameter_dt
*dtp
, int done
)
3371 switch (current_mode (dtp
))
3373 /* No records in unformatted STREAM I/O. */
3374 case UNFORMATTED_STREAM
:
3377 case UNFORMATTED_SEQUENTIAL
:
3378 next_record_r_unf (dtp
, 1);
3379 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3382 case FORMATTED_DIRECT
:
3383 case UNFORMATTED_DIRECT
:
3384 skip_record (dtp
, dtp
->u
.p
.current_unit
->bytes_left
);
3387 case FORMATTED_STREAM
:
3388 case FORMATTED_SEQUENTIAL
:
3389 /* read_sf has already terminated input because of an '\n', or
3391 if (dtp
->u
.p
.sf_seen_eor
)
3393 dtp
->u
.p
.sf_seen_eor
= 0;
3397 if (is_internal_unit (dtp
))
3399 if (is_array_io (dtp
))
3403 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
,
3405 if (!done
&& finished
)
3408 /* Now seek to this record. */
3409 record
= record
* dtp
->u
.p
.current_unit
->recl
;
3410 if (sseek (dtp
->u
.p
.current_unit
->s
, record
, SEEK_SET
) < 0)
3412 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3415 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3419 gfc_offset bytes_left
= dtp
->u
.p
.current_unit
->bytes_left
;
3420 bytes_left
= min_off (bytes_left
,
3421 ssize (dtp
->u
.p
.current_unit
->s
)
3422 - stell (dtp
->u
.p
.current_unit
->s
));
3423 if (sseek (dtp
->u
.p
.current_unit
->s
,
3424 bytes_left
, SEEK_CUR
) < 0)
3426 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3429 dtp
->u
.p
.current_unit
->bytes_left
3430 = dtp
->u
.p
.current_unit
->recl
;
3434 else if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
)
3439 cc
= fbuf_getc (dtp
->u
.p
.current_unit
);
3443 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3446 if (is_stream_io (dtp
)
3447 || dtp
->u
.p
.current_unit
->pad_status
== PAD_NO
3448 || dtp
->u
.p
.current_unit
->bytes_left
3449 == dtp
->u
.p
.current_unit
->recl
)
3455 if (is_stream_io (dtp
))
3456 dtp
->u
.p
.current_unit
->strm_pos
++;
3467 /* Small utility function to write a record marker, taking care of
3468 byte swapping and of choosing the correct size. */
3471 write_us_marker (st_parameter_dt
*dtp
, const gfc_offset buf
)
3477 if (compile_options
.record_marker
== 0)
3478 len
= sizeof (GFC_INTEGER_4
);
3480 len
= compile_options
.record_marker
;
3482 /* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here. */
3483 if (likely (dtp
->u
.p
.current_unit
->flags
.convert
== GFC_CONVERT_NATIVE
))
3487 case sizeof (GFC_INTEGER_4
):
3489 return swrite (dtp
->u
.p
.current_unit
->s
, &buf4
, len
);
3492 case sizeof (GFC_INTEGER_8
):
3494 return swrite (dtp
->u
.p
.current_unit
->s
, &buf8
, len
);
3498 runtime_error ("Illegal value for record marker");
3508 case sizeof (GFC_INTEGER_4
):
3510 memcpy (&u32
, &buf4
, sizeof (u32
));
3511 u32
= __builtin_bswap32 (u32
);
3512 return swrite (dtp
->u
.p
.current_unit
->s
, &u32
, len
);
3515 case sizeof (GFC_INTEGER_8
):
3517 memcpy (&u64
, &buf8
, sizeof (u64
));
3518 u64
= __builtin_bswap64 (u64
);
3519 return swrite (dtp
->u
.p
.current_unit
->s
, &u64
, len
);
3523 runtime_error ("Illegal value for record marker");
3530 /* Position to the next (sub)record in write mode for
3531 unformatted sequential files. */
3534 next_record_w_unf (st_parameter_dt
*dtp
, int next_subrecord
)
3536 gfc_offset m
, m_write
, record_marker
;
3538 /* Bytes written. */
3539 m
= dtp
->u
.p
.current_unit
->recl_subrecord
3540 - dtp
->u
.p
.current_unit
->bytes_left_subrecord
;
3542 if (compile_options
.record_marker
== 0)
3543 record_marker
= sizeof (GFC_INTEGER_4
);
3545 record_marker
= compile_options
.record_marker
;
3547 /* Seek to the head and overwrite the bogus length with the real
3550 if (unlikely (sseek (dtp
->u
.p
.current_unit
->s
, - m
- record_marker
,
3559 if (unlikely (write_us_marker (dtp
, m_write
) < 0))
3562 /* Seek past the end of the current record. */
3564 if (unlikely (sseek (dtp
->u
.p
.current_unit
->s
, m
, SEEK_CUR
) < 0))
3567 /* Write the length tail. If we finish a record containing
3568 subrecords, we write out the negative length. */
3570 if (dtp
->u
.p
.current_unit
->continued
)
3575 if (unlikely (write_us_marker (dtp
, m_write
) < 0))
3581 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3587 /* Utility function like memset() but operating on streams. Return
3588 value is same as for POSIX write(). */
3591 sset (stream
*s
, int c
, gfc_offset nbyte
)
3593 #define WRITE_CHUNK 256
3594 char p
[WRITE_CHUNK
];
3595 gfc_offset bytes_left
;
3598 if (nbyte
< WRITE_CHUNK
)
3599 memset (p
, c
, nbyte
);
3601 memset (p
, c
, WRITE_CHUNK
);
3604 while (bytes_left
> 0)
3606 trans
= (bytes_left
< WRITE_CHUNK
) ? bytes_left
: WRITE_CHUNK
;
3607 trans
= swrite (s
, p
, trans
);
3610 bytes_left
-= trans
;
3613 return nbyte
- bytes_left
;
3617 /* Finish up a record according to the legacy carriagecontrol type, based
3618 on the first character in the record. */
3621 next_record_cc (st_parameter_dt
*dtp
)
3623 /* Only valid with CARRIAGECONTROL=FORTRAN. */
3624 if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_FORTRAN
)
3627 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3628 if (dtp
->u
.p
.cc
.len
> 0)
3630 char *p
= fbuf_alloc (dtp
->u
.p
.current_unit
, dtp
->u
.p
.cc
.len
);
3632 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3634 /* Output CR for the first character with default CC setting. */
3635 *(p
++) = dtp
->u
.p
.cc
.u
.end
;
3636 if (dtp
->u
.p
.cc
.len
> 1)
3637 *p
= dtp
->u
.p
.cc
.u
.end
;
3641 /* Position to the next record in write mode. */
3644 next_record_w (st_parameter_dt
*dtp
, int done
)
3646 gfc_offset max_pos_off
;
3648 /* Zero counters for X- and T-editing. */
3649 max_pos_off
= dtp
->u
.p
.max_pos
;
3650 dtp
->u
.p
.max_pos
= dtp
->u
.p
.skips
= dtp
->u
.p
.pending_spaces
= 0;
3652 switch (current_mode (dtp
))
3654 /* No records in unformatted STREAM I/O. */
3655 case UNFORMATTED_STREAM
:
3658 case FORMATTED_DIRECT
:
3659 if (dtp
->u
.p
.current_unit
->bytes_left
== 0)
3662 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3663 fbuf_flush (dtp
->u
.p
.current_unit
, WRITING
);
3664 if (sset (dtp
->u
.p
.current_unit
->s
, ' ',
3665 dtp
->u
.p
.current_unit
->bytes_left
)
3666 != dtp
->u
.p
.current_unit
->bytes_left
)
3671 case UNFORMATTED_DIRECT
:
3672 if (dtp
->u
.p
.current_unit
->bytes_left
> 0)
3674 gfc_offset length
= dtp
->u
.p
.current_unit
->bytes_left
;
3675 if (sset (dtp
->u
.p
.current_unit
->s
, 0, length
) != length
)
3680 case UNFORMATTED_SEQUENTIAL
:
3681 next_record_w_unf (dtp
, 0);
3682 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3685 case FORMATTED_STREAM
:
3686 case FORMATTED_SEQUENTIAL
:
3688 if (is_internal_unit (dtp
))
3691 /* Internal unit, so must fit in memory. */
3692 ptrdiff_t length
, m
, record
;
3693 ptrdiff_t max_pos
= max_pos_off
;
3694 if (is_array_io (dtp
))
3698 length
= dtp
->u
.p
.current_unit
->bytes_left
;
3700 /* If the farthest position reached is greater than current
3701 position, adjust the position and set length to pad out
3702 whats left. Otherwise just pad whats left.
3703 (for character array unit) */
3704 m
= dtp
->u
.p
.current_unit
->recl
3705 - dtp
->u
.p
.current_unit
->bytes_left
;
3708 length
= (max_pos
- m
);
3709 if (sseek (dtp
->u
.p
.current_unit
->s
,
3710 length
, SEEK_CUR
) < 0)
3712 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3715 length
= ((ptrdiff_t) dtp
->u
.p
.current_unit
->recl
- max_pos
);
3718 p
= write_block (dtp
, length
);
3722 if (unlikely (is_char4_unit (dtp
)))
3724 gfc_char4_t
*p4
= (gfc_char4_t
*) p
;
3725 memset4 (p4
, ' ', length
);
3728 memset (p
, ' ', length
);
3730 /* Now that the current record has been padded out,
3731 determine where the next record in the array is. */
3732 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
,
3735 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
3737 /* Now seek to this record */
3738 record
= record
* ((ptrdiff_t) dtp
->u
.p
.current_unit
->recl
);
3740 if (sseek (dtp
->u
.p
.current_unit
->s
, record
, SEEK_SET
) < 0)
3742 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3746 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
3752 /* If this is the last call to next_record move to the farthest
3753 position reached and set length to pad out the remainder
3754 of the record. (for character scaler unit) */
3757 m
= dtp
->u
.p
.current_unit
->recl
3758 - dtp
->u
.p
.current_unit
->bytes_left
;
3761 length
= max_pos
- m
;
3762 if (sseek (dtp
->u
.p
.current_unit
->s
,
3763 length
, SEEK_CUR
) < 0)
3765 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
3768 length
= (ptrdiff_t) dtp
->u
.p
.current_unit
->recl
3772 length
= dtp
->u
.p
.current_unit
->bytes_left
;
3776 p
= write_block (dtp
, length
);
3780 if (unlikely (is_char4_unit (dtp
)))
3782 gfc_char4_t
*p4
= (gfc_char4_t
*) p
;
3783 memset4 (p4
, (gfc_char4_t
) ' ', length
);
3786 memset (p
, ' ', length
);
3790 /* Handle legacy CARRIAGECONTROL line endings. */
3791 else if (dtp
->u
.p
.current_unit
->flags
.cc
== CC_FORTRAN
)
3792 next_record_cc (dtp
);
3795 /* Skip newlines for CC=CC_NONE. */
3796 const int len
= (dtp
->u
.p
.current_unit
->flags
.cc
== CC_NONE
)
3803 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3804 if (dtp
->u
.p
.current_unit
->flags
.cc
!= CC_NONE
)
3806 char *p
= fbuf_alloc (dtp
->u
.p
.current_unit
, len
);
3814 if (is_stream_io (dtp
))
3816 dtp
->u
.p
.current_unit
->strm_pos
+= len
;
3817 if (dtp
->u
.p
.current_unit
->strm_pos
3818 < ssize (dtp
->u
.p
.current_unit
->s
))
3819 unit_truncate (dtp
->u
.p
.current_unit
,
3820 dtp
->u
.p
.current_unit
->strm_pos
- 1,
3828 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
3833 /* Position to the next record, which means moving to the end of the
3834 current record. This can happen under several different
3835 conditions. If the done flag is not set, we get ready to process
3839 next_record (st_parameter_dt
*dtp
, int done
)
3841 gfc_offset fp
; /* File position. */
3843 dtp
->u
.p
.current_unit
->read_bad
= 0;
3845 if (dtp
->u
.p
.mode
== READING
)
3846 next_record_r (dtp
, done
);
3848 next_record_w (dtp
, done
);
3850 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3852 if (!is_stream_io (dtp
))
3854 /* Since we have changed the position, set it to unspecified so
3855 that INQUIRE(POSITION=) knows it needs to look into it. */
3857 dtp
->u
.p
.current_unit
->flags
.position
= POSITION_UNSPECIFIED
;
3859 dtp
->u
.p
.current_unit
->current_record
= 0;
3860 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_DIRECT
)
3862 fp
= stell (dtp
->u
.p
.current_unit
->s
);
3863 /* Calculate next record, rounding up partial records. */
3864 dtp
->u
.p
.current_unit
->last_record
=
3865 (fp
+ dtp
->u
.p
.current_unit
->recl
) /
3866 dtp
->u
.p
.current_unit
->recl
- 1;
3869 dtp
->u
.p
.current_unit
->last_record
++;
3875 smarkeor (dtp
->u
.p
.current_unit
->s
);
3879 /* Finalize the current data transfer. For a nonadvancing transfer,
3880 this means advancing to the next record. For internal units close the
3881 stream associated with the unit. */
3884 finalize_transfer (st_parameter_dt
*dtp
)
3886 GFC_INTEGER_4 cf
= dtp
->common
.flags
;
3888 if ((dtp
->u
.p
.ionml
!= NULL
)
3889 && (cf
& IOPARM_DT_HAS_NAMELIST_NAME
) != 0)
3891 if ((cf
& IOPARM_DT_NAMELIST_READ_MODE
) != 0)
3892 namelist_read (dtp
);
3894 namelist_write (dtp
);
3897 if ((dtp
->common
.flags
& IOPARM_DT_HAS_SIZE
) != 0)
3898 *dtp
->size
= dtp
->u
.p
.current_unit
->size_used
;
3900 if (dtp
->u
.p
.eor_condition
)
3902 generate_error (&dtp
->common
, LIBERROR_EOR
, NULL
);
3906 if (dtp
->u
.p
.current_unit
&& (dtp
->u
.p
.current_unit
->child_dtio
> 0))
3908 if (cf
& IOPARM_DT_HAS_FORMAT
)
3910 free (dtp
->u
.p
.fmt
);
3916 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
3918 if (dtp
->u
.p
.current_unit
&& current_mode (dtp
) == UNFORMATTED_SEQUENTIAL
)
3919 dtp
->u
.p
.current_unit
->current_record
= 0;
3923 dtp
->u
.p
.transfer
= NULL
;
3924 if (dtp
->u
.p
.current_unit
== NULL
)
3927 if ((cf
& IOPARM_DT_LIST_FORMAT
) != 0 && dtp
->u
.p
.mode
== READING
)
3929 finish_list_read (dtp
);
3933 if (dtp
->u
.p
.mode
== WRITING
)
3934 dtp
->u
.p
.current_unit
->previous_nonadvancing_write
3935 = dtp
->u
.p
.advance_status
== ADVANCE_NO
;
3937 if (is_stream_io (dtp
))
3939 if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
3940 && dtp
->u
.p
.advance_status
!= ADVANCE_NO
)
3941 next_record (dtp
, 1);
3946 dtp
->u
.p
.current_unit
->current_record
= 0;
3948 if (!is_internal_unit (dtp
) && dtp
->u
.p
.seen_dollar
)
3950 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3951 dtp
->u
.p
.seen_dollar
= 0;
3955 /* For non-advancing I/O, save the current maximum position for use in the
3956 next I/O operation if needed. */
3957 if (dtp
->u
.p
.advance_status
== ADVANCE_NO
)
3959 if (dtp
->u
.p
.skips
> 0)
3962 write_x (dtp
, dtp
->u
.p
.skips
, dtp
->u
.p
.pending_spaces
);
3963 tmp
= (int)(dtp
->u
.p
.current_unit
->recl
3964 - dtp
->u
.p
.current_unit
->bytes_left
);
3966 dtp
->u
.p
.max_pos
> tmp
? dtp
->u
.p
.max_pos
: tmp
;
3969 int bytes_written
= (int) (dtp
->u
.p
.current_unit
->recl
3970 - dtp
->u
.p
.current_unit
->bytes_left
);
3971 dtp
->u
.p
.current_unit
->saved_pos
=
3972 dtp
->u
.p
.max_pos
> 0 ? dtp
->u
.p
.max_pos
- bytes_written
: 0;
3973 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
3976 else if (dtp
->u
.p
.current_unit
->flags
.form
== FORM_FORMATTED
3977 && dtp
->u
.p
.mode
== WRITING
&& !is_internal_unit (dtp
))
3978 fbuf_seek (dtp
->u
.p
.current_unit
, 0, SEEK_END
);
3980 dtp
->u
.p
.current_unit
->saved_pos
= 0;
3981 dtp
->u
.p
.current_unit
->last_char
= EOF
- 1;
3982 next_record (dtp
, 1);
3985 #ifdef HAVE_USELOCALE
3986 if (dtp
->u
.p
.old_locale
!= (locale_t
) 0)
3988 uselocale (dtp
->u
.p
.old_locale
);
3989 dtp
->u
.p
.old_locale
= (locale_t
) 0;
3992 __gthread_mutex_lock (&old_locale_lock
);
3993 if (!--old_locale_ctr
)
3995 setlocale (LC_NUMERIC
, old_locale
);
3998 __gthread_mutex_unlock (&old_locale_lock
);
4002 /* Transfer function for IOLENGTH. It doesn't actually do any
4003 data transfer, it just updates the length counter. */
4006 iolength_transfer (st_parameter_dt
*dtp
, bt type
__attribute__((unused
)),
4007 void *dest
__attribute__ ((unused
)),
4008 int kind
__attribute__((unused
)),
4009 size_t size
, size_t nelems
)
4011 if ((dtp
->common
.flags
& IOPARM_DT_HAS_IOLENGTH
) != 0)
4012 *dtp
->iolength
+= (GFC_IO_INT
) (size
* nelems
);
4016 /* Initialize the IOLENGTH data transfer. This function is in essence
4017 a very much simplified version of data_transfer_init(), because it
4018 doesn't have to deal with units at all. */
4021 iolength_transfer_init (st_parameter_dt
*dtp
)
4023 if ((dtp
->common
.flags
& IOPARM_DT_HAS_IOLENGTH
) != 0)
4026 memset (&dtp
->u
.p
, 0, sizeof (dtp
->u
.p
));
4028 /* Set up the subroutine that will handle the transfers. */
4030 dtp
->u
.p
.transfer
= iolength_transfer
;
4034 /* Library entry point for the IOLENGTH form of the INQUIRE
4035 statement. The IOLENGTH form requires no I/O to be performed, but
4036 it must still be a runtime library call so that we can determine
4037 the iolength for dynamic arrays and such. */
4039 extern void st_iolength (st_parameter_dt
*);
4040 export_proto(st_iolength
);
4043 st_iolength (st_parameter_dt
*dtp
)
4045 library_start (&dtp
->common
);
4046 iolength_transfer_init (dtp
);
4049 extern void st_iolength_done (st_parameter_dt
*);
4050 export_proto(st_iolength_done
);
4053 st_iolength_done (st_parameter_dt
*dtp
__attribute__((unused
)))
4060 /* The READ statement. */
4062 extern void st_read (st_parameter_dt
*);
4063 export_proto(st_read
);
4066 st_read (st_parameter_dt
*dtp
)
4068 library_start (&dtp
->common
);
4070 data_transfer_init (dtp
, 1);
4073 extern void st_read_done (st_parameter_dt
*);
4074 export_proto(st_read_done
);
4077 st_read_done (st_parameter_dt
*dtp
)
4079 finalize_transfer (dtp
);
4083 /* If this is a parent READ statement we do not need to retain the
4084 internal unit structure for child use. */
4085 if (dtp
->u
.p
.current_unit
!= NULL
4086 && dtp
->u
.p
.current_unit
->child_dtio
== 0)
4088 if (is_internal_unit (dtp
))
4090 if ((dtp
->common
.flags
& IOPARM_DT_HAS_UDTIO
) == 0)
4092 free (dtp
->u
.p
.current_unit
->filename
);
4093 dtp
->u
.p
.current_unit
->filename
= NULL
;
4094 free (dtp
->u
.p
.current_unit
->s
);
4095 dtp
->u
.p
.current_unit
->s
= NULL
;
4096 if (dtp
->u
.p
.current_unit
->ls
)
4097 free (dtp
->u
.p
.current_unit
->ls
);
4098 dtp
->u
.p
.current_unit
->ls
= NULL
;
4100 newunit_free (dtp
->common
.unit
);
4102 if (is_internal_unit (dtp
) || dtp
->u
.p
.format_not_saved
)
4104 free_format_data (dtp
->u
.p
.fmt
);
4107 unlock_unit (dtp
->u
.p
.current_unit
);
4113 extern void st_write (st_parameter_dt
*);
4114 export_proto(st_write
);
4117 st_write (st_parameter_dt
*dtp
)
4119 library_start (&dtp
->common
);
4120 data_transfer_init (dtp
, 0);
4123 extern void st_write_done (st_parameter_dt
*);
4124 export_proto(st_write_done
);
4127 st_write_done (st_parameter_dt
*dtp
)
4129 finalize_transfer (dtp
);
4131 if (dtp
->u
.p
.current_unit
!= NULL
4132 && dtp
->u
.p
.current_unit
->child_dtio
== 0)
4134 /* Deal with endfile conditions associated with sequential files. */
4135 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
4136 switch (dtp
->u
.p
.current_unit
->endfile
)
4138 case AT_ENDFILE
: /* Remain at the endfile record. */
4142 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
; /* Just at it now. */
4146 /* Get rid of whatever is after this record. */
4147 if (!is_internal_unit (dtp
))
4148 unit_truncate (dtp
->u
.p
.current_unit
,
4149 stell (dtp
->u
.p
.current_unit
->s
),
4151 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4157 /* If this is a parent WRITE statement we do not need to retain the
4158 internal unit structure for child use. */
4159 if (is_internal_unit (dtp
))
4161 if ((dtp
->common
.flags
& IOPARM_DT_HAS_UDTIO
) == 0)
4163 free (dtp
->u
.p
.current_unit
->filename
);
4164 dtp
->u
.p
.current_unit
->filename
= NULL
;
4165 free (dtp
->u
.p
.current_unit
->s
);
4166 dtp
->u
.p
.current_unit
->s
= NULL
;
4167 if (dtp
->u
.p
.current_unit
->ls
)
4168 free (dtp
->u
.p
.current_unit
->ls
);
4169 dtp
->u
.p
.current_unit
->ls
= NULL
;
4171 newunit_free (dtp
->common
.unit
);
4173 if (is_internal_unit (dtp
) || dtp
->u
.p
.format_not_saved
)
4175 free_format_data (dtp
->u
.p
.fmt
);
4178 unlock_unit (dtp
->u
.p
.current_unit
);
4184 /* F2003: This is a stub for the runtime portion of the WAIT statement. */
4186 st_wait (st_parameter_wait
*wtp
__attribute__((unused
)))
4191 /* Receives the scalar information for namelist objects and stores it
4192 in a linked list of namelist_info types. */
4195 set_nml_var (st_parameter_dt
*dtp
, void *var_addr
, char *var_name
,
4196 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4197 GFC_INTEGER_4 dtype
, void *dtio_sub
, void *vtable
)
4199 namelist_info
*t1
= NULL
;
4201 size_t var_name_len
= strlen (var_name
);
4203 nml
= (namelist_info
*) xmalloc (sizeof (namelist_info
));
4205 nml
->mem_pos
= var_addr
;
4206 nml
->dtio_sub
= dtio_sub
;
4207 nml
->vtable
= vtable
;
4209 nml
->var_name
= (char*) xmalloc (var_name_len
+ 1);
4210 memcpy (nml
->var_name
, var_name
, var_name_len
);
4211 nml
->var_name
[var_name_len
] = '\0';
4213 nml
->len
= (int) len
;
4214 nml
->string_length
= (index_type
) string_length
;
4216 nml
->var_rank
= (int) (dtype
& GFC_DTYPE_RANK_MASK
);
4217 nml
->size
= (index_type
) (dtype
>> GFC_DTYPE_SIZE_SHIFT
);
4218 nml
->type
= (bt
) ((dtype
& GFC_DTYPE_TYPE_MASK
) >> GFC_DTYPE_TYPE_SHIFT
);
4220 if (nml
->var_rank
> 0)
4222 nml
->dim
= (descriptor_dimension
*)
4223 xmallocarray (nml
->var_rank
, sizeof (descriptor_dimension
));
4224 nml
->ls
= (array_loop_spec
*)
4225 xmallocarray (nml
->var_rank
, sizeof (array_loop_spec
));
4235 if ((dtp
->common
.flags
& IOPARM_DT_IONML_SET
) == 0)
4237 dtp
->common
.flags
|= IOPARM_DT_IONML_SET
;
4238 dtp
->u
.p
.ionml
= nml
;
4242 for (t1
= dtp
->u
.p
.ionml
; t1
->next
; t1
= t1
->next
);
4247 extern void st_set_nml_var (st_parameter_dt
*dtp
, void *, char *,
4248 GFC_INTEGER_4
, gfc_charlen_type
, GFC_INTEGER_4
);
4249 export_proto(st_set_nml_var
);
4252 st_set_nml_var (st_parameter_dt
*dtp
, void *var_addr
, char *var_name
,
4253 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4254 GFC_INTEGER_4 dtype
)
4256 set_nml_var (dtp
, var_addr
, var_name
, len
, string_length
,
4261 /* Essentially the same as previous but carrying the dtio procedure
4262 and the vtable as additional arguments. */
4263 extern void st_set_nml_dtio_var (st_parameter_dt
*dtp
, void *, char *,
4264 GFC_INTEGER_4
, gfc_charlen_type
, GFC_INTEGER_4
,
4266 export_proto(st_set_nml_dtio_var
);
4270 st_set_nml_dtio_var (st_parameter_dt
*dtp
, void *var_addr
, char *var_name
,
4271 GFC_INTEGER_4 len
, gfc_charlen_type string_length
,
4272 GFC_INTEGER_4 dtype
, void *dtio_sub
, void *vtable
)
4274 set_nml_var (dtp
, var_addr
, var_name
, len
, string_length
,
4275 dtype
, dtio_sub
, vtable
);
4278 /* Store the dimensional information for the namelist object. */
4279 extern void st_set_nml_var_dim (st_parameter_dt
*, GFC_INTEGER_4
,
4280 index_type
, index_type
,
4282 export_proto(st_set_nml_var_dim
);
4285 st_set_nml_var_dim (st_parameter_dt
*dtp
, GFC_INTEGER_4 n_dim
,
4286 index_type stride
, index_type lbound
,
4294 for (nml
= dtp
->u
.p
.ionml
; nml
->next
; nml
= nml
->next
);
4296 GFC_DIMENSION_SET(nml
->dim
[n
],lbound
,ubound
,stride
);
4300 /* Once upon a time, a poor innocent Fortran program was reading a
4301 file, when suddenly it hit the end-of-file (EOF). Unfortunately
4302 the OS doesn't tell whether we're at the EOF or whether we already
4303 went past it. Luckily our hero, libgfortran, keeps track of this.
4304 Call this function when you detect an EOF condition. See Section
4308 hit_eof (st_parameter_dt
*dtp
)
4310 dtp
->u
.p
.current_unit
->flags
.position
= POSITION_APPEND
;
4312 if (dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_SEQUENTIAL
)
4313 switch (dtp
->u
.p
.current_unit
->endfile
)
4317 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
4318 if (!is_internal_unit (dtp
) && !dtp
->u
.p
.namelist_mode
)
4320 dtp
->u
.p
.current_unit
->endfile
= AFTER_ENDFILE
;
4321 dtp
->u
.p
.current_unit
->current_record
= 0;
4324 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4328 generate_error (&dtp
->common
, LIBERROR_ENDFILE
, NULL
);
4329 dtp
->u
.p
.current_unit
->current_record
= 0;
4334 /* Non-sequential files don't have an ENDFILE record, so we
4335 can't be at AFTER_ENDFILE. */
4336 dtp
->u
.p
.current_unit
->endfile
= AT_ENDFILE
;
4337 generate_error (&dtp
->common
, LIBERROR_END
, NULL
);
4338 dtp
->u
.p
.current_unit
->current_record
= 0;