PR libfortran/39665 libfortran/39702 libfortran/39709
[gcc.git] / libgfortran / io / list_read.c
1 /* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009
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
6
7 This file is part of the GNU Fortran 95 runtime library (libgfortran).
8
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)
12 any later version.
13
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.
18
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.
22
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/>. */
27
28
29 #include "io.h"
30 #include <string.h>
31 #include <stdlib.h>
32 #include <ctype.h>
33
34
35 /* List directed input. Several parsing subroutines are practically
36 reimplemented from formatted input, the reason being that there are
37 all kinds of small differences between formatted and list directed
38 parsing. */
39
40
41 /* Subroutines for reading characters from the input. Because a
42 repeat count is ambiguous with an integer, we have to read the
43 whole digit string before seeing if there is a '*' which signals
44 the repeat count. Since we can have a lot of potential leading
45 zeros, we have to be able to back up by arbitrary amount. Because
46 the input might not be seekable, we have to buffer the data
47 ourselves. */
48
49 #define CASE_DIGITS case '0': case '1': case '2': case '3': case '4': \
50 case '5': case '6': case '7': case '8': case '9'
51
52 #define CASE_SEPARATORS case ' ': case ',': case '/': case '\n': case '\t': \
53 case '\r': case ';'
54
55 /* This macro assumes that we're operating on a variable. */
56
57 #define is_separator(c) (c == '/' || c == ',' || c == '\n' || c == ' ' \
58 || c == '\t' || c == '\r' || c == ';')
59
60 /* Maximum repeat count. Less than ten times the maximum signed int32. */
61
62 #define MAX_REPEAT 200000000
63
64 #ifndef HAVE_SNPRINTF
65 # undef snprintf
66 # define snprintf(str, size, ...) sprintf (str, __VA_ARGS__)
67 #endif
68
69 /* Save a character to a string buffer, enlarging it as necessary. */
70
71 static void
72 push_char (st_parameter_dt *dtp, char c)
73 {
74 char *new;
75
76 if (dtp->u.p.saved_string == NULL)
77 {
78 dtp->u.p.saved_string = get_mem (SCRATCH_SIZE);
79 // memset below should be commented out.
80 memset (dtp->u.p.saved_string, 0, SCRATCH_SIZE);
81 dtp->u.p.saved_length = SCRATCH_SIZE;
82 dtp->u.p.saved_used = 0;
83 }
84
85 if (dtp->u.p.saved_used >= dtp->u.p.saved_length)
86 {
87 dtp->u.p.saved_length = 2 * dtp->u.p.saved_length;
88 new = realloc (dtp->u.p.saved_string, dtp->u.p.saved_length);
89 if (new == NULL)
90 generate_error (&dtp->common, LIBERROR_OS, NULL);
91 dtp->u.p.saved_string = new;
92
93 // Also this should not be necessary.
94 memset (new + dtp->u.p.saved_used, 0,
95 dtp->u.p.saved_length - dtp->u.p.saved_used);
96
97 }
98
99 dtp->u.p.saved_string[dtp->u.p.saved_used++] = c;
100 }
101
102
103 /* Free the input buffer if necessary. */
104
105 static void
106 free_saved (st_parameter_dt *dtp)
107 {
108 if (dtp->u.p.saved_string == NULL)
109 return;
110
111 free_mem (dtp->u.p.saved_string);
112
113 dtp->u.p.saved_string = NULL;
114 dtp->u.p.saved_used = 0;
115 }
116
117
118 /* Free the line buffer if necessary. */
119
120 static void
121 free_line (st_parameter_dt *dtp)
122 {
123 dtp->u.p.item_count = 0;
124 dtp->u.p.line_buffer_enabled = 0;
125
126 if (dtp->u.p.line_buffer == NULL)
127 return;
128
129 free_mem (dtp->u.p.line_buffer);
130 dtp->u.p.line_buffer = NULL;
131 }
132
133
134 static char
135 next_char (st_parameter_dt *dtp)
136 {
137 ssize_t length;
138 gfc_offset record;
139 char c;
140 int cc;
141
142 if (dtp->u.p.last_char != '\0')
143 {
144 dtp->u.p.at_eol = 0;
145 c = dtp->u.p.last_char;
146 dtp->u.p.last_char = '\0';
147 goto done;
148 }
149
150 /* Read from line_buffer if enabled. */
151
152 if (dtp->u.p.line_buffer_enabled)
153 {
154 dtp->u.p.at_eol = 0;
155
156 c = dtp->u.p.line_buffer[dtp->u.p.item_count];
157 if (c != '\0' && dtp->u.p.item_count < 64)
158 {
159 dtp->u.p.line_buffer[dtp->u.p.item_count] = '\0';
160 dtp->u.p.item_count++;
161 goto done;
162 }
163
164 dtp->u.p.item_count = 0;
165 dtp->u.p.line_buffer_enabled = 0;
166 }
167
168 /* Handle the end-of-record and end-of-file conditions for
169 internal array unit. */
170 if (is_array_io (dtp))
171 {
172 if (dtp->u.p.at_eof)
173 longjmp (*dtp->u.p.eof_jump, 1);
174
175 /* Check for "end-of-record" condition. */
176 if (dtp->u.p.current_unit->bytes_left == 0)
177 {
178 int finished;
179
180 c = '\n';
181 record = next_array_record (dtp, dtp->u.p.current_unit->ls,
182 &finished);
183
184 /* Check for "end-of-file" condition. */
185 if (finished)
186 {
187 dtp->u.p.at_eof = 1;
188 goto done;
189 }
190
191 record *= dtp->u.p.current_unit->recl;
192 if (sseek (dtp->u.p.current_unit->s, record, SEEK_SET) < 0)
193 longjmp (*dtp->u.p.eof_jump, 1);
194
195 dtp->u.p.current_unit->bytes_left = dtp->u.p.current_unit->recl;
196 goto done;
197 }
198 }
199
200 /* Get the next character and handle end-of-record conditions. */
201
202 if (is_internal_unit (dtp))
203 {
204 length = sread (dtp->u.p.current_unit->s, &c, 1);
205 if (length < 0)
206 {
207 generate_error (&dtp->common, LIBERROR_OS, NULL);
208 return '\0';
209 }
210
211 if (is_array_io (dtp))
212 {
213 /* Check whether we hit EOF. */
214 if (length == 0)
215 {
216 generate_error (&dtp->common, LIBERROR_INTERNAL_UNIT, NULL);
217 return '\0';
218 }
219 dtp->u.p.current_unit->bytes_left--;
220 }
221 else
222 {
223 if (dtp->u.p.at_eof)
224 longjmp (*dtp->u.p.eof_jump, 1);
225 if (length == 0)
226 {
227 c = '\n';
228 dtp->u.p.at_eof = 1;
229 }
230 }
231 }
232 else
233 {
234 cc = fbuf_getc (dtp->u.p.current_unit);
235
236 if (cc == EOF)
237 {
238 if (dtp->u.p.current_unit->endfile == AT_ENDFILE)
239 longjmp (*dtp->u.p.eof_jump, 1);
240 dtp->u.p.current_unit->endfile = AT_ENDFILE;
241 c = '\n';
242 }
243 else
244 c = (char) cc;
245 if (is_stream_io (dtp) && cc != EOF)
246 dtp->u.p.current_unit->strm_pos++;
247
248 }
249 done:
250 dtp->u.p.at_eol = (c == '\n' || c == '\r');
251 return c;
252 }
253
254
255 /* Push a character back onto the input. */
256
257 static void
258 unget_char (st_parameter_dt *dtp, char c)
259 {
260 dtp->u.p.last_char = c;
261 }
262
263
264 /* Skip over spaces in the input. Returns the nonspace character that
265 terminated the eating and also places it back on the input. */
266
267 static char
268 eat_spaces (st_parameter_dt *dtp)
269 {
270 char c;
271
272 do
273 {
274 c = next_char (dtp);
275 }
276 while (c == ' ' || c == '\t');
277
278 unget_char (dtp, c);
279 return c;
280 }
281
282
283 /* This function reads characters through to the end of the current line and
284 just ignores them. */
285
286 static void
287 eat_line (st_parameter_dt *dtp)
288 {
289 char c;
290 if (!is_internal_unit (dtp))
291 do
292 c = next_char (dtp);
293 while (c != '\n');
294 }
295
296
297 /* Skip over a separator. Technically, we don't always eat the whole
298 separator. This is because if we've processed the last input item,
299 then a separator is unnecessary. Plus the fact that operating
300 systems usually deliver console input on a line basis.
301
302 The upshot is that if we see a newline as part of reading a
303 separator, we stop reading. If there are more input items, we
304 continue reading the separator with finish_separator() which takes
305 care of the fact that we may or may not have seen a comma as part
306 of the separator. */
307
308 static void
309 eat_separator (st_parameter_dt *dtp)
310 {
311 char c, n;
312
313 eat_spaces (dtp);
314 dtp->u.p.comma_flag = 0;
315
316 c = next_char (dtp);
317 switch (c)
318 {
319 case ',':
320 if (dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
321 {
322 unget_char (dtp, c);
323 break;
324 }
325 /* Fall through. */
326 case ';':
327 dtp->u.p.comma_flag = 1;
328 eat_spaces (dtp);
329 break;
330
331 case '/':
332 dtp->u.p.input_complete = 1;
333 break;
334
335 case '\r':
336 dtp->u.p.at_eol = 1;
337 n = next_char(dtp);
338 if (n != '\n')
339 {
340 unget_char (dtp, n);
341 break;
342 }
343 /* Fall through. */
344 case '\n':
345 dtp->u.p.at_eol = 1;
346 if (dtp->u.p.namelist_mode)
347 {
348 do
349 {
350 c = next_char (dtp);
351 if (c == '!')
352 {
353 eat_line (dtp);
354 c = next_char (dtp);
355 if (c == '!')
356 {
357 eat_line (dtp);
358 c = next_char (dtp);
359 }
360 }
361 }
362 while (c == '\n' || c == '\r' || c == ' ' || c == '\t');
363 unget_char (dtp, c);
364 }
365 break;
366
367 case '!':
368 if (dtp->u.p.namelist_mode)
369 { /* Eat a namelist comment. */
370 do
371 c = next_char (dtp);
372 while (c != '\n');
373
374 break;
375 }
376
377 /* Fall Through... */
378
379 default:
380 unget_char (dtp, c);
381 break;
382 }
383 }
384
385
386 /* Finish processing a separator that was interrupted by a newline.
387 If we're here, then another data item is present, so we finish what
388 we started on the previous line. */
389
390 static void
391 finish_separator (st_parameter_dt *dtp)
392 {
393 char c;
394
395 restart:
396 eat_spaces (dtp);
397
398 c = next_char (dtp);
399 switch (c)
400 {
401 case ',':
402 if (dtp->u.p.comma_flag)
403 unget_char (dtp, c);
404 else
405 {
406 c = eat_spaces (dtp);
407 if (c == '\n' || c == '\r')
408 goto restart;
409 }
410
411 break;
412
413 case '/':
414 dtp->u.p.input_complete = 1;
415 if (!dtp->u.p.namelist_mode)
416 return;
417 break;
418
419 case '\n':
420 case '\r':
421 goto restart;
422
423 case '!':
424 if (dtp->u.p.namelist_mode)
425 {
426 do
427 c = next_char (dtp);
428 while (c != '\n');
429
430 goto restart;
431 }
432
433 default:
434 unget_char (dtp, c);
435 break;
436 }
437 }
438
439
440 /* This function is needed to catch bad conversions so that namelist can
441 attempt to see if dtp->u.p.saved_string contains a new object name rather
442 than a bad value. */
443
444 static int
445 nml_bad_return (st_parameter_dt *dtp, char c)
446 {
447 if (dtp->u.p.namelist_mode)
448 {
449 dtp->u.p.nml_read_error = 1;
450 unget_char (dtp, c);
451 return 1;
452 }
453 return 0;
454 }
455
456 /* Convert an unsigned string to an integer. The length value is -1
457 if we are working on a repeat count. Returns nonzero if we have a
458 range problem. As a side effect, frees the dtp->u.p.saved_string. */
459
460 static int
461 convert_integer (st_parameter_dt *dtp, int length, int negative)
462 {
463 char c, *buffer, message[100];
464 int m;
465 GFC_INTEGER_LARGEST v, max, max10;
466
467 buffer = dtp->u.p.saved_string;
468 v = 0;
469
470 max = (length == -1) ? MAX_REPEAT : max_value (length, 1);
471 max10 = max / 10;
472
473 for (;;)
474 {
475 c = *buffer++;
476 if (c == '\0')
477 break;
478 c -= '0';
479
480 if (v > max10)
481 goto overflow;
482 v = 10 * v;
483
484 if (v > max - c)
485 goto overflow;
486 v += c;
487 }
488
489 m = 0;
490
491 if (length != -1)
492 {
493 if (negative)
494 v = -v;
495 set_integer (dtp->u.p.value, v, length);
496 }
497 else
498 {
499 dtp->u.p.repeat_count = v;
500
501 if (dtp->u.p.repeat_count == 0)
502 {
503 sprintf (message, "Zero repeat count in item %d of list input",
504 dtp->u.p.item_count);
505
506 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
507 m = 1;
508 }
509 }
510
511 free_saved (dtp);
512 return m;
513
514 overflow:
515 if (length == -1)
516 sprintf (message, "Repeat count overflow in item %d of list input",
517 dtp->u.p.item_count);
518 else
519 sprintf (message, "Integer overflow while reading item %d",
520 dtp->u.p.item_count);
521
522 free_saved (dtp);
523 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
524
525 return 1;
526 }
527
528
529 /* Parse a repeat count for logical and complex values which cannot
530 begin with a digit. Returns nonzero if we are done, zero if we
531 should continue on. */
532
533 static int
534 parse_repeat (st_parameter_dt *dtp)
535 {
536 char c, message[100];
537 int repeat;
538
539 c = next_char (dtp);
540 switch (c)
541 {
542 CASE_DIGITS:
543 repeat = c - '0';
544 break;
545
546 CASE_SEPARATORS:
547 unget_char (dtp, c);
548 eat_separator (dtp);
549 return 1;
550
551 default:
552 unget_char (dtp, c);
553 return 0;
554 }
555
556 for (;;)
557 {
558 c = next_char (dtp);
559 switch (c)
560 {
561 CASE_DIGITS:
562 repeat = 10 * repeat + c - '0';
563
564 if (repeat > MAX_REPEAT)
565 {
566 sprintf (message,
567 "Repeat count overflow in item %d of list input",
568 dtp->u.p.item_count);
569
570 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
571 return 1;
572 }
573
574 break;
575
576 case '*':
577 if (repeat == 0)
578 {
579 sprintf (message,
580 "Zero repeat count in item %d of list input",
581 dtp->u.p.item_count);
582
583 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
584 return 1;
585 }
586
587 goto done;
588
589 default:
590 goto bad_repeat;
591 }
592 }
593
594 done:
595 dtp->u.p.repeat_count = repeat;
596 return 0;
597
598 bad_repeat:
599
600 eat_line (dtp);
601 free_saved (dtp);
602 sprintf (message, "Bad repeat count in item %d of list input",
603 dtp->u.p.item_count);
604 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
605 return 1;
606 }
607
608
609 /* To read a logical we have to look ahead in the input stream to make sure
610 there is not an equal sign indicating a variable name. To do this we use
611 line_buffer to point to a temporary buffer, pushing characters there for
612 possible later reading. */
613
614 static void
615 l_push_char (st_parameter_dt *dtp, char c)
616 {
617 if (dtp->u.p.line_buffer == NULL)
618 {
619 dtp->u.p.line_buffer = get_mem (SCRATCH_SIZE);
620 memset (dtp->u.p.line_buffer, 0, SCRATCH_SIZE);
621 }
622
623 dtp->u.p.line_buffer[dtp->u.p.item_count++] = c;
624 }
625
626
627 /* Read a logical character on the input. */
628
629 static void
630 read_logical (st_parameter_dt *dtp, int length)
631 {
632 char c, message[100];
633 int i, v;
634
635 if (parse_repeat (dtp))
636 return;
637
638 c = tolower (next_char (dtp));
639 l_push_char (dtp, c);
640 switch (c)
641 {
642 case 't':
643 v = 1;
644 c = next_char (dtp);
645 l_push_char (dtp, c);
646
647 if (!is_separator(c))
648 goto possible_name;
649
650 unget_char (dtp, c);
651 break;
652 case 'f':
653 v = 0;
654 c = next_char (dtp);
655 l_push_char (dtp, c);
656
657 if (!is_separator(c))
658 goto possible_name;
659
660 unget_char (dtp, c);
661 break;
662
663 case '.':
664 c = tolower (next_char (dtp));
665 switch (c)
666 {
667 case 't':
668 v = 1;
669 break;
670 case 'f':
671 v = 0;
672 break;
673 default:
674 goto bad_logical;
675 }
676
677 break;
678
679 CASE_SEPARATORS:
680 unget_char (dtp, c);
681 eat_separator (dtp);
682 return; /* Null value. */
683
684 default:
685 /* Save the character in case it is the beginning
686 of the next object name. */
687 unget_char (dtp, c);
688 goto bad_logical;
689 }
690
691 dtp->u.p.saved_type = BT_LOGICAL;
692 dtp->u.p.saved_length = length;
693
694 /* Eat trailing garbage. */
695 do
696 {
697 c = next_char (dtp);
698 }
699 while (!is_separator (c));
700
701 unget_char (dtp, c);
702 eat_separator (dtp);
703 set_integer ((int *) dtp->u.p.value, v, length);
704 free_line (dtp);
705
706 return;
707
708 possible_name:
709
710 for(i = 0; i < 63; i++)
711 {
712 c = next_char (dtp);
713 if (is_separator(c))
714 {
715 /* All done if this is not a namelist read. */
716 if (!dtp->u.p.namelist_mode)
717 goto logical_done;
718
719 unget_char (dtp, c);
720 eat_separator (dtp);
721 c = next_char (dtp);
722 if (c != '=')
723 {
724 unget_char (dtp, c);
725 goto logical_done;
726 }
727 }
728
729 l_push_char (dtp, c);
730 if (c == '=')
731 {
732 dtp->u.p.nml_read_error = 1;
733 dtp->u.p.line_buffer_enabled = 1;
734 dtp->u.p.item_count = 0;
735 return;
736 }
737
738 }
739
740 bad_logical:
741
742 free_line (dtp);
743
744 if (nml_bad_return (dtp, c))
745 return;
746
747 eat_line (dtp);
748 free_saved (dtp);
749 sprintf (message, "Bad logical value while reading item %d",
750 dtp->u.p.item_count);
751 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
752 return;
753
754 logical_done:
755
756 dtp->u.p.saved_type = BT_LOGICAL;
757 dtp->u.p.saved_length = length;
758 set_integer ((int *) dtp->u.p.value, v, length);
759 free_saved (dtp);
760 free_line (dtp);
761 }
762
763
764 /* Reading integers is tricky because we can actually be reading a
765 repeat count. We have to store the characters in a buffer because
766 we could be reading an integer that is larger than the default int
767 used for repeat counts. */
768
769 static void
770 read_integer (st_parameter_dt *dtp, int length)
771 {
772 char c, message[100];
773 int negative;
774
775 negative = 0;
776
777 c = next_char (dtp);
778 switch (c)
779 {
780 case '-':
781 negative = 1;
782 /* Fall through... */
783
784 case '+':
785 c = next_char (dtp);
786 goto get_integer;
787
788 CASE_SEPARATORS: /* Single null. */
789 unget_char (dtp, c);
790 eat_separator (dtp);
791 return;
792
793 CASE_DIGITS:
794 push_char (dtp, c);
795 break;
796
797 default:
798 goto bad_integer;
799 }
800
801 /* Take care of what may be a repeat count. */
802
803 for (;;)
804 {
805 c = next_char (dtp);
806 switch (c)
807 {
808 CASE_DIGITS:
809 push_char (dtp, c);
810 break;
811
812 case '*':
813 push_char (dtp, '\0');
814 goto repeat;
815
816 CASE_SEPARATORS: /* Not a repeat count. */
817 goto done;
818
819 default:
820 goto bad_integer;
821 }
822 }
823
824 repeat:
825 if (convert_integer (dtp, -1, 0))
826 return;
827
828 /* Get the real integer. */
829
830 c = next_char (dtp);
831 switch (c)
832 {
833 CASE_DIGITS:
834 break;
835
836 CASE_SEPARATORS:
837 unget_char (dtp, c);
838 eat_separator (dtp);
839 return;
840
841 case '-':
842 negative = 1;
843 /* Fall through... */
844
845 case '+':
846 c = next_char (dtp);
847 break;
848 }
849
850 get_integer:
851 if (!isdigit (c))
852 goto bad_integer;
853 push_char (dtp, c);
854
855 for (;;)
856 {
857 c = next_char (dtp);
858 switch (c)
859 {
860 CASE_DIGITS:
861 push_char (dtp, c);
862 break;
863
864 CASE_SEPARATORS:
865 goto done;
866
867 default:
868 goto bad_integer;
869 }
870 }
871
872 bad_integer:
873
874 if (nml_bad_return (dtp, c))
875 return;
876
877 eat_line (dtp);
878 free_saved (dtp);
879 sprintf (message, "Bad integer for item %d in list input",
880 dtp->u.p.item_count);
881 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
882
883 return;
884
885 done:
886 unget_char (dtp, c);
887 eat_separator (dtp);
888
889 push_char (dtp, '\0');
890 if (convert_integer (dtp, length, negative))
891 {
892 free_saved (dtp);
893 return;
894 }
895
896 free_saved (dtp);
897 dtp->u.p.saved_type = BT_INTEGER;
898 }
899
900
901 /* Read a character variable. */
902
903 static void
904 read_character (st_parameter_dt *dtp, int length __attribute__ ((unused)))
905 {
906 char c, quote, message[100];
907
908 quote = ' '; /* Space means no quote character. */
909
910 c = next_char (dtp);
911 switch (c)
912 {
913 CASE_DIGITS:
914 push_char (dtp, c);
915 break;
916
917 CASE_SEPARATORS:
918 unget_char (dtp, c); /* NULL value. */
919 eat_separator (dtp);
920 return;
921
922 case '"':
923 case '\'':
924 quote = c;
925 goto get_string;
926
927 default:
928 if (dtp->u.p.namelist_mode)
929 {
930 unget_char (dtp, c);
931 return;
932 }
933
934 push_char (dtp, c);
935 goto get_string;
936 }
937
938 /* Deal with a possible repeat count. */
939
940 for (;;)
941 {
942 c = next_char (dtp);
943 switch (c)
944 {
945 CASE_DIGITS:
946 push_char (dtp, c);
947 break;
948
949 CASE_SEPARATORS:
950 unget_char (dtp, c);
951 goto done; /* String was only digits! */
952
953 case '*':
954 push_char (dtp, '\0');
955 goto got_repeat;
956
957 default:
958 push_char (dtp, c);
959 goto get_string; /* Not a repeat count after all. */
960 }
961 }
962
963 got_repeat:
964 if (convert_integer (dtp, -1, 0))
965 return;
966
967 /* Now get the real string. */
968
969 c = next_char (dtp);
970 switch (c)
971 {
972 CASE_SEPARATORS:
973 unget_char (dtp, c); /* Repeated NULL values. */
974 eat_separator (dtp);
975 return;
976
977 case '"':
978 case '\'':
979 quote = c;
980 break;
981
982 default:
983 push_char (dtp, c);
984 break;
985 }
986
987 get_string:
988 for (;;)
989 {
990 c = next_char (dtp);
991 switch (c)
992 {
993 case '"':
994 case '\'':
995 if (c != quote)
996 {
997 push_char (dtp, c);
998 break;
999 }
1000
1001 /* See if we have a doubled quote character or the end of
1002 the string. */
1003
1004 c = next_char (dtp);
1005 if (c == quote)
1006 {
1007 push_char (dtp, quote);
1008 break;
1009 }
1010
1011 unget_char (dtp, c);
1012 goto done;
1013
1014 CASE_SEPARATORS:
1015 if (quote == ' ')
1016 {
1017 unget_char (dtp, c);
1018 goto done;
1019 }
1020
1021 if (c != '\n' && c != '\r')
1022 push_char (dtp, c);
1023 break;
1024
1025 default:
1026 push_char (dtp, c);
1027 break;
1028 }
1029 }
1030
1031 /* At this point, we have to have a separator, or else the string is
1032 invalid. */
1033 done:
1034 c = next_char (dtp);
1035 if (is_separator (c) || c == '!')
1036 {
1037 unget_char (dtp, c);
1038 eat_separator (dtp);
1039 dtp->u.p.saved_type = BT_CHARACTER;
1040 free_line (dtp);
1041 }
1042 else
1043 {
1044 free_saved (dtp);
1045 sprintf (message, "Invalid string input in item %d",
1046 dtp->u.p.item_count);
1047 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1048 }
1049 }
1050
1051
1052 /* Parse a component of a complex constant or a real number that we
1053 are sure is already there. This is a straight real number parser. */
1054
1055 static int
1056 parse_real (st_parameter_dt *dtp, void *buffer, int length)
1057 {
1058 char c, message[100];
1059 int m, seen_dp;
1060
1061 c = next_char (dtp);
1062 if (c == '-' || c == '+')
1063 {
1064 push_char (dtp, c);
1065 c = next_char (dtp);
1066 }
1067
1068 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1069 c = '.';
1070
1071 if (!isdigit (c) && c != '.')
1072 {
1073 if (c == 'i' || c == 'I' || c == 'n' || c == 'N')
1074 goto inf_nan;
1075 else
1076 goto bad;
1077 }
1078
1079 push_char (dtp, c);
1080
1081 seen_dp = (c == '.') ? 1 : 0;
1082
1083 for (;;)
1084 {
1085 c = next_char (dtp);
1086 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1087 c = '.';
1088 switch (c)
1089 {
1090 CASE_DIGITS:
1091 push_char (dtp, c);
1092 break;
1093
1094 case '.':
1095 if (seen_dp)
1096 goto bad;
1097
1098 seen_dp = 1;
1099 push_char (dtp, c);
1100 break;
1101
1102 case 'e':
1103 case 'E':
1104 case 'd':
1105 case 'D':
1106 push_char (dtp, 'e');
1107 goto exp1;
1108
1109 case '-':
1110 case '+':
1111 push_char (dtp, 'e');
1112 push_char (dtp, c);
1113 c = next_char (dtp);
1114 goto exp2;
1115
1116 CASE_SEPARATORS:
1117 unget_char (dtp, c);
1118 goto done;
1119
1120 default:
1121 goto done;
1122 }
1123 }
1124
1125 exp1:
1126 c = next_char (dtp);
1127 if (c != '-' && c != '+')
1128 push_char (dtp, '+');
1129 else
1130 {
1131 push_char (dtp, c);
1132 c = next_char (dtp);
1133 }
1134
1135 exp2:
1136 if (!isdigit (c))
1137 goto bad;
1138
1139 push_char (dtp, c);
1140
1141 for (;;)
1142 {
1143 c = next_char (dtp);
1144 switch (c)
1145 {
1146 CASE_DIGITS:
1147 push_char (dtp, c);
1148 break;
1149
1150 CASE_SEPARATORS:
1151 unget_char (dtp, c);
1152 goto done;
1153
1154 default:
1155 goto done;
1156 }
1157 }
1158
1159 done:
1160 unget_char (dtp, c);
1161 push_char (dtp, '\0');
1162
1163 m = convert_real (dtp, buffer, dtp->u.p.saved_string, length);
1164 free_saved (dtp);
1165
1166 return m;
1167
1168 inf_nan:
1169 /* Match INF and Infinity. */
1170 if ((c == 'i' || c == 'I')
1171 && ((c = next_char (dtp)) == 'n' || c == 'N')
1172 && ((c = next_char (dtp)) == 'f' || c == 'F'))
1173 {
1174 c = next_char (dtp);
1175 if ((c != 'i' && c != 'I')
1176 || ((c == 'i' || c == 'I')
1177 && ((c = next_char (dtp)) == 'n' || c == 'N')
1178 && ((c = next_char (dtp)) == 'i' || c == 'I')
1179 && ((c = next_char (dtp)) == 't' || c == 'T')
1180 && ((c = next_char (dtp)) == 'y' || c == 'Y')
1181 && (c = next_char (dtp))))
1182 {
1183 if (is_separator (c))
1184 unget_char (dtp, c);
1185 push_char (dtp, 'i');
1186 push_char (dtp, 'n');
1187 push_char (dtp, 'f');
1188 goto done;
1189 }
1190 } /* Match NaN. */
1191 else if (((c = next_char (dtp)) == 'a' || c == 'A')
1192 && ((c = next_char (dtp)) == 'n' || c == 'N')
1193 && (c = next_char (dtp)))
1194 {
1195 if (is_separator (c))
1196 unget_char (dtp, c);
1197 push_char (dtp, 'n');
1198 push_char (dtp, 'a');
1199 push_char (dtp, 'n');
1200 goto done;
1201 }
1202
1203 bad:
1204
1205 if (nml_bad_return (dtp, c))
1206 return 0;
1207
1208 eat_line (dtp);
1209 free_saved (dtp);
1210 sprintf (message, "Bad floating point number for item %d",
1211 dtp->u.p.item_count);
1212 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1213
1214 return 1;
1215 }
1216
1217
1218 /* Reading a complex number is straightforward because we can tell
1219 what it is right away. */
1220
1221 static void
1222 read_complex (st_parameter_dt *dtp, void * dest, int kind, size_t size)
1223 {
1224 char message[100];
1225 char c;
1226
1227 if (parse_repeat (dtp))
1228 return;
1229
1230 c = next_char (dtp);
1231 switch (c)
1232 {
1233 case '(':
1234 break;
1235
1236 CASE_SEPARATORS:
1237 unget_char (dtp, c);
1238 eat_separator (dtp);
1239 return;
1240
1241 default:
1242 goto bad_complex;
1243 }
1244
1245 eat_spaces (dtp);
1246 if (parse_real (dtp, dest, kind))
1247 return;
1248
1249 eol_1:
1250 eat_spaces (dtp);
1251 c = next_char (dtp);
1252 if (c == '\n' || c== '\r')
1253 goto eol_1;
1254 else
1255 unget_char (dtp, c);
1256
1257 if (next_char (dtp)
1258 != (dtp->u.p.current_unit->decimal_status == DECIMAL_POINT ? ',' : ';'))
1259 goto bad_complex;
1260
1261 eol_2:
1262 eat_spaces (dtp);
1263 c = next_char (dtp);
1264 if (c == '\n' || c== '\r')
1265 goto eol_2;
1266 else
1267 unget_char (dtp, c);
1268
1269 if (parse_real (dtp, dest + size / 2, kind))
1270 return;
1271
1272 eat_spaces (dtp);
1273 if (next_char (dtp) != ')')
1274 goto bad_complex;
1275
1276 c = next_char (dtp);
1277 if (!is_separator (c))
1278 goto bad_complex;
1279
1280 unget_char (dtp, c);
1281 eat_separator (dtp);
1282
1283 free_saved (dtp);
1284 dtp->u.p.saved_type = BT_COMPLEX;
1285 return;
1286
1287 bad_complex:
1288
1289 if (nml_bad_return (dtp, c))
1290 return;
1291
1292 eat_line (dtp);
1293 free_saved (dtp);
1294 sprintf (message, "Bad complex value in item %d of list input",
1295 dtp->u.p.item_count);
1296 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1297 }
1298
1299
1300 /* Parse a real number with a possible repeat count. */
1301
1302 static void
1303 read_real (st_parameter_dt *dtp, void * dest, int length)
1304 {
1305 char c, message[100];
1306 int seen_dp;
1307 int is_inf;
1308
1309 seen_dp = 0;
1310
1311 c = next_char (dtp);
1312 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1313 c = '.';
1314 switch (c)
1315 {
1316 CASE_DIGITS:
1317 push_char (dtp, c);
1318 break;
1319
1320 case '.':
1321 push_char (dtp, c);
1322 seen_dp = 1;
1323 break;
1324
1325 case '+':
1326 case '-':
1327 goto got_sign;
1328
1329 CASE_SEPARATORS:
1330 unget_char (dtp, c); /* Single null. */
1331 eat_separator (dtp);
1332 return;
1333
1334 case 'i':
1335 case 'I':
1336 case 'n':
1337 case 'N':
1338 goto inf_nan;
1339
1340 default:
1341 goto bad_real;
1342 }
1343
1344 /* Get the digit string that might be a repeat count. */
1345
1346 for (;;)
1347 {
1348 c = next_char (dtp);
1349 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1350 c = '.';
1351 switch (c)
1352 {
1353 CASE_DIGITS:
1354 push_char (dtp, c);
1355 break;
1356
1357 case '.':
1358 if (seen_dp)
1359 goto bad_real;
1360
1361 seen_dp = 1;
1362 push_char (dtp, c);
1363 goto real_loop;
1364
1365 case 'E':
1366 case 'e':
1367 case 'D':
1368 case 'd':
1369 goto exp1;
1370
1371 case '+':
1372 case '-':
1373 push_char (dtp, 'e');
1374 push_char (dtp, c);
1375 c = next_char (dtp);
1376 goto exp2;
1377
1378 case '*':
1379 push_char (dtp, '\0');
1380 goto got_repeat;
1381
1382 CASE_SEPARATORS:
1383 if (c != '\n' && c != ',' && c != '\r' && c != ';')
1384 unget_char (dtp, c);
1385 goto done;
1386
1387 default:
1388 goto bad_real;
1389 }
1390 }
1391
1392 got_repeat:
1393 if (convert_integer (dtp, -1, 0))
1394 return;
1395
1396 /* Now get the number itself. */
1397
1398 c = next_char (dtp);
1399 if (is_separator (c))
1400 { /* Repeated null value. */
1401 unget_char (dtp, c);
1402 eat_separator (dtp);
1403 return;
1404 }
1405
1406 if (c != '-' && c != '+')
1407 push_char (dtp, '+');
1408 else
1409 {
1410 got_sign:
1411 push_char (dtp, c);
1412 c = next_char (dtp);
1413 }
1414
1415 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1416 c = '.';
1417
1418 if (!isdigit (c) && c != '.')
1419 {
1420 if (c == 'i' || c == 'I' || c == 'n' || c == 'N')
1421 goto inf_nan;
1422 else
1423 goto bad_real;
1424 }
1425
1426 if (c == '.')
1427 {
1428 if (seen_dp)
1429 goto bad_real;
1430 else
1431 seen_dp = 1;
1432 }
1433
1434 push_char (dtp, c);
1435
1436 real_loop:
1437 for (;;)
1438 {
1439 c = next_char (dtp);
1440 if (c == ',' && dtp->u.p.current_unit->decimal_status == DECIMAL_COMMA)
1441 c = '.';
1442 switch (c)
1443 {
1444 CASE_DIGITS:
1445 push_char (dtp, c);
1446 break;
1447
1448 CASE_SEPARATORS:
1449 goto done;
1450
1451 case '.':
1452 if (seen_dp)
1453 goto bad_real;
1454
1455 seen_dp = 1;
1456 push_char (dtp, c);
1457 break;
1458
1459 case 'E':
1460 case 'e':
1461 case 'D':
1462 case 'd':
1463 goto exp1;
1464
1465 case '+':
1466 case '-':
1467 push_char (dtp, 'e');
1468 push_char (dtp, c);
1469 c = next_char (dtp);
1470 goto exp2;
1471
1472 default:
1473 goto bad_real;
1474 }
1475 }
1476
1477 exp1:
1478 push_char (dtp, 'e');
1479
1480 c = next_char (dtp);
1481 if (c != '+' && c != '-')
1482 push_char (dtp, '+');
1483 else
1484 {
1485 push_char (dtp, c);
1486 c = next_char (dtp);
1487 }
1488
1489 exp2:
1490 if (!isdigit (c))
1491 goto bad_real;
1492 push_char (dtp, c);
1493
1494 for (;;)
1495 {
1496 c = next_char (dtp);
1497
1498 switch (c)
1499 {
1500 CASE_DIGITS:
1501 push_char (dtp, c);
1502 break;
1503
1504 CASE_SEPARATORS:
1505 goto done;
1506
1507 default:
1508 goto bad_real;
1509 }
1510 }
1511
1512 done:
1513 unget_char (dtp, c);
1514 eat_separator (dtp);
1515 push_char (dtp, '\0');
1516 if (convert_real (dtp, dest, dtp->u.p.saved_string, length))
1517 return;
1518
1519 free_saved (dtp);
1520 dtp->u.p.saved_type = BT_REAL;
1521 return;
1522
1523 inf_nan:
1524 l_push_char (dtp, c);
1525 is_inf = 0;
1526
1527 /* Match INF and Infinity. */
1528 if (c == 'i' || c == 'I')
1529 {
1530 c = next_char (dtp);
1531 l_push_char (dtp, c);
1532 if (c != 'n' && c != 'N')
1533 goto unwind;
1534 c = next_char (dtp);
1535 l_push_char (dtp, c);
1536 if (c != 'f' && c != 'F')
1537 goto unwind;
1538 c = next_char (dtp);
1539 l_push_char (dtp, c);
1540 if (!is_separator (c))
1541 {
1542 if (c != 'i' && c != 'I')
1543 goto unwind;
1544 c = next_char (dtp);
1545 l_push_char (dtp, c);
1546 if (c != 'n' && c != 'N')
1547 goto unwind;
1548 c = next_char (dtp);
1549 l_push_char (dtp, c);
1550 if (c != 'i' && c != 'I')
1551 goto unwind;
1552 c = next_char (dtp);
1553 l_push_char (dtp, c);
1554 if (c != 't' && c != 'T')
1555 goto unwind;
1556 c = next_char (dtp);
1557 l_push_char (dtp, c);
1558 if (c != 'y' && c != 'Y')
1559 goto unwind;
1560 c = next_char (dtp);
1561 l_push_char (dtp, c);
1562 }
1563 is_inf = 1;
1564 } /* Match NaN. */
1565 else
1566 {
1567 c = next_char (dtp);
1568 l_push_char (dtp, c);
1569 if (c != 'a' && c != 'A')
1570 goto unwind;
1571 c = next_char (dtp);
1572 l_push_char (dtp, c);
1573 if (c != 'n' && c != 'N')
1574 goto unwind;
1575 c = next_char (dtp);
1576 l_push_char (dtp, c);
1577 }
1578
1579 if (!is_separator (c))
1580 goto unwind;
1581
1582 if (dtp->u.p.namelist_mode)
1583 {
1584 if (c == ' ' || c =='\n' || c == '\r')
1585 {
1586 do
1587 c = next_char (dtp);
1588 while (c == ' ' || c =='\n' || c == '\r');
1589
1590 l_push_char (dtp, c);
1591
1592 if (c == '=')
1593 goto unwind;
1594 }
1595 }
1596
1597 if (is_inf)
1598 {
1599 push_char (dtp, 'i');
1600 push_char (dtp, 'n');
1601 push_char (dtp, 'f');
1602 }
1603 else
1604 {
1605 push_char (dtp, 'n');
1606 push_char (dtp, 'a');
1607 push_char (dtp, 'n');
1608 }
1609
1610 free_line (dtp);
1611 goto done;
1612
1613 unwind:
1614 if (dtp->u.p.namelist_mode)
1615 {
1616 dtp->u.p.nml_read_error = 1;
1617 dtp->u.p.line_buffer_enabled = 1;
1618 dtp->u.p.item_count = 0;
1619 return;
1620 }
1621
1622 bad_real:
1623
1624 if (nml_bad_return (dtp, c))
1625 return;
1626
1627 eat_line (dtp);
1628 free_saved (dtp);
1629 sprintf (message, "Bad real number in item %d of list input",
1630 dtp->u.p.item_count);
1631 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1632 }
1633
1634
1635 /* Check the current type against the saved type to make sure they are
1636 compatible. Returns nonzero if incompatible. */
1637
1638 static int
1639 check_type (st_parameter_dt *dtp, bt type, int len)
1640 {
1641 char message[100];
1642
1643 if (dtp->u.p.saved_type != BT_NULL && dtp->u.p.saved_type != type)
1644 {
1645 sprintf (message, "Read type %s where %s was expected for item %d",
1646 type_name (dtp->u.p.saved_type), type_name (type),
1647 dtp->u.p.item_count);
1648
1649 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1650 return 1;
1651 }
1652
1653 if (dtp->u.p.saved_type == BT_NULL || dtp->u.p.saved_type == BT_CHARACTER)
1654 return 0;
1655
1656 if (dtp->u.p.saved_length != len)
1657 {
1658 sprintf (message,
1659 "Read kind %d %s where kind %d is required for item %d",
1660 dtp->u.p.saved_length, type_name (dtp->u.p.saved_type), len,
1661 dtp->u.p.item_count);
1662 generate_error (&dtp->common, LIBERROR_READ_VALUE, message);
1663 return 1;
1664 }
1665
1666 return 0;
1667 }
1668
1669
1670 /* Top level data transfer subroutine for list reads. Because we have
1671 to deal with repeat counts, the data item is always saved after
1672 reading, usually in the dtp->u.p.value[] array. If a repeat count is
1673 greater than one, we copy the data item multiple times. */
1674
1675 static void
1676 list_formatted_read_scalar (st_parameter_dt *dtp, volatile bt type, void *p,
1677 int kind, size_t size)
1678 {
1679 char c;
1680 gfc_char4_t *q;
1681 int i, m;
1682 jmp_buf eof_jump;
1683
1684 dtp->u.p.namelist_mode = 0;
1685
1686 dtp->u.p.eof_jump = &eof_jump;
1687 if (setjmp (eof_jump))
1688 {
1689 generate_error (&dtp->common, LIBERROR_END, NULL);
1690 goto cleanup;
1691 }
1692
1693 if (dtp->u.p.first_item)
1694 {
1695 dtp->u.p.first_item = 0;
1696 dtp->u.p.input_complete = 0;
1697 dtp->u.p.repeat_count = 1;
1698 dtp->u.p.at_eol = 0;
1699
1700 c = eat_spaces (dtp);
1701 if (is_separator (c))
1702 {
1703 /* Found a null value. */
1704 eat_separator (dtp);
1705 dtp->u.p.repeat_count = 0;
1706
1707 /* eat_separator sets this flag if the separator was a comma. */
1708 if (dtp->u.p.comma_flag)
1709 goto cleanup;
1710
1711 /* eat_separator sets this flag if the separator was a \n or \r. */
1712 if (dtp->u.p.at_eol)
1713 finish_separator (dtp);
1714 else
1715 goto cleanup;
1716 }
1717
1718 }
1719 else
1720 {
1721 if (dtp->u.p.repeat_count > 0)
1722 {
1723 if (check_type (dtp, type, kind))
1724 return;
1725 goto set_value;
1726 }
1727
1728 if (dtp->u.p.input_complete)
1729 goto cleanup;
1730
1731 if (dtp->u.p.input_complete)
1732 goto cleanup;
1733
1734 if (dtp->u.p.at_eol)
1735 finish_separator (dtp);
1736 else
1737 {
1738 eat_spaces (dtp);
1739 /* Trailing spaces prior to end of line. */
1740 if (dtp->u.p.at_eol)
1741 finish_separator (dtp);
1742 }
1743
1744 dtp->u.p.saved_type = BT_NULL;
1745 dtp->u.p.repeat_count = 1;
1746 }
1747
1748 switch (type)
1749 {
1750 case BT_INTEGER:
1751 read_integer (dtp, kind);
1752 break;
1753 case BT_LOGICAL:
1754 read_logical (dtp, kind);
1755 break;
1756 case BT_CHARACTER:
1757 read_character (dtp, kind);
1758 break;
1759 case BT_REAL:
1760 read_real (dtp, p, kind);
1761 /* Copy value back to temporary if needed. */
1762 if (dtp->u.p.repeat_count > 0)
1763 memcpy (dtp->u.p.value, p, kind);
1764 break;
1765 case BT_COMPLEX:
1766 read_complex (dtp, p, kind, size);
1767 /* Copy value back to temporary if needed. */
1768 if (dtp->u.p.repeat_count > 0)
1769 memcpy (dtp->u.p.value, p, size);
1770 break;
1771 default:
1772 internal_error (&dtp->common, "Bad type for list read");
1773 }
1774
1775 if (dtp->u.p.saved_type != BT_CHARACTER && dtp->u.p.saved_type != BT_NULL)
1776 dtp->u.p.saved_length = size;
1777
1778 if ((dtp->common.flags & IOPARM_LIBRETURN_MASK) != IOPARM_LIBRETURN_OK)
1779 goto cleanup;
1780
1781 set_value:
1782 switch (dtp->u.p.saved_type)
1783 {
1784 case BT_COMPLEX:
1785 case BT_REAL:
1786 if (dtp->u.p.repeat_count > 0)
1787 memcpy (p, dtp->u.p.value, size);
1788 break;
1789
1790 case BT_INTEGER:
1791 case BT_LOGICAL:
1792 memcpy (p, dtp->u.p.value, size);
1793 break;
1794
1795 case BT_CHARACTER:
1796 if (dtp->u.p.saved_string)
1797 {
1798 m = ((int) size < dtp->u.p.saved_used)
1799 ? (int) size : dtp->u.p.saved_used;
1800 if (kind == 1)
1801 memcpy (p, dtp->u.p.saved_string, m);
1802 else
1803 {
1804 q = (gfc_char4_t *) p;
1805 for (i = 0; i < m; i++)
1806 q[i] = (unsigned char) dtp->u.p.saved_string[i];
1807 }
1808 }
1809 else
1810 /* Just delimiters encountered, nothing to copy but SPACE. */
1811 m = 0;
1812
1813 if (m < (int) size)
1814 {
1815 if (kind == 1)
1816 memset (((char *) p) + m, ' ', size - m);
1817 else
1818 {
1819 q = (gfc_char4_t *) p;
1820 for (i = m; i < (int) size; i++)
1821 q[i] = (unsigned char) ' ';
1822 }
1823 }
1824 break;
1825
1826 case BT_NULL:
1827 break;
1828 }
1829
1830 if (--dtp->u.p.repeat_count <= 0)
1831 free_saved (dtp);
1832
1833 cleanup:
1834 dtp->u.p.eof_jump = NULL;
1835 }
1836
1837
1838 void
1839 list_formatted_read (st_parameter_dt *dtp, bt type, void *p, int kind,
1840 size_t size, size_t nelems)
1841 {
1842 size_t elem;
1843 char *tmp;
1844 size_t stride = type == BT_CHARACTER ?
1845 size * GFC_SIZE_OF_CHAR_KIND(kind) : size;
1846
1847 tmp = (char *) p;
1848
1849 /* Big loop over all the elements. */
1850 for (elem = 0; elem < nelems; elem++)
1851 {
1852 dtp->u.p.item_count++;
1853 list_formatted_read_scalar (dtp, type, tmp + stride*elem, kind, size);
1854 }
1855 }
1856
1857
1858 /* Finish a list read. */
1859
1860 void
1861 finish_list_read (st_parameter_dt *dtp)
1862 {
1863 char c;
1864
1865 free_saved (dtp);
1866
1867 fbuf_flush (dtp->u.p.current_unit, dtp->u.p.mode);
1868
1869 if (dtp->u.p.at_eol)
1870 {
1871 dtp->u.p.at_eol = 0;
1872 return;
1873 }
1874
1875 do
1876 {
1877 c = next_char (dtp);
1878 }
1879 while (c != '\n');
1880
1881 if (dtp->u.p.current_unit->endfile != NO_ENDFILE)
1882 {
1883 generate_error (&dtp->common, LIBERROR_END, NULL);
1884 dtp->u.p.current_unit->endfile = AFTER_ENDFILE;
1885 dtp->u.p.current_unit->current_record = 0;
1886 }
1887 }
1888
1889 /* NAMELIST INPUT
1890
1891 void namelist_read (st_parameter_dt *dtp)
1892 calls:
1893 static void nml_match_name (char *name, int len)
1894 static int nml_query (st_parameter_dt *dtp)
1895 static int nml_get_obj_data (st_parameter_dt *dtp,
1896 namelist_info **prev_nl, char *, size_t)
1897 calls:
1898 static void nml_untouch_nodes (st_parameter_dt *dtp)
1899 static namelist_info * find_nml_node (st_parameter_dt *dtp,
1900 char * var_name)
1901 static int nml_parse_qualifier(descriptor_dimension * ad,
1902 array_loop_spec * ls, int rank, char *)
1903 static void nml_touch_nodes (namelist_info * nl)
1904 static int nml_read_obj (namelist_info *nl, index_type offset,
1905 namelist_info **prev_nl, char *, size_t,
1906 index_type clow, index_type chigh)
1907 calls:
1908 -itself- */
1909
1910 /* Inputs a rank-dimensional qualifier, which can contain
1911 singlets, doublets, triplets or ':' with the standard meanings. */
1912
1913 static try
1914 nml_parse_qualifier (st_parameter_dt *dtp, descriptor_dimension *ad,
1915 array_loop_spec *ls, int rank, char *parse_err_msg,
1916 int *parsed_rank)
1917 {
1918 int dim;
1919 int indx;
1920 int neg;
1921 int null_flag;
1922 int is_array_section, is_char;
1923 char c;
1924
1925 is_char = 0;
1926 is_array_section = 0;
1927 dtp->u.p.expanded_read = 0;
1928
1929 /* See if this is a character substring qualifier we are looking for. */
1930 if (rank == -1)
1931 {
1932 rank = 1;
1933 is_char = 1;
1934 }
1935
1936 /* The next character in the stream should be the '('. */
1937
1938 c = next_char (dtp);
1939
1940 /* Process the qualifier, by dimension and triplet. */
1941
1942 for (dim=0; dim < rank; dim++ )
1943 {
1944 for (indx=0; indx<3; indx++)
1945 {
1946 free_saved (dtp);
1947 eat_spaces (dtp);
1948 neg = 0;
1949
1950 /* Process a potential sign. */
1951 c = next_char (dtp);
1952 switch (c)
1953 {
1954 case '-':
1955 neg = 1;
1956 break;
1957
1958 case '+':
1959 break;
1960
1961 default:
1962 unget_char (dtp, c);
1963 break;
1964 }
1965
1966 /* Process characters up to the next ':' , ',' or ')'. */
1967 for (;;)
1968 {
1969 c = next_char (dtp);
1970
1971 switch (c)
1972 {
1973 case ':':
1974 is_array_section = 1;
1975 break;
1976
1977 case ',': case ')':
1978 if ((c==',' && dim == rank -1)
1979 || (c==')' && dim < rank -1))
1980 {
1981 if (is_char)
1982 sprintf (parse_err_msg, "Bad substring qualifier");
1983 else
1984 sprintf (parse_err_msg, "Bad number of index fields");
1985 goto err_ret;
1986 }
1987 break;
1988
1989 CASE_DIGITS:
1990 push_char (dtp, c);
1991 continue;
1992
1993 case ' ': case '\t':
1994 eat_spaces (dtp);
1995 c = next_char (dtp);
1996 break;
1997
1998 default:
1999 if (is_char)
2000 sprintf (parse_err_msg,
2001 "Bad character in substring qualifier");
2002 else
2003 sprintf (parse_err_msg, "Bad character in index");
2004 goto err_ret;
2005 }
2006
2007 if ((c == ',' || c == ')') && indx == 0
2008 && dtp->u.p.saved_string == 0)
2009 {
2010 if (is_char)
2011 sprintf (parse_err_msg, "Null substring qualifier");
2012 else
2013 sprintf (parse_err_msg, "Null index field");
2014 goto err_ret;
2015 }
2016
2017 if ((c == ':' && indx == 1 && dtp->u.p.saved_string == 0)
2018 || (indx == 2 && dtp->u.p.saved_string == 0))
2019 {
2020 if (is_char)
2021 sprintf (parse_err_msg, "Bad substring qualifier");
2022 else
2023 sprintf (parse_err_msg, "Bad index triplet");
2024 goto err_ret;
2025 }
2026
2027 if (is_char && !is_array_section)
2028 {
2029 sprintf (parse_err_msg,
2030 "Missing colon in substring qualifier");
2031 goto err_ret;
2032 }
2033
2034 /* If '( : ? )' or '( ? : )' break and flag read failure. */
2035 null_flag = 0;
2036 if ((c == ':' && indx == 0 && dtp->u.p.saved_string == 0)
2037 || (indx==1 && dtp->u.p.saved_string == 0))
2038 {
2039 null_flag = 1;
2040 break;
2041 }
2042
2043 /* Now read the index. */
2044 if (convert_integer (dtp, sizeof(ssize_t), neg))
2045 {
2046 if (is_char)
2047 sprintf (parse_err_msg, "Bad integer substring qualifier");
2048 else
2049 sprintf (parse_err_msg, "Bad integer in index");
2050 goto err_ret;
2051 }
2052 break;
2053 }
2054
2055 /* Feed the index values to the triplet arrays. */
2056 if (!null_flag)
2057 {
2058 if (indx == 0)
2059 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2060 if (indx == 1)
2061 memcpy (&ls[dim].end, dtp->u.p.value, sizeof(ssize_t));
2062 if (indx == 2)
2063 memcpy (&ls[dim].step, dtp->u.p.value, sizeof(ssize_t));
2064 }
2065
2066 /* Singlet or doublet indices. */
2067 if (c==',' || c==')')
2068 {
2069 if (indx == 0)
2070 {
2071 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2072
2073 /* If -std=f95/2003 or an array section is specified,
2074 do not allow excess data to be processed. */
2075 if (is_array_section == 1
2076 || compile_options.allow_std < GFC_STD_GNU)
2077 ls[dim].end = ls[dim].start;
2078 else
2079 dtp->u.p.expanded_read = 1;
2080 }
2081
2082 /* Check for non-zero rank. */
2083 if (is_array_section == 1 && ls[dim].start != ls[dim].end)
2084 *parsed_rank = 1;
2085
2086 break;
2087 }
2088 }
2089
2090 /* Check the values of the triplet indices. */
2091 if ((ls[dim].start > (ssize_t)ad[dim].ubound)
2092 || (ls[dim].start < (ssize_t)ad[dim].lbound)
2093 || (ls[dim].end > (ssize_t)ad[dim].ubound)
2094 || (ls[dim].end < (ssize_t)ad[dim].lbound))
2095 {
2096 if (is_char)
2097 sprintf (parse_err_msg, "Substring out of range");
2098 else
2099 sprintf (parse_err_msg, "Index %d out of range", dim + 1);
2100 goto err_ret;
2101 }
2102
2103 if (((ls[dim].end - ls[dim].start ) * ls[dim].step < 0)
2104 || (ls[dim].step == 0))
2105 {
2106 sprintf (parse_err_msg, "Bad range in index %d", dim + 1);
2107 goto err_ret;
2108 }
2109
2110 /* Initialise the loop index counter. */
2111 ls[dim].idx = ls[dim].start;
2112 }
2113 eat_spaces (dtp);
2114 return SUCCESS;
2115
2116 err_ret:
2117
2118 return FAILURE;
2119 }
2120
2121 static namelist_info *
2122 find_nml_node (st_parameter_dt *dtp, char * var_name)
2123 {
2124 namelist_info * t = dtp->u.p.ionml;
2125 while (t != NULL)
2126 {
2127 if (strcmp (var_name, t->var_name) == 0)
2128 {
2129 t->touched = 1;
2130 return t;
2131 }
2132 t = t->next;
2133 }
2134 return NULL;
2135 }
2136
2137 /* Visits all the components of a derived type that have
2138 not explicitly been identified in the namelist input.
2139 touched is set and the loop specification initialised
2140 to default values */
2141
2142 static void
2143 nml_touch_nodes (namelist_info * nl)
2144 {
2145 index_type len = strlen (nl->var_name) + 1;
2146 int dim;
2147 char * ext_name = (char*)get_mem (len + 1);
2148 memcpy (ext_name, nl->var_name, len-1);
2149 memcpy (ext_name + len - 1, "%", 2);
2150 for (nl = nl->next; nl; nl = nl->next)
2151 {
2152 if (strncmp (nl->var_name, ext_name, len) == 0)
2153 {
2154 nl->touched = 1;
2155 for (dim=0; dim < nl->var_rank; dim++)
2156 {
2157 nl->ls[dim].step = 1;
2158 nl->ls[dim].end = nl->dim[dim].ubound;
2159 nl->ls[dim].start = nl->dim[dim].lbound;
2160 nl->ls[dim].idx = nl->ls[dim].start;
2161 }
2162 }
2163 else
2164 break;
2165 }
2166 free_mem (ext_name);
2167 return;
2168 }
2169
2170 /* Resets touched for the entire list of nml_nodes, ready for a
2171 new object. */
2172
2173 static void
2174 nml_untouch_nodes (st_parameter_dt *dtp)
2175 {
2176 namelist_info * t;
2177 for (t = dtp->u.p.ionml; t; t = t->next)
2178 t->touched = 0;
2179 return;
2180 }
2181
2182 /* Attempts to input name to namelist name. Returns
2183 dtp->u.p.nml_read_error = 1 on no match. */
2184
2185 static void
2186 nml_match_name (st_parameter_dt *dtp, const char *name, index_type len)
2187 {
2188 index_type i;
2189 char c;
2190 dtp->u.p.nml_read_error = 0;
2191 for (i = 0; i < len; i++)
2192 {
2193 c = next_char (dtp);
2194 if (tolower (c) != tolower (name[i]))
2195 {
2196 dtp->u.p.nml_read_error = 1;
2197 break;
2198 }
2199 }
2200 }
2201
2202 /* If the namelist read is from stdin, output the current state of the
2203 namelist to stdout. This is used to implement the non-standard query
2204 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
2205 the names alone are printed. */
2206
2207 static void
2208 nml_query (st_parameter_dt *dtp, char c)
2209 {
2210 gfc_unit * temp_unit;
2211 namelist_info * nl;
2212 index_type len;
2213 char * p;
2214 #ifdef HAVE_CRLF
2215 static const index_type endlen = 3;
2216 static const char endl[] = "\r\n";
2217 static const char nmlend[] = "&end\r\n";
2218 #else
2219 static const index_type endlen = 2;
2220 static const char endl[] = "\n";
2221 static const char nmlend[] = "&end\n";
2222 #endif
2223
2224 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2225 return;
2226
2227 /* Store the current unit and transfer to stdout. */
2228
2229 temp_unit = dtp->u.p.current_unit;
2230 dtp->u.p.current_unit = find_unit (options.stdout_unit);
2231
2232 if (dtp->u.p.current_unit)
2233 {
2234 dtp->u.p.mode = WRITING;
2235 next_record (dtp, 0);
2236
2237 /* Write the namelist in its entirety. */
2238
2239 if (c == '=')
2240 namelist_write (dtp);
2241
2242 /* Or write the list of names. */
2243
2244 else
2245 {
2246 /* "&namelist_name\n" */
2247
2248 len = dtp->namelist_name_len;
2249 p = write_block (dtp, len + endlen);
2250 if (!p)
2251 goto query_return;
2252 memcpy (p, "&", 1);
2253 memcpy ((char*)(p + 1), dtp->namelist_name, len);
2254 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2255 for (nl = dtp->u.p.ionml; nl; nl = nl->next)
2256 {
2257 /* " var_name\n" */
2258
2259 len = strlen (nl->var_name);
2260 p = write_block (dtp, len + endlen);
2261 if (!p)
2262 goto query_return;
2263 memcpy (p, " ", 1);
2264 memcpy ((char*)(p + 1), nl->var_name, len);
2265 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2266 }
2267
2268 /* "&end\n" */
2269
2270 p = write_block (dtp, endlen + 3);
2271 goto query_return;
2272 memcpy (p, &nmlend, endlen + 3);
2273 }
2274
2275 /* Flush the stream to force immediate output. */
2276
2277 fbuf_flush (dtp->u.p.current_unit, WRITING);
2278 sflush (dtp->u.p.current_unit->s);
2279 unlock_unit (dtp->u.p.current_unit);
2280 }
2281
2282 query_return:
2283
2284 /* Restore the current unit. */
2285
2286 dtp->u.p.current_unit = temp_unit;
2287 dtp->u.p.mode = READING;
2288 return;
2289 }
2290
2291 /* Reads and stores the input for the namelist object nl. For an array,
2292 the function loops over the ranges defined by the loop specification.
2293 This default to all the data or to the specification from a qualifier.
2294 nml_read_obj recursively calls itself to read derived types. It visits
2295 all its own components but only reads data for those that were touched
2296 when the name was parsed. If a read error is encountered, an attempt is
2297 made to return to read a new object name because the standard allows too
2298 little data to be available. On the other hand, too much data is an
2299 error. */
2300
2301 static try
2302 nml_read_obj (st_parameter_dt *dtp, namelist_info * nl, index_type offset,
2303 namelist_info **pprev_nl, char *nml_err_msg,
2304 size_t nml_err_msg_size, index_type clow, index_type chigh)
2305 {
2306 namelist_info * cmp;
2307 char * obj_name;
2308 int nml_carry;
2309 int len;
2310 int dim;
2311 index_type dlen;
2312 index_type m;
2313 size_t obj_name_len;
2314 void * pdata;
2315
2316 /* This object not touched in name parsing. */
2317
2318 if (!nl->touched)
2319 return SUCCESS;
2320
2321 dtp->u.p.repeat_count = 0;
2322 eat_spaces (dtp);
2323
2324 len = nl->len;
2325 switch (nl->type)
2326 {
2327 case GFC_DTYPE_INTEGER:
2328 case GFC_DTYPE_LOGICAL:
2329 dlen = len;
2330 break;
2331
2332 case GFC_DTYPE_REAL:
2333 dlen = size_from_real_kind (len);
2334 break;
2335
2336 case GFC_DTYPE_COMPLEX:
2337 dlen = size_from_complex_kind (len);
2338 break;
2339
2340 case GFC_DTYPE_CHARACTER:
2341 dlen = chigh ? (chigh - clow + 1) : nl->string_length;
2342 break;
2343
2344 default:
2345 dlen = 0;
2346 }
2347
2348 do
2349 {
2350 /* Update the pointer to the data, using the current index vector */
2351
2352 pdata = (void*)(nl->mem_pos + offset);
2353 for (dim = 0; dim < nl->var_rank; dim++)
2354 pdata = (void*)(pdata + (nl->ls[dim].idx - nl->dim[dim].lbound) *
2355 nl->dim[dim].stride * nl->size);
2356
2357 /* Reset the error flag and try to read next value, if
2358 dtp->u.p.repeat_count=0 */
2359
2360 dtp->u.p.nml_read_error = 0;
2361 nml_carry = 0;
2362 if (--dtp->u.p.repeat_count <= 0)
2363 {
2364 if (dtp->u.p.input_complete)
2365 return SUCCESS;
2366 if (dtp->u.p.at_eol)
2367 finish_separator (dtp);
2368 if (dtp->u.p.input_complete)
2369 return SUCCESS;
2370
2371 /* GFC_TYPE_UNKNOWN through for nulls and is detected
2372 after the switch block. */
2373
2374 dtp->u.p.saved_type = GFC_DTYPE_UNKNOWN;
2375 free_saved (dtp);
2376
2377 switch (nl->type)
2378 {
2379 case GFC_DTYPE_INTEGER:
2380 read_integer (dtp, len);
2381 break;
2382
2383 case GFC_DTYPE_LOGICAL:
2384 read_logical (dtp, len);
2385 break;
2386
2387 case GFC_DTYPE_CHARACTER:
2388 read_character (dtp, len);
2389 break;
2390
2391 case GFC_DTYPE_REAL:
2392 /* Need to copy data back from the real location to the temp in order
2393 to handle nml reads into arrays. */
2394 read_real (dtp, pdata, len);
2395 memcpy (dtp->u.p.value, pdata, dlen);
2396 break;
2397
2398 case GFC_DTYPE_COMPLEX:
2399 /* Same as for REAL, copy back to temp. */
2400 read_complex (dtp, pdata, len, dlen);
2401 memcpy (dtp->u.p.value, pdata, dlen);
2402 break;
2403
2404 case GFC_DTYPE_DERIVED:
2405 obj_name_len = strlen (nl->var_name) + 1;
2406 obj_name = get_mem (obj_name_len+1);
2407 memcpy (obj_name, nl->var_name, obj_name_len-1);
2408 memcpy (obj_name + obj_name_len - 1, "%", 2);
2409
2410 /* If reading a derived type, disable the expanded read warning
2411 since a single object can have multiple reads. */
2412 dtp->u.p.expanded_read = 0;
2413
2414 /* Now loop over the components. Update the component pointer
2415 with the return value from nml_write_obj. This loop jumps
2416 past nested derived types by testing if the potential
2417 component name contains '%'. */
2418
2419 for (cmp = nl->next;
2420 cmp &&
2421 !strncmp (cmp->var_name, obj_name, obj_name_len) &&
2422 !strchr (cmp->var_name + obj_name_len, '%');
2423 cmp = cmp->next)
2424 {
2425
2426 if (nml_read_obj (dtp, cmp, (index_type)(pdata - nl->mem_pos),
2427 pprev_nl, nml_err_msg, nml_err_msg_size,
2428 clow, chigh) == FAILURE)
2429 {
2430 free_mem (obj_name);
2431 return FAILURE;
2432 }
2433
2434 if (dtp->u.p.input_complete)
2435 {
2436 free_mem (obj_name);
2437 return SUCCESS;
2438 }
2439 }
2440
2441 free_mem (obj_name);
2442 goto incr_idx;
2443
2444 default:
2445 snprintf (nml_err_msg, nml_err_msg_size,
2446 "Bad type for namelist object %s", nl->var_name);
2447 internal_error (&dtp->common, nml_err_msg);
2448 goto nml_err_ret;
2449 }
2450 }
2451
2452 /* The standard permits array data to stop short of the number of
2453 elements specified in the loop specification. In this case, we
2454 should be here with dtp->u.p.nml_read_error != 0. Control returns to
2455 nml_get_obj_data and an attempt is made to read object name. */
2456
2457 *pprev_nl = nl;
2458 if (dtp->u.p.nml_read_error)
2459 {
2460 dtp->u.p.expanded_read = 0;
2461 return SUCCESS;
2462 }
2463
2464 if (dtp->u.p.saved_type == GFC_DTYPE_UNKNOWN)
2465 {
2466 dtp->u.p.expanded_read = 0;
2467 goto incr_idx;
2468 }
2469
2470 /* Note the switch from GFC_DTYPE_type to BT_type at this point.
2471 This comes about because the read functions return BT_types. */
2472
2473 switch (dtp->u.p.saved_type)
2474 {
2475
2476 case BT_COMPLEX:
2477 case BT_REAL:
2478 case BT_INTEGER:
2479 case BT_LOGICAL:
2480 memcpy (pdata, dtp->u.p.value, dlen);
2481 break;
2482
2483 case BT_CHARACTER:
2484 m = (dlen < dtp->u.p.saved_used) ? dlen : dtp->u.p.saved_used;
2485 pdata = (void*)( pdata + clow - 1 );
2486 memcpy (pdata, dtp->u.p.saved_string, m);
2487 if (m < dlen)
2488 memset ((void*)( pdata + m ), ' ', dlen - m);
2489 break;
2490
2491 default:
2492 break;
2493 }
2494
2495 /* Warn if a non-standard expanded read occurs. A single read of a
2496 single object is acceptable. If a second read occurs, issue a warning
2497 and set the flag to zero to prevent further warnings. */
2498 if (dtp->u.p.expanded_read == 2)
2499 {
2500 notify_std (&dtp->common, GFC_STD_GNU, "Non-standard expanded namelist read.");
2501 dtp->u.p.expanded_read = 0;
2502 }
2503
2504 /* If the expanded read warning flag is set, increment it,
2505 indicating that a single read has occurred. */
2506 if (dtp->u.p.expanded_read >= 1)
2507 dtp->u.p.expanded_read++;
2508
2509 /* Break out of loop if scalar. */
2510 if (!nl->var_rank)
2511 break;
2512
2513 /* Now increment the index vector. */
2514
2515 incr_idx:
2516
2517 nml_carry = 1;
2518 for (dim = 0; dim < nl->var_rank; dim++)
2519 {
2520 nl->ls[dim].idx += nml_carry * nl->ls[dim].step;
2521 nml_carry = 0;
2522 if (((nl->ls[dim].step > 0) && (nl->ls[dim].idx > nl->ls[dim].end))
2523 ||
2524 ((nl->ls[dim].step < 0) && (nl->ls[dim].idx < nl->ls[dim].end)))
2525 {
2526 nl->ls[dim].idx = nl->ls[dim].start;
2527 nml_carry = 1;
2528 }
2529 }
2530 } while (!nml_carry);
2531
2532 if (dtp->u.p.repeat_count > 1)
2533 {
2534 snprintf (nml_err_msg, nml_err_msg_size,
2535 "Repeat count too large for namelist object %s", nl->var_name);
2536 goto nml_err_ret;
2537 }
2538 return SUCCESS;
2539
2540 nml_err_ret:
2541
2542 return FAILURE;
2543 }
2544
2545 /* Parses the object name, including array and substring qualifiers. It
2546 iterates over derived type components, touching those components and
2547 setting their loop specifications, if there is a qualifier. If the
2548 object is itself a derived type, its components and subcomponents are
2549 touched. nml_read_obj is called at the end and this reads the data in
2550 the manner specified by the object name. */
2551
2552 static try
2553 nml_get_obj_data (st_parameter_dt *dtp, namelist_info **pprev_nl,
2554 char *nml_err_msg, size_t nml_err_msg_size)
2555 {
2556 char c;
2557 namelist_info * nl;
2558 namelist_info * first_nl = NULL;
2559 namelist_info * root_nl = NULL;
2560 int dim, parsed_rank;
2561 int component_flag;
2562 index_type clow, chigh;
2563 int non_zero_rank_count;
2564
2565 /* Look for end of input or object name. If '?' or '=?' are encountered
2566 in stdin, print the node names or the namelist to stdout. */
2567
2568 eat_separator (dtp);
2569 if (dtp->u.p.input_complete)
2570 return SUCCESS;
2571
2572 if (dtp->u.p.at_eol)
2573 finish_separator (dtp);
2574 if (dtp->u.p.input_complete)
2575 return SUCCESS;
2576
2577 c = next_char (dtp);
2578 switch (c)
2579 {
2580 case '=':
2581 c = next_char (dtp);
2582 if (c != '?')
2583 {
2584 sprintf (nml_err_msg, "namelist read: misplaced = sign");
2585 goto nml_err_ret;
2586 }
2587 nml_query (dtp, '=');
2588 return SUCCESS;
2589
2590 case '?':
2591 nml_query (dtp, '?');
2592 return SUCCESS;
2593
2594 case '$':
2595 case '&':
2596 nml_match_name (dtp, "end", 3);
2597 if (dtp->u.p.nml_read_error)
2598 {
2599 sprintf (nml_err_msg, "namelist not terminated with / or &end");
2600 goto nml_err_ret;
2601 }
2602 case '/':
2603 dtp->u.p.input_complete = 1;
2604 return SUCCESS;
2605
2606 default :
2607 break;
2608 }
2609
2610 /* Untouch all nodes of the namelist and reset the flag that is set for
2611 derived type components. */
2612
2613 nml_untouch_nodes (dtp);
2614 component_flag = 0;
2615 non_zero_rank_count = 0;
2616
2617 /* Get the object name - should '!' and '\n' be permitted separators? */
2618
2619 get_name:
2620
2621 free_saved (dtp);
2622
2623 do
2624 {
2625 if (!is_separator (c))
2626 push_char (dtp, tolower(c));
2627 c = next_char (dtp);
2628 } while (!( c=='=' || c==' ' || c=='\t' || c =='(' || c =='%' ));
2629
2630 unget_char (dtp, c);
2631
2632 /* Check that the name is in the namelist and get pointer to object.
2633 Three error conditions exist: (i) An attempt is being made to
2634 identify a non-existent object, following a failed data read or
2635 (ii) The object name does not exist or (iii) Too many data items
2636 are present for an object. (iii) gives the same error message
2637 as (i) */
2638
2639 push_char (dtp, '\0');
2640
2641 if (component_flag)
2642 {
2643 size_t var_len = strlen (root_nl->var_name);
2644 size_t saved_len
2645 = dtp->u.p.saved_string ? strlen (dtp->u.p.saved_string) : 0;
2646 char ext_name[var_len + saved_len + 1];
2647
2648 memcpy (ext_name, root_nl->var_name, var_len);
2649 if (dtp->u.p.saved_string)
2650 memcpy (ext_name + var_len, dtp->u.p.saved_string, saved_len);
2651 ext_name[var_len + saved_len] = '\0';
2652 nl = find_nml_node (dtp, ext_name);
2653 }
2654 else
2655 nl = find_nml_node (dtp, dtp->u.p.saved_string);
2656
2657 if (nl == NULL)
2658 {
2659 if (dtp->u.p.nml_read_error && *pprev_nl)
2660 snprintf (nml_err_msg, nml_err_msg_size,
2661 "Bad data for namelist object %s", (*pprev_nl)->var_name);
2662
2663 else
2664 snprintf (nml_err_msg, nml_err_msg_size,
2665 "Cannot match namelist object name %s",
2666 dtp->u.p.saved_string);
2667
2668 goto nml_err_ret;
2669 }
2670
2671 /* Get the length, data length, base pointer and rank of the variable.
2672 Set the default loop specification first. */
2673
2674 for (dim=0; dim < nl->var_rank; dim++)
2675 {
2676 nl->ls[dim].step = 1;
2677 nl->ls[dim].end = nl->dim[dim].ubound;
2678 nl->ls[dim].start = nl->dim[dim].lbound;
2679 nl->ls[dim].idx = nl->ls[dim].start;
2680 }
2681
2682 /* Check to see if there is a qualifier: if so, parse it.*/
2683
2684 if (c == '(' && nl->var_rank)
2685 {
2686 parsed_rank = 0;
2687 if (nml_parse_qualifier (dtp, nl->dim, nl->ls, nl->var_rank,
2688 nml_err_msg, &parsed_rank) == FAILURE)
2689 {
2690 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2691 snprintf (nml_err_msg_end,
2692 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2693 " for namelist variable %s", nl->var_name);
2694 goto nml_err_ret;
2695 }
2696
2697 if (parsed_rank > 0)
2698 non_zero_rank_count++;
2699
2700 c = next_char (dtp);
2701 unget_char (dtp, c);
2702 }
2703 else if (nl->var_rank > 0)
2704 non_zero_rank_count++;
2705
2706 /* Now parse a derived type component. The root namelist_info address
2707 is backed up, as is the previous component level. The component flag
2708 is set and the iteration is made by jumping back to get_name. */
2709
2710 if (c == '%')
2711 {
2712 if (nl->type != GFC_DTYPE_DERIVED)
2713 {
2714 snprintf (nml_err_msg, nml_err_msg_size,
2715 "Attempt to get derived component for %s", nl->var_name);
2716 goto nml_err_ret;
2717 }
2718
2719 if (!component_flag)
2720 first_nl = nl;
2721
2722 root_nl = nl;
2723 component_flag = 1;
2724 c = next_char (dtp);
2725 goto get_name;
2726 }
2727
2728 /* Parse a character qualifier, if present. chigh = 0 is a default
2729 that signals that the string length = string_length. */
2730
2731 clow = 1;
2732 chigh = 0;
2733
2734 if (c == '(' && nl->type == GFC_DTYPE_CHARACTER)
2735 {
2736 descriptor_dimension chd[1] = { {1, clow, nl->string_length} };
2737 array_loop_spec ind[1] = { {1, clow, nl->string_length, 1} };
2738
2739 if (nml_parse_qualifier (dtp, chd, ind, -1, nml_err_msg, &parsed_rank)
2740 == FAILURE)
2741 {
2742 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2743 snprintf (nml_err_msg_end,
2744 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2745 " for namelist variable %s", nl->var_name);
2746 goto nml_err_ret;
2747 }
2748
2749 clow = ind[0].start;
2750 chigh = ind[0].end;
2751
2752 if (ind[0].step != 1)
2753 {
2754 snprintf (nml_err_msg, nml_err_msg_size,
2755 "Step not allowed in substring qualifier"
2756 " for namelist object %s", nl->var_name);
2757 goto nml_err_ret;
2758 }
2759
2760 c = next_char (dtp);
2761 unget_char (dtp, c);
2762 }
2763
2764 /* If a derived type touch its components and restore the root
2765 namelist_info if we have parsed a qualified derived type
2766 component. */
2767
2768 if (nl->type == GFC_DTYPE_DERIVED)
2769 nml_touch_nodes (nl);
2770 if (component_flag && nl->var_rank > 0)
2771 nl = first_nl;
2772
2773 /* Make sure no extraneous qualifiers are there. */
2774
2775 if (c == '(')
2776 {
2777 snprintf (nml_err_msg, nml_err_msg_size,
2778 "Qualifier for a scalar or non-character namelist object %s",
2779 nl->var_name);
2780 goto nml_err_ret;
2781 }
2782
2783 /* Make sure there is no more than one non-zero rank object. */
2784 if (non_zero_rank_count > 1)
2785 {
2786 snprintf (nml_err_msg, nml_err_msg_size,
2787 "Multiple sub-objects with non-zero rank in namelist object %s",
2788 nl->var_name);
2789 non_zero_rank_count = 0;
2790 goto nml_err_ret;
2791 }
2792
2793 /* According to the standard, an equal sign MUST follow an object name. The
2794 following is possibly lax - it allows comments, blank lines and so on to
2795 intervene. eat_spaces (dtp); c = next_char (dtp); would be compliant*/
2796
2797 free_saved (dtp);
2798
2799 eat_separator (dtp);
2800 if (dtp->u.p.input_complete)
2801 return SUCCESS;
2802
2803 if (dtp->u.p.at_eol)
2804 finish_separator (dtp);
2805 if (dtp->u.p.input_complete)
2806 return SUCCESS;
2807
2808 c = next_char (dtp);
2809
2810 if (c != '=')
2811 {
2812 snprintf (nml_err_msg, nml_err_msg_size,
2813 "Equal sign must follow namelist object name %s",
2814 nl->var_name);
2815 goto nml_err_ret;
2816 }
2817
2818 if (first_nl != NULL && first_nl->var_rank > 0)
2819 nl = first_nl;
2820
2821 if (nml_read_obj (dtp, nl, 0, pprev_nl, nml_err_msg, nml_err_msg_size,
2822 clow, chigh) == FAILURE)
2823 goto nml_err_ret;
2824
2825 return SUCCESS;
2826
2827 nml_err_ret:
2828
2829 return FAILURE;
2830 }
2831
2832 /* Entry point for namelist input. Goes through input until namelist name
2833 is matched. Then cycles through nml_get_obj_data until the input is
2834 completed or there is an error. */
2835
2836 void
2837 namelist_read (st_parameter_dt *dtp)
2838 {
2839 char c;
2840 jmp_buf eof_jump;
2841 char nml_err_msg[200];
2842 /* Pointer to the previously read object, in case attempt is made to read
2843 new object name. Should this fail, error message can give previous
2844 name. */
2845 namelist_info *prev_nl = NULL;
2846
2847 dtp->u.p.namelist_mode = 1;
2848 dtp->u.p.input_complete = 0;
2849 dtp->u.p.expanded_read = 0;
2850
2851 dtp->u.p.eof_jump = &eof_jump;
2852 if (setjmp (eof_jump))
2853 {
2854 dtp->u.p.eof_jump = NULL;
2855 generate_error (&dtp->common, LIBERROR_END, NULL);
2856 return;
2857 }
2858
2859 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
2860 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
2861 node names or namelist on stdout. */
2862
2863 find_nml_name:
2864 switch (c = next_char (dtp))
2865 {
2866 case '$':
2867 case '&':
2868 break;
2869
2870 case '!':
2871 eat_line (dtp);
2872 goto find_nml_name;
2873
2874 case '=':
2875 c = next_char (dtp);
2876 if (c == '?')
2877 nml_query (dtp, '=');
2878 else
2879 unget_char (dtp, c);
2880 goto find_nml_name;
2881
2882 case '?':
2883 nml_query (dtp, '?');
2884
2885 default:
2886 goto find_nml_name;
2887 }
2888
2889 /* Match the name of the namelist. */
2890
2891 nml_match_name (dtp, dtp->namelist_name, dtp->namelist_name_len);
2892
2893 if (dtp->u.p.nml_read_error)
2894 goto find_nml_name;
2895
2896 /* A trailing space is required, we give a little lattitude here, 10.9.1. */
2897 c = next_char (dtp);
2898 if (!is_separator(c) && c != '!')
2899 {
2900 unget_char (dtp, c);
2901 goto find_nml_name;
2902 }
2903
2904 unget_char (dtp, c);
2905 eat_separator (dtp);
2906
2907 /* Ready to read namelist objects. If there is an error in input
2908 from stdin, output the error message and continue. */
2909
2910 while (!dtp->u.p.input_complete)
2911 {
2912 if (nml_get_obj_data (dtp, &prev_nl, nml_err_msg, sizeof nml_err_msg)
2913 == FAILURE)
2914 {
2915 gfc_unit *u;
2916
2917 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2918 goto nml_err_ret;
2919
2920 u = find_unit (options.stderr_unit);
2921 st_printf ("%s\n", nml_err_msg);
2922 if (u != NULL)
2923 {
2924 sflush (u->s);
2925 unlock_unit (u);
2926 }
2927 }
2928
2929 }
2930
2931 dtp->u.p.eof_jump = NULL;
2932 free_saved (dtp);
2933 free_line (dtp);
2934 return;
2935
2936 /* All namelist error calls return from here */
2937
2938 nml_err_ret:
2939
2940 dtp->u.p.eof_jump = NULL;
2941 free_saved (dtp);
2942 free_line (dtp);
2943 generate_error (&dtp->common, LIBERROR_READ_VALUE, nml_err_msg);
2944 return;
2945 }