1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2009, 2010, 2011 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/>. */
22 #include "data/case.h"
23 #include "data/dataset.h"
24 #include "data/dictionary.h"
25 #include "data/transformations.h"
26 #include "data/variable.h"
27 #include "data/vector.h"
28 #include "language/command.h"
29 #include "language/expressions/public.h"
30 #include "language/lexer/lexer.h"
31 #include "libpspp/message.h"
32 #include "libpspp/misc.h"
33 #include "libpspp/str.h"
35 #include "gl/xalloc.h"
38 #define _(msgid) gettext (msgid)
43 /* Target of a COMPUTE or IF assignment, either a variable or a
45 static struct lvalue *lvalue_parse (struct lexer *lexer, struct dataset *);
46 static int lvalue_get_type (const struct lvalue *);
47 static bool lvalue_is_vector (const struct lvalue *);
48 static void lvalue_finalize (struct lvalue *,
49 struct compute_trns *, struct dictionary *);
50 static void lvalue_destroy (struct lvalue *, struct dictionary *);
52 /* COMPUTE and IF transformation. */
55 /* Test expression (IF only). */
56 struct expression *test; /* Test expression. */
58 /* Variable lvalue, if variable != NULL. */
59 struct variable *variable; /* Destination variable, if any. */
60 int width; /* Lvalue string width; 0=numeric. */
62 /* Vector lvalue, if vector != NULL. */
63 const struct vector *vector; /* Destination vector, if any. */
64 struct expression *element; /* Destination vector element expr. */
67 struct expression *rvalue; /* Rvalue expression. */
70 static struct expression *parse_rvalue (struct lexer *lexer,
71 const struct lvalue *,
74 static struct compute_trns *compute_trns_create (void);
75 static trns_proc_func *get_proc_func (const struct lvalue *);
76 static trns_free_func compute_trns_free;
81 cmd_compute (struct lexer *lexer, struct dataset *ds)
83 struct dictionary *dict = dataset_dict (ds);
84 struct lvalue *lvalue = NULL;
85 struct compute_trns *compute = NULL;
87 compute = compute_trns_create ();
89 lvalue = lvalue_parse (lexer, ds);
93 if (!lex_force_match (lexer, T_EQUALS))
95 compute->rvalue = parse_rvalue (lexer, lvalue, ds);
96 if (compute->rvalue == NULL)
99 add_transformation (ds, get_proc_func (lvalue), compute_trns_free, compute);
101 lvalue_finalize (lvalue, compute, dict);
106 lvalue_destroy (lvalue, dict);
107 compute_trns_free (compute);
108 return CMD_CASCADING_FAILURE;
111 /* Transformation functions. */
113 /* Handle COMPUTE or IF with numeric target variable. */
115 compute_num (void *compute_, struct ccase **c, casenumber case_num)
117 struct compute_trns *compute = compute_;
119 if (compute->test == NULL
120 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
122 *c = case_unshare (*c);
123 case_data_rw (*c, compute->variable)->f
124 = expr_evaluate_num (compute->rvalue, *c, case_num);
127 return TRNS_CONTINUE;
130 /* Handle COMPUTE or IF with numeric vector element target
133 compute_num_vec (void *compute_, struct ccase **c, casenumber case_num)
135 struct compute_trns *compute = compute_;
137 if (compute->test == NULL
138 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
140 double index; /* Index into the vector. */
141 int rindx; /* Rounded index value. */
143 index = expr_evaluate_num (compute->element, *c, case_num);
144 rindx = floor (index + EPSILON);
146 || rindx < 1 || rindx > vector_get_var_cnt (compute->vector))
149 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid value "
150 "as an index into vector %s."),
151 vector_get_name (compute->vector));
153 msg (SW, _("When executing COMPUTE: %g is not a valid value as "
154 "an index into vector %s."),
155 index, vector_get_name (compute->vector));
156 return TRNS_CONTINUE;
159 *c = case_unshare (*c);
160 case_data_rw (*c, vector_get_var (compute->vector, rindx - 1))->f
161 = expr_evaluate_num (compute->rvalue, *c, case_num);
164 return TRNS_CONTINUE;
167 /* Handle COMPUTE or IF with string target variable. */
169 compute_str (void *compute_, struct ccase **c, casenumber case_num)
171 struct compute_trns *compute = compute_;
173 if (compute->test == NULL
174 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
178 *c = case_unshare (*c);
179 s = CHAR_CAST_BUG (char *, case_str_rw (*c, compute->variable));
180 expr_evaluate_str (compute->rvalue, *c, case_num, s, compute->width);
183 return TRNS_CONTINUE;
186 /* Handle COMPUTE or IF with string vector element target
189 compute_str_vec (void *compute_, struct ccase **c, casenumber case_num)
191 struct compute_trns *compute = compute_;
193 if (compute->test == NULL
194 || expr_evaluate_num (compute->test, *c, case_num) == 1.0)
196 double index; /* Index into the vector. */
197 int rindx; /* Rounded index value. */
198 struct variable *vr; /* Variable reference by indexed vector. */
200 index = expr_evaluate_num (compute->element, *c, case_num);
201 rindx = floor (index + EPSILON);
204 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid "
205 "value as an index into vector %s."),
206 vector_get_name (compute->vector));
207 return TRNS_CONTINUE;
209 else if (rindx < 1 || rindx > vector_get_var_cnt (compute->vector))
211 msg (SW, _("When executing COMPUTE: %g is not a valid value as "
212 "an index into vector %s."),
213 index, vector_get_name (compute->vector));
214 return TRNS_CONTINUE;
217 vr = vector_get_var (compute->vector, rindx - 1);
218 *c = case_unshare (*c);
219 expr_evaluate_str (compute->rvalue, *c, case_num,
220 CHAR_CAST_BUG (char *, case_str_rw (*c, vr)),
224 return TRNS_CONTINUE;
230 cmd_if (struct lexer *lexer, struct dataset *ds)
232 struct dictionary *dict = dataset_dict (ds);
233 struct compute_trns *compute = NULL;
234 struct lvalue *lvalue = NULL;
236 compute = compute_trns_create ();
238 /* Test expression. */
239 compute->test = expr_parse (lexer, ds, EXPR_BOOLEAN);
240 if (compute->test == NULL)
243 /* Lvalue variable. */
244 lvalue = lvalue_parse (lexer, ds);
248 /* Rvalue expression. */
249 if (!lex_force_match (lexer, T_EQUALS))
251 compute->rvalue = parse_rvalue (lexer, lvalue, ds);
252 if (compute->rvalue == NULL)
255 add_transformation (ds, get_proc_func (lvalue), compute_trns_free, compute);
257 lvalue_finalize (lvalue, compute, dict);
262 lvalue_destroy (lvalue, dict);
263 compute_trns_free (compute);
264 return CMD_CASCADING_FAILURE;
267 /* Code common to COMPUTE and IF. */
269 static trns_proc_func *
270 get_proc_func (const struct lvalue *lvalue)
272 bool is_numeric = lvalue_get_type (lvalue) == VAL_NUMERIC;
273 bool is_vector = lvalue_is_vector (lvalue);
276 ? (is_vector ? compute_num_vec : compute_num)
277 : (is_vector ? compute_str_vec : compute_str));
280 /* Parses and returns an rvalue expression of the same type as
281 LVALUE, or a null pointer on failure. */
282 static struct expression *
283 parse_rvalue (struct lexer *lexer,
284 const struct lvalue *lvalue, struct dataset *ds)
286 bool is_numeric = lvalue_get_type (lvalue) == VAL_NUMERIC;
288 return expr_parse (lexer, ds, is_numeric ? EXPR_NUMBER : EXPR_STRING);
291 /* Returns a new struct compute_trns after initializing its fields. */
292 static struct compute_trns *
293 compute_trns_create (void)
295 struct compute_trns *compute = xmalloc (sizeof *compute);
296 compute->test = NULL;
297 compute->variable = NULL;
298 compute->vector = NULL;
299 compute->element = NULL;
300 compute->rvalue = NULL;
304 /* Deletes all the fields in COMPUTE. */
306 compute_trns_free (void *compute_)
308 struct compute_trns *compute = compute_;
312 expr_free (compute->test);
313 expr_free (compute->element);
314 expr_free (compute->rvalue);
320 /* COMPUTE or IF target variable or vector element.
321 For a variable, the `variable' member is non-null.
322 For a vector element, the `vector' member is non-null. */
325 struct variable *variable; /* Destination variable. */
326 bool is_new_variable; /* Did we create the variable? */
328 const struct vector *vector; /* Destination vector, if any, or NULL. */
329 struct expression *element; /* Destination vector element, or NULL. */
332 /* Parses the target variable or vector element into a new
333 `struct lvalue', which is returned. */
334 static struct lvalue *
335 lvalue_parse (struct lexer *lexer, struct dataset *ds)
337 struct dictionary *dict = dataset_dict (ds);
338 struct lvalue *lvalue;
340 lvalue = xmalloc (sizeof *lvalue);
341 lvalue->variable = NULL;
342 lvalue->is_new_variable = false;
343 lvalue->vector = NULL;
344 lvalue->element = NULL;
346 if (!lex_force_id (lexer))
349 if (lex_next_token (lexer, 1) == T_LPAREN)
352 lvalue->vector = dict_lookup_vector (dict, lex_tokcstr (lexer));
353 if (lvalue->vector == NULL)
355 msg (SE, _("There is no vector named %s."), lex_tokcstr (lexer));
359 /* Vector element. */
361 if (!lex_force_match (lexer, T_LPAREN))
363 lvalue->element = expr_parse (lexer, ds, EXPR_NUMBER);
364 if (lvalue->element == NULL)
366 if (!lex_force_match (lexer, T_RPAREN))
372 const char *var_name = lex_tokcstr (lexer);
373 lvalue->variable = dict_lookup_var (dict, var_name);
374 if (lvalue->variable == NULL)
376 lvalue->variable = dict_create_var_assert (dict, var_name, 0);
377 lvalue->is_new_variable = true;
384 lvalue_destroy (lvalue, dict);
388 /* Returns the type (NUMERIC or ALPHA) of the target variable or
391 lvalue_get_type (const struct lvalue *lvalue)
393 return (lvalue->variable != NULL
394 ? var_get_type (lvalue->variable)
395 : vector_get_type (lvalue->vector));
398 /* Returns true if LVALUE has a vector as its target. */
400 lvalue_is_vector (const struct lvalue *lvalue)
402 return lvalue->vector != NULL;
405 /* Finalizes making LVALUE the target of COMPUTE, by creating the
406 target variable if necessary and setting fields in COMPUTE. */
408 lvalue_finalize (struct lvalue *lvalue,
409 struct compute_trns *compute,
410 struct dictionary *dict)
412 if (lvalue->vector == NULL)
414 compute->variable = lvalue->variable;
415 compute->width = var_get_width (compute->variable);
417 /* Goofy behavior, but compatible: Turn off LEAVE. */
418 if (!var_must_leave (compute->variable))
419 var_set_leave (compute->variable, false);
421 /* Prevent lvalue_destroy from deleting variable. */
422 lvalue->is_new_variable = false;
426 compute->vector = lvalue->vector;
427 compute->element = lvalue->element;
428 lvalue->element = NULL;
431 lvalue_destroy (lvalue, dict);
434 /* Destroys LVALUE. */
436 lvalue_destroy (struct lvalue *lvalue, struct dictionary *dict)
441 if (lvalue->is_new_variable)
442 dict_delete_var (dict, lvalue->variable);
443 expr_free (lvalue->element);