Rename procedure.[ch] to dataset.[ch].
[pspp-builds.git] / src / language / dictionary / missing-values.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
21 #include "data/data-in.h"
22 #include "data/dictionary.h"
23 #include "data/dataset.h"
24 #include "data/format.h"
25 #include "data/missing-values.h"
26 #include "data/value.h"
27 #include "data/variable.h"
28 #include "language/command.h"
29 #include "language/lexer/lexer.h"
30 #include "language/lexer/value-parser.h"
31 #include "language/lexer/variable-parser.h"
32 #include "libpspp/i18n.h"
33 #include "libpspp/message.h"
34 #include "libpspp/str.h"
35
36 #include "gettext.h"
37 #define _(msgid) gettext (msgid)
38
39 int
40 cmd_missing_values (struct lexer *lexer, struct dataset *ds)
41 {
42   struct dictionary *dict = dataset_dict (ds);
43   struct variable **v = NULL;
44   size_t nv;
45
46   bool ok = true;
47
48   while (lex_token (lexer) != T_ENDCMD)
49     {
50       size_t i;
51
52       if (!parse_variables (lexer, dict, &v, &nv, PV_NONE))
53         goto error;
54
55       if (!lex_force_match (lexer, T_LPAREN))
56         goto error;
57
58       for (i = 0; i < nv; i++)
59         var_clear_missing_values (v[i]);
60
61       if (!lex_match (lexer, T_RPAREN))
62         {
63           struct missing_values mv;
64
65           for (i = 0; i < nv; i++)
66             if (var_get_type (v[i]) != var_get_type (v[0]))
67               {
68                 const struct variable *n = var_is_numeric (v[0]) ? v[0] : v[i];
69                 const struct variable *s = var_is_numeric (v[0]) ? v[i] : v[0];
70                 msg (SE, _("Cannot mix numeric variables (e.g. %s) and "
71                            "string variables (e.g. %s) within a single list."),
72                      var_get_name (n), var_get_name (s));
73                 goto error;
74               }
75
76           if (var_is_numeric (v[0]))
77             {
78               mv_init (&mv, 0);
79               while (!lex_match (lexer, T_RPAREN))
80                 {
81                   enum fmt_type type = var_get_print_format (v[0])->type;
82                   double x, y;
83                   bool ok;
84
85                   if (!parse_num_range (lexer, &x, &y, &type))
86                     goto error;
87
88                   ok = (x == y
89                         ? mv_add_num (&mv, x)
90                         : mv_add_range (&mv, x, y));
91                   if (!ok)
92                     ok = false;
93
94                   lex_match (lexer, T_COMMA);
95                 }
96             }
97           else
98             {
99               mv_init (&mv, MV_MAX_STRING);
100               while (!lex_match (lexer, T_RPAREN))
101                 {
102                   uint8_t value[MV_MAX_STRING];
103                   char *dict_mv;
104                   size_t length;
105
106                   if (!lex_force_string (lexer))
107                     {
108                       ok = false;
109                       break;
110                     }
111
112                   dict_mv = recode_string (dict_get_encoding (dict), "UTF-8",
113                                            lex_tokcstr (lexer),
114                                            ss_length (lex_tokss (lexer)));
115                   length = strlen (dict_mv);
116                   if (length > MV_MAX_STRING)
117                     {
118                       /* XXX truncate graphemes not bytes */
119                       msg (SE, _("Truncating missing value to maximum "
120                                  "acceptable length (%d bytes)."),
121                            MV_MAX_STRING);
122                       length = MV_MAX_STRING;
123                     }
124                   memset (value, ' ', MV_MAX_STRING);
125                   memcpy (value, dict_mv, length);
126                   free (dict_mv);
127
128                   if (!mv_add_str (&mv, value))
129                     ok = false;
130
131                   lex_get (lexer);
132                   lex_match (lexer, T_COMMA);
133                 }
134             }
135
136           for (i = 0; i < nv; i++)
137             {
138               if (mv_is_resizable (&mv, var_get_width (v[i])))
139                 var_set_missing_values (v[i], &mv);
140               else
141                 {
142                   msg (SE, _("Missing values provided are too long to assign "
143                              "to variable of width %d."),
144                        var_get_width (v[i]));
145                   ok = false;
146                 }
147             }
148
149           mv_destroy (&mv);
150         }
151
152       lex_match (lexer, T_SLASH);
153       free (v);
154       v = NULL;
155     }
156
157   free (v);
158   return ok ? CMD_SUCCESS : CMD_FAILURE;
159
160 error:
161   free (v);
162   return CMD_FAILURE;
163 }
164