1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
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.
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.
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/>. */
23 #include "data/case.h"
24 #include "data/dataset.h"
25 #include "data/dictionary.h"
26 #include "data/transformations.h"
27 #include "data/variable.h"
28 #include "data/vector.h"
29 #include "language/command.h"
30 #include "language/expressions/public.h"
31 #include "language/lexer/lexer.h"
32 #include "libpspp/message.h"
33 #include "libpspp/misc.h"
34 #include "libpspp/str.h"
36 #include "gl/xalloc.h"
39 #define _(msgid) gettext (msgid)
44 /* COMPUTE or IF target variable or vector element.
45 For a variable, the `variable' member is non-null.
46 For a vector element, the `vector' member is non-null. */
49 struct variable *variable; /* Destination variable. */
50 bool is_new_variable; /* Did we create the variable? */
52 const struct vector *vector; /* Destination vector, if any, or NULL. */
53 struct expression *element; /* Destination vector element, or NULL. */
56 /* Target of a COMPUTE or IF assignment, either a variable or a
58 static struct lvalue *lvalue_parse (struct lexer *lexer, struct dataset *);
59 static int lvalue_get_type (const struct lvalue *);
60 static bool lvalue_is_vector (const struct lvalue *);
61 static void lvalue_finalize (struct lvalue *,
62 struct compute_trns *, struct dictionary *);
63 static void lvalue_destroy (struct lvalue *, struct dictionary *);
65 /* COMPUTE and IF transformation. */
68 /* Test expression (IF only). */
69 struct expression *test; /* Test expression. */
71 /* Variable lvalue, if variable != NULL. */
72 struct variable *variable; /* Destination variable, if any. */
73 int width; /* Lvalue string width; 0=numeric. */
75 /* Vector lvalue, if vector != NULL. */
76 const struct vector *vector; /* Destination vector, if any. */
77 struct expression *element; /* Destination vector element expr. */
80 struct expression *rvalue; /* Rvalue expression. */
83 static struct expression *parse_rvalue (struct lexer *lexer,
84 const struct lvalue *,
87 static struct compute_trns *compute_trns_create (void);
88 static bool compute_trns_free (void *compute_);
89 static const struct trns_class *get_trns_class (const struct lvalue *);
94 cmd_compute (struct lexer *lexer, struct dataset *ds)
96 struct dictionary *dict = dataset_dict (ds);
97 struct lvalue *lvalue = NULL;
98 struct compute_trns *compute = NULL;
100 compute = compute_trns_create ();
102 lvalue = lvalue_parse (lexer, ds);
106 if (!lex_force_match (lexer, T_EQUALS))
108 compute->rvalue = parse_rvalue (lexer, lvalue, ds);
109 if (compute->rvalue == NULL)
112 add_transformation (ds, get_trns_class (lvalue), compute);
114 lvalue_finalize (lvalue, compute, dict);
119 lvalue_destroy (lvalue, dict);
120 compute_trns_free (compute);
121 return CMD_CASCADING_FAILURE;
124 /* Transformation functions. */
126 /* Handle COMPUTE or IF with numeric target variable. */
127 static enum trns_result
128 compute_num (void *compute_, struct ccase **c, casenumber case_num)
130 struct compute_trns *compute = compute_;
132 if (compute->test == NULL
133 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
135 *c = case_unshare (*c);
136 *case_num_rw (*c, compute->variable)
137 = expr_evaluate_num (compute->rvalue, *c, case_num);
140 return TRNS_CONTINUE;
143 /* Handle COMPUTE or IF with numeric vector element target
145 static enum trns_result
146 compute_num_vec (void *compute_, struct ccase **c, casenumber case_num)
148 struct compute_trns *compute = compute_;
150 if (compute->test == NULL
151 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
153 double index; /* Index into the vector. */
154 int rindx; /* Rounded index value. */
156 index = expr_evaluate_num (compute->element, *c, case_num);
157 rindx = floor (index + EPSILON);
159 || rindx < 1 || rindx > vector_get_n_vars (compute->vector))
162 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid value "
163 "as an index into vector %s."),
164 vector_get_name (compute->vector));
166 msg (SW, _("When executing COMPUTE: %.*g is not a valid value as "
167 "an index into vector %s."),
168 DBL_DIG + 1, index, vector_get_name (compute->vector));
169 return TRNS_CONTINUE;
172 *c = case_unshare (*c);
173 *case_num_rw (*c, vector_get_var (compute->vector, rindx - 1))
174 = expr_evaluate_num (compute->rvalue, *c, case_num);
177 return TRNS_CONTINUE;
180 /* Handle COMPUTE or IF with string target variable. */
181 static enum trns_result
182 compute_str (void *compute_, struct ccase **c, casenumber case_num)
184 struct compute_trns *compute = compute_;
186 if (compute->test == NULL
187 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
191 *c = case_unshare (*c);
192 s = CHAR_CAST_BUG (char *, case_str_rw (*c, compute->variable));
193 expr_evaluate_str (compute->rvalue, *c, case_num, s, compute->width);
196 return TRNS_CONTINUE;
199 /* Handle COMPUTE or IF with string vector element target
201 static enum trns_result
202 compute_str_vec (void *compute_, struct ccase **c, casenumber case_num)
204 struct compute_trns *compute = compute_;
206 if (compute->test == NULL
207 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
209 double index; /* Index into the vector. */
210 int rindx; /* Rounded index value. */
211 struct variable *vr; /* Variable reference by indexed vector. */
213 index = expr_evaluate_num (compute->element, *c, case_num);
214 rindx = floor (index + EPSILON);
217 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid "
218 "value as an index into vector %s."),
219 vector_get_name (compute->vector));
220 return TRNS_CONTINUE;
222 else if (rindx < 1 || rindx > vector_get_n_vars (compute->vector))
224 msg (SW, _("When executing COMPUTE: %.*g is not a valid value as "
225 "an index into vector %s."),
226 DBL_DIG + 1, index, vector_get_name (compute->vector));
227 return TRNS_CONTINUE;
230 vr = vector_get_var (compute->vector, rindx - 1);
231 *c = case_unshare (*c);
232 expr_evaluate_str (compute->rvalue, *c, case_num,
233 CHAR_CAST_BUG (char *, case_str_rw (*c, vr)),
237 return TRNS_CONTINUE;
243 cmd_if (struct lexer *lexer, struct dataset *ds)
245 struct dictionary *dict = dataset_dict (ds);
246 struct compute_trns *compute = NULL;
247 struct lvalue *lvalue = NULL;
249 compute = compute_trns_create ();
251 /* Test expression. */
252 compute->test = expr_parse_bool (lexer, ds);
253 if (compute->test == NULL)
256 /* Lvalue variable. */
257 lvalue = lvalue_parse (lexer, ds);
261 /* Rvalue expression. */
262 if (!lex_force_match (lexer, T_EQUALS))
264 compute->rvalue = parse_rvalue (lexer, lvalue, ds);
265 if (compute->rvalue == NULL)
268 add_transformation (ds, get_trns_class (lvalue), compute);
270 lvalue_finalize (lvalue, compute, dict);
275 lvalue_destroy (lvalue, dict);
276 compute_trns_free (compute);
277 return CMD_CASCADING_FAILURE;
280 /* Code common to COMPUTE and IF. */
282 static const struct trns_class *
283 get_trns_class (const struct lvalue *lvalue)
285 static const struct trns_class classes[2][2] = {
288 .execute = compute_str,
289 .destroy = compute_trns_free
293 .execute = compute_str_vec,
294 .destroy = compute_trns_free
298 .execute = compute_num,
299 .destroy = compute_trns_free
303 .execute = compute_num_vec,
304 .destroy = compute_trns_free
308 bool is_numeric = lvalue_get_type (lvalue) == VAL_NUMERIC;
309 bool is_vector = lvalue_is_vector (lvalue);
310 return &classes[is_numeric][is_vector];
313 /* Parses and returns an rvalue expression of the same type as
314 LVALUE, or a null pointer on failure. */
315 static struct expression *
316 parse_rvalue (struct lexer *lexer,
317 const struct lvalue *lvalue, struct dataset *ds)
319 if (lvalue->is_new_variable)
320 return expr_parse_new_variable (lexer, ds, var_get_name (lvalue->variable));
322 return expr_parse (lexer, ds, lvalue_get_type (lvalue));
325 /* Returns a new struct compute_trns after initializing its fields. */
326 static struct compute_trns *
327 compute_trns_create (void)
329 struct compute_trns *compute = xmalloc (sizeof *compute);
330 compute->test = NULL;
331 compute->variable = NULL;
332 compute->vector = NULL;
333 compute->element = NULL;
334 compute->rvalue = NULL;
338 /* Deletes all the fields in COMPUTE. */
340 compute_trns_free (void *compute_)
342 struct compute_trns *compute = compute_;
346 expr_free (compute->test);
347 expr_free (compute->element);
348 expr_free (compute->rvalue);
354 /* Parses the target variable or vector element into a new
355 `struct lvalue', which is returned. */
356 static struct lvalue *
357 lvalue_parse (struct lexer *lexer, struct dataset *ds)
359 struct dictionary *dict = dataset_dict (ds);
360 struct lvalue *lvalue;
362 lvalue = xmalloc (sizeof *lvalue);
363 lvalue->variable = NULL;
364 lvalue->is_new_variable = false;
365 lvalue->vector = NULL;
366 lvalue->element = NULL;
368 if (!lex_force_id (lexer))
371 if (lex_next_token (lexer, 1) == T_LPAREN)
374 lvalue->vector = dict_lookup_vector (dict, lex_tokcstr (lexer));
375 if (lvalue->vector == NULL)
377 msg (SE, _("There is no vector named %s."), lex_tokcstr (lexer));
381 /* Vector element. */
383 if (!lex_force_match (lexer, T_LPAREN))
385 lvalue->element = expr_parse (lexer, ds, VAL_NUMERIC);
386 if (lvalue->element == NULL)
388 if (!lex_force_match (lexer, T_RPAREN))
394 const char *var_name = lex_tokcstr (lexer);
395 lvalue->variable = dict_lookup_var (dict, var_name);
396 if (lvalue->variable == NULL)
398 lvalue->variable = dict_create_var_assert (dict, var_name, 0);
399 lvalue->is_new_variable = true;
406 lvalue_destroy (lvalue, dict);
410 /* Returns the type (NUMERIC or ALPHA) of the target variable or
413 lvalue_get_type (const struct lvalue *lvalue)
415 return (lvalue->variable != NULL
416 ? var_get_type (lvalue->variable)
417 : vector_get_type (lvalue->vector));
420 /* Returns true if LVALUE has a vector as its target. */
422 lvalue_is_vector (const struct lvalue *lvalue)
424 return lvalue->vector != NULL;
427 /* Finalizes making LVALUE the target of COMPUTE, by creating the
428 target variable if necessary and setting fields in COMPUTE. */
430 lvalue_finalize (struct lvalue *lvalue,
431 struct compute_trns *compute,
432 struct dictionary *dict)
434 if (lvalue->vector == NULL)
436 compute->variable = lvalue->variable;
437 compute->width = var_get_width (compute->variable);
439 /* Goofy behavior, but compatible: Turn off LEAVE. */
440 if (!var_must_leave (compute->variable))
441 var_set_leave (compute->variable, false);
443 /* Prevent lvalue_destroy from deleting variable. */
444 lvalue->is_new_variable = false;
448 compute->vector = lvalue->vector;
449 compute->element = lvalue->element;
450 lvalue->element = NULL;
453 lvalue_destroy (lvalue, dict);
456 /* Destroys LVALUE. */
458 lvalue_destroy (struct lvalue *lvalue, struct dictionary *dict)
463 if (lvalue->is_new_variable)
464 dict_delete_var (dict, lvalue->variable);
465 expr_free (lvalue->element);