1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2007, 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/>. */
19 #include "language/data-io/trim.h"
23 #include "data/dictionary.h"
24 #include "data/variable.h"
25 #include "language/lexer/lexer.h"
26 #include "language/lexer/variable-parser.h"
27 #include "libpspp/message.h"
29 #include "gl/xalloc.h"
32 #define _(msgid) gettext (msgid)
34 /* Commands that read and write system files share a great deal
35 of common syntactic structure for rearranging and dropping
36 variables. This function parses this syntax and modifies DICT
37 appropriately. Returns true on success, false on failure. */
39 parse_dict_trim (struct lexer *lexer, struct dictionary *dict)
41 if (lex_match_id (lexer, "MAP"))
46 else if (lex_match_id (lexer, "DROP"))
47 return parse_dict_drop (lexer, dict);
48 else if (lex_match_id (lexer, "KEEP"))
49 return parse_dict_keep (lexer, dict);
50 else if (lex_match_id (lexer, "RENAME"))
51 return parse_dict_rename (lexer, dict);
54 lex_error (lexer, _("expecting a valid subcommand"));
59 /* Parses and performs the RENAME subcommand of GET, SAVE, and
62 parse_dict_rename (struct lexer *lexer, struct dictionary *dict)
75 lex_match (lexer, T_EQUALS);
76 if (lex_token (lexer) != T_LPAREN)
80 v = parse_variable (lexer, dict);
83 if (!lex_force_match (lexer, T_EQUALS)
84 || !lex_force_id (lexer)
85 || !dict_id_is_valid (dict, lex_tokcstr (lexer), true))
87 if (dict_lookup_var (dict, lex_tokcstr (lexer)) != NULL)
89 msg (SE, _("Cannot rename %s as %s because there already exists "
90 "a variable named %s. To rename variables with "
91 "overlapping names, use a single RENAME subcommand "
92 "such as `/RENAME (A=B)(B=C)(C=A)', or equivalently, "
93 "`/RENAME (A B C=B C A)'."),
94 var_get_name (v), lex_tokcstr (lexer), lex_tokcstr (lexer));
98 dict_rename_var (dict, v, lex_tokcstr (lexer));
107 while (lex_match (lexer, T_LPAREN))
111 if (!parse_variables (lexer, dict, &v, &nv, PV_NO_DUPLICATE | PV_APPEND))
113 if (!lex_match (lexer, T_EQUALS))
115 lex_error_expecting (lexer, "`='", NULL_SENTINEL);
118 if (!parse_DATA_LIST_vars (lexer, dict, &new_names, &nn,
119 PV_APPEND | PV_NO_SCRATCH | PV_NO_DUPLICATE))
123 msg (SE, _("Number of variables on left side of `=' (%zu) does not "
124 "match number of variables on right side (%zu), in "
125 "parenthesized group %d of RENAME subcommand."),
126 nv - old_nv, nn - old_nv, group);
129 if (!lex_force_match (lexer, T_RPAREN))
134 if (!dict_rename_vars (dict, v, new_names, nv, &err_name))
136 msg (SE, _("Requested renaming duplicates variable name %s."), err_name);
142 for (i = 0; i < nn; i++)
150 /* Parses and performs the DROP subcommand of GET, SAVE, and
152 Returns true if successful, false on failure.*/
154 parse_dict_drop (struct lexer *lexer, struct dictionary *dict)
159 lex_match (lexer, T_EQUALS);
160 if (!parse_variables (lexer, dict, &v, &nv, PV_NONE))
162 dict_delete_vars (dict, v, nv);
165 if (dict_get_var_cnt (dict) == 0)
167 msg (SE, _("Cannot DROP all variables from dictionary."));
173 /* Parses and performs the KEEP subcommand of GET, SAVE, and
175 Returns true if successful, false on failure.*/
177 parse_dict_keep (struct lexer *lexer, struct dictionary *dict)
183 lex_match (lexer, T_EQUALS);
184 if (!parse_variables (lexer, dict, &v, &nv, PV_NONE))
187 /* Move the specified variables to the beginning. */
188 dict_reorder_vars (dict, v, nv);
190 /* Delete the remaining variables. */
191 v = xnrealloc (v, dict_get_var_cnt (dict) - nv, sizeof *v);
192 for (i = nv; i < dict_get_var_cnt (dict); i++)
193 v[i - nv] = dict_get_var (dict, i);
194 dict_delete_vars (dict, v, dict_get_var_cnt (dict) - nv);