Change "union value" to dynamically allocate long strings.
[pspp-builds.git] / src / data / casereader.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2007, 2009 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 /* Casereader client interface.
18
19    A casereader abstracts interfaces through which cases may be
20    read.  A casereader may be a front-end for a system file, a
21    portable file, the active file in a data set, or anything else
22    on which a casereader interface has been overlaid.  Casereader
23    layering, in which a casereader acts as a filter or translator
24    on top of another casereader, is also supported.
25
26    There is no central interface for obtaining casereaders: a
27    casereader for reading a system file is obtained from the
28    system file reading module, and so on.  Once a casereader has
29    been obtained, by whatever means, the interface to it is
30    uniform.  The most important functions for casereader usage
31    are:
32
33      - casereader_read: Reads a case from the casereader.  The
34        case is consumed and cannot be read again.  The caller is
35        responsible for destroying the case.
36
37      - casereader_clone: Makes a copy of a casereader.  May be
38        used to read one or a set of cases from a casereader
39        repeatedly.
40
41      - casereader_destroy: Destroys a casereader.
42
43    Casereaders can encounter error conditions, such as I/O
44    errors, as they read cases.  Error conditions prevent any more
45    cases from being read from the casereader.  Error conditions
46    are reported by casereader_error.  Error condition may be
47    propagated to or from a casereader with taint_propagate using
48    the casereader's taint object, which may be obtained with
49    casereader_get_taint. */
50
51 #ifndef DATA_CASEREADER_H
52 #define DATA_CASEREADER_H 1
53
54 #include <libpspp/compiler.h>
55 #include <data/case.h>
56 #include <data/missing-values.h>
57
58 struct dictionary;
59 struct casereader;
60 struct casewriter;
61
62 struct ccase *casereader_read (struct casereader *);
63 bool casereader_destroy (struct casereader *);
64
65 struct casereader *casereader_clone (const struct casereader *);
66 void casereader_split (struct casereader *,
67                        struct casereader **, struct casereader **);
68 struct casereader *casereader_rename (struct casereader *);
69 void casereader_swap (struct casereader *, struct casereader *);
70
71 struct ccase *casereader_peek (struct casereader *, casenumber);
72 bool casereader_is_empty (struct casereader *);
73
74 bool casereader_error (const struct casereader *);
75 void casereader_force_error (struct casereader *);
76 const struct taint *casereader_get_taint (const struct casereader *);
77
78 casenumber casereader_get_case_cnt (struct casereader *);
79 casenumber casereader_count_cases (struct casereader *);
80 const struct caseproto *casereader_get_proto (const struct casereader *);
81
82 void casereader_transfer (struct casereader *, struct casewriter *);
83 \f
84 struct casereader *
85 casereader_create_filter_func (struct casereader *,
86                                bool (*include) (const struct ccase *,
87                                                 void *aux),
88                                bool (*destroy) (void *aux),
89                                void *aux,
90                                struct casewriter *exclude);
91 struct casereader *
92 casereader_create_filter_weight (struct casereader *,
93                                  const struct dictionary *dict,
94                                  bool *warn_on_invalid,
95                                  struct casewriter *exclude);
96 struct casereader *
97 casereader_create_filter_missing (struct casereader *,
98                                   const struct variable **vars, size_t var_cnt,
99                                   enum mv_class,
100                                   casenumber *n_missing,
101                                   struct casewriter *exclude);
102
103 struct casereader *
104 casereader_create_counter (struct casereader *, casenumber *counter,
105                            casenumber initial_value);
106
107 struct casereader *
108 casereader_create_translator (struct casereader *,
109                               const struct caseproto *output_proto,
110                               struct ccase *(*translate) (struct ccase *,
111                                                           void *aux),
112                               bool (*destroy) (void *aux),
113                               void *aux);
114
115 /* A function which creates a numberic value from an existing case */
116 typedef double new_value_func (const struct ccase *, casenumber, void *);
117
118 struct casereader *
119 casereader_create_append_numeric (struct casereader *subreader,
120                                   new_value_func func, void *aux,
121                                   void (*destroy) (void *aux));
122
123 struct casereader *
124 casereader_create_arithmetic_sequence (struct casereader *,
125                                        double first, double increment);
126
127 enum rank_error
128   {
129     RANK_ERR_NONE = 0,
130     RANK_ERR_NEGATIVE_WEIGHT = 0x01,
131     RANK_ERR_UNSORTED = 0x02
132   };
133
134
135 typedef void distinct_func (double v, casenumber n, double w, void *aux);
136
137 struct casereader *
138 casereader_create_append_rank (struct casereader *,
139                                const struct variable *v, const struct variable *w,
140                                enum rank_error *err,
141                                distinct_func *distinct_callback, void *aux);
142
143
144 #endif /* data/casereader.h */