X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fprint-space.c;h=9f27da80f495b396bfebebab7c210de952a593cc;hb=e314315b24e8f4356c1e72a61bef6633f8992bf4;hp=b7683670f5076353ac114e994aa3d0c584b54f7c;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/language/data-io/print-space.c b/src/language/data-io/print-space.c index b7683670f5..9f27da80f4 100644 --- a/src/language/data-io/print-space.c +++ b/src/language/data-io/print-space.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009, 2010, 2011 Free Software Foundation, Inc. + 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 @@ -19,7 +19,7 @@ #include #include -#include "data/procedure.h" +#include "data/dataset.h" #include "data/value.h" #include "language/command.h" #include "language/data-io/data-writer.h" @@ -48,17 +48,29 @@ 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, T_EQUALS); - handle = fh_parse (lexer, FH_REF_FILE); + handle = fh_parse (lexer, FH_REF_FILE, NULL); if (handle == NULL) return CMD_FAILURE; + + 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; @@ -68,9 +80,8 @@ cmd_print_space (struct lexer *lexer, struct dataset *ds) expr = expr_parse (lexer, ds, EXPR_NUMBER); 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 @@ -78,13 +89,9 @@ cmd_print_space (struct lexer *lexer, struct dataset *ds) if (handle != NULL) { - writer = dfm_open_writer (handle); + writer = dfm_open_writer (handle, encoding); if (writer == NULL) - { - fh_unref (handle); - expr_free (expr); - return CMD_FAILURE; - } + goto error; } else writer = NULL; @@ -97,6 +104,11 @@ cmd_print_space (struct lexer *lexer, struct dataset *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. */ @@ -112,10 +124,10 @@ print_space_trns_proc (void *t_, struct ccase **c, { 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.")); + msg (SW, _("The expression on %s evaluated to the " + "system-missing value."), "PRINT SPACE"); else if (f < 0 || f > INT_MAX) - msg (SW, _("The expression on PRINT SPACE evaluated to %g."), f); + msg (SW, _("The expression on %s evaluated to %g."), "PRINT SPACE", f); else n = f; } @@ -124,7 +136,7 @@ print_space_trns_proc (void *t_, struct ccase **c, if (trns->writer == NULL) 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;