X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fdata-io%2Finpt-pgm.c;h=609c9b2c92bec4b85894b6ab26daca928b0031d9;hb=ffb6a71f427165be82eefacf044298f2970652aa;hp=97fbbf1e134f4643bf6f0b3adf37a2148c23e28f;hpb=92c09e564002d356d20fc1e2e131027ef89f6748;p=pspp-builds.git diff --git a/src/language/data-io/inpt-pgm.c b/src/language/data-io/inpt-pgm.c index 97fbbf1e..609c9b2c 100644 --- a/src/language/data-io/inpt-pgm.c +++ b/src/language/data-io/inpt-pgm.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -35,7 +33,6 @@ #include #include #include -#include #include #include #include @@ -43,11 +40,13 @@ #include #include +#include "xalloc.h" + #include "gettext.h" #define _(msgid) gettext (msgid) /* Private result codes for use within INPUT PROGRAM. */ -enum cmd_result_extensions +enum cmd_result_extensions { CMD_END_INPUT_PROGRAM = CMD_PRIVATE_FIRST, CMD_END_CASE @@ -58,17 +57,17 @@ enum value_init_type { INP_NUMERIC = 01, /* Numeric. */ INP_STRING = 0, /* String. */ - + INP_INIT_ONCE = 02, /* Initialize only once. */ INP_REINIT = 0, /* Reinitialize for each iteration. */ }; -struct input_program_pgm +struct input_program_pgm { struct trns_chain *trns_chain; enum trns_result restart; - size_t case_nr; /* Incremented by END CASE transformation. */ + casenumber case_nr; /* Incremented by END CASE transformation. */ struct caseinit *init; size_t value_cnt; @@ -87,14 +86,14 @@ static bool inside_input_program; /* Returns true if we're parsing the inside of a INPUT PROGRAM...END INPUT PROGRAM construct, false otherwise. */ bool -in_input_program (void) +in_input_program (void) { return inside_input_program; } /* Emits an END CASE transformation for INP. */ static void -emit_END_CASE (struct dataset *ds, struct input_program_pgm *inp) +emit_END_CASE (struct dataset *ds, struct input_program_pgm *inp) { add_transformation (ds, end_case_trns_proc, NULL, inp); } @@ -112,17 +111,17 @@ cmd_input_program (struct lexer *lexer, struct dataset *ds) inp = xmalloc (sizeof *inp); inp->trns_chain = NULL; inp->init = NULL; - + inside_input_program = true; - for (;;) + for (;;) { enum cmd_result result = cmd_parse_in_state (lexer, ds, CMD_STATE_INPUT_PROGRAM); if (result == CMD_END_INPUT_PROGRAM) break; - else if (result == CMD_END_CASE) + else if (result == CMD_END_CASE) { emit_END_CASE (ds, inp); - saw_END_CASE = true; + saw_END_CASE = true; } else if (cmd_result_is_failure (result) && result != CMD_FAILURE) { @@ -138,14 +137,14 @@ cmd_input_program (struct lexer *lexer, struct dataset *ds) emit_END_CASE (ds, inp); inside_input_program = false; - if (dict_get_next_value_idx (dataset_dict (ds)) == 0) + if (dict_get_next_value_idx (dataset_dict (ds)) == 0) { msg (SE, _("Input program did not create any variables.")); proc_discard_active_file (ds); destroy_input_program (inp); return CMD_FAILURE; } - + inp->trns_chain = proc_capture_transformations (ds); trns_chain_finalize (inp->trns_chain); @@ -155,7 +154,7 @@ cmd_input_program (struct lexer *lexer, struct dataset *ds) inp->init = caseinit_create (); caseinit_mark_for_init (inp->init, dataset_dict (ds)); inp->value_cnt = dict_get_next_value_idx (dataset_dict (ds)); - + proc_set_active_file_data ( ds, casereader_create_sequential (NULL, inp->value_cnt, CASENUMBER_MAX, &input_program_casereader_class, inp)); @@ -167,13 +166,13 @@ int cmd_end_input_program (struct lexer *lexer UNUSED, struct dataset *ds UNUSED) { assert (in_input_program ()); - return CMD_END_INPUT_PROGRAM; + return CMD_END_INPUT_PROGRAM; } /* Returns true if STATE is valid given the transformations that are allowed within INPUT PROGRAM. */ static bool -is_valid_state (enum trns_result state) +is_valid_state (enum trns_result state) { return (state == TRNS_CONTINUE || state == TRNS_ERROR @@ -195,16 +194,15 @@ input_program_casereader_read (struct casereader *reader UNUSED, void *inp_, do { assert (is_valid_state (inp->restart)); - if (inp->restart == TRNS_ERROR || inp->restart == TRNS_END_FILE) + if (inp->restart == TRNS_ERROR || inp->restart == TRNS_END_FILE) { case_destroy (c); - return false; + return false; } - caseinit_init_reinit_vars (inp->init, c); - caseinit_init_left_vars (inp->init, c); + caseinit_init_vars (inp->init, c); inp->restart = trns_chain_execute (inp->trns_chain, inp->restart, - c, &inp->case_nr); + c, inp->case_nr); assert (is_valid_state (inp->restart)); caseinit_update_left_vars (inp->init, c); } @@ -214,9 +212,9 @@ input_program_casereader_read (struct casereader *reader UNUSED, void *inp_, } static void -destroy_input_program (struct input_program_pgm *pgm) +destroy_input_program (struct input_program_pgm *pgm) { - if (pgm != NULL) + if (pgm != NULL) { trns_chain_destroy (pgm->trns_chain); caseinit_destroy (pgm->init); @@ -283,14 +281,14 @@ cmd_reread (struct lexer *lexer, struct dataset *ds) if (lex_match_id (lexer, "COLUMN")) { lex_match (lexer, '='); - + if (e) { msg (SE, _("COLUMN subcommand multiply specified.")); expr_free (e); return CMD_CASCADING_FAILURE; } - + e = expr_parse (lexer, ds, EXPR_NUMBER); if (!e) return CMD_CASCADING_FAILURE; @@ -298,6 +296,7 @@ cmd_reread (struct lexer *lexer, struct dataset *ds) else if (lex_match_id (lexer, "FILE")) { lex_match (lexer, '='); + fh_unref (fh); fh = fh_parse (lexer, FH_REF_FILE | FH_REF_INLINE); if (fh == NULL) { @@ -318,6 +317,7 @@ cmd_reread (struct lexer *lexer, struct dataset *ds) t->column = e; add_transformation (ds, reread_trns_proc, reread_trns_free, t); + fh_unref (fh); return CMD_SUCCESS; } @@ -332,7 +332,7 @@ reread_trns_proc (void *t_, struct ccase *c, casenumber case_num) else { double column = expr_evaluate_num (t->column, c, case_num); - if (!finite (column) || column < 1) + if (!isfinite (column) || column < 1) { msg (SE, _("REREAD: Column numbers must be positive finite " "numbers. Column set to 1."));