1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
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.
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.
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
24 #include <data/procedure.h>
25 #include <data/dictionary.h>
26 #include <data/variable.h>
27 #include <language/command.h>
28 #include <language/lexer/lexer.h>
29 #include <libpspp/alloc.h>
30 #include <libpspp/message.h>
31 #include <libpspp/misc.h>
32 #include <libpspp/str.h>
35 #define _(msgid) gettext (msgid)
40 /* Just to be different, points to a set of null terminated strings
41 containing the names of the vectors to be created. The list
42 itself is terminated by a empty string. So a list of three
43 elements, A B C, would look like this: "A\0B\0C\0\0". */
46 /* vecnames iterators. */
49 /* Maximum allocated position for vecnames, plus one position. */
52 cp = vecnames = xmalloc (256);
53 endp = &vecnames[256];
56 /* Get the name(s) of the new vector(s). */
58 return CMD_CASCADING_FAILURE;
63 char *old_vecnames = vecnames;
64 vecnames = xrealloc (vecnames, endp - vecnames + 256);
65 cp = (cp - old_vecnames) + vecnames;
66 endp = (endp - old_vecnames) + vecnames + 256;
69 for (cp2 = cp; cp2 < cp; cp2 += strlen (cp))
70 if (!strcasecmp (cp2, tokid))
72 msg (SE, _("Vector name %s is given twice."), tokid);
76 if (dict_lookup_vector (default_dict, tokid))
78 msg (SE, _("There is already a vector with name %s."), tokid);
82 cp = stpcpy (cp, tokid) + 1;
88 /* Now that we have the names it's time to check for the short
96 if (strchr (vecnames, '\0')[1])
98 /* There's more than one vector name. */
99 msg (SE, _("A slash must be used to separate each vector "
100 "specification when using the long form. Commands "
101 "such as VECTOR A,B=Q1 TO Q20 are not supported."));
105 if (!parse_variables (default_dict, &v, &nv,
106 PV_SAME_TYPE | PV_DUPLICATE))
109 dict_create_vector (default_dict, vecnames, v, nv);
112 else if (lex_match ('('))
116 /* Maximum number of digits in a number to add to the base
120 /* Name of an individual variable to be created. */
121 char name[SHORT_NAME_LEN + 1];
123 /* Vector variables. */
127 if (!lex_force_int ())
128 return CMD_CASCADING_FAILURE;
133 msg (SE, _("Vectors must have at least one element."));
136 if (!lex_force_match (')'))
139 /* First check that all the generated variable names
140 are LONG_NAME_LEN characters or shorter. */
141 ndig = intlog10 (nv);
142 for (cp = vecnames; *cp;)
144 int len = strlen (cp);
145 if (len + ndig > LONG_NAME_LEN)
147 msg (SE, _("%s%d is too long for a variable name."), cp, nv);
153 /* Next check that none of the variables exist. */
154 for (cp = vecnames; *cp;)
156 for (i = 0; i < nv; i++)
158 sprintf (name, "%s%d", cp, i + 1);
159 if (dict_lookup_var (default_dict, name))
161 msg (SE, _("There is already a variable named %s."),
166 cp += strlen (cp) + 1;
169 /* Finally create the variables and vectors. */
170 v = xmalloc (nv * sizeof *v);
171 for (cp = vecnames; *cp;)
173 for (i = 0; i < nv; i++)
175 sprintf (name, "%s%d", cp, i + 1);
176 v[i] = dict_create_var_assert (default_dict, name, 0);
178 if (!dict_create_vector (default_dict, cp, v, nv))
180 cp += strlen (cp) + 1;
186 msg (SE, _("The syntax for this command does not match "
187 "the expected syntax for either the long form "
188 "or the short form of VECTOR."));
195 while (lex_match ('/'));
199 lex_error (_("expecting end of command"));