eeb0b89dfce277e8fdc20ea9d5471b20f4f0efe8
[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., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include <stdlib.h>
22 #include "error.h"
23 #include "alloc.h"
24 #include "command.h"
25 #include "dictionary.h"
26 #include "error.h"
27 #include "hash.h"
28 #include "lexer.h"
29 #include "str.h"
30 #include "var.h"
31
32 /* The code for this function is very similar to the code for the
33    RENAME subcommand of MODIFY VARS. */
34 int
35 cmd_rename_variables (void)
36 {
37   struct variable **rename_vars = NULL;
38   char **rename_new_names = NULL;
39   int rename_cnt = 0;
40   char *err_name;
41
42   int status = CMD_FAILURE;
43
44   int i;
45
46   if (temporary != 0)
47     {
48       msg (SE, _("RENAME VARS may not be used after TEMPORARY.  "
49                  "Temporary transformations will be made permanent."));
50       cancel_temporary (); 
51     }
52
53   do
54     {
55       int prev_nv_1 = rename_cnt;
56       int prev_nv_2 = rename_cnt;
57
58       if (!lex_match ('('))
59         {
60           msg (SE, _("`(' expected."));
61           goto lossage;
62         }
63       if (!parse_variables (default_dict, &rename_vars, &rename_cnt,
64                             PV_APPEND | PV_NO_DUPLICATE))
65         goto lossage;
66       if (!lex_match ('='))
67         {
68           msg (SE, _("`=' expected between lists of new and old variable names."));
69           goto lossage;
70         }
71       if (!parse_DATA_LIST_vars (&rename_new_names, &prev_nv_1, PV_APPEND))
72         goto lossage;
73       if (prev_nv_1 != rename_cnt)
74         {
75           msg (SE, _("Differing number of variables in old name list "
76                "(%d) and in new name list (%d)."),
77                rename_cnt - prev_nv_2, prev_nv_1 - prev_nv_2);
78           for (i = 0; i < prev_nv_1; i++)
79             free (rename_new_names[i]);
80           free (rename_new_names);
81           rename_new_names = NULL;
82           goto lossage;
83         }
84       if (!lex_match (')'))
85         {
86           msg (SE, _("`)' expected after variable names."));
87           goto lossage;
88         }
89     }
90   while (token != '.');
91
92   if (!dict_rename_vars (default_dict,
93                          rename_vars, rename_new_names, rename_cnt,
94                          &err_name)) 
95     {
96       msg (SE, _("Renaming would duplicate variable name %s."), err_name);
97       goto lossage;
98     }
99
100   status = CMD_SUCCESS;
101
102  lossage:
103   free (rename_vars);
104   if (rename_new_names != NULL) 
105     {
106       for (i = 0; i < rename_cnt; i++)
107         free (rename_new_names[i]);
108       free (rename_new_names); 
109     }
110   return status;
111 }