1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2009 Free Software Foundation, Inc.
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.
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.
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/>. */
22 #include <data/procedure.h>
23 #include <data/value-labels.h>
24 #include <data/variable.h>
25 #include <language/command.h>
26 #include <language/lexer/lexer.h>
27 #include <language/lexer/value-parser.h>
28 #include <language/lexer/variable-parser.h>
29 #include <libpspp/hash.h>
30 #include <libpspp/message.h>
31 #include <libpspp/str.h>
36 #define _(msgid) gettext (msgid)
40 static int do_value_labels (struct lexer *,
41 const struct dictionary *dict, bool);
42 static void erase_labels (struct variable **vars, size_t var_cnt);
43 static int get_label (struct lexer *, struct variable **vars, size_t var_cnt);
48 cmd_value_labels (struct lexer *lexer, struct dataset *ds)
50 return do_value_labels (lexer, dataset_dict (ds), true);
54 cmd_add_value_labels (struct lexer *lexer, struct dataset *ds)
56 return do_value_labels (lexer, dataset_dict (ds), false);
62 do_value_labels (struct lexer *lexer, const struct dictionary *dict, bool erase)
64 struct variable **vars; /* Variable list. */
65 size_t var_cnt; /* Number of variables. */
66 int parse_err=0; /* true if error parsing variables */
68 lex_match (lexer, '/');
70 while (lex_token (lexer) != '.')
72 parse_err = !parse_variables (lexer, dict, &vars, &var_cnt,
80 erase_labels (vars, var_cnt);
81 while (lex_token (lexer) != '/' && lex_token (lexer) != '.')
82 if (!get_label (lexer, vars, var_cnt))
85 if (lex_token (lexer) != '/')
99 return lex_end_of_command (lexer);
106 /* Erases all the labels for the VAR_CNT variables in VARS. */
108 erase_labels (struct variable **vars, size_t var_cnt)
112 /* Erase old value labels if desired. */
113 for (i = 0; i < var_cnt; i++)
114 var_clear_value_labels (vars[i]);
117 /* Parse all the labels for the VAR_CNT variables in VARS and add
118 the specified labels to those variables. */
120 get_label (struct lexer *lexer, struct variable **vars, size_t var_cnt)
122 /* Parse all the labels and add them to the variables. */
125 int width = var_get_width (vars[0]);
131 value_init (&value, width);
132 if (!parse_value (lexer, &value, width))
134 value_destroy (&value, width);
137 lex_match (lexer, ',');
140 if (lex_token (lexer) != T_ID && !lex_force_string (lexer))
142 value_destroy (&value, width);
146 ds_init_string (&label, lex_tokstr (lexer));
148 if (ds_length (&label) > 60)
150 msg (SW, _("Truncating value label to 60 characters."));
151 ds_truncate (&label, 60);
154 for (i = 0; i < var_cnt; i++)
155 var_replace_value_label (vars[i], &value, ds_cstr (&label));
158 value_destroy (&value, width);
161 lex_match (lexer, ',');
163 while (lex_token (lexer) != '/' && lex_token (lexer) != '.');