92a304829ca827b12dca5fb7bf8989cffa723ad3
[pspp-builds.git] / src / data / sys-file-reader.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #ifndef SFM_READ_H
21 #define SFM_READ_H 1
22
23 #include <stdbool.h>
24 #include <stdio.h>
25
26 #include <libpspp/float-format.h>
27 #include <libpspp/integer-format.h>
28
29 /* Reading system files. */
30
31 /* System file info that doesn't fit in struct dictionary. */
32 struct sfm_read_info
33   {
34     char creation_date[10];     /* `dd mmm yy' plus a null. */
35     char creation_time[9];      /* `hh:mm:ss' plus a null. */
36     enum integer_format integer_format;
37     enum float_format float_format;
38     bool compressed;            /* 0=no, 1=yes. */
39     int case_cnt;               /* -1 if unknown. */
40     char product[61];           /* Product name plus a null. */
41   };
42
43 struct dictionary;
44 struct file_handle;
45 struct ccase;
46 struct sfm_reader *sfm_open_reader (struct file_handle *,
47                                     struct dictionary **,
48                                     struct sfm_read_info *);
49 int sfm_read_case (struct sfm_reader *, struct ccase *);
50 bool sfm_read_error (const struct sfm_reader *);
51 void sfm_close_reader (struct sfm_reader *);
52 bool sfm_detect (FILE *);
53
54 #endif /* sys-file-reader.h */