1 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
3 Namelist input contributed by Paul Thomas
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with Libgfortran; see the file COPYING. If not, write to
28 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
35 #include "libgfortran.h"
39 /* List directed input. Several parsing subroutines are practically
40 reimplemented from formatted input, the reason being that there are
41 all kinds of small differences between formatted and list directed
45 /* Subroutines for reading characters from the input. Because a
46 repeat count is ambiguous with an integer, we have to read the
47 whole digit string before seeing if there is a '*' which signals
48 the repeat count. Since we can have a lot of potential leading
49 zeros, we have to be able to back up by arbitrary amount. Because
50 the input might not be seekable, we have to buffer the data
53 #define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
54 case '5': case '6': case '7': case '8': case '9'
56 #define CASE_SEPARATORS case ' ': case ',': case '/': case '\n': case '\t': \
59 /* This macro assumes that we're operating on a variable. */
61 #define is_separator(c) (c == '/' || c == ',' || c == '\n' || c == ' ' \
62 || c == '\t' || c == '\r')
64 /* Maximum repeat count. Less than ten times the maximum signed int32. */
66 #define MAX_REPEAT 200000000
69 /* Save a character to a string buffer, enlarging it as necessary. */
72 push_char (st_parameter_dt
*dtp
, char c
)
76 if (dtp
->u
.p
.saved_string
== NULL
)
78 if (dtp
->u
.p
.scratch
== NULL
)
79 dtp
->u
.p
.scratch
= get_mem (SCRATCH_SIZE
);
80 dtp
->u
.p
.saved_string
= dtp
->u
.p
.scratch
;
81 memset (dtp
->u
.p
.saved_string
, 0, SCRATCH_SIZE
);
82 dtp
->u
.p
.saved_length
= SCRATCH_SIZE
;
83 dtp
->u
.p
.saved_used
= 0;
86 if (dtp
->u
.p
.saved_used
>= dtp
->u
.p
.saved_length
)
88 dtp
->u
.p
.saved_length
= 2 * dtp
->u
.p
.saved_length
;
89 new = get_mem (2 * dtp
->u
.p
.saved_length
);
91 memset (new, 0, 2 * dtp
->u
.p
.saved_length
);
93 memcpy (new, dtp
->u
.p
.saved_string
, dtp
->u
.p
.saved_used
);
94 if (dtp
->u
.p
.saved_string
!= dtp
->u
.p
.scratch
)
95 free_mem (dtp
->u
.p
.saved_string
);
97 dtp
->u
.p
.saved_string
= new;
100 dtp
->u
.p
.saved_string
[dtp
->u
.p
.saved_used
++] = c
;
104 /* Free the input buffer if necessary. */
107 free_saved (st_parameter_dt
*dtp
)
109 if (dtp
->u
.p
.saved_string
== NULL
)
112 if (dtp
->u
.p
.saved_string
!= dtp
->u
.p
.scratch
)
113 free_mem (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 if (dtp
->u
.p
.line_buffer
== NULL
)
128 free_mem (dtp
->u
.p
.line_buffer
);
129 dtp
->u
.p
.line_buffer
= NULL
;
134 next_char (st_parameter_dt
*dtp
)
140 if (dtp
->u
.p
.last_char
!= '\0')
143 c
= dtp
->u
.p
.last_char
;
144 dtp
->u
.p
.last_char
= '\0';
148 /* Read from line_buffer if enabled. */
150 if (dtp
->u
.p
.line_buffer_enabled
)
154 c
= dtp
->u
.p
.line_buffer
[dtp
->u
.p
.item_count
];
155 if (c
!= '\0' && dtp
->u
.p
.item_count
< 64)
157 dtp
->u
.p
.line_buffer
[dtp
->u
.p
.item_count
] = '\0';
158 dtp
->u
.p
.item_count
++;
162 dtp
->u
.p
.item_count
= 0;
163 dtp
->u
.p
.line_buffer_enabled
= 0;
166 /* Handle the end-of-record condition for internal array unit */
167 if (is_array_io(dtp
) && dtp
->u
.p
.current_unit
->bytes_left
== 0)
170 record
= next_array_record (dtp
, dtp
->u
.p
.current_unit
->ls
);
172 /* Check for "end-of-file" condition */
174 longjmp (*dtp
->u
.p
.eof_jump
, 1);
176 record
*= dtp
->u
.p
.current_unit
->recl
;
178 if (sseek (dtp
->u
.p
.current_unit
->s
, record
) == FAILURE
)
179 longjmp (*dtp
->u
.p
.eof_jump
, 1);
181 dtp
->u
.p
.current_unit
->bytes_left
= dtp
->u
.p
.current_unit
->recl
;
185 /* Get the next character and handle end-of-record conditions */
189 p
= salloc_r (dtp
->u
.p
.current_unit
->s
, &length
);
191 if (is_stream_io (dtp
))
192 dtp
->u
.p
.current_unit
->strm_pos
++;
194 if (is_internal_unit(dtp
))
196 if (is_array_io(dtp
))
198 /* End of record is handled in the next pass through, above. The
199 check for NULL here is cautionary. */
202 generate_error (&dtp
->common
, ERROR_INTERNAL_UNIT
, NULL
);
206 dtp
->u
.p
.current_unit
->bytes_left
--;
212 longjmp (*dtp
->u
.p
.eof_jump
, 1);
223 generate_error (&dtp
->common
, ERROR_OS
, NULL
);
227 longjmp (*dtp
->u
.p
.eof_jump
, 1);
231 dtp
->u
.p
.at_eol
= (c
== '\n' || c
== '\r');
236 /* Push a character back onto the input. */
239 unget_char (st_parameter_dt
*dtp
, char c
)
241 dtp
->u
.p
.last_char
= c
;
245 /* Skip over spaces in the input. Returns the nonspace character that
246 terminated the eating and also places it back on the input. */
249 eat_spaces (st_parameter_dt
*dtp
)
257 while (c
== ' ' || c
== '\t');
264 /* Skip over a separator. Technically, we don't always eat the whole
265 separator. This is because if we've processed the last input item,
266 then a separator is unnecessary. Plus the fact that operating
267 systems usually deliver console input on a line basis.
269 The upshot is that if we see a newline as part of reading a
270 separator, we stop reading. If there are more input items, we
271 continue reading the separator with finish_separator() which takes
272 care of the fact that we may or may not have seen a comma as part
276 eat_separator (st_parameter_dt
*dtp
)
281 dtp
->u
.p
.comma_flag
= 0;
287 dtp
->u
.p
.comma_flag
= 1;
292 dtp
->u
.p
.input_complete
= 1;
308 if (dtp
->u
.p
.namelist_mode
)
309 { /* Eat a namelist comment. */
317 /* Fall Through... */
326 /* Finish processing a separator that was interrupted by a newline.
327 If we're here, then another data item is present, so we finish what
328 we started on the previous line. */
331 finish_separator (st_parameter_dt
*dtp
)
342 if (dtp
->u
.p
.comma_flag
)
346 c
= eat_spaces (dtp
);
347 if (c
== '\n' || c
== '\r')
354 dtp
->u
.p
.input_complete
= 1;
355 if (!dtp
->u
.p
.namelist_mode
) next_record (dtp
, 0);
363 if (dtp
->u
.p
.namelist_mode
)
379 /* This function reads characters through to the end of the current line and
380 just ignores them. */
383 eat_line (st_parameter_dt
*dtp
)
386 if (!is_internal_unit (dtp
))
393 /* This function is needed to catch bad conversions so that namelist can
394 attempt to see if dtp->u.p.saved_string contains a new object name rather
398 nml_bad_return (st_parameter_dt
*dtp
, char c
)
400 if (dtp
->u
.p
.namelist_mode
)
402 dtp
->u
.p
.nml_read_error
= 1;
409 /* Convert an unsigned string to an integer. The length value is -1
410 if we are working on a repeat count. Returns nonzero if we have a
411 range problem. As a side effect, frees the dtp->u.p.saved_string. */
414 convert_integer (st_parameter_dt
*dtp
, int length
, int negative
)
416 char c
, *buffer
, message
[100];
418 GFC_INTEGER_LARGEST v
, max
, max10
;
420 buffer
= dtp
->u
.p
.saved_string
;
423 max
= (length
== -1) ? MAX_REPEAT
: max_value (length
, 1);
448 set_integer (dtp
->u
.p
.value
, v
, length
);
452 dtp
->u
.p
.repeat_count
= v
;
454 if (dtp
->u
.p
.repeat_count
== 0)
456 st_sprintf (message
, "Zero repeat count in item %d of list input",
457 dtp
->u
.p
.item_count
);
459 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
469 st_sprintf (message
, "Repeat count overflow in item %d of list input",
470 dtp
->u
.p
.item_count
);
472 st_sprintf (message
, "Integer overflow while reading item %d",
473 dtp
->u
.p
.item_count
);
476 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
482 /* Parse a repeat count for logical and complex values which cannot
483 begin with a digit. Returns nonzero if we are done, zero if we
484 should continue on. */
487 parse_repeat (st_parameter_dt
*dtp
)
489 char c
, message
[100];
515 repeat
= 10 * repeat
+ c
- '0';
517 if (repeat
> MAX_REPEAT
)
520 "Repeat count overflow in item %d of list input",
521 dtp
->u
.p
.item_count
);
523 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
533 "Zero repeat count in item %d of list input",
534 dtp
->u
.p
.item_count
);
536 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
548 dtp
->u
.p
.repeat_count
= repeat
;
555 st_sprintf (message
, "Bad repeat count in item %d of list input",
556 dtp
->u
.p
.item_count
);
557 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
562 /* To read a logical we have to look ahead in the input stream to make sure
563 there is not an equal sign indicating a variable name. To do this we use
564 line_buffer to point to a temporary buffer, pushing characters there for
565 possible later reading. */
568 l_push_char (st_parameter_dt
*dtp
, char c
)
570 if (dtp
->u
.p
.line_buffer
== NULL
)
572 dtp
->u
.p
.line_buffer
= get_mem (SCRATCH_SIZE
);
573 memset (dtp
->u
.p
.line_buffer
, 0, SCRATCH_SIZE
);
576 dtp
->u
.p
.line_buffer
[dtp
->u
.p
.item_count
++] = c
;
580 /* Read a logical character on the input. */
583 read_logical (st_parameter_dt
*dtp
, int length
)
585 char c
, message
[100];
588 if (parse_repeat (dtp
))
591 c
= tolower (next_char (dtp
));
592 l_push_char (dtp
, c
);
598 l_push_char (dtp
, c
);
600 if (!is_separator(c
))
608 l_push_char (dtp
, c
);
610 if (!is_separator(c
))
616 c
= tolower (next_char (dtp
));
634 return; /* Null value. */
640 dtp
->u
.p
.saved_type
= BT_LOGICAL
;
641 dtp
->u
.p
.saved_length
= length
;
643 /* Eat trailing garbage. */
648 while (!is_separator (c
));
652 dtp
->u
.p
.item_count
= 0;
653 dtp
->u
.p
.line_buffer_enabled
= 0;
654 set_integer ((int *) dtp
->u
.p
.value
, v
, length
);
661 for(i
= 0; i
< 63; i
++)
666 /* All done if this is not a namelist read. */
667 if (!dtp
->u
.p
.namelist_mode
)
680 l_push_char (dtp
, c
);
683 dtp
->u
.p
.nml_read_error
= 1;
684 dtp
->u
.p
.line_buffer_enabled
= 1;
685 dtp
->u
.p
.item_count
= 0;
695 if (nml_bad_return (dtp
, c
))
700 st_sprintf (message
, "Bad logical value while reading item %d",
701 dtp
->u
.p
.item_count
);
702 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
707 dtp
->u
.p
.item_count
= 0;
708 dtp
->u
.p
.line_buffer_enabled
= 0;
709 dtp
->u
.p
.saved_type
= BT_LOGICAL
;
710 dtp
->u
.p
.saved_length
= length
;
711 set_integer ((int *) dtp
->u
.p
.value
, v
, length
);
717 /* Reading integers is tricky because we can actually be reading a
718 repeat count. We have to store the characters in a buffer because
719 we could be reading an integer that is larger than the default int
720 used for repeat counts. */
723 read_integer (st_parameter_dt
*dtp
, int length
)
725 char c
, message
[100];
735 /* Fall through... */
741 CASE_SEPARATORS
: /* Single null. */
754 /* Take care of what may be a repeat count. */
766 push_char (dtp
, '\0');
769 CASE_SEPARATORS
: /* Not a repeat count. */
778 if (convert_integer (dtp
, -1, 0))
781 /* Get the real integer. */
796 /* Fall through... */
827 if (nml_bad_return (dtp
, c
))
832 st_sprintf (message
, "Bad integer for item %d in list input",
833 dtp
->u
.p
.item_count
);
834 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
842 push_char (dtp
, '\0');
843 if (convert_integer (dtp
, length
, negative
))
850 dtp
->u
.p
.saved_type
= BT_INTEGER
;
854 /* Read a character variable. */
857 read_character (st_parameter_dt
*dtp
, int length
__attribute__ ((unused
)))
859 char c
, quote
, message
[100];
861 quote
= ' '; /* Space means no quote character. */
871 unget_char (dtp
, c
); /* NULL value. */
881 if (dtp
->u
.p
.namelist_mode
)
890 /* Deal with a possible repeat count. */
903 goto done
; /* String was only digits! */
906 push_char (dtp
, '\0');
911 goto get_string
; /* Not a repeat count after all. */
916 if (convert_integer (dtp
, -1, 0))
919 /* Now get the real string. */
925 unget_char (dtp
, c
); /* Repeated NULL values. */
953 /* See if we have a doubled quote character or the end of
959 push_char (dtp
, quote
);
973 if (c
!= '\n' && c
!= '\r')
983 /* At this point, we have to have a separator, or else the string is
987 if (is_separator (c
))
991 dtp
->u
.p
.saved_type
= BT_CHARACTER
;
996 st_sprintf (message
, "Invalid string input in item %d",
997 dtp
->u
.p
.item_count
);
998 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1003 /* Parse a component of a complex constant or a real number that we
1004 are sure is already there. This is a straight real number parser. */
1007 parse_real (st_parameter_dt
*dtp
, void *buffer
, int length
)
1009 char c
, message
[100];
1012 c
= next_char (dtp
);
1013 if (c
== '-' || c
== '+')
1016 c
= next_char (dtp
);
1019 if (!isdigit (c
) && c
!= '.')
1024 seen_dp
= (c
== '.') ? 1 : 0;
1028 c
= next_char (dtp
);
1047 push_char (dtp
, 'e');
1052 push_char (dtp
, 'e');
1054 c
= next_char (dtp
);
1058 unget_char (dtp
, c
);
1067 c
= next_char (dtp
);
1068 if (c
!= '-' && c
!= '+')
1069 push_char (dtp
, '+');
1073 c
= next_char (dtp
);
1083 c
= next_char (dtp
);
1091 unget_char (dtp
, c
);
1100 unget_char (dtp
, c
);
1101 push_char (dtp
, '\0');
1103 m
= convert_real (dtp
, buffer
, dtp
->u
.p
.saved_string
, length
);
1110 if (nml_bad_return (dtp
, c
))
1115 st_sprintf (message
, "Bad floating point number for item %d",
1116 dtp
->u
.p
.item_count
);
1117 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1123 /* Reading a complex number is straightforward because we can tell
1124 what it is right away. */
1127 read_complex (st_parameter_dt
*dtp
, int kind
, size_t size
)
1132 if (parse_repeat (dtp
))
1135 c
= next_char (dtp
);
1142 unget_char (dtp
, c
);
1143 eat_separator (dtp
);
1151 if (parse_real (dtp
, dtp
->u
.p
.value
, kind
))
1156 c
= next_char (dtp
);
1157 if (c
== '\n' || c
== '\r')
1160 unget_char (dtp
, c
);
1162 if (next_char (dtp
) != ',')
1167 c
= next_char (dtp
);
1168 if (c
== '\n' || c
== '\r')
1171 unget_char (dtp
, c
);
1173 if (parse_real (dtp
, dtp
->u
.p
.value
+ size
/ 2, kind
))
1177 if (next_char (dtp
) != ')')
1180 c
= next_char (dtp
);
1181 if (!is_separator (c
))
1184 unget_char (dtp
, c
);
1185 eat_separator (dtp
);
1188 dtp
->u
.p
.saved_type
= BT_COMPLEX
;
1193 if (nml_bad_return (dtp
, c
))
1198 st_sprintf (message
, "Bad complex value in item %d of list input",
1199 dtp
->u
.p
.item_count
);
1200 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1204 /* Parse a real number with a possible repeat count. */
1207 read_real (st_parameter_dt
*dtp
, int length
)
1209 char c
, message
[100];
1214 c
= next_char (dtp
);
1231 unget_char (dtp
, c
); /* Single null. */
1232 eat_separator (dtp
);
1239 /* Get the digit string that might be a repeat count. */
1243 c
= next_char (dtp
);
1266 push_char (dtp
, 'e');
1268 c
= next_char (dtp
);
1272 push_char (dtp
, '\0');
1276 if (c
!= '\n' && c
!= ',' && c
!= '\r')
1277 unget_char (dtp
, c
);
1286 if (convert_integer (dtp
, -1, 0))
1289 /* Now get the number itself. */
1291 c
= next_char (dtp
);
1292 if (is_separator (c
))
1293 { /* Repeated null value. */
1294 unget_char (dtp
, c
);
1295 eat_separator (dtp
);
1299 if (c
!= '-' && c
!= '+')
1300 push_char (dtp
, '+');
1305 c
= next_char (dtp
);
1308 if (!isdigit (c
) && c
!= '.')
1324 c
= next_char (dtp
);
1350 push_char (dtp
, 'e');
1352 c
= next_char (dtp
);
1361 push_char (dtp
, 'e');
1363 c
= next_char (dtp
);
1364 if (c
!= '+' && c
!= '-')
1365 push_char (dtp
, '+');
1369 c
= next_char (dtp
);
1379 c
= next_char (dtp
);
1396 unget_char (dtp
, c
);
1397 eat_separator (dtp
);
1398 push_char (dtp
, '\0');
1399 if (convert_real (dtp
, dtp
->u
.p
.value
, dtp
->u
.p
.saved_string
, length
))
1403 dtp
->u
.p
.saved_type
= BT_REAL
;
1408 if (nml_bad_return (dtp
, c
))
1413 st_sprintf (message
, "Bad real number in item %d of list input",
1414 dtp
->u
.p
.item_count
);
1415 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1419 /* Check the current type against the saved type to make sure they are
1420 compatible. Returns nonzero if incompatible. */
1423 check_type (st_parameter_dt
*dtp
, bt type
, int len
)
1427 if (dtp
->u
.p
.saved_type
!= BT_NULL
&& dtp
->u
.p
.saved_type
!= type
)
1429 st_sprintf (message
, "Read type %s where %s was expected for item %d",
1430 type_name (dtp
->u
.p
.saved_type
), type_name (type
),
1431 dtp
->u
.p
.item_count
);
1433 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1437 if (dtp
->u
.p
.saved_type
== BT_NULL
|| dtp
->u
.p
.saved_type
== BT_CHARACTER
)
1440 if (dtp
->u
.p
.saved_length
!= len
)
1442 st_sprintf (message
,
1443 "Read kind %d %s where kind %d is required for item %d",
1444 dtp
->u
.p
.saved_length
, type_name (dtp
->u
.p
.saved_type
), len
,
1445 dtp
->u
.p
.item_count
);
1446 generate_error (&dtp
->common
, ERROR_READ_VALUE
, message
);
1454 /* Top level data transfer subroutine for list reads. Because we have
1455 to deal with repeat counts, the data item is always saved after
1456 reading, usually in the dtp->u.p.value[] array. If a repeat count is
1457 greater than one, we copy the data item multiple times. */
1460 list_formatted_read_scalar (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1467 dtp
->u
.p
.namelist_mode
= 0;
1469 dtp
->u
.p
.eof_jump
= &eof_jump
;
1470 if (setjmp (eof_jump
))
1472 generate_error (&dtp
->common
, ERROR_END
, NULL
);
1476 if (dtp
->u
.p
.first_item
)
1478 dtp
->u
.p
.first_item
= 0;
1479 dtp
->u
.p
.input_complete
= 0;
1480 dtp
->u
.p
.repeat_count
= 1;
1481 dtp
->u
.p
.at_eol
= 0;
1483 c
= eat_spaces (dtp
);
1484 if (is_separator (c
))
1485 { /* Found a null value. */
1486 eat_separator (dtp
);
1487 dtp
->u
.p
.repeat_count
= 0;
1489 /* eat_separator sets this flag if the separator was a comma */
1490 if (dtp
->u
.p
.comma_flag
)
1493 /* eat_separator sets this flag if the separator was a \n or \r */
1494 if (dtp
->u
.p
.at_eol
)
1495 finish_separator (dtp
);
1503 if (dtp
->u
.p
.input_complete
)
1506 if (dtp
->u
.p
.repeat_count
> 0)
1508 if (check_type (dtp
, type
, kind
))
1513 if (dtp
->u
.p
.at_eol
)
1514 finish_separator (dtp
);
1518 /* trailing spaces prior to end of line */
1519 if (dtp
->u
.p
.at_eol
)
1520 finish_separator (dtp
);
1523 dtp
->u
.p
.saved_type
= BT_NULL
;
1524 dtp
->u
.p
.repeat_count
= 1;
1530 read_integer (dtp
, kind
);
1533 read_logical (dtp
, kind
);
1536 read_character (dtp
, kind
);
1539 read_real (dtp
, kind
);
1542 read_complex (dtp
, kind
, size
);
1545 internal_error (&dtp
->common
, "Bad type for list read");
1548 if (dtp
->u
.p
.saved_type
!= BT_CHARACTER
&& dtp
->u
.p
.saved_type
!= BT_NULL
)
1549 dtp
->u
.p
.saved_length
= size
;
1551 if ((dtp
->common
.flags
& IOPARM_LIBRETURN_MASK
) != IOPARM_LIBRETURN_OK
)
1555 switch (dtp
->u
.p
.saved_type
)
1561 memcpy (p
, dtp
->u
.p
.value
, size
);
1565 if (dtp
->u
.p
.saved_string
)
1567 m
= ((int) size
< dtp
->u
.p
.saved_used
)
1568 ? (int) size
: dtp
->u
.p
.saved_used
;
1569 memcpy (p
, dtp
->u
.p
.saved_string
, m
);
1572 /* Just delimiters encountered, nothing to copy but SPACE. */
1576 memset (((char *) p
) + m
, ' ', size
- m
);
1583 if (--dtp
->u
.p
.repeat_count
<= 0)
1587 dtp
->u
.p
.eof_jump
= NULL
;
1592 list_formatted_read (st_parameter_dt
*dtp
, bt type
, void *p
, int kind
,
1593 size_t size
, size_t nelems
)
1600 /* Big loop over all the elements. */
1601 for (elem
= 0; elem
< nelems
; elem
++)
1603 dtp
->u
.p
.item_count
++;
1604 list_formatted_read_scalar (dtp
, type
, tmp
+ size
*elem
, kind
, size
);
1609 /* Finish a list read. */
1612 finish_list_read (st_parameter_dt
*dtp
)
1618 if (dtp
->u
.p
.at_eol
)
1620 dtp
->u
.p
.at_eol
= 0;
1626 c
= next_char (dtp
);
1633 void namelist_read (st_parameter_dt *dtp)
1635 static void nml_match_name (char *name, int len)
1636 static int nml_query (st_parameter_dt *dtp)
1637 static int nml_get_obj_data (st_parameter_dt *dtp,
1638 namelist_info **prev_nl, char *)
1640 static void nml_untouch_nodes (st_parameter_dt *dtp)
1641 static namelist_info * find_nml_node (st_parameter_dt *dtp,
1643 static int nml_parse_qualifier(descriptor_dimension * ad,
1644 array_loop_spec * ls, int rank, char *)
1645 static void nml_touch_nodes (namelist_info * nl)
1646 static int nml_read_obj (namelist_info *nl, index_type offset,
1647 namelist_info **prev_nl, char *,
1648 index_type clow, index_type chigh)
1652 /* Inputs a rank-dimensional qualifier, which can contain
1653 singlets, doublets, triplets or ':' with the standard meanings. */
1656 nml_parse_qualifier (st_parameter_dt
*dtp
, descriptor_dimension
*ad
,
1657 array_loop_spec
*ls
, int rank
, char *parse_err_msg
)
1663 int is_array_section
;
1666 is_array_section
= 0;
1667 dtp
->u
.p
.expanded_read
= 0;
1669 /* The next character in the stream should be the '('. */
1671 c
= next_char (dtp
);
1673 /* Process the qualifier, by dimension and triplet. */
1675 for (dim
=0; dim
< rank
; dim
++ )
1677 for (indx
=0; indx
<3; indx
++)
1683 /* Process a potential sign. */
1684 c
= next_char (dtp
);
1695 unget_char (dtp
, c
);
1699 /* Process characters up to the next ':' , ',' or ')'. */
1702 c
= next_char (dtp
);
1707 is_array_section
= 1;
1711 if ((c
==',' && dim
== rank
-1)
1712 || (c
==')' && dim
< rank
-1))
1714 st_sprintf (parse_err_msg
,
1715 "Bad number of index fields");
1724 case ' ': case '\t':
1726 c
= next_char (dtp
);
1730 st_sprintf (parse_err_msg
, "Bad character in index");
1734 if ((c
== ',' || c
== ')') && indx
== 0
1735 && dtp
->u
.p
.saved_string
== 0)
1737 st_sprintf (parse_err_msg
, "Null index field");
1741 if ((c
== ':' && indx
== 1 && dtp
->u
.p
.saved_string
== 0)
1742 || (indx
== 2 && dtp
->u
.p
.saved_string
== 0))
1744 st_sprintf(parse_err_msg
, "Bad index triplet");
1748 /* If '( : ? )' or '( ? : )' break and flag read failure. */
1750 if ((c
== ':' && indx
== 0 && dtp
->u
.p
.saved_string
== 0)
1751 || (indx
==1 && dtp
->u
.p
.saved_string
== 0))
1757 /* Now read the index. */
1758 if (convert_integer (dtp
, sizeof(ssize_t
), neg
))
1760 st_sprintf (parse_err_msg
, "Bad integer in index");
1766 /* Feed the index values to the triplet arrays. */
1770 memcpy (&ls
[dim
].start
, dtp
->u
.p
.value
, sizeof(ssize_t
));
1772 memcpy (&ls
[dim
].end
, dtp
->u
.p
.value
, sizeof(ssize_t
));
1774 memcpy (&ls
[dim
].step
, dtp
->u
.p
.value
, sizeof(ssize_t
));
1777 /* Singlet or doublet indices. */
1778 if (c
==',' || c
==')')
1782 memcpy (&ls
[dim
].start
, dtp
->u
.p
.value
, sizeof(ssize_t
));
1784 /* If -std=f95/2003 or an array section is specified,
1785 do not allow excess data to be processed. */
1786 if (is_array_section
== 1
1787 || compile_options
.allow_std
< GFC_STD_GNU
)
1788 ls
[dim
].end
= ls
[dim
].start
;
1790 dtp
->u
.p
.expanded_read
= 1;
1796 /* Check the values of the triplet indices. */
1797 if ((ls
[dim
].start
> (ssize_t
)ad
[dim
].ubound
)
1798 || (ls
[dim
].start
< (ssize_t
)ad
[dim
].lbound
)
1799 || (ls
[dim
].end
> (ssize_t
)ad
[dim
].ubound
)
1800 || (ls
[dim
].end
< (ssize_t
)ad
[dim
].lbound
))
1802 st_sprintf (parse_err_msg
, "Index %d out of range", dim
+ 1);
1805 if (((ls
[dim
].end
- ls
[dim
].start
) * ls
[dim
].step
< 0)
1806 || (ls
[dim
].step
== 0))
1808 st_sprintf (parse_err_msg
, "Bad range in index %d", dim
+ 1);
1812 /* Initialise the loop index counter. */
1813 ls
[dim
].idx
= ls
[dim
].start
;
1823 static namelist_info
*
1824 find_nml_node (st_parameter_dt
*dtp
, char * var_name
)
1826 namelist_info
* t
= dtp
->u
.p
.ionml
;
1829 if (strcmp (var_name
, t
->var_name
) == 0)
1839 /* Visits all the components of a derived type that have
1840 not explicitly been identified in the namelist input.
1841 touched is set and the loop specification initialised
1842 to default values */
1845 nml_touch_nodes (namelist_info
* nl
)
1847 index_type len
= strlen (nl
->var_name
) + 1;
1849 char * ext_name
= (char*)get_mem (len
+ 1);
1850 strcpy (ext_name
, nl
->var_name
);
1851 strcat (ext_name
, "%");
1852 for (nl
= nl
->next
; nl
; nl
= nl
->next
)
1854 if (strncmp (nl
->var_name
, ext_name
, len
) == 0)
1857 for (dim
=0; dim
< nl
->var_rank
; dim
++)
1859 nl
->ls
[dim
].step
= 1;
1860 nl
->ls
[dim
].end
= nl
->dim
[dim
].ubound
;
1861 nl
->ls
[dim
].start
= nl
->dim
[dim
].lbound
;
1862 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
1868 free_mem (ext_name
);
1872 /* Resets touched for the entire list of nml_nodes, ready for a
1876 nml_untouch_nodes (st_parameter_dt
*dtp
)
1879 for (t
= dtp
->u
.p
.ionml
; t
; t
= t
->next
)
1884 /* Attempts to input name to namelist name. Returns
1885 dtp->u.p.nml_read_error = 1 on no match. */
1888 nml_match_name (st_parameter_dt
*dtp
, const char *name
, index_type len
)
1892 dtp
->u
.p
.nml_read_error
= 0;
1893 for (i
= 0; i
< len
; i
++)
1895 c
= next_char (dtp
);
1896 if (tolower (c
) != tolower (name
[i
]))
1898 dtp
->u
.p
.nml_read_error
= 1;
1904 /* If the namelist read is from stdin, output the current state of the
1905 namelist to stdout. This is used to implement the non-standard query
1906 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
1907 the names alone are printed. */
1910 nml_query (st_parameter_dt
*dtp
, char c
)
1912 gfc_unit
* temp_unit
;
1917 if (dtp
->u
.p
.current_unit
->unit_number
!= options
.stdin_unit
)
1920 /* Store the current unit and transfer to stdout. */
1922 temp_unit
= dtp
->u
.p
.current_unit
;
1923 dtp
->u
.p
.current_unit
= find_unit (options
.stdout_unit
);
1925 if (dtp
->u
.p
.current_unit
)
1927 dtp
->u
.p
.mode
= WRITING
;
1928 next_record (dtp
, 0);
1930 /* Write the namelist in its entirety. */
1933 namelist_write (dtp
);
1935 /* Or write the list of names. */
1940 /* "&namelist_name\n" */
1942 len
= dtp
->namelist_name_len
;
1944 p
= write_block (dtp
, len
+ 3);
1946 p
= write_block (dtp
, len
+ 2);
1951 memcpy ((char*)(p
+ 1), dtp
->namelist_name
, len
);
1953 memcpy ((char*)(p
+ len
+ 1), "\r\n", 2);
1955 memcpy ((char*)(p
+ len
+ 1), "\n", 1);
1957 for (nl
= dtp
->u
.p
.ionml
; nl
; nl
= nl
->next
)
1962 len
= strlen (nl
->var_name
);
1964 p
= write_block (dtp
, len
+ 3);
1966 p
= write_block (dtp
, len
+ 2);
1971 memcpy ((char*)(p
+ 1), nl
->var_name
, len
);
1973 memcpy ((char*)(p
+ len
+ 1), "\r\n", 2);
1975 memcpy ((char*)(p
+ len
+ 1), "\n", 1);
1982 p
= write_block (dtp
, 6);
1984 p
= write_block (dtp
, 5);
1989 memcpy (p
, "&end\r\n", 6);
1991 memcpy (p
, "&end\n", 5);
1995 /* Flush the stream to force immediate output. */
1997 flush (dtp
->u
.p
.current_unit
->s
);
1998 unlock_unit (dtp
->u
.p
.current_unit
);
2003 /* Restore the current unit. */
2005 dtp
->u
.p
.current_unit
= temp_unit
;
2006 dtp
->u
.p
.mode
= READING
;
2010 /* Reads and stores the input for the namelist object nl. For an array,
2011 the function loops over the ranges defined by the loop specification.
2012 This default to all the data or to the specification from a qualifier.
2013 nml_read_obj recursively calls itself to read derived types. It visits
2014 all its own components but only reads data for those that were touched
2015 when the name was parsed. If a read error is encountered, an attempt is
2016 made to return to read a new object name because the standard allows too
2017 little data to be available. On the other hand, too much data is an
2021 nml_read_obj (st_parameter_dt
*dtp
, namelist_info
* nl
, index_type offset
,
2022 namelist_info
**pprev_nl
, char *nml_err_msg
,
2023 index_type clow
, index_type chigh
)
2026 namelist_info
* cmp
;
2033 index_type obj_name_len
;
2036 /* This object not touched in name parsing. */
2041 dtp
->u
.p
.repeat_count
= 0;
2048 case GFC_DTYPE_INTEGER
:
2049 case GFC_DTYPE_LOGICAL
:
2053 case GFC_DTYPE_REAL
:
2054 dlen
= size_from_real_kind (len
);
2057 case GFC_DTYPE_COMPLEX
:
2058 dlen
= size_from_complex_kind (len
);
2061 case GFC_DTYPE_CHARACTER
:
2062 dlen
= chigh
? (chigh
- clow
+ 1) : nl
->string_length
;
2072 /* Update the pointer to the data, using the current index vector */
2074 pdata
= (void*)(nl
->mem_pos
+ offset
);
2075 for (dim
= 0; dim
< nl
->var_rank
; dim
++)
2076 pdata
= (void*)(pdata
+ (nl
->ls
[dim
].idx
- nl
->dim
[dim
].lbound
) *
2077 nl
->dim
[dim
].stride
* nl
->size
);
2079 /* Reset the error flag and try to read next value, if
2080 dtp->u.p.repeat_count=0 */
2082 dtp
->u
.p
.nml_read_error
= 0;
2084 if (--dtp
->u
.p
.repeat_count
<= 0)
2086 if (dtp
->u
.p
.input_complete
)
2088 if (dtp
->u
.p
.at_eol
)
2089 finish_separator (dtp
);
2090 if (dtp
->u
.p
.input_complete
)
2093 /* GFC_TYPE_UNKNOWN through for nulls and is detected
2094 after the switch block. */
2096 dtp
->u
.p
.saved_type
= GFC_DTYPE_UNKNOWN
;
2101 case GFC_DTYPE_INTEGER
:
2102 read_integer (dtp
, len
);
2105 case GFC_DTYPE_LOGICAL
:
2106 read_logical (dtp
, len
);
2109 case GFC_DTYPE_CHARACTER
:
2110 read_character (dtp
, len
);
2113 case GFC_DTYPE_REAL
:
2114 read_real (dtp
, len
);
2117 case GFC_DTYPE_COMPLEX
:
2118 read_complex (dtp
, len
, dlen
);
2121 case GFC_DTYPE_DERIVED
:
2122 obj_name_len
= strlen (nl
->var_name
) + 1;
2123 obj_name
= get_mem (obj_name_len
+1);
2124 strcpy (obj_name
, nl
->var_name
);
2125 strcat (obj_name
, "%");
2127 /* If reading a derived type, disable the expanded read warning
2128 since a single object can have multiple reads. */
2129 dtp
->u
.p
.expanded_read
= 0;
2131 /* Now loop over the components. Update the component pointer
2132 with the return value from nml_write_obj. This loop jumps
2133 past nested derived types by testing if the potential
2134 component name contains '%'. */
2136 for (cmp
= nl
->next
;
2138 !strncmp (cmp
->var_name
, obj_name
, obj_name_len
) &&
2139 !strchr (cmp
->var_name
+ obj_name_len
, '%');
2143 if (nml_read_obj (dtp
, cmp
, (index_type
)(pdata
- nl
->mem_pos
),
2144 pprev_nl
, nml_err_msg
, clow
, chigh
)
2147 free_mem (obj_name
);
2151 if (dtp
->u
.p
.input_complete
)
2153 free_mem (obj_name
);
2158 free_mem (obj_name
);
2162 st_sprintf (nml_err_msg
, "Bad type for namelist object %s",
2164 internal_error (&dtp
->common
, nml_err_msg
);
2169 /* The standard permits array data to stop short of the number of
2170 elements specified in the loop specification. In this case, we
2171 should be here with dtp->u.p.nml_read_error != 0. Control returns to
2172 nml_get_obj_data and an attempt is made to read object name. */
2175 if (dtp
->u
.p
.nml_read_error
)
2177 dtp
->u
.p
.expanded_read
= 0;
2181 if (dtp
->u
.p
.saved_type
== GFC_DTYPE_UNKNOWN
)
2183 dtp
->u
.p
.expanded_read
= 0;
2187 /* Note the switch from GFC_DTYPE_type to BT_type at this point.
2188 This comes about because the read functions return BT_types. */
2190 switch (dtp
->u
.p
.saved_type
)
2197 memcpy (pdata
, dtp
->u
.p
.value
, dlen
);
2201 m
= (dlen
< dtp
->u
.p
.saved_used
) ? dlen
: dtp
->u
.p
.saved_used
;
2202 pdata
= (void*)( pdata
+ clow
- 1 );
2203 memcpy (pdata
, dtp
->u
.p
.saved_string
, m
);
2205 memset ((void*)( pdata
+ m
), ' ', dlen
- m
);
2212 /* Warn if a non-standard expanded read occurs. A single read of a
2213 single object is acceptable. If a second read occurs, issue a warning
2214 and set the flag to zero to prevent further warnings. */
2215 if (dtp
->u
.p
.expanded_read
== 2)
2217 notify_std (&dtp
->common
, GFC_STD_GNU
, "Non-standard expanded namelist read.");
2218 dtp
->u
.p
.expanded_read
= 0;
2221 /* If the expanded read warning flag is set, increment it,
2222 indicating that a single read has occurred. */
2223 if (dtp
->u
.p
.expanded_read
>= 1)
2224 dtp
->u
.p
.expanded_read
++;
2226 /* Break out of loop if scalar. */
2230 /* Now increment the index vector. */
2235 for (dim
= 0; dim
< nl
->var_rank
; dim
++)
2237 nl
->ls
[dim
].idx
+= nml_carry
* nl
->ls
[dim
].step
;
2239 if (((nl
->ls
[dim
].step
> 0) && (nl
->ls
[dim
].idx
> nl
->ls
[dim
].end
))
2241 ((nl
->ls
[dim
].step
< 0) && (nl
->ls
[dim
].idx
< nl
->ls
[dim
].end
)))
2243 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
2247 } while (!nml_carry
);
2249 if (dtp
->u
.p
.repeat_count
> 1)
2251 st_sprintf (nml_err_msg
, "Repeat count too large for namelist object %s" ,
2262 /* Parses the object name, including array and substring qualifiers. It
2263 iterates over derived type components, touching those components and
2264 setting their loop specifications, if there is a qualifier. If the
2265 object is itself a derived type, its components and subcomponents are
2266 touched. nml_read_obj is called at the end and this reads the data in
2267 the manner specified by the object name. */
2270 nml_get_obj_data (st_parameter_dt
*dtp
, namelist_info
**pprev_nl
,
2275 namelist_info
* first_nl
= NULL
;
2276 namelist_info
* root_nl
= NULL
;
2279 char parse_err_msg
[30];
2280 index_type clow
, chigh
;
2282 /* Look for end of input or object name. If '?' or '=?' are encountered
2283 in stdin, print the node names or the namelist to stdout. */
2285 eat_separator (dtp
);
2286 if (dtp
->u
.p
.input_complete
)
2289 if (dtp
->u
.p
.at_eol
)
2290 finish_separator (dtp
);
2291 if (dtp
->u
.p
.input_complete
)
2294 c
= next_char (dtp
);
2298 c
= next_char (dtp
);
2301 st_sprintf (nml_err_msg
, "namelist read: misplaced = sign");
2304 nml_query (dtp
, '=');
2308 nml_query (dtp
, '?');
2313 nml_match_name (dtp
, "end", 3);
2314 if (dtp
->u
.p
.nml_read_error
)
2316 st_sprintf (nml_err_msg
, "namelist not terminated with / or &end");
2320 dtp
->u
.p
.input_complete
= 1;
2327 /* Untouch all nodes of the namelist and reset the flag that is set for
2328 derived type components. */
2330 nml_untouch_nodes (dtp
);
2333 /* Get the object name - should '!' and '\n' be permitted separators? */
2341 push_char (dtp
, tolower(c
));
2342 c
= next_char (dtp
);
2343 } while (!( c
=='=' || c
==' ' || c
=='\t' || c
=='(' || c
=='%' ));
2345 unget_char (dtp
, c
);
2347 /* Check that the name is in the namelist and get pointer to object.
2348 Three error conditions exist: (i) An attempt is being made to
2349 identify a non-existent object, following a failed data read or
2350 (ii) The object name does not exist or (iii) Too many data items
2351 are present for an object. (iii) gives the same error message
2354 push_char (dtp
, '\0');
2358 size_t var_len
= strlen (root_nl
->var_name
);
2360 = dtp
->u
.p
.saved_string
? strlen (dtp
->u
.p
.saved_string
) : 0;
2361 char ext_name
[var_len
+ saved_len
+ 1];
2363 memcpy (ext_name
, root_nl
->var_name
, var_len
);
2364 if (dtp
->u
.p
.saved_string
)
2365 memcpy (ext_name
+ var_len
, dtp
->u
.p
.saved_string
, saved_len
);
2366 ext_name
[var_len
+ saved_len
] = '\0';
2367 nl
= find_nml_node (dtp
, ext_name
);
2370 nl
= find_nml_node (dtp
, dtp
->u
.p
.saved_string
);
2374 if (dtp
->u
.p
.nml_read_error
&& *pprev_nl
)
2375 st_sprintf (nml_err_msg
, "Bad data for namelist object %s",
2376 (*pprev_nl
)->var_name
);
2379 st_sprintf (nml_err_msg
, "Cannot match namelist object name %s",
2380 dtp
->u
.p
.saved_string
);
2385 /* Get the length, data length, base pointer and rank of the variable.
2386 Set the default loop specification first. */
2388 for (dim
=0; dim
< nl
->var_rank
; dim
++)
2390 nl
->ls
[dim
].step
= 1;
2391 nl
->ls
[dim
].end
= nl
->dim
[dim
].ubound
;
2392 nl
->ls
[dim
].start
= nl
->dim
[dim
].lbound
;
2393 nl
->ls
[dim
].idx
= nl
->ls
[dim
].start
;
2396 /* Check to see if there is a qualifier: if so, parse it.*/
2398 if (c
== '(' && nl
->var_rank
)
2400 if (nml_parse_qualifier (dtp
, nl
->dim
, nl
->ls
, nl
->var_rank
,
2401 parse_err_msg
) == FAILURE
)
2403 st_sprintf (nml_err_msg
, "%s for namelist variable %s",
2404 parse_err_msg
, nl
->var_name
);
2407 c
= next_char (dtp
);
2408 unget_char (dtp
, c
);
2411 /* Now parse a derived type component. The root namelist_info address
2412 is backed up, as is the previous component level. The component flag
2413 is set and the iteration is made by jumping back to get_name. */
2418 if (nl
->type
!= GFC_DTYPE_DERIVED
)
2420 st_sprintf (nml_err_msg
, "Attempt to get derived component for %s",
2425 if (!component_flag
)
2430 c
= next_char (dtp
);
2435 /* Parse a character qualifier, if present. chigh = 0 is a default
2436 that signals that the string length = string_length. */
2441 if (c
== '(' && nl
->type
== GFC_DTYPE_CHARACTER
)
2443 descriptor_dimension chd
[1] = { {1, clow
, nl
->string_length
} };
2444 array_loop_spec ind
[1] = { {1, clow
, nl
->string_length
, 1} };
2446 if (nml_parse_qualifier (dtp
, chd
, ind
, 1, parse_err_msg
) == FAILURE
)
2448 st_sprintf (nml_err_msg
, "%s for namelist variable %s",
2449 parse_err_msg
, nl
->var_name
);
2453 clow
= ind
[0].start
;
2456 if (ind
[0].step
!= 1)
2458 st_sprintf (nml_err_msg
,
2459 "Bad step in substring for namelist object %s",
2464 c
= next_char (dtp
);
2465 unget_char (dtp
, c
);
2468 /* If a derived type touch its components and restore the root
2469 namelist_info if we have parsed a qualified derived type
2472 if (nl
->type
== GFC_DTYPE_DERIVED
)
2473 nml_touch_nodes (nl
);
2477 /*make sure no extraneous qualifiers are there.*/
2481 st_sprintf (nml_err_msg
, "Qualifier for a scalar or non-character"
2482 " namelist object %s", nl
->var_name
);
2486 /* According to the standard, an equal sign MUST follow an object name. The
2487 following is possibly lax - it allows comments, blank lines and so on to
2488 intervene. eat_spaces (dtp); c = next_char (dtp); would be compliant*/
2492 eat_separator (dtp
);
2493 if (dtp
->u
.p
.input_complete
)
2496 if (dtp
->u
.p
.at_eol
)
2497 finish_separator (dtp
);
2498 if (dtp
->u
.p
.input_complete
)
2501 c
= next_char (dtp
);
2505 st_sprintf (nml_err_msg
, "Equal sign must follow namelist object name %s",
2510 if (nml_read_obj (dtp
, nl
, 0, pprev_nl
, nml_err_msg
, clow
, chigh
) == FAILURE
)
2520 /* Entry point for namelist input. Goes through input until namelist name
2521 is matched. Then cycles through nml_get_obj_data until the input is
2522 completed or there is an error. */
2525 namelist_read (st_parameter_dt
*dtp
)
2529 char nml_err_msg
[100];
2530 /* Pointer to the previously read object, in case attempt is made to read
2531 new object name. Should this fail, error message can give previous
2533 namelist_info
*prev_nl
= NULL
;
2535 dtp
->u
.p
.namelist_mode
= 1;
2536 dtp
->u
.p
.input_complete
= 0;
2537 dtp
->u
.p
.expanded_read
= 0;
2539 dtp
->u
.p
.eof_jump
= &eof_jump
;
2540 if (setjmp (eof_jump
))
2542 dtp
->u
.p
.eof_jump
= NULL
;
2543 generate_error (&dtp
->common
, ERROR_END
, NULL
);
2547 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
2548 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
2549 node names or namelist on stdout. */
2552 switch (c
= next_char (dtp
))
2559 c
= next_char (dtp
);
2561 nml_query (dtp
, '=');
2563 unget_char (dtp
, c
);
2567 nml_query (dtp
, '?');
2573 /* Match the name of the namelist. */
2575 nml_match_name (dtp
, dtp
->namelist_name
, dtp
->namelist_name_len
);
2577 if (dtp
->u
.p
.nml_read_error
)
2580 /* Ready to read namelist objects. If there is an error in input
2581 from stdin, output the error message and continue. */
2583 while (!dtp
->u
.p
.input_complete
)
2585 if (nml_get_obj_data (dtp
, &prev_nl
, nml_err_msg
) == FAILURE
)
2589 if (dtp
->u
.p
.current_unit
->unit_number
!= options
.stdin_unit
)
2592 u
= find_unit (options
.stderr_unit
);
2593 st_printf ("%s\n", nml_err_msg
);
2603 dtp
->u
.p
.eof_jump
= NULL
;
2608 /* All namelist error calls return from here */
2612 dtp
->u
.p
.eof_jump
= NULL
;
2615 generate_error (&dtp
->common
, ERROR_READ_VALUE
, nml_err_msg
);