1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2007, 2009 Free Software Foundation, Inc.
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.
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.
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/>. */
17 /* Casereader client interface.
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.
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
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.
37 - casereader_clone: Makes a copy of a casereader. May be
38 used to read one or a set of cases from a casereader
41 - casereader_destroy: Destroys a casereader.
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. */
51 #ifndef DATA_CASEREADER_H
52 #define DATA_CASEREADER_H 1
54 #include <libpspp/compiler.h>
55 #include <data/case.h>
56 #include <data/missing-values.h>
62 struct ccase *casereader_read (struct casereader *);
63 bool casereader_destroy (struct casereader *);
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 *);
71 struct ccase *casereader_peek (struct casereader *, casenumber);
72 bool casereader_is_empty (struct casereader *);
74 bool casereader_error (const struct casereader *);
75 void casereader_force_error (struct casereader *);
76 const struct taint *casereader_get_taint (const struct casereader *);
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 *);
82 void casereader_transfer (struct casereader *, struct casewriter *);
85 casereader_create_filter_func (struct casereader *,
86 bool (*include) (const struct ccase *,
88 bool (*destroy) (void *aux),
90 struct casewriter *exclude);
92 casereader_create_filter_weight (struct casereader *,
93 const struct dictionary *dict,
94 bool *warn_on_invalid,
95 struct casewriter *exclude);
97 casereader_create_filter_missing (struct casereader *,
98 const struct variable **vars, size_t var_cnt,
100 casenumber *n_missing,
101 struct casewriter *exclude);
104 casereader_create_counter (struct casereader *, casenumber *counter,
105 casenumber initial_value);
108 casereader_create_translator (struct casereader *,
109 const struct caseproto *output_proto,
110 struct ccase *(*translate) (struct ccase *,
112 bool (*destroy) (void *aux),
115 /* A function which creates a numberic value from an existing case */
116 typedef double new_value_func (const struct ccase *, casenumber, void *);
119 casereader_create_append_numeric (struct casereader *subreader,
120 new_value_func func, void *aux,
121 void (*destroy) (void *aux));
124 casereader_create_arithmetic_sequence (struct casereader *,
125 double first, double increment);
130 RANK_ERR_NEGATIVE_WEIGHT = 0x01,
131 RANK_ERR_UNSORTED = 0x02
135 typedef void distinct_func (double v, casenumber n, double w, void *aux);
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);
144 #endif /* data/casereader.h */