Rename procedure.[ch] to dataset.[ch].
[pspp-builds.git] / src / language / xforms / select-if.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 2010, 2011 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
21 #include "data/dataset.h"
22 #include "data/dictionary.h"
23 #include "data/transformations.h"
24 #include "data/variable.h"
25 #include "language/command.h"
26 #include "language/expressions/public.h"
27 #include "language/lexer/lexer.h"
28 #include "language/lexer/variable-parser.h"
29 #include "libpspp/message.h"
30 #include "libpspp/str.h"
31
32 #include "gl/xalloc.h"
33
34 #include "gettext.h"
35 #define _(msgid) gettext (msgid)
36
37 /* SELECT IF transformation. */
38 struct select_if_trns
39   {
40     struct expression *e;       /* Test expression. */
41   };
42
43 static trns_proc_func select_if_proc;
44 static trns_free_func select_if_free;
45
46 /* Parses the SELECT IF transformation. */
47 int
48 cmd_select_if (struct lexer *lexer, struct dataset *ds)
49 {
50   struct expression *e;
51   struct select_if_trns *t;
52
53   e = expr_parse (lexer, ds, EXPR_BOOLEAN);
54   if (!e)
55     return CMD_CASCADING_FAILURE;
56
57   if (lex_token (lexer) != T_ENDCMD)
58     {
59       expr_free (e);
60       lex_error (lexer, _("expecting end of command"));
61       return CMD_CASCADING_FAILURE;
62     }
63
64   t = xmalloc (sizeof *t);
65   t->e = e;
66   add_transformation (ds, select_if_proc, select_if_free, t);
67
68   return CMD_SUCCESS;
69 }
70
71 /* Performs the SELECT IF transformation T on case C. */
72 static int
73 select_if_proc (void *t_, struct ccase **c,
74                 casenumber case_num)
75 {
76   struct select_if_trns *t = t_;
77   return (expr_evaluate_num (t->e, *c, case_num) == 1.0
78           ? TRNS_CONTINUE : TRNS_DROP_CASE);
79 }
80
81 /* Frees SELECT IF transformation T. */
82 static bool
83 select_if_free (void *t_)
84 {
85   struct select_if_trns *t = t_;
86   expr_free (t->e);
87   free (t);
88   return true;
89 }
90
91 /* Parses the FILTER command. */
92 int
93 cmd_filter (struct lexer *lexer, struct dataset *ds)
94 {
95   struct dictionary *dict = dataset_dict (ds);
96   if (lex_match_id (lexer, "OFF"))
97     dict_set_filter (dict, NULL);
98   else if (lex_token (lexer) == T_ENDCMD)
99     {
100       msg (SW, _("Syntax error expecting OFF or BY.  "
101                  "Turning off case filtering."));
102       dict_set_filter (dict, NULL);
103     }
104   else
105     {
106       struct variable *v;
107
108       lex_match (lexer, T_BY);
109       v = parse_variable (lexer, dict);
110       if (!v)
111         return CMD_FAILURE;
112
113       if (var_is_alpha (v))
114         {
115           msg (SE, _("The filter variable must be numeric."));
116           return CMD_FAILURE;
117         }
118
119       if (dict_class_from_id (var_get_name (v)) == DC_SCRATCH)
120         {
121           msg (SE, _("The filter variable may not be scratch."));
122           return CMD_FAILURE;
123         }
124
125       dict_set_filter (dict, v);
126     }
127
128   return CMD_SUCCESS;
129 }