577225ac18c111ec3858114bd0eec57eff3e5f91
[pspp-builds.git] / src / data / casewriter.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2007 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 #ifndef DATA_CASEWRITER_H
20 #define DATA_CASEWRITER_H 1
21
22 #include <stdbool.h>
23 #include <stddef.h>
24 #include <data/transformations.h>
25 #include <libpspp/compiler.h>
26
27 struct casewriter;
28
29 void casewriter_write (struct casewriter *, struct ccase *);
30 bool casewriter_destroy (struct casewriter *);
31
32 struct casereader *casewriter_make_reader (struct casewriter *);
33
34 struct casewriter *casewriter_rename (struct casewriter *);
35
36 bool casewriter_error (const struct casewriter *);
37 void casewriter_force_error (struct casewriter *);
38 const struct taint *casewriter_get_taint (const struct casewriter *);
39
40 struct casewriter *mem_writer_create (size_t value_cnt);
41 struct casewriter *tmpfile_writer_create (size_t value_cnt);
42 struct casewriter *autopaging_writer_create (size_t value_cnt);
43 \f
44 struct casewriter *
45 casewriter_create_translator (struct casewriter *,
46                               void (*translate) (const struct ccase *input,
47                                                  struct ccase *output,
48                                                  void *aux),
49                               bool (*destroy) (void *aux),
50                               void *aux);
51
52 #endif /* data/casewriter.h */