dictionary: Limit split file variables to 8, for compatibility.
[pspp] / src / language / dictionary / split-file.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/case.h"
22 #include "data/data-out.h"
23 #include "data/dataset.h"
24 #include "data/dictionary.h"
25 #include "data/format.h"
26 #include "data/value-labels.h"
27 #include "data/variable.h"
28 #include "language/command.h"
29 #include "language/dictionary/split-file.h"
30 #include "language/lexer/lexer.h"
31 #include "language/lexer/variable-parser.h"
32 #include "libpspp/message.h"
33 #include "libpspp/str.h"
34 #include "output/pivot-table.h"
35
36 #include "gl/xalloc.h"
37
38 #include "gettext.h"
39 #define N_(msgid) msgid
40 #define _(msgid) gettext (msgid)
41
42 int
43 cmd_split_file (struct lexer *lexer, struct dataset *ds)
44 {
45   if (lex_match_id (lexer, "OFF"))
46     dict_clear_split_vars (dataset_dict (ds));
47   else
48     {
49       struct variable **v;
50       size_t n;
51
52       enum split_type type = (!lex_match_id (lexer, "LAYERED")
53                               && lex_match_id (lexer, "SEPARATE")
54                               ? SPLIT_SEPARATE
55                               : SPLIT_LAYERED);
56
57       lex_match (lexer, T_BY);
58       if (!parse_variables (lexer, dataset_dict (ds), &v, &n, PV_NO_DUPLICATE))
59         return CMD_CASCADING_FAILURE;
60
61       if (n > MAX_SPLITS)
62         {
63           verify (MAX_SPLITS == 8);
64           msg (SE, _("At most 8 split variables may be specified."));
65           free (v);
66           return CMD_CASCADING_FAILURE;
67         }
68
69       dict_set_split_vars (dataset_dict (ds), v, n, type);
70       free (v);
71     }
72
73   return CMD_SUCCESS;
74 }
75
76 /* Dumps out the values of all the split variables for the case C. */
77 void
78 output_split_file_values (const struct dataset *ds, const struct ccase *c)
79 {
80   const struct dictionary *dict = dataset_dict (ds);
81   size_t n_vars = dict_get_n_splits (dict);
82   if (n_vars == 0)
83     return;
84
85   struct pivot_table *table = pivot_table_create (N_("Split Values"));
86   pivot_dimension_create (table, PIVOT_AXIS_COLUMN, N_("Value"),
87                           N_("Value"));
88   struct pivot_dimension *variables = pivot_dimension_create (
89     table, PIVOT_AXIS_ROW, N_("Variable"));
90   variables->root->show_label = true;
91
92   for (size_t i = 0; i < n_vars; i++)
93     {
94       const struct variable *v = dict_get_split_vars (dict)[i];
95       int row = pivot_category_create_leaf (variables->root,
96                                             pivot_value_new_variable (v));
97
98       pivot_table_put2 (table, 0, row,
99                         pivot_value_new_var_value (v, case_data (c, v)));
100     }
101
102   pivot_table_submit (table);
103 }