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
26 #include <data/case.h>
27 #include <data/data-in.h>
28 #include <data/dictionary.h>
29 #include <data/procedure.h>
30 #include <data/transformations.h>
31 #include <data/variable.h>
32 #include <language/command.h>
33 #include <language/lexer/lexer.h>
34 #include <language/lexer/variable-parser.h>
35 #include <language/lexer/range-parser.h>
36 #include <libpspp/alloc.h>
37 #include <libpspp/assertion.h>
38 #include <libpspp/compiler.h>
39 #include <libpspp/magic.h>
40 #include <libpspp/message.h>
41 #include <libpspp/message.h>
42 #include <libpspp/pool.h>
43 #include <libpspp/str.h>
46 #define _(msgid) gettext (msgid)
50 /* Type of source value for RECODE. */
53 MAP_SINGLE, /* Specific value. */
54 MAP_RANGE, /* Range of values. */
55 MAP_SYSMIS, /* System missing value. */
56 MAP_MISSING, /* Any missing value. */
57 MAP_ELSE, /* Any value. */
58 MAP_CONVERT /* "123" => 123. */
61 /* A value involved in a RECODE mapping. */
64 double f; /* Numeric. */
65 char *c; /* Short or long string. */
68 /* Describes input values to be mapped. */
71 enum map_in_type type; /* One of MAP_*. */
72 union recode_value x, y; /* Source values. */
75 /* Describes the value used as output from a mapping. */
78 bool copy_input; /* If true, copy input to output. */
79 union recode_value value; /* If copy_input false, recoded value. */
80 int width; /* If copy_input false, output value width. */
83 /* Describes how to recode a single value or range of values into a
87 struct map_in in; /* Input values. */
88 struct map_out out; /* Output value. */
91 /* RECODE transformation. */
96 /* Variable types, for convenience. */
97 enum var_type src_type; /* src_vars[*]->type. */
98 enum var_type dst_type; /* dst_vars[*]->type. */
101 struct variable **src_vars; /* Source variables. */
102 struct variable **dst_vars; /* Destination variables. */
103 char **dst_names; /* Name of dest variables, if they're new. */
104 size_t var_cnt; /* Number of variables. */
107 struct mapping *mappings; /* Value mappings. */
108 size_t map_cnt; /* Number of mappings. */
111 static bool parse_src_vars (struct recode_trns *, const struct dictionary *dict);
112 static bool parse_mappings (struct recode_trns *);
113 static bool parse_dst_vars (struct recode_trns *, const struct dictionary *dict);
115 static void add_mapping (struct recode_trns *,
116 size_t *map_allocated, const struct map_in *);
118 static bool parse_map_in (struct map_in *, struct pool *,
119 enum var_type src_type, size_t max_src_width);
120 static void set_map_in_generic (struct map_in *, enum map_in_type);
121 static void set_map_in_num (struct map_in *, enum map_in_type, double, double);
122 static void set_map_in_str (struct map_in *, struct pool *,
123 const struct string *, size_t width);
125 static bool parse_map_out (struct pool *, struct map_out *);
126 static void set_map_out_num (struct map_out *, double);
127 static void set_map_out_str (struct map_out *, struct pool *,
128 const struct string *);
130 static void enlarge_dst_widths (struct recode_trns *);
131 static void create_dst_vars (struct recode_trns *, struct dictionary *);
133 static trns_proc_func recode_trns_proc;
134 static trns_free_func recode_trns_free;
138 /* Parses the RECODE transformation. */
140 cmd_recode (struct dataset *ds)
144 struct recode_trns *trns
145 = pool_create_container (struct recode_trns, pool);
147 /* Parse source variable names,
148 then input to output mappings,
149 then destintation variable names. */
150 if (!parse_src_vars (trns, dataset_dict (ds) )
151 || !parse_mappings (trns)
152 || !parse_dst_vars (trns, dataset_dict (ds)))
154 recode_trns_free (trns);
158 /* Ensure that all the output strings are at least as wide
159 as the widest destination variable. */
160 if (trns->dst_type == ALPHA)
161 enlarge_dst_widths (trns);
163 /* Create destination variables, if needed.
164 This must be the final step; otherwise we'd have to
165 delete destination variables on failure. */
166 if (trns->src_vars != trns->dst_vars)
167 create_dst_vars (trns, dataset_dict (ds));
170 add_transformation (ds,
171 recode_trns_proc, recode_trns_free, trns);
173 while (lex_match ('/'));
175 return lex_end_of_command ();
178 /* Parses a set of variables to recode into TRNS->src_vars and
179 TRNS->var_cnt. Sets TRNS->src_type. Returns true if
180 successful, false on parse error. */
182 parse_src_vars (struct recode_trns *trns, const struct dictionary *dict)
184 if (!parse_variables (dict, &trns->src_vars, &trns->var_cnt,
187 pool_register (trns->pool, free, trns->src_vars);
188 trns->src_type = trns->src_vars[0]->type;
192 /* Parses a set of mappings, which take the form (input=output),
193 into TRNS->mappings and TRNS->map_cnt. Sets TRNS->dst_type.
194 Returns true if successful, false on parse error. */
196 parse_mappings (struct recode_trns *trns)
198 size_t max_src_width;
199 size_t map_allocated;
203 /* Find length of longest source variable. */
204 max_src_width = trns->src_vars[0]->width;
205 for (i = 1; i < trns->var_cnt; i++)
207 size_t var_width = trns->src_vars[i]->width;
208 if (var_width > max_src_width)
209 max_src_width = var_width;
212 /* Parse the mappings in parentheses. */
213 trns->mappings = NULL;
216 have_dst_type = false;
217 if (!lex_force_match ('('))
221 enum var_type dst_type;
223 if (!lex_match_id ("CONVERT"))
226 size_t first_map_idx;
229 first_map_idx = trns->map_cnt;
231 /* Parse source specifications. */
235 if (!parse_map_in (&in, trns->pool,
236 trns->src_type, max_src_width))
238 add_mapping (trns, &map_allocated, &in);
241 while (!lex_match ('='));
243 if (!parse_map_out (trns->pool, &out))
245 dst_type = out.width == 0 ? NUMERIC : ALPHA;
246 if (have_dst_type && dst_type != trns->dst_type)
248 msg (SE, _("Inconsistent target variable types. "
250 "must be all numeric or all string."));
254 for (i = first_map_idx; i < trns->map_cnt; i++)
255 trns->mappings[i].out = out;
259 /* Parse CONVERT as a special case. */
261 set_map_in_generic (&in, MAP_CONVERT);
262 add_mapping (trns, &map_allocated, &in);
265 if (trns->src_type != ALPHA
266 || (have_dst_type && trns->dst_type != NUMERIC))
268 msg (SE, _("CONVERT requires string input values and "
269 "numeric output values."));
273 trns->dst_type = dst_type;
274 have_dst_type = true;
276 if (!lex_force_match (')'))
279 while (lex_match ('('));
284 /* Parses a mapping input value into IN, allocating memory from
285 POOL. The source value type must be provided as SRC_TYPE and,
286 if string, the maximum width of a string source variable must
287 be provided in MAX_SRC_WIDTH. Returns true if successful,
288 false on parse error. */
290 parse_map_in (struct map_in *in, struct pool *pool,
291 enum var_type src_type, size_t max_src_width)
293 if (lex_match_id ("ELSE"))
294 set_map_in_generic (in, MAP_ELSE);
295 else if (src_type == NUMERIC)
297 if (lex_match_id ("MISSING"))
298 set_map_in_generic (in, MAP_MISSING);
299 else if (lex_match_id ("SYSMIS"))
300 set_map_in_generic (in, MAP_SYSMIS);
304 if (!parse_num_range (&x, &y, NULL))
306 set_map_in_num (in, x == y ? MAP_SINGLE : MAP_RANGE, x, y);
311 if (!lex_force_string ())
313 set_map_in_str (in, pool, &tokstr, max_src_width);
320 /* Adds IN to the list of mappings in TRNS.
321 MAP_ALLOCATED is the current number of allocated mappings,
322 which is updated as needed. */
324 add_mapping (struct recode_trns *trns,
325 size_t *map_allocated, const struct map_in *in)
328 if (trns->map_cnt >= *map_allocated)
329 trns->mappings = pool_2nrealloc (trns->pool, trns->mappings,
331 sizeof *trns->mappings);
332 m = &trns->mappings[trns->map_cnt++];
336 /* Sets IN as a mapping of the given TYPE. */
338 set_map_in_generic (struct map_in *in, enum map_in_type type)
343 /* Sets IN as a numeric mapping of the given TYPE,
344 with X and Y as the two numeric values. */
346 set_map_in_num (struct map_in *in, enum map_in_type type, double x, double y)
353 /* Sets IN as a string mapping, with STRING as the string,
354 allocated from POOL. The string is padded with spaces on the
355 right to WIDTH characters long. */
357 set_map_in_str (struct map_in *in, struct pool *pool,
358 const struct string *string, size_t width)
360 in->type = MAP_SINGLE;
361 in->x.c = pool_alloc_unaligned (pool, width);
362 buf_copy_rpad (in->x.c, width, ds_data (string), ds_length (string));
365 /* Parses a mapping output value into OUT, allocating memory from
366 POOL. Returns true if successful, false on parse error. */
368 parse_map_out (struct pool *pool, struct map_out *out)
370 if (lex_is_number ())
372 set_map_out_num (out, lex_number ());
375 else if (lex_match_id ("SYSMIS"))
376 set_map_out_num (out, SYSMIS);
377 else if (token == T_STRING)
379 set_map_out_str (out, pool, &tokstr);
382 else if (lex_match_id ("COPY"))
383 out->copy_input = true;
386 lex_error (_("expecting output value"));
392 /* Sets OUT as a numeric mapping output with the given VALUE. */
394 set_map_out_num (struct map_out *out, double value)
396 out->copy_input = false;
397 out->value.f = value;
401 /* Sets OUT as a string mapping output with the given VALUE. */
403 set_map_out_str (struct map_out *out, struct pool *pool,
404 const struct string *value)
406 const char *string = ds_data (value);
407 size_t length = ds_length (value);
409 out->copy_input = false;
410 out->value.c = pool_alloc_unaligned (pool, length);
411 memcpy (out->value.c, string, length);
415 /* Parses a set of target variables into TRNS->dst_vars and
418 parse_dst_vars (struct recode_trns *trns, const struct dictionary *dict)
422 if (lex_match_id ("INTO"))
427 if (!parse_mixed_vars_pool (dict, trns->pool,
428 &trns->dst_names, &name_cnt,
432 if (name_cnt != trns->var_cnt)
434 msg (SE, _("%u variable(s) cannot be recoded into "
435 "%u variable(s). Specify the same number "
436 "of variables as source and target variables."),
437 (unsigned) trns->var_cnt, (unsigned) name_cnt);
441 trns->dst_vars = pool_nalloc (trns->pool,
442 trns->var_cnt, sizeof *trns->dst_vars);
443 for (i = 0; i < trns->var_cnt; i++)
446 v = trns->dst_vars[i] = dict_lookup_var (dict, trns->dst_names[i]);
447 if (v == NULL && trns->dst_type == ALPHA)
449 msg (SE, _("There is no variable named "
450 "%s. (All string variables specified "
451 "on INTO must already exist. Use the "
452 "STRING command to create a string "
461 trns->dst_vars = trns->src_vars;
462 if (trns->src_type != trns->dst_type)
464 msg (SE, _("INTO is required with %s input values "
465 "and %s output values."),
466 var_type_adj (trns->src_type),
467 var_type_adj (trns->dst_type));
472 for (i = 0; i < trns->var_cnt; i++)
474 struct variable *v = trns->dst_vars[i];
475 if (v != NULL && v->type != trns->dst_type)
477 msg (SE, _("Type mismatch. Cannot store %s data in "
479 trns->dst_type == ALPHA ? _("string") : _("numeric"),
480 v->type == ALPHA ? _("string") : _("numeric"),
489 /* Ensures that all the output values in TRNS are as wide as the
490 widest destination variable. */
492 enlarge_dst_widths (struct recode_trns *trns)
494 size_t max_dst_width;
498 for (i = 0; i < trns->var_cnt; i++)
500 struct variable *v = trns->dst_vars[i];
501 if (v->width > max_dst_width)
502 max_dst_width = v->width;
505 for (i = 0; i < trns->map_cnt; i++)
507 struct map_out *out = &trns->mappings[i].out;
508 if (!out->copy_input && out->width < max_dst_width)
510 char *s = pool_alloc_unaligned (trns->pool, max_dst_width + 1);
511 str_copy_rpad (s, max_dst_width + 1, out->value.c);
517 /* Creates destination variables that don't already exist. */
519 create_dst_vars (struct recode_trns *trns, struct dictionary *dict)
523 for (i = 0; i < trns->var_cnt; i++)
525 struct variable **var = &trns->dst_vars[i];
526 const char *name = trns->dst_names[i];
528 *var = dict_lookup_var (dict, name);
530 *var = dict_create_var_assert (dict, name, 0);
531 assert ((*var)->type == trns->dst_type);
535 /* Data transformation. */
537 /* Returns the output mapping in TRNS for an input of VALUE on
538 variable V, or a null pointer if there is no mapping. */
539 static const struct map_out *
540 find_src_numeric (struct recode_trns *trns, double value, struct variable *v)
544 for (m = trns->mappings; m < trns->mappings + trns->map_cnt; m++)
546 const struct map_in *in = &m->in;
547 const struct map_out *out = &m->out;
553 match = value == in->x.f;
556 match = mv_is_num_user_missing (&v->miss, value);
559 match = value >= in->x.f && value <= in->y.f;
575 /* Returns the output mapping in TRNS for an input of VALUE with
576 the given WIDTH, or a null pointer if there is no mapping. */
577 static const struct map_out *
578 find_src_string (struct recode_trns *trns, const char *value, int width)
582 for (m = trns->mappings; m < trns->mappings + trns->map_cnt; m++)
584 const struct map_in *in = &m->in;
585 struct map_out *out = &m->out;
591 match = !memcmp (value, in->x.c, width);
602 di.e = value + width;
604 di.flags = DI_IGNORE_ERROR;
606 di.format.type = FMT_F;
609 match = data_in (&di);
624 /* Performs RECODE transformation. */
626 recode_trns_proc (void *trns_, struct ccase *c, casenumber case_idx UNUSED)
628 struct recode_trns *trns = trns_;
631 for (i = 0; i < trns->var_cnt; i++)
633 struct variable *src_var = trns->src_vars[i];
634 struct variable *dst_var = trns->dst_vars[i];
636 const union value *src_data = case_data (c, src_var->fv);
637 union value *dst_data = case_data_rw (c, dst_var->fv);
639 const struct map_out *out;
641 if (trns->src_type == NUMERIC)
642 out = find_src_numeric (trns, src_data->f, src_var);
644 out = find_src_string (trns, src_data->s, src_var->width);
646 if (trns->dst_type == NUMERIC)
649 dst_data->f = !out->copy_input ? out->value.f : src_data->f;
650 else if (trns->src_vars != trns->dst_vars)
651 dst_data->f = SYSMIS;
657 if (!out->copy_input)
658 memcpy (dst_data->s, out->value.c, dst_var->width);
659 else if (trns->src_vars != trns->dst_vars)
660 buf_copy_rpad (dst_data->s, dst_var->width,
661 src_data->s, src_var->width);
663 else if (trns->src_vars != trns->dst_vars)
664 memset (dst_data->s, ' ', dst_var->width);
668 return TRNS_CONTINUE;
671 /* Frees a RECODE transformation. */
673 recode_trns_free (void *trns_)
675 struct recode_trns *trns = trns_;
676 pool_destroy (trns->pool);