Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[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, 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, dtp->u.p.value, 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, dtp->u.p.value + 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, 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, dtp->u.p.value, 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, kind);
1761 break;
1762 case BT_COMPLEX:
1763 read_complex (dtp, kind, size);
1764 break;
1765 default:
1766 internal_error (&dtp->common, "Bad type for list read");
1767 }
1768
1769 if (dtp->u.p.saved_type != BT_CHARACTER && dtp->u.p.saved_type != BT_NULL)
1770 dtp->u.p.saved_length = size;
1771
1772 if ((dtp->common.flags & IOPARM_LIBRETURN_MASK) != IOPARM_LIBRETURN_OK)
1773 goto cleanup;
1774
1775 set_value:
1776 switch (dtp->u.p.saved_type)
1777 {
1778 case BT_COMPLEX:
1779 case BT_INTEGER:
1780 case BT_REAL:
1781 case BT_LOGICAL:
1782 memcpy (p, dtp->u.p.value, size);
1783 break;
1784
1785 case BT_CHARACTER:
1786 if (dtp->u.p.saved_string)
1787 {
1788 m = ((int) size < dtp->u.p.saved_used)
1789 ? (int) size : dtp->u.p.saved_used;
1790 if (kind == 1)
1791 memcpy (p, dtp->u.p.saved_string, m);
1792 else
1793 {
1794 q = (gfc_char4_t *) p;
1795 for (i = 0; i < m; i++)
1796 q[i] = (unsigned char) dtp->u.p.saved_string[i];
1797 }
1798 }
1799 else
1800 /* Just delimiters encountered, nothing to copy but SPACE. */
1801 m = 0;
1802
1803 if (m < (int) size)
1804 {
1805 if (kind == 1)
1806 memset (((char *) p) + m, ' ', size - m);
1807 else
1808 {
1809 q = (gfc_char4_t *) p;
1810 for (i = m; i < (int) size; i++)
1811 q[i] = (unsigned char) ' ';
1812 }
1813 }
1814 break;
1815
1816 case BT_NULL:
1817 break;
1818 }
1819
1820 if (--dtp->u.p.repeat_count <= 0)
1821 free_saved (dtp);
1822
1823 cleanup:
1824 dtp->u.p.eof_jump = NULL;
1825 }
1826
1827
1828 void
1829 list_formatted_read (st_parameter_dt *dtp, bt type, void *p, int kind,
1830 size_t size, size_t nelems)
1831 {
1832 size_t elem;
1833 char *tmp;
1834 size_t stride = type == BT_CHARACTER ?
1835 size * GFC_SIZE_OF_CHAR_KIND(kind) : size;
1836
1837 tmp = (char *) p;
1838
1839 /* Big loop over all the elements. */
1840 for (elem = 0; elem < nelems; elem++)
1841 {
1842 dtp->u.p.item_count++;
1843 list_formatted_read_scalar (dtp, type, tmp + stride*elem, kind, size);
1844 }
1845 }
1846
1847
1848 /* Finish a list read. */
1849
1850 void
1851 finish_list_read (st_parameter_dt *dtp)
1852 {
1853 char c;
1854
1855 free_saved (dtp);
1856
1857 fbuf_flush (dtp->u.p.current_unit, dtp->u.p.mode);
1858
1859 if (dtp->u.p.at_eol)
1860 {
1861 dtp->u.p.at_eol = 0;
1862 return;
1863 }
1864
1865 do
1866 {
1867 c = next_char (dtp);
1868 }
1869 while (c != '\n');
1870
1871 if (dtp->u.p.current_unit->endfile != NO_ENDFILE)
1872 {
1873 generate_error (&dtp->common, LIBERROR_END, NULL);
1874 dtp->u.p.current_unit->endfile = AFTER_ENDFILE;
1875 dtp->u.p.current_unit->current_record = 0;
1876 }
1877 }
1878
1879 /* NAMELIST INPUT
1880
1881 void namelist_read (st_parameter_dt *dtp)
1882 calls:
1883 static void nml_match_name (char *name, int len)
1884 static int nml_query (st_parameter_dt *dtp)
1885 static int nml_get_obj_data (st_parameter_dt *dtp,
1886 namelist_info **prev_nl, char *, size_t)
1887 calls:
1888 static void nml_untouch_nodes (st_parameter_dt *dtp)
1889 static namelist_info * find_nml_node (st_parameter_dt *dtp,
1890 char * var_name)
1891 static int nml_parse_qualifier(descriptor_dimension * ad,
1892 array_loop_spec * ls, int rank, char *)
1893 static void nml_touch_nodes (namelist_info * nl)
1894 static int nml_read_obj (namelist_info *nl, index_type offset,
1895 namelist_info **prev_nl, char *, size_t,
1896 index_type clow, index_type chigh)
1897 calls:
1898 -itself- */
1899
1900 /* Inputs a rank-dimensional qualifier, which can contain
1901 singlets, doublets, triplets or ':' with the standard meanings. */
1902
1903 static try
1904 nml_parse_qualifier (st_parameter_dt *dtp, descriptor_dimension *ad,
1905 array_loop_spec *ls, int rank, char *parse_err_msg,
1906 int *parsed_rank)
1907 {
1908 int dim;
1909 int indx;
1910 int neg;
1911 int null_flag;
1912 int is_array_section, is_char;
1913 char c;
1914
1915 is_char = 0;
1916 is_array_section = 0;
1917 dtp->u.p.expanded_read = 0;
1918
1919 /* See if this is a character substring qualifier we are looking for. */
1920 if (rank == -1)
1921 {
1922 rank = 1;
1923 is_char = 1;
1924 }
1925
1926 /* The next character in the stream should be the '('. */
1927
1928 c = next_char (dtp);
1929
1930 /* Process the qualifier, by dimension and triplet. */
1931
1932 for (dim=0; dim < rank; dim++ )
1933 {
1934 for (indx=0; indx<3; indx++)
1935 {
1936 free_saved (dtp);
1937 eat_spaces (dtp);
1938 neg = 0;
1939
1940 /* Process a potential sign. */
1941 c = next_char (dtp);
1942 switch (c)
1943 {
1944 case '-':
1945 neg = 1;
1946 break;
1947
1948 case '+':
1949 break;
1950
1951 default:
1952 unget_char (dtp, c);
1953 break;
1954 }
1955
1956 /* Process characters up to the next ':' , ',' or ')'. */
1957 for (;;)
1958 {
1959 c = next_char (dtp);
1960
1961 switch (c)
1962 {
1963 case ':':
1964 is_array_section = 1;
1965 break;
1966
1967 case ',': case ')':
1968 if ((c==',' && dim == rank -1)
1969 || (c==')' && dim < rank -1))
1970 {
1971 if (is_char)
1972 sprintf (parse_err_msg, "Bad substring qualifier");
1973 else
1974 sprintf (parse_err_msg, "Bad number of index fields");
1975 goto err_ret;
1976 }
1977 break;
1978
1979 CASE_DIGITS:
1980 push_char (dtp, c);
1981 continue;
1982
1983 case ' ': case '\t':
1984 eat_spaces (dtp);
1985 c = next_char (dtp);
1986 break;
1987
1988 default:
1989 if (is_char)
1990 sprintf (parse_err_msg,
1991 "Bad character in substring qualifier");
1992 else
1993 sprintf (parse_err_msg, "Bad character in index");
1994 goto err_ret;
1995 }
1996
1997 if ((c == ',' || c == ')') && indx == 0
1998 && dtp->u.p.saved_string == 0)
1999 {
2000 if (is_char)
2001 sprintf (parse_err_msg, "Null substring qualifier");
2002 else
2003 sprintf (parse_err_msg, "Null index field");
2004 goto err_ret;
2005 }
2006
2007 if ((c == ':' && indx == 1 && dtp->u.p.saved_string == 0)
2008 || (indx == 2 && dtp->u.p.saved_string == 0))
2009 {
2010 if (is_char)
2011 sprintf (parse_err_msg, "Bad substring qualifier");
2012 else
2013 sprintf (parse_err_msg, "Bad index triplet");
2014 goto err_ret;
2015 }
2016
2017 if (is_char && !is_array_section)
2018 {
2019 sprintf (parse_err_msg,
2020 "Missing colon in substring qualifier");
2021 goto err_ret;
2022 }
2023
2024 /* If '( : ? )' or '( ? : )' break and flag read failure. */
2025 null_flag = 0;
2026 if ((c == ':' && indx == 0 && dtp->u.p.saved_string == 0)
2027 || (indx==1 && dtp->u.p.saved_string == 0))
2028 {
2029 null_flag = 1;
2030 break;
2031 }
2032
2033 /* Now read the index. */
2034 if (convert_integer (dtp, sizeof(ssize_t), neg))
2035 {
2036 if (is_char)
2037 sprintf (parse_err_msg, "Bad integer substring qualifier");
2038 else
2039 sprintf (parse_err_msg, "Bad integer in index");
2040 goto err_ret;
2041 }
2042 break;
2043 }
2044
2045 /* Feed the index values to the triplet arrays. */
2046 if (!null_flag)
2047 {
2048 if (indx == 0)
2049 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2050 if (indx == 1)
2051 memcpy (&ls[dim].end, dtp->u.p.value, sizeof(ssize_t));
2052 if (indx == 2)
2053 memcpy (&ls[dim].step, dtp->u.p.value, sizeof(ssize_t));
2054 }
2055
2056 /* Singlet or doublet indices. */
2057 if (c==',' || c==')')
2058 {
2059 if (indx == 0)
2060 {
2061 memcpy (&ls[dim].start, dtp->u.p.value, sizeof(ssize_t));
2062
2063 /* If -std=f95/2003 or an array section is specified,
2064 do not allow excess data to be processed. */
2065 if (is_array_section == 1
2066 || compile_options.allow_std < GFC_STD_GNU)
2067 ls[dim].end = ls[dim].start;
2068 else
2069 dtp->u.p.expanded_read = 1;
2070 }
2071
2072 /* Check for non-zero rank. */
2073 if (is_array_section == 1 && ls[dim].start != ls[dim].end)
2074 *parsed_rank = 1;
2075
2076 break;
2077 }
2078 }
2079
2080 /* Check the values of the triplet indices. */
2081 if ((ls[dim].start > (ssize_t)ad[dim].ubound)
2082 || (ls[dim].start < (ssize_t)ad[dim].lbound)
2083 || (ls[dim].end > (ssize_t)ad[dim].ubound)
2084 || (ls[dim].end < (ssize_t)ad[dim].lbound))
2085 {
2086 if (is_char)
2087 sprintf (parse_err_msg, "Substring out of range");
2088 else
2089 sprintf (parse_err_msg, "Index %d out of range", dim + 1);
2090 goto err_ret;
2091 }
2092
2093 if (((ls[dim].end - ls[dim].start ) * ls[dim].step < 0)
2094 || (ls[dim].step == 0))
2095 {
2096 sprintf (parse_err_msg, "Bad range in index %d", dim + 1);
2097 goto err_ret;
2098 }
2099
2100 /* Initialise the loop index counter. */
2101 ls[dim].idx = ls[dim].start;
2102 }
2103 eat_spaces (dtp);
2104 return SUCCESS;
2105
2106 err_ret:
2107
2108 return FAILURE;
2109 }
2110
2111 static namelist_info *
2112 find_nml_node (st_parameter_dt *dtp, char * var_name)
2113 {
2114 namelist_info * t = dtp->u.p.ionml;
2115 while (t != NULL)
2116 {
2117 if (strcmp (var_name, t->var_name) == 0)
2118 {
2119 t->touched = 1;
2120 return t;
2121 }
2122 t = t->next;
2123 }
2124 return NULL;
2125 }
2126
2127 /* Visits all the components of a derived type that have
2128 not explicitly been identified in the namelist input.
2129 touched is set and the loop specification initialised
2130 to default values */
2131
2132 static void
2133 nml_touch_nodes (namelist_info * nl)
2134 {
2135 index_type len = strlen (nl->var_name) + 1;
2136 int dim;
2137 char * ext_name = (char*)get_mem (len + 1);
2138 memcpy (ext_name, nl->var_name, len-1);
2139 memcpy (ext_name + len - 1, "%", 2);
2140 for (nl = nl->next; nl; nl = nl->next)
2141 {
2142 if (strncmp (nl->var_name, ext_name, len) == 0)
2143 {
2144 nl->touched = 1;
2145 for (dim=0; dim < nl->var_rank; dim++)
2146 {
2147 nl->ls[dim].step = 1;
2148 nl->ls[dim].end = nl->dim[dim].ubound;
2149 nl->ls[dim].start = nl->dim[dim].lbound;
2150 nl->ls[dim].idx = nl->ls[dim].start;
2151 }
2152 }
2153 else
2154 break;
2155 }
2156 free_mem (ext_name);
2157 return;
2158 }
2159
2160 /* Resets touched for the entire list of nml_nodes, ready for a
2161 new object. */
2162
2163 static void
2164 nml_untouch_nodes (st_parameter_dt *dtp)
2165 {
2166 namelist_info * t;
2167 for (t = dtp->u.p.ionml; t; t = t->next)
2168 t->touched = 0;
2169 return;
2170 }
2171
2172 /* Attempts to input name to namelist name. Returns
2173 dtp->u.p.nml_read_error = 1 on no match. */
2174
2175 static void
2176 nml_match_name (st_parameter_dt *dtp, const char *name, index_type len)
2177 {
2178 index_type i;
2179 char c;
2180 dtp->u.p.nml_read_error = 0;
2181 for (i = 0; i < len; i++)
2182 {
2183 c = next_char (dtp);
2184 if (tolower (c) != tolower (name[i]))
2185 {
2186 dtp->u.p.nml_read_error = 1;
2187 break;
2188 }
2189 }
2190 }
2191
2192 /* If the namelist read is from stdin, output the current state of the
2193 namelist to stdout. This is used to implement the non-standard query
2194 features, ? and =?. If c == '=' the full namelist is printed. Otherwise
2195 the names alone are printed. */
2196
2197 static void
2198 nml_query (st_parameter_dt *dtp, char c)
2199 {
2200 gfc_unit * temp_unit;
2201 namelist_info * nl;
2202 index_type len;
2203 char * p;
2204 #ifdef HAVE_CRLF
2205 static const index_type endlen = 3;
2206 static const char endl[] = "\r\n";
2207 static const char nmlend[] = "&end\r\n";
2208 #else
2209 static const index_type endlen = 2;
2210 static const char endl[] = "\n";
2211 static const char nmlend[] = "&end\n";
2212 #endif
2213
2214 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2215 return;
2216
2217 /* Store the current unit and transfer to stdout. */
2218
2219 temp_unit = dtp->u.p.current_unit;
2220 dtp->u.p.current_unit = find_unit (options.stdout_unit);
2221
2222 if (dtp->u.p.current_unit)
2223 {
2224 dtp->u.p.mode = WRITING;
2225 next_record (dtp, 0);
2226
2227 /* Write the namelist in its entirety. */
2228
2229 if (c == '=')
2230 namelist_write (dtp);
2231
2232 /* Or write the list of names. */
2233
2234 else
2235 {
2236 /* "&namelist_name\n" */
2237
2238 len = dtp->namelist_name_len;
2239 p = write_block (dtp, len + endlen);
2240 if (!p)
2241 goto query_return;
2242 memcpy (p, "&", 1);
2243 memcpy ((char*)(p + 1), dtp->namelist_name, len);
2244 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2245 for (nl = dtp->u.p.ionml; nl; nl = nl->next)
2246 {
2247 /* " var_name\n" */
2248
2249 len = strlen (nl->var_name);
2250 p = write_block (dtp, len + endlen);
2251 if (!p)
2252 goto query_return;
2253 memcpy (p, " ", 1);
2254 memcpy ((char*)(p + 1), nl->var_name, len);
2255 memcpy ((char*)(p + len + 1), &endl, endlen - 1);
2256 }
2257
2258 /* "&end\n" */
2259
2260 p = write_block (dtp, endlen + 3);
2261 goto query_return;
2262 memcpy (p, &nmlend, endlen + 3);
2263 }
2264
2265 /* Flush the stream to force immediate output. */
2266
2267 fbuf_flush (dtp->u.p.current_unit, WRITING);
2268 sflush (dtp->u.p.current_unit->s);
2269 unlock_unit (dtp->u.p.current_unit);
2270 }
2271
2272 query_return:
2273
2274 /* Restore the current unit. */
2275
2276 dtp->u.p.current_unit = temp_unit;
2277 dtp->u.p.mode = READING;
2278 return;
2279 }
2280
2281 /* Reads and stores the input for the namelist object nl. For an array,
2282 the function loops over the ranges defined by the loop specification.
2283 This default to all the data or to the specification from a qualifier.
2284 nml_read_obj recursively calls itself to read derived types. It visits
2285 all its own components but only reads data for those that were touched
2286 when the name was parsed. If a read error is encountered, an attempt is
2287 made to return to read a new object name because the standard allows too
2288 little data to be available. On the other hand, too much data is an
2289 error. */
2290
2291 static try
2292 nml_read_obj (st_parameter_dt *dtp, namelist_info * nl, index_type offset,
2293 namelist_info **pprev_nl, char *nml_err_msg,
2294 size_t nml_err_msg_size, index_type clow, index_type chigh)
2295 {
2296 namelist_info * cmp;
2297 char * obj_name;
2298 int nml_carry;
2299 int len;
2300 int dim;
2301 index_type dlen;
2302 index_type m;
2303 size_t obj_name_len;
2304 void * pdata;
2305
2306 /* This object not touched in name parsing. */
2307
2308 if (!nl->touched)
2309 return SUCCESS;
2310
2311 dtp->u.p.repeat_count = 0;
2312 eat_spaces (dtp);
2313
2314 len = nl->len;
2315 switch (nl->type)
2316 {
2317 case GFC_DTYPE_INTEGER:
2318 case GFC_DTYPE_LOGICAL:
2319 dlen = len;
2320 break;
2321
2322 case GFC_DTYPE_REAL:
2323 dlen = size_from_real_kind (len);
2324 break;
2325
2326 case GFC_DTYPE_COMPLEX:
2327 dlen = size_from_complex_kind (len);
2328 break;
2329
2330 case GFC_DTYPE_CHARACTER:
2331 dlen = chigh ? (chigh - clow + 1) : nl->string_length;
2332 break;
2333
2334 default:
2335 dlen = 0;
2336 }
2337
2338 do
2339 {
2340 /* Update the pointer to the data, using the current index vector */
2341
2342 pdata = (void*)(nl->mem_pos + offset);
2343 for (dim = 0; dim < nl->var_rank; dim++)
2344 pdata = (void*)(pdata + (nl->ls[dim].idx - nl->dim[dim].lbound) *
2345 nl->dim[dim].stride * nl->size);
2346
2347 /* Reset the error flag and try to read next value, if
2348 dtp->u.p.repeat_count=0 */
2349
2350 dtp->u.p.nml_read_error = 0;
2351 nml_carry = 0;
2352 if (--dtp->u.p.repeat_count <= 0)
2353 {
2354 if (dtp->u.p.input_complete)
2355 return SUCCESS;
2356 if (dtp->u.p.at_eol)
2357 finish_separator (dtp);
2358 if (dtp->u.p.input_complete)
2359 return SUCCESS;
2360
2361 /* GFC_TYPE_UNKNOWN through for nulls and is detected
2362 after the switch block. */
2363
2364 dtp->u.p.saved_type = GFC_DTYPE_UNKNOWN;
2365 free_saved (dtp);
2366
2367 switch (nl->type)
2368 {
2369 case GFC_DTYPE_INTEGER:
2370 read_integer (dtp, len);
2371 break;
2372
2373 case GFC_DTYPE_LOGICAL:
2374 read_logical (dtp, len);
2375 break;
2376
2377 case GFC_DTYPE_CHARACTER:
2378 read_character (dtp, len);
2379 break;
2380
2381 case GFC_DTYPE_REAL:
2382 read_real (dtp, len);
2383 break;
2384
2385 case GFC_DTYPE_COMPLEX:
2386 read_complex (dtp, len, dlen);
2387 break;
2388
2389 case GFC_DTYPE_DERIVED:
2390 obj_name_len = strlen (nl->var_name) + 1;
2391 obj_name = get_mem (obj_name_len+1);
2392 memcpy (obj_name, nl->var_name, obj_name_len-1);
2393 memcpy (obj_name + obj_name_len - 1, "%", 2);
2394
2395 /* If reading a derived type, disable the expanded read warning
2396 since a single object can have multiple reads. */
2397 dtp->u.p.expanded_read = 0;
2398
2399 /* Now loop over the components. Update the component pointer
2400 with the return value from nml_write_obj. This loop jumps
2401 past nested derived types by testing if the potential
2402 component name contains '%'. */
2403
2404 for (cmp = nl->next;
2405 cmp &&
2406 !strncmp (cmp->var_name, obj_name, obj_name_len) &&
2407 !strchr (cmp->var_name + obj_name_len, '%');
2408 cmp = cmp->next)
2409 {
2410
2411 if (nml_read_obj (dtp, cmp, (index_type)(pdata - nl->mem_pos),
2412 pprev_nl, nml_err_msg, nml_err_msg_size,
2413 clow, chigh) == FAILURE)
2414 {
2415 free_mem (obj_name);
2416 return FAILURE;
2417 }
2418
2419 if (dtp->u.p.input_complete)
2420 {
2421 free_mem (obj_name);
2422 return SUCCESS;
2423 }
2424 }
2425
2426 free_mem (obj_name);
2427 goto incr_idx;
2428
2429 default:
2430 snprintf (nml_err_msg, nml_err_msg_size,
2431 "Bad type for namelist object %s", nl->var_name);
2432 internal_error (&dtp->common, nml_err_msg);
2433 goto nml_err_ret;
2434 }
2435 }
2436
2437 /* The standard permits array data to stop short of the number of
2438 elements specified in the loop specification. In this case, we
2439 should be here with dtp->u.p.nml_read_error != 0. Control returns to
2440 nml_get_obj_data and an attempt is made to read object name. */
2441
2442 *pprev_nl = nl;
2443 if (dtp->u.p.nml_read_error)
2444 {
2445 dtp->u.p.expanded_read = 0;
2446 return SUCCESS;
2447 }
2448
2449 if (dtp->u.p.saved_type == GFC_DTYPE_UNKNOWN)
2450 {
2451 dtp->u.p.expanded_read = 0;
2452 goto incr_idx;
2453 }
2454
2455 /* Note the switch from GFC_DTYPE_type to BT_type at this point.
2456 This comes about because the read functions return BT_types. */
2457
2458 switch (dtp->u.p.saved_type)
2459 {
2460
2461 case BT_COMPLEX:
2462 case BT_REAL:
2463 case BT_INTEGER:
2464 case BT_LOGICAL:
2465 memcpy (pdata, dtp->u.p.value, dlen);
2466 break;
2467
2468 case BT_CHARACTER:
2469 m = (dlen < dtp->u.p.saved_used) ? dlen : dtp->u.p.saved_used;
2470 pdata = (void*)( pdata + clow - 1 );
2471 memcpy (pdata, dtp->u.p.saved_string, m);
2472 if (m < dlen)
2473 memset ((void*)( pdata + m ), ' ', dlen - m);
2474 break;
2475
2476 default:
2477 break;
2478 }
2479
2480 /* Warn if a non-standard expanded read occurs. A single read of a
2481 single object is acceptable. If a second read occurs, issue a warning
2482 and set the flag to zero to prevent further warnings. */
2483 if (dtp->u.p.expanded_read == 2)
2484 {
2485 notify_std (&dtp->common, GFC_STD_GNU, "Non-standard expanded namelist read.");
2486 dtp->u.p.expanded_read = 0;
2487 }
2488
2489 /* If the expanded read warning flag is set, increment it,
2490 indicating that a single read has occurred. */
2491 if (dtp->u.p.expanded_read >= 1)
2492 dtp->u.p.expanded_read++;
2493
2494 /* Break out of loop if scalar. */
2495 if (!nl->var_rank)
2496 break;
2497
2498 /* Now increment the index vector. */
2499
2500 incr_idx:
2501
2502 nml_carry = 1;
2503 for (dim = 0; dim < nl->var_rank; dim++)
2504 {
2505 nl->ls[dim].idx += nml_carry * nl->ls[dim].step;
2506 nml_carry = 0;
2507 if (((nl->ls[dim].step > 0) && (nl->ls[dim].idx > nl->ls[dim].end))
2508 ||
2509 ((nl->ls[dim].step < 0) && (nl->ls[dim].idx < nl->ls[dim].end)))
2510 {
2511 nl->ls[dim].idx = nl->ls[dim].start;
2512 nml_carry = 1;
2513 }
2514 }
2515 } while (!nml_carry);
2516
2517 if (dtp->u.p.repeat_count > 1)
2518 {
2519 snprintf (nml_err_msg, nml_err_msg_size,
2520 "Repeat count too large for namelist object %s", nl->var_name);
2521 goto nml_err_ret;
2522 }
2523 return SUCCESS;
2524
2525 nml_err_ret:
2526
2527 return FAILURE;
2528 }
2529
2530 /* Parses the object name, including array and substring qualifiers. It
2531 iterates over derived type components, touching those components and
2532 setting their loop specifications, if there is a qualifier. If the
2533 object is itself a derived type, its components and subcomponents are
2534 touched. nml_read_obj is called at the end and this reads the data in
2535 the manner specified by the object name. */
2536
2537 static try
2538 nml_get_obj_data (st_parameter_dt *dtp, namelist_info **pprev_nl,
2539 char *nml_err_msg, size_t nml_err_msg_size)
2540 {
2541 char c;
2542 namelist_info * nl;
2543 namelist_info * first_nl = NULL;
2544 namelist_info * root_nl = NULL;
2545 int dim, parsed_rank;
2546 int component_flag;
2547 index_type clow, chigh;
2548 int non_zero_rank_count;
2549
2550 /* Look for end of input or object name. If '?' or '=?' are encountered
2551 in stdin, print the node names or the namelist to stdout. */
2552
2553 eat_separator (dtp);
2554 if (dtp->u.p.input_complete)
2555 return SUCCESS;
2556
2557 if (dtp->u.p.at_eol)
2558 finish_separator (dtp);
2559 if (dtp->u.p.input_complete)
2560 return SUCCESS;
2561
2562 c = next_char (dtp);
2563 switch (c)
2564 {
2565 case '=':
2566 c = next_char (dtp);
2567 if (c != '?')
2568 {
2569 sprintf (nml_err_msg, "namelist read: misplaced = sign");
2570 goto nml_err_ret;
2571 }
2572 nml_query (dtp, '=');
2573 return SUCCESS;
2574
2575 case '?':
2576 nml_query (dtp, '?');
2577 return SUCCESS;
2578
2579 case '$':
2580 case '&':
2581 nml_match_name (dtp, "end", 3);
2582 if (dtp->u.p.nml_read_error)
2583 {
2584 sprintf (nml_err_msg, "namelist not terminated with / or &end");
2585 goto nml_err_ret;
2586 }
2587 case '/':
2588 dtp->u.p.input_complete = 1;
2589 return SUCCESS;
2590
2591 default :
2592 break;
2593 }
2594
2595 /* Untouch all nodes of the namelist and reset the flag that is set for
2596 derived type components. */
2597
2598 nml_untouch_nodes (dtp);
2599 component_flag = 0;
2600 non_zero_rank_count = 0;
2601
2602 /* Get the object name - should '!' and '\n' be permitted separators? */
2603
2604 get_name:
2605
2606 free_saved (dtp);
2607
2608 do
2609 {
2610 if (!is_separator (c))
2611 push_char (dtp, tolower(c));
2612 c = next_char (dtp);
2613 } while (!( c=='=' || c==' ' || c=='\t' || c =='(' || c =='%' ));
2614
2615 unget_char (dtp, c);
2616
2617 /* Check that the name is in the namelist and get pointer to object.
2618 Three error conditions exist: (i) An attempt is being made to
2619 identify a non-existent object, following a failed data read or
2620 (ii) The object name does not exist or (iii) Too many data items
2621 are present for an object. (iii) gives the same error message
2622 as (i) */
2623
2624 push_char (dtp, '\0');
2625
2626 if (component_flag)
2627 {
2628 size_t var_len = strlen (root_nl->var_name);
2629 size_t saved_len
2630 = dtp->u.p.saved_string ? strlen (dtp->u.p.saved_string) : 0;
2631 char ext_name[var_len + saved_len + 1];
2632
2633 memcpy (ext_name, root_nl->var_name, var_len);
2634 if (dtp->u.p.saved_string)
2635 memcpy (ext_name + var_len, dtp->u.p.saved_string, saved_len);
2636 ext_name[var_len + saved_len] = '\0';
2637 nl = find_nml_node (dtp, ext_name);
2638 }
2639 else
2640 nl = find_nml_node (dtp, dtp->u.p.saved_string);
2641
2642 if (nl == NULL)
2643 {
2644 if (dtp->u.p.nml_read_error && *pprev_nl)
2645 snprintf (nml_err_msg, nml_err_msg_size,
2646 "Bad data for namelist object %s", (*pprev_nl)->var_name);
2647
2648 else
2649 snprintf (nml_err_msg, nml_err_msg_size,
2650 "Cannot match namelist object name %s",
2651 dtp->u.p.saved_string);
2652
2653 goto nml_err_ret;
2654 }
2655
2656 /* Get the length, data length, base pointer and rank of the variable.
2657 Set the default loop specification first. */
2658
2659 for (dim=0; dim < nl->var_rank; dim++)
2660 {
2661 nl->ls[dim].step = 1;
2662 nl->ls[dim].end = nl->dim[dim].ubound;
2663 nl->ls[dim].start = nl->dim[dim].lbound;
2664 nl->ls[dim].idx = nl->ls[dim].start;
2665 }
2666
2667 /* Check to see if there is a qualifier: if so, parse it.*/
2668
2669 if (c == '(' && nl->var_rank)
2670 {
2671 parsed_rank = 0;
2672 if (nml_parse_qualifier (dtp, nl->dim, nl->ls, nl->var_rank,
2673 nml_err_msg, &parsed_rank) == FAILURE)
2674 {
2675 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2676 snprintf (nml_err_msg_end,
2677 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2678 " for namelist variable %s", nl->var_name);
2679 goto nml_err_ret;
2680 }
2681
2682 if (parsed_rank > 0)
2683 non_zero_rank_count++;
2684
2685 c = next_char (dtp);
2686 unget_char (dtp, c);
2687 }
2688 else if (nl->var_rank > 0)
2689 non_zero_rank_count++;
2690
2691 /* Now parse a derived type component. The root namelist_info address
2692 is backed up, as is the previous component level. The component flag
2693 is set and the iteration is made by jumping back to get_name. */
2694
2695 if (c == '%')
2696 {
2697 if (nl->type != GFC_DTYPE_DERIVED)
2698 {
2699 snprintf (nml_err_msg, nml_err_msg_size,
2700 "Attempt to get derived component for %s", nl->var_name);
2701 goto nml_err_ret;
2702 }
2703
2704 if (!component_flag)
2705 first_nl = nl;
2706
2707 root_nl = nl;
2708 component_flag = 1;
2709 c = next_char (dtp);
2710 goto get_name;
2711 }
2712
2713 /* Parse a character qualifier, if present. chigh = 0 is a default
2714 that signals that the string length = string_length. */
2715
2716 clow = 1;
2717 chigh = 0;
2718
2719 if (c == '(' && nl->type == GFC_DTYPE_CHARACTER)
2720 {
2721 descriptor_dimension chd[1] = { {1, clow, nl->string_length} };
2722 array_loop_spec ind[1] = { {1, clow, nl->string_length, 1} };
2723
2724 if (nml_parse_qualifier (dtp, chd, ind, -1, nml_err_msg, &parsed_rank)
2725 == FAILURE)
2726 {
2727 char *nml_err_msg_end = strchr (nml_err_msg, '\0');
2728 snprintf (nml_err_msg_end,
2729 nml_err_msg_size - (nml_err_msg_end - nml_err_msg),
2730 " for namelist variable %s", nl->var_name);
2731 goto nml_err_ret;
2732 }
2733
2734 clow = ind[0].start;
2735 chigh = ind[0].end;
2736
2737 if (ind[0].step != 1)
2738 {
2739 snprintf (nml_err_msg, nml_err_msg_size,
2740 "Step not allowed in substring qualifier"
2741 " for namelist object %s", nl->var_name);
2742 goto nml_err_ret;
2743 }
2744
2745 c = next_char (dtp);
2746 unget_char (dtp, c);
2747 }
2748
2749 /* If a derived type touch its components and restore the root
2750 namelist_info if we have parsed a qualified derived type
2751 component. */
2752
2753 if (nl->type == GFC_DTYPE_DERIVED)
2754 nml_touch_nodes (nl);
2755 if (component_flag && nl->var_rank > 0)
2756 nl = first_nl;
2757
2758 /* Make sure no extraneous qualifiers are there. */
2759
2760 if (c == '(')
2761 {
2762 snprintf (nml_err_msg, nml_err_msg_size,
2763 "Qualifier for a scalar or non-character namelist object %s",
2764 nl->var_name);
2765 goto nml_err_ret;
2766 }
2767
2768 /* Make sure there is no more than one non-zero rank object. */
2769 if (non_zero_rank_count > 1)
2770 {
2771 snprintf (nml_err_msg, nml_err_msg_size,
2772 "Multiple sub-objects with non-zero rank in namelist object %s",
2773 nl->var_name);
2774 non_zero_rank_count = 0;
2775 goto nml_err_ret;
2776 }
2777
2778 /* According to the standard, an equal sign MUST follow an object name. The
2779 following is possibly lax - it allows comments, blank lines and so on to
2780 intervene. eat_spaces (dtp); c = next_char (dtp); would be compliant*/
2781
2782 free_saved (dtp);
2783
2784 eat_separator (dtp);
2785 if (dtp->u.p.input_complete)
2786 return SUCCESS;
2787
2788 if (dtp->u.p.at_eol)
2789 finish_separator (dtp);
2790 if (dtp->u.p.input_complete)
2791 return SUCCESS;
2792
2793 c = next_char (dtp);
2794
2795 if (c != '=')
2796 {
2797 snprintf (nml_err_msg, nml_err_msg_size,
2798 "Equal sign must follow namelist object name %s",
2799 nl->var_name);
2800 goto nml_err_ret;
2801 }
2802
2803 if (first_nl != NULL && first_nl->var_rank > 0)
2804 nl = first_nl;
2805
2806 if (nml_read_obj (dtp, nl, 0, pprev_nl, nml_err_msg, nml_err_msg_size,
2807 clow, chigh) == FAILURE)
2808 goto nml_err_ret;
2809
2810 return SUCCESS;
2811
2812 nml_err_ret:
2813
2814 return FAILURE;
2815 }
2816
2817 /* Entry point for namelist input. Goes through input until namelist name
2818 is matched. Then cycles through nml_get_obj_data until the input is
2819 completed or there is an error. */
2820
2821 void
2822 namelist_read (st_parameter_dt *dtp)
2823 {
2824 char c;
2825 jmp_buf eof_jump;
2826 char nml_err_msg[200];
2827 /* Pointer to the previously read object, in case attempt is made to read
2828 new object name. Should this fail, error message can give previous
2829 name. */
2830 namelist_info *prev_nl = NULL;
2831
2832 dtp->u.p.namelist_mode = 1;
2833 dtp->u.p.input_complete = 0;
2834 dtp->u.p.expanded_read = 0;
2835
2836 dtp->u.p.eof_jump = &eof_jump;
2837 if (setjmp (eof_jump))
2838 {
2839 dtp->u.p.eof_jump = NULL;
2840 generate_error (&dtp->common, LIBERROR_END, NULL);
2841 return;
2842 }
2843
2844 /* Look for &namelist_name . Skip all characters, testing for $nmlname.
2845 Exit on success or EOF. If '?' or '=?' encountered in stdin, print
2846 node names or namelist on stdout. */
2847
2848 find_nml_name:
2849 switch (c = next_char (dtp))
2850 {
2851 case '$':
2852 case '&':
2853 break;
2854
2855 case '!':
2856 eat_line (dtp);
2857 goto find_nml_name;
2858
2859 case '=':
2860 c = next_char (dtp);
2861 if (c == '?')
2862 nml_query (dtp, '=');
2863 else
2864 unget_char (dtp, c);
2865 goto find_nml_name;
2866
2867 case '?':
2868 nml_query (dtp, '?');
2869
2870 default:
2871 goto find_nml_name;
2872 }
2873
2874 /* Match the name of the namelist. */
2875
2876 nml_match_name (dtp, dtp->namelist_name, dtp->namelist_name_len);
2877
2878 if (dtp->u.p.nml_read_error)
2879 goto find_nml_name;
2880
2881 /* A trailing space is required, we give a little lattitude here, 10.9.1. */
2882 c = next_char (dtp);
2883 if (!is_separator(c) && c != '!')
2884 {
2885 unget_char (dtp, c);
2886 goto find_nml_name;
2887 }
2888
2889 unget_char (dtp, c);
2890 eat_separator (dtp);
2891
2892 /* Ready to read namelist objects. If there is an error in input
2893 from stdin, output the error message and continue. */
2894
2895 while (!dtp->u.p.input_complete)
2896 {
2897 if (nml_get_obj_data (dtp, &prev_nl, nml_err_msg, sizeof nml_err_msg)
2898 == FAILURE)
2899 {
2900 gfc_unit *u;
2901
2902 if (dtp->u.p.current_unit->unit_number != options.stdin_unit)
2903 goto nml_err_ret;
2904
2905 u = find_unit (options.stderr_unit);
2906 st_printf ("%s\n", nml_err_msg);
2907 if (u != NULL)
2908 {
2909 sflush (u->s);
2910 unlock_unit (u);
2911 }
2912 }
2913
2914 }
2915
2916 dtp->u.p.eof_jump = NULL;
2917 free_saved (dtp);
2918 free_line (dtp);
2919 return;
2920
2921 /* All namelist error calls return from here */
2922
2923 nml_err_ret:
2924
2925 dtp->u.p.eof_jump = NULL;
2926 free_saved (dtp);
2927 free_line (dtp);
2928 generate_error (&dtp->common, LIBERROR_READ_VALUE, nml_err_msg);
2929 return;
2930 }