1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2009, 2010 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/>. */
21 #include "data/case.h"
22 #include "data/casereader.h"
23 #include "data/dataset.h"
24 #include "data/dictionary.h"
25 #include "data/transformations.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 "libpspp/array.h"
31 #include "libpspp/compiler.h"
32 #include "libpspp/hash-functions.h"
33 #include "libpspp/hmap.h"
34 #include "libpspp/i18n.h"
35 #include "libpspp/message.h"
36 #include "libpspp/pool.h"
37 #include "libpspp/str.h"
39 #include "gl/xalloc.h"
40 #include "gl/vasnprintf.h"
41 #include "gl/mbiter.h"
44 #define _(msgid) gettext (msgid)
46 /* FIXME: Implement PRINT subcommand. */
48 /* Explains how to recode one value. */
51 struct hmap_node hmap_node; /* Element in "struct arc_spec" hash table. */
52 union value from; /* Original value. */
53 int width; /* Width of the original value */
55 double to; /* Recoded value. */
58 /* Explains how to recode an AUTORECODE variable. */
61 const struct variable *src; /* Source variable. */
62 struct variable *dst; /* Target variable. */
63 struct hmap *items; /* Hash table of "struct arc_item"s. */
66 /* Descending or ascending sort order. */
73 /* AUTORECODE data. */
76 struct arc_spec *specs;
79 /* Hash table of "struct arc_item"s. */
80 struct hmap *global_items;
83 const struct dictionary *dict;
86 static trns_proc_func autorecode_trns_proc;
87 static trns_free_func autorecode_trns_free;
89 static int compare_arc_items (const void *, const void *, const void *aux);
90 static void arc_free (struct autorecode_pgm *);
91 static struct arc_item *find_arc_item (const struct arc_spec *, const union value *,
95 value_is_blank (const union value *val, int width, const struct dictionary *dict)
98 const char *str = CHAR_CAST_BUG (const char*, value_str (val, width));
99 char *text = recode_string (UTF8, dict_get_encoding (dict), str, width);
101 for (mbi_init (iter, text, width); mbi_avail (iter); mbi_advance (iter))
103 mbchar_t c = mbi_cur (iter);
105 if ( ! mb_isblank (c))
116 /* Performs the AUTORECODE procedure. */
118 cmd_autorecode (struct lexer *lexer, struct dataset *ds)
120 struct autorecode_pgm *arc = NULL;
122 struct dictionary *dict = dataset_dict (ds);
123 const struct variable **src_vars = NULL;
124 char **dst_names = NULL;
128 enum arc_direction direction = ASCENDING;
131 struct casereader *input;
137 /* Create procedure. */
138 arc = xzalloc (sizeof *arc);
139 arc->blank_valid = true;
140 arc->dict = dataset_dict (ds);
142 /* Parse variable lists. */
143 lex_match_id (lexer, "VARIABLES");
144 lex_match (lexer, T_EQUALS);
145 if (!parse_variables_const (lexer, arc->dict, &src_vars, &n_srcs,
148 if (!lex_force_match_id (lexer, "INTO"))
150 lex_match (lexer, T_EQUALS);
151 if (!parse_DATA_LIST_vars (lexer, arc->dict, &dst_names, &n_dsts,
154 if (n_dsts != n_srcs)
156 msg (SE, _("Source variable count (%zu) does not match "
157 "target variable count (%zu)."),
162 for (i = 0; i < n_dsts; i++)
164 const char *name = dst_names[i];
166 if (dict_lookup_var (arc->dict, name) != NULL)
168 msg (SE, _("Target variable %s duplicates existing variable %s."),
175 while (lex_match (lexer, T_SLASH))
177 if (lex_match_id (lexer, "DESCENDING"))
178 direction = DESCENDING;
179 else if (lex_match_id (lexer, "PRINT"))
181 else if (lex_match_id (lexer, "GROUP"))
183 arc->global_items = xmalloc (sizeof (*arc->global_items));
184 hmap_init (arc->global_items);
186 else if (lex_match_id (lexer, "BLANK"))
188 lex_match (lexer, T_EQUALS);
189 if (lex_match_id (lexer, "VALID"))
191 arc->blank_valid = true;
193 else if (lex_match_id (lexer, "MISSING"))
195 arc->blank_valid = false;
204 if (lex_token (lexer) != T_ENDCMD)
206 lex_error (lexer, _("expecting end of command"));
210 arc->specs = xmalloc (n_dsts * sizeof *arc->specs);
211 arc->n_specs = n_dsts;
214 for (i = 0; i < n_dsts; i++)
216 struct arc_spec *spec = &arc->specs[i];
218 spec->src = src_vars[i];
219 if (arc->global_items)
221 spec->items = arc->global_items;
225 spec->items = xmalloc (sizeof (*spec->items));
226 hmap_init (spec->items);
231 /* Execute procedure. */
232 input = proc_open (ds);
233 for (; (c = casereader_read (input)) != NULL; case_unref (c))
234 for (i = 0; i < arc->n_specs; i++)
236 struct arc_spec *spec = &arc->specs[i];
237 int width = var_get_width (spec->src);
238 const union value *value = case_data (c, spec->src);
239 size_t hash = value_hash (value, width, 0);
240 struct arc_item *item;
242 item = find_arc_item (spec, value, hash);
245 ( arc->blank_valid || var_is_numeric (spec->src) || ! value_is_blank (value, width, arc->dict))
248 item = xmalloc (sizeof *item);
250 value_clone (&item->from, value, width);
251 hmap_insert (spec->items, &item->hmap_node, hash);
254 ok = casereader_destroy (input);
255 ok = proc_commit (ds) && ok;
257 /* Create transformation. */
258 for (i = 0; i < arc->n_specs; i++)
260 struct arc_spec *spec = &arc->specs[i];
261 struct arc_item **items;
262 struct arc_item *item;
266 /* Create destination variable. */
267 spec->dst = dict_create_var_assert (dict, dst_names[i], 0);
269 /* Create array of pointers to items. */
270 n_items = hmap_count (spec->items);
271 items = xmalloc (n_items * sizeof *items);
273 HMAP_FOR_EACH (item, struct arc_item, hmap_node, spec->items)
276 assert (j == n_items);
278 /* Sort array by value. */
279 sort (items, n_items, sizeof *items, compare_arc_items, NULL);
281 /* Assign recoded values in sorted order. */
282 for (j = 0; j < n_items; j++)
284 const union value *from = &items[j]->from;
286 char *recoded_value = NULL;
288 const int src_width = items[j]->width;
290 value_init (&to_val, 0);
292 items[j]->to = direction == ASCENDING ? j + 1 : n_items - j;
294 to_val.f = items[j]->to;
296 /* Add value labels to the destination variable which indicate
297 the source value from whence the new value comes. */
300 const char *str = CHAR_CAST_BUG (const char*, value_str (from, src_width));
302 recoded_value = recode_string (UTF8, dict_get_encoding (arc->dict), str, src_width);
305 recoded_value = asnprintf (NULL, &len, "%g", from->f);
307 /* Remove trailing whitespace */
308 for (c = recoded_value; *c != '\0'; c++)
315 var_add_value_label (spec->dst, &to_val, recoded_value);
316 value_destroy (&to_val, 0);
317 free (recoded_value);
323 add_transformation (ds, autorecode_trns_proc, autorecode_trns_free, arc);
325 return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
328 for (i = 0; i < n_dsts; i++)
333 return CMD_CASCADING_FAILURE;
337 arc_free (struct autorecode_pgm *arc)
343 for (i = 0; i < arc->n_specs; i++)
345 struct arc_spec *spec = &arc->specs[i];
346 struct arc_item *item, *next;
348 HMAP_FOR_EACH_SAFE (item, next, struct arc_item, hmap_node,
351 value_destroy (&item->from, item->width);
352 hmap_delete (spec->items, &item->hmap_node);
357 if (arc->global_items)
359 free (arc->global_items);
363 for (i = 0; i < arc->n_specs; i++)
365 struct arc_spec *spec = &arc->specs[i];
368 hmap_destroy (spec->items);
379 static struct arc_item *
380 find_arc_item (const struct arc_spec *spec, const union value *value,
383 struct arc_item *item;
385 HMAP_FOR_EACH_WITH_HASH (item, struct arc_item, hmap_node, hash, spec->items)
386 if (value_equal (value, &item->from, var_get_width (spec->src)))
392 compare_arc_items (const void *a_, const void *b_, const void *aux UNUSED)
394 const struct arc_item *const *a = a_;
395 const struct arc_item *const *b = b_;
396 int width_a = (*a)->width;
397 int width_b = (*b)->width;
399 if ( width_a == width_b)
400 return value_compare_3way (&(*a)->from, &(*b)->from, width_a);
402 if ( width_a == 0 && width_b != 0)
405 if ( width_b == 0 && width_a != 0)
408 return buf_compare_rpad (CHAR_CAST_BUG (const char *, value_str (&(*a)->from, width_a)), width_a,
409 CHAR_CAST_BUG (const char *, value_str (&(*b)->from, width_b)), width_b);
413 autorecode_trns_proc (void *arc_, struct ccase **c,
414 casenumber case_idx UNUSED)
416 struct autorecode_pgm *arc = arc_;
419 *c = case_unshare (*c);
420 for (i = 0; i < arc->n_specs; i++)
422 const struct arc_spec *spec = &arc->specs[i];
423 int width = var_get_width (spec->src);
424 const union value *value = case_data (*c, spec->src);
425 const struct arc_item *item = find_arc_item (spec, value, value_hash (value, width, 0));
427 case_data_rw (*c, spec->dst)->f = item ? item->to : SYSMIS;
430 return TRNS_CONTINUE;
434 autorecode_trns_free (void *arc_)
436 struct autorecode_pgm *arc = arc_;