sys-file-reader: Break reading a system file into two stages.
[pspp] / src / data / sys-file-reader.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #ifndef SFM_READ_H
18 #define SFM_READ_H 1
19
20 #include <stdbool.h>
21 #include <stdio.h>
22
23 #include "data/case.h"
24 #include "data/sys-file.h"
25 #include "libpspp/float-format.h"
26 #include "libpspp/integer-format.h"
27
28 /* Reading system files.
29
30    To read a system file:
31
32       1. Open it with sfm_open().
33
34       2. Figure out what encoding to read it with.  sfm_get_encoding() can
35          help.
36
37       3. Obtain a casereader with sfm_decode().
38
39    If, after step 1 or 2, you decide that you don't want the system file
40    anymore, you can close it with sfm_close().  Otherwise, don't call
41    sfm_close(), because sfm_decode() consumes it. */
42
43 struct dictionary;
44 struct file_handle;
45 struct sfm_read_info;
46
47 /* Opening and closing an sfm_reader. */
48 struct sfm_reader *sfm_open (struct file_handle *);
49 bool sfm_close (struct sfm_reader *);
50
51 /* Obtaining information about an sfm_reader before . */
52 const char *sfm_get_encoding (const struct sfm_reader *);
53
54 /* Decoding a system file's dictionary and obtaining a casereader. */
55 struct casereader *sfm_decode (struct sfm_reader *, const char *encoding,
56                                struct dictionary **, struct sfm_read_info *);
57
58 /* Detecting whether a file is a system file. */
59 bool sfm_detect (FILE *);
60 \f
61 /* System file info that doesn't fit in struct dictionary.
62
63    The strings in this structure are encoded in UTF-8.  (They are normally in
64    the ASCII subset of UTF-8.) */
65 struct sfm_read_info
66   {
67     char *creation_date;        /* "dd mmm yy". */
68     char *creation_time;        /* "hh:mm:ss". */
69     enum integer_format integer_format;
70     enum float_format float_format;
71     enum sfm_compression compression;
72     casenumber case_cnt;        /* -1 if unknown. */
73     char *product;              /* Product name. */
74     char *product_ext;          /* Extra product info. */
75
76     /* Writer's version number in X.Y.Z format.
77        The version number is not always present; if not, then
78        all of these are set to 0. */
79     int version_major;          /* X. */
80     int version_minor;          /* Y. */
81     int version_revision;       /* Z. */
82   };
83
84 void sfm_read_info_destroy (struct sfm_read_info *);
85
86 #endif /* sys-file-reader.h */