X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fmissing-values.c;h=ace9948412f6fdf3a232fae8ee15cf31bf669afb;hb=81579d9e9f994fb2908f50af41c3eb033d216e58;hp=120953188ac87a2872b386430f06d668aebd5edc;hpb=c3bd77adba5746aae895e6a354aada4e694c0e3f;p=pspp-builds.git diff --git a/src/language/dictionary/missing-values.c b/src/language/dictionary/missing-values.c index 12095318..ace99484 100644 --- a/src/language/dictionary/missing-values.c +++ b/src/language/dictionary/missing-values.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011 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 @@ -18,18 +18,18 @@ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include "data/data-in.h" +#include "data/format.h" +#include "data/missing-values.h" +#include "data/procedure.h" +#include "data/value.h" +#include "data/variable.h" +#include "language/command.h" +#include "language/lexer/lexer.h" +#include "language/lexer/value-parser.h" +#include "language/lexer/variable-parser.h" +#include "libpspp/message.h" +#include "libpspp/str.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -37,29 +37,26 @@ int cmd_missing_values (struct lexer *lexer, struct dataset *ds) { - struct variable **v; + struct variable **v = NULL; size_t nv; int retval = CMD_FAILURE; bool deferred_errors = false; - while (lex_token (lexer) != '.') + while (lex_token (lexer) != T_ENDCMD) { size_t i; if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) goto done; - if (!lex_match (lexer, '(')) - { - lex_error (lexer, _("expecting `('")); - goto done; - } + if (!lex_force_match (lexer, T_LPAREN)) + goto done; for (i = 0; i < nv; i++) var_clear_missing_values (v[i]); - if (!lex_match (lexer, ')')) + if (!lex_match (lexer, T_RPAREN)) { struct missing_values mv; @@ -77,7 +74,7 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) if (var_is_numeric (v[0])) { mv_init (&mv, 0); - while (!lex_match (lexer, ')')) + while (!lex_match (lexer, T_RPAREN)) { enum fmt_type type = var_get_print_format (v[0])->type; double x, y; @@ -88,44 +85,43 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) ok = (x == y ? mv_add_num (&mv, x) - : mv_add_num_range (&mv, x, y)); + : mv_add_range (&mv, x, y)); if (!ok) deferred_errors = true; - lex_match (lexer, ','); + lex_match (lexer, T_COMMA); } } else { - struct string value; - - mv_init (&mv, MAX_SHORT_STRING); - while (!lex_match (lexer, ')')) + mv_init (&mv, MV_MAX_STRING); + while (!lex_match (lexer, T_RPAREN)) { + uint8_t value[MV_MAX_STRING]; + size_t length; + if (!lex_force_string (lexer)) { deferred_errors = true; break; } - ds_init_string (&value, lex_tokstr (lexer)); - - if (ds_length (&value) > MAX_SHORT_STRING) + length = ss_length (lex_tokss (lexer)); + if (length > MV_MAX_STRING) { - ds_truncate (&value, MAX_SHORT_STRING); - msg (SE, _("Truncating missing value to short string " - "length (%d characters)."), - MAX_SHORT_STRING); + msg (SE, _("Truncating missing value to maximum " + "acceptable length (%d bytes)."), + MV_MAX_STRING); + length = MV_MAX_STRING; } - else - ds_rpad (&value, MAX_SHORT_STRING, ' '); + memset (value, ' ', MV_MAX_STRING); + memcpy (value, ss_data (lex_tokss (lexer)), length); - if (!mv_add_str (&mv, ds_data (&value))) + if (!mv_add_str (&mv, value)) deferred_errors = true; - ds_destroy (&value); lex_get (lexer); - lex_match (lexer, ','); + lex_match (lexer, T_COMMA); } } @@ -141,9 +137,11 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) deferred_errors = true; } } + + mv_destroy (&mv); } - lex_match (lexer, '/'); + lex_match (lexer, T_SLASH); free (v); v = NULL; }