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
25 #include <data/procedure.h>
26 #include <data/value-labels.h>
27 #include <data/variable.h>
28 #include <language/command.h>
29 #include <language/lexer/lexer.h>
30 #include <language/lexer/variable-parser.h>
31 #include <libpspp/alloc.h>
32 #include <libpspp/hash.h>
33 #include <libpspp/message.h>
34 #include <libpspp/str.h>
37 #define _(msgid) gettext (msgid)
41 static int do_value_labels (int);
42 static int verify_val_labs (struct variable **vars, size_t var_cnt);
43 static void erase_labels (struct variable **vars, size_t var_cnt);
44 static int get_label (struct variable **vars, size_t var_cnt);
49 cmd_value_labels (void)
51 return do_value_labels (1);
55 cmd_add_value_labels (void)
57 return do_value_labels (0);
63 do_value_labels (int erase)
65 struct variable **vars; /* Variable list. */
66 size_t var_cnt; /* Number of variables. */
67 int parse_err=0; /* true if error parsing variables */
73 parse_err = !parse_variables (dataset_dict (current_dataset), &vars, &var_cnt,
80 if (!verify_val_labs (vars, var_cnt))
83 erase_labels (vars, var_cnt);
84 while (token != '/' && token != '.')
85 if (!get_label (vars, var_cnt))
102 return lex_end_of_command ();
109 /* Verifies that none of the VAR_CNT variables in VARS are long
112 verify_val_labs (struct variable **vars, size_t var_cnt)
116 for (i = 0; i < var_cnt; i++)
118 struct variable *vp = vars[i];
120 if (vp->type == ALPHA && vp->width > MAX_SHORT_STRING)
122 msg (SE, _("It is not possible to assign value labels to long "
123 "string variables such as %s."), vp->name);
130 /* Erases all the labels for the VAR_CNT variables in VARS. */
132 erase_labels (struct variable **vars, size_t var_cnt)
136 /* Erase old value labels if desired. */
137 for (i = 0; i < var_cnt; i++)
138 val_labs_clear (vars[i]->val_labs);
141 /* Parse all the labels for the VAR_CNT variables in VARS and add
142 the specified labels to those variables. */
144 get_label (struct variable **vars, size_t var_cnt)
146 /* Parse all the labels and add them to the variables. */
154 if (vars[0]->type == ALPHA)
156 if (token != T_STRING)
158 lex_error (_("expecting string"));
161 buf_copy_str_rpad (value.s, MAX_SHORT_STRING, ds_cstr (&tokstr));
165 if (!lex_is_number ())
167 lex_error (_("expecting integer"));
170 if (!lex_is_integer ())
171 msg (SW, _("Value label `%g' is not integer."), tokval);
177 if (!lex_force_string ())
179 if (ds_length (&tokstr) > 60)
181 msg (SW, _("Truncating value label to 60 characters."));
182 ds_truncate (&tokstr, 60);
184 label = ds_cstr (&tokstr);
186 for (i = 0; i < var_cnt; i++)
187 val_labs_replace (vars[i]->val_labs, value, label);
191 while (token != '/' && token != '.');