66fab631ea23032a0e52d87d4724869236475edb
[pspp-builds.git] / src / data-list.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include "data-list.h"
22 #include "error.h"
23 #include <ctype.h>
24 #include <float.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include "alloc.h"
28 #include "case.h"
29 #include "command.h"
30 #include "data-in.h"
31 #include "debug-print.h"
32 #include "dfm-read.h"
33 #include "dictionary.h"
34 #include "error.h"
35 #include "file-handle.h"
36 #include "format.h"
37 #include "lexer.h"
38 #include "misc.h"
39 #include "settings.h"
40 #include "str.h"
41 #include "tab.h"
42 #include "var.h"
43 #include "vfm.h"
44 \f
45 /* Utility function. */
46
47 /* FIXME: Either REPEATING DATA must be the last transformation, or we
48    must multiplex the transformations that follow (i.e., perform them
49    for every case that we produce from a repetition instance).
50    Currently we do neither.  We should do one or the other. */
51    
52 /* Describes how to parse one variable. */
53 struct dls_var_spec
54   {
55     struct dls_var_spec *next;  /* Next specification in list. */
56
57     /* Both free and fixed formats. */
58     struct fmt_spec input;      /* Input format of this field. */
59     struct variable *v;         /* Associated variable.  Used only in
60                                    parsing.  Not safe later. */
61     int fv;                     /* First value in case. */
62
63     /* Fixed format only. */
64     int rec;                    /* Record number (1-based). */
65     int fc, lc;                 /* Column numbers in record. */
66
67     /* Free format only. */
68     char name[LONG_NAME_LEN + 1]; /* Name of variable. */
69   };
70
71 /* Constants for DATA LIST type. */
72 /* Must match table in cmd_data_list(). */
73 enum
74   {
75     DLS_FIXED,
76     DLS_FREE,
77     DLS_LIST
78   };
79
80 /* DATA LIST private data structure. */
81 struct data_list_pgm
82   {
83     struct trns_header h;
84
85     struct dls_var_spec *first, *last;  /* Variable parsing specifications. */
86     struct dfm_reader *reader;  /* Data file reader. */
87
88     int type;                   /* A DLS_* constant. */
89     struct variable *end;       /* Variable specified on END subcommand. */
90     int eof;                    /* End of file encountered. */
91     int rec_cnt;                /* Number of records. */
92     size_t case_size;           /* Case size in bytes. */
93     char *delims;               /* Delimiters if any; not null-terminated. */
94     size_t delim_cnt;           /* Number of delimiter, or 0 for spaces. */
95   };
96
97 static int parse_fixed (struct data_list_pgm *);
98 static int parse_free (struct dls_var_spec **, struct dls_var_spec **);
99 static void dump_fixed_table (const struct dls_var_spec *,
100                               const struct file_handle *, int rec_cnt);
101 static void dump_free_table (const struct data_list_pgm *,
102                              const struct file_handle *);
103 static void destroy_dls_var_spec (struct dls_var_spec *);
104 static trns_free_func data_list_trns_free;
105 static trns_proc_func data_list_trns_proc;
106
107 /* Message title for REPEATING DATA. */
108 #define RPD_ERR "REPEATING DATA: "
109
110 int
111 cmd_data_list (void)
112 {
113   struct data_list_pgm *dls;     /* DATA LIST program under construction. */
114   int table = -1;                /* Print table if nonzero, -1=undecided. */
115   struct file_handle *fh = NULL; /* File handle of source, NULL=inline file. */
116
117   if (!case_source_is_complex (vfm_source))
118     discard_variables ();
119
120   dls = xmalloc (sizeof *dls);
121   dls->reader = NULL;
122   dls->type = -1;
123   dls->end = NULL;
124   dls->eof = 0;
125   dls->rec_cnt = 0;
126   dls->delims = NULL;
127   dls->delim_cnt = 0;
128   dls->first = dls->last = NULL;
129
130   while (token != '/')
131     {
132       if (lex_match_id ("FILE"))
133         {
134           lex_match ('=');
135           fh = fh_parse ();
136           if (fh == NULL)
137             goto error;
138           if (case_source_is_class (vfm_source, &file_type_source_class)
139               && fh != default_handle)
140             {
141               msg (SE, _("DATA LIST may not use a different file from "
142                          "that specified on its surrounding FILE TYPE."));
143               goto error;
144             }
145         }
146       else if (lex_match_id ("RECORDS"))
147         {
148           lex_match ('=');
149           lex_match ('(');
150           if (!lex_force_int ())
151             goto error;
152           dls->rec_cnt = lex_integer ();
153           lex_get ();
154           lex_match (')');
155         }
156       else if (lex_match_id ("END"))
157         {
158           if (dls->end)
159             {
160               msg (SE, _("The END subcommand may only be specified once."));
161               goto error;
162             }
163           
164           lex_match ('=');
165           if (!lex_force_id ())
166             goto error;
167           dls->end = dict_lookup_var (default_dict, tokid);
168           if (!dls->end) 
169             dls->end = dict_create_var_assert (default_dict, tokid, 0);
170           lex_get ();
171         }
172       else if (token == T_ID)
173         {
174           if (lex_match_id ("NOTABLE"))
175             table = 0;
176           else if (lex_match_id ("TABLE"))
177             table = 1;
178           else 
179             {
180               int type;
181               if (lex_match_id ("FIXED"))
182                 type = DLS_FIXED;
183               else if (lex_match_id ("FREE"))
184                 type = DLS_FREE;
185               else if (lex_match_id ("LIST"))
186                 type = DLS_LIST;
187               else 
188                 {
189                   lex_error (NULL);
190                   goto error;
191                 }
192
193               if (dls->type != -1)
194                 {
195                   msg (SE, _("Only one of FIXED, FREE, or LIST may "
196                              "be specified."));
197                   goto error;
198                 }
199               dls->type = type;
200
201               if ((dls->type == DLS_FREE || dls->type == DLS_LIST)
202                   && lex_match ('(')) 
203                 {
204                   while (!lex_match (')'))
205                     {
206                       int delim;
207
208                       if (lex_match_id ("TAB"))
209                         delim = '\t';
210                       else if (token == T_STRING && tokstr.length == 1)
211                         {
212                           delim = tokstr.string[0];
213                           lex_get();
214                         }
215                       else 
216                         {
217                           lex_error (NULL);
218                           goto error;
219                         }
220
221                       dls->delims = xrealloc (dls->delims, dls->delim_cnt + 1);
222                       dls->delims[dls->delim_cnt++] = delim;
223
224                       lex_match (',');
225                     }
226                 }
227             }
228         }
229       else
230         {
231           lex_error (NULL);
232           goto error;
233         }
234     }
235
236   dls->case_size = dict_get_case_size (default_dict);
237   default_handle = fh;
238
239   if (dls->type == -1)
240     dls->type = DLS_FIXED;
241
242   if (table == -1)
243     {
244       if (dls->type == DLS_FREE)
245         table = 0;
246       else
247         table = 1;
248     }
249
250   if (dls->type == DLS_FIXED)
251     {
252       if (!parse_fixed (dls))
253         goto error;
254       if (table)
255         dump_fixed_table (dls->first, fh, dls->rec_cnt);
256     }
257   else
258     {
259       if (!parse_free (&dls->first, &dls->last))
260         goto error;
261       if (table)
262         dump_free_table (dls, fh);
263     }
264
265   dls->reader = dfm_open_reader (fh);
266   if (dls->reader == NULL)
267     goto error;
268
269   if (vfm_source != NULL)
270     {
271       dls->h.proc = data_list_trns_proc;
272       dls->h.free = data_list_trns_free;
273       add_transformation (&dls->h);
274     }
275   else 
276     vfm_source = create_case_source (&data_list_source_class, dls);
277
278   return CMD_SUCCESS;
279
280  error:
281   destroy_dls_var_spec (dls->first);
282   free (dls->delims);
283   free (dls);
284   return CMD_FAILURE;
285 }
286
287 /* Adds SPEC to the linked list with head at FIRST and tail at
288    LAST. */
289 static void
290 append_var_spec (struct dls_var_spec **first, struct dls_var_spec **last,
291                  struct dls_var_spec *spec)
292 {
293   spec->next = NULL;
294
295   if (*first == NULL)
296     *first = spec;
297   else 
298     (*last)->next = spec;
299   *last = spec;
300 }
301 \f
302 /* Fixed-format parsing. */
303
304 /* Used for chaining together fortran-like format specifiers. */
305 struct fmt_list
306   {
307     struct fmt_list *next;
308     int count;
309     struct fmt_spec f;
310     struct fmt_list *down;
311   };
312
313 /* State of parsing DATA LIST. */
314 struct fixed_parsing_state
315   {
316     char **name;                /* Variable names. */
317     int name_cnt;               /* Number of names. */
318
319     int recno;                  /* Index of current record. */
320     int sc;                     /* 1-based column number of starting column for
321                                    next field to output. */
322   };
323
324 static int fixed_parse_compatible (struct fixed_parsing_state *,
325                                    struct dls_var_spec **,
326                                    struct dls_var_spec **);
327 static int fixed_parse_fortran (struct fixed_parsing_state *,
328                                 struct dls_var_spec **,
329                                 struct dls_var_spec **);
330
331 /* Parses all the variable specifications for DATA LIST FIXED,
332    storing them into DLS.  Returns nonzero if successful. */
333 static int
334 parse_fixed (struct data_list_pgm *dls)
335 {
336   struct fixed_parsing_state fx;
337   int i;
338
339   fx.recno = 0;
340   fx.sc = 1;
341
342   while (token != '.')
343     {
344       while (lex_match ('/'))
345         {
346           fx.recno++;
347           if (lex_is_integer ())
348             {
349               if (lex_integer () < fx.recno)
350                 {
351                   msg (SE, _("The record number specified, %ld, is "
352                              "before the previous record, %d.  Data "
353                              "fields must be listed in order of "
354                              "increasing record number."),
355                        lex_integer (), fx.recno - 1);
356                   return 0;
357                 }
358               
359               fx.recno = lex_integer ();
360               lex_get ();
361             }
362           fx.sc = 1;
363         }
364
365       if (!parse_DATA_LIST_vars (&fx.name, &fx.name_cnt, PV_NONE))
366         return 0;
367
368       if (lex_is_number ())
369         {
370           if (!fixed_parse_compatible (&fx, &dls->first, &dls->last))
371             goto fail;
372         }
373       else if (token == '(')
374         {
375           if (!fixed_parse_fortran (&fx, &dls->first, &dls->last))
376             goto fail;
377         }
378       else
379         {
380           msg (SE, _("SPSS-like or FORTRAN-like format "
381                      "specification expected after variable names."));
382           goto fail;
383         }
384
385       for (i = 0; i < fx.name_cnt; i++)
386         free (fx.name[i]);
387       free (fx.name);
388     }
389   if (dls->first == NULL) 
390     {
391       msg (SE, _("At least one variable must be specified."));
392       return 0;
393     }
394   if (dls->rec_cnt && dls->last->rec > dls->rec_cnt)
395     {
396       msg (SE, _("Variables are specified on records that "
397                  "should not exist according to RECORDS subcommand."));
398       return 0;
399     }
400   else if (!dls->rec_cnt)
401     dls->rec_cnt = dls->last->rec;
402   return lex_end_of_command () == CMD_SUCCESS;
403
404 fail:
405   for (i = 0; i < fx.name_cnt; i++)
406     free (fx.name[i]);
407   free (fx.name);
408   return 0;
409 }
410
411 /* Parses a variable specification in the form 1-10 (A) based on
412    FX and adds specifications to the linked list with head at
413    FIRST and tail at LAST. */
414 static int
415 fixed_parse_compatible (struct fixed_parsing_state *fx,
416                         struct dls_var_spec **first, struct dls_var_spec **last)
417 {
418   struct fmt_spec input;
419   int fc, lc;
420   int width;
421   int i;
422
423   /* First column. */
424   if (!lex_force_int ())
425     return 0;
426   fc = lex_integer ();
427   if (fc < 1)
428     {
429       msg (SE, _("Column positions for fields must be positive."));
430       return 0;
431     }
432   lex_get ();
433
434   /* Last column. */
435   lex_negative_to_dash ();
436   if (lex_match ('-'))
437     {
438       if (!lex_force_int ())
439         return 0;
440       lc = lex_integer ();
441       if (lc < 1)
442         {
443           msg (SE, _("Column positions for fields must be positive."));
444           return 0;
445         }
446       else if (lc < fc)
447         {
448           msg (SE, _("The ending column for a field must be "
449                      "greater than the starting column."));
450           return 0;
451         }
452       
453       lex_get ();
454     }
455   else
456     lc = fc;
457
458   /* Divide columns evenly. */
459   input.w = (lc - fc + 1) / fx->name_cnt;
460   if ((lc - fc + 1) % fx->name_cnt)
461     {
462       msg (SE, _("The %d columns %d-%d "
463                  "can't be evenly divided into %d fields."),
464            lc - fc + 1, fc, lc, fx->name_cnt);
465       return 0;
466     }
467
468   /* Format specifier. */
469   if (lex_match ('('))
470     {
471       struct fmt_desc *fdp;
472
473       if (token == T_ID)
474         {
475           const char *cp;
476
477           input.type = parse_format_specifier_name (&cp, 0);
478           if (input.type == -1)
479             return 0;
480           if (*cp)
481             {
482               msg (SE, _("A format specifier on this line "
483                          "has extra characters on the end."));
484               return 0;
485             }
486           
487           lex_get ();
488           lex_match (',');
489         }
490       else
491         input.type = FMT_F;
492
493       if (lex_is_integer ())
494         {
495           if (lex_integer () < 1)
496             {
497               msg (SE, _("The value for number of decimal places "
498                          "must be at least 1."));
499               return 0;
500             }
501           
502           input.d = lex_integer ();
503           lex_get ();
504         }
505       else
506         input.d = 0;
507
508       fdp = &formats[input.type];
509       if (fdp->n_args < 2 && input.d)
510         {
511           msg (SE, _("Input format %s doesn't accept decimal places."),
512                fdp->name);
513           return 0;
514         }
515       
516       if (input.d > 16)
517         input.d = 16;
518
519       if (!lex_force_match (')'))
520         return 0;
521     }
522   else
523     {
524       input.type = FMT_F;
525       input.d = 0;
526     }
527   if (!check_input_specifier (&input, 1))
528     return 0;
529
530   /* Start column for next specification. */
531   fx->sc = lc + 1;
532
533   /* Width of variables to create. */
534   if (input.type == FMT_A || input.type == FMT_AHEX) 
535     width = input.w;
536   else
537     width = 0;
538
539   /* Create variables and var specs. */
540   for (i = 0; i < fx->name_cnt; i++)
541     {
542       struct dls_var_spec *spec;
543       struct variable *v;
544
545       v = dict_create_var (default_dict, fx->name[i], width);
546       if (v != NULL)
547         {
548           convert_fmt_ItoO (&input, &v->print);
549           v->write = v->print;
550           if (!case_source_is_complex (vfm_source))
551             v->init = 0;
552         }
553       else
554         {
555           v = dict_lookup_var_assert (default_dict, fx->name[i]);
556           if (vfm_source == NULL)
557             {
558               msg (SE, _("%s is a duplicate variable name."), fx->name[i]);
559               return 0;
560             }
561           if ((width != 0) != (v->width != 0))
562             {
563               msg (SE, _("There is already a variable %s of a "
564                          "different type."),
565                    fx->name[i]);
566               return 0;
567             }
568           if (width != 0 && width != v->width)
569             {
570               msg (SE, _("There is already a string variable %s of a "
571                          "different width."), fx->name[i]);
572               return 0;
573             }
574         }
575
576       spec = xmalloc (sizeof *spec);
577       spec->input = input;
578       spec->v = v;
579       spec->fv = v->fv;
580       spec->rec = fx->recno;
581       spec->fc = fc + input.w * i;
582       spec->lc = spec->fc + input.w - 1;
583       append_var_spec (first, last, spec);
584     }
585   return 1;
586 }
587
588 /* Destroy format list F and, if RECURSE is nonzero, all its
589    sublists. */
590 static void
591 destroy_fmt_list (struct fmt_list *f, int recurse)
592 {
593   struct fmt_list *next;
594
595   for (; f; f = next)
596     {
597       next = f->next;
598       if (recurse && f->f.type == FMT_DESCEND)
599         destroy_fmt_list (f->down, 1);
600       free (f);
601     }
602 }
603
604 /* Takes a hierarchically structured fmt_list F as constructed by
605    fixed_parse_fortran(), and flattens it, adding the variable
606    specifications to the linked list with head FIRST and tail
607    LAST.  NAME_IDX is used to take values from the list of names
608    in FX; it should initially point to a value of 0. */
609 static int
610 dump_fmt_list (struct fixed_parsing_state *fx, struct fmt_list *f,
611                struct dls_var_spec **first, struct dls_var_spec **last,
612                int *name_idx)
613 {
614   int i;
615
616   for (; f; f = f->next)
617     if (f->f.type == FMT_X)
618       fx->sc += f->count;
619     else if (f->f.type == FMT_T)
620       fx->sc = f->f.w;
621     else if (f->f.type == FMT_NEWREC)
622       {
623         fx->recno += f->count;
624         fx->sc = 1;
625       }
626     else
627       for (i = 0; i < f->count; i++)
628         if (f->f.type == FMT_DESCEND)
629           {
630             if (!dump_fmt_list (fx, f->down, first, last, name_idx))
631               return 0;
632           }
633         else
634           {
635             struct dls_var_spec *spec;
636             int width;
637             struct variable *v;
638
639             if (formats[f->f.type].cat & FCAT_STRING) 
640               width = f->f.w;
641             else
642               width = 0;
643             if (*name_idx >= fx->name_cnt)
644               {
645                 msg (SE, _("The number of format "
646                            "specifications exceeds the given number of "
647                            "variable names."));
648                 return 0;
649               }
650             
651             v = dict_create_var (default_dict, fx->name[(*name_idx)++], width);
652             if (!v)
653               {
654                 msg (SE, _("%s is a duplicate variable name."), fx->name[i]);
655                 return 0;
656               }
657             
658             if (!case_source_is_complex (vfm_source))
659               v->init = 0;
660
661             spec = xmalloc (sizeof *spec);
662             spec->v = v;
663             spec->input = f->f;
664             spec->fv = v->fv;
665             spec->rec = fx->recno;
666             spec->fc = fx->sc;
667             spec->lc = fx->sc + f->f.w - 1;
668             append_var_spec (first, last, spec);
669
670             convert_fmt_ItoO (&spec->input, &v->print);
671             v->write = v->print;
672
673             fx->sc += f->f.w;
674           }
675   return 1;
676 }
677
678 /* Recursively parses a FORTRAN-like format specification into
679    the linked list with head FIRST and tail TAIL.  LEVEL is the
680    level of recursion, starting from 0.  Returns the parsed
681    specification if successful, or a null pointer on failure.  */
682 static struct fmt_list *
683 fixed_parse_fortran_internal (struct fixed_parsing_state *fx,
684                               struct dls_var_spec **first,
685                               struct dls_var_spec **last)
686 {
687   struct fmt_list *head = NULL;
688   struct fmt_list *tail = NULL;
689
690   lex_force_match ('(');
691   while (token != ')')
692     {
693       /* New fmt_list. */
694       struct fmt_list *new = xmalloc (sizeof *new);
695       new->next = NULL;
696
697       /* Append new to list. */
698       if (head != NULL)
699         tail->next = new;
700       else
701         head = new;
702       tail = new;
703
704       /* Parse count. */
705       if (lex_is_integer ())
706         {
707           new->count = lex_integer ();
708           lex_get ();
709         }
710       else
711         new->count = 1;
712
713       /* Parse format specifier. */
714       if (token == '(')
715         {
716           new->f.type = FMT_DESCEND;
717           new->down = fixed_parse_fortran_internal (fx, first, last);
718           if (new->down == NULL)
719             goto fail;
720         }
721       else if (lex_match ('/'))
722         new->f.type = FMT_NEWREC;
723       else if (!parse_format_specifier (&new->f, FMTP_ALLOW_XT)
724                || !check_input_specifier (&new->f, 1))
725         goto fail;
726
727       lex_match (',');
728     }
729   lex_force_match (')');
730
731   return head;
732
733 fail:
734   destroy_fmt_list (head, 0);
735
736   return NULL;
737 }
738
739 /* Parses a FORTRAN-like format specification into the linked
740    list with head FIRST and tail LAST.  Returns nonzero if
741    successful. */
742 static int
743 fixed_parse_fortran (struct fixed_parsing_state *fx,
744                      struct dls_var_spec **first, struct dls_var_spec **last)
745 {
746   struct fmt_list *list;
747   int name_idx;
748
749   list = fixed_parse_fortran_internal (fx, first, last);
750   if (list == NULL)
751     return 0;
752   
753   name_idx = 0;
754   dump_fmt_list (fx, list, first, last, &name_idx);
755   destroy_fmt_list (list, 1);
756   if (name_idx < fx->name_cnt)
757     {
758       msg (SE, _("There aren't enough format specifications "
759                  "to match the number of variable names given."));
760       return 0; 
761     }
762
763   return 1;
764 }
765
766 /* Displays a table giving information on fixed-format variable
767    parsing on DATA LIST. */
768 /* FIXME: The `Columns' column should be divided into three columns,
769    one for the starting column, one for the dash, one for the ending
770    column; then right-justify the starting column and left-justify the
771    ending column. */
772 static void
773 dump_fixed_table (const struct dls_var_spec *specs,
774                   const struct file_handle *fh, int rec_cnt)
775 {
776   const struct dls_var_spec *spec;
777   struct tab_table *t;
778   int i;
779
780   for (i = 0, spec = specs; spec; spec = spec->next)
781     i++;
782   t = tab_create (4, i + 1, 0);
783   tab_columns (t, TAB_COL_DOWN, 1);
784   tab_headers (t, 0, 0, 1, 0);
785   tab_text (t, 0, 0, TAB_CENTER | TAT_TITLE, _("Variable"));
786   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Record"));
787   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Columns"));
788   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Format"));
789   tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 3, i);
790   tab_hline (t, TAL_2, 0, 3, 1);
791   tab_dim (t, tab_natural_dimensions);
792
793   for (i = 1, spec = specs; spec; spec = spec->next, i++)
794     {
795       tab_text (t, 0, i, TAB_LEFT, spec->v->name);
796       tab_text (t, 1, i, TAT_PRINTF, "%d", spec->rec);
797       tab_text (t, 2, i, TAT_PRINTF, "%3d-%3d",
798                     spec->fc, spec->lc);
799       tab_text (t, 3, i, TAB_LEFT | TAT_FIX,
800                     fmt_to_string (&spec->input));
801     }
802
803   if (fh != NULL)
804     tab_title (t, 1, ngettext ("Reading %d record from file %s.",
805                                "Reading %d records from file %s.", rec_cnt),
806                rec_cnt, handle_get_filename (fh));
807   else
808     tab_title (t, 1, ngettext ("Reading %d record from the command file.",
809                                "Reading %d records from the command file.",
810                                rec_cnt),
811                rec_cnt);
812   tab_submit (t);
813 }
814 \f
815 /* Free-format parsing. */
816
817 /* Parses variable specifications for DATA LIST FREE and adds
818    them to the linked list with head FIRST and tail LAST.
819    Returns nonzero only if successful. */
820 static int
821 parse_free (struct dls_var_spec **first, struct dls_var_spec **last)
822 {
823   lex_get ();
824   while (token != '.')
825     {
826       struct fmt_spec input, output;
827       char **name;
828       int name_cnt;
829       int width;
830       int i;
831
832       if (!parse_DATA_LIST_vars (&name, &name_cnt, PV_NONE))
833         return 0;
834
835       if (lex_match ('('))
836         {
837           if (!parse_format_specifier (&input, 0)
838               || !check_input_specifier (&input, 1)
839               || !lex_force_match (')')) 
840             {
841               for (i = 0; i < name_cnt; i++)
842                 free (name[i]);
843               free (name);
844               return 0; 
845             }
846           convert_fmt_ItoO (&input, &output);
847         }
848       else
849         {
850           lex_match ('*');
851           input = make_input_format (FMT_F, 8, 0);
852           output = get_format ();
853         }
854
855       if (input.type == FMT_A || input.type == FMT_AHEX)
856         width = input.w;
857       else
858         width = 0;
859       for (i = 0; i < name_cnt; i++)
860         {
861           struct dls_var_spec *spec;
862           struct variable *v;
863
864           v = dict_create_var (default_dict, name[i], width);
865           
866           if (!v)
867             {
868               msg (SE, _("%s is a duplicate variable name."), name[i]);
869               return 0;
870             }
871           v->print = v->write = output;
872
873           if (!case_source_is_complex (vfm_source))
874             v->init = 0;
875
876           spec = xmalloc (sizeof *spec);
877           spec->input = input;
878           spec->v = v;
879           spec->fv = v->fv;
880           str_copy_trunc (spec->name, sizeof spec->name, v->name);
881           append_var_spec (first, last, spec);
882         }
883       for (i = 0; i < name_cnt; i++)
884         free (name[i]);
885       free (name);
886     }
887
888   return lex_end_of_command () == CMD_SUCCESS;
889 }
890
891 /* Displays a table giving information on free-format variable parsing
892    on DATA LIST. */
893 static void
894 dump_free_table (const struct data_list_pgm *dls,
895                  const struct file_handle *fh)
896 {
897   struct tab_table *t;
898   int i;
899   
900   {
901     struct dls_var_spec *spec;
902     for (i = 0, spec = dls->first; spec; spec = spec->next)
903       i++;
904   }
905   
906   t = tab_create (2, i + 1, 0);
907   tab_columns (t, TAB_COL_DOWN, 1);
908   tab_headers (t, 0, 0, 1, 0);
909   tab_text (t, 0, 0, TAB_CENTER | TAT_TITLE, _("Variable"));
910   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Format"));
911   tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 1, i);
912   tab_hline (t, TAL_2, 0, 1, 1);
913   tab_dim (t, tab_natural_dimensions);
914   
915   {
916     struct dls_var_spec *spec;
917     
918     for (i = 1, spec = dls->first; spec; spec = spec->next, i++)
919       {
920         tab_text (t, 0, i, TAB_LEFT, spec->v->name);
921         tab_text (t, 1, i, TAB_LEFT | TAT_FIX, fmt_to_string (&spec->input));
922       }
923   }
924
925   if (fh != NULL)
926     tab_title (t, 1, _("Reading free-form data from file %s."),
927                handle_get_filename (fh));
928   else
929     tab_title (t, 1, _("Reading free-form data from the command file."));
930   
931   tab_submit (t);
932 }
933 \f
934 /* Input procedure. */ 
935
936 /* Extracts a field from the current position in the current
937    record.  Fields can be unquoted or quoted with single- or
938    double-quote characters.  *FIELD is set to the field content.
939    After parsing the field, sets the current position in the
940    record to just past the field and any trailing delimiter.
941    END_BLANK is used internally; it should be initialized by the
942    caller to 0 and left alone afterward.  Returns 0 on failure or
943    a 1-based column number indicating the beginning of the field
944    on success. */
945 static int
946 cut_field (const struct data_list_pgm *dls, struct fixed_string *field,
947            int *end_blank)
948 {
949   struct fixed_string line;
950   char *cp;
951   size_t column_start;
952
953   if (dfm_eof (dls->reader))
954     return 0;
955   if (dls->delim_cnt == 0)
956     dfm_expand_tabs (dls->reader);
957   dfm_get_record (dls->reader, &line);
958
959   cp = ls_c_str (&line);
960   if (dls->delim_cnt == 0) 
961     {
962       /* Skip leading whitespace. */
963       while (cp < ls_end (&line) && isspace ((unsigned char) *cp))
964         cp++;
965       if (cp >= ls_end (&line))
966         return 0;
967       
968       /* Handle actual data, whether quoted or unquoted. */
969       if (*cp == '\'' || *cp == '"')
970         {
971           int quote = *cp;
972
973           field->string = ++cp;
974           while (cp < ls_end (&line) && *cp != quote)
975             cp++;
976           field->length = cp - field->string;
977           if (cp < ls_end (&line))
978             cp++;
979           else
980             msg (SW, _("Quoted string missing terminating `%c'."), quote);
981         }
982       else
983         {
984           field->string = cp;
985           while (cp < ls_end (&line)
986                  && !isspace ((unsigned char) *cp) && *cp != ',')
987             cp++;
988           field->length = cp - field->string;
989         }
990
991       /* Skip trailing whitespace and a single comma if present. */
992       while (cp < ls_end (&line) && isspace ((unsigned char) *cp))
993         cp++;
994       if (cp < ls_end (&line) && *cp == ',')
995         cp++;
996     }
997   else 
998     {
999       if (cp >= ls_end (&line)) 
1000         {
1001           int column = dfm_column_start (dls->reader);
1002                /* A blank line or a line that ends in \t has a
1003              trailing blank field. */
1004           if (column == 1 || (column > 1 && cp[-1] == '\t'))
1005             {
1006               if (*end_blank == 0)
1007                 {
1008                   *end_blank = 1;
1009                   field->string = ls_end (&line);
1010                   field->length = 0;
1011                   dfm_forward_record (dls->reader);
1012                   return column;
1013                 }
1014               else 
1015                 {
1016                   *end_blank = 0;
1017                   return 0;
1018                 }
1019             }
1020           else 
1021             return 0;
1022         }
1023       else 
1024         {
1025           field->string = cp;
1026           while (cp < ls_end (&line)
1027                  && memchr (dls->delims, *cp, dls->delim_cnt) == NULL)
1028             cp++; 
1029           field->length = cp - field->string;
1030           if (cp < ls_end (&line)) 
1031             cp++;
1032         }
1033     }
1034   
1035   dfm_forward_columns (dls->reader, field->string - line.string);
1036   column_start = dfm_column_start (dls->reader);
1037     
1038   dfm_forward_columns (dls->reader, cp - field->string);
1039     
1040   return column_start;
1041 }
1042
1043 typedef int data_list_read_func (const struct data_list_pgm *, struct ccase *);
1044 static data_list_read_func read_from_data_list_fixed;
1045 static data_list_read_func read_from_data_list_free;
1046 static data_list_read_func read_from_data_list_list;
1047
1048 /* Returns the proper function to read the kind of DATA LIST
1049    data specified by DLS. */
1050 static data_list_read_func *
1051 get_data_list_read_func (const struct data_list_pgm *dls) 
1052 {
1053   switch (dls->type)
1054     {
1055     case DLS_FIXED:
1056       return read_from_data_list_fixed;
1057
1058     case DLS_FREE:
1059       return read_from_data_list_free;
1060
1061     case DLS_LIST:
1062       return read_from_data_list_list;
1063
1064     default:
1065       assert (0);
1066       abort ();
1067     }
1068 }
1069
1070 /* Reads a case from the data file into C, parsing it according
1071    to fixed-format syntax rules in DLS.  Returns -1 on success,
1072    -2 at end of file. */
1073 static int
1074 read_from_data_list_fixed (const struct data_list_pgm *dls,
1075                            struct ccase *c)
1076 {
1077   struct dls_var_spec *var_spec = dls->first;
1078   int i;
1079
1080   if (dfm_eof (dls->reader))
1081     return -2;
1082   for (i = 1; i <= dls->rec_cnt; i++)
1083     {
1084       struct fixed_string line;
1085       
1086       if (dfm_eof (dls->reader))
1087         {
1088           /* Note that this can't occur on the first record. */
1089           msg (SW, _("Partial case of %d of %d records discarded."),
1090                i - 1, dls->rec_cnt);
1091           return -2;
1092         }
1093       dfm_expand_tabs (dls->reader);
1094       dfm_get_record (dls->reader, &line);
1095
1096       for (; var_spec && i == var_spec->rec; var_spec = var_spec->next)
1097         {
1098           struct data_in di;
1099
1100           data_in_finite_line (&di, ls_c_str (&line), ls_length (&line),
1101                                var_spec->fc, var_spec->lc);
1102           di.v = case_data_rw (c, var_spec->fv);
1103           di.flags = DI_IMPLIED_DECIMALS;
1104           di.f1 = var_spec->fc;
1105           di.format = var_spec->input;
1106
1107           data_in (&di);
1108         }
1109
1110       dfm_forward_record (dls->reader);
1111     }
1112
1113   return -1;
1114 }
1115
1116 /* Reads a case from the data file into C, parsing it according
1117    to free-format syntax rules in DLS.  Returns -1 on success,
1118    -2 at end of file. */
1119 static int
1120 read_from_data_list_free (const struct data_list_pgm *dls,
1121                           struct ccase *c)
1122 {
1123   struct dls_var_spec *var_spec;
1124   int end_blank = 0;
1125
1126   for (var_spec = dls->first; var_spec; var_spec = var_spec->next)
1127     {
1128       struct fixed_string field;
1129       int column;
1130       
1131       /* Cut out a field and read in a new record if necessary. */
1132       for (;;)
1133         {
1134           column = cut_field (dls, &field, &end_blank);
1135           if (column != 0)
1136             break;
1137
1138           if (!dfm_eof (dls->reader)) 
1139             dfm_forward_record (dls->reader);
1140           if (dfm_eof (dls->reader))
1141             {
1142               if (var_spec != dls->first)
1143                 msg (SW, _("Partial case discarded.  The first variable "
1144                            "missing was %s."), var_spec->name);
1145               return -2;
1146             }
1147         }
1148       
1149       {
1150         struct data_in di;
1151
1152         di.s = ls_c_str (&field);
1153         di.e = ls_end (&field);
1154         di.v = case_data_rw (c, var_spec->fv);
1155         di.flags = 0;
1156         di.f1 = column;
1157         di.format = var_spec->input;
1158         data_in (&di);
1159       }
1160     }
1161   return -1;
1162 }
1163
1164 /* Reads a case from the data file and parses it according to
1165    list-format syntax rules.  Returns -1 on success, -2 at end of
1166    file. */
1167 static int
1168 read_from_data_list_list (const struct data_list_pgm *dls,
1169                           struct ccase *c)
1170 {
1171   struct dls_var_spec *var_spec;
1172   int end_blank = 0;
1173
1174   if (dfm_eof (dls->reader))
1175     return -2;
1176
1177   for (var_spec = dls->first; var_spec; var_spec = var_spec->next)
1178     {
1179       struct fixed_string field;
1180       int column;
1181
1182       /* Cut out a field and check for end-of-line. */
1183       column = cut_field (dls, &field, &end_blank);
1184       if (column == 0)
1185         {
1186           if (get_undefined ())
1187             msg (SW, _("Missing value(s) for all variables from %s onward.  "
1188                        "These will be filled with the system-missing value "
1189                        "or blanks, as appropriate."),
1190                  var_spec->name);
1191           for (; var_spec; var_spec = var_spec->next)
1192             {
1193               int width = get_format_var_width (&var_spec->input);
1194               if (width == 0)
1195                 case_data_rw (c, var_spec->fv)->f = SYSMIS;
1196               else
1197                 memset (case_data_rw (c, var_spec->fv)->s, ' ', width); 
1198             }
1199           break;
1200         }
1201       
1202       {
1203         struct data_in di;
1204
1205         di.s = ls_c_str (&field);
1206         di.e = ls_end (&field);
1207         di.v = case_data_rw (c, var_spec->fv);
1208         di.flags = 0;
1209         di.f1 = column;
1210         di.format = var_spec->input;
1211         data_in (&di);
1212       }
1213     }
1214
1215   dfm_forward_record (dls->reader);
1216   return -1;
1217 }
1218
1219 /* Destroys SPEC. */
1220 static void
1221 destroy_dls_var_spec (struct dls_var_spec *spec) 
1222 {
1223   struct dls_var_spec *next;
1224
1225   while (spec != NULL)
1226     {
1227       next = spec->next;
1228       free (spec);
1229       spec = next;
1230     }
1231 }
1232
1233 /* Destroys DATA LIST transformation PGM. */
1234 static void
1235 data_list_trns_free (struct trns_header *pgm)
1236 {
1237   struct data_list_pgm *dls = (struct data_list_pgm *) pgm;
1238   free (dls->delims);
1239   destroy_dls_var_spec (dls->first);
1240   dfm_close_reader (dls->reader);
1241   free (pgm);
1242 }
1243
1244 /* Handle DATA LIST transformation T, parsing data into C. */
1245 static int
1246 data_list_trns_proc (struct trns_header *t, struct ccase *c,
1247                      int case_num UNUSED)
1248 {
1249   struct data_list_pgm *dls = (struct data_list_pgm *) t;
1250   data_list_read_func *read_func;
1251   int retval;
1252
1253   dfm_push (dls->reader);
1254
1255   read_func = get_data_list_read_func (dls);
1256   retval = read_func (dls, c);
1257
1258   /* Handle end of file. */
1259   if (retval == -2)
1260     {
1261       /* If we already encountered end of file then this is an
1262          error. */
1263       if (dls->eof == 1)
1264         {
1265           msg (SE, _("Attempt to read past end of file."));
1266           err_failure ();
1267           dfm_pop (dls->reader);
1268           return -2;
1269         }
1270
1271       /* Otherwise simply note it. */
1272       dls->eof = 1;
1273     }
1274   else
1275     dls->eof = 0;
1276
1277   /* If there was an END subcommand handle it. */
1278   if (dls->end != NULL) 
1279     {
1280       if (retval == -2)
1281         {
1282           case_data_rw (c, dls->end->fv)->f = 1.0;
1283           retval = -1;
1284         }
1285       else
1286         case_data_rw (c, dls->end->fv)->f = 0.0;
1287     }
1288   
1289   dfm_pop (dls->reader);
1290
1291   return retval;
1292 }
1293 \f
1294 /* Reads all the records from the data file and passes them to
1295    write_case(). */
1296 static void
1297 data_list_source_read (struct case_source *source,
1298                        struct ccase *c,
1299                        write_case_func *write_case, write_case_data wc_data)
1300 {
1301   struct data_list_pgm *dls = source->aux;
1302   data_list_read_func *read_func = get_data_list_read_func (dls);
1303
1304   dfm_push (dls->reader);
1305   while (read_func (dls, c) != -2)
1306     if (!write_case (wc_data))
1307       break;
1308   dfm_pop (dls->reader);
1309 }
1310
1311 /* Destroys the source's internal data. */
1312 static void
1313 data_list_source_destroy (struct case_source *source)
1314 {
1315   data_list_trns_free (source->aux);
1316 }
1317
1318 const struct case_source_class data_list_source_class = 
1319   {
1320     "DATA LIST",
1321     NULL,
1322     data_list_source_read,
1323     data_list_source_destroy,
1324   };
1325 \f
1326 /* REPEATING DATA. */
1327
1328 /* Represents a number or a variable. */
1329 struct rpd_num_or_var
1330   {
1331     int num;                    /* Value, or 0. */
1332     struct variable *var;       /* Variable, if number==0. */
1333   };
1334     
1335 /* REPEATING DATA private data structure. */
1336 struct repeating_data_trns
1337   {
1338     struct trns_header h;
1339     struct dls_var_spec *first, *last;  /* Variable parsing specifications. */
1340     struct dfm_reader *reader;          /* Input file, never NULL. */
1341
1342     struct rpd_num_or_var starts_beg;   /* STARTS=, before the dash. */
1343     struct rpd_num_or_var starts_end;   /* STARTS=, after the dash. */
1344     struct rpd_num_or_var occurs;       /* OCCURS= subcommand. */
1345     struct rpd_num_or_var length;       /* LENGTH= subcommand. */
1346     struct rpd_num_or_var cont_beg;     /* CONTINUED=, before the dash. */
1347     struct rpd_num_or_var cont_end;     /* CONTINUED=, after the dash. */
1348
1349     /* ID subcommand. */
1350     int id_beg, id_end;                 /* Beginning & end columns. */
1351     struct variable *id_var;            /* DATA LIST variable. */
1352     struct fmt_spec id_spec;            /* Input format spec. */
1353     union value *id_value;              /* ID value. */
1354
1355     write_case_func *write_case;
1356     write_case_data wc_data;
1357   };
1358
1359 static trns_free_func repeating_data_trns_free;
1360 static int parse_num_or_var (struct rpd_num_or_var *, const char *);
1361 static int parse_repeating_data (struct dls_var_spec **,
1362                                  struct dls_var_spec **);
1363 static void find_variable_input_spec (struct variable *v,
1364                                       struct fmt_spec *spec);
1365
1366 /* Parses the REPEATING DATA command. */
1367 int
1368 cmd_repeating_data (void)
1369 {
1370   struct repeating_data_trns *rpd;
1371   int table = 1;                /* Print table? */
1372   unsigned seen = 0;            /* Mark subcommands as already seen. */
1373   struct file_handle *const fh = default_handle;
1374   
1375   assert (case_source_is_complex (vfm_source));
1376
1377   rpd = xmalloc (sizeof *rpd);
1378   rpd->reader = dfm_open_reader (default_handle);
1379   rpd->first = rpd->last = NULL;
1380   rpd->starts_beg.num = 0;
1381   rpd->starts_beg.var = NULL;
1382   rpd->starts_end = rpd->occurs = rpd->length = rpd->cont_beg
1383     = rpd->cont_end = rpd->starts_beg;
1384   rpd->id_beg = rpd->id_end = 0;
1385   rpd->id_var = NULL;
1386   rpd->id_value = NULL;
1387
1388   lex_match ('/');
1389   
1390   for (;;)
1391     {
1392       if (lex_match_id ("FILE"))
1393         {
1394           struct file_handle *file;
1395           lex_match ('=');
1396           file = fh_parse ();
1397           if (file == NULL)
1398             goto error;
1399           if (file != fh)
1400             {
1401               msg (SE, _("REPEATING DATA must use the same file as its "
1402                          "corresponding DATA LIST or FILE TYPE."));
1403               goto error;
1404             }
1405         }
1406       else if (lex_match_id ("STARTS"))
1407         {
1408           lex_match ('=');
1409           if (seen & 1)
1410             {
1411               msg (SE, _("%s subcommand given multiple times."),"STARTS");
1412               goto error;
1413             }
1414           seen |= 1;
1415
1416           if (!parse_num_or_var (&rpd->starts_beg, "STARTS beginning column"))
1417             goto error;
1418
1419           lex_negative_to_dash ();
1420           if (lex_match ('-'))
1421             {
1422               if (!parse_num_or_var (&rpd->starts_end, "STARTS ending column"))
1423                 goto error;
1424             } else {
1425               /* Otherwise, rpd->starts_end is left uninitialized.
1426                  This is okay.  We will initialize it later from the
1427                  record length of the file.  We can't do this now
1428                  because we can't be sure that the user has specified
1429                  the file handle yet. */
1430             }
1431
1432           if (rpd->starts_beg.num != 0 && rpd->starts_end.num != 0
1433               && rpd->starts_beg.num > rpd->starts_end.num)
1434             {
1435               msg (SE, _("STARTS beginning column (%d) exceeds "
1436                          "STARTS ending column (%d)."),
1437                    rpd->starts_beg.num, rpd->starts_end.num);
1438               goto error;
1439             }
1440         }
1441       else if (lex_match_id ("OCCURS"))
1442         {
1443           lex_match ('=');
1444           if (seen & 2)
1445             {
1446               msg (SE, _("%s subcommand given multiple times."),"OCCURS");
1447               goto error;
1448             }
1449           seen |= 2;
1450
1451           if (!parse_num_or_var (&rpd->occurs, "OCCURS"))
1452             goto error;
1453         }
1454       else if (lex_match_id ("LENGTH"))
1455         {
1456           lex_match ('=');
1457           if (seen & 4)
1458             {
1459               msg (SE, _("%s subcommand given multiple times."),"LENGTH");
1460               goto error;
1461             }
1462           seen |= 4;
1463
1464           if (!parse_num_or_var (&rpd->length, "LENGTH"))
1465             goto error;
1466         }
1467       else if (lex_match_id ("CONTINUED"))
1468         {
1469           lex_match ('=');
1470           if (seen & 8)
1471             {
1472               msg (SE, _("%s subcommand given multiple times."),"CONTINUED");
1473               goto error;
1474             }
1475           seen |= 8;
1476
1477           if (!lex_match ('/'))
1478             {
1479               if (!parse_num_or_var (&rpd->cont_beg, "CONTINUED beginning column"))
1480                 goto error;
1481
1482               lex_negative_to_dash ();
1483               if (lex_match ('-')
1484                   && !parse_num_or_var (&rpd->cont_end,
1485                                         "CONTINUED ending column"))
1486                 goto error;
1487           
1488               if (rpd->cont_beg.num != 0 && rpd->cont_end.num != 0
1489                   && rpd->cont_beg.num > rpd->cont_end.num)
1490                 {
1491                   msg (SE, _("CONTINUED beginning column (%d) exceeds "
1492                              "CONTINUED ending column (%d)."),
1493                        rpd->cont_beg.num, rpd->cont_end.num);
1494                   goto error;
1495                 }
1496             }
1497           else
1498             rpd->cont_beg.num = 1;
1499         }
1500       else if (lex_match_id ("ID"))
1501         {
1502           lex_match ('=');
1503           if (seen & 16)
1504             {
1505               msg (SE, _("%s subcommand given multiple times."),"ID");
1506               goto error;
1507             }
1508           seen |= 16;
1509           
1510           if (!lex_force_int ())
1511             goto error;
1512           if (lex_integer () < 1)
1513             {
1514               msg (SE, _("ID beginning column (%ld) must be positive."),
1515                    lex_integer ());
1516               goto error;
1517             }
1518           rpd->id_beg = lex_integer ();
1519           
1520           lex_get ();
1521           lex_negative_to_dash ();
1522           
1523           if (lex_match ('-'))
1524             {
1525               if (!lex_force_int ())
1526                 goto error;
1527               if (lex_integer () < 1)
1528                 {
1529                   msg (SE, _("ID ending column (%ld) must be positive."),
1530                        lex_integer ());
1531                   goto error;
1532                 }
1533               if (lex_integer () < rpd->id_end)
1534                 {
1535                   msg (SE, _("ID ending column (%ld) cannot be less than "
1536                              "ID beginning column (%d)."),
1537                        lex_integer (), rpd->id_beg);
1538                   goto error;
1539                 }
1540               
1541               rpd->id_end = lex_integer ();
1542               lex_get ();
1543             }
1544           else rpd->id_end = rpd->id_beg;
1545
1546           if (!lex_force_match ('='))
1547             goto error;
1548           rpd->id_var = parse_variable ();
1549           if (rpd->id_var == NULL)
1550             goto error;
1551
1552           find_variable_input_spec (rpd->id_var, &rpd->id_spec);
1553           rpd->id_value = xmalloc (sizeof *rpd->id_value * rpd->id_var->nv);
1554         }
1555       else if (lex_match_id ("TABLE"))
1556         table = 1;
1557       else if (lex_match_id ("NOTABLE"))
1558         table = 0;
1559       else if (lex_match_id ("DATA"))
1560         break;
1561       else
1562         {
1563           lex_error (NULL);
1564           goto error;
1565         }
1566
1567       if (!lex_force_match ('/'))
1568         goto error;
1569     }
1570
1571   /* Comes here when DATA specification encountered. */
1572   if ((seen & (1 | 2)) != (1 | 2))
1573     {
1574       if ((seen & 1) == 0)
1575         msg (SE, _("Missing required specification STARTS."));
1576       if ((seen & 2) == 0)
1577         msg (SE, _("Missing required specification OCCURS."));
1578       goto error;
1579     }
1580
1581   /* Enforce ID restriction. */
1582   if ((seen & 16) && !(seen & 8))
1583     {
1584       msg (SE, _("ID specified without CONTINUED."));
1585       goto error;
1586     }
1587
1588   /* Calculate starts_end, cont_end if necessary. */
1589   if (rpd->starts_end.num == 0 && rpd->starts_end.var == NULL)
1590     rpd->starts_end.num = handle_get_record_width (fh);
1591   if (rpd->cont_end.num == 0 && rpd->cont_end.var == NULL)
1592     rpd->cont_end.num = handle_get_record_width (fh);
1593       
1594   /* Calculate length if possible. */
1595   if ((seen & 4) == 0)
1596     {
1597       struct dls_var_spec *iter;
1598       
1599       for (iter = rpd->first; iter; iter = iter->next)
1600         {
1601           if (iter->lc > rpd->length.num)
1602             rpd->length.num = iter->lc;
1603         }
1604       assert (rpd->length.num != 0);
1605     }
1606   
1607   lex_match ('=');
1608   if (!parse_repeating_data (&rpd->first, &rpd->last))
1609     goto error;
1610
1611   if (table)
1612     dump_fixed_table (rpd->first, fh, rpd->last->rec);
1613
1614   {
1615     struct repeating_data_trns *new_trns;
1616
1617     rpd->h.proc = repeating_data_trns_proc;
1618     rpd->h.free = repeating_data_trns_free;
1619
1620     new_trns = xmalloc (sizeof *new_trns);
1621     memcpy (new_trns, &rpd, sizeof *new_trns);
1622     add_transformation ((struct trns_header *) new_trns);
1623   }
1624
1625   return lex_end_of_command ();
1626
1627  error:
1628   destroy_dls_var_spec (rpd->first);
1629   free (rpd->id_value);
1630   return CMD_FAILURE;
1631 }
1632
1633 /* Finds the input format specification for variable V and puts
1634    it in SPEC.  Because of the way that DATA LIST is structured,
1635    this is nontrivial. */
1636 static void 
1637 find_variable_input_spec (struct variable *v, struct fmt_spec *spec)
1638 {
1639   int i;
1640   
1641   for (i = 0; i < n_trns; i++)
1642     {
1643       struct data_list_pgm *pgm = (struct data_list_pgm *) t_trns[i];
1644       
1645       if (pgm->h.proc == data_list_trns_proc)
1646         {
1647           struct dls_var_spec *iter;
1648
1649           for (iter = pgm->first; iter; iter = iter->next)
1650             if (iter->v == v)
1651               {
1652                 *spec = iter->input;
1653                 return;
1654               }
1655         }
1656     }
1657   
1658   assert (0);
1659 }
1660
1661 /* Parses a number or a variable name from the syntax file and puts
1662    the results in VALUE.  Ensures that the number is at least 1; else
1663    emits an error based on MESSAGE.  Returns nonzero only if
1664    successful. */
1665 static int
1666 parse_num_or_var (struct rpd_num_or_var *value, const char *message)
1667 {
1668   if (token == T_ID)
1669     {
1670       value->num = 0;
1671       value->var = parse_variable ();
1672       if (value->var == NULL)
1673         return 0;
1674       if (value->var->type == ALPHA)
1675         {
1676           msg (SE, _("String variable not allowed here."));
1677           return 0;
1678         }
1679     }
1680   else if (lex_is_integer ())
1681     {
1682       value->num = lex_integer ();
1683       
1684       if (value->num < 1)
1685         {
1686           msg (SE, _("%s (%d) must be at least 1."), message, value->num);
1687           return 0;
1688         }
1689       
1690       lex_get ();
1691     } else {
1692       msg (SE, _("Variable or integer expected for %s."), message);
1693       return 0;
1694     }
1695   return 1;
1696 }
1697
1698 /* Parses data specifications for repeating data groups, adding
1699    them to the linked list with head FIRST and tail LAST.
1700    Returns nonzero only if successful.  */
1701 static int
1702 parse_repeating_data (struct dls_var_spec **first, struct dls_var_spec **last)
1703 {
1704   struct fixed_parsing_state fx;
1705   int i;
1706
1707   fx.recno = 0;
1708   fx.sc = 1;
1709
1710   while (token != '.')
1711     {
1712       if (!parse_DATA_LIST_vars (&fx.name, &fx.name_cnt, PV_NONE))
1713         return 0;
1714
1715       if (lex_is_number ())
1716         {
1717           if (!fixed_parse_compatible (&fx, first, last))
1718             goto fail;
1719         }
1720       else if (token == '(')
1721         {
1722           if (!fixed_parse_fortran (&fx, first, last))
1723             goto fail;
1724         }
1725       else
1726         {
1727           msg (SE, _("SPSS-like or FORTRAN-like format "
1728                      "specification expected after variable names."));
1729           goto fail;
1730         }
1731
1732       for (i = 0; i < fx.name_cnt; i++)
1733         free (fx.name[i]);
1734       free (fx.name);
1735     }
1736   
1737   return 1;
1738
1739  fail:
1740   for (i = 0; i < fx.name_cnt; i++)
1741     free (fx.name[i]);
1742   free (fx.name);
1743   return 0;
1744 }
1745
1746 /* Obtains the real value for rpd_num_or_var N in case C and returns
1747    it.  The valid range is nonnegative numbers, but numbers outside
1748    this range can be returned and should be handled by the caller as
1749    invalid. */
1750 static int
1751 realize_value (struct rpd_num_or_var *n, struct ccase *c)
1752 {
1753   if (n->num > 0)
1754     return n->num;
1755   
1756   assert (n->num == 0);
1757   if (n->var != NULL)
1758     {
1759       double v = case_num (c, n->var->fv);
1760
1761       if (v == SYSMIS || v <= INT_MIN || v >= INT_MAX)
1762         return -1;
1763       else
1764         return v;
1765     }
1766   else
1767     return 0;
1768 }
1769
1770 /* Parameter record passed to rpd_parse_record(). */
1771 struct rpd_parse_info 
1772   {
1773     struct repeating_data_trns *trns;  /* REPEATING DATA transformation. */
1774     const char *line;   /* Line being parsed. */
1775     size_t len;         /* Line length. */
1776     int beg, end;       /* First and last column of first occurrence. */
1777     int ofs;            /* Column offset between repeated occurrences. */
1778     struct ccase *c;    /* Case to fill in. */
1779     int verify_id;      /* Zero to initialize ID, nonzero to verify it. */
1780     int max_occurs;     /* Max number of occurrences to parse. */
1781   };
1782
1783 /* Parses one record of repeated data and outputs corresponding
1784    cases.  Returns number of occurrences parsed up to the
1785    maximum specified in INFO. */
1786 static int
1787 rpd_parse_record (const struct rpd_parse_info *info)
1788 {
1789   struct repeating_data_trns *t = info->trns;
1790   int cur = info->beg;
1791   int occurrences;
1792
1793   /* Handle record ID values. */
1794   if (t->id_beg != 0)
1795     {
1796       union value id_temp[MAX_ELEMS_PER_VALUE];
1797       
1798       /* Parse record ID into V. */
1799       {
1800         struct data_in di;
1801
1802         data_in_finite_line (&di, info->line, info->len, t->id_beg, t->id_end);
1803         di.v = info->verify_id ? id_temp : t->id_value;
1804         di.flags = 0;
1805         di.f1 = t->id_beg;
1806         di.format = t->id_spec;
1807
1808         if (!data_in (&di))
1809           return 0;
1810       }
1811
1812       if (info->verify_id
1813           && compare_values (id_temp, t->id_value, t->id_var->width) != 0)
1814         {
1815           char expected_str [MAX_FORMATTED_LEN + 1];
1816           char actual_str [MAX_FORMATTED_LEN + 1];
1817
1818           data_out (expected_str, &t->id_var->print, t->id_value);
1819           expected_str[t->id_var->print.w] = '\0';
1820
1821           data_out (actual_str, &t->id_var->print, id_temp);
1822           actual_str[t->id_var->print.w] = '\0';
1823             
1824           tmsg (SE, RPD_ERR, 
1825                 _("Encountered mismatched record ID \"%s\" expecting \"%s\"."),
1826                 actual_str, expected_str);
1827
1828           return 0;
1829         }
1830     }
1831
1832   /* Iterate over the set of expected occurrences and record each of
1833      them as a separate case.  FIXME: We need to execute any
1834      transformations that follow the current one. */
1835   {
1836     int warned = 0;
1837
1838     for (occurrences = 0; occurrences < info->max_occurs; )
1839       {
1840         if (cur + info->ofs > info->end + 1)
1841           break;
1842         occurrences++;
1843
1844         {
1845           struct dls_var_spec *var_spec = t->first;
1846         
1847           for (; var_spec; var_spec = var_spec->next)
1848             {
1849               int fc = var_spec->fc - 1 + cur;
1850               int lc = var_spec->lc - 1 + cur;
1851
1852               if (fc > info->len && !warned && var_spec->input.type != FMT_A)
1853                 {
1854                   warned = 1;
1855
1856                   tmsg (SW, RPD_ERR,
1857                         _("Variable %s starting in column %d extends "
1858                           "beyond physical record length of %d."),
1859                         var_spec->v->name, fc, info->len);
1860                 }
1861               
1862               {
1863                 struct data_in di;
1864
1865                 data_in_finite_line (&di, info->line, info->len, fc, lc);
1866                 di.v = case_data_rw (info->c, var_spec->fv);
1867                 di.flags = 0;
1868                 di.f1 = fc + 1;
1869                 di.format = var_spec->input;
1870
1871                 if (!data_in (&di))
1872                   return 0;
1873               }
1874             }
1875         }
1876
1877         cur += info->ofs;
1878
1879         if (!t->write_case (t->wc_data))
1880           return 0;
1881       }
1882   }
1883
1884   return occurrences;
1885 }
1886
1887 /* Reads one set of repetitions of the elements in the REPEATING
1888    DATA structure.  Returns -1 on success, -2 on end of file or
1889    on failure. */
1890 int
1891 repeating_data_trns_proc (struct trns_header *trns, struct ccase *c,
1892                           int case_num UNUSED)
1893 {
1894   struct repeating_data_trns *t = (struct repeating_data_trns *) trns;
1895     
1896   struct fixed_string line;       /* Current record. */
1897
1898   int starts_beg;       /* Starting column. */
1899   int starts_end;       /* Ending column. */
1900   int occurs;           /* Number of repetitions. */
1901   int length;           /* Length of each occurrence. */
1902   int cont_beg;         /* Starting column for continuation lines. */
1903   int cont_end;         /* Ending column for continuation lines. */
1904
1905   int occurs_left;      /* Number of occurrences remaining. */
1906
1907   int code;             /* Return value from rpd_parse_record(). */
1908     
1909   int skip_first_record = 0;
1910     
1911   dfm_push (t->reader);
1912   
1913   /* Read the current record. */
1914   dfm_reread_record (t->reader, 1);
1915   dfm_expand_tabs (t->reader);
1916   if (dfm_eof (t->reader))
1917     return -2;
1918   dfm_get_record (t->reader, &line);
1919   dfm_forward_record (t->reader);
1920
1921   /* Calculate occurs, length. */
1922   occurs_left = occurs = realize_value (&t->occurs, c);
1923   if (occurs <= 0)
1924     {
1925       tmsg (SE, RPD_ERR, _("Invalid value %d for OCCURS."), occurs);
1926       return -3;
1927     }
1928   starts_beg = realize_value (&t->starts_beg, c);
1929   if (starts_beg <= 0)
1930     {
1931       tmsg (SE, RPD_ERR, _("Beginning column for STARTS (%d) must be "
1932                            "at least 1."),
1933             starts_beg);
1934       return -3;
1935     }
1936   starts_end = realize_value (&t->starts_end, c);
1937   if (starts_end < starts_beg)
1938     {
1939       tmsg (SE, RPD_ERR, _("Ending column for STARTS (%d) is less than "
1940                            "beginning column (%d)."),
1941             starts_end, starts_beg);
1942       skip_first_record = 1;
1943     }
1944   length = realize_value (&t->length, c);
1945   if (length < 0)
1946     {
1947       tmsg (SE, RPD_ERR, _("Invalid value %d for LENGTH."), length);
1948       length = 1;
1949       occurs = occurs_left = 1;
1950     }
1951   cont_beg = realize_value (&t->cont_beg, c);
1952   if (cont_beg < 0)
1953     {
1954       tmsg (SE, RPD_ERR, _("Beginning column for CONTINUED (%d) must be "
1955                            "at least 1."),
1956             cont_beg);
1957       return -2;
1958     }
1959   cont_end = realize_value (&t->cont_end, c);
1960   if (cont_end < cont_beg)
1961     {
1962       tmsg (SE, RPD_ERR, _("Ending column for CONTINUED (%d) is less than "
1963                            "beginning column (%d)."),
1964             cont_end, cont_beg);
1965       return -2;
1966     }
1967
1968   /* Parse the first record. */
1969   if (!skip_first_record)
1970     {
1971       struct rpd_parse_info info;
1972       info.trns = t;
1973       info.line = ls_c_str (&line);
1974       info.len = ls_length (&line);
1975       info.beg = starts_beg;
1976       info.end = starts_end;
1977       info.ofs = length;
1978       info.c = c;
1979       info.verify_id = 0;
1980       info.max_occurs = occurs_left;
1981       code = rpd_parse_record (&info);
1982       if (!code)
1983         return -2;
1984       occurs_left -= code;
1985     }
1986   else if (cont_beg == 0)
1987     return -3;
1988
1989   /* Make sure, if some occurrences are left, that we have
1990      continuation records. */
1991   if (occurs_left > 0 && cont_beg == 0)
1992     {
1993       tmsg (SE, RPD_ERR,
1994             _("Number of repetitions specified on OCCURS (%d) "
1995               "exceed number of repetitions available in "
1996               "space on STARTS (%d), and CONTINUED not specified."),
1997             occurs, (starts_end - starts_beg + 1) / length);
1998       return -2;
1999     }
2000
2001   /* Go on to additional records. */
2002   while (occurs_left != 0)
2003     {
2004       struct rpd_parse_info info;
2005
2006       assert (occurs_left >= 0);
2007
2008       /* Read in another record. */
2009       if (dfm_eof (t->reader))
2010         {
2011           tmsg (SE, RPD_ERR,
2012                 _("Unexpected end of file with %d repetitions "
2013                   "remaining out of %d."),
2014                 occurs_left, occurs);
2015           return -2;
2016         }
2017       dfm_expand_tabs (t->reader);
2018       dfm_get_record (t->reader, &line);
2019       dfm_forward_record (t->reader);
2020
2021       /* Parse this record. */
2022       info.trns = t;
2023       info.line = ls_c_str (&line);
2024       info.len = ls_length (&line);
2025       info.beg = cont_beg;
2026       info.end = cont_end;
2027       info.ofs = length;
2028       info.c = c;
2029       info.verify_id = 1;
2030       info.max_occurs = occurs_left;
2031       code = rpd_parse_record (&info);;
2032       if (!code)
2033         return -2;
2034       occurs_left -= code;
2035     }
2036     
2037   dfm_pop (t->reader);
2038
2039   /* FIXME: This is a kluge until we've implemented multiplexing of
2040      transformations. */
2041   return -3;
2042 }
2043
2044 /* Frees a REPEATING DATA transformation. */
2045 void
2046 repeating_data_trns_free (struct trns_header *rpd_) 
2047 {
2048   struct repeating_data_trns *rpd = (struct repeating_data_trns *) rpd_;
2049
2050   destroy_dls_var_spec (rpd->first);
2051   dfm_close_reader (rpd->reader);
2052   free (rpd->id_value);
2053 }
2054
2055 /* Lets repeating_data_trns_proc() know how to write the cases
2056    that it composes.  Not elegant. */
2057 void
2058 repeating_data_set_write_case (struct trns_header *trns,
2059                                write_case_func *write_case,
2060                                write_case_data wc_data) 
2061 {
2062   struct repeating_data_trns *t = (struct repeating_data_trns *) trns;
2063
2064   assert (trns->proc == repeating_data_trns_proc);
2065   t->write_case = write_case;
2066   t->wc_data = wc_data;
2067 }