1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2006 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 "scratch-writer.h"
23 #include <data/case.h>
24 #include <data/casereader.h>
25 #include <data/casewriter-provider.h>
26 #include <data/casewriter.h>
27 #include <data/dictionary.h>
28 #include <data/file-handle-def.h>
29 #include <data/scratch-handle.h>
30 #include <libpspp/compiler.h>
31 #include <libpspp/taint.h>
35 /* A scratch file writer. */
38 struct scratch_handle *handle; /* Underlying scratch handle. */
39 struct file_handle *fh; /* Underlying file handle. */
40 struct dict_compactor *compactor; /* Compacts into handle->dictionary. */
41 struct casewriter *subwriter; /* Data output. */
44 static struct casewriter_class scratch_writer_casewriter_class;
46 /* Opens FH, which must have referent type FH_REF_SCRATCH, and
47 returns a scratch_writer for it, or a null pointer on
48 failure. Cases stored in the scratch_writer will be expected
49 to be drawn from DICTIONARY. */
51 scratch_writer_open (struct file_handle *fh,
52 const struct dictionary *dictionary)
54 struct scratch_handle *sh;
55 struct scratch_writer *writer;
56 struct dictionary *scratch_dict;
57 struct dict_compactor *compactor;
58 struct casewriter *casewriter;
60 if (!fh_open (fh, FH_REF_SCRATCH, "scratch file", "we"))
63 /* Destroy previous contents of handle. */
64 sh = fh_get_scratch_handle (fh);
66 scratch_handle_destroy (sh);
68 /* Copy the dictionary and compact if needed. */
69 scratch_dict = dict_clone (dictionary);
70 if (dict_compacting_would_shrink (scratch_dict))
72 compactor = dict_make_compactor (scratch_dict);
73 dict_compact_values (scratch_dict);
78 /* Create new contents. */
79 sh = xmalloc (sizeof *sh);
80 sh->dictionary = scratch_dict;
81 sh->casereader = NULL;
84 writer = xmalloc (sizeof *writer);
87 writer->compactor = compactor;
88 writer->subwriter = autopaging_writer_create (dict_get_next_value_idx (
91 fh_set_scratch_handle (fh, sh);
92 casewriter = casewriter_create (&scratch_writer_casewriter_class, writer);
93 taint_propagate (casewriter_get_taint (writer->subwriter),
94 casewriter_get_taint (casewriter));
98 /* Writes case C to WRITER. */
100 scratch_writer_casewriter_write (struct casewriter *w UNUSED, void *writer_,
103 struct scratch_writer *writer = writer_;
104 struct scratch_handle *handle = writer->handle;
106 if (writer->compactor)
108 case_create (&tmp, dict_get_next_value_idx (handle->dictionary));
109 dict_compactor_compact (writer->compactor, &tmp, c);
114 casewriter_write (writer->subwriter, &tmp);
119 scratch_writer_casewriter_destroy (struct casewriter *w UNUSED, void *writer_)
121 struct scratch_writer *writer = writer_;
122 struct casereader *reader = casewriter_make_reader (writer->subwriter);
123 if (!casereader_error (reader))
124 writer->handle->casereader = reader;
125 fh_close (writer->fh, "scratch file", "we");
129 static struct casewriter_class scratch_writer_casewriter_class =
131 scratch_writer_casewriter_write,
132 scratch_writer_casewriter_destroy,