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/case-map.h>
25 #include <data/casereader.h>
26 #include <data/casewriter-provider.h>
27 #include <data/casewriter.h>
28 #include <data/dictionary.h>
29 #include <data/file-handle-def.h>
30 #include <data/scratch-handle.h>
31 #include <data/variable.h>
32 #include <libpspp/compiler.h>
33 #include <libpspp/taint.h>
37 /* A scratch file writer. */
40 struct scratch_handle *handle; /* Underlying scratch handle. */
41 struct file_handle *fh; /* Underlying file handle. */
42 struct case_map *compactor; /* Compacts into handle->dictionary. */
43 struct casewriter *subwriter; /* Data output. */
46 static struct casewriter_class scratch_writer_casewriter_class;
48 /* Opens FH, which must have referent type FH_REF_SCRATCH, and
49 returns a scratch_writer for it, or a null pointer on
50 failure. Cases stored in the scratch_writer will be expected
51 to be drawn from DICTIONARY. */
53 scratch_writer_open (struct file_handle *fh,
54 const struct dictionary *dictionary)
56 struct scratch_handle *sh;
57 struct scratch_writer *writer;
58 struct dictionary *scratch_dict;
59 struct case_map *compactor;
60 struct casewriter *casewriter;
61 size_t dict_value_cnt;
63 if (!fh_open (fh, FH_REF_SCRATCH, "scratch file", "we"))
66 /* Destroy previous contents of handle. */
67 sh = fh_get_scratch_handle (fh);
69 scratch_handle_destroy (sh);
71 /* Copy the dictionary and compact if needed. */
72 scratch_dict = dict_clone (dictionary);
73 dict_delete_scratch_vars (scratch_dict);
74 if (dict_count_values (scratch_dict, 0)
75 < dict_get_next_value_idx (scratch_dict))
77 compactor = case_map_to_compact_dict (scratch_dict, 0);
78 dict_compact_values (scratch_dict);
82 dict_value_cnt = dict_get_next_value_idx (scratch_dict);
84 /* Create new contents. */
85 sh = xmalloc (sizeof *sh);
86 sh->dictionary = scratch_dict;
87 sh->casereader = NULL;
90 writer = xmalloc (sizeof *writer);
93 writer->compactor = compactor;
94 writer->subwriter = autopaging_writer_create (dict_value_cnt);
96 fh_set_scratch_handle (fh, sh);
97 casewriter = casewriter_create (dict_value_cnt,
98 &scratch_writer_casewriter_class, writer);
99 taint_propagate (casewriter_get_taint (writer->subwriter),
100 casewriter_get_taint (casewriter));
104 /* Writes case C to WRITER. */
106 scratch_writer_casewriter_write (struct casewriter *w UNUSED, void *writer_,
109 struct scratch_writer *writer = writer_;
111 if (writer->compactor)
113 case_map_execute (writer->compactor, c, &tmp);
118 casewriter_write (writer->subwriter, &tmp);
123 scratch_writer_casewriter_destroy (struct casewriter *w UNUSED, void *writer_)
125 struct scratch_writer *writer = writer_;
126 struct casereader *reader = casewriter_make_reader (writer->subwriter);
127 if (!casereader_error (reader))
128 writer->handle->casereader = reader;
129 fh_close (writer->fh, "scratch file", "we");
133 static struct casewriter_class scratch_writer_casewriter_class =
135 scratch_writer_casewriter_write,
136 scratch_writer_casewriter_destroy,