954314ef4fb07339f599e8f6974582e5b1cf00c3
[pspp] / src / language / dictionary / attributes.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2008, 2010, 2011 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
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"
29
30 #include "gl/xalloc.h"
31
32 #include "gettext.h"
33 #define _(msgid) gettext (msgid)
34
35 static enum cmd_result parse_attributes (struct lexer *,
36                                          const char *dict_encoding,
37                                          struct attrset **, size_t n);
38
39 /* Parses the DATAFILE ATTRIBUTE command. */
40 int
41 cmd_datafile_attribute (struct lexer *lexer, struct dataset *ds)
42 {
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);
46 }
47
48 /* Parses the VARIABLE ATTRIBUTE command. */
49 int
50 cmd_variable_attribute (struct lexer *lexer, struct dataset *ds)
51 {
52   struct dictionary *dict = dataset_dict (ds);
53   const char *dict_encoding = dict_get_encoding (dict);
54
55   do
56     {
57       struct variable **vars;
58       struct attrset **sets;
59       size_t n_vars, i;
60       bool ok;
61
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))
65         return CMD_FAILURE;
66
67       sets = xmalloc (n_vars * sizeof *sets);
68       for (i = 0; i < n_vars; i++)
69         sets[i] = var_get_attributes (vars[i]);
70
71       ok = parse_attributes (lexer, dict_encoding, sets, n_vars);
72       free (vars);
73       free (sets);
74       if (!ok)
75         return CMD_FAILURE;
76     }
77   while (lex_match (lexer, T_SLASH));
78
79   return CMD_SUCCESS;
80 }
81
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
85    *INDEX. */
86 static char *
87 parse_attribute_name (struct lexer *lexer, const char *dict_encoding,
88                       size_t *index)
89 {
90   if (!lex_force_id (lexer))
91     return NULL;
92   char *error = id_is_valid__ (lex_tokcstr (lexer), dict_encoding);
93   if (error)
94     {
95       lex_error (lexer, "%s", error);
96       free (error);
97       return NULL;
98     }
99   char *name = xstrdup (lex_tokcstr (lexer));
100   lex_get (lexer);
101
102   if (lex_match (lexer, T_LBRACK))
103     {
104       if (!lex_force_int_range (lexer, NULL, 1, 65535))
105         goto error;
106       *index = lex_integer (lexer);
107       lex_get (lexer);
108       if (!lex_force_match (lexer, T_RBRACK))
109         goto error;
110     }
111   else
112     *index = 0;
113   return name;
114
115 error:
116   free (name);
117   return NULL;
118 }
119
120 static bool
121 add_attribute (struct lexer *lexer, const char *dict_encoding,
122                struct attrset **sets, size_t n)
123 {
124   const char *value;
125   size_t index, i;
126   char *name;
127
128   name = parse_attribute_name (lexer, dict_encoding, &index);
129   if (name == NULL)
130     return false;
131   if (!lex_force_match (lexer, T_LPAREN) || !lex_force_string (lexer))
132     {
133       free (name);
134       return false;
135     }
136   value = lex_tokcstr (lexer);
137
138   for (i = 0; i < n; i++)
139     {
140       struct attribute *attr = attrset_lookup (sets[i], name);
141       if (attr == NULL)
142         {
143           attr = attribute_create (name);
144           attrset_add (sets[i], attr);
145         }
146       attribute_set_value (attr, index ? index - 1 : 0, value);
147     }
148
149   lex_get (lexer);
150   free (name);
151   return lex_force_match (lexer, T_RPAREN);
152 }
153
154 static bool
155 delete_attribute (struct lexer *lexer, const char *dict_encoding,
156                   struct attrset **sets, size_t n)
157 {
158   size_t index, i;
159   char *name;
160
161   name = parse_attribute_name (lexer, dict_encoding, &index);
162   if (name == NULL)
163     return false;
164
165   for (i = 0; i < n; i++)
166     {
167       struct attrset *set = sets[i];
168       if (index == 0)
169         attrset_delete (set, name);
170       else
171         {
172           struct attribute *attr = attrset_lookup (set, name);
173           if (attr != NULL)
174             {
175               attribute_del_value (attr, index - 1);
176               if (attribute_get_n_values (attr) == 0)
177                 attrset_delete (set, name);
178             }
179         }
180     }
181
182   free (name);
183   return true;
184 }
185
186 static enum cmd_result
187 parse_attributes (struct lexer *lexer, const char *dict_encoding,
188                   struct attrset **sets, size_t n)
189 {
190   enum { UNKNOWN, ADD, DELETE } command = UNKNOWN;
191   do
192     {
193       if (lex_match_phrase (lexer, "ATTRIBUTE="))
194         command = ADD;
195       else if (lex_match_phrase (lexer, "DELETE="))
196         command = DELETE;
197       else if (command == UNKNOWN)
198         {
199           lex_error_expecting (lexer, "ATTRIBUTE=", "DELETE=");
200           return CMD_FAILURE;
201         }
202
203       if (!(command == ADD
204             ? add_attribute (lexer, dict_encoding, sets, n)
205             : delete_attribute (lexer, dict_encoding, sets, n)))
206         return CMD_FAILURE;
207     }
208   while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD);
209   return CMD_SUCCESS;
210 }