542f3008f8f5f234538694bd59d2f39a04514d1e
[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.
40    Returns true if successful,
41    false if the source encountered an I/O error during
42    destruction or reading cases. */
43 bool
44 free_case_source (struct case_source *source) 
45 {
46   bool ok = true;
47   if (source != NULL) 
48     {
49       if (source->class->destroy != NULL)
50         ok = source->class->destroy (source);
51       free (source);
52     }
53   return ok;
54 }
55
56 /* Returns true if CLASS is the class of SOURCE. */
57 bool
58 case_source_is_class (const struct case_source *source,
59                       const struct case_source_class *class) 
60 {
61   return source != NULL && source->class == class;
62 }