1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
26 #include "dictionary.h"
28 #include "expressions/public.h"
29 #include "file-handle.h"
34 #include "value-labels.h"
38 #define _(msgid) gettext (msgid)
40 #include "debug-print.h"
42 /* Assign auxiliary data AUX to variable V, which must not
43 already have auxiliary data. Before V's auxiliary data is
44 cleared, AUX_DTOR(V) will be called. */
46 var_attach_aux (struct variable *v,
47 void *aux, void (*aux_dtor) (struct variable *))
49 assert (v->aux == NULL);
52 v->aux_dtor = aux_dtor;
56 /* Remove auxiliary data, if any, from V, and returns it, without
57 calling any associated destructor. */
59 var_detach_aux (struct variable *v)
67 /* Clears auxiliary data, if any, from V, and calls any
68 associated destructor. */
70 var_clear_aux (struct variable *v)
75 if (v->aux_dtor != NULL)
81 /* This function is appropriate for use an auxiliary data
82 destructor (passed as AUX_DTOR to var_attach_aux()) for the
83 case where the auxiliary data should be passed to free(). */
85 var_dtor_free (struct variable *v)
90 /* Compares A and B, which both have the given WIDTH, and returns
91 a strcmp()-type result. */
93 compare_values (const union value *a, const union value *b, int width)
96 return a->f < b->f ? -1 : a->f > b->f;
98 return memcmp (a->s, b->s, min(MAX_SHORT_STRING, width));
101 /* Create a hash of v */
103 hash_value(const union value *v, int width)
108 id_hash = hsh_hash_double (v->f);
110 id_hash = hsh_hash_bytes (v->s, min(MAX_SHORT_STRING, width));
117 /* Discards all the current state in preparation for a data-input
118 command like DATA LIST or GET. */
120 discard_variables (void)
122 dict_clear (default_dict);
123 default_handle = NULL;
127 if (vfm_source != NULL)
129 free_case_source (vfm_source);
133 cancel_transformations ();
137 expr_free (process_if_expr);
138 process_if_expr = NULL;
142 pgm_state = STATE_INIT;
145 /* Returns true if NAME is an acceptable name for a variable,
146 false otherwise. If ISSUE_ERROR is true, issues an
147 explanatory error message on failure. */
149 var_is_valid_name (const char *name, bool issue_error)
153 assert (name != NULL);
155 length = strlen (name);
159 msg (SE, _("Variable name cannot be empty string."));
162 else if (length > LONG_NAME_LEN)
165 msg (SE, _("Variable name %s exceeds %d-character limit."),
166 name, (int) LONG_NAME_LEN);
170 for (i = 0; i < length; i++)
171 if (!CHAR_IS_IDN (name[i]))
174 msg (SE, _("Character `%c' (in %s) may not appear in "
180 if (!CHAR_IS_ID1 (name[0]))
183 msg (SE, _("Character `%c' (in %s), may not appear "
184 "as the first character in a variable name."),
189 if (lex_id_to_token (name, strlen (name)) != T_ID)
192 msg (SE, _("%s may not be used as a variable name because it "
193 "is a reserved word."), name);
200 /* A hsh_compare_func that orders variables A and B by their
203 compare_var_names (const void *a_, const void *b_, void *foo UNUSED)
205 const struct variable *a = a_;
206 const struct variable *b = b_;
208 return strcasecmp (a->name, b->name);
211 /* A hsh_hash_func that hashes variable V based on its name. */
213 hash_var_name (const void *v_, void *foo UNUSED)
215 const struct variable *v = v_;
217 return hsh_hash_case_string (v->name);
220 /* A hsh_compare_func that orders pointers to variables A and B
223 compare_var_ptr_names (const void *a_, const void *b_, void *foo UNUSED)
225 struct variable *const *a = a_;
226 struct variable *const *b = b_;
228 return strcasecmp ((*a)->name, (*b)->name);
231 /* A hsh_hash_func that hashes pointer to variable V based on its
234 hash_var_ptr_name (const void *v_, void *foo UNUSED)
236 struct variable *const *v = v_;
238 return hsh_hash_case_string ((*v)->name);
241 /* Sets V's short_name to SHORT_NAME, truncating it to
242 SHORT_NAME_LEN characters and converting it to uppercase in
245 var_set_short_name (struct variable *v, const char *short_name)
248 assert (short_name[0] == '\0' || var_is_valid_name (short_name, false));
250 str_copy_trunc (v->short_name, sizeof v->short_name, short_name);
251 str_uppercase (v->short_name);
254 /* Clears V's short name. */
256 var_clear_short_name (struct variable *v)
260 v->short_name[0] = '\0';
263 /* Sets V's short name to BASE, followed by a suffix of the form
264 _A, _B, _C, ..., _AA, _AB, etc. according to the value of
265 SUFFIX. Truncates BASE as necessary to fit. */
267 var_set_short_name_suffix (struct variable *v, const char *base, int suffix)
269 char string[SHORT_NAME_LEN + 1];
274 assert (suffix >= 0);
275 assert (strlen (v->short_name) > 0);
278 var_set_short_name (v, base);
280 /* Compose suffix_string. */
281 start = end = string + sizeof string - 1;
285 *--start = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"[suffix % 26];
286 if (start <= string + 1)
287 msg (SE, _("Variable suffix too large."));
293 /* Append suffix_string to V's short name. */
295 if (len + strlen (v->short_name) > SHORT_NAME_LEN)
296 ofs = SHORT_NAME_LEN - len;
298 ofs = strlen (v->short_name);
299 strcpy (v->short_name + ofs, start);