case-map: Make creating a case_map destroy the stage.
[pspp.git] / src / data / case-map.h
blob9baa412c5ca5ceca0a829b4cc4b01e484f73c6ee
1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2007, 2009, 2012 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/>.
18 /* Case map.
20 A case map copies data from a case that corresponds to one
21 dictionary to a case that corresponds to a second dictionary.
22 A few options are available for ways to create the mapping. */
24 #ifndef DATA_CASE_MAP_H
25 #define DATA_CASE_MAP_H 1
27 #include <stddef.h>
29 struct case_map;
30 struct casereader;
31 struct casewriter;
32 struct ccase;
33 struct dictionary;
35 void case_map_destroy (struct case_map *);
36 struct ccase *case_map_execute (const struct case_map *, struct ccase *);
38 const struct caseproto *case_map_get_proto (const struct case_map *);
40 struct casereader *case_map_create_input_translator (struct case_map *,
41 struct casereader *);
42 struct casewriter *case_map_create_output_translator (struct case_map *,
43 struct casewriter *);
45 /* For mapping cases for one version of a dictionary to those in
46 a modified version of the same dictionary. */
47 struct case_map_stage *case_map_stage_create (const struct dictionary *);
48 void case_map_stage_destroy (struct case_map_stage *);
49 struct case_map *case_map_stage_to_case_map (struct case_map_stage *);
51 /* For mapping cases for one dictionary to another based on
52 variable names within the dictionary. */
53 struct case_map *case_map_by_name (const struct dictionary *old,
54 const struct dictionary *new);
56 void case_map_dump (const struct case_map *);
58 #endif /* data/case-map.h */