Encapsulated the static data of procedure.[ch] into a single object, to be
[pspp-builds.git] / src / language / dictionary / missing-values.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21
22 #include <stdlib.h>
23
24 #include <data/data-in.h>
25 #include <data/procedure.h>
26 #include <data/variable.h>
27 #include <language/command.h>
28 #include <language/lexer/lexer.h>
29 #include <language/lexer/variable-parser.h>
30 #include <language/lexer/range-parser.h>
31 #include <libpspp/magic.h>
32 #include <libpspp/message.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 (void)
41 {
42   struct variable **v;
43   size_t nv;
44
45   int retval = CMD_FAILURE;
46   bool deferred_errors = false;
47
48   while (token != '.')
49     {
50       size_t i;
51
52       if (!parse_variables (dataset_dict (current_dataset), &v, &nv, PV_NONE)) 
53         goto done;
54
55       if (!lex_match ('('))
56         {
57           lex_error (_("expecting `('"));
58           goto done;
59         }
60
61       for (i = 0; i < nv; i++)
62         mv_init (&v[i]->miss, v[i]->width);
63
64       if (!lex_match (')')) 
65         {
66           struct missing_values mv;
67
68           for (i = 0; i < nv; i++)
69             if (v[i]->type != v[0]->type)
70               {
71                 const struct variable *n = v[0]->type == NUMERIC ? v[0] : v[i];
72                 const struct variable *s = v[0]->type == NUMERIC ? v[i] : v[0];
73                 msg (SE, _("Cannot mix numeric variables (e.g. %s) and "
74                            "string variables (e.g. %s) within a single list."),
75                      n->name, s->name);
76                 goto done;
77               }
78
79           if (v[0]->type == NUMERIC) 
80             {
81               mv_init (&mv, 0);
82               while (!lex_match (')'))
83                 {
84                   double x, y;
85                   bool ok;
86
87                   if (!parse_num_range (&x, &y, &v[0]->print))
88                     goto done;
89                   
90                   ok = (x == y
91                         ? mv_add_num (&mv, x)
92                         : mv_add_num_range (&mv, x, y));
93                   if (!ok)
94                     deferred_errors = true;
95
96                   lex_match (',');
97                 }
98             }
99           else 
100             {
101               mv_init (&mv, MAX_SHORT_STRING);
102               while (!lex_match (')')) 
103                 {
104                   if (!lex_force_string ())
105                     {
106                       deferred_errors = true;
107                       break;
108                     }
109
110                   if (ds_length (&tokstr) > MAX_SHORT_STRING) 
111                     {
112                       ds_truncate (&tokstr, MAX_SHORT_STRING);
113                       msg (SE, _("Truncating missing value to short string "
114                                  "length (%d characters)."),
115                            MAX_SHORT_STRING);
116                     }
117                   else
118                     ds_rpad (&tokstr, MAX_SHORT_STRING, ' ');
119
120                   if (!mv_add_str (&mv, ds_data (&tokstr)))
121                     deferred_errors = true;
122
123                   lex_get ();
124                   lex_match (',');
125                 }
126             }
127           
128           for (i = 0; i < nv; i++) 
129             {
130               if (!mv_is_resizable (&mv, v[i]->width)) 
131                 {
132                   msg (SE, _("Missing values provided are too long to assign "
133                              "to variable of width %d."),
134                        v[i]->width);
135                   deferred_errors = true;
136                 }
137               else 
138                 {
139                   mv_copy (&v[i]->miss, &mv);
140                   mv_resize (&v[i]->miss, v[i]->width);
141                 }
142             }
143         }
144
145       lex_match ('/');
146       free (v);
147       v = NULL;
148     }
149   retval = lex_end_of_command ();
150   
151  done:
152   free (v);
153   if (deferred_errors)
154     retval = CMD_FAILURE;
155   return retval;
156 }
157