fabd4db289b42a46eab8368b35d82fd3ea532bb6
[pspp-builds.git] / src / math / group.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 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 #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 void
30 free_group (struct group_statistics *v, void *aux UNUSED)
31 {
32   free(v);
33 }
34
35 static void
36 group_proc_dtor (struct variable *var)
37 {
38   struct group_proc *group = var_detach_aux (var);
39
40   hsh_destroy (group->group_hash);
41   free (group);
42 }
43
44 struct group_proc *
45 group_proc_get (const struct variable *v)
46 {
47   /* This is not ideal, obviously. */
48   struct group_proc *group = var_get_aux (v);
49   if (group == NULL)
50     {
51       group = xzalloc (sizeof *group);
52       var_attach_aux (v, group, group_proc_dtor);
53     }
54   return group;
55 }