a528d8a317592cd63163e57fbda3763c2b5b85d1
[pspp-builds.git] / src / data / scratch-reader.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006 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 #include <config.h>
20
21 #include "scratch-reader.h"
22
23 #include <stdlib.h>
24
25 #include "dictionary.h"
26 #include "file-handle-def.h"
27 #include "scratch-handle.h"
28 #include <data/case.h>
29 #include <data/casereader.h>
30 #include <libpspp/message.h>
31
32 #include "xalloc.h"
33
34 #include "gettext.h"
35 #define _(msgid) gettext (msgid)
36
37 /* Opens FH, which must have referent type FH_REF_SCRATCH, and
38    returns a scratch_reader for it, or a null pointer on
39    failure.  Stores the dictionary for the scratch file into
40    *DICT. */
41 struct casereader *
42 scratch_reader_open (struct file_handle *fh, struct dictionary **dict)
43 {
44   struct scratch_handle *sh;
45
46   if (!fh_open (fh, FH_REF_SCRATCH, "scratch file", "rs"))
47     return NULL;
48
49   sh = fh_get_scratch_handle (fh);
50   if (sh == NULL || sh->casereader == NULL)
51     {
52       msg (SE, _("Scratch file handle %s has not yet been written, "
53                  "using SAVE or another procedure, so it cannot yet "
54                  "be used for reading."),
55            fh_get_name (fh));
56       return NULL;
57     }
58
59   *dict = dict_clone (sh->dictionary);
60   return casereader_clone (sh->casereader);
61 }