1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include <data/dictionary.h>
22 #include <data/procedure.h>
23 #include <data/variable.h>
24 #include <data/format.h>
25 #include <language/command.h>
26 #include <language/lexer/format-parser.h>
27 #include <language/lexer/lexer.h>
28 #include <language/lexer/variable-parser.h>
29 #include <libpspp/assertion.h>
30 #include <libpspp/message.h>
31 #include <libpspp/str.h>
34 #define _(msgid) gettext (msgid)
36 /* Parses the NUMERIC command. */
38 cmd_numeric (struct lexer *lexer, struct dataset *ds)
42 /* Names of variables to create. */
48 /* Format spec for variables to create. f.type==-1 if default is to
52 if (!parse_DATA_LIST_vars (lexer, &v, &nv, PV_NONE))
55 /* Get the optional format specification. */
56 if (lex_match (lexer, '('))
58 if (!parse_format_specifier (lexer, &f))
61 if ( ! fmt_check_output (&f))
64 if (fmt_is_string (f.type))
66 char str[FMT_STRING_LEN_MAX + 1];
67 msg (SE, _("Format type %s may not be used with a numeric "
68 "variable."), fmt_to_string (&f, str));
72 if (!lex_match (lexer, ')'))
74 msg (SE, _("`)' expected after output format."));
81 /* Create each variable. */
82 for (i = 0; i < nv; i++)
84 struct variable *new_var = dict_create_var (dataset_dict (ds), v[i], 0);
86 msg (SE, _("There is already a variable named %s."), v[i]);
90 var_set_both_formats (new_var, &f);
95 for (i = 0; i < nv; i++)
99 while (lex_match (lexer, '/'));
101 return lex_end_of_command (lexer);
103 /* If we have an error at a point where cleanup is required,
104 flow-of-control comes here. */
106 for (i = 0; i < nv; i++)
112 /* Parses the STRING command. */
114 cmd_string (struct lexer *lexer, struct dataset *ds)
118 /* Names of variables to create. */
122 /* Format spec for variables to create. */
125 /* Width of variables to create. */
130 if (!parse_DATA_LIST_vars (lexer, &v, &nv, PV_NONE))
133 if (!lex_force_match (lexer, '(')
134 || !parse_format_specifier (lexer, &f)
135 || !lex_force_match (lexer, ')'))
137 if (!fmt_is_string (f.type))
139 char str[FMT_STRING_LEN_MAX + 1];
140 msg (SE, _("Format type %s may not be used with a string "
141 "variable."), fmt_to_string (&f, str));
144 if (!fmt_check_output (&f))
147 width = fmt_var_width (&f);
149 /* Create each variable. */
150 for (i = 0; i < nv; i++)
152 struct variable *new_var = dict_create_var (dataset_dict (ds), v[i],
155 msg (SE, _("There is already a variable named %s."), v[i]);
157 var_set_both_formats (new_var, &f);
161 for (i = 0; i < nv; i++)
165 while (lex_match (lexer, '/'));
167 return lex_end_of_command (lexer);
169 /* If we have an error at a point where cleanup is required,
170 flow-of-control comes here. */
172 for (i = 0; i < nv; i++)
178 /* Parses the LEAVE command. */
180 cmd_leave (struct lexer *lexer, struct dataset *ds)
187 if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE))
188 return CMD_CASCADING_FAILURE;
189 for (i = 0; i < nv; i++)
190 var_set_leave (v[i], true);
193 return lex_end_of_command (lexer);