1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
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.
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.
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
24 #include <data/case.h>
25 #include <data/dictionary.h>
26 #include <data/procedure.h>
27 #include <data/transformations.h>
28 #include <data/variable.h>
29 #include <language/command.h>
30 #include <language/expressions/public.h>
31 #include <language/lexer/lexer.h>
32 #include <libpspp/alloc.h>
33 #include <libpspp/message.h>
34 #include <libpspp/message.h>
35 #include <libpspp/misc.h>
36 #include <libpspp/str.h>
39 #define _(msgid) gettext (msgid)
44 /* Target of a COMPUTE or IF assignment, either a variable or a
46 static struct lvalue *lvalue_parse (struct dataset *);
47 static int lvalue_get_type (const struct lvalue *, const struct dictionary *);
48 static bool lvalue_is_vector (const struct lvalue *);
49 static void lvalue_finalize (struct lvalue *,
50 struct compute_trns *, struct dictionary *);
51 static void lvalue_destroy (struct lvalue *);
53 /* COMPUTE and IF transformation. */
56 /* Test expression (IF only). */
57 struct expression *test; /* Test expression. */
59 /* Variable lvalue, if variable != NULL. */
60 struct variable *variable; /* Destination variable, if any. */
61 int fv; /* `value' index of destination variable. */
62 int width; /* Lvalue string width; 0=numeric. */
64 /* Vector lvalue, if vector != NULL. */
65 const struct vector *vector; /* Destination vector, if any. */
66 struct expression *element; /* Destination vector element expr. */
69 struct expression *rvalue; /* Rvalue expression. */
72 static struct expression *parse_rvalue (const struct lvalue *, struct dataset *);
73 static struct compute_trns *compute_trns_create (void);
74 static trns_proc_func *get_proc_func (const struct lvalue *, const struct dictionary *);
75 static trns_free_func compute_trns_free;
80 cmd_compute (struct dataset *ds)
82 struct dictionary *dict = dataset_dict (ds);
83 struct lvalue *lvalue = NULL;
84 struct compute_trns *compute = NULL;
86 compute = compute_trns_create ();
88 lvalue = lvalue_parse (ds);
92 if (!lex_force_match ('='))
94 compute->rvalue = parse_rvalue (lvalue, ds);
95 if (compute->rvalue == NULL)
98 add_transformation (ds, get_proc_func (lvalue, dict),
99 compute_trns_free, compute);
101 lvalue_finalize (lvalue, compute, dict);
103 return lex_end_of_command ();
106 lvalue_destroy (lvalue);
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)
121 case_data_rw (c, compute->fv)->f = expr_evaluate_num (compute->rvalue, c,
124 return TRNS_CONTINUE;
127 /* Handle COMPUTE or IF with numeric vector element target
130 compute_num_vec (void *compute_, struct ccase *c, casenumber case_num)
132 struct compute_trns *compute = compute_;
134 if (compute->test == NULL
135 || expr_evaluate_num (compute->test, c, case_num) == 1.0)
137 double index; /* Index into the vector. */
138 int rindx; /* Rounded index value. */
140 index = expr_evaluate_num (compute->element, c, case_num);
141 rindx = floor (index + EPSILON);
142 if (index == SYSMIS || rindx < 1 || rindx > compute->vector->cnt)
145 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid value as "
146 "an index into vector %s."), compute->vector->name);
148 msg (SW, _("When executing COMPUTE: %g is not a valid value as "
149 "an index into vector %s."),
150 index, compute->vector->name);
151 return TRNS_CONTINUE;
153 case_data_rw (c, compute->vector->var[rindx - 1]->fv)->f
154 = expr_evaluate_num (compute->rvalue, c, case_num);
157 return TRNS_CONTINUE;
160 /* Handle COMPUTE or IF with string target variable. */
162 compute_str (void *compute_, struct ccase *c, casenumber case_num)
164 struct compute_trns *compute = compute_;
166 if (compute->test == NULL
167 || expr_evaluate_num (compute->test, c, case_num) == 1.0)
168 expr_evaluate_str (compute->rvalue, c, case_num,
169 case_data_rw (c, compute->fv)->s, compute->width);
171 return TRNS_CONTINUE;
174 /* Handle COMPUTE or IF with string vector element target
177 compute_str_vec (void *compute_, struct ccase *c, casenumber case_num)
179 struct compute_trns *compute = compute_;
181 if (compute->test == NULL
182 || expr_evaluate_num (compute->test, c, case_num) == 1.0)
184 double index; /* Index into the vector. */
185 int rindx; /* Rounded index value. */
186 struct variable *vr; /* Variable reference by indexed vector. */
188 index = expr_evaluate_num (compute->element, c, case_num);
189 rindx = floor (index + EPSILON);
192 msg (SW, _("When executing COMPUTE: SYSMIS is not a valid "
193 "value as an index into vector %s."),
194 compute->vector->name);
195 return TRNS_CONTINUE;
197 else if (rindx < 1 || rindx > compute->vector->cnt)
199 msg (SW, _("When executing COMPUTE: %g is not a valid value as "
200 "an index into vector %s."),
201 index, compute->vector->name);
202 return TRNS_CONTINUE;
205 vr = compute->vector->var[rindx - 1];
206 expr_evaluate_str (compute->rvalue, c, case_num,
207 case_data_rw (c, vr->fv)->s, vr->width);
210 return TRNS_CONTINUE;
216 cmd_if (struct dataset *ds)
218 struct dictionary *dict = dataset_dict (ds);
219 struct compute_trns *compute = NULL;
220 struct lvalue *lvalue = NULL;
222 compute = compute_trns_create ();
224 /* Test expression. */
225 compute->test = expr_parse (ds, EXPR_BOOLEAN);
226 if (compute->test == NULL)
229 /* Lvalue variable. */
230 lvalue = lvalue_parse (ds);
234 /* Rvalue expression. */
235 if (!lex_force_match ('='))
237 compute->rvalue = parse_rvalue (lvalue, ds);
238 if (compute->rvalue == NULL)
241 add_transformation (ds, get_proc_func (lvalue, dict),
242 compute_trns_free, compute);
244 lvalue_finalize (lvalue, compute, dict);
246 return lex_end_of_command ();
249 lvalue_destroy (lvalue);
250 compute_trns_free (compute);
251 return CMD_CASCADING_FAILURE;
254 /* Code common to COMPUTE and IF. */
256 static trns_proc_func *
257 get_proc_func (const struct lvalue *lvalue, const struct dictionary *dict)
259 bool is_numeric = lvalue_get_type (lvalue, dict) == NUMERIC;
260 bool is_vector = lvalue_is_vector (lvalue);
263 ? (is_vector ? compute_num_vec : compute_num)
264 : (is_vector ? compute_str_vec : compute_str));
267 /* Parses and returns an rvalue expression of the same type as
268 LVALUE, or a null pointer on failure. */
269 static struct expression *
270 parse_rvalue (const struct lvalue *lvalue, struct dataset *ds)
272 const struct dictionary *dict = dataset_dict (ds);
273 bool is_numeric = lvalue_get_type (lvalue, dict) == NUMERIC;
275 return expr_parse (ds, is_numeric ? EXPR_NUMBER : EXPR_STRING);
278 /* Returns a new struct compute_trns after initializing its fields. */
279 static struct compute_trns *
280 compute_trns_create (void)
282 struct compute_trns *compute = xmalloc (sizeof *compute);
283 compute->test = NULL;
284 compute->variable = NULL;
285 compute->vector = NULL;
286 compute->element = NULL;
287 compute->rvalue = NULL;
291 /* Deletes all the fields in COMPUTE. */
293 compute_trns_free (void *compute_)
295 struct compute_trns *compute = compute_;
299 expr_free (compute->test);
300 expr_free (compute->element);
301 expr_free (compute->rvalue);
307 /* COMPUTE or IF target variable or vector element. */
310 char var_name[LONG_NAME_LEN + 1]; /* Destination variable name, or "". */
311 const struct vector *vector; /* Destination vector, if any, or NULL. */
312 struct expression *element; /* Destination vector element, or NULL. */
315 /* Parses the target variable or vector element into a new
316 `struct lvalue', which is returned. */
317 static struct lvalue *
318 lvalue_parse (struct dataset *ds)
320 struct lvalue *lvalue;
322 lvalue = xmalloc (sizeof *lvalue);
323 lvalue->var_name[0] = '\0';
324 lvalue->vector = NULL;
325 lvalue->element = NULL;
327 if (!lex_force_id ())
330 if (lex_look_ahead () == '(')
333 lvalue->vector = dict_lookup_vector (dataset_dict (ds), tokid);
334 if (lvalue->vector == NULL)
336 msg (SE, _("There is no vector named %s."), tokid);
340 /* Vector element. */
342 if (!lex_force_match ('('))
344 lvalue->element = expr_parse (ds, EXPR_NUMBER);
345 if (lvalue->element == NULL)
347 if (!lex_force_match (')'))
353 str_copy_trunc (lvalue->var_name, sizeof lvalue->var_name, tokid);
359 lvalue_destroy (lvalue);
363 /* Returns the type (NUMERIC or ALPHA) of the target variable or
366 lvalue_get_type (const struct lvalue *lvalue, const struct dictionary *dict)
368 if (lvalue->vector == NULL)
370 struct variable *var = dict_lookup_var (dict, lvalue->var_name);
377 return lvalue->vector->var[0]->type;
380 /* Returns true if LVALUE has a vector as its target. */
382 lvalue_is_vector (const struct lvalue *lvalue)
384 return lvalue->vector != NULL;
387 /* Finalizes making LVALUE the target of COMPUTE, by creating the
388 target variable if necessary and setting fields in COMPUTE. */
390 lvalue_finalize (struct lvalue *lvalue,
391 struct compute_trns *compute,
392 struct dictionary *dict)
394 if (lvalue->vector == NULL)
396 compute->variable = dict_lookup_var (dict, lvalue->var_name);
397 if (compute->variable == NULL)
398 compute->variable = dict_create_var_assert (dict, lvalue->var_name, 0);
400 compute->fv = compute->variable->fv;
401 compute->width = compute->variable->width;
403 /* Goofy behavior, but compatible: Turn off LEAVE. */
404 if (dict_class_from_id (compute->variable->name) != DC_SCRATCH)
405 compute->variable->leave = false;
409 compute->vector = lvalue->vector;
410 compute->element = lvalue->element;
411 lvalue->element = NULL;
414 lvalue_destroy (lvalue);
417 /* Destroys LVALUE. */
419 lvalue_destroy (struct lvalue *lvalue)
424 expr_free (lvalue->element);