1 /* Copyright (C) 2002-2014 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
3 Namelist input 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/>. */
36 /* List directed input. Several parsing subroutines are practically
37 reimplemented from formatted input, the reason being that there are
38 all kinds of small differences between formatted and list directed
42 /* Subroutines for reading characters from the input. Because a
43 repeat count is ambiguous with an integer, we have to read the
44 whole digit string before seeing if there is a '*' which signals
45 the repeat count. Since we can have a lot of potential leading
46 zeros, we have to be able to back up by arbitrary amount. Because
47 the input might not be seekable, we have to buffer the data
50 #define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
51 case '5': case '6': case '7': case '8': case '9'
53 #define CASE_SEPARATORS case ' ': case ',': case '/': case '\n': case '\t': \
56 /* This macro assumes that we're operating on a variable. */
58 #define is_separator(c) (c == '/' || c == ',' || c == '\n' || c == ' ' \
59 || c == '\t' || c == '\r' || c == ';')
61 /* Maximum repeat count. Less than ten times the maximum signed int32. */
63 #define MAX_REPEAT 200000000
68 /* Save a character to a string buffer, enlarging it as necessary. */
71 push_char (st_parameter_dt
*dtp
, char c
)
75 if (dtp
->u
.p
.saved_string
== NULL
)
77 // Plain malloc should suffice here, zeroing not needed?
78 dtp
->u
.p
.saved_string
= xcalloc (SCRATCH_SIZE
, 1);
79 dtp
->u
.p
.saved_length
= SCRATCH_SIZE
;
80 dtp
->u
.p
.saved_used
= 0;
83 if (dtp
->u
.p
.saved_used
>= dtp
->u
.p
.saved_length
)
85 dtp
->u
.p
.saved_length
= 2 * dtp
->u
.p
.saved_length
;
86 new = realloc (dtp
->u
.p
.saved_string
, dtp
->u
.p
.saved_length
);
88 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
89 dtp
->u
.p
.saved_string
= new;
91 // Also this should not be necessary.
92 memset (new + dtp
->u
.p
.saved_used
, 0,
93 dtp
->u
.p
.saved_length
- dtp
->u
.p
.saved_used
);
97 dtp
->u
.p
.saved_string
[dtp
->u
.p
.saved_used
++] = c
;
101 /* Free the input buffer if necessary. */
104 free_saved (st_parameter_dt
*dtp
)
106 if (dtp
->u
.p
.saved_string
== NULL
)
109 free (dtp
->u
.p
.saved_string
);
111 dtp
->u
.p
.saved_string
= NULL
;
112 dtp
->u
.p
.saved_used
= 0;
116 /* Free the line buffer if necessary. */
119 free_line (st_parameter_dt
*dtp
)
121 dtp
->u
.p
.line_buffer_pos
= 0;
122 dtp
->u
.p
.line_buffer_enabled
= 0;
124 if (dtp
->u
.p
.line_buffer
== NULL
)
127 free (dtp
->u
.p
.line_buffer
);
128 dtp
->u
.p
.line_buffer
= NULL
;
133 next_char (st_parameter_dt
*dtp
)
139 if (dtp
->u
.p
.last_char
!= EOF
- 1)
142 c
= dtp
->u
.p
.last_char
;
143 dtp
->u
.p
.last_char
= EOF
- 1;
147 /* Read from line_buffer if enabled. */
149 if (dtp
->u
.p
.line_buffer_enabled
)
153 c
= dtp
->u
.p
.line_buffer
[dtp
->u
.p
.line_buffer_pos
];
154 if (c
!= '\0' && dtp
->u
.p
.line_buffer_pos
< 64)
156 dtp
->u
.p
.line_buffer
[dtp
->u
.p
.line_buffer_pos
] = '\0';
157 dtp
->u
.p
.line_buffer_pos
++;
161 dtp
->u
.p
.line_buffer_pos
= 0;
162 dtp
->u
.p
.line_buffer_enabled
= 0;
165 /* Handle the end-of-record and end-of-file conditions for
166 internal array unit. */
167 if (is_array_io (dtp
))
172 /* Check for "end-of-record" condition. */
173 if (dtp
->u
.p
.current_unit
->bytes_left
== 0)
178 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
,
181 /* Check for "end-of-file" condition. */
188 record
*= dtp
->u
.p
.current_unit
->recl
;
189 if (sseek (dtp
->u
.p
.current_unit
->s
, record
, SEEK_SET
) < 0)
192 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
197 /* Get the next character and handle end-of-record conditions. */
199 if (is_internal_unit (dtp
))
201 /* Check for kind=4 internal unit. */
202 if (dtp
->common
.unit
)
203 length
= sread (dtp
->u
.p
.current_unit
->s
, &c
, sizeof (gfc_char4_t
));
207 length
= sread (dtp
->u
.p
.current_unit
->s
, &cc
, 1);
213 generate_error (&dtp
->common
, LIBERROR_OS
, NULL
);
217 if (is_array_io (dtp
))
219 /* Check whether we hit EOF. */
222 generate_error (&dtp
->common
, LIBERROR_INTERNAL_UNIT
, NULL
);
225 dtp
->u
.p
.current_unit
->bytes_left
--;
240 c
= fbuf_getc (dtp
->u
.p
.current_unit
);
241 if (c
!= EOF
&& is_stream_io (dtp
))
242 dtp
->u
.p
.current_unit
->strm_pos
++;
245 dtp
->u
.p
.at_eol
= (c
== '\n' || c
== EOF
);
250 /* Push a character back onto the input. */
253 unget_char (st_parameter_dt
*dtp
, int c
)
255 dtp
->u
.p
.last_char
= c
;
259 /* Skip over spaces in the input. Returns the nonspace character that
260 terminated the eating and also places it back on the input. */
263 eat_spaces (st_parameter_dt
*dtp
)
269 while (c
!= EOF
&& (c
== ' ' || c
== '\t'));
276 /* This function reads characters through to the end of the current
277 line and just ignores them. Returns 0 for success and LIBERROR_END
281 eat_line (st_parameter_dt
*dtp
)
287 while (c
!= EOF
&& c
!= '\n');
294 /* Skip over a separator. Technically, we don't always eat the whole
295 separator. This is because if we've processed the last input item,
296 then a separator is unnecessary. Plus the fact that operating
297 systems usually deliver console input on a line basis.
299 The upshot is that if we see a newline as part of reading a
300 separator, we stop reading. If there are more input items, we
301 continue reading the separator with finish_separator() which takes
302 care of the fact that we may or may not have seen a comma as part
305 Returns 0 for success, and non-zero error code otherwise. */
308 eat_separator (st_parameter_dt
*dtp
)
314 dtp
->u
.p
.comma_flag
= 0;
316 if ((c
= next_char (dtp
)) == EOF
)
321 if (dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
328 dtp
->u
.p
.comma_flag
= 1;
333 dtp
->u
.p
.input_complete
= 1;
337 if ((n
= next_char(dtp
)) == EOF
)
347 if (dtp
->u
.p
.namelist_mode
)
351 if ((c
= next_char (dtp
)) == EOF
)
355 err
= eat_line (dtp
);
361 while (c
== '\n' || c
== '\r' || c
== ' ' || c
== '\t');
367 if (dtp
->u
.p
.namelist_mode
)
368 { /* Eat a namelist comment. */
369 err
= eat_line (dtp
);
376 /* Fall Through... */
386 /* Finish processing a separator that was interrupted by a newline.
387 If we're here, then another data item is present, so we finish what
388 we started on the previous line. Return 0 on success, error code
392 finish_separator (st_parameter_dt
*dtp
)
395 int err
= LIBERROR_OK
;
400 if ((c
= next_char (dtp
)) == EOF
)
405 if (dtp
->u
.p
.comma_flag
)
409 if ((c
= eat_spaces (dtp
)) == EOF
)
411 if (c
== '\n' || c
== '\r')
418 dtp
->u
.p
.input_complete
= 1;
419 if (!dtp
->u
.p
.namelist_mode
)
428 if (dtp
->u
.p
.namelist_mode
)
430 err
= eat_line (dtp
);
444 /* This function is needed to catch bad conversions so that namelist can
445 attempt to see if dtp->u.p.saved_string contains a new object name rather
449 nml_bad_return (st_parameter_dt
*dtp
, char c
)
451 if (dtp
->u
.p
.namelist_mode
)
453 dtp
->u
.p
.nml_read_error
= 1;
460 /* Convert an unsigned string to an integer. The length value is -1
461 if we are working on a repeat count. Returns nonzero if we have a
462 range problem. As a side effect, frees the dtp->u.p.saved_string. */
465 convert_integer (st_parameter_dt
*dtp
, int length
, int negative
)
467 char c
, *buffer
, message
[MSGLEN
];
469 GFC_UINTEGER_LARGEST v
, max
, max10
;
470 GFC_INTEGER_LARGEST value
;
472 buffer
= dtp
->u
.p
.saved_string
;
479 max
= si_max (length
);
509 set_integer (dtp
->u
.p
.value
, value
, length
);
513 dtp
->u
.p
.repeat_count
= v
;
515 if (dtp
->u
.p
.repeat_count
== 0)
517 snprintf (message
, MSGLEN
, "Zero repeat count in item %d of list input",
518 dtp
->u
.p
.item_count
);
520 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
530 snprintf (message
, MSGLEN
, "Repeat count overflow in item %d of list input",
531 dtp
->u
.p
.item_count
);
533 snprintf (message
, MSGLEN
, "Integer overflow while reading item %d",
534 dtp
->u
.p
.item_count
);
537 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
543 /* Parse a repeat count for logical and complex values which cannot
544 begin with a digit. Returns nonzero if we are done, zero if we
545 should continue on. */
548 parse_repeat (st_parameter_dt
*dtp
)
550 char message
[MSGLEN
];
553 if ((c
= next_char (dtp
)) == EOF
)
577 repeat
= 10 * repeat
+ c
- '0';
579 if (repeat
> MAX_REPEAT
)
581 snprintf (message
, MSGLEN
,
582 "Repeat count overflow in item %d of list input",
583 dtp
->u
.p
.item_count
);
585 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
594 snprintf (message
, MSGLEN
,
595 "Zero repeat count in item %d of list input",
596 dtp
->u
.p
.item_count
);
598 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
610 dtp
->u
.p
.repeat_count
= repeat
;
624 snprintf (message
, MSGLEN
, "Bad repeat count in item %d of list input",
625 dtp
->u
.p
.item_count
);
626 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
631 /* To read a logical we have to look ahead in the input stream to make sure
632 there is not an equal sign indicating a variable name. To do this we use
633 line_buffer to point to a temporary buffer, pushing characters there for
634 possible later reading. */
637 l_push_char (st_parameter_dt
*dtp
, char c
)
639 if (dtp
->u
.p
.line_buffer
== NULL
)
640 dtp
->u
.p
.line_buffer
= xcalloc (SCRATCH_SIZE
, 1);
642 dtp
->u
.p
.line_buffer
[dtp
->u
.p
.line_buffer_pos
++] = c
;
646 /* Read a logical character on the input. */
649 read_logical (st_parameter_dt
*dtp
, int length
)
651 char message
[MSGLEN
];
654 if (parse_repeat (dtp
))
657 c
= tolower (next_char (dtp
));
658 l_push_char (dtp
, c
);
664 l_push_char (dtp
, c
);
666 if (!is_separator(c
) && c
!= EOF
)
674 l_push_char (dtp
, c
);
676 if (!is_separator(c
) && c
!= EOF
)
683 c
= tolower (next_char (dtp
));
702 return; /* Null value. */
705 /* Save the character in case it is the beginning
706 of the next object name. */
711 dtp
->u
.p
.saved_type
= BT_LOGICAL
;
712 dtp
->u
.p
.saved_length
= length
;
714 /* Eat trailing garbage. */
717 while (c
!= EOF
&& !is_separator (c
));
721 set_integer ((int *) dtp
->u
.p
.value
, v
, length
);
728 for(i
= 0; i
< 63; i
++)
733 /* All done if this is not a namelist read. */
734 if (!dtp
->u
.p
.namelist_mode
)
747 l_push_char (dtp
, c
);
750 dtp
->u
.p
.nml_read_error
= 1;
751 dtp
->u
.p
.line_buffer_enabled
= 1;
752 dtp
->u
.p
.line_buffer_pos
= 0;
760 if (nml_bad_return (dtp
, c
))
776 snprintf (message
, MSGLEN
, "Bad logical value while reading item %d",
777 dtp
->u
.p
.item_count
);
779 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
784 dtp
->u
.p
.saved_type
= BT_LOGICAL
;
785 dtp
->u
.p
.saved_length
= length
;
786 set_integer ((int *) dtp
->u
.p
.value
, v
, length
);
792 /* Reading integers is tricky because we can actually be reading a
793 repeat count. We have to store the characters in a buffer because
794 we could be reading an integer that is larger than the default int
795 used for repeat counts. */
798 read_integer (st_parameter_dt
*dtp
, int length
)
800 char message
[MSGLEN
];
810 /* Fall through... */
813 if ((c
= next_char (dtp
)) == EOF
)
817 CASE_SEPARATORS
: /* Single null. */
830 /* Take care of what may be a repeat count. */
842 push_char (dtp
, '\0');
845 CASE_SEPARATORS
: /* Not a repeat count. */
855 if (convert_integer (dtp
, -1, 0))
858 /* Get the real integer. */
860 if ((c
= next_char (dtp
)) == EOF
)
874 /* Fall through... */
906 if (nml_bad_return (dtp
, c
))
919 snprintf (message
, MSGLEN
, "Bad integer for item %d in list input",
920 dtp
->u
.p
.item_count
);
922 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
930 push_char (dtp
, '\0');
931 if (convert_integer (dtp
, length
, negative
))
938 dtp
->u
.p
.saved_type
= BT_INTEGER
;
942 /* Read a character variable. */
945 read_character (st_parameter_dt
*dtp
, int length
__attribute__ ((unused
)))
947 char quote
, message
[MSGLEN
];
950 quote
= ' '; /* Space means no quote character. */
952 if ((c
= next_char (dtp
)) == EOF
)
962 unget_char (dtp
, c
); /* NULL value. */
972 if (dtp
->u
.p
.namelist_mode
)
982 /* Deal with a possible repeat count. */
996 goto done
; /* String was only digits! */
999 push_char (dtp
, '\0');
1004 goto get_string
; /* Not a repeat count after all. */
1009 if (convert_integer (dtp
, -1, 0))
1012 /* Now get the real string. */
1014 if ((c
= next_char (dtp
)) == EOF
)
1019 unget_char (dtp
, c
); /* Repeated NULL values. */
1020 eat_separator (dtp
);
1036 if ((c
= next_char (dtp
)) == EOF
)
1048 /* See if we have a doubled quote character or the end of
1051 if ((c
= next_char (dtp
)) == EOF
)
1055 push_char (dtp
, quote
);
1059 unget_char (dtp
, c
);
1065 unget_char (dtp
, c
);
1069 if (c
!= '\n' && c
!= '\r')
1079 /* At this point, we have to have a separator, or else the string is
1082 c
= next_char (dtp
);
1084 if (is_separator (c
) || c
== '!' || c
== EOF
)
1086 unget_char (dtp
, c
);
1087 eat_separator (dtp
);
1088 dtp
->u
.p
.saved_type
= BT_CHARACTER
;
1093 snprintf (message
, MSGLEN
, "Invalid string input in item %d",
1094 dtp
->u
.p
.item_count
);
1095 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1107 /* Parse a component of a complex constant or a real number that we
1108 are sure is already there. This is a straight real number parser. */
1111 parse_real (st_parameter_dt
*dtp
, void *buffer
, int length
)
1113 char message
[MSGLEN
];
1116 if ((c
= next_char (dtp
)) == EOF
)
1119 if (c
== '-' || c
== '+')
1122 if ((c
= next_char (dtp
)) == EOF
)
1126 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1129 if (!isdigit (c
) && c
!= '.')
1131 if (c
== 'i' || c
== 'I' || c
== 'n' || c
== 'N')
1139 seen_dp
= (c
== '.') ? 1 : 0;
1143 if ((c
= next_char (dtp
)) == EOF
)
1145 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1167 push_char (dtp
, 'e');
1172 push_char (dtp
, 'e');
1174 if ((c
= next_char (dtp
)) == EOF
)
1188 if ((c
= next_char (dtp
)) == EOF
)
1190 if (c
!= '-' && c
!= '+')
1191 push_char (dtp
, '+');
1195 c
= next_char (dtp
);
1206 if ((c
= next_char (dtp
)) == EOF
)
1216 unget_char (dtp
, c
);
1225 unget_char (dtp
, c
);
1226 push_char (dtp
, '\0');
1228 m
= convert_real (dtp
, buffer
, dtp
->u
.p
.saved_string
, length
);
1234 unget_char (dtp
, c
);
1235 push_char (dtp
, '\0');
1237 m
= convert_infnan (dtp
, buffer
, dtp
->u
.p
.saved_string
, length
);
1243 /* Match INF and Infinity. */
1244 if ((c
== 'i' || c
== 'I')
1245 && ((c
= next_char (dtp
)) == 'n' || c
== 'N')
1246 && ((c
= next_char (dtp
)) == 'f' || c
== 'F'))
1248 c
= next_char (dtp
);
1249 if ((c
!= 'i' && c
!= 'I')
1250 || ((c
== 'i' || c
== 'I')
1251 && ((c
= next_char (dtp
)) == 'n' || c
== 'N')
1252 && ((c
= next_char (dtp
)) == 'i' || c
== 'I')
1253 && ((c
= next_char (dtp
)) == 't' || c
== 'T')
1254 && ((c
= next_char (dtp
)) == 'y' || c
== 'Y')
1255 && (c
= next_char (dtp
))))
1257 if (is_separator (c
) || (c
== EOF
))
1258 unget_char (dtp
, c
);
1259 push_char (dtp
, 'i');
1260 push_char (dtp
, 'n');
1261 push_char (dtp
, 'f');
1265 else if (((c
= next_char (dtp
)) == 'a' || c
== 'A')
1266 && ((c
= next_char (dtp
)) == 'n' || c
== 'N')
1267 && (c
= next_char (dtp
)))
1269 if (is_separator (c
) || (c
== EOF
))
1270 unget_char (dtp
, c
);
1271 push_char (dtp
, 'n');
1272 push_char (dtp
, 'a');
1273 push_char (dtp
, 'n');
1275 /* Match "NAN(alphanum)". */
1278 for ( ; c
!= ')'; c
= next_char (dtp
))
1279 if (is_separator (c
))
1282 c
= next_char (dtp
);
1283 if (is_separator (c
) || (c
== EOF
))
1284 unget_char (dtp
, c
);
1291 if (nml_bad_return (dtp
, c
))
1304 snprintf (message
, MSGLEN
, "Bad floating point number for item %d",
1305 dtp
->u
.p
.item_count
);
1307 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1313 /* Reading a complex number is straightforward because we can tell
1314 what it is right away. */
1317 read_complex (st_parameter_dt
*dtp
, void * dest
, int kind
, size_t size
)
1319 char message
[MSGLEN
];
1322 if (parse_repeat (dtp
))
1325 c
= next_char (dtp
);
1333 unget_char (dtp
, c
);
1334 eat_separator (dtp
);
1343 c
= next_char (dtp
);
1344 if (c
== '\n' || c
== '\r')
1347 unget_char (dtp
, c
);
1349 if (parse_real (dtp
, dest
, kind
))
1354 c
= next_char (dtp
);
1355 if (c
== '\n' || c
== '\r')
1358 unget_char (dtp
, c
);
1361 != (dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_POINT
? ',' : ';'))
1366 c
= next_char (dtp
);
1367 if (c
== '\n' || c
== '\r')
1370 unget_char (dtp
, c
);
1372 if (parse_real (dtp
, dest
+ size
/ 2, kind
))
1377 c
= next_char (dtp
);
1378 if (c
== '\n' || c
== '\r')
1381 unget_char (dtp
, c
);
1383 if (next_char (dtp
) != ')')
1386 c
= next_char (dtp
);
1387 if (!is_separator (c
) && (c
!= EOF
))
1390 unget_char (dtp
, c
);
1391 eat_separator (dtp
);
1394 dtp
->u
.p
.saved_type
= BT_COMPLEX
;
1399 if (nml_bad_return (dtp
, c
))
1412 snprintf (message
, MSGLEN
, "Bad complex value in item %d of list input",
1413 dtp
->u
.p
.item_count
);
1415 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1419 /* Parse a real number with a possible repeat count. */
1422 read_real (st_parameter_dt
*dtp
, void * dest
, int length
)
1424 char message
[MSGLEN
];
1431 c
= next_char (dtp
);
1432 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1450 unget_char (dtp
, c
); /* Single null. */
1451 eat_separator (dtp
);
1464 /* Get the digit string that might be a repeat count. */
1468 c
= next_char (dtp
);
1469 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1495 push_char (dtp
, 'e');
1497 c
= next_char (dtp
);
1501 push_char (dtp
, '\0');
1506 if (c
!= '\n' && c
!= ',' && c
!= '\r' && c
!= ';')
1507 unget_char (dtp
, c
);
1516 if (convert_integer (dtp
, -1, 0))
1519 /* Now get the number itself. */
1521 if ((c
= next_char (dtp
)) == EOF
)
1523 if (is_separator (c
))
1524 { /* Repeated null value. */
1525 unget_char (dtp
, c
);
1526 eat_separator (dtp
);
1530 if (c
!= '-' && c
!= '+')
1531 push_char (dtp
, '+');
1536 if ((c
= next_char (dtp
)) == EOF
)
1540 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1543 if (!isdigit (c
) && c
!= '.')
1545 if (c
== 'i' || c
== 'I' || c
== 'n' || c
== 'N')
1564 c
= next_char (dtp
);
1565 if (c
== ',' && dtp
->u
.p
.current_unit
->decimal_status
== DECIMAL_COMMA
)
1595 push_char (dtp
, 'e');
1597 c
= next_char (dtp
);
1606 push_char (dtp
, 'e');
1608 if ((c
= next_char (dtp
)) == EOF
)
1610 if (c
!= '+' && c
!= '-')
1611 push_char (dtp
, '+');
1615 c
= next_char (dtp
);
1625 c
= next_char (dtp
);
1643 unget_char (dtp
, c
);
1644 eat_separator (dtp
);
1645 push_char (dtp
, '\0');
1646 if (convert_real (dtp
, dest
, dtp
->u
.p
.saved_string
, length
))
1653 dtp
->u
.p
.saved_type
= BT_REAL
;
1657 l_push_char (dtp
, c
);
1660 /* Match INF and Infinity. */
1661 if (c
== 'i' || c
== 'I')
1663 c
= next_char (dtp
);
1664 l_push_char (dtp
, c
);
1665 if (c
!= 'n' && c
!= 'N')
1667 c
= next_char (dtp
);
1668 l_push_char (dtp
, c
);
1669 if (c
!= 'f' && c
!= 'F')
1671 c
= next_char (dtp
);
1672 l_push_char (dtp
, c
);
1673 if (!is_separator (c
) && (c
!= EOF
))
1675 if (c
!= 'i' && c
!= 'I')
1677 c
= next_char (dtp
);
1678 l_push_char (dtp
, c
);
1679 if (c
!= 'n' && c
!= 'N')
1681 c
= next_char (dtp
);
1682 l_push_char (dtp
, c
);
1683 if (c
!= 'i' && c
!= 'I')
1685 c
= next_char (dtp
);
1686 l_push_char (dtp
, c
);
1687 if (c
!= 't' && c
!= 'T')
1689 c
= next_char (dtp
);
1690 l_push_char (dtp
, c
);
1691 if (c
!= 'y' && c
!= 'Y')
1693 c
= next_char (dtp
);
1694 l_push_char (dtp
, c
);
1700 c
= next_char (dtp
);
1701 l_push_char (dtp
, c
);
1702 if (c
!= 'a' && c
!= 'A')
1704 c
= next_char (dtp
);
1705 l_push_char (dtp
, c
);
1706 if (c
!= 'n' && c
!= 'N')
1708 c
= next_char (dtp
);
1709 l_push_char (dtp
, c
);
1711 /* Match NAN(alphanum). */
1714 for (c
= next_char (dtp
); c
!= ')'; c
= next_char (dtp
))
1715 if (is_separator (c
))
1718 l_push_char (dtp
, c
);
1720 l_push_char (dtp
, ')');
1721 c
= next_char (dtp
);
1722 l_push_char (dtp
, c
);
1726 if (!is_separator (c
) && (c
!= EOF
))
1729 if (dtp
->u
.p
.namelist_mode
)
1731 if (c
== ' ' || c
=='\n' || c
== '\r')
1735 if ((c
= next_char (dtp
)) == EOF
)
1738 while (c
== ' ' || c
=='\n' || c
== '\r');
1740 l_push_char (dtp
, c
);
1749 push_char (dtp
, 'i');
1750 push_char (dtp
, 'n');
1751 push_char (dtp
, 'f');
1755 push_char (dtp
, 'n');
1756 push_char (dtp
, 'a');
1757 push_char (dtp
, 'n');
1761 unget_char (dtp
, c
);
1762 eat_separator (dtp
);
1763 push_char (dtp
, '\0');
1764 if (convert_infnan (dtp
, dest
, dtp
->u
.p
.saved_string
, length
))
1768 dtp
->u
.p
.saved_type
= BT_REAL
;
1772 if (dtp
->u
.p
.namelist_mode
)
1774 dtp
->u
.p
.nml_read_error
= 1;
1775 dtp
->u
.p
.line_buffer_enabled
= 1;
1776 dtp
->u
.p
.line_buffer_pos
= 0;
1782 if (nml_bad_return (dtp
, c
))
1795 snprintf (message
, MSGLEN
, "Bad real number in item %d of list input",
1796 dtp
->u
.p
.item_count
);
1798 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1802 /* Check the current type against the saved type to make sure they are
1803 compatible. Returns nonzero if incompatible. */
1806 check_type (st_parameter_dt
*dtp
, bt type
, int kind
)
1808 char message
[MSGLEN
];
1810 if (dtp
->u
.p
.saved_type
!= BT_UNKNOWN
&& dtp
->u
.p
.saved_type
!= type
)
1812 snprintf (message
, MSGLEN
, "Read type %s where %s was expected for item %d",
1813 type_name (dtp
->u
.p
.saved_type
), type_name (type
),
1814 dtp
->u
.p
.item_count
);
1816 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1820 if (dtp
->u
.p
.saved_type
== BT_UNKNOWN
|| dtp
->u
.p
.saved_type
== BT_CHARACTER
)
1823 if ((type
!= BT_COMPLEX
&& dtp
->u
.p
.saved_length
!= kind
)
1824 || (type
== BT_COMPLEX
&& dtp
->u
.p
.saved_length
!= kind
*2))
1826 snprintf (message
, MSGLEN
,
1827 "Read kind %d %s where kind %d is required for item %d",
1828 type
== BT_COMPLEX
? dtp
->u
.p
.saved_length
/ 2
1829 : dtp
->u
.p
.saved_length
,
1830 type_name (dtp
->u
.p
.saved_type
), kind
,
1831 dtp
->u
.p
.item_count
);
1833 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, message
);
1841 /* Top level data transfer subroutine for list reads. Because we have
1842 to deal with repeat counts, the data item is always saved after
1843 reading, usually in the dtp->u.p.value[] array. If a repeat count is
1844 greater than one, we copy the data item multiple times. */
1847 list_formatted_read_scalar (st_parameter_dt
*dtp
, bt type
, void *p
,
1848 int kind
, size_t size
)
1854 dtp
->u
.p
.namelist_mode
= 0;
1856 if (dtp
->u
.p
.first_item
)
1858 dtp
->u
.p
.first_item
= 0;
1859 dtp
->u
.p
.input_complete
= 0;
1860 dtp
->u
.p
.repeat_count
= 1;
1861 dtp
->u
.p
.at_eol
= 0;
1863 if ((c
= eat_spaces (dtp
)) == EOF
)
1868 if (is_separator (c
))
1870 /* Found a null value. */
1871 eat_separator (dtp
);
1872 dtp
->u
.p
.repeat_count
= 0;
1874 /* eat_separator sets this flag if the separator was a comma. */
1875 if (dtp
->u
.p
.comma_flag
)
1878 /* eat_separator sets this flag if the separator was a \n or \r. */
1879 if (dtp
->u
.p
.at_eol
)
1880 finish_separator (dtp
);
1888 if (dtp
->u
.p
.repeat_count
> 0)
1890 if (check_type (dtp
, type
, kind
))
1895 if (dtp
->u
.p
.input_complete
)
1898 if (dtp
->u
.p
.at_eol
)
1899 finish_separator (dtp
);
1903 /* Trailing spaces prior to end of line. */
1904 if (dtp
->u
.p
.at_eol
)
1905 finish_separator (dtp
);
1908 dtp
->u
.p
.saved_type
= BT_UNKNOWN
;
1909 dtp
->u
.p
.repeat_count
= 1;
1915 read_integer (dtp
, kind
);
1918 read_logical (dtp
, kind
);
1921 read_character (dtp
, kind
);
1924 read_real (dtp
, p
, kind
);
1925 /* Copy value back to temporary if needed. */
1926 if (dtp
->u
.p
.repeat_count
> 0)
1927 memcpy (dtp
->u
.p
.value
, p
, size
);
1930 read_complex (dtp
, p
, kind
, size
);
1931 /* Copy value back to temporary if needed. */
1932 if (dtp
->u
.p
.repeat_count
> 0)
1933 memcpy (dtp
->u
.p
.value
, p
, size
);
1936 internal_error (&dtp
->common
, "Bad type for list read");
1939 if (dtp
->u
.p
.saved_type
!= BT_CHARACTER
&& dtp
->u
.p
.saved_type
!= BT_UNKNOWN
)
1940 dtp
->u
.p
.saved_length
= size
;
1942 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1946 switch (dtp
->u
.p
.saved_type
)
1950 if (dtp
->u
.p
.repeat_count
> 0)
1951 memcpy (p
, dtp
->u
.p
.value
, size
);
1956 memcpy (p
, dtp
->u
.p
.value
, size
);
1960 if (dtp
->u
.p
.saved_string
)
1962 m
= ((int) size
< dtp
->u
.p
.saved_used
)
1963 ? (int) size
: dtp
->u
.p
.saved_used
;
1965 memcpy (p
, dtp
->u
.p
.saved_string
, m
);
1968 q
= (gfc_char4_t
*) p
;
1969 for (i
= 0; i
< m
; i
++)
1970 q
[i
] = (unsigned char) dtp
->u
.p
.saved_string
[i
];
1974 /* Just delimiters encountered, nothing to copy but SPACE. */
1980 memset (((char *) p
) + m
, ' ', size
- m
);
1983 q
= (gfc_char4_t
*) p
;
1984 for (i
= m
; i
< (int) size
; i
++)
1985 q
[i
] = (unsigned char) ' ';
1994 internal_error (&dtp
->common
, "Bad type for list read");
1997 if (--dtp
->u
.p
.repeat_count
<= 0)
2001 if (err
== LIBERROR_END
)
2011 list_formatted_read (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
2012 size_t size
, size_t nelems
)
2016 size_t stride
= type
== BT_CHARACTER
?
2017 size
* GFC_SIZE_OF_CHAR_KIND(kind
) : size
;
2022 /* Big loop over all the elements. */
2023 for (elem
= 0; elem
< nelems
; elem
++)
2025 dtp
->u
.p
.item_count
++;
2026 err
= list_formatted_read_scalar (dtp
, type
, tmp
+ stride
*elem
,
2034 /* Finish a list read. */
2037 finish_list_read (st_parameter_dt
*dtp
)
2043 fbuf_flush (dtp
->u
.p
.current_unit
, dtp
->u
.p
.mode
);
2045 if (dtp
->u
.p
.at_eol
)
2047 dtp
->u
.p
.at_eol
= 0;
2051 err
= eat_line (dtp
);
2052 if (err
== LIBERROR_END
)
2061 void namelist_read (st_parameter_dt *dtp)
2063 static void nml_match_name (char *name, int len)
2064 static int nml_query (st_parameter_dt *dtp)
2065 static int nml_get_obj_data (st_parameter_dt *dtp,
2066 namelist_info **prev_nl, char *, size_t)
2068 static void nml_untouch_nodes (st_parameter_dt *dtp)
2069 static namelist_info * find_nml_node (st_parameter_dt *dtp,
2071 static int nml_parse_qualifier(descriptor_dimension * ad,
2072 array_loop_spec * ls, int rank, char *)
2073 static void nml_touch_nodes (namelist_info * nl)
2074 static int nml_read_obj (namelist_info *nl, index_type offset,
2075 namelist_info **prev_nl, char *, size_t,
2076 index_type clow, index_type chigh)
2080 /* Inputs a rank-dimensional qualifier, which can contain
2081 singlets, doublets, triplets or ':' with the standard meanings. */
2084 nml_parse_qualifier (st_parameter_dt
*dtp
, descriptor_dimension
*ad
,
2085 array_loop_spec
*ls
, int rank
, bt nml_elem_type
,
2086 char *parse_err_msg
, size_t parse_err_msg_size
,
2093 int is_array_section
, is_char
;
2097 is_array_section
= 0;
2098 dtp
->u
.p
.expanded_read
= 0;
2100 /* See if this is a character substring qualifier we are looking for. */
2107 /* The next character in the stream should be the '('. */
2109 if ((c
= next_char (dtp
)) == EOF
)
2112 /* Process the qualifier, by dimension and triplet. */
2114 for (dim
=0; dim
< rank
; dim
++ )
2116 for (indx
=0; indx
<3; indx
++)
2122 /* Process a potential sign. */
2123 if ((c
= next_char (dtp
)) == EOF
)
2135 unget_char (dtp
, c
);
2139 /* Process characters up to the next ':' , ',' or ')'. */
2142 c
= next_char (dtp
);
2149 is_array_section
= 1;
2153 if ((c
==',' && dim
== rank
-1)
2154 || (c
==')' && dim
< rank
-1))
2157 snprintf (parse_err_msg
, parse_err_msg_size
,
2158 "Bad substring qualifier");
2160 snprintf (parse_err_msg
, parse_err_msg_size
,
2161 "Bad number of index fields");
2170 case ' ': case '\t': case '\r': case '\n':
2176 snprintf (parse_err_msg
, parse_err_msg_size
,
2177 "Bad character in substring qualifier");
2179 snprintf (parse_err_msg
, parse_err_msg_size
,
2180 "Bad character in index");
2184 if ((c
== ',' || c
== ')') && indx
== 0
2185 && dtp
->u
.p
.saved_string
== 0)
2188 snprintf (parse_err_msg
, parse_err_msg_size
,
2189 "Null substring qualifier");
2191 snprintf (parse_err_msg
, parse_err_msg_size
,
2192 "Null index field");
2196 if ((c
== ':' && indx
== 1 && dtp
->u
.p
.saved_string
== 0)
2197 || (indx
== 2 && dtp
->u
.p
.saved_string
== 0))
2200 snprintf (parse_err_msg
, parse_err_msg_size
,
2201 "Bad substring qualifier");
2203 snprintf (parse_err_msg
, parse_err_msg_size
,
2204 "Bad index triplet");
2208 if (is_char
&& !is_array_section
)
2210 snprintf (parse_err_msg
, parse_err_msg_size
,
2211 "Missing colon in substring qualifier");
2215 /* If '( : ? )' or '( ? : )' break and flag read failure. */
2217 if ((c
== ':' && indx
== 0 && dtp
->u
.p
.saved_string
== 0)
2218 || (indx
==1 && dtp
->u
.p
.saved_string
== 0))
2224 /* Now read the index. */
2225 if (convert_integer (dtp
, sizeof(index_type
), neg
))
2228 snprintf (parse_err_msg
, parse_err_msg_size
,
2229 "Bad integer substring qualifier");
2231 snprintf (parse_err_msg
, parse_err_msg_size
,
2232 "Bad integer in index");
2238 /* Feed the index values to the triplet arrays. */
2242 memcpy (&ls
[dim
].start
, dtp
->u
.p
.value
, sizeof(index_type
));
2244 memcpy (&ls
[dim
].end
, dtp
->u
.p
.value
, sizeof(index_type
));
2246 memcpy (&ls
[dim
].step
, dtp
->u
.p
.value
, sizeof(index_type
));
2249 /* Singlet or doublet indices. */
2250 if (c
==',' || c
==')')
2254 memcpy (&ls
[dim
].start
, dtp
->u
.p
.value
, sizeof(index_type
));
2256 /* If -std=f95/2003 or an array section is specified,
2257 do not allow excess data to be processed. */
2258 if (is_array_section
== 1
2259 || !(compile_options
.allow_std
& GFC_STD_GNU
)
2260 || nml_elem_type
== BT_DERIVED
)
2261 ls
[dim
].end
= ls
[dim
].start
;
2263 dtp
->u
.p
.expanded_read
= 1;
2266 /* Check for non-zero rank. */
2267 if (is_array_section
== 1 && ls
[dim
].start
!= ls
[dim
].end
)
2274 if (is_array_section
== 1 && dtp
->u
.p
.expanded_read
== 1)
2277 dtp
->u
.p
.expanded_read
= 0;
2278 for (i
= 0; i
< dim
; i
++)
2279 ls
[i
].end
= ls
[i
].start
;
2282 /* Check the values of the triplet indices. */
2283 if ((ls
[dim
].start
> GFC_DIMENSION_UBOUND(ad
[dim
]))
2284 || (ls
[dim
].start
< GFC_DIMENSION_LBOUND(ad
[dim
]))
2285 || (ls
[dim
].end
> GFC_DIMENSION_UBOUND(ad
[dim
]))
2286 || (ls
[dim
].end
< GFC_DIMENSION_LBOUND(ad
[dim
])))
2289 snprintf (parse_err_msg
, parse_err_msg_size
,
2290 "Substring out of range");
2292 snprintf (parse_err_msg
, parse_err_msg_size
,
2293 "Index %d out of range", dim
+ 1);
2297 if (((ls
[dim
].end
- ls
[dim
].start
) * ls
[dim
].step
< 0)
2298 || (ls
[dim
].step
== 0))
2300 snprintf (parse_err_msg
, parse_err_msg_size
,
2301 "Bad range in index %d", dim
+ 1);
2305 /* Initialise the loop index counter. */
2306 ls
[dim
].idx
= ls
[dim
].start
;
2313 /* The EOF error message is issued by hit_eof. Return true so that the
2314 caller does not use parse_err_msg and parse_err_msg_size to generate
2315 an unrelated error message. */
2319 dtp
->u
.p
.input_complete
= 1;
2325 static namelist_info
*
2326 find_nml_node (st_parameter_dt
*dtp
, char * var_name
)
2328 namelist_info
* t
= dtp
->u
.p
.ionml
;
2331 if (strcmp (var_name
, t
->var_name
) == 0)
2341 /* Visits all the components of a derived type that have
2342 not explicitly been identified in the namelist input.
2343 touched is set and the loop specification initialised
2344 to default values */
2347 nml_touch_nodes (namelist_info
* nl
)
2349 index_type len
= strlen (nl
->var_name
) + 1;
2351 char * ext_name
= (char*)xmalloc (len
+ 1);
2352 memcpy (ext_name
, nl
->var_name
, len
-1);
2353 memcpy (ext_name
+ len
- 1, "%", 2);
2354 for (nl
= nl
->next
; nl
; nl
= nl
->next
)
2356 if (strncmp (nl
->var_name
, ext_name
, len
) == 0)
2359 for (dim
=0; dim
< nl
->var_rank
; dim
++)
2361 nl
->ls
[dim
].step
= 1;
2362 nl
->ls
[dim
].end
= GFC_DESCRIPTOR_UBOUND(nl
,dim
);
2363 nl
->ls
[dim
].start
= GFC_DESCRIPTOR_LBOUND(nl
,dim
);
2364 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
2374 /* Resets touched for the entire list of nml_nodes, ready for a
2378 nml_untouch_nodes (st_parameter_dt
*dtp
)
2381 for (t
= dtp
->u
.p
.ionml
; t
; t
= t
->next
)
2386 /* Attempts to input name to namelist name. Returns
2387 dtp->u.p.nml_read_error = 1 on no match. */
2390 nml_match_name (st_parameter_dt
*dtp
, const char *name
, index_type len
)
2395 dtp
->u
.p
.nml_read_error
= 0;
2396 for (i
= 0; i
< len
; i
++)
2398 c
= next_char (dtp
);
2399 if (c
== EOF
|| (tolower (c
) != tolower (name
[i
])))
2401 dtp
->u
.p
.nml_read_error
= 1;
2407 /* If the namelist read is from stdin, output the current state of the
2408 namelist to stdout. This is used to implement the non-standard query
2409 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
2410 the names alone are printed. */
2413 nml_query (st_parameter_dt
*dtp
, char c
)
2415 gfc_unit
* temp_unit
;
2420 static const index_type endlen
= 2;
2421 static const char endl
[] = "\r\n";
2422 static const char nmlend
[] = "&end\r\n";
2424 static const index_type endlen
= 1;
2425 static const char endl
[] = "\n";
2426 static const char nmlend
[] = "&end\n";
2429 if (dtp
->u
.p
.current_unit
->unit_number
!= options
.stdin_unit
)
2432 /* Store the current unit and transfer to stdout. */
2434 temp_unit
= dtp
->u
.p
.current_unit
;
2435 dtp
->u
.p
.current_unit
= find_unit (options
.stdout_unit
);
2437 if (dtp
->u
.p
.current_unit
)
2439 dtp
->u
.p
.mode
= WRITING
;
2440 next_record (dtp
, 0);
2442 /* Write the namelist in its entirety. */
2445 namelist_write (dtp
);
2447 /* Or write the list of names. */
2451 /* "&namelist_name\n" */
2453 len
= dtp
->namelist_name_len
;
2454 p
= write_block (dtp
, len
- 1 + endlen
);
2458 memcpy ((char*)(p
+ 1), dtp
->namelist_name
, len
);
2459 memcpy ((char*)(p
+ len
+ 1), &endl
, endlen
);
2460 for (nl
= dtp
->u
.p
.ionml
; nl
; nl
= nl
->next
)
2464 len
= strlen (nl
->var_name
);
2465 p
= write_block (dtp
, len
+ endlen
);
2469 memcpy ((char*)(p
+ 1), nl
->var_name
, len
);
2470 memcpy ((char*)(p
+ len
+ 1), &endl
, endlen
);
2475 p
= write_block (dtp
, endlen
+ 4);
2478 memcpy (p
, &nmlend
, endlen
+ 4);
2481 /* Flush the stream to force immediate output. */
2483 fbuf_flush (dtp
->u
.p
.current_unit
, WRITING
);
2484 sflush (dtp
->u
.p
.current_unit
->s
);
2485 unlock_unit (dtp
->u
.p
.current_unit
);
2490 /* Restore the current unit. */
2492 dtp
->u
.p
.current_unit
= temp_unit
;
2493 dtp
->u
.p
.mode
= READING
;
2497 /* Reads and stores the input for the namelist object nl. For an array,
2498 the function loops over the ranges defined by the loop specification.
2499 This default to all the data or to the specification from a qualifier.
2500 nml_read_obj recursively calls itself to read derived types. It visits
2501 all its own components but only reads data for those that were touched
2502 when the name was parsed. If a read error is encountered, an attempt is
2503 made to return to read a new object name because the standard allows too
2504 little data to be available. On the other hand, too much data is an
2508 nml_read_obj (st_parameter_dt
*dtp
, namelist_info
* nl
, index_type offset
,
2509 namelist_info
**pprev_nl
, char *nml_err_msg
,
2510 size_t nml_err_msg_size
, index_type clow
, index_type chigh
)
2512 namelist_info
* cmp
;
2519 size_t obj_name_len
;
2522 /* If we have encountered a previous read error or this object has not been
2523 touched in name parsing, just return. */
2524 if (dtp
->u
.p
.nml_read_error
|| !nl
->touched
)
2527 dtp
->u
.p
.repeat_count
= 0;
2539 dlen
= size_from_real_kind (len
);
2543 dlen
= size_from_complex_kind (len
);
2547 dlen
= chigh
? (chigh
- clow
+ 1) : nl
->string_length
;
2556 /* Update the pointer to the data, using the current index vector */
2558 pdata
= (void*)(nl
->mem_pos
+ offset
);
2559 for (dim
= 0; dim
< nl
->var_rank
; dim
++)
2560 pdata
= (void*)(pdata
+ (nl
->ls
[dim
].idx
2561 - GFC_DESCRIPTOR_LBOUND(nl
,dim
))
2562 * GFC_DESCRIPTOR_STRIDE(nl
,dim
) * nl
->size
);
2564 /* If we are finished with the repeat count, try to read next value. */
2567 if (--dtp
->u
.p
.repeat_count
<= 0)
2569 if (dtp
->u
.p
.input_complete
)
2571 if (dtp
->u
.p
.at_eol
)
2572 finish_separator (dtp
);
2573 if (dtp
->u
.p
.input_complete
)
2576 dtp
->u
.p
.saved_type
= BT_UNKNOWN
;
2582 read_integer (dtp
, len
);
2586 read_logical (dtp
, len
);
2590 read_character (dtp
, len
);
2594 /* Need to copy data back from the real location to the temp in
2595 order to handle nml reads into arrays. */
2596 read_real (dtp
, pdata
, len
);
2597 memcpy (dtp
->u
.p
.value
, pdata
, dlen
);
2601 /* Same as for REAL, copy back to temp. */
2602 read_complex (dtp
, pdata
, len
, dlen
);
2603 memcpy (dtp
->u
.p
.value
, pdata
, dlen
);
2607 obj_name_len
= strlen (nl
->var_name
) + 1;
2608 obj_name
= xmalloc (obj_name_len
+1);
2609 memcpy (obj_name
, nl
->var_name
, obj_name_len
-1);
2610 memcpy (obj_name
+ obj_name_len
- 1, "%", 2);
2612 /* If reading a derived type, disable the expanded read warning
2613 since a single object can have multiple reads. */
2614 dtp
->u
.p
.expanded_read
= 0;
2616 /* Now loop over the components. */
2618 for (cmp
= nl
->next
;
2620 !strncmp (cmp
->var_name
, obj_name
, obj_name_len
);
2623 /* Jump over nested derived type by testing if the potential
2624 component name contains '%'. */
2625 if (strchr (cmp
->var_name
+ obj_name_len
, '%'))
2628 if (!nml_read_obj (dtp
, cmp
, (index_type
)(pdata
- nl
->mem_pos
),
2629 pprev_nl
, nml_err_msg
, nml_err_msg_size
,
2636 if (dtp
->u
.p
.input_complete
)
2647 snprintf (nml_err_msg
, nml_err_msg_size
,
2648 "Bad type for namelist object %s", nl
->var_name
);
2649 internal_error (&dtp
->common
, nml_err_msg
);
2654 /* The standard permits array data to stop short of the number of
2655 elements specified in the loop specification. In this case, we
2656 should be here with dtp->u.p.nml_read_error != 0. Control returns to
2657 nml_get_obj_data and an attempt is made to read object name. */
2660 if (dtp
->u
.p
.nml_read_error
)
2662 dtp
->u
.p
.expanded_read
= 0;
2666 if (dtp
->u
.p
.saved_type
== BT_UNKNOWN
)
2668 dtp
->u
.p
.expanded_read
= 0;
2672 switch (dtp
->u
.p
.saved_type
)
2679 memcpy (pdata
, dtp
->u
.p
.value
, dlen
);
2683 if (dlen
< dtp
->u
.p
.saved_used
)
2685 if (compile_options
.bounds_check
)
2687 snprintf (nml_err_msg
, nml_err_msg_size
,
2688 "Namelist object '%s' truncated on read.",
2690 generate_warning (&dtp
->common
, nml_err_msg
);
2695 m
= dtp
->u
.p
.saved_used
;
2696 pdata
= (void*)( pdata
+ clow
- 1 );
2697 memcpy (pdata
, dtp
->u
.p
.saved_string
, m
);
2699 memset ((void*)( pdata
+ m
), ' ', dlen
- m
);
2706 /* Warn if a non-standard expanded read occurs. A single read of a
2707 single object is acceptable. If a second read occurs, issue a warning
2708 and set the flag to zero to prevent further warnings. */
2709 if (dtp
->u
.p
.expanded_read
== 2)
2711 notify_std (&dtp
->common
, GFC_STD_GNU
, "Non-standard expanded namelist read.");
2712 dtp
->u
.p
.expanded_read
= 0;
2715 /* If the expanded read warning flag is set, increment it,
2716 indicating that a single read has occurred. */
2717 if (dtp
->u
.p
.expanded_read
>= 1)
2718 dtp
->u
.p
.expanded_read
++;
2720 /* Break out of loop if scalar. */
2724 /* Now increment the index vector. */
2729 for (dim
= 0; dim
< nl
->var_rank
; dim
++)
2731 nl
->ls
[dim
].idx
+= nml_carry
* nl
->ls
[dim
].step
;
2733 if (((nl
->ls
[dim
].step
> 0) && (nl
->ls
[dim
].idx
> nl
->ls
[dim
].end
))
2735 ((nl
->ls
[dim
].step
< 0) && (nl
->ls
[dim
].idx
< nl
->ls
[dim
].end
)))
2737 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
2741 } while (!nml_carry
);
2743 if (dtp
->u
.p
.repeat_count
> 1)
2745 snprintf (nml_err_msg
, nml_err_msg_size
,
2746 "Repeat count too large for namelist object %s", nl
->var_name
);
2756 /* Parses the object name, including array and substring qualifiers. It
2757 iterates over derived type components, touching those components and
2758 setting their loop specifications, if there is a qualifier. If the
2759 object is itself a derived type, its components and subcomponents are
2760 touched. nml_read_obj is called at the end and this reads the data in
2761 the manner specified by the object name. */
2764 nml_get_obj_data (st_parameter_dt
*dtp
, namelist_info
**pprev_nl
,
2765 char *nml_err_msg
, size_t nml_err_msg_size
)
2769 namelist_info
* first_nl
= NULL
;
2770 namelist_info
* root_nl
= NULL
;
2771 int dim
, parsed_rank
;
2772 int component_flag
, qualifier_flag
;
2773 index_type clow
, chigh
;
2774 int non_zero_rank_count
;
2776 /* Look for end of input or object name. If '?' or '=?' are encountered
2777 in stdin, print the node names or the namelist to stdout. */
2779 eat_separator (dtp
);
2780 if (dtp
->u
.p
.input_complete
)
2783 if (dtp
->u
.p
.at_eol
)
2784 finish_separator (dtp
);
2785 if (dtp
->u
.p
.input_complete
)
2788 if ((c
= next_char (dtp
)) == EOF
)
2793 if ((c
= next_char (dtp
)) == EOF
)
2797 snprintf (nml_err_msg
, nml_err_msg_size
,
2798 "namelist read: misplaced = sign");
2801 nml_query (dtp
, '=');
2805 nml_query (dtp
, '?');
2810 nml_match_name (dtp
, "end", 3);
2811 if (dtp
->u
.p
.nml_read_error
)
2813 snprintf (nml_err_msg
, nml_err_msg_size
,
2814 "namelist not terminated with / or &end");
2819 dtp
->u
.p
.input_complete
= 1;
2826 /* Untouch all nodes of the namelist and reset the flags that are set for
2827 derived type components. */
2829 nml_untouch_nodes (dtp
);
2832 non_zero_rank_count
= 0;
2834 /* Get the object name - should '!' and '\n' be permitted separators? */
2842 if (!is_separator (c
))
2843 push_char (dtp
, tolower(c
));
2844 if ((c
= next_char (dtp
)) == EOF
)
2847 while (!( c
=='=' || c
==' ' || c
=='\t' || c
=='(' || c
=='%' ));
2849 unget_char (dtp
, c
);
2851 /* Check that the name is in the namelist and get pointer to object.
2852 Three error conditions exist: (i) An attempt is being made to
2853 identify a non-existent object, following a failed data read or
2854 (ii) The object name does not exist or (iii) Too many data items
2855 are present for an object. (iii) gives the same error message
2858 push_char (dtp
, '\0');
2862 size_t var_len
= strlen (root_nl
->var_name
);
2864 = dtp
->u
.p
.saved_string
? strlen (dtp
->u
.p
.saved_string
) : 0;
2865 char ext_name
[var_len
+ saved_len
+ 1];
2867 memcpy (ext_name
, root_nl
->var_name
, var_len
);
2868 if (dtp
->u
.p
.saved_string
)
2869 memcpy (ext_name
+ var_len
, dtp
->u
.p
.saved_string
, saved_len
);
2870 ext_name
[var_len
+ saved_len
] = '\0';
2871 nl
= find_nml_node (dtp
, ext_name
);
2874 nl
= find_nml_node (dtp
, dtp
->u
.p
.saved_string
);
2878 if (dtp
->u
.p
.nml_read_error
&& *pprev_nl
)
2879 snprintf (nml_err_msg
, nml_err_msg_size
,
2880 "Bad data for namelist object %s", (*pprev_nl
)->var_name
);
2883 snprintf (nml_err_msg
, nml_err_msg_size
,
2884 "Cannot match namelist object name %s",
2885 dtp
->u
.p
.saved_string
);
2890 /* Get the length, data length, base pointer and rank of the variable.
2891 Set the default loop specification first. */
2893 for (dim
=0; dim
< nl
->var_rank
; dim
++)
2895 nl
->ls
[dim
].step
= 1;
2896 nl
->ls
[dim
].end
= GFC_DESCRIPTOR_UBOUND(nl
,dim
);
2897 nl
->ls
[dim
].start
= GFC_DESCRIPTOR_LBOUND(nl
,dim
);
2898 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
2901 /* Check to see if there is a qualifier: if so, parse it.*/
2903 if (c
== '(' && nl
->var_rank
)
2906 if (!nml_parse_qualifier (dtp
, nl
->dim
, nl
->ls
, nl
->var_rank
,
2907 nl
->type
, nml_err_msg
, nml_err_msg_size
,
2910 char *nml_err_msg_end
= strchr (nml_err_msg
, '\0');
2911 snprintf (nml_err_msg_end
,
2912 nml_err_msg_size
- (nml_err_msg_end
- nml_err_msg
),
2913 " for namelist variable %s", nl
->var_name
);
2916 if (parsed_rank
> 0)
2917 non_zero_rank_count
++;
2921 if ((c
= next_char (dtp
)) == EOF
)
2923 unget_char (dtp
, c
);
2925 else if (nl
->var_rank
> 0)
2926 non_zero_rank_count
++;
2928 /* Now parse a derived type component. The root namelist_info address
2929 is backed up, as is the previous component level. The component flag
2930 is set and the iteration is made by jumping back to get_name. */
2934 if (nl
->type
!= BT_DERIVED
)
2936 snprintf (nml_err_msg
, nml_err_msg_size
,
2937 "Attempt to get derived component for %s", nl
->var_name
);
2941 /* Don't move first_nl further in the list if a qualifier was found. */
2942 if ((*pprev_nl
== NULL
&& !qualifier_flag
) || !component_flag
)
2948 if ((c
= next_char (dtp
)) == EOF
)
2953 /* Parse a character qualifier, if present. chigh = 0 is a default
2954 that signals that the string length = string_length. */
2959 if (c
== '(' && nl
->type
== BT_CHARACTER
)
2961 descriptor_dimension chd
[1] = { {1, clow
, nl
->string_length
} };
2962 array_loop_spec ind
[1] = { {1, clow
, nl
->string_length
, 1} };
2964 if (!nml_parse_qualifier (dtp
, chd
, ind
, -1, nl
->type
,
2965 nml_err_msg
, nml_err_msg_size
, &parsed_rank
))
2967 char *nml_err_msg_end
= strchr (nml_err_msg
, '\0');
2968 snprintf (nml_err_msg_end
,
2969 nml_err_msg_size
- (nml_err_msg_end
- nml_err_msg
),
2970 " for namelist variable %s", nl
->var_name
);
2974 clow
= ind
[0].start
;
2977 if (ind
[0].step
!= 1)
2979 snprintf (nml_err_msg
, nml_err_msg_size
,
2980 "Step not allowed in substring qualifier"
2981 " for namelist object %s", nl
->var_name
);
2985 if ((c
= next_char (dtp
)) == EOF
)
2987 unget_char (dtp
, c
);
2990 /* Make sure no extraneous qualifiers are there. */
2994 snprintf (nml_err_msg
, nml_err_msg_size
,
2995 "Qualifier for a scalar or non-character namelist object %s",
3000 /* Make sure there is no more than one non-zero rank object. */
3001 if (non_zero_rank_count
> 1)
3003 snprintf (nml_err_msg
, nml_err_msg_size
,
3004 "Multiple sub-objects with non-zero rank in namelist object %s",
3006 non_zero_rank_count
= 0;
3010 /* According to the standard, an equal sign MUST follow an object name. The
3011 following is possibly lax - it allows comments, blank lines and so on to
3012 intervene. eat_spaces (dtp); c = next_char (dtp); would be compliant*/
3016 eat_separator (dtp
);
3017 if (dtp
->u
.p
.input_complete
)
3020 if (dtp
->u
.p
.at_eol
)
3021 finish_separator (dtp
);
3022 if (dtp
->u
.p
.input_complete
)
3025 if ((c
= next_char (dtp
)) == EOF
)
3030 snprintf (nml_err_msg
, nml_err_msg_size
,
3031 "Equal sign must follow namelist object name %s",
3035 /* If a derived type, touch its components and restore the root
3036 namelist_info if we have parsed a qualified derived type
3039 if (nl
->type
== BT_DERIVED
)
3040 nml_touch_nodes (nl
);
3044 if (first_nl
->var_rank
== 0)
3046 if (component_flag
&& qualifier_flag
)
3053 dtp
->u
.p
.nml_read_error
= 0;
3054 if (!nml_read_obj (dtp
, nl
, 0, pprev_nl
, nml_err_msg
, nml_err_msg_size
,
3062 /* The EOF error message is issued by hit_eof. Return true so that the
3063 caller does not use nml_err_msg and nml_err_msg_size to generate
3064 an unrelated error message. */
3067 dtp
->u
.p
.input_complete
= 1;
3068 unget_char (dtp
, c
);
3075 /* Entry point for namelist input. Goes through input until namelist name
3076 is matched. Then cycles through nml_get_obj_data until the input is
3077 completed or there is an error. */
3080 namelist_read (st_parameter_dt
*dtp
)
3083 char nml_err_msg
[200];
3085 /* Initialize the error string buffer just in case we get an unexpected fail
3086 somewhere and end up at nml_err_ret. */
3087 strcpy (nml_err_msg
, "Internal namelist read error");
3089 /* Pointer to the previously read object, in case attempt is made to read
3090 new object name. Should this fail, error message can give previous
3092 namelist_info
*prev_nl
= NULL
;
3094 dtp
->u
.p
.namelist_mode
= 1;
3095 dtp
->u
.p
.input_complete
= 0;
3096 dtp
->u
.p
.expanded_read
= 0;
3098 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
3099 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
3100 node names or namelist on stdout. */
3103 c
= next_char (dtp
);
3115 c
= next_char (dtp
);
3117 nml_query (dtp
, '=');
3119 unget_char (dtp
, c
);
3123 nml_query (dtp
, '?');
3133 /* Match the name of the namelist. */
3135 nml_match_name (dtp
, dtp
->namelist_name
, dtp
->namelist_name_len
);
3137 if (dtp
->u
.p
.nml_read_error
)
3140 /* A trailing space is required, we give a little latitude here, 10.9.1. */
3141 c
= next_char (dtp
);
3142 if (!is_separator(c
) && c
!= '!')
3144 unget_char (dtp
, c
);
3148 unget_char (dtp
, c
);
3149 eat_separator (dtp
);
3151 /* Ready to read namelist objects. If there is an error in input
3152 from stdin, output the error message and continue. */
3154 while (!dtp
->u
.p
.input_complete
)
3156 if (!nml_get_obj_data (dtp
, &prev_nl
, nml_err_msg
, sizeof nml_err_msg
))
3158 if (dtp
->u
.p
.current_unit
->unit_number
!= options
.stdin_unit
)
3160 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, nml_err_msg
);
3163 /* Reset the previous namelist pointer if we know we are not going
3164 to be doing multiple reads within a single namelist object. */
3165 if (prev_nl
&& prev_nl
->var_rank
== 0)
3176 /* All namelist error calls return from here */
3179 generate_error (&dtp
->common
, LIBERROR_READ_VALUE
, nml_err_msg
);