pxd: initial work
[pspp] / src / data / vector.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2006, 2010-2012  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_VECTOR_H
18 #define DATA_VECTOR_H 1
19
20 #include <stddef.h>
21 #include "data/val-type.h"
22
23 struct dictionary;
24 struct pxd;
25 struct variable;
26
27 struct vector *vector_create (const char *name,
28                               struct variable **var, size_t var_cnt);
29 struct vector *vector_clone (const struct vector *old,
30                              const struct dictionary *old_dict,
31                              const struct dictionary *new_dict);
32 void vector_destroy (struct vector *);
33
34 const char *vector_get_name (const struct vector *);
35 enum val_type vector_get_type (const struct vector *);
36 struct variable *vector_get_var (const struct vector *, size_t idx);
37 size_t vector_get_var_cnt (const struct vector *);
38
39 bool vector_is_valid_name (const char *name, bool issue_error);
40
41 int compare_vector_ptrs_by_name (const void *a_, const void *b_);
42
43 struct pxd_object *vector_save (const struct vector *, struct pxd *);
44 struct vector *vector_load (struct pxd_object *, const struct pxd *,
45                             const struct dictionary *);
46
47 #endif /* data/vector.h */