1 /* PSPP - computes sample statistics.
2 Copyright (C) 2006 Free Software Foundation, Inc.
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.
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.
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
21 #include "scratch-reader.h"
26 #include "dictionary.h"
27 #include "file-handle-def.h"
28 #include "scratch-handle.h"
29 #include <data/case.h>
30 #include <libpspp/message.h>
35 #define _(msgid) gettext (msgid)
37 /* A reader for a scratch file. */
40 struct file_handle *fh; /* Underlying file handle. */
41 struct casereader *casereader; /* Case reader. */
44 /* Opens FH, which must have referent type FH_REF_SCRATCH, and
45 returns a scratch_reader for it, or a null pointer on
46 failure. Stores the dictionary for the scratch file into
49 If you use an any_reader instead, then your code can be more
50 flexible without being any harder to write. */
51 struct scratch_reader *
52 scratch_reader_open (struct file_handle *fh, struct dictionary **dict)
54 struct scratch_handle *sh;
55 struct scratch_reader *reader;
57 if (!fh_open (fh, FH_REF_SCRATCH, "scratch file", "rs"))
60 sh = fh_get_scratch_handle (fh);
63 msg (SE, _("Scratch file handle %s has not yet been written, "
64 "using SAVE or another procedure, so it cannot yet "
65 "be used for reading."),
70 *dict = dict_clone (sh->dictionary);
71 reader = xmalloc (sizeof *reader);
73 reader->casereader = casefile_get_reader (sh->casefile, NULL);
77 /* Reads a case from READER and copies it into C.
78 Returns true if successful, false on error or at end of file. */
80 scratch_reader_read_case (struct scratch_reader *reader, struct ccase *c)
83 if (casereader_read (reader->casereader, &tmp))
85 case_copy (c, 0, &tmp, 0,
86 casefile_get_value_cnt (
87 casereader_get_casefile (reader->casereader)));
95 /* Returns true if an I/O error occurred on READER, false otherwise. */
97 scratch_reader_error (const struct scratch_reader *reader)
99 return casefile_error (casereader_get_casefile (reader->casereader));
104 scratch_reader_close (struct scratch_reader *reader)
106 fh_close (reader->fh, "scratch file", "rs");
107 casereader_destroy (reader->casereader);