Fix typo in ChangeLog
[official-gcc.git] / libgfortran / io / list_read.c
blobc3510f6ae61743b6f3375ec232671356dd12cce9
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)
10 any later version.
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
19 executable.)
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. */
32 #include "config.h"
33 #include <string.h>
34 #include <ctype.h>
35 #include "libgfortran.h"
36 #include "io.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
42 parsing. */
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
51 ourselves. Data is buffered in scratch[] until it becomes too
52 large, after which we start allocating memory on the heap. */
54 static int repeat_count, saved_length, saved_used;
55 static int input_complete, at_eol, comma_flag;
56 static char last_char, *saved_string;
57 static bt saved_type;
59 /* A namelist specific flag used in the list directed library
60 to flag that calls are being made from namelist read (eg. to ignore
61 comments or to treat '/' as a terminator) */
63 static int namelist_mode;
65 /* A namelist specific flag used in the list directed library to flag
66 read errors and return, so that an attempt can be made to read a
67 new object name. */
69 static int nml_read_error;
71 /* Storage area for values except for strings. Must be large enough
72 to hold a complex value (two reals) of the largest kind. */
74 static char value[32];
76 #define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
77 case '5': case '6': case '7': case '8': case '9'
79 #define CASE_SEPARATORS case ' ': case ',': case '/': case '\n': case '\t': \
80 case '\r'
82 /* This macro assumes that we're operating on a variable. */
84 #define is_separator(c) (c == '/' || c == ',' || c == '\n' || c == ' ' \
85 || c == '\t' || c == '\r')
87 /* Maximum repeat count. Less than ten times the maximum signed int32. */
89 #define MAX_REPEAT 200000000
92 /* Save a character to a string buffer, enlarging it as necessary. */
94 static void
95 push_char (char c)
97 char *new;
99 if (saved_string == NULL)
101 saved_string = scratch;
102 memset (saved_string,0,SCRATCH_SIZE);
103 saved_length = SCRATCH_SIZE;
104 saved_used = 0;
107 if (saved_used >= saved_length)
109 saved_length = 2 * saved_length;
110 new = get_mem (2 * saved_length);
112 memset (new,0,2 * saved_length);
114 memcpy (new, saved_string, saved_used);
115 if (saved_string != scratch)
116 free_mem (saved_string);
118 saved_string = new;
121 saved_string[saved_used++] = c;
125 /* Free the input buffer if necessary. */
127 static void
128 free_saved (void)
130 if (saved_string == NULL)
131 return;
133 if (saved_string != scratch)
134 free_mem (saved_string);
136 saved_string = NULL;
140 static char
141 next_char (void)
143 int length;
144 char c, *p;
146 if (last_char != '\0')
148 at_eol = 0;
149 c = last_char;
150 last_char = '\0';
151 goto done;
154 length = 1;
156 p = salloc_r (current_unit->s, &length);
157 if (p == NULL)
159 generate_error (ERROR_OS, NULL);
160 return '\0';
163 if (length == 0)
165 /* For internal files return a newline instead of signalling EOF. */
166 /* ??? This isn't quite right, but we don't handle internal files
167 with multiple records. */
168 if (is_internal_unit ())
169 c = '\n';
170 else
171 longjmp (g.eof_jump, 1);
173 else
174 c = *p;
176 done:
177 at_eol = (c == '\n' || c == '\r');
178 return c;
182 /* Push a character back onto the input. */
184 static void
185 unget_char (char c)
187 last_char = c;
191 /* Skip over spaces in the input. Returns the nonspace character that
192 terminated the eating and also places it back on the input. */
194 static char
195 eat_spaces (void)
197 char c;
201 c = next_char ();
203 while (c == ' ' || c == '\t');
205 unget_char (c);
206 return c;
210 /* Skip over a separator. Technically, we don't always eat the whole
211 separator. This is because if we've processed the last input item,
212 then a separator is unnecessary. Plus the fact that operating
213 systems usually deliver console input on a line basis.
215 The upshot is that if we see a newline as part of reading a
216 separator, we stop reading. If there are more input items, we
217 continue reading the separator with finish_separator() which takes
218 care of the fact that we may or may not have seen a comma as part
219 of the separator. */
221 static void
222 eat_separator (void)
224 char c;
226 eat_spaces ();
227 comma_flag = 0;
229 c = next_char ();
230 switch (c)
232 case ',':
233 comma_flag = 1;
234 eat_spaces ();
235 break;
237 case '/':
238 input_complete = 1;
239 break;
241 case '\n':
242 case '\r':
243 at_eol = 1;
244 break;
246 case '!':
247 if (namelist_mode)
248 { /* Eat a namelist comment. */
250 c = next_char ();
251 while (c != '\n');
253 break;
256 /* Fall Through... */
258 default:
259 unget_char (c);
260 break;
265 /* Finish processing a separator that was interrupted by a newline.
266 If we're here, then another data item is present, so we finish what
267 we started on the previous line. */
269 static void
270 finish_separator (void)
272 char c;
274 restart:
275 eat_spaces ();
277 c = next_char ();
278 switch (c)
280 case ',':
281 if (comma_flag)
282 unget_char (c);
283 else
285 c = eat_spaces ();
286 if (c == '\n')
287 goto restart;
290 break;
292 case '/':
293 input_complete = 1;
294 if (!namelist_mode) next_record (0);
295 break;
297 case '\n':
298 case '\r':
299 goto restart;
301 case '!':
302 if (namelist_mode)
305 c = next_char ();
306 while (c != '\n');
308 goto restart;
311 default:
312 unget_char (c);
313 break;
317 /* This function is needed to catch bad conversions so that namelist can
318 attempt to see if saved_string contains a new object name rather than
319 a bad value. */
321 static int
322 nml_bad_return (char c)
324 if (namelist_mode)
326 nml_read_error = 1;
327 unget_char(c);
328 return 1;
330 return 0;
333 /* Convert an unsigned string to an integer. The length value is -1
334 if we are working on a repeat count. Returns nonzero if we have a
335 range problem. As a side effect, frees the saved_string. */
337 static int
338 convert_integer (int length, int negative)
340 char c, *buffer, message[100];
341 int m;
342 GFC_INTEGER_LARGEST v, max, max10;
344 buffer = saved_string;
345 v = 0;
347 max = (length == -1) ? MAX_REPEAT : max_value (length, 1);
348 max10 = max / 10;
350 for (;;)
352 c = *buffer++;
353 if (c == '\0')
354 break;
355 c -= '0';
357 if (v > max10)
358 goto overflow;
359 v = 10 * v;
361 if (v > max - c)
362 goto overflow;
363 v += c;
366 m = 0;
368 if (length != -1)
370 if (negative)
371 v = -v;
372 set_integer (value, v, length);
374 else
376 repeat_count = v;
378 if (repeat_count == 0)
380 st_sprintf (message, "Zero repeat count in item %d of list input",
381 g.item_count);
383 generate_error (ERROR_READ_VALUE, message);
384 m = 1;
388 free_saved ();
389 return m;
391 overflow:
392 if (length == -1)
393 st_sprintf (message, "Repeat count overflow in item %d of list input",
394 g.item_count);
395 else
396 st_sprintf (message, "Integer overflow while reading item %d",
397 g.item_count);
399 free_saved ();
400 generate_error (ERROR_READ_VALUE, message);
402 return 1;
406 /* Parse a repeat count for logical and complex values which cannot
407 begin with a digit. Returns nonzero if we are done, zero if we
408 should continue on. */
410 static int
411 parse_repeat (void)
413 char c, message[100];
414 int repeat;
416 c = next_char ();
417 switch (c)
419 CASE_DIGITS:
420 repeat = c - '0';
421 break;
423 CASE_SEPARATORS:
424 unget_char (c);
425 eat_separator ();
426 return 1;
428 default:
429 unget_char (c);
430 return 0;
433 for (;;)
435 c = next_char ();
436 switch (c)
438 CASE_DIGITS:
439 repeat = 10 * repeat + c - '0';
441 if (repeat > MAX_REPEAT)
443 st_sprintf (message,
444 "Repeat count overflow in item %d of list input",
445 g.item_count);
447 generate_error (ERROR_READ_VALUE, message);
448 return 1;
451 break;
453 case '*':
454 if (repeat == 0)
456 st_sprintf (message,
457 "Zero repeat count in item %d of list input",
458 g.item_count);
460 generate_error (ERROR_READ_VALUE, message);
461 return 1;
464 goto done;
466 default:
467 goto bad_repeat;
471 done:
472 repeat_count = repeat;
473 return 0;
475 bad_repeat:
476 st_sprintf (message, "Bad repeat count in item %d of list input",
477 g.item_count);
479 generate_error (ERROR_READ_VALUE, message);
480 return 1;
484 /* Read a logical character on the input. */
486 static void
487 read_logical (int length)
489 char c, message[100];
490 int v;
492 if (parse_repeat ())
493 return;
495 c = next_char ();
496 switch (c)
498 case 't':
499 case 'T':
500 v = 1;
501 break;
502 case 'f':
503 case 'F':
504 v = 0;
505 break;
507 case '.':
508 c = next_char ();
509 switch (c)
511 case 't':
512 case 'T':
513 v = 1;
514 break;
515 case 'f':
516 case 'F':
517 v = 0;
518 break;
519 default:
520 goto bad_logical;
523 break;
525 CASE_SEPARATORS:
526 unget_char (c);
527 eat_separator ();
528 return; /* Null value. */
530 default:
531 goto bad_logical;
534 saved_type = BT_LOGICAL;
535 saved_length = length;
537 /* Eat trailing garbage. */
540 c = next_char ();
542 while (!is_separator (c));
544 unget_char (c);
545 eat_separator ();
546 free_saved ();
547 set_integer ((int *) value, v, length);
549 return;
551 bad_logical:
553 if (nml_bad_return (c))
554 return;
556 st_sprintf (message, "Bad logical value while reading item %d",
557 g.item_count);
559 generate_error (ERROR_READ_VALUE, message);
563 /* Reading integers is tricky because we can actually be reading a
564 repeat count. We have to store the characters in a buffer because
565 we could be reading an integer that is larger than the default int
566 used for repeat counts. */
568 static void
569 read_integer (int length)
571 char c, message[100];
572 int negative;
574 negative = 0;
576 c = next_char ();
577 switch (c)
579 case '-':
580 negative = 1;
581 /* Fall through... */
583 case '+':
584 c = next_char ();
585 goto get_integer;
587 CASE_SEPARATORS: /* Single null. */
588 unget_char (c);
589 eat_separator ();
590 return;
592 CASE_DIGITS:
593 push_char (c);
594 break;
596 default:
597 goto bad_integer;
600 /* Take care of what may be a repeat count. */
602 for (;;)
604 c = next_char ();
605 switch (c)
607 CASE_DIGITS:
608 push_char (c);
609 break;
611 case '*':
612 push_char ('\0');
613 goto repeat;
615 CASE_SEPARATORS: /* Not a repeat count. */
616 goto done;
618 default:
619 goto bad_integer;
623 repeat:
624 if (convert_integer (-1, 0))
625 return;
627 /* Get the real integer. */
629 c = next_char ();
630 switch (c)
632 CASE_DIGITS:
633 break;
635 CASE_SEPARATORS:
636 unget_char (c);
637 eat_separator ();
638 return;
640 case '-':
641 negative = 1;
642 /* Fall through... */
644 case '+':
645 c = next_char ();
646 break;
649 get_integer:
650 if (!isdigit (c))
651 goto bad_integer;
652 push_char (c);
654 for (;;)
656 c = next_char ();
657 switch (c)
659 CASE_DIGITS:
660 push_char (c);
661 break;
663 CASE_SEPARATORS:
664 goto done;
666 default:
667 goto bad_integer;
671 bad_integer:
673 if (nml_bad_return (c))
674 return;
676 free_saved ();
678 st_sprintf (message, "Bad integer for item %d in list input", g.item_count);
679 generate_error (ERROR_READ_VALUE, message);
681 return;
683 done:
684 unget_char (c);
685 eat_separator ();
687 push_char ('\0');
688 if (convert_integer (length, negative))
690 free_saved ();
691 return;
694 free_saved ();
695 saved_type = BT_INTEGER;
699 /* Read a character variable. */
701 static void
702 read_character (int length __attribute__ ((unused)))
704 char c, quote, message[100];
706 quote = ' '; /* Space means no quote character. */
708 c = next_char ();
709 switch (c)
711 CASE_DIGITS:
712 push_char (c);
713 break;
715 CASE_SEPARATORS:
716 unget_char (c); /* NULL value. */
717 eat_separator ();
718 return;
720 case '"':
721 case '\'':
722 quote = c;
723 goto get_string;
725 default:
726 push_char (c);
727 goto get_string;
730 /* Deal with a possible repeat count. */
732 for (;;)
734 c = next_char ();
735 switch (c)
737 CASE_DIGITS:
738 push_char (c);
739 break;
741 CASE_SEPARATORS:
742 unget_char (c);
743 goto done; /* String was only digits! */
745 case '*':
746 push_char ('\0');
747 goto got_repeat;
749 default:
750 push_char (c);
751 goto get_string; /* Not a repeat count after all. */
755 got_repeat:
756 if (convert_integer (-1, 0))
757 return;
759 /* Now get the real string. */
761 c = next_char ();
762 switch (c)
764 CASE_SEPARATORS:
765 unget_char (c); /* Repeated NULL values. */
766 eat_separator ();
767 return;
769 case '"':
770 case '\'':
771 quote = c;
772 break;
774 default:
775 push_char (c);
776 break;
779 get_string:
780 for (;;)
782 c = next_char ();
783 switch (c)
785 case '"':
786 case '\'':
787 if (c != quote)
789 push_char (c);
790 break;
793 /* See if we have a doubled quote character or the end of
794 the string. */
796 c = next_char ();
797 if (c == quote)
799 push_char (quote);
800 break;
803 unget_char (c);
804 goto done;
806 CASE_SEPARATORS:
807 if (quote == ' ')
809 unget_char (c);
810 goto done;
813 if (c != '\n')
814 push_char (c);
815 break;
817 default:
818 push_char (c);
819 break;
823 /* At this point, we have to have a separator, or else the string is
824 invalid. */
825 done:
826 c = next_char ();
827 if (is_separator (c))
829 unget_char (c);
830 eat_separator ();
831 saved_type = BT_CHARACTER;
833 else
835 free_saved ();
836 st_sprintf (message, "Invalid string input in item %d", g.item_count);
837 generate_error (ERROR_READ_VALUE, message);
842 /* Parse a component of a complex constant or a real number that we
843 are sure is already there. This is a straight real number parser. */
845 static int
846 parse_real (void *buffer, int length)
848 char c, message[100];
849 int m, seen_dp;
851 c = next_char ();
852 if (c == '-' || c == '+')
854 push_char (c);
855 c = next_char ();
858 if (!isdigit (c) && c != '.')
859 goto bad;
861 push_char (c);
863 seen_dp = (c == '.') ? 1 : 0;
865 for (;;)
867 c = next_char ();
868 switch (c)
870 CASE_DIGITS:
871 push_char (c);
872 break;
874 case '.':
875 if (seen_dp)
876 goto bad;
878 seen_dp = 1;
879 push_char (c);
880 break;
882 case 'e':
883 case 'E':
884 case 'd':
885 case 'D':
886 push_char ('e');
887 goto exp1;
889 case '-':
890 case '+':
891 push_char ('e');
892 push_char (c);
893 c = next_char ();
894 goto exp2;
896 CASE_SEPARATORS:
897 unget_char (c);
898 goto done;
900 default:
901 goto done;
905 exp1:
906 c = next_char ();
907 if (c != '-' && c != '+')
908 push_char ('+');
909 else
911 push_char (c);
912 c = next_char ();
915 exp2:
916 if (!isdigit (c))
917 goto bad;
918 push_char (c);
920 for (;;)
922 c = next_char ();
923 switch (c)
925 CASE_DIGITS:
926 push_char (c);
927 break;
929 CASE_SEPARATORS:
930 unget_char (c);
931 goto done;
933 default:
934 goto done;
938 done:
939 unget_char (c);
940 push_char ('\0');
942 m = convert_real (buffer, saved_string, length);
943 free_saved ();
945 return m;
947 bad:
948 free_saved ();
949 st_sprintf (message, "Bad floating point number for item %d", g.item_count);
950 generate_error (ERROR_READ_VALUE, message);
952 return 1;
956 /* Reading a complex number is straightforward because we can tell
957 what it is right away. */
959 static void
960 read_complex (int length)
962 char message[100];
963 char c;
965 if (parse_repeat ())
966 return;
968 c = next_char ();
969 switch (c)
971 case '(':
972 break;
974 CASE_SEPARATORS:
975 unget_char (c);
976 eat_separator ();
977 return;
979 default:
980 goto bad_complex;
983 eat_spaces ();
984 if (parse_real (value, length))
985 return;
987 eol_1:
988 eat_spaces ();
989 c = next_char ();
990 if (c == '\n' || c== '\r')
991 goto eol_1;
992 else
993 unget_char (c);
995 if (next_char () != ',')
996 goto bad_complex;
998 eol_2:
999 eat_spaces ();
1000 c = next_char ();
1001 if (c == '\n' || c== '\r')
1002 goto eol_2;
1003 else
1004 unget_char (c);
1006 if (parse_real (value + length, length))
1007 return;
1009 eat_spaces ();
1010 if (next_char () != ')')
1011 goto bad_complex;
1013 c = next_char ();
1014 if (!is_separator (c))
1015 goto bad_complex;
1017 unget_char (c);
1018 eat_separator ();
1020 free_saved ();
1021 saved_type = BT_COMPLEX;
1022 return;
1024 bad_complex:
1026 if (nml_bad_return (c))
1027 return;
1029 st_sprintf (message, "Bad complex value in item %d of list input",
1030 g.item_count);
1032 generate_error (ERROR_READ_VALUE, message);
1036 /* Parse a real number with a possible repeat count. */
1038 static void
1039 read_real (int length)
1041 char c, message[100];
1042 int seen_dp;
1044 seen_dp = 0;
1046 c = next_char ();
1047 switch (c)
1049 CASE_DIGITS:
1050 push_char (c);
1051 break;
1053 case '.':
1054 push_char (c);
1055 seen_dp = 1;
1056 break;
1058 case '+':
1059 case '-':
1060 goto got_sign;
1062 CASE_SEPARATORS:
1063 unget_char (c); /* Single null. */
1064 eat_separator ();
1065 return;
1067 default:
1068 goto bad_real;
1071 /* Get the digit string that might be a repeat count. */
1073 for (;;)
1075 c = next_char ();
1076 switch (c)
1078 CASE_DIGITS:
1079 push_char (c);
1080 break;
1082 case '.':
1083 if (seen_dp)
1084 goto bad_real;
1086 seen_dp = 1;
1087 push_char (c);
1088 goto real_loop;
1090 case 'E':
1091 case 'e':
1092 case 'D':
1093 case 'd':
1094 goto exp1;
1096 case '+':
1097 case '-':
1098 push_char ('e');
1099 push_char (c);
1100 c = next_char ();
1101 goto exp2;
1103 case '*':
1104 push_char ('\0');
1105 goto got_repeat;
1107 CASE_SEPARATORS:
1108 if (c != '\n' && c != ',' && c != '\r')
1109 unget_char (c);
1110 goto done;
1112 default:
1113 goto bad_real;
1117 got_repeat:
1118 if (convert_integer (-1, 0))
1119 return;
1121 /* Now get the number itself. */
1123 c = next_char ();
1124 if (is_separator (c))
1125 { /* Repeated null value. */
1126 unget_char (c);
1127 eat_separator ();
1128 return;
1131 if (c != '-' && c != '+')
1132 push_char ('+');
1133 else
1135 got_sign:
1136 push_char (c);
1137 c = next_char ();
1140 if (!isdigit (c) && c != '.')
1141 goto bad_real;
1143 if (c == '.')
1145 if (seen_dp)
1146 goto bad_real;
1147 else
1148 seen_dp = 1;
1151 push_char (c);
1153 real_loop:
1154 for (;;)
1156 c = next_char ();
1157 switch (c)
1159 CASE_DIGITS:
1160 push_char (c);
1161 break;
1163 CASE_SEPARATORS:
1164 goto done;
1166 case '.':
1167 if (seen_dp)
1168 goto bad_real;
1170 seen_dp = 1;
1171 push_char (c);
1172 break;
1174 case 'E':
1175 case 'e':
1176 case 'D':
1177 case 'd':
1178 goto exp1;
1180 case '+':
1181 case '-':
1182 push_char ('e');
1183 push_char (c);
1184 c = next_char ();
1185 goto exp2;
1187 default:
1188 goto bad_real;
1192 exp1:
1193 push_char ('e');
1195 c = next_char ();
1196 if (c != '+' && c != '-')
1197 push_char ('+');
1198 else
1200 push_char (c);
1201 c = next_char ();
1204 exp2:
1205 if (!isdigit (c))
1206 goto bad_real;
1207 push_char (c);
1209 for (;;)
1211 c = next_char ();
1213 switch (c)
1215 CASE_DIGITS:
1216 push_char (c);
1217 break;
1219 CASE_SEPARATORS:
1220 goto done;
1222 default:
1223 goto bad_real;
1227 done:
1228 unget_char (c);
1229 eat_separator ();
1230 push_char ('\0');
1231 if (convert_real (value, saved_string, length))
1232 return;
1234 free_saved ();
1235 saved_type = BT_REAL;
1236 return;
1238 bad_real:
1240 if (nml_bad_return (c))
1241 return;
1243 st_sprintf (message, "Bad real number in item %d of list input",
1244 g.item_count);
1246 generate_error (ERROR_READ_VALUE, message);
1250 /* Check the current type against the saved type to make sure they are
1251 compatible. Returns nonzero if incompatible. */
1253 static int
1254 check_type (bt type, int len)
1256 char message[100];
1258 if (saved_type != BT_NULL && saved_type != type)
1260 st_sprintf (message, "Read type %s where %s was expected for item %d",
1261 type_name (saved_type), type_name (type), g.item_count);
1263 generate_error (ERROR_READ_VALUE, message);
1264 return 1;
1267 if (saved_type == BT_NULL || saved_type == BT_CHARACTER)
1268 return 0;
1270 if (saved_length != len)
1272 st_sprintf (message,
1273 "Read kind %d %s where kind %d is required for item %d",
1274 saved_length, type_name (saved_type), len, g.item_count);
1275 generate_error (ERROR_READ_VALUE, message);
1276 return 1;
1279 return 0;
1283 /* Top level data transfer subroutine for list reads. Because we have
1284 to deal with repeat counts, the data item is always saved after
1285 reading, usually in the value[] array. If a repeat count is
1286 greater than one, we copy the data item multiple times. */
1288 static void
1289 list_formatted_read_scalar (bt type, void *p, int len)
1291 char c;
1292 int m;
1294 namelist_mode = 0;
1296 if (setjmp (g.eof_jump))
1298 generate_error (ERROR_END, NULL);
1299 return;
1302 if (g.first_item)
1304 g.first_item = 0;
1305 input_complete = 0;
1306 repeat_count = 1;
1307 at_eol = 0;
1309 c = eat_spaces ();
1310 if (is_separator (c))
1311 { /* Found a null value. */
1312 eat_separator ();
1313 repeat_count = 0;
1314 if (at_eol)
1315 finish_separator ();
1316 else
1317 return;
1321 else
1323 if (input_complete)
1324 return;
1326 if (repeat_count > 0)
1328 if (check_type (type, len))
1329 return;
1330 goto set_value;
1333 if (at_eol)
1334 finish_separator ();
1335 else
1337 eat_spaces ();
1338 /* trailing spaces prior to end of line */
1339 if (at_eol)
1340 finish_separator ();
1343 saved_type = BT_NULL;
1344 repeat_count = 1;
1347 switch (type)
1349 case BT_INTEGER:
1350 read_integer (len);
1351 break;
1352 case BT_LOGICAL:
1353 read_logical (len);
1354 break;
1355 case BT_CHARACTER:
1356 read_character (len);
1357 break;
1358 case BT_REAL:
1359 read_real (len);
1360 break;
1361 case BT_COMPLEX:
1362 read_complex (len);
1363 break;
1364 default:
1365 internal_error ("Bad type for list read");
1368 if (saved_type != BT_CHARACTER && saved_type != BT_NULL)
1369 saved_length = len;
1371 if (ioparm.library_return != LIBRARY_OK)
1372 return;
1374 set_value:
1375 switch (saved_type)
1377 case BT_COMPLEX:
1378 len = 2 * len;
1379 /* Fall through. */
1381 case BT_INTEGER:
1382 case BT_REAL:
1383 case BT_LOGICAL:
1384 memcpy (p, value, len);
1385 break;
1387 case BT_CHARACTER:
1388 if (saved_string)
1390 m = (len < saved_used) ? len : saved_used;
1391 memcpy (p, saved_string, m);
1393 else
1394 /* Just delimiters encountered, nothing to copy but SPACE. */
1395 m = 0;
1397 if (m < len)
1398 memset (((char *) p) + m, ' ', len - m);
1399 break;
1401 case BT_NULL:
1402 break;
1405 if (--repeat_count <= 0)
1406 free_saved ();
1410 void
1411 list_formatted_read (bt type, void *p, int len, size_t nelems)
1413 size_t elem;
1414 int size;
1415 char *tmp;
1417 tmp = (char *) p;
1419 if (type == BT_COMPLEX)
1420 size = 2 * len;
1421 else
1422 size = len;
1424 /* Big loop over all the elements. */
1425 for (elem = 0; elem < nelems; elem++)
1427 g.item_count++;
1428 list_formatted_read_scalar (type, tmp + size*elem, len);
1433 void
1434 init_at_eol(void)
1436 at_eol = 0;
1439 /* Finish a list read. */
1441 void
1442 finish_list_read (void)
1444 char c;
1446 free_saved ();
1448 if (at_eol)
1450 at_eol = 0;
1451 return;
1456 c = next_char ();
1458 while (c != '\n');
1461 /* NAMELIST INPUT
1463 void namelist_read (void)
1464 calls:
1465 static void nml_match_name (char *name, int len)
1466 static int nml_query (void)
1467 static int nml_get_obj_data (void)
1468 calls:
1469 static void nml_untouch_nodes (void)
1470 static namelist_info * find_nml_node (char * var_name)
1471 static int nml_parse_qualifier(descriptor_dimension * ad,
1472 nml_loop_spec * ls, int rank)
1473 static void nml_touch_nodes (namelist_info * nl)
1474 static int nml_read_obj (namelist_info * nl, index_type offset)
1475 calls:
1476 -itself- */
1478 /* Carries error messages from the qualifier parser. */
1479 static char parse_err_msg[30];
1481 /* Carries error messages for error returns. */
1482 static char nml_err_msg[100];
1484 /* Pointer to the previously read object, in case attempt is made to read
1485 new object name. Should this fail, error message can give previous
1486 name. */
1488 static namelist_info * prev_nl;
1490 /* Lower index for substring qualifier. */
1492 static index_type clow;
1494 /* Upper index for substring qualifier. */
1496 static index_type chigh;
1498 /* Inputs a rank-dimensional qualifier, which can contain
1499 singlets, doublets, triplets or ':' with the standard meanings. */
1501 static try
1502 nml_parse_qualifier(descriptor_dimension * ad,
1503 nml_loop_spec * ls, int rank)
1505 int dim;
1506 int indx;
1507 int neg;
1508 int null_flag;
1509 char c;
1511 /* The next character in the stream should be the '('. */
1513 c = next_char ();
1515 /* Process the qualifier, by dimension and triplet. */
1517 for (dim=0; dim < rank; dim++ )
1519 for (indx=0; indx<3; indx++)
1521 free_saved ();
1522 eat_spaces ();
1523 neg = 0;
1525 /*process a potential sign. */
1527 c = next_char ();
1528 switch (c)
1530 case '-':
1531 neg = 1;
1532 break;
1534 case '+':
1535 break;
1537 default:
1538 unget_char (c);
1539 break;
1542 /*process characters up to the next ':' , ',' or ')' */
1544 for (;;)
1546 c = next_char ();
1548 switch (c)
1550 case ':':
1551 break;
1553 case ',': case ')':
1554 if ( (c==',' && dim == rank -1)
1555 || (c==')' && dim < rank -1))
1557 st_sprintf (parse_err_msg,
1558 "Bad number of index fields");
1559 goto err_ret;
1561 break;
1563 CASE_DIGITS:
1564 push_char (c);
1565 continue;
1567 case ' ': case '\t':
1568 eat_spaces ();
1569 c = next_char ();
1570 break;
1572 default:
1573 st_sprintf (parse_err_msg, "Bad character in index");
1574 goto err_ret;
1577 if (( c==',' || c==')') && indx==0 && saved_string == 0 )
1579 st_sprintf (parse_err_msg, "Null index field");
1580 goto err_ret;
1583 if ( ( c==':' && indx==1 && saved_string == 0)
1584 || (indx==2 && saved_string == 0))
1586 st_sprintf(parse_err_msg, "Bad index triplet");
1587 goto err_ret;
1590 /* If '( : ? )' or '( ? : )' break and flag read failure. */
1591 null_flag = 0;
1592 if ( (c==':' && indx==0 && saved_string == 0)
1593 || (indx==1 && saved_string == 0))
1595 null_flag = 1;
1596 break;
1599 /* Now read the index. */
1601 if (convert_integer (sizeof(int),neg))
1603 st_sprintf (parse_err_msg, "Bad integer in index");
1604 goto err_ret;
1606 break;
1609 /*feed the index values to the triplet arrays. */
1611 if (!null_flag)
1613 if (indx == 0)
1614 ls[dim].start = *(int *)value;
1615 if (indx == 1)
1616 ls[dim].end = *(int *)value;
1617 if (indx == 2)
1618 ls[dim].step = *(int *)value;
1621 /*singlet or doublet indices */
1623 if (c==',' || c==')')
1625 if (indx == 0)
1627 ls[dim].start = *(int *)value;
1628 ls[dim].end = *(int *)value;
1630 break;
1634 /*Check the values of the triplet indices. */
1636 if ( (ls[dim].start > (ssize_t)ad[dim].ubound)
1637 || (ls[dim].start < (ssize_t)ad[dim].lbound)
1638 || (ls[dim].end > (ssize_t)ad[dim].ubound)
1639 || (ls[dim].end < (ssize_t)ad[dim].lbound))
1641 st_sprintf (parse_err_msg, "Index %d out of range", dim + 1);
1642 goto err_ret;
1644 if (((ls[dim].end - ls[dim].start ) * ls[dim].step < 0)
1645 || (ls[dim].step == 0))
1647 st_sprintf (parse_err_msg, "Bad range in index %d", dim + 1);
1648 goto err_ret;
1651 /* Initialise the loop index counter. */
1653 ls[dim].idx = ls[dim].start;
1656 eat_spaces ();
1657 return SUCCESS;
1659 err_ret:
1661 return FAILURE;
1664 static namelist_info *
1665 find_nml_node (char * var_name)
1667 namelist_info * t = ionml;
1668 while (t != NULL)
1670 if (strcmp (var_name,t->var_name) == 0)
1672 t->touched = 1;
1673 return t;
1675 t = t->next;
1677 return NULL;
1680 /* Visits all the components of a derived type that have
1681 not explicitly been identified in the namelist input.
1682 touched is set and the loop specification initialised
1683 to default values */
1685 static void
1686 nml_touch_nodes (namelist_info * nl)
1688 index_type len = strlen (nl->var_name) + 1;
1689 int dim;
1690 char * ext_name = (char*)get_mem (len + 1);
1691 strcpy (ext_name, nl->var_name);
1692 strcat (ext_name, "%");
1693 for (nl = nl->next; nl; nl = nl->next)
1695 if (strncmp (nl->var_name, ext_name, len) == 0)
1697 nl->touched = 1;
1698 for (dim=0; dim < nl->var_rank; dim++)
1700 nl->ls[dim].step = 1;
1701 nl->ls[dim].end = nl->dim[dim].ubound;
1702 nl->ls[dim].start = nl->dim[dim].lbound;
1703 nl->ls[dim].idx = nl->ls[dim].start;
1706 else
1707 break;
1709 free_mem (ext_name);
1710 return;
1713 /* Resets touched for the entire list of nml_nodes, ready for a
1714 new object. */
1716 static void
1717 nml_untouch_nodes (void)
1719 namelist_info * t;
1720 for (t = ionml; t; t = t->next)
1721 t->touched = 0;
1722 return;
1725 /* Attempts to input name to namelist name. Returns nml_read_error = 1
1726 on no match. */
1728 static void
1729 nml_match_name (const char *name, index_type len)
1731 index_type i;
1732 char c;
1733 nml_read_error = 0;
1734 for (i = 0; i < len; i++)
1736 c = next_char ();
1737 if (tolower (c) != tolower (name[i]))
1739 nml_read_error = 1;
1740 break;
1745 /* If the namelist read is from stdin, output the current state of the
1746 namelist to stdout. This is used to implement the non-standard query
1747 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
1748 the names alone are printed. */
1750 static void
1751 nml_query (char c)
1753 gfc_unit * temp_unit;
1754 namelist_info * nl;
1755 index_type len;
1756 char * p;
1758 if (current_unit->unit_number != options.stdin_unit)
1759 return;
1761 /* Store the current unit and transfer to stdout. */
1763 temp_unit = current_unit;
1764 current_unit = find_unit (options.stdout_unit);
1766 if (current_unit)
1768 g.mode =WRITING;
1769 next_record (0);
1771 /* Write the namelist in its entirety. */
1773 if (c == '=')
1774 namelist_write ();
1776 /* Or write the list of names. */
1778 else
1781 /* "&namelist_name\n" */
1783 len = ioparm.namelist_name_len;
1784 p = write_block (len + 2);
1785 if (!p)
1786 goto query_return;
1787 memcpy (p, "&", 1);
1788 memcpy ((char*)(p + 1), ioparm.namelist_name, len);
1789 memcpy ((char*)(p + len + 1), "\n", 1);
1790 for (nl =ionml; nl; nl = nl->next)
1793 /* " var_name\n" */
1795 len = strlen (nl->var_name);
1796 p = write_block (len + 2);
1797 if (!p)
1798 goto query_return;
1799 memcpy (p, " ", 1);
1800 memcpy ((char*)(p + 1), nl->var_name, len);
1801 memcpy ((char*)(p + len + 1), "\n", 1);
1804 /* "&end\n" */
1806 p = write_block (5);
1807 if (!p)
1808 goto query_return;
1809 memcpy (p, "&end\n", 5);
1812 /* Flush the stream to force immediate output. */
1814 flush (current_unit->s);
1817 query_return:
1819 /* Restore the current unit. */
1821 current_unit = temp_unit;
1822 g.mode = READING;
1823 return;
1826 /* Reads and stores the input for the namelist object nl. For an array,
1827 the function loops over the ranges defined by the loop specification.
1828 This default to all the data or to the specification from a qualifier.
1829 nml_read_obj recursively calls itself to read derived types. It visits
1830 all its own components but only reads data for those that were touched
1831 when the name was parsed. If a read error is encountered, an attempt is
1832 made to return to read a new object name because the standard allows too
1833 little data to be available. On the other hand, too much data is an
1834 error. */
1836 static try
1837 nml_read_obj (namelist_info * nl, index_type offset)
1840 namelist_info * cmp;
1841 char * obj_name;
1842 int nml_carry;
1843 int len;
1844 int dim;
1845 index_type dlen;
1846 index_type m;
1847 index_type obj_name_len;
1848 void * pdata ;
1850 /* This object not touched in name parsing. */
1852 if (!nl->touched)
1853 return SUCCESS;
1855 repeat_count = 0;
1856 eat_spaces();
1858 len = nl->len;
1859 switch (nl->type)
1862 case GFC_DTYPE_INTEGER:
1863 case GFC_DTYPE_LOGICAL:
1864 case GFC_DTYPE_REAL:
1865 dlen = len;
1866 break;
1868 case GFC_DTYPE_COMPLEX:
1869 dlen = 2* len;
1870 break;
1872 case GFC_DTYPE_CHARACTER:
1873 dlen = chigh ? (chigh - clow + 1) : nl->string_length;
1874 break;
1876 default:
1877 dlen = 0;
1883 /* Update the pointer to the data, using the current index vector */
1885 pdata = (void*)(nl->mem_pos + offset);
1886 for (dim = 0; dim < nl->var_rank; dim++)
1887 pdata = (void*)(pdata + (nl->ls[dim].idx - nl->dim[dim].lbound) *
1888 nl->dim[dim].stride * nl->size);
1890 /* Reset the error flag and try to read next value, if
1891 repeat_count=0 */
1893 nml_read_error = 0;
1894 nml_carry = 0;
1895 if (--repeat_count <= 0)
1897 if (input_complete)
1898 return SUCCESS;
1899 if (at_eol)
1900 finish_separator ();
1901 if (input_complete)
1902 return SUCCESS;
1904 /* GFC_TYPE_UNKNOWN through for nulls and is detected
1905 after the switch block. */
1907 saved_type = GFC_DTYPE_UNKNOWN;
1908 free_saved ();
1910 switch (nl->type)
1912 case GFC_DTYPE_INTEGER:
1913 read_integer (len);
1914 break;
1916 case GFC_DTYPE_LOGICAL:
1917 read_logical (len);
1918 break;
1920 case GFC_DTYPE_CHARACTER:
1921 read_character (len);
1922 break;
1924 case GFC_DTYPE_REAL:
1925 read_real (len);
1926 break;
1928 case GFC_DTYPE_COMPLEX:
1929 read_complex (len);
1930 break;
1932 case GFC_DTYPE_DERIVED:
1933 obj_name_len = strlen (nl->var_name) + 1;
1934 obj_name = get_mem (obj_name_len+1);
1935 strcpy (obj_name, nl->var_name);
1936 strcat (obj_name, "%");
1938 /* Now loop over the components. Update the component pointer
1939 with the return value from nml_write_obj. This loop jumps
1940 past nested derived types by testing if the potential
1941 component name contains '%'. */
1943 for (cmp = nl->next;
1944 cmp &&
1945 !strncmp (cmp->var_name, obj_name, obj_name_len) &&
1946 !strchr (cmp->var_name + obj_name_len, '%');
1947 cmp = cmp->next)
1950 if (nml_read_obj (cmp, (index_type)(pdata - nl->mem_pos)) == FAILURE)
1952 free_mem (obj_name);
1953 return FAILURE;
1956 if (input_complete)
1958 free_mem (obj_name);
1959 return SUCCESS;
1963 free_mem (obj_name);
1964 goto incr_idx;
1966 default:
1967 st_sprintf (nml_err_msg, "Bad type for namelist object %s",
1968 nl->var_name );
1969 internal_error (nml_err_msg);
1970 goto nml_err_ret;
1974 /* The standard permits array data to stop short of the number of
1975 elements specified in the loop specification. In this case, we
1976 should be here with nml_read_error != 0. Control returns to
1977 nml_get_obj_data and an attempt is made to read object name. */
1979 prev_nl = nl;
1980 if (nml_read_error)
1981 return SUCCESS;
1983 if (saved_type == GFC_DTYPE_UNKNOWN)
1984 goto incr_idx;
1987 /* Note the switch from GFC_DTYPE_type to BT_type at this point.
1988 This comes about because the read functions return BT_types. */
1990 switch (saved_type)
1993 case BT_COMPLEX:
1994 case BT_REAL:
1995 case BT_INTEGER:
1996 case BT_LOGICAL:
1997 memcpy (pdata, value, dlen);
1998 break;
2000 case BT_CHARACTER:
2001 m = (dlen < saved_used) ? dlen : saved_used;
2002 pdata = (void*)( pdata + clow - 1 );
2003 memcpy (pdata, saved_string, m);
2004 if (m < dlen)
2005 memset ((void*)( pdata + m ), ' ', dlen - m);
2006 break;
2008 default:
2009 break;
2012 /* Break out of loop if scalar. */
2014 if (!nl->var_rank)
2015 break;
2017 /* Now increment the index vector. */
2019 incr_idx:
2021 nml_carry = 1;
2022 for (dim = 0; dim < nl->var_rank; dim++)
2024 nl->ls[dim].idx += nml_carry * nl->ls[dim].step;
2025 nml_carry = 0;
2026 if (((nl->ls[dim].step > 0) && (nl->ls[dim].idx > nl->ls[dim].end))
2028 ((nl->ls[dim].step < 0) && (nl->ls[dim].idx < nl->ls[dim].end)))
2030 nl->ls[dim].idx = nl->ls[dim].start;
2031 nml_carry = 1;
2034 } while (!nml_carry);
2036 if (repeat_count > 1)
2038 st_sprintf (nml_err_msg, "Repeat count too large for namelist object %s" ,
2039 nl->var_name );
2040 goto nml_err_ret;
2042 return SUCCESS;
2044 nml_err_ret:
2046 return FAILURE;
2049 /* Parses the object name, including array and substring qualifiers. It
2050 iterates over derived type components, touching those components and
2051 setting their loop specifications, if there is a qualifier. If the
2052 object is itself a derived type, its components and subcomponents are
2053 touched. nml_read_obj is called at the end and this reads the data in
2054 the manner specified by the object name. */
2056 static try
2057 nml_get_obj_data (void)
2059 char c;
2060 char * ext_name;
2061 namelist_info * nl;
2062 namelist_info * first_nl = NULL;
2063 namelist_info * root_nl = NULL;
2064 int dim;
2065 int component_flag;
2067 /* Look for end of input or object name. If '?' or '=?' are encountered
2068 in stdin, print the node names or the namelist to stdout. */
2070 eat_separator ();
2071 if (input_complete)
2072 return SUCCESS;
2074 if ( at_eol )
2075 finish_separator ();
2076 if (input_complete)
2077 return SUCCESS;
2079 c = next_char ();
2080 switch (c)
2082 case '=':
2083 c = next_char ();
2084 if (c != '?')
2086 st_sprintf (nml_err_msg, "namelist read: missplaced = sign");
2087 goto nml_err_ret;
2089 nml_query ('=');
2090 return SUCCESS;
2092 case '?':
2093 nml_query ('?');
2094 return SUCCESS;
2096 case '$':
2097 case '&':
2098 nml_match_name ("end", 3);
2099 if (nml_read_error)
2101 st_sprintf (nml_err_msg, "namelist not terminated with / or &end");
2102 goto nml_err_ret;
2104 case '/':
2105 input_complete = 1;
2106 return SUCCESS;
2108 default :
2109 break;
2112 /* Untouch all nodes of the namelist and reset the flag that is set for
2113 derived type components. */
2115 nml_untouch_nodes();
2116 component_flag = 0;
2118 /* Get the object name - should '!' and '\n' be permitted separators? */
2120 get_name:
2122 free_saved ();
2126 push_char(tolower(c));
2127 c = next_char ();
2128 } while (!( c=='=' || c==' ' || c=='\t' || c =='(' || c =='%' ));
2130 unget_char (c);
2132 /* Check that the name is in the namelist and get pointer to object.
2133 Three error conditions exist: (i) An attempt is being made to
2134 identify a non-existent object, following a failed data read or
2135 (ii) The object name does not exist or (iii) Too many data items
2136 are present for an object. (iii) gives the same error message
2137 as (i) */
2139 push_char ('\0');
2141 if (component_flag)
2143 ext_name = (char*)get_mem (strlen (root_nl->var_name)
2144 + (saved_string ? strlen (saved_string) : 0)
2145 + 1);
2146 strcpy (ext_name, root_nl->var_name);
2147 strcat (ext_name, saved_string);
2148 nl = find_nml_node (ext_name);
2149 free_mem (ext_name);
2151 else
2152 nl = find_nml_node (saved_string);
2154 if (nl == NULL)
2156 if (nml_read_error && prev_nl)
2157 st_sprintf (nml_err_msg, "Bad data for namelist object %s",
2158 prev_nl->var_name);
2160 else
2161 st_sprintf (nml_err_msg, "Cannot match namelist object name %s",
2162 saved_string);
2164 goto nml_err_ret;
2167 /* Get the length, data length, base pointer and rank of the variable.
2168 Set the default loop specification first. */
2170 for (dim=0; dim < nl->var_rank; dim++)
2172 nl->ls[dim].step = 1;
2173 nl->ls[dim].end = nl->dim[dim].ubound;
2174 nl->ls[dim].start = nl->dim[dim].lbound;
2175 nl->ls[dim].idx = nl->ls[dim].start;
2178 /* Check to see if there is a qualifier: if so, parse it.*/
2180 if (c == '(' && nl->var_rank)
2182 if (nml_parse_qualifier (nl->dim, nl->ls, nl->var_rank) == FAILURE)
2184 st_sprintf (nml_err_msg, "%s for namelist variable %s",
2185 parse_err_msg, nl->var_name);
2186 goto nml_err_ret;
2188 c = next_char ();
2189 unget_char (c);
2192 /* Now parse a derived type component. The root namelist_info address
2193 is backed up, as is the previous component level. The component flag
2194 is set and the iteration is made by jumping back to get_name. */
2196 if (c == '%')
2199 if (nl->type != GFC_DTYPE_DERIVED)
2201 st_sprintf (nml_err_msg, "Attempt to get derived component for %s",
2202 nl->var_name);
2203 goto nml_err_ret;
2206 if (!component_flag)
2207 first_nl = nl;
2209 root_nl = nl;
2210 component_flag = 1;
2211 c = next_char ();
2212 goto get_name;
2216 /* Parse a character qualifier, if present. chigh = 0 is a default
2217 that signals that the string length = string_length. */
2219 clow = 1;
2220 chigh = 0;
2222 if (c == '(' && nl->type == GFC_DTYPE_CHARACTER)
2224 descriptor_dimension chd[1] = { {1, clow, nl->string_length} };
2225 nml_loop_spec ind[1] = { {1, clow, nl->string_length, 1} };
2227 if (nml_parse_qualifier (chd, ind, 1) == FAILURE)
2229 st_sprintf (nml_err_msg, "%s for namelist variable %s",
2230 parse_err_msg, nl->var_name);
2231 goto nml_err_ret;
2234 clow = ind[0].start;
2235 chigh = ind[0].end;
2237 if (ind[0].step != 1)
2239 st_sprintf (nml_err_msg,
2240 "Bad step in substring for namelist object %s",
2241 nl->var_name);
2242 goto nml_err_ret;
2245 c = next_char ();
2246 unget_char (c);
2249 /* If a derived type touch its components and restore the root
2250 namelist_info if we have parsed a qualified derived type
2251 component. */
2253 if (nl->type == GFC_DTYPE_DERIVED)
2254 nml_touch_nodes (nl);
2255 if (component_flag)
2256 nl = first_nl;
2258 /*make sure no extraneous qualifiers are there.*/
2260 if (c == '(')
2262 st_sprintf (nml_err_msg, "Qualifier for a scalar or non-character"
2263 " namelist object %s", nl->var_name);
2264 goto nml_err_ret;
2267 /* According to the standard, an equal sign MUST follow an object name. The
2268 following is possibly lax - it allows comments, blank lines and so on to
2269 intervene. eat_spaces (); c = next_char (); would be compliant*/
2271 free_saved ();
2273 eat_separator ();
2274 if (input_complete)
2275 return SUCCESS;
2277 if (at_eol)
2278 finish_separator ();
2279 if (input_complete)
2280 return SUCCESS;
2282 c = next_char ();
2284 if (c != '=')
2286 st_sprintf (nml_err_msg, "Equal sign must follow namelist object name %s",
2287 nl->var_name);
2288 goto nml_err_ret;
2291 if (nml_read_obj (nl, 0) == FAILURE)
2292 goto nml_err_ret;
2294 return SUCCESS;
2296 nml_err_ret:
2298 return FAILURE;
2301 /* Entry point for namelist input. Goes through input until namelist name
2302 is matched. Then cycles through nml_get_obj_data until the input is
2303 completed or there is an error. */
2305 void
2306 namelist_read (void)
2308 char c;
2310 namelist_mode = 1;
2311 input_complete = 0;
2313 if (setjmp (g.eof_jump))
2315 generate_error (ERROR_END, NULL);
2316 return;
2319 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
2320 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
2321 node names or namelist on stdout. */
2323 find_nml_name:
2324 switch (c = next_char ())
2326 case '$':
2327 case '&':
2328 break;
2330 case '=':
2331 c = next_char ();
2332 if (c == '?')
2333 nml_query ('=');
2334 else
2335 unget_char (c);
2336 goto find_nml_name;
2338 case '?':
2339 nml_query ('?');
2341 default:
2342 goto find_nml_name;
2345 /* Match the name of the namelist. */
2347 nml_match_name (ioparm.namelist_name, ioparm.namelist_name_len);
2349 if (nml_read_error)
2350 goto find_nml_name;
2352 /* Ready to read namelist objects. If there is an error in input
2353 from stdin, output the error message and continue. */
2355 while (!input_complete)
2357 if (nml_get_obj_data () == FAILURE)
2359 if (current_unit->unit_number != options.stdin_unit)
2360 goto nml_err_ret;
2362 st_printf ("%s\n", nml_err_msg);
2363 flush (find_unit (options.stderr_unit)->s);
2368 return;
2370 /* All namelist error calls return from here */
2372 nml_err_ret:
2374 generate_error (ERROR_READ_VALUE , nml_err_msg);
2375 return;