DELETE VARIABLES: Style fix.
[pspp-builds.git] / src / language / dictionary / delete-variables.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2006, 2007, 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/casereader.h>
22 #include <data/dictionary.h>
23 #include <data/procedure.h>
24 #include <language/command.h>
25 #include <language/lexer/variable-parser.h>
26 #include <libpspp/message.h>
27
28 #include "gettext.h"
29 #define _(msgid) gettext (msgid)
30
31 /* Performs DELETE VARIABLES command. */
32 int
33 cmd_delete_variables (struct lexer *lexer, struct dataset *ds)
34 {
35   struct variable **vars;
36   size_t var_cnt;
37   bool ok;
38
39   if (proc_make_temporary_transformations_permanent (ds))
40     msg (SE, _("DELETE VARIABLES may not be used after TEMPORARY.  "
41                "Temporary transformations will be made permanent."));
42
43   if (!parse_variables (lexer, dataset_dict (ds), &vars, &var_cnt, PV_NONE))
44     goto error;
45   if (var_cnt == dict_get_var_cnt (dataset_dict (ds)))
46     {
47       msg (SE, _("DELETE VARIABLES may not be used to delete all variables "
48                  "from the active file dictionary.  Use NEW FILE instead."));
49       goto error;
50     }
51
52   ok = casereader_destroy (proc_open (ds));
53   ok = proc_commit (ds) && ok;
54   if (!ok)
55     goto error;
56   dict_delete_vars (dataset_dict (ds), vars, var_cnt);
57
58   free (vars);
59
60   return CMD_SUCCESS;
61
62  error:
63   free (vars);
64   return CMD_CASCADING_FAILURE;
65 }