1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "data/case.h"
23 #include "data/caseinit.h"
24 #include "data/casereader-provider.h"
25 #include "data/dataset.h"
26 #include "data/dictionary.h"
27 #include "data/session.h"
28 #include "data/transformations.h"
29 #include "data/variable.h"
30 #include "language/command.h"
31 #include "language/data-io/data-reader.h"
32 #include "language/data-io/file-handle.h"
33 #include "language/data-io/inpt-pgm.h"
34 #include "language/expressions/public.h"
35 #include "language/lexer/lexer.h"
36 #include "libpspp/assertion.h"
37 #include "libpspp/compiler.h"
38 #include "libpspp/message.h"
39 #include "libpspp/misc.h"
40 #include "libpspp/str.h"
42 #include "gl/xalloc.h"
45 #define _(msgid) gettext (msgid)
47 /* Indicates how a `union value' should be initialized. */
48 struct input_program_pgm
50 struct session *session;
53 struct trns_chain xforms;
57 casenumber case_nr; /* Incremented by END CASE transformation. */
59 struct caseinit *init;
60 struct caseproto *proto;
63 static void destroy_input_program (struct input_program_pgm *);
64 static const struct trns_class end_case_trns_class;
65 static const struct trns_class reread_trns_class;
66 static const struct trns_class end_file_trns_class;
68 static const struct casereader_class input_program_casereader_class;
70 static bool inside_input_program;
71 static bool saw_END_CASE;
72 static bool saw_END_FILE;
73 static bool saw_DATA_LIST;
75 /* Returns true if we're parsing the inside of a INPUT
76 PROGRAM...END INPUT PROGRAM construct, false otherwise. */
78 in_input_program (void)
80 return inside_input_program;
89 /* Emits an END CASE transformation for INP. */
91 emit_END_CASE (struct dataset *ds)
93 add_transformation (ds, &end_case_trns_class, xzalloc (sizeof (bool)));
97 cmd_input_program (struct lexer *lexer, struct dataset *ds)
99 if (!lex_match (lexer, T_ENDCMD))
100 return lex_end_of_command (lexer);
102 struct session *session = session_create (dataset_session (ds));
103 struct dataset *inp_ds = dataset_create (session, "INPUT PROGRAM");
105 struct input_program_pgm *inp = xmalloc (sizeof *inp);
106 *inp = (struct input_program_pgm) { .session = session, .ds = inp_ds };
108 proc_push_transformations (inp->ds);
109 inside_input_program = true;
110 saw_END_CASE = saw_END_FILE = saw_DATA_LIST = false;
111 while (!lex_match_phrase (lexer, "END INPUT PROGRAM"))
113 enum cmd_result result;
115 result = cmd_parse_in_state (lexer, inp->ds, CMD_STATE_INPUT_PROGRAM);
116 if (result == CMD_EOF
117 || result == CMD_FINISH
118 || result == CMD_CASCADING_FAILURE)
120 proc_pop_transformations (inp->ds, &inp->xforms);
122 if (result == CMD_EOF)
123 msg (SE, _("Unexpected end-of-file within %s."), "INPUT PROGRAM");
124 inside_input_program = false;
125 destroy_input_program (inp);
130 emit_END_CASE (inp->ds);
131 inside_input_program = false;
132 proc_pop_transformations (inp->ds, &inp->xforms);
134 if (!saw_DATA_LIST && !saw_END_FILE)
136 msg (SE, _("Input program must contain %s or %s."), "DATA LIST", "END FILE");
137 destroy_input_program (inp);
140 if (dict_get_next_value_idx (dataset_dict (inp->ds)) == 0)
142 msg (SE, _("Input program did not create any variables."));
143 destroy_input_program (inp);
147 /* Figure out how to initialize each input case. */
148 inp->init = caseinit_create ();
149 caseinit_mark_for_init (inp->init, dataset_dict (inp->ds));
150 inp->proto = caseproto_ref (dict_get_proto (dataset_dict (inp->ds)));
152 dataset_set_dict (ds, dict_clone (dataset_dict (inp->ds)));
154 ds, casereader_create_sequential (NULL, inp->proto, CASENUMBER_MAX,
155 &input_program_casereader_class, inp));
160 /* Reads and returns one case.
161 Returns the case if successful, null at end of file or if an
162 I/O error occurred. */
163 static struct ccase *
164 input_program_casereader_read (struct casereader *reader UNUSED, void *inp_)
166 struct input_program_pgm *inp = inp_;
168 if (inp->eof || !inp->xforms.n)
171 struct ccase *c = case_create (inp->proto);
172 caseinit_init_vars (inp->init, c);
174 for (size_t i = inp->idx < inp->xforms.n ? inp->idx : 0; ; i++)
176 if (i >= inp->xforms.n)
179 c = case_unshare (c);
180 caseinit_update_left_vars (inp->init, c);
181 caseinit_init_vars (inp->init, c);
184 const struct transformation *trns = &inp->xforms.xforms[i];
185 switch (trns->class->execute (trns->aux, &c, inp->case_nr))
193 casereader_force_error (reader);
210 destroy_input_program (struct input_program_pgm *pgm)
214 session_destroy (pgm->session);
215 trns_chain_uninit (&pgm->xforms);
216 caseinit_destroy (pgm->init);
217 caseproto_unref (pgm->proto);
222 /* Destroys the casereader. */
224 input_program_casereader_destroy (struct casereader *reader UNUSED, void *inp_)
226 struct input_program_pgm *inp = inp_;
227 destroy_input_program (inp);
230 static const struct casereader_class input_program_casereader_class =
232 input_program_casereader_read,
233 input_program_casereader_destroy,
239 cmd_end_case (struct lexer *lexer UNUSED, struct dataset *ds)
241 assert (in_input_program ());
247 /* Outputs the current case */
248 static enum trns_result
249 end_case_trns_proc (void *resume_, struct ccase **c UNUSED,
250 casenumber case_nr UNUSED)
252 bool *resume = resume_;
253 enum trns_result retval = *resume ? TRNS_CONTINUE : TRNS_END_CASE;
259 end_case_trns_free (void *resume)
265 static const struct trns_class end_case_trns_class = {
267 .execute = end_case_trns_proc,
268 .destroy = end_case_trns_free,
271 /* REREAD transformation. */
274 struct dfm_reader *reader; /* File to move file pointer back on. */
275 struct expression *column; /* Column to reset file pointer to. */
278 /* Parses REREAD command. */
280 cmd_reread (struct lexer *lexer, struct dataset *ds)
282 struct file_handle *fh; /* File to be re-read. */
283 struct expression *e; /* Expression for column to set. */
284 struct reread_trns *t; /* Created transformation. */
285 char *encoding = NULL;
287 fh = fh_get_default_handle ();
289 while (lex_token (lexer) != T_ENDCMD)
291 if (lex_match_id (lexer, "COLUMN"))
293 lex_match (lexer, T_EQUALS);
297 lex_sbc_only_once ("COLUMN");
301 e = expr_parse (lexer, ds, VAL_NUMERIC);
305 else if (lex_match_id (lexer, "FILE"))
307 lex_match (lexer, T_EQUALS);
309 fh = fh_parse (lexer, FH_REF_FILE | FH_REF_INLINE, NULL);
313 else if (lex_match_id (lexer, "ENCODING"))
315 lex_match (lexer, T_EQUALS);
316 if (!lex_force_string (lexer))
320 encoding = ss_xstrdup (lex_tokss (lexer));
326 lex_error (lexer, NULL);
331 t = xmalloc (sizeof *t);
332 t->reader = dfm_open_reader (fh, lexer, encoding);
334 add_transformation (ds, &reread_trns_class, t);
343 return CMD_CASCADING_FAILURE;
346 /* Executes a REREAD transformation. */
347 static enum trns_result
348 reread_trns_proc (void *t_, struct ccase **c, casenumber case_num)
350 struct reread_trns *t = t_;
352 if (t->column == NULL)
353 dfm_reread_record (t->reader, 1);
356 double column = expr_evaluate_num (t->column, *c, case_num);
357 if (!isfinite (column) || column < 1)
359 msg (SE, _("REREAD: Column numbers must be positive finite "
360 "numbers. Column set to 1."));
361 dfm_reread_record (t->reader, 1);
364 dfm_reread_record (t->reader, column);
366 return TRNS_CONTINUE;
369 /* Frees a REREAD transformation.
370 Returns true if successful, false if an I/O error occurred. */
372 reread_trns_free (void *t_)
374 struct reread_trns *t = t_;
375 expr_free (t->column);
376 dfm_close_reader (t->reader);
380 static const struct trns_class reread_trns_class = {
382 .execute = reread_trns_proc,
383 .destroy = reread_trns_free,
386 /* Parses END FILE command. */
388 cmd_end_file (struct lexer *lexer UNUSED, struct dataset *ds)
390 assert (in_input_program ());
392 add_transformation (ds, &end_file_trns_class, NULL);
398 /* Executes an END FILE transformation. */
399 static enum trns_result
400 end_file_trns_proc (void *trns_ UNUSED, struct ccase **c UNUSED,
401 casenumber case_num UNUSED)
403 return TRNS_END_FILE;
406 static const struct trns_class end_file_trns_class = {
408 .execute = end_file_trns_proc,