1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010 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 <libpspp/assertion.h>
22 #include <libpspp/message.h>
23 #include <language/expressions/helpers.h>
24 #include <language/expressions/private.h>
25 #include <language/lexer/value-parser.h>
26 #include <libpspp/pool.h>
31 expr_evaluate (struct expression *e, const struct ccase *c, int case_idx,
34 struct dataset *ds = e->ds;
35 union operation_data *op = e->ops;
37 double *ns = e->number_stack;
38 struct substring *ss = e->string_stack;
40 /* Without a dictionary/dataset, the expression can't refer to variables,
41 and you don't need to specify a case when you evaluate the
42 expression. With a dictionary/dataset, the expression can refer
43 to variables, so you must specify a case when you evaluate the
45 assert ((c != NULL) == (e->ds != NULL));
47 pool_clear (e->eval_pool);
51 assert (op < e->ops + e->op_cnt);
52 switch (op++->operation)
61 const struct substring *s = &op++->string;
62 *ss++ = copy_string (e, s->string, s->length);
66 case OP_return_number:
67 *(double *) result = isfinite (ns[-1]) ? ns[-1] : SYSMIS;
70 case OP_return_string:
71 *(struct substring *) result = ss[-1];
74 #include "evaluate.inc"
83 expr_evaluate_num (struct expression *e, const struct ccase *c, int case_idx)
87 assert (e->type == OP_number || e->type == OP_boolean);
88 expr_evaluate (e, c, case_idx, &d);
93 expr_evaluate_str (struct expression *e, const struct ccase *c, int case_idx,
94 char *dst, size_t dst_size)
98 assert (e->type == OP_string);
99 assert ((dst == NULL) == (dst_size == 0));
100 expr_evaluate (e, c, case_idx, &s);
102 buf_copy_rpad (dst, dst_size, s.string, s.length, ' ');
105 #include <language/lexer/lexer.h>
106 #include <language/command.h>
109 cmd_debug_evaluate (struct lexer *lexer, struct dataset *dsother UNUSED)
111 bool optimize = true;
112 int retval = CMD_FAILURE;
113 bool dump_postfix = false;
115 struct ccase *c = NULL;
117 struct dataset *ds = NULL;
119 struct expression *expr;
123 struct dictionary *d = NULL;
124 if (lex_match_id (lexer, "NOOPTIMIZE"))
126 else if (lex_match_id (lexer, "POSTFIX"))
128 else if (lex_match (lexer, T_LPAREN))
130 char name[VAR_NAME_LEN + 1];
132 size_t old_value_cnt;
135 if (!lex_force_id (lexer))
137 strcpy (name, lex_tokcstr (lexer));
140 if (!lex_force_match (lexer, T_EQUALS))
143 if (lex_is_number (lexer))
145 else if (lex_is_string (lexer))
146 width = ss_length (lex_tokss (lexer));
149 lex_error (lexer, _("expecting number or string"));
155 ds = create_dataset ();
156 d = dataset_dict (ds);
159 old_value_cnt = dict_get_next_value_idx (d);
160 v = dict_create_var (d, name, width);
163 msg (SE, _("Duplicate variable name %s."), name);
168 c = case_create (dict_get_proto (d));
170 c = case_unshare_and_resize (c, dict_get_proto (d));
172 if (!parse_value (lexer, case_data_rw (c, v), var_get_width (v)))
175 if (!lex_force_match (lexer, T_RPAREN))
181 if (lex_token (lexer) != T_SLASH)
183 lex_force_match (lexer, T_SLASH);
189 expr = expr_parse_any (lexer, ds, optimize);
190 if (!expr || lex_end_of_command (lexer) != CMD_SUCCESS)
199 expr_debug_print_postfix (expr);
205 double d = expr_evaluate_num (expr, c, 0);
209 printf ("%.2f\n", d);
215 double b = expr_evaluate_num (expr, c, 0);
217 b == SYSMIS ? "sysmis" : b == 0.0 ? "false" : "true");
224 expr_evaluate (expr, c, 0, &s);
227 fwrite (s.string, s.length, 1, stdout);
237 retval = CMD_SUCCESS;
241 destroy_dataset (ds);
249 expr_debug_print_postfix (const struct expression *e)
253 for (i = 0; i < e->op_cnt; i++)
255 union operation_data *op = &e->ops[i];
258 switch (e->op_types[i])
261 if (op->operation == OP_return_number)
262 printf ("return_number");
263 else if (op->operation == OP_return_string)
264 printf ("return_string");
265 else if (is_function (op->operation))
266 printf ("%s", operations[op->operation].prototype);
267 else if (is_composite (op->operation))
268 printf ("%s", operations[op->operation].name);
270 printf ("%s:", operations[op->operation].name);
273 if (op->number != SYSMIS)
274 printf ("n<%g>", op->number);
276 printf ("n<SYSMIS>");
280 (int) op->string.length,
281 op->string.string != NULL ? op->string.string : "");
285 char str[FMT_STRING_LEN_MAX + 1];
286 fmt_to_string (op->format, str);
287 printf ("f<%s>", str);
291 printf ("v<%s>", var_get_name (op->variable));
294 printf ("vec<%s>", vector_get_name (op->vector));
297 printf ("i<%d>", op->integer);