860f236ec33af74b1ba8f53be1d5108a40644501
[pspp-builds.git] / src / data / datasheet.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2007, 2009 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_DATASHEET_H
18 #define DATA_DATASHEET_H 1
19
20 #include <data/case.h>
21 #include <data/value.h>
22
23 struct casereader;
24
25 /* A datasheet is a 2-d array of data that may be stored in
26    memory or on disk.  It efficiently supports data storage and
27    retrieval, as well as adding, removing, and rearranging both
28    rows and columns.  */
29
30 struct datasheet *datasheet_create (struct casereader *);
31 void datasheet_destroy (struct datasheet *);
32 struct datasheet *datasheet_rename (struct datasheet *);
33
34 bool datasheet_error (const struct datasheet *);
35 void datasheet_force_error (struct datasheet *);
36 const struct taint *datasheet_get_taint (const struct datasheet *);
37
38 struct casereader *datasheet_make_reader (struct datasheet *);
39
40 /* Columns. */
41 size_t datasheet_get_column_cnt (const struct datasheet *);
42 bool datasheet_insert_columns (struct datasheet *,
43                                const union value[], size_t cnt,
44                                size_t before);
45 void datasheet_delete_columns (struct datasheet *, size_t start, size_t cnt);
46 void datasheet_move_columns (struct datasheet *,
47                              size_t old_start, size_t new_start,
48                              size_t cnt);
49
50 /* Rows. */
51 casenumber datasheet_get_row_cnt (const struct datasheet *);
52 bool datasheet_insert_rows (struct datasheet *,
53                             casenumber before, struct ccase *[],
54                             casenumber cnt);
55 void datasheet_delete_rows (struct datasheet *,
56                             casenumber first, casenumber cnt);
57 void datasheet_move_rows (struct datasheet *,
58                           size_t old_start, size_t new_start,
59                           size_t cnt);
60
61 /* Data. */
62 struct ccase *datasheet_get_row (const struct datasheet *, casenumber);
63 bool datasheet_put_row (struct datasheet *, casenumber, struct ccase *);
64 bool datasheet_get_value (const struct datasheet *, casenumber, size_t column,
65                           union value *, int width);
66 bool datasheet_put_value (struct datasheet *, casenumber, size_t column,
67                           const union value *, int width);
68
69
70 unsigned int hash_datasheet (const struct datasheet *ds);
71 struct datasheet *clone_datasheet (const struct datasheet *ds);
72 #endif /* data/datasheet.h */