checkin of 0.3.0
[pspp-builds.git] / src / numeric.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 <assert.h>
22 #include <stdlib.h>
23 #include "cases.h"
24 #include "command.h"
25 #include "error.h"
26 #include "lexer.h"
27 #include "str.h"
28 #include "var.h"
29
30 #undef DEBUGGING
31 /*#define DEBUGGING 1*/
32 #include "debug-print.h"
33
34 /* Parses the NUMERIC command. */
35 int
36 cmd_numeric (void)
37 {
38   int i;
39
40   /* Names of variables to create. */
41   char **v;
42   int nv;
43
44   /* Format spec for variables to create.  f.type==-1 if default is to
45      be used. */
46   struct fmt_spec f;
47
48   lex_match_id ("NUMERIC");
49   do
50     {
51       if (!parse_DATA_LIST_vars (&v, &nv, PV_NONE))
52         return CMD_PART_SUCCESS_MAYBE;
53
54       /* Get the optional format specification. */
55       if (lex_match ('('))
56         {
57           if (!parse_format_specifier (&f, 0))
58             goto fail;
59           if (formats[f.type].cat & FCAT_STRING)
60             {
61               msg (SE, _("Format type %s may not be used with a numeric "
62                    "variable."), fmt_to_string (&f));
63               goto fail;
64             }
65
66           if (!lex_match (')'))
67             {
68               msg (SE, _("`)' expected after output format."));
69               goto fail;
70             }
71         }
72       else
73         f.type = -1;
74
75       /* Create each variable. */
76       for (i = 0; i < nv; i++)
77         {
78           struct variable *new_var = create_variable (&default_dict, v[i],
79                                                NUMERIC, 0);
80           if (!new_var)
81             msg (SE, _("There is already a variable named %s."), v[i]);
82           else
83             {
84               if (f.type != -1)
85                 new_var->print = new_var->write = f;
86               envector (new_var);
87             }
88         }
89
90       /* Clean up. */
91       for (i = 0; i < nv; i++)
92         free (v[i]);
93       free (v);
94     }
95   while (lex_match ('/'));
96
97   return lex_end_of_command ();
98
99   /* If we have an error at a point where cleanup is required,
100      flow-of-control comes here. */
101 fail:
102   for (i = 0; i < nv; i++)
103     free (v[i]);
104   free (v);
105   return CMD_PART_SUCCESS_MAYBE;
106 }
107
108 /* Parses the STRING command. */
109 int
110 cmd_string (void)
111 {
112   int i;
113
114   /* Names of variables to create. */
115   char **v;
116   int nv;
117
118   /* Format spec for variables to create. */
119   struct fmt_spec f;
120
121   /* Width of variables to create. */
122   int width;
123
124   lex_match_id ("STRING");
125   do
126     {
127       if (!parse_DATA_LIST_vars (&v, &nv, PV_NONE))
128         return CMD_PART_SUCCESS_MAYBE;
129
130       if (!lex_force_match ('(')
131           || !parse_format_specifier (&f, 0))
132         goto fail;
133       if (!(formats[f.type].cat & FCAT_STRING))
134         {
135           msg (SE, _("Format type %s may not be used with a string "
136                "variable."), fmt_to_string (&f));
137           goto fail;
138         }
139
140       if (!lex_match (')'))
141         {
142           msg (SE, _("`)' expected after output format."));
143           goto fail;
144         }
145
146       switch (f.type)
147         {
148         case FMT_A:
149           width = f.w;
150           break;
151         case FMT_AHEX:
152           width = f.w / 2;
153           break;
154         default:
155           assert (0);
156         }
157
158       /* Create each variable. */
159       for (i = 0; i < nv; i++)
160         {
161           struct variable *new_var = create_variable (&default_dict, v[i],
162                                                ALPHA, width);
163           if (!new_var)
164             msg (SE, _("There is already a variable named %s."), v[i]);
165           else
166             {
167               new_var->print = new_var->write = f;
168               envector (new_var);
169             }
170         }
171
172       /* Clean up. */
173       for (i = 0; i < nv; i++)
174         free (v[i]);
175       free (v);
176     }
177   while (lex_match ('/'));
178
179   return lex_end_of_command ();
180
181   /* If we have an error at a point where cleanup is required,
182      flow-of-control comes here. */
183 fail:
184   for (i = 0; i < nv; i++)
185     free (v[i]);
186   free (v);
187   return CMD_PART_SUCCESS_MAYBE;
188 }
189
190 /* Parses the LEAVE command. */
191 int
192 cmd_leave (void)
193 {
194   struct variable **v;
195   int nv;
196
197   int i;
198
199   lex_match_id ("LEAVE");
200   if (!parse_variables (NULL, &v, &nv, PV_NONE))
201     return CMD_FAILURE;
202   for (i = 0; i < nv; i++)
203     {
204       if (v[i]->left)
205         continue;
206       devector (v[i]);
207       v[i]->left = 1;
208       envector (v[i]);
209     }
210   free (v);
211
212   return lex_end_of_command ();
213 }