Remove "Written by Ben Pfaff <blp@gnu.org>" lines everywhere.
[pspp-builds.git] / src / data / case-source.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    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, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #include <config.h>
20
21 #include <data/case-source.h>
22
23 #include <stdlib.h>
24
25 #include "xalloc.h"
26
27 /* Creates a case source with class CLASS and auxiliary data AUX
28    and based on dictionary DICT. */
29 struct case_source *
30 create_case_source (const struct case_source_class *class,
31                     void *aux) 
32 {
33   struct case_source *source = xmalloc (sizeof *source);
34   source->class = class;
35   source->aux = aux;
36   return source;
37 }
38
39 /* Destroys case source SOURCE.  It is the caller's responsible to
40    call the source's destroy function, if any. */
41 void
42 free_case_source (struct case_source *source) 
43 {
44   if (source != NULL) 
45     {
46       if (source->class->destroy != NULL)
47         source->class->destroy (source);
48       free (source);
49     }
50 }
51
52 /* Returns true if CLASS is the class of SOURCE. */
53 bool
54 case_source_is_class (const struct case_source *source,
55                       const struct case_source_class *class) 
56 {
57   return source != NULL && source->class == class;
58 }