Merge 'master' into 'psppsheet'.
[pspp] / src / language / stats / autorecode.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 2010, 2012 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
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"
38
39 #include "gl/xalloc.h"
40 #include "gl/c-xvasprintf.h"
41 #include "gl/mbiter.h"
42
43
44 #include "gettext.h"
45 #define _(msgid) gettext (msgid)
46
47 /* FIXME: Implement PRINT subcommand. */
48
49 /* Explains how to recode one value. */
50 struct arc_item
51   {
52     struct hmap_node hmap_node; /* Element in "struct arc_spec" hash table. */
53     union value from;           /* Original value. */
54     int width;                  /* Width of the original value */
55
56     double to;                  /* Recoded value. */
57   };
58
59 /* Explains how to recode an AUTORECODE variable. */
60 struct arc_spec
61   {
62     const struct variable *src; /* Source variable. */
63     struct variable *dst;       /* Target variable. */
64     struct rec_items *items;
65   };
66
67 /* Descending or ascending sort order. */
68 enum arc_direction
69   {
70     ASCENDING,
71     DESCENDING
72   };
73
74 struct rec_items
75 {
76   struct hmap ht;         /* Hash table of "struct arc_item"s. */
77   int refcnt;
78 };
79
80
81
82 /* AUTORECODE data. */
83 struct autorecode_pgm
84 {
85   struct arc_spec *specs;
86   size_t n_specs;
87
88   /* Hash table of "struct arc_item"s. */
89   struct rec_items *global_items;
90
91   bool blank_valid;
92   const struct dictionary *dict;
93 };
94
95 static trns_proc_func autorecode_trns_proc;
96 static trns_free_func autorecode_trns_free;
97
98 static int compare_arc_items (const void *, const void *, const void *aux);
99 static void arc_free (struct autorecode_pgm *);
100 static struct arc_item *find_arc_item (const struct arc_spec *, const union value *,
101                                        size_t hash);
102
103 static bool
104 value_is_blank (const union value *val, int width, const struct dictionary *dict)
105 {
106   mbi_iterator_t iter;
107   const char *str = CHAR_CAST_BUG (const char*, value_str (val, width));
108   char *text = recode_string (UTF8, dict_get_encoding (dict), str, width);
109
110   for (mbi_init (iter, text, width); mbi_avail (iter); mbi_advance (iter))
111     {
112       mbchar_t c = mbi_cur (iter);
113
114       if ( ! mb_isblank (c))
115         {
116           free (text);
117           return false;
118         }
119     }
120
121   free (text);
122   return true;
123 }
124
125 /* Performs the AUTORECODE procedure. */
126 int
127 cmd_autorecode (struct lexer *lexer, struct dataset *ds)
128 {
129   struct autorecode_pgm *arc = NULL;
130
131   struct dictionary *dict = dataset_dict (ds);
132   const struct variable **src_vars = NULL;
133   char **dst_names = NULL;
134   size_t n_srcs = 0;
135   size_t n_dsts = 0;
136
137   enum arc_direction direction = ASCENDING;
138
139   struct casereader *input;
140   struct ccase *c;
141
142   size_t i;
143   bool ok;
144
145   /* Create procedure. */
146   arc = xzalloc (sizeof *arc);
147   arc->blank_valid = true;
148   arc->dict = dataset_dict (ds);
149
150   /* Parse variable lists. */
151   lex_match_id (lexer, "VARIABLES");
152   lex_match (lexer, T_EQUALS);
153   if (!parse_variables_const (lexer, arc->dict, &src_vars, &n_srcs,
154                               PV_NO_DUPLICATE))
155     goto error;
156   if (!lex_force_match_id (lexer, "INTO"))
157     goto error;
158   lex_match (lexer, T_EQUALS);
159   if (!parse_DATA_LIST_vars (lexer, arc->dict, &dst_names, &n_dsts,
160                              PV_NO_DUPLICATE))
161     goto error;
162   if (n_dsts != n_srcs)
163     {
164       msg (SE, _("Source variable count (%zu) does not match "
165                  "target variable count (%zu)."),
166            n_srcs, n_dsts);
167
168       goto error;
169     }
170   for (i = 0; i < n_dsts; i++)
171     {
172       const char *name = dst_names[i];
173
174       if (dict_lookup_var (arc->dict, name) != NULL)
175         {
176           msg (SE, _("Target variable %s duplicates existing variable %s."),
177                name, name);
178           goto error;
179         }
180     }
181
182   /* Parse options. */
183   while (lex_match (lexer, T_SLASH))
184     {
185       if (lex_match_id (lexer, "DESCENDING"))
186         direction = DESCENDING;
187       else if (lex_match_id (lexer, "PRINT"))
188         {
189           /* Not yet implemented. */
190         }
191       else if (lex_match_id (lexer, "GROUP"))
192         {
193           arc->global_items = xmalloc (sizeof (*arc->global_items));
194           arc->global_items->refcnt = 1;
195           hmap_init (&arc->global_items->ht);
196         }
197       else if (lex_match_id (lexer, "BLANK"))
198         {
199           lex_match (lexer, T_EQUALS);
200           if (lex_match_id (lexer, "VALID"))
201             {
202               arc->blank_valid = true;
203             }
204           else if (lex_match_id (lexer, "MISSING"))
205             {
206               arc->blank_valid = false;
207             }
208           else
209             goto error;
210         }
211       else
212         goto error;
213     }
214
215   if (lex_token (lexer) != T_ENDCMD)
216     {
217       lex_error (lexer, _("expecting end of command"));
218       goto error;
219     }
220
221   arc->specs = xmalloc (n_dsts * sizeof *arc->specs);
222   arc->n_specs = n_dsts;
223
224
225   for (i = 0; i < n_dsts; i++)
226     {
227       struct arc_spec *spec = &arc->specs[i];
228
229       spec->src = src_vars[i];
230
231       if (arc->global_items)
232         {
233           arc->global_items->refcnt++;
234           spec->items = arc->global_items;
235         }
236       else
237         {
238           spec->items = xzalloc (sizeof (*spec->items));
239           spec->items->refcnt = 1;
240           hmap_init (&spec->items->ht);
241         }
242     }
243
244
245   /* Execute procedure. */
246   input = proc_open (ds);
247   for (; (c = casereader_read (input)) != NULL; case_unref (c))
248     for (i = 0; i < arc->n_specs; i++)
249       {
250         struct arc_spec *spec = &arc->specs[i];
251         int width = var_get_width (spec->src);
252         const union value *value = case_data (c, spec->src);
253         size_t hash = value_hash (value, width, 0);
254         struct arc_item *item;
255
256         item = find_arc_item (spec, value, hash);
257         if ( (item == NULL)
258              &&  
259              ( arc->blank_valid || var_is_numeric (spec->src) || ! value_is_blank (value, width, arc->dict))
260              )
261           {
262             item = xmalloc (sizeof *item);
263             item->width = width;
264             value_clone (&item->from, value, width);
265             hmap_insert (&spec->items->ht, &item->hmap_node, hash);
266           }
267       }
268   ok = casereader_destroy (input);
269   ok = proc_commit (ds) && ok;
270
271   /* Create transformation. */
272   for (i = 0; i < arc->n_specs; i++)
273     {
274       struct arc_spec *spec = &arc->specs[i];
275       struct arc_item **items;
276       struct arc_item *item;
277       size_t n_items;
278       size_t j;
279
280       /* Create destination variable. */
281       spec->dst = dict_create_var_assert (dict, dst_names[i], 0);
282
283       /* Create array of pointers to items. */
284       n_items = hmap_count (&spec->items->ht);
285       items = xmalloc (n_items * sizeof *items);
286       j = 0;
287       HMAP_FOR_EACH (item, struct arc_item, hmap_node, &spec->items->ht)
288         items[j++] = item;
289
290       assert (j == n_items);
291
292       /* Sort array by value. */
293       sort (items, n_items, sizeof *items, compare_arc_items, NULL);
294
295       /* Assign recoded values in sorted order. */
296       for (j = 0; j < n_items; j++)
297         {
298           const union value *from = &items[j]->from;
299           char *recoded_value  = NULL;
300           char *c;
301           const int src_width = items[j]->width;
302           union value to_val;
303           value_init (&to_val, 0);
304
305           items[j]->to = direction == ASCENDING ? j + 1 : n_items - j;
306           
307           to_val.f = items[j]->to;
308
309           /* Add value labels to the destination variable which indicate
310              the source value from whence the new value comes. */
311           if (src_width > 0)
312             {
313               const char *str = CHAR_CAST_BUG (const char*, value_str (from, src_width));
314
315               recoded_value = recode_string (UTF8, dict_get_encoding (arc->dict), str, src_width);
316             }
317           else
318             recoded_value = c_xasprintf ("%g", from->f);
319           
320           /* Remove trailing whitespace */
321           for (c = recoded_value; *c != '\0'; c++)
322             if ( *c == ' ')
323               {
324                 *c = '\0';
325                 break;
326               }
327
328           var_add_value_label (spec->dst, &to_val, recoded_value);
329           value_destroy (&to_val, 0);
330           free (recoded_value);
331         }
332
333       /* Free array. */
334       free (items);
335     }
336   add_transformation (ds, autorecode_trns_proc, autorecode_trns_free, arc);
337
338   for (i = 0; i < n_dsts; i++)
339     free (dst_names[i]);
340   free (dst_names);
341   free (src_vars);
342
343   return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
344
345 error:
346   for (i = 0; i < n_dsts; i++)
347     free (dst_names[i]);
348   free (dst_names);
349   free (src_vars);
350   arc_free (arc);
351   return CMD_CASCADING_FAILURE;
352 }
353
354 static void
355 arc_free (struct autorecode_pgm *arc)
356 {
357   if (arc != NULL)
358     {
359       size_t i;
360
361       for (i = 0; i < arc->n_specs; i++)
362         {
363           struct arc_spec *spec = &arc->specs[i];
364           struct arc_item *item, *next;
365
366           HMAP_FOR_EACH_SAFE (item, next, struct arc_item, hmap_node,
367                               &spec->items->ht)
368             {
369               value_destroy (&item->from, item->width);
370               hmap_delete (&spec->items->ht, &item->hmap_node);
371               free (item);
372             }
373         }
374
375       for (i = 0; i < arc->n_specs; i++)
376         {
377           struct arc_spec *spec = &arc->specs[i];
378           
379           if (--spec->items->refcnt == 0)
380             {
381               hmap_destroy (&spec->items->ht);
382               free (spec->items);
383             }
384         }
385
386       if (arc->global_items && --arc->global_items->refcnt == 0)
387         {
388           hmap_destroy (&arc->global_items->ht);
389           free (arc->global_items);
390         }
391       
392       free (arc->specs);
393       free (arc);
394     }
395 }
396
397 static struct arc_item *
398 find_arc_item (const struct arc_spec *spec, const union value *value,
399                size_t hash)
400 {
401   struct arc_item *item;
402
403   HMAP_FOR_EACH_WITH_HASH (item, struct arc_item, hmap_node, hash, &spec->items->ht)
404     if (value_equal (value, &item->from, var_get_width (spec->src)))
405       return item;
406   return NULL;
407 }
408
409 static int
410 compare_arc_items (const void *a_, const void *b_, const void *aux UNUSED)
411 {
412   const struct arc_item *const *a = a_;
413   const struct arc_item *const *b = b_;
414   int width_a = (*a)->width;
415   int width_b = (*b)->width;
416
417   if ( width_a == width_b)
418     return value_compare_3way (&(*a)->from, &(*b)->from, width_a);
419
420   if ( width_a == 0 && width_b != 0)
421     return -1;
422
423   if ( width_b == 0 && width_a != 0)
424     return +1;
425
426   return buf_compare_rpad (CHAR_CAST_BUG (const char *, value_str (&(*a)->from, width_a)), width_a,
427                            CHAR_CAST_BUG (const char *, value_str (&(*b)->from, width_b)), width_b);
428 }
429
430 static int
431 autorecode_trns_proc (void *arc_, struct ccase **c,
432                       casenumber case_idx UNUSED)
433 {
434   struct autorecode_pgm *arc = arc_;
435   size_t i;
436
437   *c = case_unshare (*c);
438   for (i = 0; i < arc->n_specs; i++)
439     {
440       const struct arc_spec *spec = &arc->specs[i];
441       int width = var_get_width (spec->src);
442       const union value *value = case_data (*c, spec->src);
443       const struct arc_item *item = find_arc_item (spec, value, value_hash (value, width, 0));
444
445       case_data_rw (*c, spec->dst)->f = item ? item->to : SYSMIS;
446     }
447
448   return TRNS_CONTINUE;
449 }
450
451 static bool
452 autorecode_trns_free (void *arc_)
453 {
454   struct autorecode_pgm *arc = arc_;
455
456   arc_free (arc);
457   return true;
458 }