Changed DFM from open-at-first-access to explicit-open. Before,
[pspp-builds.git] / src / val-labs.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 <stdio.h>
22 #include <stdlib.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 "value-labels.h"
30 #include "var.h"
31 \f
32 /* Declarations. */
33
34 static int do_value_labels (int);
35 static int verify_val_labs (struct variable **vars, int var_cnt);
36 static void erase_labels (struct variable **vars, int var_cnt);
37 static int get_label (struct variable **vars, int var_cnt);
38 \f
39 /* Stubs. */
40
41 int
42 cmd_value_labels (void)
43 {
44   return do_value_labels (1);
45 }
46
47 int
48 cmd_add_value_labels (void)
49 {
50   return do_value_labels (0);
51 }
52 \f
53 /* Do it. */
54
55 static int
56 do_value_labels (int erase)
57 {
58   struct variable **vars; /* Variable list. */
59   int var_cnt;            /* Number of variables. */
60
61   lex_match ('/');
62   
63   while (token != '.')
64     {
65       parse_variables (default_dict, &vars, &var_cnt, PV_SAME_TYPE);
66       if (!verify_val_labs (vars, var_cnt))
67         goto lossage;
68       if (erase)
69         erase_labels (vars, var_cnt);
70       while (token != '/' && token != '.')
71         if (!get_label (vars, var_cnt))
72           goto lossage;
73
74       if (token != '/')
75         break;
76       lex_get ();
77
78       free (vars);
79     }
80   free (vars);
81
82   if (token != '.')
83     {
84       lex_error (NULL);
85       return CMD_TRAILING_GARBAGE;
86     }
87
88   return CMD_SUCCESS;
89
90  lossage:
91   free (vars);
92   return CMD_PART_SUCCESS_MAYBE;
93 }
94
95 /* Verifies that none of the VAR_CNT variables in VARS are long
96    string variables. */
97 static int
98 verify_val_labs (struct variable **vars, int var_cnt)
99 {
100   int i;
101
102   for (i = 0; i < var_cnt; i++)
103     {
104       struct variable *vp = vars[i];
105
106       if (vp->type == ALPHA && vp->width > 8)
107         {
108           msg (SE, _("It is not possible to assign value labels to long "
109                      "string variables such as %s."), vp->name);
110           return 0;
111         }
112     }
113   return 1;
114 }
115
116 /* Erases all the labels for the VAR_CNT variables in VARS. */
117 static void
118 erase_labels (struct variable **vars, int var_cnt) 
119 {
120   int i;
121
122   /* Erase old value labels if desired. */
123   for (i = 0; i < var_cnt; i++)
124     val_labs_clear (vars[i]->val_labs);
125 }
126
127 /* Parse all the labels for the VAR_CNT variables in VARS and add
128    the specified labels to those variables.  */
129 static int
130 get_label (struct variable **vars, int var_cnt)
131 {
132   /* Parse all the labels and add them to the variables. */
133   do
134     {
135       union value value;
136       char *label;
137       int i;
138
139       /* Set value. */
140       if (vars[0]->type == ALPHA)
141         {
142           if (token != T_STRING)
143             {
144               lex_error (_("expecting string"));
145               return 0;
146             }
147           st_bare_pad_copy (value.s, ds_value (&tokstr), MAX_SHORT_STRING);
148         }
149       else
150         {
151           if (token != T_NUM)
152             {
153               lex_error (_("expecting integer"));
154               return 0;
155             }
156           if (!lex_integer_p ())
157             msg (SW, _("Value label `%g' is not integer."), tokval);
158           value.f = tokval;
159         }
160       lex_get ();
161
162       /* Set label. */
163       if (!lex_force_string ())
164         return 0;
165       if (ds_length (&tokstr) > 60)
166         {
167           msg (SW, _("Truncating value label to 60 characters."));
168           ds_truncate (&tokstr, 60);
169         }
170       label = ds_value (&tokstr);
171
172       for (i = 0; i < var_cnt; i++)
173         val_labs_replace (vars[i]->val_labs, value, label);
174
175       lex_get ();
176     }
177   while (token != '/' && token != '.');
178
179   return 1;
180 }