1166fcd280b04ec05dda3ac7dc7033d41133f666
[pspp] / src / data / dictionary.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2007, 2009, 2010, 2011, 2012, 2013 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 #ifndef DATA_DICTIONARY_H
18 #define DATA_DICTIONARY_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include "data/case.h"
23 #include "data/dict-class.h"
24
25 struct string;
26 struct ccase;
27
28 /* Creating dictionaries. */
29 struct dictionary *dict_create (const char *encoding);
30 struct dictionary *dict_clone (const struct dictionary *);
31
32
33 /* Clearing and destroying dictionaries. */
34 void dict_clear (struct dictionary *);
35 void dict_destroy (struct dictionary *);
36
37 /* Common ways to access variables. */
38 struct variable *dict_lookup_var (const struct dictionary *, const char *);
39 struct variable *dict_lookup_var_assert (const struct dictionary *,
40                                          const char *);
41 struct variable *dict_get_var (const struct dictionary *, size_t position);
42 size_t dict_get_var_cnt (const struct dictionary *);
43
44 /* Other access to variables. */
45 bool dict_contains_var (const struct dictionary *, const struct variable *);
46 void dict_get_vars (const struct dictionary *,
47                     const struct variable ***vars, size_t *cnt,
48                     enum dict_class exclude);
49 void dict_get_vars_mutable (const struct dictionary *,
50                             struct variable ***vars, size_t *cnt,
51                             enum dict_class exclude);
52
53 /* Creating variables. */
54 struct variable *dict_create_var (struct dictionary *, const char *,
55                                   int width);
56 struct variable *dict_create_var_assert (struct dictionary *, const char *,
57                                          int width);
58 struct variable *dict_clone_var (struct dictionary *, const struct variable *);
59 struct variable *dict_clone_var_assert (struct dictionary *,
60                                         const struct variable *);
61 struct variable *dict_clone_var_as (struct dictionary *,
62                                     const struct variable *, const char *);
63 struct variable *dict_clone_var_as_assert (struct dictionary *,
64                                            const struct variable *,
65                                            const char *);
66
67 struct variable *dict_clone_var_in_place_assert (struct dictionary *,
68                                                  const struct variable *);
69
70 /* Deleting variables. */
71 void dict_delete_var (struct dictionary *, struct variable *);
72 void dict_delete_vars (struct dictionary *,
73                        struct variable *const *, size_t count);
74 void dict_delete_consecutive_vars (struct dictionary *,
75                                    size_t idx, size_t count);
76 void dict_delete_scratch_vars (struct dictionary *);
77
78 /* Changing the order of variables. */
79 void dict_reorder_var (struct dictionary *, struct variable *,
80                        size_t new_index);
81 void dict_reorder_vars (struct dictionary *,
82                         struct variable *const *, size_t count);
83
84 /* Variable names. */
85 bool dict_try_rename_var (struct dictionary *,
86                           struct variable *, const char *);
87 void dict_rename_var (struct dictionary *, struct variable *, const char *);
88 bool dict_rename_vars (struct dictionary *,
89                        struct variable **, char **new_names,
90                        size_t count, char **err_name);
91 char *dict_make_unique_var_name (const struct dictionary *, const char *hint,
92                                  unsigned long int *num_start);
93
94 /* Weight variable. */
95 double dict_get_case_weight (const struct dictionary *,
96                              const struct ccase *, bool *);
97 struct variable *dict_get_weight (const struct dictionary *);
98 void dict_set_weight (struct dictionary *, struct variable *);
99
100 /* Filter variable. */
101 struct variable *dict_get_filter (const struct dictionary *);
102 void dict_set_filter (struct dictionary *, struct variable *);
103
104 /* Case limit (N OF CASES). */
105 casenumber dict_get_case_limit (const struct dictionary *);
106 void dict_set_case_limit (struct dictionary *, casenumber);
107
108 /* Size of cases for this dictionary. */
109 const struct caseproto *dict_get_proto (const struct dictionary *);
110 int dict_get_next_value_idx (const struct dictionary *);
111 size_t dict_get_case_size (const struct dictionary *);
112
113 /* Making this dictionary's cases smaller (if some variables were
114    deleted). */
115 size_t dict_count_values (const struct dictionary *,
116                           unsigned int exclude_classes);
117 void dict_compact_values (struct dictionary *);
118 struct caseproto *dict_get_compacted_proto (const struct dictionary *,
119                                             unsigned int exclude_classes);
120
121 /* SPLIT FILE variables. */
122 const struct variable *const *dict_get_split_vars (const struct dictionary *);
123 size_t dict_get_split_cnt (const struct dictionary *);
124 void dict_set_split_vars (struct dictionary *,
125                           struct variable *const *, size_t cnt);
126
127 /* File label. */
128 const char *dict_get_label (const struct dictionary *);
129 void dict_set_label (struct dictionary *, const char *);
130
131 /* Documents. */
132 #define DOC_LINE_LENGTH 80 /* Fixed length of document lines. */
133
134 const struct string_array *dict_get_documents (const struct dictionary *);
135 void dict_set_documents (struct dictionary *, const struct string_array *);
136 void dict_set_documents_string (struct dictionary *, const char *);
137 void dict_clear_documents (struct dictionary *);
138
139 bool dict_add_document_line (struct dictionary *, const char *,
140                              bool issue_warning);
141 size_t dict_get_document_line_cnt (const struct dictionary *);
142 const char *dict_get_document_line (const struct dictionary *, size_t);
143
144 /* Vectors. */
145 bool dict_create_vector (struct dictionary *, const char *name,
146                          struct variable **, size_t cnt);
147 void dict_create_vector_assert (struct dictionary *, const char *name,
148                                 struct variable **, size_t cnt);
149 const struct vector *dict_get_vector (const struct dictionary *, size_t idx);
150 size_t dict_get_vector_cnt (const struct dictionary *);
151 const struct vector *dict_lookup_vector (const struct dictionary *,
152                                          const char *name);
153 void dict_clear_vectors (struct dictionary *);
154
155 /* Multiple response sets. */
156 const struct mrset *dict_get_mrset (const struct dictionary *, size_t idx);
157 size_t dict_get_n_mrsets (const struct dictionary *);
158 const struct mrset *dict_lookup_mrset (const struct dictionary *,
159                                        const char *name);
160
161 bool dict_add_mrset (struct dictionary *, struct mrset *);
162 bool dict_delete_mrset (struct dictionary *, const char *name);
163 void dict_clear_mrsets (struct dictionary *);
164
165 /* Attributes. */
166 struct attrset *dict_get_attributes (const struct dictionary *);
167 void dict_set_attributes (struct dictionary *, const struct attrset *);
168 bool dict_has_attributes (const struct dictionary *);
169
170 /* Data encoding. */
171 const char *dict_get_encoding (const struct dictionary *d);
172
173 bool dict_id_is_valid (const struct dictionary *, const char *id,
174                        bool issue_error);
175
176 /* Internal variables. */
177 struct variable *dict_create_internal_var (int case_idx, int width);
178 void dict_destroy_internal_var (struct variable *);
179
180 /* Functions to be called upon dictionary changes. */
181 struct dict_callbacks
182  {
183   void (*var_added) (struct dictionary *, int, void *);
184   void (*var_deleted) (struct dictionary *, const struct variable *,
185                        int dict_index, int case_index, void *);
186   void (*var_changed) (struct dictionary *, int, unsigned int, const struct variable *, void *);
187   void (*weight_changed) (struct dictionary *, int, void *);
188   void (*filter_changed) (struct dictionary *, int, void *);
189   void (*split_changed) (struct dictionary *, void *);
190  };
191
192 void dict_set_callbacks (struct dictionary *, const struct dict_callbacks *,
193                          void *);
194 void dict_copy_callbacks (struct dictionary *, const struct dictionary *);
195
196 void dict_set_change_callback (struct dictionary *d,
197                                void (*changed) (struct dictionary *, void*),
198                                void *data);
199
200
201 /* Debug use only. */
202 void dict_dump (const struct dictionary *);
203
204 #endif /* data/dictionary.h */