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);
61 struct dataset *create_dataset (void);
62 void destroy_dataset (struct dataset *);
64 void proc_set_source (struct dataset *ds, struct case_source *);
65 bool proc_has_source (const struct dataset *ds);
67 void proc_set_sink (struct dataset *ds, struct case_sink *);
68 struct casefile *proc_capture_output (struct dataset *ds);
70 typedef bool casefile_func (const struct casefile *, void *);
71 typedef bool case_func (const struct ccase *, void *, const struct dataset *);
72 typedef void begin_func (const struct ccase *, void *, const struct dataset*);
74 typedef bool end_func (void *, const struct dataset *);
76 typedef bool split_func (const struct ccase *, const struct casefile *,
77 void *, const struct dataset *);
81 bool procedure (struct dataset *ds, case_func *, void *aux) WARN_UNUSED_RESULT;
83 bool procedure_with_splits (struct dataset *ds,
89 bool multipass_procedure (struct dataset *ds, casefile_func *, void *aux)
91 bool multipass_procedure_with_splits (struct dataset *ds,
98 time_t time_of_last_procedure (struct dataset *ds);
101 struct ccase *lagged_case (const struct dataset *ds, int n_before);
103 inline struct dictionary *dataset_dict (const struct dataset *ds);
104 inline void dataset_set_dict ( struct dataset *ds, struct dictionary *dict);
106 inline int dataset_n_lag (const struct dataset *ds);
107 inline void dataset_set_n_lag (struct dataset *ds, int n_lag);
110 #endif /* procedure.h */