X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fprint-space.c;h=c3a2e09a3d93f6f56de75da1a12346ee2329a8b7;hb=dc44e4b118592d1719d9b9ae23ce64a2861fb198;hp=61568a4cc836beb73b36c6d27ca5a3343a8a5a9e;hpb=244ade48f9c233532cc535d3233fdef53bf9266b;p=pspp-builds.git diff --git a/src/language/data-io/print-space.c b/src/language/data-io/print-space.c index 61568a4c..c3a2e09a 100644 --- a/src/language/data-io/print-space.c +++ b/src/language/data-io/print-space.c @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . - 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 @@ -23,6 +20,7 @@ #include #include +#include #include #include #include @@ -47,32 +45,32 @@ static trns_proc_func print_space_trns_proc; static trns_free_func print_space_trns_free; int -cmd_print_space (struct dataset *ds) +cmd_print_space (struct lexer *lexer, struct dataset *ds) { struct print_space_trns *trns; struct file_handle *handle; struct expression *expr; struct dfm_writer *writer; - if (lex_match_id ("OUTFILE")) + if (lex_match_id (lexer, "OUTFILE")) { - lex_match ('='); + lex_match (lexer, '='); - handle = fh_parse (FH_REF_FILE); + handle = fh_parse (lexer, FH_REF_FILE); if (handle == NULL) return CMD_FAILURE; - lex_get (); + lex_get (lexer); } else handle = NULL; - if (token != '.') + if (lex_token (lexer) != '.') { - expr = expr_parse (ds, EXPR_NUMBER); - if (token != '.') + expr = expr_parse (lexer, ds, EXPR_NUMBER); + if (lex_token (lexer) != '.') { expr_free (expr); - lex_error (_("expecting end of command")); + lex_error (lexer, _("expecting end of command")); return CMD_FAILURE; } } @@ -82,21 +80,23 @@ cmd_print_space (struct dataset *ds) if (handle != NULL) { writer = dfm_open_writer (handle); - if (writer == NULL) + if (writer == NULL) { + fh_unref (handle); expr_free (expr); return CMD_FAILURE; - } + } } else writer = NULL; - + trns = xmalloc (sizeof *trns); trns->writer = writer; trns->expr = expr; add_transformation (ds, print_space_trns_proc, print_space_trns_free, trns); + fh_unref (handle); return CMD_SUCCESS; } @@ -112,7 +112,7 @@ print_space_trns_proc (void *t_, struct ccase *c, if (trns->expr) { double f = expr_evaluate_num (trns->expr, c, case_num); - if (f == SYSMIS) + if (f == SYSMIS) msg (SW, _("The expression on PRINT SPACE evaluated to the " "system-missing value.")); else if (f < 0 || f > INT_MAX) @@ -125,7 +125,7 @@ print_space_trns_proc (void *t_, struct ccase *c, if (trns->writer == NULL) som_blank_line (); else - dfm_put_record (trns->writer, "\n", 1); + dfm_put_record (trns->writer, " ", 1); if (trns->writer != NULL && dfm_write_error (trns->writer)) return TRNS_ERROR;