Redo VFM interface. Get rid of compaction_necessary, compaction_nval,
[pspp-builds.git] / src / rename-vars.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #include <config.h>
21 #include <stdlib.h>
22 #include <assert.h>
23 #include "alloc.h"
24 #include "command.h"
25 #include "error.h"
26 #include "hash.h"
27 #include "lexer.h"
28 #include "str.h"
29 #include "var.h"
30
31 /* The code for this function is very similar to the code for the
32    RENAME subcommand of MODIFY VARS. */
33 int
34 cmd_rename_variables (void)
35 {
36   struct variable **rename_vars = NULL;
37   char **rename_new_names = NULL;
38   int rename_cnt = 0;
39   char *err_name;
40
41   int status = CMD_FAILURE;
42
43   int i;
44
45   if (temporary != 0)
46     {
47       msg (SE, _("RENAME VARS may not be used after TEMPORARY.  "
48                  "Temporary transformations will be made permanent."));
49       cancel_temporary (); 
50     }
51
52   lex_match_id ("RENAME");
53   lex_match_id ("VARIABLES");
54
55   do
56     {
57       int prev_nv_1 = rename_cnt;
58       int prev_nv_2 = rename_cnt;
59
60       if (!lex_match ('('))
61         {
62           msg (SE, _("`(' expected."));
63           goto lossage;
64         }
65       if (!parse_variables (default_dict, &rename_vars, &rename_cnt,
66                             PV_APPEND | PV_NO_DUPLICATE))
67         goto lossage;
68       if (!lex_match ('='))
69         {
70           msg (SE, _("`=' expected between lists of new and old variable names."));
71           goto lossage;
72         }
73       if (!parse_DATA_LIST_vars (&rename_new_names, &prev_nv_1, PV_APPEND))
74         goto lossage;
75       if (prev_nv_1 != rename_cnt)
76         {
77           msg (SE, _("Differing number of variables in old name list "
78                "(%d) and in new name list (%d)."),
79                rename_cnt - prev_nv_2, prev_nv_1 - prev_nv_2);
80           for (i = 0; i < prev_nv_1; i++)
81             free (rename_new_names[i]);
82           free (rename_new_names);
83           rename_new_names = NULL;
84           goto lossage;
85         }
86       if (!lex_match (')'))
87         {
88           msg (SE, _("`)' expected after variable names."));
89           goto lossage;
90         }
91     }
92   while (token != '.');
93
94   if (!dict_rename_vars (default_dict,
95                          rename_vars, rename_new_names, rename_cnt,
96                          &err_name)) 
97     {
98       msg (SE, _("Renaming would duplicate variable name %s."), err_name);
99       goto lossage;
100     }
101
102   status = CMD_SUCCESS;
103
104  lossage:
105   free (rename_vars);
106   if (rename_new_names != NULL) 
107     {
108       for (i = 0; i < rename_cnt; i++)
109         free (rename_new_names[i]);
110       free (rename_new_names); 
111     }
112   return status;
113 }