1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2007 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include <data/casewriter.h>
20 #include <data/casewriter-provider.h>
24 #include <libpspp/taint.h>
28 struct casewriter_translator
30 struct casewriter *subwriter;
32 void (*translate) (struct ccase *input, struct ccase *output, void *aux);
33 bool (*destroy) (void *aux);
37 static struct casewriter_class casewriter_translator_class;
39 /* Creates and returns a new casewriter whose cases are passed
40 through TRANSLATE, which must create case OUTPUT, with
41 OUTPUT_VALUE_CNT values, and populate it based on INPUT and
42 auxiliary data AUX. The translated cases are then written to
43 SUBWRITER. TRANSLATE must also destroy INPUT.
45 When the translating casewriter is destroyed, DESTROY will be
46 called to allow any state maintained by TRANSLATE to be freed.
48 After this function is called, SUBWRITER must not ever again
49 be referenced directly. It will be destroyed automatically
50 when the translating casewriter is destroyed. */
52 casewriter_create_translator (struct casewriter *subwriter,
53 size_t translated_value_cnt,
54 void (*translate) (struct ccase *input,
57 bool (*destroy) (void *aux),
60 struct casewriter_translator *ct = xmalloc (sizeof *ct);
61 struct casewriter *writer;
62 ct->subwriter = casewriter_rename (subwriter);
63 ct->translate = translate;
64 ct->destroy = destroy;
66 writer = casewriter_create (translated_value_cnt,
67 &casewriter_translator_class, ct);
68 taint_propagate (casewriter_get_taint (ct->subwriter),
69 casewriter_get_taint (writer));
74 casewriter_translator_write (struct casewriter *writer UNUSED,
75 void *ct_, struct ccase *c)
77 struct casewriter_translator *ct = ct_;
80 ct->translate (c, &tmp, ct->aux);
81 casewriter_write (ct->subwriter, &tmp);
85 casewriter_translator_destroy (struct casewriter *writer UNUSED, void *ct_)
87 struct casewriter_translator *ct = ct_;
88 casewriter_destroy (ct->subwriter);
89 ct->destroy (ct->aux);
93 static struct casereader *
94 casewriter_translator_convert_to_reader (struct casewriter *writer UNUSED,
97 struct casewriter_translator *ct = ct_;
98 struct casereader *reader = casewriter_make_reader (ct->subwriter);
100 ct->destroy (ct->aux);
104 static struct casewriter_class casewriter_translator_class =
106 casewriter_translator_write,
107 casewriter_translator_destroy,
108 casewriter_translator_convert_to_reader,