eaa19532eaef4b80ecf2921dafaaa3b0efde03e0
[pspp-builds.git] / src / inpt-pgm.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 "error.h"
22 #include <float.h>
23 #include <stdlib.h>
24 #include "alloc.h"
25 #include "case.h"
26 #include "command.h"
27 #include "data-list.h"
28 #include "dfm-read.h"
29 #include "dictionary.h"
30 #include "error.h"
31 #include "expressions/public.h"
32 #include "file-handle.h"
33 #include "lexer.h"
34 #include "misc.h"
35 #include "str.h"
36 #include "var.h"
37 #include "vfm.h"
38
39 #include "gettext.h"
40 #define _(msgid) gettext (msgid)
41
42 #include "debug-print.h"
43
44 /* Indicates how a `union value' should be initialized. */
45 enum value_init_type
46   {
47     INP_NUMERIC = 01,           /* Numeric. */
48     INP_STRING = 0,             /* String. */
49     
50     INP_INIT_ONCE = 02,         /* Initialize only once. */
51     INP_REINIT = 0,             /* Reinitialize for each iteration. */
52   };
53
54 struct input_program_pgm 
55   {
56     enum value_init_type *init; /* How to initialize each `union value'. */
57     size_t init_cnt;            /* Number of elements in inp_init. */
58     size_t case_size;           /* Size of case in bytes. */
59   };
60
61 static trns_proc_func end_case_trns_proc, reread_trns_proc, end_file_trns_proc;
62 static trns_free_func reread_trns_free;
63
64 int
65 cmd_input_program (void)
66 {
67   discard_variables ();
68
69   /* FIXME: we shouldn't do this here, but I'm afraid that other
70      code will check the class of vfm_source. */
71   vfm_source = create_case_source (&input_program_source_class, NULL);
72
73   return lex_end_of_command ();
74 }
75
76 int
77 cmd_end_input_program (void)
78 {
79   struct input_program_pgm *inp;
80   size_t i;
81
82   if (!case_source_is_class (vfm_source, &input_program_source_class))
83     {
84       msg (SE, _("No matching INPUT PROGRAM command."));
85       return CMD_FAILURE;
86     }
87   
88   if (dict_get_next_value_idx (default_dict) == 0)
89     msg (SW, _("No data-input or transformation commands specified "
90          "between INPUT PROGRAM and END INPUT PROGRAM."));
91
92   /* Mark the boundary between INPUT PROGRAM transformations and
93      ordinary transformations. */
94   f_trns = n_trns;
95
96   /* Figure out how to initialize each input case. */
97   inp = xmalloc (sizeof *inp);
98   inp->init_cnt = dict_get_next_value_idx (default_dict);
99   inp->init = xnmalloc (inp->init_cnt, sizeof *inp->init);
100   for (i = 0; i < inp->init_cnt; i++)
101     inp->init[i] = -1;
102   for (i = 0; i < dict_get_var_cnt (default_dict); i++)
103     {
104       struct variable *var = dict_get_var (default_dict, i);
105       enum value_init_type value_init;
106       size_t j;
107       
108       value_init = var->type == NUMERIC ? INP_NUMERIC : INP_STRING;
109       value_init |= var->reinit ? INP_REINIT : INP_INIT_ONCE;
110
111       for (j = 0; j < var->nv; j++)
112         inp->init[j + var->fv] = value_init;
113     }
114   for (i = 0; i < inp->init_cnt; i++)
115     assert (inp->init[i] != -1);
116   inp->case_size = dict_get_case_size (default_dict);
117
118   /* Put inp into vfm_source for later use. */
119   vfm_source->aux = inp;
120
121   return lex_end_of_command ();
122 }
123
124 /* Initializes case C.  Called before the first case is read. */
125 static void
126 init_case (const struct input_program_pgm *inp, struct ccase *c)
127 {
128   size_t i;
129
130   for (i = 0; i < inp->init_cnt; i++)
131     switch (inp->init[i]) 
132       {
133       case INP_NUMERIC | INP_INIT_ONCE:
134         case_data_rw (c, i)->f = 0.0;
135         break;
136       case INP_NUMERIC | INP_REINIT:
137         case_data_rw (c, i)->f = SYSMIS;
138         break;
139       case INP_STRING | INP_INIT_ONCE:
140       case INP_STRING | INP_REINIT:
141         memset (case_data_rw (c, i)->s, ' ', sizeof case_data_rw (c, i)->s);
142         break;
143       default:
144         assert (0);
145       }
146 }
147
148 /* Clears case C.  Called between reading successive records. */
149 static void
150 clear_case (const struct input_program_pgm *inp, struct ccase *c)
151 {
152   size_t i;
153
154   for (i = 0; i < inp->init_cnt; i++)
155     switch (inp->init[i]) 
156       {
157       case INP_NUMERIC | INP_INIT_ONCE:
158         break;
159       case INP_NUMERIC | INP_REINIT:
160         case_data_rw (c, i)->f = SYSMIS;
161         break;
162       case INP_STRING | INP_INIT_ONCE:
163         break;
164       case INP_STRING | INP_REINIT:
165         memset (case_data_rw (c, i)->s, ' ', sizeof case_data_rw (c, i)->s);
166         break;
167       default:
168         assert (0);
169       }
170 }
171
172 /* Executes each transformation in turn on a `blank' case.  When a
173    transformation fails, returning -2, then that's the end of the
174    file.  -1 means go on to the next transformation.  Otherwise the
175    return value is the index of the transformation to go to next. */
176 static void
177 input_program_source_read (struct case_source *source,
178                            struct ccase *c,
179                            write_case_func *write_case,
180                            write_case_data wc_data)
181 {
182   struct input_program_pgm *inp = source->aux;
183   size_t i;
184
185   /* Nonzero if there were any END CASE commands in the set of
186      transformations.  If so, we don't automatically write out
187      cases. */
188   int end_case = 0;
189
190   /* FIXME?  This is the number of cases sent out of the input
191      program, not the number of cases written to the procedure.
192      The difference should only show up in $CASENUM in COMPUTE.
193      We should check behavior against SPSS. */
194   int cases_written = 0;
195
196   assert (inp != NULL);
197
198   /* Figure end_case. */
199   for (i = 0; i < f_trns; i++)
200     if (t_trns[i].proc == end_case_trns_proc)
201       end_case = 1;
202
203   /* FIXME: This is an ugly kluge. */
204   for (i = 0; i < f_trns; i++)
205     if (t_trns[i].proc == repeating_data_trns_proc)
206       repeating_data_set_write_case (t_trns[i].private, write_case, wc_data);
207
208   init_case (inp, c);
209   for (;;)
210     {
211       /* Perform transformations on `blank' case. */
212       for (i = 0; i < f_trns; )
213         {
214           int code;     /* Return value of last-called transformation. */
215
216           if (t_trns[i].proc == end_case_trns_proc) 
217             {
218               cases_written++;
219               if (!write_case (wc_data))
220                 goto done;
221               clear_case (inp, c);
222               i++;
223               continue;
224             }
225
226           code = t_trns[i].proc (t_trns[i].private, c, cases_written + 1);
227           switch (code)
228             {
229             case -1:
230               i++;
231               break;
232             case -2:
233               goto done;
234             case -3:
235               goto next_case;
236             default:
237               i = code;
238               break;
239             }
240         }
241
242       /* Write the case if appropriate. */
243       if (!end_case) 
244         {
245           cases_written++;
246           if (!write_case (wc_data))
247             break;
248         }
249
250       /* Blank out the case for the next iteration. */
251     next_case:
252       clear_case (inp, c);
253     }
254  done: ;
255 }
256
257 /* Destroys an INPUT PROGRAM source. */
258 static void
259 input_program_source_destroy (struct case_source *source)
260 {
261   struct input_program_pgm *inp = source->aux;
262
263   cancel_transformations ();
264
265   if (inp != NULL) 
266     {
267       free (inp->init);
268       free (inp);
269     }
270 }
271
272 const struct case_source_class input_program_source_class =
273   {
274     "INPUT PROGRAM",
275     NULL,
276     input_program_source_read,
277     input_program_source_destroy,
278   };
279 \f
280 int
281 cmd_end_case (void)
282 {
283   if (!case_source_is_class (vfm_source, &input_program_source_class))
284     {
285       msg (SE, _("This command may only be executed between INPUT PROGRAM "
286                  "and END INPUT PROGRAM."));
287       return CMD_FAILURE;
288     }
289
290   add_transformation (end_case_trns_proc, NULL, NULL);
291
292   return lex_end_of_command ();
293 }
294
295 /* Should never be called, because this is handled in
296    input_program_source_read(). */
297 int
298 end_case_trns_proc (void *trns_ UNUSED, struct ccase *c UNUSED,
299                     int case_num UNUSED)
300 {
301   assert (0);
302   abort ();
303 }
304
305 /* REREAD transformation. */
306 struct reread_trns
307   {
308     struct dfm_reader *reader;  /* File to move file pointer back on. */
309     struct expression *column;  /* Column to reset file pointer to. */
310   };
311
312 /* Parses REREAD command. */
313 int
314 cmd_reread (void)
315 {
316   struct file_handle *fh;       /* File to be re-read. */
317   struct expression *e;         /* Expression for column to set. */
318   struct reread_trns *t;        /* Created transformation. */
319
320   fh = default_handle;
321   e = NULL;
322   while (token != '.')
323     {
324       if (lex_match_id ("COLUMN"))
325         {
326           lex_match ('=');
327           
328           if (e)
329             {
330               msg (SE, _("COLUMN subcommand multiply specified."));
331               expr_free (e);
332               return CMD_FAILURE;
333             }
334           
335           e = expr_parse (default_dict, EXPR_NUMBER);
336           if (!e)
337             return CMD_FAILURE;
338         }
339       else if (lex_match_id ("FILE"))
340         {
341           lex_match ('=');
342           fh = fh_parse ();
343           if (fh == NULL)
344             {
345               expr_free (e);
346               return CMD_FAILURE;
347             }
348           lex_get ();
349         }
350       else
351         {
352           lex_error (NULL);
353           expr_free (e);
354         }
355     }
356
357   t = xmalloc (sizeof *t);
358   t->reader = dfm_open_reader (fh);
359   t->column = e;
360   add_transformation (reread_trns_proc, reread_trns_free, t);
361
362   return CMD_SUCCESS;
363 }
364
365 /* Executes a REREAD transformation. */
366 static int
367 reread_trns_proc (void *t_, struct ccase *c, int case_num)
368 {
369   struct reread_trns *t = t_;
370
371   if (t->column == NULL)
372     dfm_reread_record (t->reader, 1);
373   else
374     {
375       double column = expr_evaluate_num (t->column, c, case_num);
376       if (!finite (column) || column < 1)
377         {
378           msg (SE, _("REREAD: Column numbers must be positive finite "
379                "numbers.  Column set to 1."));
380           dfm_reread_record (t->reader, 1);
381         }
382       else
383         dfm_reread_record (t->reader, column);
384     }
385   return -1;
386 }
387
388 /* Frees a REREAD transformation. */
389 static void
390 reread_trns_free (void *t_)
391 {
392   struct reread_trns *t = t_;
393   expr_free (t->column);
394   dfm_close_reader (t->reader);
395 }
396
397 /* Parses END FILE command. */
398 int
399 cmd_end_file (void)
400 {
401   if (!case_source_is_class (vfm_source, &input_program_source_class))
402     {
403       msg (SE, _("This command may only be executed between INPUT PROGRAM "
404                  "and END INPUT PROGRAM."));
405       return CMD_FAILURE;
406     }
407
408   add_transformation (end_file_trns_proc, NULL, NULL);
409
410   return lex_end_of_command ();
411 }
412
413 /* Executes an END FILE transformation. */
414 static int
415 end_file_trns_proc (void *trns_ UNUSED, struct ccase *c UNUSED,
416                     int case_num UNUSED)
417 {
418   return -2;
419 }