Rewrite expression code.
[pspp-builds.git] / src / var.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #if !var_h
21 #define var_h 1
22
23 #include <stddef.h>
24 #include "format.h"
25 #include "val.h"
26
27 /* Script variables. */
28
29 /* Variable type. */
30 enum
31   {
32     NUMERIC,                    /* A numeric variable. */
33     ALPHA                       /* A string variable.  (STRING is pre-empted by lexer.h) */
34   };
35
36 /* Types of missing values.  Order is significant, see
37    mis-val.c:parse_numeric(), sfm-read.c, sfm-write.c,
38    sysfile-info.c:cmd_sysfile_info(), mis-val.c:copy_missing_values(),
39    pfm-read.c:read_variables(), pfm-write.c:write_variables(),
40    apply-dict.c:cmd_apply_dictionary(), and more (?). */
41 enum
42   {
43     MISSING_NONE,               /* No user-missing values. */
44     MISSING_1,                  /* One user-missing value. */
45     MISSING_2,                  /* Two user-missing values. */
46     MISSING_3,                  /* Three user-missing values. */
47     MISSING_RANGE,              /* [a,b]. */
48     MISSING_LOW,                /* (-inf,a]. */
49     MISSING_HIGH,               /* (a,+inf]. */
50     MISSING_RANGE_1,            /* [a,b], c. */
51     MISSING_LOW_1,              /* (-inf,a], b. */
52     MISSING_HIGH_1,             /* (a,+inf), b. */
53     MISSING_COUNT
54   };
55
56 #define MAX_VAR_NAME_LEN 8
57
58 /* A variable's dictionary entry.  */
59 struct variable
60   {
61     char name[MAX_VAR_NAME_LEN + 1]; /* As a string. */
62     int index;                  /* Index into its dictionary's var[]. */
63     int type;                   /* NUMERIC or ALPHA. */
64
65     int width;                  /* Size of string variables in chars. */
66     int fv, nv;                 /* Index into `value's, number of values. */
67     unsigned init : 1;          /* 1=VFM must init and possibly reinit. */
68     unsigned reinit : 1;        /* Cases are: 1=reinitialized; 0=left. */
69
70     /* Missing values. */
71     int miss_type;              /* One of the MISSING_* constants. */
72     union value missing[3];     /* User-missing value. */
73
74     /* Display formats. */
75     struct fmt_spec print;      /* Default format for PRINT. */
76     struct fmt_spec write;      /* Default format for WRITE. */
77
78     /* Labels. */
79     struct val_labs *val_labs;  /* Value labels. */
80     char *label;                /* Variable label. */
81
82     /* Per-command info. */
83     void *aux;
84     void (*aux_dtor) (struct variable *);
85   };
86
87 int compare_var_names (const void *, const void *, void *);
88 unsigned hash_var_name (const void *, void *);
89 int compare_var_ptr_names (const void *, const void *, void *);
90 unsigned hash_var_ptr_name (const void *, void *);
91
92 void *var_attach_aux (struct variable *,
93                       void *aux, void (*aux_dtor) (struct variable *));
94 void var_clear_aux (struct variable *);
95 void *var_detach_aux (struct variable *);
96 void var_dtor_free (struct variable *);
97
98 /* Classes of variables. */
99 enum dict_class 
100   {
101     DC_ORDINARY,                /* Ordinary identifier. */
102     DC_SYSTEM,                  /* System variable. */
103     DC_SCRATCH                  /* Scratch variable. */
104   };
105
106 enum dict_class dict_class_from_id (const char *name);
107 const char *dict_class_to_name (enum dict_class dict_class);
108 \f
109 /* Vector of variables. */
110 struct vector
111   {
112     int idx;                    /* Index for dict_get_vector(). */
113     char name[9];               /* Name. */
114     struct variable **var;      /* Vector of variables. */
115     int cnt;                    /* Number of variables. */
116   };
117 \f
118 \f
119 void discard_variables (void);
120
121 /* This is the active file dictionary. */
122 extern struct dictionary *default_dict;
123 \f
124 /* Transformation state. */
125
126 /* Default file handle for DATA LIST, REREAD, REPEATING DATA
127    commands. */
128 extern struct file_handle *default_handle;
129
130 /* PROCESS IF expression. */
131 extern struct expression *process_if_expr;
132 \f
133 /* TEMPORARY support. */
134
135 /* 1=TEMPORARY has been executed at some point. */
136 extern int temporary;
137
138 /* If temporary!=0, the saved dictionary. */
139 extern struct dictionary *temp_dict;
140
141 /* If temporary!=0, index into t_trns[] (declared far below) that
142    gives the point at which data should be written out.  -1 means that
143    the data shouldn't be changed since all transformations are
144    temporary. */
145 extern int temp_trns;
146
147 /* If FILTER is active, whether it was executed before or after
148    TEMPORARY. */
149 extern int FILTER_before_TEMPORARY;
150
151 void cancel_temporary (void);
152 \f
153 /* Functions. */
154
155 struct ccase;
156 void dump_split_vars (const struct ccase *);
157 typedef int (* is_missing_func )(const union value *, const struct variable *);
158
159 int is_num_user_missing (double, const struct variable *);
160 int is_str_user_missing (const unsigned char[], const struct variable *);
161 int is_missing (const union value *, const struct variable *);
162 int is_system_missing (const union value *, const struct variable *);
163 int is_user_missing (const union value *, const struct variable *);
164 void copy_missing_values (struct variable *dest, const struct variable *src);
165 \f
166 /* Transformations. */
167
168 struct trns_header;
169 typedef int trns_proc_func (struct trns_header *, struct ccase *, int);
170 typedef void trns_free_func (struct trns_header *);
171
172 /* Header for all transformations. */
173 struct trns_header
174   {
175     int index;                  /* Index into t_trns[]. */
176     trns_proc_func *proc;       /* Transformation proc. */
177     trns_free_func *free;       /* Garbage collector proc. */
178   };
179
180 /* Array of transformations */
181 extern struct trns_header **t_trns;
182
183 /* Number of transformations, maximum number in array currently. */
184 extern int n_trns, m_trns;
185
186 /* Index of first transformation that is really a transformation.  Any
187    transformations before this belong to INPUT PROGRAM. */
188 extern int f_trns;
189
190 void add_transformation (struct trns_header *trns);
191 void cancel_transformations (void);
192 \f
193 struct var_set;
194
195 struct var_set *var_set_create_from_dict (const struct dictionary *d);
196 struct var_set *var_set_create_from_array (struct variable *const *var,
197                                            size_t);
198
199 size_t var_set_get_cnt (const struct var_set *vs);
200 struct variable *var_set_get_var (const struct var_set *vs, size_t idx);
201 struct variable *var_set_lookup_var (const struct var_set *vs,
202                                      const char *name);
203 int var_set_lookup_var_idx (const struct var_set *vs, const char *name);
204 void var_set_destroy (struct var_set *vs);
205 \f
206 /* Variable parsers. */
207
208 enum
209   {
210     PV_NONE = 0,                /* No options. */
211     PV_SINGLE = 0001,           /* Restrict to a single name or TO use. */
212     PV_DUPLICATE = 0002,        /* Don't merge duplicates. */
213     PV_APPEND = 0004,           /* Append to existing list. */
214     PV_NO_DUPLICATE = 0010,     /* Error on duplicates. */
215     PV_NUMERIC = 0020,          /* Vars must be numeric. */
216     PV_STRING = 0040,           /* Vars must be string. */
217     PV_SAME_TYPE = 00100,       /* All vars must be the same type. */
218     PV_NO_SCRATCH = 00200       /* Disallow scratch variables. */
219   };
220
221 struct variable *parse_variable (void);
222 struct variable *parse_dict_variable (const struct dictionary *);
223 int parse_variables (const struct dictionary *, struct variable ***, int *,
224                      int opts);
225 int parse_var_set_vars (const struct var_set *, struct variable ***, int *,
226                         int opts);
227 int parse_DATA_LIST_vars (char ***names, int *cnt, int opts);
228 int parse_mixed_vars (char ***names, int *cnt, int opts);
229
230
231
232 /* Return a string representing this variable, in the form most 
233    appropriate from a human factors perspective.
234    (IE: the label if it has one, otherwise the name )
235 */
236 const char * var_to_string(const struct variable *var);
237
238
239 #endif /* !var_h */