Change many %g format specifiers to %.*g with precision DBL_DIG + 1.
[pspp] / src / language / stats / autorecode.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 2010, 2012, 2013, 2014 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 <float.h>
20 #include <stdlib.h>
21
22 #include "data/case.h"
23 #include "data/casereader.h"
24 #include "data/dataset.h"
25 #include "data/dictionary.h"
26 #include "data/transformations.h"
27 #include "data/variable.h"
28 #include "language/command.h"
29 #include "language/lexer/lexer.h"
30 #include "language/lexer/variable-parser.h"
31 #include "libpspp/array.h"
32 #include "libpspp/compiler.h"
33 #include "libpspp/hash-functions.h"
34 #include "libpspp/hmap.h"
35 #include "libpspp/i18n.h"
36 #include "libpspp/message.h"
37 #include "libpspp/pool.h"
38 #include "libpspp/str.h"
39
40 #include "gl/xalloc.h"
41 #include "gl/c-xvasprintf.h"
42 #include "gl/mbiter.h"
43
44
45 #include "gettext.h"
46 #define _(msgid) gettext (msgid)
47
48 /* FIXME: Implement PRINT subcommand. */
49
50 /* Explains how to recode one value. */
51 struct arc_item
52   {
53     struct hmap_node hmap_node; /* Element in "struct arc_spec" hash table. */
54     union value from;           /* Original value. */
55     int width;                  /* Width of the original value */
56
57     double to;                  /* Recoded value. */
58   };
59
60 /* Explains how to recode an AUTORECODE variable. */
61 struct arc_spec
62   {
63     int width;                  /* Variable width. */
64     int src_idx;                /* Case index of source variable. */
65     struct variable *dst;       /* Target variable. */
66     struct rec_items *items;
67   };
68
69 /* Descending or ascending sort order. */
70 enum arc_direction
71   {
72     ASCENDING,
73     DESCENDING
74   };
75
76 struct rec_items
77 {
78   struct hmap ht;         /* Hash table of "struct arc_item"s. */
79   int refcnt;
80 };
81
82
83
84 /* AUTORECODE data. */
85 struct autorecode_pgm
86 {
87   struct arc_spec *specs;
88   size_t n_specs;
89
90   /* Hash table of "struct arc_item"s. */
91   struct rec_items *global_items;
92
93   bool blank_valid;
94 };
95
96 static trns_proc_func autorecode_trns_proc;
97 static trns_free_func autorecode_trns_free;
98
99 static int compare_arc_items (const void *, const void *, const void *aux);
100 static void arc_free (struct autorecode_pgm *);
101 static struct arc_item *find_arc_item (const struct arc_spec *, const union value *,
102                                        size_t hash);
103
104 static bool
105 value_is_blank (const union value *val, int width, const struct dictionary *dict)
106 {
107   mbi_iterator_t iter;
108   const char *str = CHAR_CAST_BUG (const char*, value_str (val, width));
109   char *text = recode_string (UTF8, dict_get_encoding (dict), str, width);
110
111   for (mbi_init (iter, text, width); mbi_avail (iter); mbi_advance (iter))
112     {
113       mbchar_t c = mbi_cur (iter);
114
115       if ( ! mb_isblank (c))
116         {
117           free (text);
118           return false;
119         }
120     }
121
122   free (text);
123   return true;
124 }
125
126 /* Performs the AUTORECODE procedure. */
127 int
128 cmd_autorecode (struct lexer *lexer, struct dataset *ds)
129 {
130   struct autorecode_pgm *arc = NULL;
131
132   struct dictionary *dict = dataset_dict (ds);
133   const struct variable **src_vars = NULL;
134   char **dst_names = NULL;
135   size_t n_srcs = 0;
136   size_t n_dsts = 0;
137
138   enum arc_direction direction = ASCENDING;
139
140   struct casereader *input;
141   struct ccase *c;
142
143   size_t i;
144   bool ok;
145
146   /* Create procedure. */
147   arc = xzalloc (sizeof *arc);
148   arc->blank_valid = true;
149
150   /* Parse variable lists. */
151   lex_match_id (lexer, "VARIABLES");
152   lex_match (lexer, T_EQUALS);
153   if (!parse_variables_const (lexer, dict, &src_vars, &n_srcs,
154                               PV_NO_DUPLICATE | PV_NO_SCRATCH))
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, 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 (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->width = var_get_width (src_vars[i]);
230       spec->src_idx = var_get_case_index (src_vars[i]);
231
232       if (arc->global_items)
233         {
234           arc->global_items->refcnt++;
235           spec->items = arc->global_items;
236         }
237       else
238         {
239           spec->items = xzalloc (sizeof (*spec->items));
240           spec->items->refcnt = 1;
241           hmap_init (&spec->items->ht);
242         }
243     }
244
245
246   /* Execute procedure. */
247   input = proc_open (ds);
248   for (; (c = casereader_read (input)) != NULL; case_unref (c))
249     for (i = 0; i < arc->n_specs; i++)
250       {
251         struct arc_spec *spec = &arc->specs[i];
252         int width = spec->width;
253         const union value *value = case_data_idx (c, spec->src_idx);
254         size_t hash = value_hash (value, width, 0);
255         struct arc_item *item;
256
257         item = find_arc_item (spec, value, hash);
258         if ( (item == NULL)
259              &&  
260              ( arc->blank_valid
261                || val_type_from_width (spec->width) == VAL_NUMERIC
262                || ! value_is_blank (value, width, dict))
263              )
264           {
265             item = xmalloc (sizeof *item);
266             item->width = width;
267             value_clone (&item->from, value, width);
268             hmap_insert (&spec->items->ht, &item->hmap_node, hash);
269           }
270       }
271   ok = casereader_destroy (input);
272   ok = proc_commit (ds) && ok;
273
274   /* Re-fetch dictionary because it might have changed (if TEMPORARY was in
275      use). */
276   dict = dataset_dict (ds);
277
278   /* Create transformation. */
279   for (i = 0; i < arc->n_specs; i++)
280     {
281       struct arc_spec *spec = &arc->specs[i];
282       struct arc_item **items;
283       struct arc_item *item;
284       size_t n_items;
285       size_t j;
286
287       /* Create destination variable. */
288       spec->dst = dict_create_var_assert (dict, dst_names[i], 0);
289
290       /* Create array of pointers to items. */
291       n_items = hmap_count (&spec->items->ht);
292       items = xmalloc (n_items * sizeof *items);
293       j = 0;
294       HMAP_FOR_EACH (item, struct arc_item, hmap_node, &spec->items->ht)
295         items[j++] = item;
296
297       assert (j == n_items);
298
299       /* Sort array by value. */
300       sort (items, n_items, sizeof *items, compare_arc_items, NULL);
301
302       /* Assign recoded values in sorted order. */
303       for (j = 0; j < n_items; j++)
304         {
305           const union value *from = &items[j]->from;
306           char *recoded_value  = NULL;
307           const int src_width = items[j]->width;
308           union value to_val;
309           size_t len;
310
311           value_init (&to_val, 0);
312
313           items[j]->to = direction == ASCENDING ? j + 1 : n_items - j;
314           
315           to_val.f = items[j]->to;
316
317           /* Add value labels to the destination variable which indicate
318              the source value from whence the new value comes. */
319           if (src_width > 0)
320             {
321               const char *str = CHAR_CAST_BUG (const char*, value_str (from, src_width));
322
323               recoded_value = recode_string (UTF8, dict_get_encoding (dict),
324                                              str, src_width);
325             }
326           else
327             recoded_value = c_xasprintf ("%.*g", DBL_DIG + 1, from->f);
328           
329           /* Remove trailing whitespace */
330           len = strlen (recoded_value);
331           while (len > 0 && recoded_value[len - 1] == ' ')
332             recoded_value[--len] = '\0';
333
334           var_add_value_label (spec->dst, &to_val, recoded_value);
335           value_destroy (&to_val, 0);
336           free (recoded_value);
337         }
338
339       /* Free array. */
340       free (items);
341     }
342   add_transformation (ds, autorecode_trns_proc, autorecode_trns_free, arc);
343
344   for (i = 0; i < n_dsts; i++)
345     free (dst_names[i]);
346   free (dst_names);
347   free (src_vars);
348
349   return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
350
351 error:
352   for (i = 0; i < n_dsts; i++)
353     free (dst_names[i]);
354   free (dst_names);
355   free (src_vars);
356   arc_free (arc);
357   return CMD_CASCADING_FAILURE;
358 }
359
360 static void
361 arc_free (struct autorecode_pgm *arc)
362 {
363   if (arc != NULL)
364     {
365       size_t i;
366
367       for (i = 0; i < arc->n_specs; i++)
368         {
369           struct arc_spec *spec = &arc->specs[i];
370           struct arc_item *item, *next;
371
372           HMAP_FOR_EACH_SAFE (item, next, struct arc_item, hmap_node,
373                               &spec->items->ht)
374             {
375               value_destroy (&item->from, item->width);
376               hmap_delete (&spec->items->ht, &item->hmap_node);
377               free (item);
378             }
379         }
380
381       for (i = 0; i < arc->n_specs; i++)
382         {
383           struct arc_spec *spec = &arc->specs[i];
384           
385           if (--spec->items->refcnt == 0)
386             {
387               hmap_destroy (&spec->items->ht);
388               free (spec->items);
389             }
390         }
391
392       if (arc->global_items && --arc->global_items->refcnt == 0)
393         {
394           hmap_destroy (&arc->global_items->ht);
395           free (arc->global_items);
396         }
397       
398       free (arc->specs);
399       free (arc);
400     }
401 }
402
403 static struct arc_item *
404 find_arc_item (const struct arc_spec *spec, const union value *value,
405                size_t hash)
406 {
407   struct arc_item *item;
408
409   HMAP_FOR_EACH_WITH_HASH (item, struct arc_item, hmap_node, hash, &spec->items->ht)
410     if (value_equal (value, &item->from, spec->width))
411       return item;
412   return NULL;
413 }
414
415 static int
416 compare_arc_items (const void *a_, const void *b_, const void *aux UNUSED)
417 {
418   const struct arc_item *const *a = a_;
419   const struct arc_item *const *b = b_;
420   int width_a = (*a)->width;
421   int width_b = (*b)->width;
422
423   if ( width_a == width_b)
424     return value_compare_3way (&(*a)->from, &(*b)->from, width_a);
425
426   if ( width_a == 0 && width_b != 0)
427     return -1;
428
429   if ( width_b == 0 && width_a != 0)
430     return +1;
431
432   return buf_compare_rpad (CHAR_CAST_BUG (const char *, value_str (&(*a)->from, width_a)), width_a,
433                            CHAR_CAST_BUG (const char *, value_str (&(*b)->from, width_b)), width_b);
434 }
435
436 static int
437 autorecode_trns_proc (void *arc_, struct ccase **c,
438                       casenumber case_idx UNUSED)
439 {
440   struct autorecode_pgm *arc = arc_;
441   size_t i;
442
443   *c = case_unshare (*c);
444   for (i = 0; i < arc->n_specs; i++)
445     {
446       const struct arc_spec *spec = &arc->specs[i];
447       const union value *value = case_data_idx (*c, spec->src_idx);
448       unsigned int hash = value_hash (value, spec->width, 0);
449       const struct arc_item *item = find_arc_item (spec, value, hash);
450
451       case_data_rw (*c, spec->dst)->f = item ? item->to : SYSMIS;
452     }
453
454   return TRNS_CONTINUE;
455 }
456
457 static bool
458 autorecode_trns_free (void *arc_)
459 {
460   struct autorecode_pgm *arc = arc_;
461
462   arc_free (arc);
463   return true;
464 }