Change "union value" to dynamically allocate long strings.
[pspp-builds.git] / src / math / group.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009 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 #include <stdlib.h>
19 #include <libpspp/compiler.h>
20 #include <libpspp/hash.h>
21 #include "group.h"
22 #include "group-proc.h"
23 #include <libpspp/str.h>
24 #include <data/variable.h>
25 #include <libpspp/misc.h>
26
27 #include "xalloc.h"
28
29 /* Return -1 if the id of a is less than b; +1 if greater than and
30    0 if equal */
31 int
32 compare_group (const void *a_,
33                  const void *b_,
34                  const void *var)
35 {
36   const struct group_statistics *a = a_;
37   const struct group_statistics *b = b_;
38   return value_compare_3way (&a->id, &b->id, var_get_width (var));
39 }
40
41
42
43 unsigned int
44 hash_group (const void *g_, const void *var)
45 {
46   unsigned id_hash;
47   const struct group_statistics *g = g_;
48
49   id_hash = value_hash (&g->id, var_get_width (var), 0);
50
51   return id_hash;
52 }
53
54
55 void
56 free_group (struct group_statistics *v, void *aux UNUSED)
57 {
58   free(v);
59 }
60
61
62 struct group_proc *
63 group_proc_get (const struct variable *v)
64 {
65   /* This is not ideal, obviously. */
66   struct group_proc *group = var_get_aux (v);
67   if (group == NULL)
68     {
69       group = xmalloc (sizeof (struct group_proc));
70       var_attach_aux (v, group, var_dtor_free);
71     }
72   return group;
73 }