Add new functions to define subcase orderings.
[pspp-builds.git] / src / data / subcase.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2008, 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_SUBCASE_H
18 #define DATA_SUBCASE_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22
23 struct ccase;
24 union value;
25 struct variable;
26
27 /* Sort order. */
28 enum subcase_direction
29   {
30     SC_ASCEND,                  /* A, B, C, ..., X, Y, Z. */
31     SC_DESCEND                  /* Z, Y, X, ..., C, B, A. */
32   };
33
34 /* A value within a case. */
35 struct subcase_field
36   {
37     size_t case_index;          /* Starting position in the case. */
38     int width;                  /* 0=numeric, otherwise string width. */
39     enum subcase_direction direction; /* Sort order. */
40   };
41
42 /* A subcase specifies how to draw values from a case. */
43 struct subcase
44   {
45     struct subcase_field *fields;
46     size_t n_fields;
47
48     struct caseproto *proto;    /* Created lazily. */
49   };
50
51 void subcase_init_empty (struct subcase *);
52 void subcase_init_vars (struct subcase *,
53                         const struct variable *const *, size_t n_vars);
54 void subcase_init_var (struct subcase *,
55                        const struct variable *, enum subcase_direction);
56 void subcase_init (struct subcase *, int index, int width,
57                    enum subcase_direction);
58
59 void subcase_clone (struct subcase *, const struct subcase *);
60 void subcase_clear (struct subcase *);
61 void subcase_destroy (struct subcase *);
62
63 bool subcase_add (struct subcase *sc, int index, int width,
64                   enum subcase_direction direction);
65
66 bool subcase_add_var (struct subcase *, const struct variable *,
67                       enum subcase_direction);
68
69 const struct caseproto *subcase_get_proto (const struct subcase *);
70
71 static inline bool subcase_is_empty (const struct subcase *);
72 static inline size_t subcase_get_n_fields (const struct subcase *);
73
74 static inline enum subcase_direction subcase_get_direction (
75   const struct subcase *, size_t idx);
76
77 bool subcase_conformable (const struct subcase *, const struct subcase *);
78
79 void subcase_extract (const struct subcase *, const struct ccase *,
80                       union value *values);
81 void subcase_inject (const struct subcase *,
82                      const union value *values, struct ccase *);
83 void subcase_copy (const struct subcase *src_sc, const struct ccase *src,
84                    const struct subcase *dst_sc, struct ccase *dst);
85
86 int subcase_compare_3way (const struct subcase *a_sc, const struct ccase *a,
87                           const struct subcase *b_sc, const struct ccase *b);
88 int subcase_compare_3way_xc (const struct subcase *,
89                              const union value *a, const struct ccase *b);
90 int subcase_compare_3way_cx (const struct subcase *,
91                              const struct ccase *a, const union value *b);
92 int subcase_compare_3way_xx (const struct subcase *,
93                              const union value *a, const union value *b);
94 bool subcase_equal (const struct subcase *a_sc, const struct ccase *a,
95                     const struct subcase *b_sc, const struct ccase *b);
96 bool subcase_equal_xc (const struct subcase *,
97                        const union value *a, const struct ccase *b);
98 bool subcase_equal_cx (const struct subcase *,
99                        const struct ccase *a, const union value *b);
100 bool subcase_equal_xx (const struct subcase *,
101                        const union value *a, const union value *b);
102
103 static inline enum subcase_direction
104 subcase_get_direction (const struct subcase *sc, size_t idx)
105 {
106   return sc->fields[idx].direction;
107 }
108
109 static inline bool
110 subcase_is_empty (const struct subcase *sc)
111 {
112   return sc->n_fields == 0;
113 }
114
115 static inline size_t
116 subcase_get_n_fields (const struct subcase *sc)
117 {
118   return sc->n_fields;
119 }
120
121 #endif /* data/subcase.h */