1 /* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
2 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4 Namelist input contributed by Paul Thomas
5 F2003 I/O support contributed by Jerry DeLisle
7 This file is part of the GNU Fortran runtime library (libgfortran).
9 Libgfortran is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 Libgfortran is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
37 /* List directed input. Several parsing subroutines are practically
38 reimplemented from formatted input, the reason being that there are
39 all kinds of small differences between formatted and list directed
43 /* Subroutines for reading characters from the input. Because a
44 repeat count is ambiguous with an integer, we have to read the
45 whole digit string before seeing if there is a '*' which signals
46 the repeat count. Since we can have a lot of potential leading
47 zeros, we have to be able to back up by arbitrary amount. Because
48 the input might not be seekable, we have to buffer the data
51 #define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
52 case '5': case '6': case '7': case '8': case '9'
54 #define CASE_SEPARATORS case ' ': case ',': case '/': case '\n': case '\t': \
57 /* This macro assumes that we're operating on a variable. */
59 #define is_separator(c) (c == '/' || c == ',' || c == '\n' || c == ' ' \
60 || c == '\t' || c == '\r' || c == ';')
62 /* Maximum repeat count. Less than ten times the maximum signed int32. */
64 #define MAX_REPEAT 200000000
68 # define snprintf(str, size, ...) sprintf (str, __VA_ARGS__)
71 /* Save a character to a string buffer, enlarging it as necessary. */
74 push_char (st_parameter_dt *dtp, char c)
78 if (dtp->u.p.saved_string == NULL)
80 dtp->u.p.saved_string = get_mem (SCRATCH_SIZE);
81 // memset below should be commented out.
82 memset (dtp->u.p.saved_string, 0, SCRATCH_SIZE);
83 dtp->u.p.saved_length = SCRATCH_SIZE;
84 dtp->u.p.saved_used = 0;
87 if (dtp->u.p.saved_used >= dtp->u.p.saved_length)
89 dtp->u.p.saved_length = 2 * dtp->u.p.saved_length;
90 new = realloc (dtp->u.p.saved_string, dtp->u.p.saved_length);
92 generate_error (&dtp->common, LIBERROR_OS, NULL);
93 dtp->u.p.saved_string = new;
95 // Also this should not be necessary.
96 memset (new + dtp->u.p.saved_used, 0,
97 dtp->u.p.saved_length - dtp->u.p.saved_used);
101 dtp->u.p.saved_string[dtp->u.p.saved_used++] = c;
105 /* Free the input buffer if necessary. */
108 free_saved (st_parameter_dt *dtp)
110 if (dtp->u.p.saved_string == NULL)
113 free (dtp->u.p.saved_string);
115 dtp->u.p.saved_string = NULL;
116 dtp->u.p.saved_used = 0;
120 /* Free the line buffer if necessary. */
123 free_line (st_parameter_dt *dtp)
125 dtp->u.p.item_count = 0;
126 dtp->u.p.line_buffer_enabled = 0;
128 if (dtp->u.p.line_buffer == NULL)
131 free (dtp->u.p.line_buffer);
132 dtp->u.p.line_buffer = NULL;
137 next_char (st_parameter_dt *dtp)
144 if (dtp->u.p.last_char != '\0')
147 c = dtp->u.p.last_char;
148 dtp->u.p.last_char = '\0';
152 /* Read from line_buffer if enabled. */
154 if (dtp->u.p.line_buffer_enabled)
158 c = dtp->u.p.line_buffer[dtp->u.p.item_count];
159 if (c != '\0' && dtp->u.p.item_count < 64)
161 dtp->u.p.line_buffer[dtp->u.p.item_count] = '\0';
162 dtp->u.p.item_count++;
166 dtp->u.p.item_count = 0;
167 dtp->u.p.line_buffer_enabled = 0;
170 /* Handle the end-of-record and end-of-file conditions for
171 internal array unit. */
172 if (is_array_io (dtp))
175 longjmp (*dtp->u.p.eof_jump, 1);
177 /* Check for "end-of-record" condition. */
178 if (dtp->u.p.current_unit->bytes_left == 0)
183 record = next_array_record (dtp, dtp->u.p.current_unit->ls,
186 /* Check for "end-of-file" condition. */
193 record *= dtp->u.p.current_unit->recl;
194 if (sseek (dtp->u.p.current_unit->s, record, SEEK_SET) < 0)
195 longjmp (*dtp->u.p.eof_jump, 1);
197 dtp->u.p.current_unit->bytes_left = dtp->u.p.current_unit->recl;
202 /* Get the next character and handle end-of-record conditions. */
204 if (is_internal_unit (dtp))
206 length = sread (dtp->u.p.current_unit->s, &c, 1);
209 generate_error (&dtp->common, LIBERROR_OS, NULL);
213 if (is_array_io (dtp))
215 /* Check whether we hit EOF. */
218 generate_error (&dtp->common, LIBERROR_INTERNAL_UNIT, NULL);
221 dtp->u.p.current_unit->bytes_left--;
226 longjmp (*dtp->u.p.eof_jump, 1);
236 cc = fbuf_getc (dtp->u.p.current_unit);
240 if (dtp->u.p.current_unit->endfile == AT_ENDFILE)
241 longjmp (*dtp->u.p.eof_jump, 1);
242 dtp->u.p.current_unit->endfile = AT_ENDFILE;
247 if (is_stream_io (dtp) && cc != EOF)
248 dtp->u.p.current_unit->strm_pos++;
252 dtp->u.p.at_eol = (c == '\n' || c == '\r');
257 /* Push a character back onto the input. */
260 unget_char (st_parameter_dt *dtp, char c)
262 dtp->u.p.last_char = c;
266 /* Skip over spaces in the input. Returns the nonspace character that
267 terminated the eating and also places it back on the input. */
270 eat_spaces (st_parameter_dt *dtp)
278 while (c == ' ' || c == '\t');
285 /* This function reads characters through to the end of the current line and
286 just ignores them. */
289 eat_line (st_parameter_dt *dtp)
299 /* Skip over a separator. Technically, we don't always eat the whole
300 separator. This is because if we've processed the last input item,
301 then a separator is unnecessary. Plus the fact that operating
302 systems usually deliver console input on a line basis.
304 The upshot is that if we see a newline as part of reading a
305 separator, we stop reading. If there are more input items, we
306 continue reading the separator with finish_separator() which takes
307 care of the fact that we may or may not have seen a comma as part
311 eat_separator (st_parameter_dt *dtp)
316 dtp->u.p.comma_flag = 0;
322 if (dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
329 dtp->u.p.comma_flag = 1;
334 dtp->u.p.input_complete = 1;
348 if (dtp->u.p.namelist_mode)
364 while (c == '\n' || c == '\r' || c == ' ' || c == '\t');
370 if (dtp->u.p.namelist_mode)
371 { /* Eat a namelist comment. */
379 /* Fall Through... */
388 /* Finish processing a separator that was interrupted by a newline.
389 If we're here, then another data item is present, so we finish what
390 we started on the previous line. */
393 finish_separator (st_parameter_dt *dtp)
404 if (dtp->u.p.comma_flag)
408 c = eat_spaces (dtp);
409 if (c == '\n' || c == '\r')
416 dtp->u.p.input_complete = 1;
417 if (!dtp->u.p.namelist_mode)
426 if (dtp->u.p.namelist_mode)
442 /* This function is needed to catch bad conversions so that namelist can
443 attempt to see if dtp->u.p.saved_string contains a new object name rather
447 nml_bad_return (st_parameter_dt *dtp, char c)
449 if (dtp->u.p.namelist_mode)
451 dtp->u.p.nml_read_error = 1;
458 /* Convert an unsigned string to an integer. The length value is -1
459 if we are working on a repeat count. Returns nonzero if we have a
460 range problem. As a side effect, frees the dtp->u.p.saved_string. */
463 convert_integer (st_parameter_dt *dtp, int length, int negative)
465 char c, *buffer, message[100];
467 GFC_INTEGER_LARGEST v, max, max10;
469 buffer = dtp->u.p.saved_string;
472 max = (length == -1) ? MAX_REPEAT : max_value (length, 1);
497 set_integer (dtp->u.p.value, v, length);
501 dtp->u.p.repeat_count = v;
503 if (dtp->u.p.repeat_count == 0)
505 sprintf (message, "Zero repeat count in item %d of list input",
506 dtp->u.p.item_count);
508 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
518 sprintf (message, "Repeat count overflow in item %d of list input",
519 dtp->u.p.item_count);
521 sprintf (message, "Integer overflow while reading item %d",
522 dtp->u.p.item_count);
525 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
531 /* Parse a repeat count for logical and complex values which cannot
532 begin with a digit. Returns nonzero if we are done, zero if we
533 should continue on. */
536 parse_repeat (st_parameter_dt *dtp)
538 char c, message[100];
564 repeat = 10 * repeat + c - '0';
566 if (repeat > MAX_REPEAT)
569 "Repeat count overflow in item %d of list input",
570 dtp->u.p.item_count);
572 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
582 "Zero repeat count in item %d of list input",
583 dtp->u.p.item_count);
585 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
597 dtp->u.p.repeat_count = repeat;
604 sprintf (message, "Bad repeat count in item %d of list input",
605 dtp->u.p.item_count);
606 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
611 /* To read a logical we have to look ahead in the input stream to make sure
612 there is not an equal sign indicating a variable name. To do this we use
613 line_buffer to point to a temporary buffer, pushing characters there for
614 possible later reading. */
617 l_push_char (st_parameter_dt *dtp, char c)
619 if (dtp->u.p.line_buffer == NULL)
621 dtp->u.p.line_buffer = get_mem (SCRATCH_SIZE);
622 memset (dtp->u.p.line_buffer, 0, SCRATCH_SIZE);
625 dtp->u.p.line_buffer[dtp->u.p.item_count++] = c;
629 /* Read a logical character on the input. */
632 read_logical (st_parameter_dt *dtp, int length)
634 char c, message[100];
637 if (parse_repeat (dtp))
640 c = tolower (next_char (dtp));
641 l_push_char (dtp, c);
647 l_push_char (dtp, c);
649 if (!is_separator(c))
657 l_push_char (dtp, c);
659 if (!is_separator(c))
666 c = tolower (next_char (dtp));
684 return; /* Null value. */
687 /* Save the character in case it is the beginning
688 of the next object name. */
693 dtp->u.p.saved_type = BT_LOGICAL;
694 dtp->u.p.saved_length = length;
696 /* Eat trailing garbage. */
701 while (!is_separator (c));
705 set_integer ((int *) dtp->u.p.value, v, length);
712 for(i = 0; i < 63; i++)
717 /* All done if this is not a namelist read. */
718 if (!dtp->u.p.namelist_mode)
731 l_push_char (dtp, c);
734 dtp->u.p.nml_read_error = 1;
735 dtp->u.p.line_buffer_enabled = 1;
736 dtp->u.p.item_count = 0;
746 if (nml_bad_return (dtp, c))
751 sprintf (message, "Bad logical value while reading item %d",
752 dtp->u.p.item_count);
753 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
758 dtp->u.p.saved_type = BT_LOGICAL;
759 dtp->u.p.saved_length = length;
760 set_integer ((int *) dtp->u.p.value, v, length);
766 /* Reading integers is tricky because we can actually be reading a
767 repeat count. We have to store the characters in a buffer because
768 we could be reading an integer that is larger than the default int
769 used for repeat counts. */
772 read_integer (st_parameter_dt *dtp, int length)
774 char c, message[100];
784 /* Fall through... */
790 CASE_SEPARATORS: /* Single null. */
803 /* Take care of what may be a repeat count. */
815 push_char (dtp, '\0');
818 CASE_SEPARATORS: /* Not a repeat count. */
827 if (convert_integer (dtp, -1, 0))
830 /* Get the real integer. */
845 /* Fall through... */
876 if (nml_bad_return (dtp, c))
881 sprintf (message, "Bad integer for item %d in list input",
882 dtp->u.p.item_count);
883 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
891 push_char (dtp, '\0');
892 if (convert_integer (dtp, length, negative))
899 dtp->u.p.saved_type = BT_INTEGER;
903 /* Read a character variable. */
906 read_character (st_parameter_dt *dtp, int length __attribute__ ((unused)))
908 char c, quote, message[100];
910 quote = ' '; /* Space means no quote character. */
920 unget_char (dtp, c); /* NULL value. */
930 if (dtp->u.p.namelist_mode)
940 /* Deal with a possible repeat count. */
953 goto done; /* String was only digits! */
956 push_char (dtp, '\0');
961 goto get_string; /* Not a repeat count after all. */
966 if (convert_integer (dtp, -1, 0))
969 /* Now get the real string. */
975 unget_char (dtp, c); /* Repeated NULL values. */
1003 /* See if we have a doubled quote character or the end of
1006 c = next_char (dtp);
1009 push_char (dtp, quote);
1013 unget_char (dtp, c);
1019 unget_char (dtp, c);
1023 if (c != '\n' && c != '\r')
1033 /* At this point, we have to have a separator, or else the string is
1036 c = next_char (dtp);
1037 if (is_separator (c) || c == '!')
1039 unget_char (dtp, c);
1040 eat_separator (dtp);
1041 dtp->u.p.saved_type = BT_CHARACTER;
1047 sprintf (message, "Invalid string input in item %d",
1048 dtp->u.p.item_count);
1049 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1054 /* Parse a component of a complex constant or a real number that we
1055 are sure is already there. This is a straight real number parser. */
1058 parse_real (st_parameter_dt *dtp, void *buffer, int length)
1060 char c, message[100];
1063 c = next_char (dtp);
1064 if (c == '-' || c == '+')
1067 c = next_char (dtp);
1070 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1073 if (!isdigit (c) && c != '.')
1075 if (c == 'i' || c == 'I' || c == 'n' || c == 'N')
1083 seen_dp = (c == '.') ? 1 : 0;
1087 c = next_char (dtp);
1088 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1108 push_char (dtp, 'e');
1113 push_char (dtp, 'e');
1115 c = next_char (dtp);
1119 unget_char (dtp, c);
1128 c = next_char (dtp);
1129 if (c != '-' && c != '+')
1130 push_char (dtp, '+');
1134 c = next_char (dtp);
1145 c = next_char (dtp);
1153 unget_char (dtp, c);
1162 unget_char (dtp, c);
1163 push_char (dtp, '\0');
1165 m = convert_real (dtp, buffer, dtp->u.p.saved_string, length);
1171 /* Match INF and Infinity. */
1172 if ((c == 'i' || c == 'I')
1173 && ((c = next_char (dtp)) == 'n' || c == 'N')
1174 && ((c = next_char (dtp)) == 'f' || c == 'F'))
1176 c = next_char (dtp);
1177 if ((c != 'i' && c != 'I')
1178 || ((c == 'i' || c == 'I')
1179 && ((c = next_char (dtp)) == 'n' || c == 'N')
1180 && ((c = next_char (dtp)) == 'i' || c == 'I')
1181 && ((c = next_char (dtp)) == 't' || c == 'T')
1182 && ((c = next_char (dtp)) == 'y' || c == 'Y')
1183 && (c = next_char (dtp))))
1185 if (is_separator (c))
1186 unget_char (dtp, c);
1187 push_char (dtp, 'i');
1188 push_char (dtp, 'n');
1189 push_char (dtp, 'f');
1193 else if (((c = next_char (dtp)) == 'a' || c == 'A')
1194 && ((c = next_char (dtp)) == 'n' || c == 'N')
1195 && (c = next_char (dtp)))
1197 if (is_separator (c))
1198 unget_char (dtp, c);
1199 push_char (dtp, 'n');
1200 push_char (dtp, 'a');
1201 push_char (dtp, 'n');
1207 if (nml_bad_return (dtp, c))
1212 sprintf (message, "Bad floating point number for item %d",
1213 dtp->u.p.item_count);
1214 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1220 /* Reading a complex number is straightforward because we can tell
1221 what it is right away. */
1224 read_complex (st_parameter_dt *dtp, void * dest, int kind, size_t size)
1229 if (parse_repeat (dtp))
1232 c = next_char (dtp);
1239 unget_char (dtp, c);
1240 eat_separator (dtp);
1248 if (parse_real (dtp, dest, kind))
1253 c = next_char (dtp);
1254 if (c == '\n' || c== '\r')
1257 unget_char (dtp, c);
1260 != (dtp->u.p.current_unit->decimal_status == DECIMAL_POINT ? ',' : ';'))
1265 c = next_char (dtp);
1266 if (c == '\n' || c== '\r')
1269 unget_char (dtp, c);
1271 if (parse_real (dtp, dest + size / 2, kind))
1275 if (next_char (dtp) != ')')
1278 c = next_char (dtp);
1279 if (!is_separator (c))
1282 unget_char (dtp, c);
1283 eat_separator (dtp);
1286 dtp->u.p.saved_type = BT_COMPLEX;
1291 if (nml_bad_return (dtp, c))
1296 sprintf (message, "Bad complex value in item %d of list input",
1297 dtp->u.p.item_count);
1298 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1302 /* Parse a real number with a possible repeat count. */
1305 read_real (st_parameter_dt *dtp, void * dest, int length)
1307 char c, message[100];
1313 c = next_char (dtp);
1314 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1332 unget_char (dtp, c); /* Single null. */
1333 eat_separator (dtp);
1346 /* Get the digit string that might be a repeat count. */
1350 c = next_char (dtp);
1351 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1375 push_char (dtp, 'e');
1377 c = next_char (dtp);
1381 push_char (dtp, '\0');
1385 if (c != '\n' && c != ',' && c != '\r' && c != ';')
1386 unget_char (dtp, c);
1395 if (convert_integer (dtp, -1, 0))
1398 /* Now get the number itself. */
1400 c = next_char (dtp);
1401 if (is_separator (c))
1402 { /* Repeated null value. */
1403 unget_char (dtp, c);
1404 eat_separator (dtp);
1408 if (c != '-' && c != '+')
1409 push_char (dtp, '+');
1414 c = next_char (dtp);
1417 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1420 if (!isdigit (c) && c != '.')
1422 if (c == 'i' || c == 'I' || c == 'n' || c == 'N')
1441 c = next_char (dtp);
1442 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1469 push_char (dtp, 'e');
1471 c = next_char (dtp);
1480 push_char (dtp, 'e');
1482 c = next_char (dtp);
1483 if (c != '+' && c != '-')
1484 push_char (dtp, '+');
1488 c = next_char (dtp);
1498 c = next_char (dtp);
1515 unget_char (dtp, c);
1516 eat_separator (dtp);
1517 push_char (dtp, '\0');
1518 if (convert_real (dtp, dest, dtp->u.p.saved_string, length))
1522 dtp->u.p.saved_type = BT_REAL;
1526 l_push_char (dtp, c);
1529 /* Match INF and Infinity. */
1530 if (c == 'i' || c == 'I')
1532 c = next_char (dtp);
1533 l_push_char (dtp, c);
1534 if (c != 'n' && c != 'N')
1536 c = next_char (dtp);
1537 l_push_char (dtp, c);
1538 if (c != 'f' && c != 'F')
1540 c = next_char (dtp);
1541 l_push_char (dtp, c);
1542 if (!is_separator (c))
1544 if (c != 'i' && c != 'I')
1546 c = next_char (dtp);
1547 l_push_char (dtp, c);
1548 if (c != 'n' && c != 'N')
1550 c = next_char (dtp);
1551 l_push_char (dtp, c);
1552 if (c != 'i' && c != 'I')
1554 c = next_char (dtp);
1555 l_push_char (dtp, c);
1556 if (c != 't' && c != 'T')
1558 c = next_char (dtp);
1559 l_push_char (dtp, c);
1560 if (c != 'y' && c != 'Y')
1562 c = next_char (dtp);
1563 l_push_char (dtp, c);
1569 c = next_char (dtp);
1570 l_push_char (dtp, c);
1571 if (c != 'a' && c != 'A')
1573 c = next_char (dtp);
1574 l_push_char (dtp, c);
1575 if (c != 'n' && c != 'N')
1577 c = next_char (dtp);
1578 l_push_char (dtp, c);
1581 if (!is_separator (c))
1584 if (dtp->u.p.namelist_mode)
1586 if (c == ' ' || c =='\n' || c == '\r')
1589 c = next_char (dtp);
1590 while (c == ' ' || c =='\n' || c == '\r');
1592 l_push_char (dtp, c);
1601 push_char (dtp, 'i');
1602 push_char (dtp, 'n');
1603 push_char (dtp, 'f');
1607 push_char (dtp, 'n');
1608 push_char (dtp, 'a');
1609 push_char (dtp, 'n');
1616 if (dtp->u.p.namelist_mode)
1618 dtp->u.p.nml_read_error = 1;
1619 dtp->u.p.line_buffer_enabled = 1;
1620 dtp->u.p.item_count = 0;
1626 if (nml_bad_return (dtp, c))
1631 sprintf (message, "Bad real number in item %d of list input",
1632 dtp->u.p.item_count);
1633 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1637 /* Check the current type against the saved type to make sure they are
1638 compatible. Returns nonzero if incompatible. */
1641 check_type (st_parameter_dt *dtp, bt type, int len)
1645 if (dtp->u.p.saved_type != BT_NULL && dtp->u.p.saved_type != type)
1647 sprintf (message, "Read type %s where %s was expected for item %d",
1648 type_name (dtp->u.p.saved_type), type_name (type),
1649 dtp->u.p.item_count);
1651 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1655 if (dtp->u.p.saved_type == BT_NULL || dtp->u.p.saved_type == BT_CHARACTER)
1658 if (dtp->u.p.saved_length != len)
1661 "Read kind %d %s where kind %d is required for item %d",
1662 dtp->u.p.saved_length, type_name (dtp->u.p.saved_type), len,
1663 dtp->u.p.item_count);
1664 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1672 /* Top level data transfer subroutine for list reads. Because we have
1673 to deal with repeat counts, the data item is always saved after
1674 reading, usually in the dtp->u.p.value[] array. If a repeat count is
1675 greater than one, we copy the data item multiple times. */
1678 list_formatted_read_scalar (st_parameter_dt *dtp, volatile bt type, void *p,
1679 int kind, size_t size)
1686 dtp->u.p.namelist_mode = 0;
1688 dtp->u.p.eof_jump = &eof_jump;
1689 if (setjmp (eof_jump))
1691 generate_error (&dtp->common, LIBERROR_END, NULL);
1692 if (!is_internal_unit (dtp))
1694 dtp->u.p.current_unit->endfile = AFTER_ENDFILE;
1695 dtp->u.p.current_unit->current_record = 0;
1700 if (dtp->u.p.first_item)
1702 dtp->u.p.first_item = 0;
1703 dtp->u.p.input_complete = 0;
1704 dtp->u.p.repeat_count = 1;
1705 dtp->u.p.at_eol = 0;
1707 c = eat_spaces (dtp);
1708 if (is_separator (c))
1710 /* Found a null value. */
1711 eat_separator (dtp);
1712 dtp->u.p.repeat_count = 0;
1714 /* eat_separator sets this flag if the separator was a comma. */
1715 if (dtp->u.p.comma_flag)
1718 /* eat_separator sets this flag if the separator was a \n or \r. */
1719 if (dtp->u.p.at_eol)
1720 finish_separator (dtp);
1728 if (dtp->u.p.repeat_count > 0)
1730 if (check_type (dtp, type, kind))
1735 if (dtp->u.p.input_complete)
1738 if (dtp->u.p.at_eol)
1739 finish_separator (dtp);
1743 /* Trailing spaces prior to end of line. */
1744 if (dtp->u.p.at_eol)
1745 finish_separator (dtp);
1748 dtp->u.p.saved_type = BT_NULL;
1749 dtp->u.p.repeat_count = 1;
1755 read_integer (dtp, kind);
1758 read_logical (dtp, kind);
1761 read_character (dtp, kind);
1764 read_real (dtp, p, kind);
1765 /* Copy value back to temporary if needed. */
1766 if (dtp->u.p.repeat_count > 0)
1767 memcpy (dtp->u.p.value, p, kind);
1770 read_complex (dtp, p, kind, size);
1771 /* Copy value back to temporary if needed. */
1772 if (dtp->u.p.repeat_count > 0)
1773 memcpy (dtp->u.p.value, p, size);
1776 internal_error (&dtp->common, "Bad type for list read");
1779 if (dtp->u.p.saved_type != BT_CHARACTER && dtp->u.p.saved_type != BT_NULL)
1780 dtp->u.p.saved_length = size;
1782 if ((dtp->common.flags & IOPARM_LIBRETURN_MASK) != IOPARM_LIBRETURN_OK)
1786 switch (dtp->u.p.saved_type)
1790 if (dtp->u.p.repeat_count > 0)
1791 memcpy (p, dtp->u.p.value, size);
1796 memcpy (p, dtp->u.p.value, size);
1800 if (dtp->u.p.saved_string)
1802 m = ((int) size < dtp->u.p.saved_used)
1803 ? (int) size : dtp->u.p.saved_used;
1805 memcpy (p, dtp->u.p.saved_string, m);
1808 q = (gfc_char4_t *) p;
1809 for (i = 0; i < m; i++)
1810 q[i] = (unsigned char) dtp->u.p.saved_string[i];
1814 /* Just delimiters encountered, nothing to copy but SPACE. */
1820 memset (((char *) p) + m, ' ', size - m);
1823 q = (gfc_char4_t *) p;
1824 for (i = m; i < (int) size; i++)
1825 q[i] = (unsigned char) ' ';
1834 if (--dtp->u.p.repeat_count <= 0)
1838 dtp->u.p.eof_jump = NULL;
1843 list_formatted_read (st_parameter_dt *dtp, bt type, void *p, int kind,
1844 size_t size, size_t nelems)
1848 size_t stride = type == BT_CHARACTER ?
1849 size * GFC_SIZE_OF_CHAR_KIND(kind) : size;
1853 /* Big loop over all the elements. */
1854 for (elem = 0; elem < nelems; elem++)
1856 dtp->u.p.item_count++;
1857 list_formatted_read_scalar (dtp, type, tmp + stride*elem, kind, size);
1862 /* Finish a list read. */
1865 finish_list_read (st_parameter_dt *dtp)
1871 fbuf_flush (dtp->u.p.current_unit, dtp->u.p.mode);
1873 if (dtp->u.p.at_eol)
1875 dtp->u.p.at_eol = 0;
1881 c = next_char (dtp);
1885 if (dtp->u.p.current_unit->endfile != NO_ENDFILE)
1887 generate_error (&dtp->common, LIBERROR_END, NULL);
1888 dtp->u.p.current_unit->endfile = AFTER_ENDFILE;
1889 dtp->u.p.current_unit->current_record = 0;
1895 void namelist_read (st_parameter_dt *dtp)
1897 static void nml_match_name (char *name, int len)
1898 static int nml_query (st_parameter_dt *dtp)
1899 static int nml_get_obj_data (st_parameter_dt *dtp,
1900 namelist_info **prev_nl, char *, size_t)
1902 static void nml_untouch_nodes (st_parameter_dt *dtp)
1903 static namelist_info * find_nml_node (st_parameter_dt *dtp,
1905 static int nml_parse_qualifier(descriptor_dimension * ad,
1906 array_loop_spec * ls, int rank, char *)
1907 static void nml_touch_nodes (namelist_info * nl)
1908 static int nml_read_obj (namelist_info *nl, index_type offset,
1909 namelist_info **prev_nl, char *, size_t,
1910 index_type clow, index_type chigh)
1914 /* Inputs a rank-dimensional qualifier, which can contain
1915 singlets, doublets, triplets or ':' with the standard meanings. */
1918 nml_parse_qualifier (st_parameter_dt *dtp, descriptor_dimension *ad,
1919 array_loop_spec *ls, int rank, char *parse_err_msg,
1926 int is_array_section, is_char;
1930 is_array_section = 0;
1931 dtp->u.p.expanded_read = 0;
1933 /* See if this is a character substring qualifier we are looking for. */
1940 /* The next character in the stream should be the '('. */
1942 c = next_char (dtp);
1944 /* Process the qualifier, by dimension and triplet. */
1946 for (dim=0; dim < rank; dim++ )
1948 for (indx=0; indx<3; indx++)
1954 /* Process a potential sign. */
1955 c = next_char (dtp);
1966 unget_char (dtp, c);
1970 /* Process characters up to the next ':' , ',' or ')'. */
1973 c = next_char (dtp);
1978 is_array_section = 1;
1982 if ((c==',' && dim == rank -1)
1983 || (c==')' && dim < rank -1))
1986 sprintf (parse_err_msg, "Bad substring qualifier");
1988 sprintf (parse_err_msg, "Bad number of index fields");
1997 case ' ': case '\t':
1999 c = next_char (dtp);
2004 sprintf (parse_err_msg,
2005 "Bad character in substring qualifier");
2007 sprintf (parse_err_msg, "Bad character in index");
2011 if ((c == ',' || c == ')') && indx == 0
2012 && dtp->u.p.saved_string == 0)
2015 sprintf (parse_err_msg, "Null substring qualifier");
2017 sprintf (parse_err_msg, "Null index field");
2021 if ((c == ':' && indx == 1 && dtp->u.p.saved_string == 0)
2022 || (indx == 2 && dtp->u.p.saved_string == 0))
2025 sprintf (parse_err_msg, "Bad substring qualifier");
2027 sprintf (parse_err_msg, "Bad index triplet");
2031 if (is_char && !is_array_section)
2033 sprintf (parse_err_msg,
2034 "Missing colon in substring qualifier");
2038 /* If '( : ? )' or '( ? : )' break and flag read failure. */
2040 if ((c == ':' && indx == 0 && dtp->u.p.saved_string == 0)
2041 || (indx==1 && dtp->u.p.saved_string == 0))
2047 /* Now read the index. */
2048 if (convert_integer (dtp, sizeof(ssize_t), neg))
2051 sprintf (parse_err_msg, "Bad integer substring qualifier");
2053 sprintf (parse_err_msg, "Bad integer in index");
2059 /* Feed the index values to the triplet arrays. */
2063 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2065 memcpy (&ls[dim].end, dtp->u.p.value, sizeof(ssize_t));
2067 memcpy (&ls[dim].step, dtp->u.p.value, sizeof(ssize_t));
2070 /* Singlet or doublet indices. */
2071 if (c==',' || c==')')
2075 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2077 /* If -std=f95/2003 or an array section is specified,
2078 do not allow excess data to be processed. */
2079 if (is_array_section == 1
2080 || !(compile_options.allow_std & GFC_STD_GNU))
2081 ls[dim].end = ls[dim].start;
2083 dtp->u.p.expanded_read = 1;
2086 /* Check for non-zero rank. */
2087 if (is_array_section == 1 && ls[dim].start != ls[dim].end)
2094 if (is_array_section == 1 && dtp->u.p.expanded_read == 1)
2097 dtp->u.p.expanded_read = 0;
2098 for (i = 0; i < dim; i++)
2099 ls[i].end = ls[i].start;
2102 /* Check the values of the triplet indices. */
2103 if ((ls[dim].start > (ssize_t) GFC_DIMENSION_UBOUND(ad[dim]))
2104 || (ls[dim].start < (ssize_t) GFC_DIMENSION_LBOUND(ad[dim]))
2105 || (ls[dim].end > (ssize_t) GFC_DIMENSION_UBOUND(ad[dim]))
2106 || (ls[dim].end < (ssize_t) GFC_DIMENSION_LBOUND(ad[dim])))
2109 sprintf (parse_err_msg, "Substring out of range");
2111 sprintf (parse_err_msg, "Index %d out of range", dim + 1);
2115 if (((ls[dim].end - ls[dim].start ) * ls[dim].step < 0)
2116 || (ls[dim].step == 0))
2118 sprintf (parse_err_msg, "Bad range in index %d", dim + 1);
2122 /* Initialise the loop index counter. */
2123 ls[dim].idx = ls[dim].start;
2133 static namelist_info *
2134 find_nml_node (st_parameter_dt *dtp, char * var_name)
2136 namelist_info * t = dtp->u.p.ionml;
2139 if (strcmp (var_name, t->var_name) == 0)
2149 /* Visits all the components of a derived type that have
2150 not explicitly been identified in the namelist input.
2151 touched is set and the loop specification initialised
2152 to default values */
2155 nml_touch_nodes (namelist_info * nl)
2157 index_type len = strlen (nl->var_name) + 1;
2159 char * ext_name = (char*)get_mem (len + 1);
2160 memcpy (ext_name, nl->var_name, len-1);
2161 memcpy (ext_name + len - 1, "%", 2);
2162 for (nl = nl->next; nl; nl = nl->next)
2164 if (strncmp (nl->var_name, ext_name, len) == 0)
2167 for (dim=0; dim < nl->var_rank; dim++)
2169 nl->ls[dim].step = 1;
2170 nl->ls[dim].end = GFC_DESCRIPTOR_UBOUND(nl,dim);
2171 nl->ls[dim].start = GFC_DESCRIPTOR_LBOUND(nl,dim);
2172 nl->ls[dim].idx = nl->ls[dim].start;
2182 /* Resets touched for the entire list of nml_nodes, ready for a
2186 nml_untouch_nodes (st_parameter_dt *dtp)
2189 for (t = dtp->u.p.ionml; t; t = t->next)
2194 /* Attempts to input name to namelist name. Returns
2195 dtp->u.p.nml_read_error = 1 on no match. */
2198 nml_match_name (st_parameter_dt *dtp, const char *name, index_type len)
2202 dtp->u.p.nml_read_error = 0;
2203 for (i = 0; i < len; i++)
2205 c = next_char (dtp);
2206 if (tolower (c) != tolower (name[i]))
2208 dtp->u.p.nml_read_error = 1;
2214 /* If the namelist read is from stdin, output the current state of the
2215 namelist to stdout. This is used to implement the non-standard query
2216 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
2217 the names alone are printed. */
2220 nml_query (st_parameter_dt *dtp, char c)
2222 gfc_unit * temp_unit;
2227 static const index_type endlen = 3;
2228 static const char endl[] = "\r\n";
2229 static const char nmlend[] = "&end\r\n";
2231 static const index_type endlen = 2;
2232 static const char endl[] = "\n";
2233 static const char nmlend[] = "&end\n";
2236 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2239 /* Store the current unit and transfer to stdout. */
2241 temp_unit = dtp->u.p.current_unit;
2242 dtp->u.p.current_unit = find_unit (options.stdout_unit);
2244 if (dtp->u.p.current_unit)
2246 dtp->u.p.mode = WRITING;
2247 next_record (dtp, 0);
2249 /* Write the namelist in its entirety. */
2252 namelist_write (dtp);
2254 /* Or write the list of names. */
2258 /* "&namelist_name\n" */
2260 len = dtp->namelist_name_len;
2261 p = write_block (dtp, len + endlen);
2265 memcpy ((char*)(p + 1), dtp->namelist_name, len);
2266 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2267 for (nl = dtp->u.p.ionml; nl; nl = nl->next)
2271 len = strlen (nl->var_name);
2272 p = write_block (dtp, len + endlen);
2276 memcpy ((char*)(p + 1), nl->var_name, len);
2277 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2282 p = write_block (dtp, endlen + 3);
2284 memcpy (p, &nmlend, endlen + 3);
2287 /* Flush the stream to force immediate output. */
2289 fbuf_flush (dtp->u.p.current_unit, WRITING);
2290 sflush (dtp->u.p.current_unit->s);
2291 unlock_unit (dtp->u.p.current_unit);
2296 /* Restore the current unit. */
2298 dtp->u.p.current_unit = temp_unit;
2299 dtp->u.p.mode = READING;
2303 /* Reads and stores the input for the namelist object nl. For an array,
2304 the function loops over the ranges defined by the loop specification.
2305 This default to all the data or to the specification from a qualifier.
2306 nml_read_obj recursively calls itself to read derived types. It visits
2307 all its own components but only reads data for those that were touched
2308 when the name was parsed. If a read error is encountered, an attempt is
2309 made to return to read a new object name because the standard allows too
2310 little data to be available. On the other hand, too much data is an
2314 nml_read_obj (st_parameter_dt *dtp, namelist_info * nl, index_type offset,
2315 namelist_info **pprev_nl, char *nml_err_msg,
2316 size_t nml_err_msg_size, index_type clow, index_type chigh)
2318 namelist_info * cmp;
2325 size_t obj_name_len;
2328 /* This object not touched in name parsing. */
2333 dtp->u.p.repeat_count = 0;
2339 case GFC_DTYPE_INTEGER:
2340 case GFC_DTYPE_LOGICAL:
2344 case GFC_DTYPE_REAL:
2345 dlen = size_from_real_kind (len);
2348 case GFC_DTYPE_COMPLEX:
2349 dlen = size_from_complex_kind (len);
2352 case GFC_DTYPE_CHARACTER:
2353 dlen = chigh ? (chigh - clow + 1) : nl->string_length;
2362 /* Update the pointer to the data, using the current index vector */
2364 pdata = (void*)(nl->mem_pos + offset);
2365 for (dim = 0; dim < nl->var_rank; dim++)
2366 pdata = (void*)(pdata + (nl->ls[dim].idx
2367 - GFC_DESCRIPTOR_LBOUND(nl,dim))
2368 * GFC_DESCRIPTOR_STRIDE(nl,dim) * nl->size);
2370 /* Reset the error flag and try to read next value, if
2371 dtp->u.p.repeat_count=0 */
2373 dtp->u.p.nml_read_error = 0;
2375 if (--dtp->u.p.repeat_count <= 0)
2377 if (dtp->u.p.input_complete)
2379 if (dtp->u.p.at_eol)
2380 finish_separator (dtp);
2381 if (dtp->u.p.input_complete)
2384 /* BT_NULL (equivalent to GFC_DTYPE_UNKNOWN) falls through
2385 for nulls and is detected at default: of switch block. */
2387 dtp->u.p.saved_type = BT_NULL;
2392 case GFC_DTYPE_INTEGER:
2393 read_integer (dtp, len);
2396 case GFC_DTYPE_LOGICAL:
2397 read_logical (dtp, len);
2400 case GFC_DTYPE_CHARACTER:
2401 read_character (dtp, len);
2404 case GFC_DTYPE_REAL:
2405 /* Need to copy data back from the real location to the temp in order
2406 to handle nml reads into arrays. */
2407 read_real (dtp, pdata, len);
2408 memcpy (dtp->u.p.value, pdata, dlen);
2411 case GFC_DTYPE_COMPLEX:
2412 /* Same as for REAL, copy back to temp. */
2413 read_complex (dtp, pdata, len, dlen);
2414 memcpy (dtp->u.p.value, pdata, dlen);
2417 case GFC_DTYPE_DERIVED:
2418 obj_name_len = strlen (nl->var_name) + 1;
2419 obj_name = get_mem (obj_name_len+1);
2420 memcpy (obj_name, nl->var_name, obj_name_len-1);
2421 memcpy (obj_name + obj_name_len - 1, "%", 2);
2423 /* If reading a derived type, disable the expanded read warning
2424 since a single object can have multiple reads. */
2425 dtp->u.p.expanded_read = 0;
2427 /* Now loop over the components. Update the component pointer
2428 with the return value from nml_write_obj. This loop jumps
2429 past nested derived types by testing if the potential
2430 component name contains '%'. */
2432 for (cmp = nl->next;
2434 !strncmp (cmp->var_name, obj_name, obj_name_len) &&
2435 !strchr (cmp->var_name + obj_name_len, '%');
2439 if (nml_read_obj (dtp, cmp, (index_type)(pdata - nl->mem_pos),
2440 pprev_nl, nml_err_msg, nml_err_msg_size,
2441 clow, chigh) == FAILURE)
2447 if (dtp->u.p.input_complete)
2458 snprintf (nml_err_msg, nml_err_msg_size,
2459 "Bad type for namelist object %s", nl->var_name);
2460 internal_error (&dtp->common, nml_err_msg);
2465 /* The standard permits array data to stop short of the number of
2466 elements specified in the loop specification. In this case, we
2467 should be here with dtp->u.p.nml_read_error != 0. Control returns to
2468 nml_get_obj_data and an attempt is made to read object name. */
2471 if (dtp->u.p.nml_read_error)
2473 dtp->u.p.expanded_read = 0;
2477 if (dtp->u.p.saved_type == BT_NULL)
2479 dtp->u.p.expanded_read = 0;
2483 /* Note the switch from GFC_DTYPE_type to BT_type at this point.
2484 This comes about because the read functions return BT_types. */
2486 switch (dtp->u.p.saved_type)
2493 memcpy (pdata, dtp->u.p.value, dlen);
2497 m = (dlen < dtp->u.p.saved_used) ? dlen : dtp->u.p.saved_used;
2498 pdata = (void*)( pdata + clow - 1 );
2499 memcpy (pdata, dtp->u.p.saved_string, m);
2501 memset ((void*)( pdata + m ), ' ', dlen - m);
2508 /* Warn if a non-standard expanded read occurs. A single read of a
2509 single object is acceptable. If a second read occurs, issue a warning
2510 and set the flag to zero to prevent further warnings. */
2511 if (dtp->u.p.expanded_read == 2)
2513 notify_std (&dtp->common, GFC_STD_GNU, "Non-standard expanded namelist read.");
2514 dtp->u.p.expanded_read = 0;
2517 /* If the expanded read warning flag is set, increment it,
2518 indicating that a single read has occurred. */
2519 if (dtp->u.p.expanded_read >= 1)
2520 dtp->u.p.expanded_read++;
2522 /* Break out of loop if scalar. */
2526 /* Now increment the index vector. */
2531 for (dim = 0; dim < nl->var_rank; dim++)
2533 nl->ls[dim].idx += nml_carry * nl->ls[dim].step;
2535 if (((nl->ls[dim].step > 0) && (nl->ls[dim].idx > nl->ls[dim].end))
2537 ((nl->ls[dim].step < 0) && (nl->ls[dim].idx < nl->ls[dim].end)))
2539 nl->ls[dim].idx = nl->ls[dim].start;
2543 } while (!nml_carry);
2545 if (dtp->u.p.repeat_count > 1)
2547 snprintf (nml_err_msg, nml_err_msg_size,
2548 "Repeat count too large for namelist object %s", nl->var_name);
2558 /* Parses the object name, including array and substring qualifiers. It
2559 iterates over derived type components, touching those components and
2560 setting their loop specifications, if there is a qualifier. If the
2561 object is itself a derived type, its components and subcomponents are
2562 touched. nml_read_obj is called at the end and this reads the data in
2563 the manner specified by the object name. */
2566 nml_get_obj_data (st_parameter_dt *dtp, namelist_info **pprev_nl,
2567 char *nml_err_msg, size_t nml_err_msg_size)
2571 namelist_info * first_nl = NULL;
2572 namelist_info * root_nl = NULL;
2573 int dim, parsed_rank;
2574 int component_flag, qualifier_flag;
2575 index_type clow, chigh;
2576 int non_zero_rank_count;
2578 /* Look for end of input or object name. If '?' or '=?' are encountered
2579 in stdin, print the node names or the namelist to stdout. */
2581 eat_separator (dtp);
2582 if (dtp->u.p.input_complete)
2585 if (dtp->u.p.at_eol)
2586 finish_separator (dtp);
2587 if (dtp->u.p.input_complete)
2590 c = next_char (dtp);
2594 c = next_char (dtp);
2597 sprintf (nml_err_msg, "namelist read: misplaced = sign");
2600 nml_query (dtp, '=');
2604 nml_query (dtp, '?');
2609 nml_match_name (dtp, "end", 3);
2610 if (dtp->u.p.nml_read_error)
2612 sprintf (nml_err_msg, "namelist not terminated with / or &end");
2616 dtp->u.p.input_complete = 1;
2623 /* Untouch all nodes of the namelist and reset the flags that are set for
2624 derived type components. */
2626 nml_untouch_nodes (dtp);
2629 non_zero_rank_count = 0;
2631 /* Get the object name - should '!' and '\n' be permitted separators? */
2639 if (!is_separator (c))
2640 push_char (dtp, tolower(c));
2641 c = next_char (dtp);
2642 } while (!( c=='=' || c==' ' || c=='\t' || c =='(' || c =='%' ));
2644 unget_char (dtp, c);
2646 /* Check that the name is in the namelist and get pointer to object.
2647 Three error conditions exist: (i) An attempt is being made to
2648 identify a non-existent object, following a failed data read or
2649 (ii) The object name does not exist or (iii) Too many data items
2650 are present for an object. (iii) gives the same error message
2653 push_char (dtp, '\0');
2657 size_t var_len = strlen (root_nl->var_name);
2659 = dtp->u.p.saved_string ? strlen (dtp->u.p.saved_string) : 0;
2660 char ext_name[var_len + saved_len + 1];
2662 memcpy (ext_name, root_nl->var_name, var_len);
2663 if (dtp->u.p.saved_string)
2664 memcpy (ext_name + var_len, dtp->u.p.saved_string, saved_len);
2665 ext_name[var_len + saved_len] = '\0';
2666 nl = find_nml_node (dtp, ext_name);
2669 nl = find_nml_node (dtp, dtp->u.p.saved_string);
2673 if (dtp->u.p.nml_read_error && *pprev_nl)
2674 snprintf (nml_err_msg, nml_err_msg_size,
2675 "Bad data for namelist object %s", (*pprev_nl)->var_name);
2678 snprintf (nml_err_msg, nml_err_msg_size,
2679 "Cannot match namelist object name %s",
2680 dtp->u.p.saved_string);
2685 /* Get the length, data length, base pointer and rank of the variable.
2686 Set the default loop specification first. */
2688 for (dim=0; dim < nl->var_rank; dim++)
2690 nl->ls[dim].step = 1;
2691 nl->ls[dim].end = GFC_DESCRIPTOR_UBOUND(nl,dim);
2692 nl->ls[dim].start = GFC_DESCRIPTOR_LBOUND(nl,dim);
2693 nl->ls[dim].idx = nl->ls[dim].start;
2696 /* Check to see if there is a qualifier: if so, parse it.*/
2698 if (c == '(' && nl->var_rank)
2701 if (nml_parse_qualifier (dtp, nl->dim, nl->ls, nl->var_rank,
2702 nml_err_msg, &parsed_rank) == FAILURE)
2704 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2705 snprintf (nml_err_msg_end,
2706 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2707 " for namelist variable %s", nl->var_name);
2710 if (parsed_rank > 0)
2711 non_zero_rank_count++;
2715 c = next_char (dtp);
2716 unget_char (dtp, c);
2718 else if (nl->var_rank > 0)
2719 non_zero_rank_count++;
2721 /* Now parse a derived type component. The root namelist_info address
2722 is backed up, as is the previous component level. The component flag
2723 is set and the iteration is made by jumping back to get_name. */
2727 if (nl->type != GFC_DTYPE_DERIVED)
2729 snprintf (nml_err_msg, nml_err_msg_size,
2730 "Attempt to get derived component for %s", nl->var_name);
2734 if (!component_flag)
2740 c = next_char (dtp);
2744 /* Parse a character qualifier, if present. chigh = 0 is a default
2745 that signals that the string length = string_length. */
2750 if (c == '(' && nl->type == GFC_DTYPE_CHARACTER)
2752 descriptor_dimension chd[1] = { {1, clow, nl->string_length} };
2753 array_loop_spec ind[1] = { {1, clow, nl->string_length, 1} };
2755 if (nml_parse_qualifier (dtp, chd, ind, -1, nml_err_msg, &parsed_rank)
2758 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2759 snprintf (nml_err_msg_end,
2760 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2761 " for namelist variable %s", nl->var_name);
2765 clow = ind[0].start;
2768 if (ind[0].step != 1)
2770 snprintf (nml_err_msg, nml_err_msg_size,
2771 "Step not allowed in substring qualifier"
2772 " for namelist object %s", nl->var_name);
2776 c = next_char (dtp);
2777 unget_char (dtp, c);
2780 /* Make sure no extraneous qualifiers are there. */
2784 snprintf (nml_err_msg, nml_err_msg_size,
2785 "Qualifier for a scalar or non-character namelist object %s",
2790 /* Make sure there is no more than one non-zero rank object. */
2791 if (non_zero_rank_count > 1)
2793 snprintf (nml_err_msg, nml_err_msg_size,
2794 "Multiple sub-objects with non-zero rank in namelist object %s",
2796 non_zero_rank_count = 0;
2800 /* According to the standard, an equal sign MUST follow an object name. The
2801 following is possibly lax - it allows comments, blank lines and so on to
2802 intervene. eat_spaces (dtp); c = next_char (dtp); would be compliant*/
2806 eat_separator (dtp);
2807 if (dtp->u.p.input_complete)
2810 if (dtp->u.p.at_eol)
2811 finish_separator (dtp);
2812 if (dtp->u.p.input_complete)
2815 c = next_char (dtp);
2819 snprintf (nml_err_msg, nml_err_msg_size,
2820 "Equal sign must follow namelist object name %s",
2824 /* If a derived type, touch its components and restore the root
2825 namelist_info if we have parsed a qualified derived type
2828 if (nl->type == GFC_DTYPE_DERIVED)
2829 nml_touch_nodes (nl);
2833 if (first_nl->var_rank == 0)
2835 if (component_flag && qualifier_flag)
2842 if (nml_read_obj (dtp, nl, 0, pprev_nl, nml_err_msg, nml_err_msg_size,
2843 clow, chigh) == FAILURE)
2853 /* Entry point for namelist input. Goes through input until namelist name
2854 is matched. Then cycles through nml_get_obj_data until the input is
2855 completed or there is an error. */
2858 namelist_read (st_parameter_dt *dtp)
2862 char nml_err_msg[200];
2863 /* Pointer to the previously read object, in case attempt is made to read
2864 new object name. Should this fail, error message can give previous
2866 namelist_info *prev_nl = NULL;
2868 dtp->u.p.namelist_mode = 1;
2869 dtp->u.p.input_complete = 0;
2870 dtp->u.p.expanded_read = 0;
2872 dtp->u.p.eof_jump = &eof_jump;
2873 if (setjmp (eof_jump))
2875 dtp->u.p.eof_jump = NULL;
2876 generate_error (&dtp->common, LIBERROR_END, NULL);
2880 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
2881 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
2882 node names or namelist on stdout. */
2885 switch (c = next_char (dtp))
2896 c = next_char (dtp);
2898 nml_query (dtp, '=');
2900 unget_char (dtp, c);
2904 nml_query (dtp, '?');
2910 /* Match the name of the namelist. */
2912 nml_match_name (dtp, dtp->namelist_name, dtp->namelist_name_len);
2914 if (dtp->u.p.nml_read_error)
2917 /* A trailing space is required, we give a little lattitude here, 10.9.1. */
2918 c = next_char (dtp);
2919 if (!is_separator(c) && c != '!')
2921 unget_char (dtp, c);
2925 unget_char (dtp, c);
2926 eat_separator (dtp);
2928 /* Ready to read namelist objects. If there is an error in input
2929 from stdin, output the error message and continue. */
2931 while (!dtp->u.p.input_complete)
2933 if (nml_get_obj_data (dtp, &prev_nl, nml_err_msg, sizeof nml_err_msg)
2938 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2941 u = find_unit (options.stderr_unit);
2942 st_printf ("%s\n", nml_err_msg);
2952 dtp->u.p.eof_jump = NULL;
2957 /* All namelist error calls return from here */
2961 dtp->u.p.eof_jump = NULL;
2964 generate_error (&dtp->common, LIBERROR_READ_VALUE, nml_err_msg);