Fix memory leak
[pspp] / src / math / categoricals.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2010, 2011 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 "math/categoricals.h"
20 #include "math/interaction.h"
21
22 #include <stdio.h>
23
24 #include "data/case.h"
25 #include "data/value.h"
26 #include "data/variable.h"
27 #include "libpspp/array.h"
28 #include "libpspp/hmap.h"
29 #include "libpspp/pool.h"
30 #include "libpspp/str.h"
31 #include "libpspp/hash-functions.h"
32
33 #include "gl/xalloc.h"
34
35 struct value_node
36 {
37   struct hmap_node node;      /* Node in hash map. */
38
39   union value val;            /* The value */
40
41 };
42
43 struct interaction_value
44 {
45   struct hmap_node node;        /* Node in hash map. */
46
47   struct ccase *ccase;          /* A case (probably the first in the dataset) which matches this value */
48
49   /* Total of the weights of cases matching this interaction */
50   double cc; 
51
52   void *user_data;            /* A pointer to data which the caller can store stuff */
53 };
54
55 static struct value_node *
56 lookup_value (const struct hmap *map, const union value *val, unsigned int hash, int width)
57 {
58   struct value_node *vn = NULL;
59   HMAP_FOR_EACH_WITH_HASH (vn, struct value_node, node, hash, map)
60     {
61       if (value_equal (&vn->val, val, width))
62         break;
63     }
64   
65   return vn;
66 }
67
68 struct variable_node
69 {
70   struct hmap_node node;      /* Node in hash map. */
71   const struct variable *var; /* The variable */
72
73   struct hmap valmap;         /* A map of value nodes */
74 };
75
76 static void
77 dump_interaction (const struct interaction *iact)
78 {
79   struct string str = DS_EMPTY_INITIALIZER;
80   interaction_to_string (iact, &str);
81   printf ("Interaction: %s\n", ds_cstr (&str));
82   ds_destroy (&str);
83 }
84
85
86 static struct variable_node *
87 lookup_variable (const struct hmap *map, const struct variable *var, unsigned int hash)
88 {
89   struct variable_node *vn = NULL;
90   HMAP_FOR_EACH_WITH_HASH (vn, struct variable_node, node, hash, map)
91     {
92       if (vn->var == var)
93         break;
94       
95       fprintf (stderr, "Warning: Hash table collision\n");
96     }
97   
98   return vn;
99 }
100
101
102 struct interact_params
103 {
104   /* A map indexed by a interaction_value */
105   struct hmap ivmap;
106
107   const struct interaction *iact;
108
109   int base_subscript_short;
110   int base_subscript_long;
111
112   /* The number of distinct values of this interaction */
113   int n_cats;
114
115   /* The degrees of freedom for this interaction */
116   int df; 
117
118   /* A map of interaction_values indexed by subscript */
119   struct interaction_value **reverse_interaction_value_map;
120
121   double cc;
122 };
123
124
125 /* Comparison function to sort the reverse_value_map in ascending order */
126 static int
127 compare_interaction_value_3way (const void *vn1_, const void *vn2_, const void *aux)
128 {
129   const struct interaction_value *const *vn1p = vn1_;
130   const struct interaction_value *const *vn2p = vn2_;
131
132   const struct interact_params *iap = aux;
133
134   return interaction_case_cmp_3way (iap->iact, (*vn1p)->ccase, (*vn2p)->ccase);
135 }
136
137 struct categoricals
138 {
139   /* The weight variable */
140   const struct variable *wv;
141
142   /* An array of interact_params */
143   struct interact_params *iap;
144
145   /* Map whose members are the union of the variables which comprise IAP */
146   struct hmap varmap;
147
148   /* The size of IAP. (ie, the number of interactions involved.) */
149   size_t n_iap;
150
151   /* The number of categorical variables which contain entries.
152      In the absence of missing values, this will be equal to N_IAP */
153   size_t n_vars;
154
155   size_t df_sum;
156
157   /* A map to enable the lookup of variables indexed by subscript.
158      This map considers only the N - 1 of the N variables.
159    */
160   int *reverse_variable_map_short;
161
162   /* Like the above, but uses all N variables */
163   int *reverse_variable_map_long;
164
165   size_t n_cats_total;
166
167   struct pool *pool;
168
169   /* Missing values to be excluded */
170   enum mv_class exclude;
171
172   /* Function to be called on each update */
173   update_func *update;
174
175   /* Function specified by the caller to create user_data */
176   user_data_create_func *user_data_create;
177
178   /* Auxilliary data to be passed to update and user_data_create_func*/
179   void *aux1;
180   void *aux2;
181 };
182
183
184 static void
185 categoricals_dump (const struct categoricals *cat)
186 {
187   int i;
188
189   printf ("Reverse Variable Map (short):\n");
190   for (i = 0; i < cat->df_sum; ++i)
191     {
192       printf (" %d", cat->reverse_variable_map_short[i]);
193     }
194   printf ("\n");
195
196   printf ("Reverse Variable Map (long):\n");
197   for (i = 0; i < cat->n_cats_total; ++i)
198     {
199       printf (" %d", cat->reverse_variable_map_long[i]);
200     }
201   printf ("\n");
202
203
204   printf ("Number of interactions %d\n", cat->n_iap);
205   for (i = 0 ; i < cat->n_iap; ++i)
206     {
207       int v;
208       struct string str;
209       const struct interact_params *iap = &cat->iap[i];
210       const struct interaction *iact = iap->iact;
211
212       ds_init_empty (&str);
213       interaction_to_string (iact, &str);
214
215       printf ("\nInteraction: %s (n: %d; df: %d ); ", ds_cstr (&str), iap->n_cats, iap->df);
216       ds_destroy (&str);
217       printf ("Base subscript: %d\n", iap->base_subscript_short);
218
219       printf ("\t(");
220       for (v = 0; v < hmap_count (&iap->ivmap); ++v)
221         {
222           int vv;
223           const struct interaction_value *iv = iap->reverse_interaction_value_map[v];
224           
225           if (v > 0)  printf ("   ");
226           printf ("{");
227           for (vv = 0; vv < iact->n_vars; ++vv)
228             {
229               const struct variable *var = iact->vars[vv];
230               const union value *val = case_data (iv->ccase, var);
231               
232               printf ("%g", val->f);
233               if (vv < iact->n_vars - 1)
234                 printf (", ");
235             }
236           printf ("}");
237         }
238       printf (")\n");
239     }
240 }
241
242
243 void
244 categoricals_destroy (struct categoricals *cat)
245 {
246   struct variable_node *vn = NULL;
247   int i;
248   for (i = 0; i < cat->n_iap; ++i)
249     {
250       struct interaction_value *iv = NULL;
251       /* Interate over each interaction value, and unref any cases that we reffed */
252       HMAP_FOR_EACH (iv, struct interaction_value, node, &cat->iap[i].ivmap)
253         {
254           case_unref (iv->ccase);
255         }
256       hmap_destroy (&cat->iap[i].ivmap);
257     }
258
259   /* Interate over each variable and delete its value map */
260   HMAP_FOR_EACH (vn, struct variable_node, node, &cat->varmap)
261     {
262       hmap_destroy (&vn->valmap);
263     }
264
265   hmap_destroy (&cat->varmap);
266
267   pool_destroy (cat->pool);
268
269   free (cat);
270 }
271
272
273
274 static struct interaction_value *
275 lookup_case (const struct hmap *map, const struct interaction *iact, const struct ccase *c)
276 {
277   struct interaction_value *iv = NULL;
278   size_t hash = interaction_case_hash (iact, c);
279
280   HMAP_FOR_EACH_WITH_HASH (iv, struct interaction_value, node, hash, map)
281     {
282       if (interaction_case_equal (iact, c, iv->ccase))
283         break;
284
285       fprintf (stderr, "Warning: Hash table collision\n");
286     }
287
288   return iv;
289 }
290
291
292 struct categoricals *
293 categoricals_create (struct interaction *const*inter, size_t n_inter,
294                      const struct variable *wv, enum mv_class exclude,
295                      user_data_create_func *udf,
296                      update_func *update, void *aux1, void *aux2
297                      )
298 {
299   size_t i;
300   struct categoricals *cat = xmalloc (sizeof *cat);
301   
302   cat->n_iap = n_inter;
303   cat->wv = wv;
304   cat->n_cats_total = 0;
305   cat->n_vars = 0;
306   cat->reverse_variable_map_short = NULL;
307   cat->reverse_variable_map_long = NULL;
308   cat->pool = pool_create ();
309   cat->exclude = exclude;
310   cat->update = update;
311   cat->user_data_create = udf;
312
313   cat->aux1 = aux1;
314   cat->aux2 = aux2;
315
316   cat->iap = pool_calloc (cat->pool, cat->n_iap, sizeof *cat->iap);
317
318   hmap_init (&cat->varmap);
319   for (i = 0 ; i < cat->n_iap; ++i)
320     {
321       int v;
322       hmap_init (&cat->iap[i].ivmap);
323       cat->iap[i].iact = inter[i];
324       cat->iap[i].cc = 0.0;
325       for (v = 0; v < inter[i]->n_vars; ++v)
326         {
327           const struct variable *var = inter[i]->vars[v];
328           unsigned int hash = hash_pointer (var, 0);
329           struct variable_node *vn = lookup_variable (&cat->varmap, var, hash);
330           if (vn == NULL)
331             {
332               vn = pool_malloc (cat->pool, sizeof *vn);
333               vn->var = var;
334               hmap_init (&vn->valmap);
335
336               hmap_insert (&cat->varmap, &vn->node,  hash);
337             }
338         }
339     }
340
341   return cat;
342 }
343
344
345
346 void
347 categoricals_update (struct categoricals *cat, const struct ccase *c)
348 {
349   int i;
350   struct variable_node *vn = NULL;
351   const double weight = cat->wv ? case_data (c, cat->wv)->f : 1.0;
352
353   assert (NULL == cat->reverse_variable_map_short);
354   assert (NULL == cat->reverse_variable_map_long);
355
356   /* Interate over each variable, and add the value of that variable
357      to the appropriate map, if it's not already present. */
358   HMAP_FOR_EACH (vn, struct variable_node, node, &cat->varmap)
359     {
360       const int width = var_get_width (vn->var);
361       const union value *val = case_data (c, vn->var);
362       unsigned int hash = value_hash (val, width, 0);
363
364       struct value_node *valn = lookup_value (&vn->valmap, val, hash, width);
365       if (valn == NULL)
366         {
367           valn = pool_malloc (cat->pool, sizeof *valn);
368           value_init (&valn->val, width);
369           value_copy (&valn->val, val, width);
370           hmap_insert (&vn->valmap, &valn->node, hash);
371         }
372     }     
373   
374
375   for (i = 0 ; i < cat->n_iap; ++i)
376     {
377       const struct interaction *iact = cat->iap[i].iact;
378
379       //      if ( interaction_case_is_missing (iact, c, cat->exclude))
380       //         continue;
381
382       size_t hash = interaction_case_hash (iact, c);
383       struct interaction_value *node = lookup_case (&cat->iap[i].ivmap, iact, c);
384
385       if ( NULL == node)
386         {
387           node = pool_malloc (cat->pool, sizeof *node);
388
389           node->ccase = case_ref (c);
390           node->cc = weight;
391
392           hmap_insert (&cat->iap[i].ivmap, &node->node, hash);
393
394           if (cat->user_data_create)
395             node->user_data = cat->user_data_create (cat->aux1, cat->aux2);
396         }
397       else
398         {
399           node->cc += weight;
400         }
401       cat->iap[i].cc += weight;
402
403       if (cat->update)
404         cat->update (node->user_data, cat->exclude, cat->wv, NULL, c, cat->aux1, cat->aux2);
405     }
406 }
407
408 /* Return the number of categories (distinct values) for interction N */
409 size_t
410 categoricals_n_count (const struct categoricals *cat, size_t n)
411 {
412   return hmap_count (&cat->iap[n].ivmap);
413 }
414
415
416 size_t
417 categoricals_df (const struct categoricals *cat, size_t n)
418 {
419   return cat->iap[n].df;
420 }
421
422
423 /* Return the total number of categories */
424 size_t
425 categoricals_n_total (const struct categoricals *cat)
426 {
427   assert (cat->reverse_variable_map_long);
428
429   return cat->n_cats_total;
430 }
431
432 size_t
433 categoricals_df_total (const struct categoricals *cat)
434 {
435   return cat->df_sum;
436 }
437
438 /* This function must be called *before* any call to categoricals_get_*_by subscript and
439  *after* all calls to categoricals_update */
440 void
441 categoricals_done (const struct categoricals *cat_)
442 {
443   /* Implementation Note: Whilst this function is O(n) in cat->n_cats_total, in most
444      uses it will be more efficient that using a tree based structure, since it
445      is called only once, and means that subsequent lookups will be O(1).
446
447      1 call of O(n) + 10^9 calls of O(1) is better than 10^9 calls of O(log n).
448   */
449   struct categoricals *cat = CONST_CAST (struct categoricals *, cat_);
450   int v;
451   int i;
452   int idx_short = 0;
453   int idx_long = 0;
454   cat->df_sum = 0;
455   cat->n_cats_total = 0;
456
457   /* Calculate the degrees of freedom, and the number of categories */
458   for (i = 0 ; i < cat->n_iap; ++i)
459     {
460       const struct interaction *iact = cat->iap[i].iact;
461
462       cat->iap[i].df = 1;
463       cat->iap[i].n_cats = 1;
464
465       for (v = 0 ; v < iact->n_vars; ++v)
466         {
467           const struct variable *var = iact->vars[v];
468
469           struct variable_node *vn = lookup_variable (&cat->varmap, var, hash_pointer (var, 0));
470
471           cat->iap[i].df *= hmap_count (&vn->valmap) - 1;
472           cat->iap[i].n_cats *= hmap_count (&vn->valmap);
473         }
474
475       cat->df_sum += cat->iap[i].df;
476       cat->n_cats_total += cat->iap[i].n_cats;
477     }
478
479
480   cat->reverse_variable_map_short = pool_calloc (cat->pool,
481                                                  cat->df_sum,
482                                                  sizeof *cat->reverse_variable_map_short);
483
484   cat->reverse_variable_map_long = pool_calloc (cat->pool,
485                                                 cat->n_cats_total,
486                                                 sizeof *cat->reverse_variable_map_long);
487
488   for (i = 0 ; i < cat->n_iap; ++i)
489     {
490       struct interaction_value *ivn = NULL;
491       int x = 0;
492       int ii;
493       struct interact_params *iap = &cat->iap[i];
494
495       iap->base_subscript_short = idx_short;
496       iap->base_subscript_long = idx_long;
497
498       iap->reverse_interaction_value_map = pool_calloc (cat->pool, iap->n_cats,
499                                                         sizeof *iap->reverse_interaction_value_map);
500
501       HMAP_FOR_EACH (ivn, struct interaction_value, node, &iap->ivmap)
502         {
503           iap->reverse_interaction_value_map[x++] = ivn;
504         }
505
506       assert (x <= iap->n_cats);
507
508       /* For some purposes (eg CONTRASTS in ONEWAY) the values need to be sorted */
509       sort (iap->reverse_interaction_value_map, x, sizeof (*iap->reverse_interaction_value_map),
510             compare_interaction_value_3way, iap);
511
512       /* Fill the remaining values with null */
513       for (ii = x ; ii < iap->n_cats; ++ii)
514         iap->reverse_interaction_value_map[ii] = NULL;
515
516       /* Populate the reverse variable maps. */
517       for (ii = 0; ii < iap->df; ++ii)
518         cat->reverse_variable_map_short[idx_short++] = i;
519
520       for (ii = 0; ii < iap->n_cats; ++ii)
521         cat->reverse_variable_map_long[idx_long++] = i;
522     }
523
524   assert (cat->n_vars <= cat->n_iap);
525
526   //  categoricals_dump (cat);
527 }
528
529
530 static int
531 reverse_variable_lookup_short (const struct categoricals *cat, int subscript)
532 {
533   assert (cat->reverse_variable_map_short);
534   assert (subscript >= 0);
535   assert (subscript < cat->df_sum);
536
537   return cat->reverse_variable_map_short[subscript];
538 }
539
540 static int
541 reverse_variable_lookup_long (const struct categoricals *cat, int subscript)
542 {
543   assert (cat->reverse_variable_map_long);
544   assert (subscript >= 0);
545   assert (subscript < cat->n_cats_total);
546
547   return cat->reverse_variable_map_long[subscript];
548 }
549
550
551 /* Return the interaction corresponding to SUBSCRIPT */
552 const struct interaction *
553 categoricals_get_interaction_by_subscript (const struct categoricals *cat, int subscript)
554 {
555   int index = reverse_variable_lookup_short (cat, subscript);
556
557   return cat->iap[index].iact;
558 }
559
560
561 /* Return the case corresponding to SUBSCRIPT */
562 static const struct ccase *
563 categoricals_get_case_by_subscript (const struct categoricals *cat, int subscript)
564 {
565   int vindex = reverse_variable_lookup_short (cat, subscript);
566   const struct interact_params *vp = &cat->iap[vindex];
567   const struct interaction_value *vn = vp->reverse_interaction_value_map [subscript - vp->base_subscript_short];
568
569   if ( vn == NULL)
570     return NULL;
571
572   return vn->ccase;
573 }
574
575
576 double
577 categoricals_get_weight_by_subscript (const struct categoricals *cat, int subscript)
578 {
579   int vindex = reverse_variable_lookup_short (cat, subscript);
580   const struct interact_params *vp = &cat->iap[vindex];
581
582   return vp->cc;
583 }
584
585 double
586 categoricals_get_sum_by_subscript (const struct categoricals *cat, int subscript)
587 {
588   int vindex = reverse_variable_lookup_short (cat, subscript);
589   const struct interact_params *vp = &cat->iap[vindex];
590
591   const struct interaction_value *iv = vp->reverse_interaction_value_map [subscript - vp->base_subscript_short];
592
593   if (iv == NULL)
594     return 0;
595
596   return iv->cc;
597 }
598
599 /* Returns unity if the value in case C at SUBSCRIPT is equal to the category
600    for that subscript */
601 double
602 categoricals_get_binary_by_subscript (const struct categoricals *cat, int subscript,
603                                       const struct ccase *c)
604 {
605   const struct interaction *iact = categoricals_get_interaction_by_subscript (cat, subscript);
606
607   const struct ccase *c2 =  categoricals_get_case_by_subscript (cat, subscript);
608
609   if ( c2 == NULL)
610     return 0;
611
612   return interaction_case_equal (iact, c, c2);
613 }
614
615
616 size_t
617 categoricals_get_n_variables (const struct categoricals *cat)
618 {
619   printf ("%s\n", __FUNCTION__);
620   return cat->n_vars;
621 }
622
623 /* Return a case containing the set of values corresponding to SUBSCRIPT */
624 const struct ccase *
625 categoricals_get_case_by_category (const struct categoricals *cat, int subscript)
626 {
627   int vindex = reverse_variable_lookup_long (cat, subscript);
628   const struct interact_params *vp = &cat->iap[vindex];
629   const struct interaction_value *vn = vp->reverse_interaction_value_map [subscript - vp->base_subscript_long];
630
631   return vn->ccase;
632 }
633
634 void *
635 categoricals_get_user_data_by_category (const struct categoricals *cat, int subscript)
636 {
637   int vindex = reverse_variable_lookup_long (cat, subscript);
638   const struct interact_params *vp = &cat->iap[vindex];
639
640   const struct interaction_value *iv = vp->reverse_interaction_value_map [subscript - vp->base_subscript_long];
641   return iv->user_data;
642 }