X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fprint-space.c;h=adeb92ba5b656f7391dd75bc1736469d59c00dd7;hb=2814862a2c45a39f9822cf4c64ca3884822d064d;hp=f26e1f25111648634e720a3f97ec0593317b2246;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp diff --git a/src/language/data-io/print-space.c b/src/language/data-io/print-space.c index f26e1f2511..adeb92ba5b 100644 --- a/src/language/data-io/print-space.c +++ b/src/language/data-io/print-space.c @@ -1,38 +1,35 @@ -/* PSPP - computes sample statistics. - Copyright (C) 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . +/* PSPP - a program for statistical analysis. + Copyright (C) 2006, 2009, 2010, 2011, 2012 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 #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include "data/dataset.h" +#include "data/value.h" +#include "language/command.h" +#include "language/data-io/data-writer.h" +#include "language/data-io/file-handle.h" +#include "language/expressions/public.h" +#include "language/lexer/lexer.h" +#include "libpspp/message.h" +#include "output/text-item.h" -#include "xalloc.h" +#include "gl/xalloc.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -51,30 +48,40 @@ int cmd_print_space (struct lexer *lexer, struct dataset *ds) { struct print_space_trns *trns; - struct file_handle *handle; - struct expression *expr; + struct file_handle *handle = NULL; + struct expression *expr = NULL; struct dfm_writer *writer; + char *encoding = NULL; if (lex_match_id (lexer, "OUTFILE")) { - lex_match (lexer, '='); + lex_match (lexer, T_EQUALS); - handle = fh_parse (lexer, FH_REF_FILE); + handle = fh_parse (lexer, FH_REF_FILE, NULL); if (handle == NULL) return CMD_FAILURE; - lex_get (lexer); + + if (lex_match_id (lexer, "ENCODING")) + { + lex_match (lexer, T_EQUALS); + if (!lex_force_string (lexer)) + goto error; + + encoding = ss_xstrdup (lex_tokss (lexer)); + + lex_get (lexer); + } } else handle = NULL; - if (lex_token (lexer) != '.') + if (lex_token (lexer) != T_ENDCMD) { expr = expr_parse (lexer, ds, EXPR_NUMBER); - if (lex_token (lexer) != '.') + if (lex_token (lexer) != T_ENDCMD) { - expr_free (expr); - lex_error (lexer, _("expecting end of command")); - return CMD_FAILURE; + lex_error (lexer, _("expecting end of command")); + goto error; } } else @@ -82,28 +89,31 @@ cmd_print_space (struct lexer *lexer, struct dataset *ds) if (handle != NULL) { - writer = dfm_open_writer (handle); - if (writer == NULL) - { - expr_free (expr); - return CMD_FAILURE; - } + writer = dfm_open_writer (handle, encoding); + if (writer == NULL) + goto error; } 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; + +error: + fh_unref (handle); + expr_free (expr); + return CMD_FAILURE; } /* Executes a PRINT SPACE transformation. */ static int -print_space_trns_proc (void *t_, struct ccase *c, +print_space_trns_proc (void *t_, struct ccase **c, casenumber case_num UNUSED) { struct print_space_trns *trns = t_; @@ -112,8 +122,8 @@ print_space_trns_proc (void *t_, struct ccase *c, n = 1; if (trns->expr) { - double f = expr_evaluate_num (trns->expr, c, case_num); - if (f == SYSMIS) + double f = expr_evaluate_num (trns->expr, *c, case_num); + if (f == SYSMIS) msg (SW, _("The expression on PRINT SPACE evaluated to the " "system-missing value.")); else if (f < 0 || f > INT_MAX) @@ -124,9 +134,9 @@ print_space_trns_proc (void *t_, struct ccase *c, while (n--) if (trns->writer == NULL) - som_blank_line (); + text_item_submit (text_item_create (TEXT_ITEM_BLANK_LINE, "")); else - dfm_put_record (trns->writer, " ", 1); + dfm_put_record (trns->writer, " ", 1); /* XXX */ if (trns->writer != NULL && dfm_write_error (trns->writer)) return TRNS_ERROR;