1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
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.
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.
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
25 #include <data/transformations.h>
26 #include <libpspp/compiler.h>
36 /* Transformations. */
38 void add_transformation (struct dataset *ds,
39 trns_proc_func *, trns_free_func *, void *);
40 void add_transformation_with_finalizer (struct dataset *ds,
43 trns_free_func *, void *);
44 size_t next_transformation (const struct dataset *ds);
46 void discard_variables (struct dataset *ds);
50 bool proc_cancel_all_transformations (struct dataset *ds);
51 struct trns_chain *proc_capture_transformations (struct dataset *ds);
53 void proc_start_temporary_transformations (struct dataset *ds);
54 bool proc_in_temporary_transformations (const struct dataset *ds);
55 bool proc_make_temporary_transformations_permanent (struct dataset *ds);
56 bool proc_cancel_temporary_transformations (struct dataset *ds);
60 struct dataset * create_dataset (void);
61 void destroy_dataset (struct dataset *);
63 void proc_set_source (struct dataset *ds, struct case_source *);
64 bool proc_has_source (const struct dataset *ds);
66 void proc_set_sink (struct dataset *ds, struct case_sink *);
67 struct casefile *proc_capture_output (struct dataset *ds);
69 typedef bool casefile_func (const struct casefile *, void *);
70 typedef bool case_func (const struct ccase *, void *, const struct dataset *);
71 typedef void begin_func (const struct ccase *, void *, const struct dataset*);
73 typedef bool end_func (void *, const struct dataset *);
75 typedef bool split_func (const struct ccase *, const struct casefile *,
76 void *, const struct dataset *);
80 bool procedure (struct dataset *ds, case_func *, void *aux) WARN_UNUSED_RESULT;
82 bool procedure_with_splits (struct dataset *ds,
88 bool multipass_procedure (struct dataset *ds, casefile_func *, void *aux)
90 bool multipass_procedure_with_splits (struct dataset *ds,
97 time_t time_of_last_procedure (struct dataset *ds);
100 struct ccase *lagged_case (const struct dataset *ds, int n_before);
102 inline struct dictionary *dataset_dict (const struct dataset *ds);
103 inline void dataset_set_dict ( struct dataset *ds, struct dictionary *dict);
105 inline int dataset_n_lag (const struct dataset *ds);
106 inline void dataset_set_n_lag (struct dataset *ds, int n_lag);
109 #endif /* procedure.h */