1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2008, 2010, 2011 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/>. */
21 #include "data/attributes.h"
22 #include "data/dataset.h"
23 #include "data/dictionary.h"
24 #include "data/variable.h"
25 #include "language/command.h"
26 #include "language/lexer/lexer.h"
27 #include "language/lexer/variable-parser.h"
28 #include "libpspp/message.h"
30 #include "gl/xalloc.h"
33 #define _(msgid) gettext (msgid)
35 static enum cmd_result parse_attributes (struct lexer *,
36 const char *dict_encoding,
37 struct attrset **, size_t n);
39 /* Parses the DATAFILE ATTRIBUTE command. */
41 cmd_datafile_attribute (struct lexer *lexer, struct dataset *ds)
43 struct dictionary *dict = dataset_dict (ds);
44 struct attrset *set = dict_get_attributes (dict);
45 return parse_attributes (lexer, dict_get_encoding (dict), &set, 1);
48 /* Parses the VARIABLE ATTRIBUTE command. */
50 cmd_variable_attribute (struct lexer *lexer, struct dataset *ds)
52 struct dictionary *dict = dataset_dict (ds);
53 const char *dict_encoding = dict_get_encoding (dict);
57 struct variable **vars;
58 struct attrset **sets;
62 if (!lex_force_match_id (lexer, "VARIABLES")
63 || !lex_force_match (lexer, T_EQUALS)
64 || !parse_variables (lexer, dict, &vars, &n_vars, PV_NONE))
67 sets = xmalloc (n_vars * sizeof *sets);
68 for (i = 0; i < n_vars; i++)
69 sets[i] = var_get_attributes (vars[i]);
71 ok = parse_attributes (lexer, dict_encoding, sets, n_vars);
77 while (lex_match (lexer, T_SLASH));
82 /* Parses an attribute name and verifies that it is valid in DICT_ENCODING,
83 optionally followed by an index inside square brackets. Returns the
84 attribute name or NULL if there was a parse error. Stores the index into
87 parse_attribute_name (struct lexer *lexer, const char *dict_encoding,
92 if (!lex_force_id (lexer)
93 || !id_is_valid (lex_tokcstr (lexer), dict_encoding, true))
95 name = xstrdup (lex_tokcstr (lexer));
98 if (lex_match (lexer, T_LBRACK))
100 if (!lex_force_int (lexer))
102 if (lex_integer (lexer) < 1 || lex_integer (lexer) > 65535)
104 msg (SE, _("Attribute array index must be between 1 and 65535."));
107 *index = lex_integer (lexer);
109 if (!lex_force_match (lexer, T_RBRACK))
122 add_attribute (struct lexer *lexer, const char *dict_encoding,
123 struct attrset **sets, size_t n)
129 name = parse_attribute_name (lexer, dict_encoding, &index);
132 if (!lex_force_match (lexer, T_LPAREN) || !lex_force_string (lexer))
137 value = lex_tokcstr (lexer);
139 for (i = 0; i < n; i++)
141 struct attribute *attr = attrset_lookup (sets[i], name);
144 attr = attribute_create (name);
145 attrset_add (sets[i], attr);
147 attribute_set_value (attr, index ? index - 1 : 0, value);
152 return lex_force_match (lexer, T_RPAREN);
156 delete_attribute (struct lexer *lexer, const char *dict_encoding,
157 struct attrset **sets, size_t n)
162 name = parse_attribute_name (lexer, dict_encoding, &index);
166 for (i = 0; i < n; i++)
168 struct attrset *set = sets[i];
170 attrset_delete (set, name);
173 struct attribute *attr = attrset_lookup (set, name);
176 attribute_del_value (attr, index - 1);
177 if (attribute_get_n_values (attr) == 0)
178 attrset_delete (set, name);
187 static enum cmd_result
188 parse_attributes (struct lexer *lexer, const char *dict_encoding,
189 struct attrset **sets, size_t n)
191 enum { UNKNOWN, ADD, DELETE } command = UNKNOWN;
194 if (lex_match_phrase (lexer, "ATTRIBUTE="))
196 else if (lex_match_phrase (lexer, "DELETE="))
198 else if (command == UNKNOWN)
200 lex_error (lexer, _("expecting %s or %s"), "ATTRIBUTE=", "DELETE=");
205 ? add_attribute (lexer, dict_encoding, sets, n)
206 : delete_attribute (lexer, dict_encoding, sets, n)))
209 while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD);