CTABLES remove some vestigial multiple response support
[pspp] / src / language / stats / ctables.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2021 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 <math.h>
20 #include <errno.h>
21
22 #include "data/casereader.h"
23 #include "data/casewriter.h"
24 #include "data/data-out.h"
25 #include "data/dataset.h"
26 #include "data/dictionary.h"
27 #include "data/mrset.h"
28 #include "data/subcase.h"
29 #include "data/value-labels.h"
30 #include "language/command.h"
31 #include "language/lexer/format-parser.h"
32 #include "language/lexer/lexer.h"
33 #include "language/lexer/variable-parser.h"
34 #include "libpspp/array.h"
35 #include "libpspp/assertion.h"
36 #include "libpspp/hash-functions.h"
37 #include "libpspp/hmap.h"
38 #include "libpspp/i18n.h"
39 #include "libpspp/message.h"
40 #include "libpspp/string-array.h"
41 #include "math/mode.h"
42 #include "math/moments.h"
43 #include "math/percentiles.h"
44 #include "math/sort.h"
45 #include "output/pivot-table.h"
46
47 #include "gl/minmax.h"
48 #include "gl/xalloc.h"
49
50 #include "gettext.h"
51 #define _(msgid) gettext (msgid)
52 #define N_(msgid) (msgid)
53
54 enum ctables_vlabel
55   {
56     CTVL_NONE = SETTINGS_VALUE_SHOW_DEFAULT,
57     CTVL_NAME = SETTINGS_VALUE_SHOW_VALUE,
58     CTVL_LABEL = SETTINGS_VALUE_SHOW_LABEL,
59     CTVL_BOTH = SETTINGS_VALUE_SHOW_BOTH,
60   };
61
62 /* XXX:
63    - unweighted summaries (U*)
64    - lower confidence limits (*.LCL)
65    - upper confidence limits (*.UCL)
66    - standard error (*.SE)
67  */
68 #define SUMMARIES                                                       \
69     /* All variables. */                                                \
70     S(CTSF_COUNT, "COUNT", N_("Count"), CTF_COUNT, CTFA_ALL)            \
71     S(CTSF_ECOUNT, "ECOUNT", N_("Adjusted Count"), CTF_COUNT, CTFA_ALL) \
72     S(CTSF_ROWPCT_COUNT, "ROWPCT.COUNT", N_("Row %"), CTF_PERCENT, CTFA_ALL) \
73     S(CTSF_COLPCT_COUNT, "COLPCT.COUNT", N_("Column %"), CTF_PERCENT, CTFA_ALL) \
74     S(CTSF_TABLEPCT_COUNT, "TABLEPCT.COUNT", N_("Table %"), CTF_PERCENT, CTFA_ALL) \
75     S(CTSF_SUBTABLEPCT_COUNT, "SUBTABLEPCT.COUNT", N_("Subtable %"), CTF_PERCENT, CTFA_ALL) \
76     S(CTSF_LAYERPCT_COUNT, "LAYERPCT.COUNT", N_("Layer %"), CTF_PERCENT, CTFA_ALL) \
77     S(CTSF_LAYERROWPCT_COUNT, "LAYERROWPCT.COUNT", N_("Layer Row %"), CTF_PERCENT, CTFA_ALL) \
78     S(CTSF_LAYERCOLPCT_COUNT, "LAYERCOLPCT.COUNT", N_("Layer Column %"), CTF_PERCENT, CTFA_ALL) \
79     S(CTSF_ROWPCT_VALIDN, "ROWPCT.VALIDN", N_("Row Valid N %"), CTF_PERCENT, CTFA_ALL) \
80     S(CTSF_COLPCT_VALIDN, "COLPCT.VALIDN", N_("Column Valid N %"), CTF_PERCENT, CTFA_ALL) \
81     S(CTSF_TABLEPCT_VALIDN, "TABLEPCT.VALIDN", N_("Table Valid N %"), CTF_PERCENT, CTFA_ALL) \
82     S(CTSF_SUBTABLEPCT_VALIDN, "SUBTABLEPCT.VALIDN", N_("Subtable Valid N %"), CTF_PERCENT, CTFA_ALL) \
83     S(CTSF_LAYERPCT_VALIDN, "LAYERPCT.VALIDN", N_("Layer Valid N %"), CTF_PERCENT, CTFA_ALL) \
84     S(CTSF_LAYERROWPCT_VALIDN, "LAYERROWPCT.VALIDN", N_("Layer Row Valid N %"), CTF_PERCENT, CTFA_ALL) \
85     S(CTSF_LAYERCOLPCT_VALIDN, "LAYERCOLPCT.VALIDN", N_("Layer Column Valid N %"), CTF_PERCENT, CTFA_ALL) \
86     S(CTSF_ROWPCT_TOTALN, "ROWPCT.TOTALN", N_("Row Total N %"), CTF_PERCENT, CTFA_ALL) \
87     S(CTSF_COLPCT_TOTALN, "COLPCT.TOTALN", N_("Column Total N %"), CTF_PERCENT, CTFA_ALL) \
88     S(CTSF_TABLEPCT_TOTALN, "TABLEPCT.TOTALN", N_("Table Total N %"), CTF_PERCENT, CTFA_ALL) \
89     S(CTSF_SUBTABLEPCT_TOTALN, "SUBTABLEPCT.TOTALN", N_("Subtable Total N %"), CTF_PERCENT, CTFA_ALL) \
90     S(CTSF_LAYERPCT_TOTALN, "LAYERPCT.TOTALN", N_("Layer Total N %"), CTF_PERCENT, CTFA_ALL) \
91     S(CTSF_LAYERROWPCT_TOTALN, "LAYERROWPCT.TOTALN", N_("Layer Row Total N %"), CTF_PERCENT, CTFA_ALL) \
92     S(CTSF_LAYERCOLPCT_TOTALN, "LAYERCOLPCT.TOTALN", N_("Layer Column Total N %"), CTF_PERCENT, CTFA_ALL) \
93                                                                         \
94     /* Scale variables, totals, and subtotals. */                       \
95     S(CTSF_MAXIMUM, "MAXIMUM", N_("Maximum"), CTF_GENERAL, CTFA_SCALE)  \
96     S(CTSF_MEAN, "MEAN", N_("Mean"), CTF_GENERAL, CTFA_SCALE)           \
97     S(CTSF_MEDIAN, "MEDIAN", N_("Median"), CTF_GENERAL, CTFA_SCALE)     \
98     S(CTSF_MINIMUM, "MINIMUM", N_("Minimum"), CTF_GENERAL, CTFA_SCALE)  \
99     S(CTSF_MISSING, "MISSING", N_("Missing"), CTF_GENERAL, CTFA_SCALE)  \
100     S(CTSF_MODE, "MODE", N_("Mode"), CTF_GENERAL, CTFA_SCALE)           \
101     S(CTSF_PTILE, "PTILE", N_("Percentile"), CTF_GENERAL, CTFA_SCALE)   \
102     S(CTSF_RANGE, "RANGE", N_("Range"), CTF_GENERAL, CTFA_SCALE)        \
103     S(CTSF_SEMEAN, "SEMEAN", N_("Std Error of Mean"), CTF_GENERAL, CTFA_SCALE) \
104     S(CTSF_STDDEV, "STDDEV", N_("Std Deviation"), CTF_GENERAL, CTFA_SCALE) \
105     S(CTSF_SUM, "SUM", N_("Sum"), CTF_GENERAL, CTFA_SCALE)              \
106     S(CSTF_TOTALN, "TOTALN", N_("Total N"), CTF_COUNT, CTFA_SCALE)      \
107     S(CTSF_ETOTALN, "ETOTALN", N_("Adjusted Total N"), CTF_COUNT, CTFA_SCALE) \
108     S(CTSF_VALIDN, "VALIDN", N_("Valid N"), CTF_COUNT, CTFA_SCALE)      \
109     S(CTSF_EVALIDN, "EVALIDN", N_("Adjusted Valid N"), CTF_COUNT, CTFA_SCALE) \
110     S(CTSF_VARIANCE, "VARIANCE", N_("Variance"), CTF_GENERAL, CTFA_SCALE) \
111     S(CTSF_ROWPCT_SUM, "ROWPCT.SUM", N_("Row Sum %"), CTF_PERCENT, CTFA_SCALE) \
112     S(CTSF_COLPCT_SUM, "COLPCT.SUM", N_("Column Sum %"), CTF_PERCENT, CTFA_SCALE) \
113     S(CTSF_TABLEPCT_SUM, "TABLEPCT.SUM", N_("Table Sum %"), CTF_PERCENT, CTFA_SCALE) \
114     S(CTSF_SUBTABLEPCT_SUM, "SUBTABLEPCT.SUM", N_("Subtable Sum %"), CTF_PERCENT, CTFA_SCALE) \
115     S(CTSF_LAYERPCT_SUM, "LAYERPCT.SUM", N_("Layer Sum %"), CTF_PERCENT, CTFA_SCALE) \
116     S(CTSF_LAYERROWPCT_SUM, "LAYERROWPCT.SUM", N_("Layer Row Sum %"), CTF_PERCENT, CTFA_SCALE) \
117     S(CTSF_LAYERCOLPCT_SUM, "LAYERCOLPCT.SUM", N_("Layer Column Sum %"), CTF_PERCENT, CTFA_SCALE) \
118
119 #if 0         /* Multiple response sets not yet implemented. */
120   S(CTSF_RESPONSES, "RESPONSES", N_("Responses"), CTF_COUNT, CTFA_MRSETS) \
121     S(CTSF_ROWPCT_RESPONSES, "ROWPCT.RESPONSES", N_("Row Responses %"), CTF_PERCENT, CTFA_MRSETS) \
122     S(CTSF_COLPCT_RESPONSES, "COLPCT.RESPONSES", N_("Column Responses %"), CTF_PERCENT, CTFA_MRSETS) \
123     S(CTSF_TABLEPCT_RESPONSES, "TABLEPCT.RESPONSES", N_("Table Responses %"), CTF_PERCENT, CTFA_MRSETS) \
124     S(CTSF_SUBTABLEPCT_RESPONSES, "SUBTABLEPCT.RESPONSES", N_("Subtable Responses %"), CTF_PERCENT, CTFA_MRSETS) \
125     S(CTSF_LAYERPCT_RESPONSES, "LAYERPCT.RESPONSES", N_("Layer Responses %"), CTF_PERCENT, CTFA_MRSETS) \
126     S(CTSF_LAYERROWPCT_RESPONSES, "LAYERROWPCT.RESPONSES", N_("Layer Row Responses %"), CTF_PERCENT, CTFA_MRSETS) \
127     S(CTSF_LAYERCOLPCT_RESPONSES, "LAYERCOLPCT.RESPONSES", N_("Layer Column Responses %"), CTF_PERCENT, CTFA_MRSETS) \
128     S(CTSF_ROWPCT_RESPONSES_COUNT, "ROWPCT.RESPONSES.COUNT", N_("Row Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
129     S(CTSF_COLPCT_RESPONSES_COUNT, "COLPCT.RESPONSES.COUNT", N_("Column Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
130     S(CTSF_TABLEPCT_RESPONSES_COUNT, "TABLEPCT.RESPONSES.COUNT", N_("Table Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
131     S(CTSF_SUBTABLEPCT_RESPONSES_COUNT, "SUBTABLEPCT.RESPONSES.COUNT", N_("Subtable Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
132     S(CTSF_LAYERPCT_RESPONSES_COUNT, "LAYERPCT.RESPONSES.COUNT", N_("Layer Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
133     S(CTSF_LAYERROWPCT_RESPONSES_COUNT, "LAYERROWPCT.RESPONSES.COUNT", N_("Layer Row Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
134     S(CTSF_LAYERCOLPCT_RESPONSES_COUNT, "LAYERCOLPCT.RESPONSES.COUNT", N_("Layer Column Responses % (Base: Count)"), CTF_PERCENT, CTFA_MRSETS) \
135     S(CTSF_ROWPCT_COUNT_RESPONSES, "ROWPCT.COUNT.RESPONSES", N_("Row Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
136     S(CTSF_COLPCT_COUNT_RESPONSES, "COLPCT.COUNT.RESPONSES", N_("Column Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
137     S(CTSF_TABLEPCT_COUNT_RESPONSES, "TABLEPCT.COUNT.RESPONSES", N_("Table Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
138     S(CTSF_SUBTABLEPCT_COUNT_RESPONSES, "SUBTABLEPCT.COUNT.RESPONSES", N_("Subtable Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
139     S(CTSF_LAYERPCT_COUNT_RESPONSES, "LAYERPCT.COUNT.RESPONSES", N_("Layer Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
140     S(CTSF_LAYERROWPCT_COUNT_RESPONSES, "LAYERROWPCT.COUNT.RESPONSES", N_("Layer Row Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS) \
141     S(CTSF_LAYERCOLPCT_COUNT_RESPONSES, "LAYERCOLPCT.RESPONSES.COUNT", N_("Layer Column Count % (Base: Responses)"), CTF_PERCENT, CTFA_MRSETS)
142 #endif
143
144 enum ctables_summary_function
145   {
146 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) ENUM,
147     SUMMARIES
148 #undef S
149   };
150
151 enum {
152 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) +1
153   N_CTSF_FUNCTIONS = SUMMARIES
154 #undef S
155 };
156
157 static bool ctables_summary_function_is_count (enum ctables_summary_function);
158
159 enum ctables_domain_type
160   {
161     /* Within a section, where stacked variables divide one section from
162        another. */
163     CTDT_TABLE,                  /* All layers of a whole section. */
164     CTDT_LAYER,                  /* One layer within a section. */
165     CTDT_LAYERROW,               /* Row in one layer within a section. */
166     CTDT_LAYERCOL,               /* Column in one layer within a section. */
167
168     /* Within a subtable, where a subtable pairs an innermost row variable with
169        an innermost column variable within a single layer.  */
170     CTDT_SUBTABLE,               /* Whole subtable. */
171     CTDT_ROW,                    /* Row within a subtable. */
172     CTDT_COL,                    /* Column within a subtable. */
173 #define N_CTDTS 7
174   };
175
176 struct ctables_domain
177   {
178     struct hmap_node node;
179
180     const struct ctables_cell *example;
181
182     double d_valid;             /* Dictionary weight. */
183     double d_missing;
184     double e_valid;             /* Effective weight */
185     double e_missing;
186   };
187
188 enum ctables_summary_variant
189   {
190     CSV_CELL,
191     CSV_TOTAL
192 #define N_CSVS 2
193   };
194
195 struct ctables_cell
196   {
197     /* In struct ctables_section's 'cells' hmap.  Indexed by all the values in
198        all the axes (except the scalar variable, if any). */
199     struct hmap_node node;
200
201     /* The domains that contain this cell. */
202     bool contributes_to_domains;
203     struct ctables_domain *domains[N_CTDTS];
204
205     bool hide;
206     bool postcompute;
207     enum ctables_summary_variant sv;
208
209     struct ctables_cell_axis
210       {
211         struct ctables_cell_value
212           {
213             const struct ctables_category *category;
214             union value value;
215           }
216         *cvs;
217         int leaf;
218       }
219     axes[PIVOT_N_AXES];
220
221     union ctables_summary *summaries;
222   };
223
224 struct ctables
225   {
226     const struct dictionary *dict;
227     struct pivot_table_look *look;
228
229     /* CTABLES has a number of extra formats that we implement via custom
230        currency specifications on an alternate fmt_settings. */
231 #define CTEF_NEGPAREN FMT_CCA
232 #define CTEF_NEQUAL   FMT_CCB
233 #define CTEF_PAREN    FMT_CCC
234 #define CTEF_PCTPAREN FMT_CCD
235     struct fmt_settings ctables_formats;
236
237     /* If this is NULL, zeros are displayed using the normal print format.
238        Otherwise, this string is displayed. */
239     char *zero;
240
241     /* If this is NULL, missing values are displayed using the normal print
242        format.  Otherwise, this string is displayed. */
243     char *missing;
244
245     /* Indexed by variable dictionary index. */
246     enum ctables_vlabel *vlabels;
247
248     struct hmap postcomputes;   /* Contains "struct ctables_postcompute"s. */
249
250     bool mrsets_count_duplicates; /* MRSETS. */
251     bool smissing_listwise;       /* SMISSING. */
252     struct variable *e_weight;    /* WEIGHT. */
253     int hide_threshold;           /* HIDESMALLCOUNTS. */
254
255     struct ctables_table **tables;
256     size_t n_tables;
257   };
258
259 static struct ctables_postcompute *ctables_find_postcompute (struct ctables *,
260                                                              const char *name);
261
262 struct ctables_postcompute
263   {
264     struct hmap_node hmap_node; /* In struct ctables's 'pcompute' hmap. */
265     char *name;                 /* Name, without leading &. */
266
267     struct msg_location *location; /* Location of definition. */
268     struct ctables_pcexpr *expr;
269     char *label;
270     struct ctables_summary_spec_set *specs;
271     bool hide_source_cats;
272   };
273
274 struct ctables_pcexpr
275   {
276     /* Precedence table:
277
278        ()
279        **
280        -
281        * /
282        - +
283     */
284     enum ctables_postcompute_op
285       {
286         /* Terminals. */
287         CTPO_CONSTANT,          /* 5 */
288         CTPO_CAT_NUMBER,        /* [5] */
289         CTPO_CAT_STRING,        /* ["STRING"] */
290         CTPO_CAT_RANGE,         /* [LO THRU 5] */
291         CTPO_CAT_MISSING,       /* MISSING */
292         CTPO_CAT_OTHERNM,       /* OTHERNM */
293         CTPO_CAT_SUBTOTAL,      /* SUBTOTAL */
294         CTPO_CAT_TOTAL,         /* TOTAL */
295
296         /* Nonterminals. */
297         CTPO_ADD,
298         CTPO_SUB,
299         CTPO_MUL,
300         CTPO_DIV,
301         CTPO_POW,
302         CTPO_NEG,
303       }
304     op;
305
306     union
307       {
308         /* CTPO_CAT_NUMBER. */
309         double number;
310
311         /* CTPO_CAT_STRING. */
312         char *string;
313
314         /* CTPO_CAT_RANGE. */
315         double range[2];
316
317         /* CTPO_CAT_SUBTOTAL. */
318         size_t subtotal_index;
319
320         /* Two elements: CTPO_ADD, CTPO_SUB, CTPO_MUL, CTPO_DIV, CTPO_POW.
321            One element: CTPO_NEG. */
322         struct ctables_pcexpr *subs[2];
323       };
324
325     /* Source location. */
326     struct msg_location *location;
327   };
328
329 static void ctables_pcexpr_destroy (struct ctables_pcexpr *);
330 static struct ctables_pcexpr *ctables_pcexpr_allocate_binary (
331   enum ctables_postcompute_op, struct ctables_pcexpr *sub0,
332   struct ctables_pcexpr *sub1);
333
334 struct ctables_summary_spec_set
335   {
336     struct ctables_summary_spec *specs;
337     size_t n;
338     size_t allocated;
339
340     struct variable *var;
341   };
342
343 static void ctables_summary_spec_set_clone (struct ctables_summary_spec_set *,
344                                             const struct ctables_summary_spec_set *);
345 static void ctables_summary_spec_set_uninit (struct ctables_summary_spec_set *);
346
347 /* A nested sequence of variables, e.g. a > b > c. */
348 struct ctables_nest
349   {
350     struct variable **vars;
351     size_t n;
352     size_t scale_idx;
353     size_t *domains[N_CTDTS];
354     size_t n_domains[N_CTDTS];
355
356     struct ctables_summary_spec_set specs[N_CSVS];
357   };
358
359 /* A stack of nestings, e.g. nest1 + nest2 + ... + nestN. */
360 struct ctables_stack
361   {
362     struct ctables_nest *nests;
363     size_t n;
364   };
365
366 struct ctables_value
367   {
368     struct hmap_node node;
369     union value value;
370     int leaf;
371   };
372
373 struct ctables_occurrence
374   {
375     struct hmap_node node;
376     union value value;
377   };
378
379 struct ctables_section
380   {
381     struct ctables_table *table;
382     struct ctables_nest *nests[PIVOT_N_AXES];
383     struct hmap *occurrences[PIVOT_N_AXES];
384     struct hmap cells;            /* Contains "struct ctable_cell"s. */
385     struct hmap domains[N_CTDTS]; /* Contains "struct ctable_domain"s. */
386   };
387
388 struct ctables_table
389   {
390     struct ctables *ctables;
391     struct ctables_axis *axes[PIVOT_N_AXES];
392     struct ctables_stack stacks[PIVOT_N_AXES];
393     struct ctables_section *sections;
394     size_t n_sections;
395     enum pivot_axis_type summary_axis;
396     struct ctables_summary_spec_set summary_specs;
397
398     const struct variable *clabels_example;
399     struct hmap clabels_values_map;
400     struct ctables_value **clabels_values;
401     size_t n_clabels_values;
402
403     enum pivot_axis_type slabels_axis;
404     bool slabels_visible;
405
406     /* The innermost category labels for axis 'a' appear on axis label_axis[a].
407
408        Most commonly, label_axis[a] == a, and in particular we always have
409        label_axis{PIVOT_AXIS_LAYER] == PIVOT_AXIS_LAYER.
410
411        If ROWLABELS or COLLABELS is specified, then one of
412        label_axis[PIVOT_AXIS_ROW] or label_axis[PIVOT_AXIS_COLUMN] can be the
413        opposite axis or PIVOT_AXIS_LAYER.  Only one of them will differ.
414     */
415     enum pivot_axis_type label_axis[PIVOT_N_AXES];
416     enum pivot_axis_type clabels_from_axis;
417
418     /* Indexed by variable dictionary index. */
419     struct ctables_categories **categories;
420     size_t n_categories;
421
422     double cilevel;
423
424     char *caption;
425     char *corner;
426     char *title;
427
428     struct ctables_chisq *chisq;
429     struct ctables_pairwise *pairwise;
430   };
431
432 struct ctables_var
433   {
434     bool is_mrset;
435     union
436       {
437         struct variable *var;
438         const struct mrset *mrset;
439       };
440   };
441
442 static const struct fmt_spec *
443 ctables_var_get_print_format (const struct ctables_var *var)
444 {
445   return (var->is_mrset
446           ? var_get_print_format (var->mrset->vars[0])
447           : var_get_print_format (var->var));
448 }
449
450 static const char *
451 ctables_var_name (const struct ctables_var *var)
452 {
453   return var->is_mrset ? var->mrset->name : var_get_name (var->var);
454 }
455
456 struct ctables_categories
457   {
458     size_t n_refs;
459     struct ctables_category *cats;
460     size_t n_cats;
461     bool show_empty;
462   };
463
464 struct ctables_category
465   {
466     enum ctables_category_type
467       {
468         /* Explicit category lists. */
469         CCT_NUMBER,
470         CCT_STRING,
471         CCT_RANGE,
472         CCT_MISSING,
473         CCT_OTHERNM,
474         CCT_POSTCOMPUTE,
475
476         /* Totals and subtotals. */
477         CCT_SUBTOTAL,
478         CCT_TOTAL,
479
480         /* Implicit category lists. */
481         CCT_VALUE,
482         CCT_LABEL,
483         CCT_FUNCTION,
484       }
485     type;
486
487     struct ctables_category *subtotal;
488
489     bool hide;
490
491     union
492       {
493         double number;          /* CCT_NUMBER. */
494         char *string;           /* CCT_STRING. */
495         double range[2];        /* CCT_RANGE. */
496
497         struct
498           {
499             char *total_label;      /* CCT_SUBTOTAL, CCT_TOTAL. */
500             bool hide_subcategories; /* CCT_SUBTOTAL. */
501           };
502
503         const struct ctables_postcompute *pc; /* CCT_POSTCOMPUTE. */
504
505         /* CCT_VALUE, CCT_LABEL, CCT_FUNCTION. */
506         struct
507           {
508             bool include_missing;
509             bool sort_ascending;
510
511             /* CCT_FUNCTION. */
512             enum ctables_summary_function sort_function;
513             struct variable *sort_var;
514             double percentile;
515           };
516       };
517
518     /* Source location.  This is null for CCT_TOTAL, CCT_VALUE, CCT_LABEL,
519        CCT_FUNCTION. */
520     struct msg_location *location;
521   };
522
523 static void
524 ctables_category_uninit (struct ctables_category *cat)
525 {
526   if (!cat)
527     return;
528
529   switch (cat->type)
530     {
531     case CCT_NUMBER:
532     case CCT_RANGE:
533     case CCT_MISSING:
534     case CCT_OTHERNM:
535     case CCT_POSTCOMPUTE:
536       break;
537
538     case CCT_STRING:
539       free (cat->string);
540       break;
541
542     case CCT_SUBTOTAL:
543     case CCT_TOTAL:
544       free (cat->total_label);
545       break;
546
547     case CCT_VALUE:
548     case CCT_LABEL:
549     case CCT_FUNCTION:
550       break;
551     }
552 }
553
554 static bool
555 ctables_category_equal (const struct ctables_category *a,
556                         const struct ctables_category *b)
557 {
558   if (a->type != b->type)
559     return false;
560
561   switch (a->type)
562     {
563     case CCT_NUMBER:
564       return a->number == b->number;
565
566     case CCT_STRING:
567       return strcmp (a->string, b->string);
568
569     case CCT_RANGE:
570       return a->range[0] == b->range[0] && a->range[1] == b->range[1];
571
572     case CCT_MISSING:
573     case CCT_OTHERNM:
574       return true;
575
576     case CCT_POSTCOMPUTE:
577       return a->pc == b->pc;
578
579     case CCT_SUBTOTAL:
580     case CCT_TOTAL:
581       return !strcmp (a->total_label, b->total_label);
582
583     case CCT_VALUE:
584     case CCT_LABEL:
585     case CCT_FUNCTION:
586       return (a->include_missing == b->include_missing
587               && a->sort_ascending == b->sort_ascending
588               && a->sort_function == b->sort_function
589               && a->sort_var == b->sort_var
590               && a->percentile == b->percentile);
591     }
592
593   NOT_REACHED ();
594 }
595
596 static void
597 ctables_categories_unref (struct ctables_categories *c)
598 {
599   if (!c)
600     return;
601
602   assert (c->n_refs > 0);
603   if (--c->n_refs)
604     return;
605
606   for (size_t i = 0; i < c->n_cats; i++)
607     ctables_category_uninit (&c->cats[i]);
608   free (c->cats);
609   free (c);
610 }
611
612 static bool
613 ctables_categories_equal (const struct ctables_categories *a,
614                           const struct ctables_categories *b)
615 {
616   if (a->n_cats != b->n_cats || a->show_empty != b->show_empty)
617     return false;
618
619   for (size_t i = 0; i < a->n_cats; i++)
620     if (!ctables_category_equal (&a->cats[i], &b->cats[i]))
621       return false;
622
623   return true;
624 }
625
626 /* Chi-square test (SIGTEST). */
627 struct ctables_chisq
628   {
629     double alpha;
630     bool include_mrsets;
631     bool all_visible;
632   };
633
634 /* Pairwise comparison test (COMPARETEST). */
635 struct ctables_pairwise
636   {
637     enum { PROP, MEAN } type;
638     double alpha[2];
639     bool include_mrsets;
640     bool meansvariance_allcats;
641     bool all_visible;
642     enum { BONFERRONI = 1, BH } adjust;
643     bool merge;
644     bool apa_style;
645     bool show_sig;
646   };
647
648 struct ctables_axis
649   {
650     enum ctables_axis_op
651       {
652         /* Terminals. */
653         CTAO_VAR,
654
655         /* Nonterminals. */
656         CTAO_STACK,             /* + */
657         CTAO_NEST,              /* > */
658       }
659     op;
660
661     union
662       {
663         /* Terminals. */
664         struct
665           {
666             struct ctables_var var;
667             bool scale;
668             struct ctables_summary_spec_set specs[N_CSVS];
669           };
670
671         /* Nonterminals. */
672         struct ctables_axis *subs[2];
673       };
674
675     struct msg_location *loc;
676   };
677
678 static void ctables_axis_destroy (struct ctables_axis *);
679
680 enum ctables_format
681   {
682     CTF_COUNT,
683     CTF_PERCENT,
684     CTF_GENERAL
685   };
686
687 enum ctables_function_availability
688   {
689     CTFA_ALL,                /* Any variables. */
690     CTFA_SCALE,              /* Only scale variables, totals, and subtotals. */
691     CTFA_MRSETS,             /* Only multiple-response sets */
692   };
693
694 struct ctables_summary_spec
695   {
696     enum ctables_summary_function function;
697     double percentile;          /* CTSF_PTILE only. */
698     char *label;
699
700     struct fmt_spec format;
701     bool is_ctables_format;       /* Is 'format' one of CTEF_*? */
702
703     size_t axis_idx;
704   };
705
706 static void
707 ctables_summary_spec_clone (struct ctables_summary_spec *dst,
708                             const struct ctables_summary_spec *src)
709 {
710   *dst = *src;
711   dst->label = xstrdup (src->label);
712 }
713
714 static void
715 ctables_summary_spec_uninit (struct ctables_summary_spec *s)
716 {
717   if (s)
718     free (s->label);
719 }
720
721 static void
722 ctables_summary_spec_set_clone (struct ctables_summary_spec_set *dst,
723                                 const struct ctables_summary_spec_set *src)
724 {
725   struct ctables_summary_spec *specs = xnmalloc (src->n, sizeof *specs);
726   for (size_t i = 0; i < src->n; i++)
727     ctables_summary_spec_clone (&specs[i], &src->specs[i]);
728
729   *dst = (struct ctables_summary_spec_set) {
730     .specs = specs,
731     .n = src->n,
732     .allocated = src->n,
733     .var = src->var
734   };
735 }
736
737 static void
738 ctables_summary_spec_set_uninit (struct ctables_summary_spec_set *set)
739 {
740   for (size_t i = 0; i < set->n; i++)
741     ctables_summary_spec_uninit (&set->specs[i]);
742   free (set->specs);
743 }
744
745 static bool
746 parse_col_width (struct lexer *lexer, const char *name, double *width)
747 {
748   lex_match (lexer, T_EQUALS);
749   if (lex_match_id (lexer, "DEFAULT"))
750     *width = SYSMIS;
751   else if (lex_force_num_range_closed (lexer, name, 0, DBL_MAX))
752     {
753       *width = lex_number (lexer);
754       lex_get (lexer);
755     }
756   else
757     return false;
758
759   return true;
760 }
761
762 static bool
763 parse_bool (struct lexer *lexer, bool *b)
764 {
765   if (lex_match_id (lexer, "NO"))
766     *b = false;
767   else if (lex_match_id (lexer, "YES"))
768     *b = true;
769   else
770     {
771       lex_error_expecting (lexer, "YES", "NO");
772       return false;
773     }
774   return true;
775 }
776
777 static enum ctables_function_availability
778 ctables_function_availability (enum ctables_summary_function f)
779 {
780   static enum ctables_function_availability availability[] = {
781 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) [ENUM] = AVAILABILITY,
782     SUMMARIES
783 #undef S
784   };
785
786   return availability[f];
787 }
788
789 static bool
790 ctables_summary_function_is_count (enum ctables_summary_function f)
791 {
792   switch (f)
793     {
794     case CTSF_COUNT:
795     case CTSF_ECOUNT:
796     case CTSF_ROWPCT_COUNT:
797     case CTSF_COLPCT_COUNT:
798     case CTSF_TABLEPCT_COUNT:
799     case CTSF_SUBTABLEPCT_COUNT:
800     case CTSF_LAYERPCT_COUNT:
801     case CTSF_LAYERROWPCT_COUNT:
802     case CTSF_LAYERCOLPCT_COUNT:
803       return true;
804
805     case CTSF_ROWPCT_VALIDN:
806     case CTSF_COLPCT_VALIDN:
807     case CTSF_TABLEPCT_VALIDN:
808     case CTSF_SUBTABLEPCT_VALIDN:
809     case CTSF_LAYERPCT_VALIDN:
810     case CTSF_LAYERROWPCT_VALIDN:
811     case CTSF_LAYERCOLPCT_VALIDN:
812     case CTSF_ROWPCT_TOTALN:
813     case CTSF_COLPCT_TOTALN:
814     case CTSF_TABLEPCT_TOTALN:
815     case CTSF_SUBTABLEPCT_TOTALN:
816     case CTSF_LAYERPCT_TOTALN:
817     case CTSF_LAYERROWPCT_TOTALN:
818     case CTSF_LAYERCOLPCT_TOTALN:
819     case CTSF_MAXIMUM:
820     case CTSF_MEAN:
821     case CTSF_MEDIAN:
822     case CTSF_MINIMUM:
823     case CTSF_MISSING:
824     case CTSF_MODE:
825     case CTSF_PTILE:
826     case CTSF_RANGE:
827     case CTSF_SEMEAN:
828     case CTSF_STDDEV:
829     case CTSF_SUM:
830     case CSTF_TOTALN:
831     case CTSF_ETOTALN:
832     case CTSF_VALIDN:
833     case CTSF_EVALIDN:
834     case CTSF_VARIANCE:
835     case CTSF_ROWPCT_SUM:
836     case CTSF_COLPCT_SUM:
837     case CTSF_TABLEPCT_SUM:
838     case CTSF_SUBTABLEPCT_SUM:
839     case CTSF_LAYERPCT_SUM:
840     case CTSF_LAYERROWPCT_SUM:
841     case CTSF_LAYERCOLPCT_SUM:
842       return false;
843   }
844   NOT_REACHED ();
845 }
846
847
848 static bool
849 parse_ctables_summary_function (struct lexer *lexer,
850                                 enum ctables_summary_function *f)
851 {
852   struct pair
853     {
854       enum ctables_summary_function function;
855       struct substring name;
856     };
857   static struct pair names[] = {
858 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) \
859     { ENUM, SS_LITERAL_INITIALIZER (NAME) },
860     SUMMARIES
861
862     /* The .COUNT suffix may be omitted. */
863     S(CTSF_ROWPCT_COUNT, "ROWPCT", _, _, _)
864     S(CTSF_COLPCT_COUNT, "COLPCT", _, _, _)
865     S(CTSF_TABLEPCT_COUNT, "TABLEPCT", _, _, _)
866     S(CTSF_SUBTABLEPCT_COUNT, "SUBTABLEPCT", _, _, _)
867     S(CTSF_LAYERPCT_COUNT, "LAYERPCT", _, _, _)
868     S(CTSF_LAYERROWPCT_COUNT, "LAYERROWPCT", _, _, _)
869     S(CTSF_LAYERCOLPCT_COUNT, "LAYERCOLPCT", _, _, _)
870 #undef S
871   };
872
873   if (!lex_force_id (lexer))
874     return false;
875
876   for (size_t i = 0; i < sizeof names / sizeof *names; i++)
877     if (ss_equals_case (names[i].name, lex_tokss (lexer)))
878       {
879         *f = names[i].function;
880         lex_get (lexer);
881         return true;
882       }
883
884   lex_error (lexer, _("Expecting summary function name."));
885   return false;
886 }
887
888 static void
889 ctables_axis_destroy (struct ctables_axis *axis)
890 {
891   if (!axis)
892     return;
893
894   switch (axis->op)
895     {
896     case CTAO_VAR:
897       for (size_t i = 0; i < N_CSVS; i++)
898         ctables_summary_spec_set_uninit (&axis->specs[i]);
899       break;
900
901     case CTAO_STACK:
902     case CTAO_NEST:
903       ctables_axis_destroy (axis->subs[0]);
904       ctables_axis_destroy (axis->subs[1]);
905       break;
906     }
907   msg_location_destroy (axis->loc);
908   free (axis);
909 }
910
911 static struct ctables_axis *
912 ctables_axis_new_nonterminal (enum ctables_axis_op op,
913                               struct ctables_axis *sub0,
914                               struct ctables_axis *sub1,
915                               struct lexer *lexer, int start_ofs)
916 {
917   struct ctables_axis *axis = xmalloc (sizeof *axis);
918   *axis = (struct ctables_axis) {
919     .op = op,
920     .subs = { sub0, sub1 },
921     .loc = lex_ofs_location (lexer, start_ofs, lex_ofs (lexer) - 1),
922   };
923   return axis;
924 }
925
926 struct ctables_axis_parse_ctx
927   {
928     struct lexer *lexer;
929     struct dictionary *dict;
930     struct ctables *ct;
931     struct ctables_table *t;
932   };
933
934 static struct fmt_spec
935 ctables_summary_default_format (enum ctables_summary_function function,
936                                 const struct ctables_var *var)
937 {
938   static const enum ctables_format default_formats[] = {
939 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) [ENUM] = FORMAT,
940     SUMMARIES
941 #undef S
942   };
943   switch (default_formats[function])
944     {
945     case CTF_COUNT:
946       return (struct fmt_spec) { .type = FMT_F, .w = 40 };
947
948     case CTF_PERCENT:
949       return (struct fmt_spec) { .type = FMT_PCT, .w = 40, .d = 1 };
950
951     case CTF_GENERAL:
952       return *ctables_var_get_print_format (var);
953
954     default:
955       NOT_REACHED ();
956     }
957 }
958
959 static char *
960 ctables_summary_default_label (enum ctables_summary_function function,
961                                double percentile)
962 {
963   static const char *default_labels[] = {
964 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) [ENUM] = LABEL,
965     SUMMARIES
966 #undef S
967   };
968
969   return (function == CTSF_PTILE
970           ? xasprintf (_("Percentile %.2f"), percentile)
971           : xstrdup (gettext (default_labels[function])));
972 }
973
974 static const char *
975 ctables_summary_function_name (enum ctables_summary_function function)
976 {
977   static const char *names[] = {
978 #define S(ENUM, NAME, LABEL, FORMAT, AVAILABILITY) [ENUM] = NAME,
979     SUMMARIES
980 #undef S
981   };
982   return names[function];
983 }
984
985 static bool
986 add_summary_spec (struct ctables_axis *axis,
987                   enum ctables_summary_function function, double percentile,
988                   const char *label, const struct fmt_spec *format,
989                   bool is_ctables_format, const struct msg_location *loc,
990                   enum ctables_summary_variant sv)
991 {
992   if (axis->op == CTAO_VAR)
993     {
994       const char *function_name = ctables_summary_function_name (function);
995       const char *var_name = ctables_var_name (&axis->var);
996       switch (ctables_function_availability (function))
997         {
998         case CTFA_MRSETS:
999           if (!axis->var.is_mrset)
1000             {
1001               msg_at (SE, loc, _("Summary function %s applies only to multiple "
1002                                  "response sets."), function_name);
1003               msg_at (SN, axis->loc, _("'%s' is not a multiple response set."),
1004                       var_name);
1005               return false;
1006             }
1007           break;
1008
1009         case CTFA_SCALE:
1010           if (!axis->scale)
1011             {
1012               msg_at (SE, loc,
1013                       _("Summary function %s applies only to scale variables."),
1014                       function_name);
1015               msg_at (SN, axis->loc, _("'%s' is not a scale variable."),
1016                       var_name);
1017               return false;
1018             }
1019           break;
1020
1021         case CTFA_ALL:
1022           break;
1023         }
1024
1025       struct ctables_summary_spec_set *set = &axis->specs[sv];
1026       if (set->n >= set->allocated)
1027         set->specs = x2nrealloc (set->specs, &set->allocated,
1028                                  sizeof *set->specs);
1029
1030       struct ctables_summary_spec *dst = &set->specs[set->n++];
1031       *dst = (struct ctables_summary_spec) {
1032         .function = function,
1033         .percentile = percentile,
1034         .label = xstrdup (label),
1035         .format = (format ? *format
1036                    : ctables_summary_default_format (function, &axis->var)),
1037         .is_ctables_format = is_ctables_format,
1038       };
1039       return true;
1040     }
1041   else
1042     {
1043       for (size_t i = 0; i < 2; i++)
1044         if (!add_summary_spec (axis->subs[i], function, percentile, label,
1045                                format, is_ctables_format, loc, sv))
1046           return false;
1047       return true;
1048     }
1049 }
1050
1051 static struct ctables_axis *ctables_axis_parse_stack (
1052   struct ctables_axis_parse_ctx *);
1053
1054 static bool
1055 ctables_var_parse (struct lexer *lexer, struct dictionary *dict,
1056                    struct ctables_var *var)
1057 {
1058   if (ss_starts_with (lex_tokss (lexer), ss_cstr ("$")))
1059     {
1060       *var = (struct ctables_var) {
1061         .is_mrset = true,
1062         .mrset = dict_lookup_mrset (dict, lex_tokcstr (lexer))
1063       };
1064       if (!var->mrset)
1065         {
1066           lex_error (lexer, _("'%s' does not name a multiple-response set "
1067                               "in the active file dictionary."),
1068                      lex_tokcstr (lexer));
1069           return false;
1070         }
1071       lex_get (lexer);
1072       return true;
1073     }
1074   else
1075     {
1076       *var = (struct ctables_var) {
1077         .is_mrset = false,
1078         .var = parse_variable (lexer, dict),
1079       };
1080       return var->var != NULL;
1081     }
1082 }
1083
1084 static struct ctables_axis *
1085 ctables_axis_parse_primary (struct ctables_axis_parse_ctx *ctx)
1086 {
1087   if (lex_match (ctx->lexer, T_LPAREN))
1088     {
1089       struct ctables_axis *sub = ctables_axis_parse_stack (ctx);
1090       if (!sub || !lex_force_match (ctx->lexer, T_RPAREN))
1091         {
1092           ctables_axis_destroy (sub);
1093           return NULL;
1094         }
1095       return sub;
1096     }
1097
1098   if (!lex_force_id (ctx->lexer))
1099     return NULL;
1100
1101   int start_ofs = lex_ofs (ctx->lexer);
1102   struct ctables_var var;
1103   if (!ctables_var_parse (ctx->lexer, ctx->dict, &var))
1104     return NULL;
1105
1106   struct ctables_axis *axis = xmalloc (sizeof *axis);
1107   *axis = (struct ctables_axis) { .op = CTAO_VAR, .var = var };
1108
1109   /* XXX should figure out default measures by reading data */
1110   axis->scale = (var.is_mrset ? false
1111                  : lex_match_phrase (ctx->lexer, "[S]") ? true
1112                  : lex_match_phrase (ctx->lexer, "[C]") ? false
1113                  : var_get_measure (var.var) == MEASURE_SCALE);
1114   axis->loc = lex_ofs_location (ctx->lexer, start_ofs,
1115                                 lex_ofs (ctx->lexer) - 1);
1116   return axis;
1117 }
1118
1119 static bool
1120 has_digit (const char *s)
1121 {
1122   return s[strcspn (s, "0123456789")] != '\0';
1123 }
1124
1125 static bool
1126 parse_ctables_format_specifier (struct lexer *lexer, struct fmt_spec *format,
1127                                 bool *is_ctables_format)
1128 {
1129   char type[FMT_TYPE_LEN_MAX + 1];
1130   if (!parse_abstract_format_specifier__ (lexer, type, &format->w, &format->d))
1131     return false;
1132
1133   if (!strcasecmp (type, "NEGPAREN"))
1134     format->type = CTEF_NEGPAREN;
1135   else if (!strcasecmp (type, "NEQUAL"))
1136     format->type = CTEF_NEQUAL;
1137   else if (!strcasecmp (type, "PAREN"))
1138     format->type = CTEF_PAREN;
1139   else if (!strcasecmp (type, "PCTPAREN"))
1140     format->type = CTEF_PCTPAREN;
1141   else
1142     {
1143       *is_ctables_format = false;
1144       return (parse_format_specifier (lexer, format)
1145               && fmt_check_output (format)
1146               && fmt_check_type_compat (format, VAL_NUMERIC));
1147     }
1148
1149   if (format->w < 2)
1150     {
1151       msg (SE, _("Output format %s requires width 2 or greater."), type);
1152       return false;
1153     }
1154   else if (format->d > format->w - 1)
1155     {
1156       msg (SE, _("Output format %s requires width greater than decimals."),
1157            type);
1158       return false;
1159     }
1160   else
1161     {
1162       *is_ctables_format = true;
1163       return true;
1164     }
1165 }
1166
1167 static struct ctables_axis *
1168 ctables_axis_parse_postfix (struct ctables_axis_parse_ctx *ctx)
1169 {
1170   struct ctables_axis *sub = ctables_axis_parse_primary (ctx);
1171   if (!sub || !lex_match (ctx->lexer, T_LBRACK))
1172     return sub;
1173
1174   enum ctables_summary_variant sv = CSV_CELL;
1175   for (;;)
1176     {
1177       int start_ofs = lex_ofs (ctx->lexer);
1178
1179       /* Parse function. */
1180       enum ctables_summary_function function;
1181       if (!parse_ctables_summary_function (ctx->lexer, &function))
1182         goto error;
1183
1184       /* Parse percentile. */
1185       double percentile = 0;
1186       if (function == CTSF_PTILE)
1187         {
1188           if (!lex_force_num_range_closed (ctx->lexer, "PTILE", 0, 100))
1189             goto error;
1190           percentile = lex_number (ctx->lexer);
1191           lex_get (ctx->lexer);
1192         }
1193
1194       /* Parse label. */
1195       char *label;
1196       if (lex_is_string (ctx->lexer))
1197         {
1198           label = ss_xstrdup (lex_tokss (ctx->lexer));
1199           lex_get (ctx->lexer);
1200         }
1201       else
1202         label = ctables_summary_default_label (function, percentile);
1203
1204       /* Parse format. */
1205       struct fmt_spec format;
1206       const struct fmt_spec *formatp;
1207       bool is_ctables_format = false;
1208       if (lex_token (ctx->lexer) == T_ID
1209           && has_digit (lex_tokcstr (ctx->lexer)))
1210         {
1211           if (!parse_ctables_format_specifier (ctx->lexer, &format,
1212                                                &is_ctables_format))
1213             {
1214               free (label);
1215               goto error;
1216             }
1217           formatp = &format;
1218         }
1219       else
1220         formatp = NULL;
1221
1222       struct msg_location *loc = lex_ofs_location (ctx->lexer, start_ofs,
1223                                                    lex_ofs (ctx->lexer) - 1);
1224       add_summary_spec (sub, function, percentile, label, formatp,
1225                         is_ctables_format, loc, sv);
1226       free (label);
1227       msg_location_destroy (loc);
1228
1229       lex_match (ctx->lexer, T_COMMA);
1230       if (sv == CSV_CELL && lex_match_id (ctx->lexer, "TOTALS"))
1231         {
1232           if (!lex_force_match (ctx->lexer, T_LBRACK))
1233             goto error;
1234           sv = CSV_TOTAL;
1235         }
1236       else if (lex_match (ctx->lexer, T_RBRACK))
1237         {
1238           if (sv == CSV_TOTAL && !lex_force_match (ctx->lexer, T_RBRACK))
1239             goto error;
1240           return sub;
1241         }
1242     }
1243
1244 error:
1245   ctables_axis_destroy (sub);
1246   return NULL;
1247 }
1248
1249 static const struct ctables_axis *
1250 find_scale (const struct ctables_axis *axis)
1251 {
1252   if (!axis)
1253     return NULL;
1254   else if (axis->op == CTAO_VAR)
1255     {
1256       if (axis->scale)
1257         {
1258           assert (!axis->var.is_mrset);
1259           return axis;
1260         }
1261       else
1262         return NULL;
1263     }
1264   else
1265     {
1266       for (size_t i = 0; i < 2; i++)
1267         {
1268           const struct ctables_axis *scale = find_scale (axis->subs[i]);
1269           if (scale)
1270             return scale;
1271         }
1272       return NULL;
1273     }
1274 }
1275
1276 static const struct ctables_axis *
1277 find_categorical_summary_spec (const struct ctables_axis *axis)
1278 {
1279   if (!axis)
1280     return NULL;
1281   else if (axis->op == CTAO_VAR)
1282     return !axis->scale && axis->specs[CSV_CELL].n ? axis : NULL;
1283   else
1284     {
1285       for (size_t i = 0; i < 2; i++)
1286         {
1287           const struct ctables_axis *sum
1288             = find_categorical_summary_spec (axis->subs[i]);
1289           if (sum)
1290             return sum;
1291         }
1292       return NULL;
1293     }
1294 }
1295
1296 static struct ctables_axis *
1297 ctables_axis_parse_nest (struct ctables_axis_parse_ctx *ctx)
1298 {
1299   int start_ofs = lex_ofs (ctx->lexer);
1300   struct ctables_axis *lhs = ctables_axis_parse_postfix (ctx);
1301   if (!lhs)
1302     return NULL;
1303
1304   while (lex_match (ctx->lexer, T_GT))
1305     {
1306       struct ctables_axis *rhs = ctables_axis_parse_postfix (ctx);
1307       if (!rhs)
1308         return NULL;
1309
1310       struct ctables_axis *nest = ctables_axis_new_nonterminal (
1311         CTAO_NEST, lhs, rhs, ctx->lexer, start_ofs);
1312
1313       const struct ctables_axis *outer_scale = find_scale (lhs);
1314       const struct ctables_axis *inner_scale = find_scale (rhs);
1315       if (outer_scale && inner_scale)
1316         {
1317           msg_at (SE, nest->loc, _("Cannot nest scale variables."));
1318           msg_at (SN, outer_scale->loc, _("This is an outer scale variable."));
1319           msg_at (SN, inner_scale->loc, _("This is an inner scale variable."));
1320           ctables_axis_destroy (nest);
1321           return NULL;
1322         }
1323
1324       const struct ctables_axis *outer_sum = find_categorical_summary_spec (lhs);
1325       if (outer_sum)
1326         {
1327           msg_at (SE, nest->loc,
1328                   _("Summaries may only be requested for categorical variables "
1329                     "at the innermost nesting level."));
1330           msg_at (SN, outer_sum->loc,
1331                   _("This outer categorical variable has a summary."));
1332           ctables_axis_destroy (nest);
1333           return NULL;
1334         }
1335
1336       lhs = nest;
1337     }
1338
1339   return lhs;
1340 }
1341
1342 static struct ctables_axis *
1343 ctables_axis_parse_stack (struct ctables_axis_parse_ctx *ctx)
1344 {
1345   int start_ofs = lex_ofs (ctx->lexer);
1346   struct ctables_axis *lhs = ctables_axis_parse_nest (ctx);
1347   if (!lhs)
1348     return NULL;
1349
1350   while (lex_match (ctx->lexer, T_PLUS))
1351     {
1352       struct ctables_axis *rhs = ctables_axis_parse_nest (ctx);
1353       if (!rhs)
1354         return NULL;
1355
1356       lhs = ctables_axis_new_nonterminal (CTAO_STACK, lhs, rhs,
1357                                           ctx->lexer, start_ofs);
1358     }
1359
1360   return lhs;
1361 }
1362
1363 static bool
1364 ctables_axis_parse (struct lexer *lexer, struct dictionary *dict,
1365                     struct ctables *ct, struct ctables_table *t,
1366                     enum pivot_axis_type a)
1367 {
1368   if (lex_token (lexer) == T_BY
1369       || lex_token (lexer) == T_SLASH
1370       || lex_token (lexer) == T_ENDCMD)
1371     return true;
1372
1373   struct ctables_axis_parse_ctx ctx = {
1374     .lexer = lexer,
1375     .dict = dict,
1376     .ct = ct,
1377     .t = t
1378   };
1379   t->axes[a] = ctables_axis_parse_stack (&ctx);
1380   return t->axes[a] != NULL;
1381 }
1382
1383 static void
1384 ctables_chisq_destroy (struct ctables_chisq *chisq)
1385 {
1386   free (chisq);
1387 }
1388
1389 static void
1390 ctables_pairwise_destroy (struct ctables_pairwise *pairwise)
1391 {
1392   free (pairwise);
1393 }
1394
1395 static void
1396 ctables_table_destroy (struct ctables_table *t)
1397 {
1398   if (!t)
1399     return;
1400
1401   for (size_t i = 0; i < t->n_categories; i++)
1402     ctables_categories_unref (t->categories[i]);
1403   free (t->categories);
1404
1405   ctables_axis_destroy (t->axes[PIVOT_AXIS_COLUMN]);
1406   ctables_axis_destroy (t->axes[PIVOT_AXIS_ROW]);
1407   ctables_axis_destroy (t->axes[PIVOT_AXIS_LAYER]);
1408   free (t->caption);
1409   free (t->corner);
1410   free (t->title);
1411   ctables_chisq_destroy (t->chisq);
1412   ctables_pairwise_destroy (t->pairwise);
1413   free (t);
1414 }
1415
1416 static void
1417 ctables_destroy (struct ctables *ct)
1418 {
1419   if (!ct)
1420     return;
1421
1422   pivot_table_look_unref (ct->look);
1423   free (ct->zero);
1424   free (ct->missing);
1425   free (ct->vlabels);
1426   for (size_t i = 0; i < ct->n_tables; i++)
1427     ctables_table_destroy (ct->tables[i]);
1428   free (ct->tables);
1429   free (ct);
1430 }
1431
1432 static struct ctables_category
1433 cct_range (double low, double high)
1434 {
1435   return (struct ctables_category) {
1436     .type = CCT_RANGE,
1437     .range = { low, high }
1438   };
1439 }
1440
1441 static bool
1442 ctables_table_parse_subtotal (struct lexer *lexer, bool hide_subcategories,
1443                               struct ctables_category *cat)
1444 {
1445   char *total_label;
1446   if (lex_match (lexer, T_EQUALS))
1447     {
1448       if (!lex_force_string (lexer))
1449         return false;
1450
1451       total_label = ss_xstrdup (lex_tokss (lexer));
1452       lex_get (lexer);
1453     }
1454   else
1455     total_label = xstrdup (_("Subtotal"));
1456
1457   *cat = (struct ctables_category) {
1458     .type = CCT_SUBTOTAL,
1459     .hide_subcategories = hide_subcategories,
1460     .total_label = total_label
1461   };
1462   return true;
1463 }
1464
1465 static bool
1466 ctables_table_parse_explicit_category (struct lexer *lexer, struct ctables *ct,
1467                                        struct ctables_category *cat)
1468 {
1469   if (lex_match_id (lexer, "OTHERNM"))
1470     *cat = (struct ctables_category) { .type = CCT_OTHERNM };
1471   else if (lex_match_id (lexer, "MISSING"))
1472     *cat = (struct ctables_category) { .type = CCT_MISSING };
1473   else if (lex_match_id (lexer, "SUBTOTAL"))
1474     return ctables_table_parse_subtotal (lexer, false, cat);
1475   else if (lex_match_id (lexer, "HSUBTOTAL"))
1476     return ctables_table_parse_subtotal (lexer, true, cat);
1477   else if (lex_match_id (lexer, "LO"))
1478     {
1479       if (!lex_force_match_id (lexer, "THRU") || lex_force_num (lexer))
1480         return false;
1481       *cat = cct_range (-DBL_MAX, lex_number (lexer));
1482       lex_get (lexer);
1483     }
1484   else if (lex_is_number (lexer))
1485     {
1486       double number = lex_number (lexer);
1487       lex_get (lexer);
1488       if (lex_match_id (lexer, "THRU"))
1489         {
1490           if (lex_match_id (lexer, "HI"))
1491             *cat = cct_range (number, DBL_MAX);
1492           else
1493             {
1494               if (!lex_force_num (lexer))
1495                 return false;
1496               *cat = cct_range (number, lex_number (lexer));
1497               lex_get (lexer);
1498             }
1499         }
1500       else
1501         *cat = (struct ctables_category) {
1502           .type = CCT_NUMBER,
1503           .number = number
1504         };
1505     }
1506   else if (lex_is_string (lexer))
1507     {
1508       *cat = (struct ctables_category) {
1509         .type = CCT_STRING,
1510         .string = ss_xstrdup (lex_tokss (lexer)),
1511       };
1512       lex_get (lexer);
1513     }
1514   else if (lex_match (lexer, T_AND))
1515     {
1516       if (!lex_force_id (lexer))
1517         return false;
1518       struct ctables_postcompute *pc = ctables_find_postcompute (
1519         ct, lex_tokcstr (lexer));
1520       if (!pc)
1521         {
1522           struct msg_location *loc = lex_get_location (lexer, -1, 0);
1523           msg_at (SE, loc, _("Unknown postcompute &%s."),
1524                   lex_tokcstr (lexer));
1525           msg_location_destroy (loc);
1526           return false;
1527         }
1528       lex_get (lexer);
1529
1530       *cat = (struct ctables_category) { .type = CCT_POSTCOMPUTE, .pc = pc };
1531     }
1532   else
1533     {
1534       lex_error (lexer, NULL);
1535       return false;
1536     }
1537
1538   return true;
1539 }
1540
1541 static struct ctables_category *
1542 ctables_find_category_for_postcompute (const struct ctables_categories *cats,
1543                                        const struct ctables_pcexpr *e)
1544 {
1545   struct ctables_category *best = NULL;
1546   size_t n_subtotals = 0;
1547   for (size_t i = 0; i < cats->n_cats; i++)
1548     {
1549       struct ctables_category *cat = &cats->cats[i];
1550       switch (e->op)
1551         {
1552         case CTPO_CAT_NUMBER:
1553           if (cat->type == CCT_NUMBER && cat->number == e->number)
1554             best = cat;
1555           break;
1556
1557         case CTPO_CAT_STRING:
1558           if (cat->type == CCT_STRING && !strcmp (cat->string, e->string))
1559             best = cat;
1560           break;
1561
1562         case CTPO_CAT_RANGE:
1563           if (cat->type == CCT_RANGE
1564               && cat->range[0] == e->range[0]
1565               && cat->range[1] == e->range[1])
1566             best = cat;
1567           break;
1568
1569         case CTPO_CAT_MISSING:
1570           if (cat->type == CCT_MISSING)
1571             best = cat;
1572           break;
1573
1574         case CTPO_CAT_OTHERNM:
1575           if (cat->type == CCT_OTHERNM)
1576             best = cat;
1577           break;
1578
1579         case CTPO_CAT_SUBTOTAL:
1580           if (cat->type == CCT_SUBTOTAL)
1581             {
1582               n_subtotals++;
1583               if (e->subtotal_index == n_subtotals)
1584                 return cat;
1585               else if (e->subtotal_index == 0)
1586                 best = cat;
1587             }
1588           break;
1589
1590         case CTPO_CAT_TOTAL:
1591           if (cat->type == CCT_TOTAL)
1592             return cat;
1593           break;
1594
1595         case CTPO_CONSTANT:
1596         case CTPO_ADD:
1597         case CTPO_SUB:
1598         case CTPO_MUL:
1599         case CTPO_DIV:
1600         case CTPO_POW:
1601         case CTPO_NEG:
1602           NOT_REACHED ();
1603         }
1604     }
1605   if (e->op == CTPO_CAT_SUBTOTAL && e->subtotal_index == 0 && n_subtotals > 1)
1606     return NULL;
1607   return best;
1608 }
1609
1610 static bool
1611 ctables_recursive_check_postcompute (const struct ctables_pcexpr *e,
1612                                      struct ctables_category *pc_cat,
1613                                      const struct ctables_categories *cats,
1614                                      const struct msg_location *cats_location)
1615 {
1616   switch (e->op)
1617     {
1618     case CTPO_CAT_NUMBER:
1619     case CTPO_CAT_STRING:
1620     case CTPO_CAT_RANGE:
1621     case CTPO_CAT_MISSING:
1622     case CTPO_CAT_OTHERNM:
1623     case CTPO_CAT_SUBTOTAL:
1624     case CTPO_CAT_TOTAL:
1625       {
1626         struct ctables_category *cat = ctables_find_category_for_postcompute (
1627           cats, e);
1628         if (!cat)
1629           {
1630             if (e->op == CTPO_CAT_SUBTOTAL && e->subtotal_index == 0)
1631               {
1632                 size_t n_subtotals = 0;
1633                 for (size_t i = 0; i < cats->n_cats; i++)
1634                   n_subtotals += cats->cats[i].type == CCT_SUBTOTAL;
1635                 if (n_subtotals > 1)
1636                   {
1637                     msg_at (SE, cats_location,
1638                             ngettext ("These categories include %zu instance "
1639                                       "of SUBTOTAL or HSUBTOTAL, so references "
1640                                       "from computed categories must refer to "
1641                                       "subtotals by position.",
1642                                       "These categories include %zu instances "
1643                                       "of SUBTOTAL or HSUBTOTAL, so references "
1644                                       "from computed categories must refer to "
1645                                       "subtotals by position.",
1646                                       n_subtotals),
1647                             n_subtotals);
1648                     msg_at (SN, e->location,
1649                             _("This is the reference that lacks a position."));
1650                     return NULL;
1651                   }
1652               }
1653
1654             msg_at (SE, pc_cat->location,
1655                     _("Computed category &%s references a category not included "
1656                       "in the category list."),
1657                     pc_cat->pc->name);
1658             msg_at (SN, e->location, _("This is the missing category."));
1659             msg_at (SN, cats_location,
1660                     _("To fix the problem, add the missing category to the "
1661                       "list of categories here."));
1662             return false;
1663           }
1664         if (pc_cat->pc->hide_source_cats)
1665           cat->hide = true;
1666         return true;
1667       }
1668
1669     case CTPO_CONSTANT:
1670       return true;
1671
1672     case CTPO_ADD:
1673     case CTPO_SUB:
1674     case CTPO_MUL:
1675     case CTPO_DIV:
1676     case CTPO_POW:
1677     case CTPO_NEG:
1678       for (size_t i = 0; i < 2; i++)
1679         if (e->subs[i] && !ctables_recursive_check_postcompute (
1680               e->subs[i], pc_cat, cats, cats_location))
1681           return false;
1682       return true;
1683
1684     default:
1685       NOT_REACHED ();
1686     }
1687 }
1688
1689 static bool
1690 ctables_table_parse_categories (struct lexer *lexer, struct dictionary *dict,
1691                                 struct ctables *ct, struct ctables_table *t)
1692 {
1693   if (!lex_match_id (lexer, "VARIABLES"))
1694     return false;
1695   lex_match (lexer, T_EQUALS);
1696
1697   struct variable **vars;
1698   size_t n_vars;
1699   if (!parse_variables (lexer, dict, &vars, &n_vars, PV_NO_SCRATCH))
1700     return false;
1701
1702   struct ctables_categories *c = xmalloc (sizeof *c);
1703   *c = (struct ctables_categories) { .n_refs = n_vars, .show_empty = true };
1704   for (size_t i = 0; i < n_vars; i++)
1705     {
1706       struct ctables_categories **cp
1707         = &t->categories[var_get_dict_index (vars[i])];
1708       ctables_categories_unref (*cp);
1709       *cp = c;
1710     }
1711   free (vars);
1712
1713   size_t allocated_cats = 0;
1714   if (lex_match (lexer, T_LBRACK))
1715     {
1716       int cats_start_ofs = lex_ofs (lexer);
1717       do
1718         {
1719           if (c->n_cats >= allocated_cats)
1720             c->cats = x2nrealloc (c->cats, &allocated_cats, sizeof *c->cats);
1721
1722           int start_ofs = lex_ofs (lexer);
1723           struct ctables_category *cat = &c->cats[c->n_cats];
1724           if (!ctables_table_parse_explicit_category (lexer, ct, cat))
1725             return false;
1726           cat->location = lex_ofs_location (lexer, start_ofs, lex_ofs (lexer) - 1);
1727           c->n_cats++;
1728
1729           lex_match (lexer, T_COMMA);
1730         }
1731       while (!lex_match (lexer, T_RBRACK));
1732
1733       struct msg_location *cats_location
1734         = lex_ofs_location (lexer, cats_start_ofs, lex_ofs (lexer) - 1);
1735       for (size_t i = 0; i < c->n_cats; i++)
1736         {
1737           struct ctables_category *cat = &c->cats[i];
1738           if (cat->type == CCT_POSTCOMPUTE
1739               && !ctables_recursive_check_postcompute (cat->pc->expr, cat,
1740                                                        c, cats_location))
1741             return false;
1742         }
1743     }
1744
1745   struct ctables_category cat = {
1746     .type = CCT_VALUE,
1747     .include_missing = false,
1748     .sort_ascending = true,
1749   };
1750   bool show_totals = false;
1751   char *total_label = NULL;
1752   bool totals_before = false;
1753   while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD)
1754     {
1755       if (!c->n_cats && lex_match_id (lexer, "ORDER"))
1756         {
1757           lex_match (lexer, T_EQUALS);
1758           if (lex_match_id (lexer, "A"))
1759             cat.sort_ascending = true;
1760           else if (lex_match_id (lexer, "D"))
1761             cat.sort_ascending = false;
1762           else
1763             {
1764               lex_error_expecting (lexer, "A", "D");
1765               return false;
1766             }
1767         }
1768       else if (!c->n_cats && lex_match_id (lexer, "KEY"))
1769         {
1770           lex_match (lexer, T_EQUALS);
1771           if (lex_match_id (lexer, "VALUE"))
1772             cat.type = CCT_VALUE;
1773           else if (lex_match_id (lexer, "LABEL"))
1774             cat.type = CCT_LABEL;
1775           else
1776             {
1777               cat.type = CCT_FUNCTION;
1778               if (!parse_ctables_summary_function (lexer, &cat.sort_function))
1779                 return false;
1780
1781               if (lex_match (lexer, T_LPAREN))
1782                 {
1783                   cat.sort_var = parse_variable (lexer, dict);
1784                   if (!cat.sort_var)
1785                     return false;
1786
1787                   if (cat.sort_function == CTSF_PTILE)
1788                     {
1789                       lex_match (lexer, T_COMMA);
1790                       if (!lex_force_num_range_closed (lexer, "PTILE", 0, 100))
1791                         return false;
1792                       cat.percentile = lex_number (lexer);
1793                       lex_get (lexer);
1794                     }
1795
1796                   if (!lex_force_match (lexer, T_RPAREN))
1797                     return false;
1798                 }
1799               else if (ctables_function_availability (cat.sort_function)
1800                        == CTFA_SCALE)
1801                 {
1802                   bool UNUSED b = lex_force_match (lexer, T_LPAREN);
1803                   return false;
1804                 }
1805             }
1806         }
1807       else if (!c->n_cats && lex_match_id (lexer, "MISSING"))
1808         {
1809           lex_match (lexer, T_EQUALS);
1810           if (lex_match_id (lexer, "INCLUDE"))
1811             cat.include_missing = true;
1812           else if (lex_match_id (lexer, "EXCLUDE"))
1813             cat.include_missing = false;
1814           else
1815             {
1816               lex_error_expecting (lexer, "INCLUDE", "EXCLUDE");
1817               return false;
1818             }
1819         }
1820       else if (lex_match_id (lexer, "TOTAL"))
1821         {
1822           lex_match (lexer, T_EQUALS);
1823           if (!parse_bool (lexer, &show_totals))
1824             return false;
1825         }
1826       else if (lex_match_id (lexer, "LABEL"))
1827         {
1828           lex_match (lexer, T_EQUALS);
1829           if (!lex_force_string (lexer))
1830             return false;
1831           free (total_label);
1832           total_label = ss_xstrdup (lex_tokss (lexer));
1833           lex_get (lexer);
1834         }
1835       else if (lex_match_id (lexer, "POSITION"))
1836         {
1837           lex_match (lexer, T_EQUALS);
1838           if (lex_match_id (lexer, "BEFORE"))
1839             totals_before = true;
1840           else if (lex_match_id (lexer, "AFTER"))
1841             totals_before = false;
1842           else
1843             {
1844               lex_error_expecting (lexer, "BEFORE", "AFTER");
1845               return false;
1846             }
1847         }
1848       else if (lex_match_id (lexer, "EMPTY"))
1849         {
1850           lex_match (lexer, T_EQUALS);
1851           if (lex_match_id (lexer, "INCLUDE"))
1852             c->show_empty = true;
1853           else if (lex_match_id (lexer, "EXCLUDE"))
1854             c->show_empty = false;
1855           else
1856             {
1857               lex_error_expecting (lexer, "INCLUDE", "EXCLUDE");
1858               return false;
1859             }
1860         }
1861       else
1862         {
1863           if (!c->n_cats)
1864             lex_error_expecting (lexer, "ORDER", "KEY", "MISSING",
1865                                  "TOTAL", "LABEL", "POSITION", "EMPTY");
1866           else
1867             lex_error_expecting (lexer, "TOTAL", "LABEL", "POSITION", "EMPTY");
1868           return false;
1869         }
1870     }
1871
1872   if (!c->n_cats)
1873     {
1874       if (c->n_cats >= allocated_cats)
1875         c->cats = x2nrealloc (c->cats, &allocated_cats, sizeof *c->cats);
1876       c->cats[c->n_cats++] = cat;
1877     }
1878
1879   if (show_totals)
1880     {
1881       if (c->n_cats >= allocated_cats)
1882         c->cats = x2nrealloc (c->cats, &allocated_cats, sizeof *c->cats);
1883
1884       struct ctables_category *totals;
1885       if (totals_before)
1886         {
1887           insert_element (c->cats, c->n_cats, sizeof *c->cats, 0);
1888           totals = &c->cats[0];
1889         }
1890       else
1891         totals = &c->cats[c->n_cats];
1892       c->n_cats++;
1893
1894       *totals = (struct ctables_category) {
1895         .type = CCT_TOTAL,
1896         .total_label = total_label ? total_label : xstrdup (_("Total")),
1897       };
1898     }
1899
1900   struct ctables_category *subtotal = NULL;
1901   for (size_t i = totals_before ? 0 : c->n_cats;
1902        totals_before ? i < c->n_cats : i-- > 0;
1903        totals_before ? i++ : 0)
1904     {
1905       struct ctables_category *cat = &c->cats[i];
1906       switch (cat->type)
1907         {
1908         case CCT_NUMBER:
1909         case CCT_STRING:
1910         case CCT_RANGE:
1911         case CCT_MISSING:
1912         case CCT_OTHERNM:
1913           cat->subtotal = subtotal;
1914           break;
1915
1916         case CCT_POSTCOMPUTE:
1917           break;
1918
1919         case CCT_SUBTOTAL:
1920           subtotal = cat;
1921           break;
1922
1923         case CCT_TOTAL:
1924         case CCT_VALUE:
1925         case CCT_LABEL:
1926         case CCT_FUNCTION:
1927           break;
1928         }
1929     }
1930
1931   return true;
1932 }
1933
1934 static void
1935 ctables_nest_uninit (struct ctables_nest *nest)
1936 {
1937   if (nest)
1938     free (nest->vars);
1939 }
1940
1941 static void
1942 ctables_stack_uninit (struct ctables_stack *stack)
1943 {
1944   if (stack)
1945     {
1946       for (size_t i = 0; i < stack->n; i++)
1947         ctables_nest_uninit (&stack->nests[i]);
1948       free (stack->nests);
1949     }
1950 }
1951
1952 static struct ctables_stack
1953 nest_fts (struct ctables_stack s0, struct ctables_stack s1)
1954 {
1955   if (!s0.n)
1956     return s1;
1957   else if (!s1.n)
1958     return s0;
1959
1960   struct ctables_stack stack = { .nests = xnmalloc (s0.n, s1.n * sizeof *stack.nests) };
1961   for (size_t i = 0; i < s0.n; i++)
1962     for (size_t j = 0; j < s1.n; j++)
1963       {
1964         const struct ctables_nest *a = &s0.nests[i];
1965         const struct ctables_nest *b = &s1.nests[j];
1966
1967         size_t allocate = a->n + b->n;
1968         struct variable **vars = xnmalloc (allocate, sizeof *vars);
1969         enum pivot_axis_type *axes = xnmalloc (allocate, sizeof *axes);
1970         size_t n = 0;
1971         for (size_t k = 0; k < a->n; k++)
1972           vars[n++] = a->vars[k];
1973         for (size_t k = 0; k < b->n; k++)
1974           vars[n++] = b->vars[k];
1975         assert (n == allocate);
1976
1977         const struct ctables_nest *summary_src;
1978         if (!a->specs[CSV_CELL].var)
1979           summary_src = b;
1980         else if (!b->specs[CSV_CELL].var)
1981           summary_src = a;
1982         else
1983           NOT_REACHED ();
1984
1985         struct ctables_nest *new = &stack.nests[stack.n++];
1986         *new = (struct ctables_nest) {
1987           .vars = vars,
1988           .scale_idx = (a->scale_idx != SIZE_MAX ? a->scale_idx
1989                         : b->scale_idx != SIZE_MAX ? a->n + b->scale_idx
1990                         : SIZE_MAX),
1991           .n = n,
1992         };
1993         for (enum ctables_summary_variant sv = 0; sv < N_CSVS; sv++)
1994           ctables_summary_spec_set_clone (&new->specs[sv], &summary_src->specs[sv]);
1995       }
1996   ctables_stack_uninit (&s0);
1997   ctables_stack_uninit (&s1);
1998   return stack;
1999 }
2000
2001 static struct ctables_stack
2002 stack_fts (struct ctables_stack s0, struct ctables_stack s1)
2003 {
2004   struct ctables_stack stack = { .nests = xnmalloc (s0.n + s1.n, sizeof *stack.nests) };
2005   for (size_t i = 0; i < s0.n; i++)
2006     stack.nests[stack.n++] = s0.nests[i];
2007   for (size_t i = 0; i < s1.n; i++)
2008     stack.nests[stack.n++] = s1.nests[i];
2009   assert (stack.n == s0.n + s1.n);
2010   free (s0.nests);
2011   free (s1.nests);
2012   return stack;
2013 }
2014
2015 static struct ctables_stack
2016 enumerate_fts (enum pivot_axis_type axis_type, const struct ctables_axis *a)
2017 {
2018   if (!a)
2019     return (struct ctables_stack) { .n = 0 };
2020
2021   switch (a->op)
2022     {
2023     case CTAO_VAR:
2024       assert (!a->var.is_mrset);
2025
2026       struct variable **vars = xmalloc (sizeof *vars);
2027       *vars = a->var.var;
2028
2029       struct ctables_nest *nest = xmalloc (sizeof *nest);
2030       *nest = (struct ctables_nest) {
2031         .vars = vars,
2032         .n = 1,
2033         .scale_idx = a->scale ? 0 : SIZE_MAX,
2034       };
2035       if (a->specs[CSV_CELL].n || a->scale)
2036         for (enum ctables_summary_variant sv = 0; sv < N_CSVS; sv++)
2037           {
2038             ctables_summary_spec_set_clone (&nest->specs[sv], &a->specs[sv]);
2039             nest->specs[sv].var = a->var.var;
2040           }
2041       return (struct ctables_stack) { .nests = nest, .n = 1 };
2042
2043     case CTAO_STACK:
2044       return stack_fts (enumerate_fts (axis_type, a->subs[0]),
2045                         enumerate_fts (axis_type, a->subs[1]));
2046
2047     case CTAO_NEST:
2048       return nest_fts (enumerate_fts (axis_type, a->subs[0]),
2049                        enumerate_fts (axis_type, a->subs[1]));
2050     }
2051
2052   NOT_REACHED ();
2053 }
2054
2055 union ctables_summary
2056   {
2057     /* COUNT, VALIDN, TOTALN. */
2058     struct
2059       {
2060         double valid;
2061         double missing;
2062       };
2063
2064     /* MINIMUM, MAXIMUM, RANGE. */
2065     struct
2066       {
2067         double min;
2068         double max;
2069       };
2070
2071     /* MEAN, SEMEAN, STDDEV, SUM, VARIANCE, *.SUM. */
2072     struct moments1 *moments;
2073
2074     /* MEDIAN, MODE, PTILE. */
2075     struct
2076       {
2077         struct casewriter *writer;
2078         double ovalid;
2079         double ovalue;
2080       };
2081
2082     /* XXX multiple response */
2083   };
2084
2085 static void
2086 ctables_summary_init (union ctables_summary *s,
2087                       const struct ctables_summary_spec *ss)
2088 {
2089   switch (ss->function)
2090     {
2091     case CTSF_COUNT:
2092     case CTSF_ECOUNT:
2093     case CTSF_ROWPCT_COUNT:
2094     case CTSF_COLPCT_COUNT:
2095     case CTSF_TABLEPCT_COUNT:
2096     case CTSF_SUBTABLEPCT_COUNT:
2097     case CTSF_LAYERPCT_COUNT:
2098     case CTSF_LAYERROWPCT_COUNT:
2099     case CTSF_LAYERCOLPCT_COUNT:
2100     case CTSF_ROWPCT_VALIDN:
2101     case CTSF_COLPCT_VALIDN:
2102     case CTSF_TABLEPCT_VALIDN:
2103     case CTSF_SUBTABLEPCT_VALIDN:
2104     case CTSF_LAYERPCT_VALIDN:
2105     case CTSF_LAYERROWPCT_VALIDN:
2106     case CTSF_LAYERCOLPCT_VALIDN:
2107     case CTSF_ROWPCT_TOTALN:
2108     case CTSF_COLPCT_TOTALN:
2109     case CTSF_TABLEPCT_TOTALN:
2110     case CTSF_SUBTABLEPCT_TOTALN:
2111     case CTSF_LAYERPCT_TOTALN:
2112     case CTSF_LAYERROWPCT_TOTALN:
2113     case CTSF_LAYERCOLPCT_TOTALN:
2114     case CTSF_MISSING:
2115     case CSTF_TOTALN:
2116     case CTSF_ETOTALN:
2117     case CTSF_VALIDN:
2118     case CTSF_EVALIDN:
2119       s->missing = s->valid = 0;
2120       break;
2121
2122     case CTSF_MAXIMUM:
2123     case CTSF_MINIMUM:
2124     case CTSF_RANGE:
2125       s->min = s->max = SYSMIS;
2126       break;
2127
2128     case CTSF_MEAN:
2129     case CTSF_SEMEAN:
2130     case CTSF_STDDEV:
2131     case CTSF_SUM:
2132     case CTSF_VARIANCE:
2133     case CTSF_ROWPCT_SUM:
2134     case CTSF_COLPCT_SUM:
2135     case CTSF_TABLEPCT_SUM:
2136     case CTSF_SUBTABLEPCT_SUM:
2137     case CTSF_LAYERPCT_SUM:
2138     case CTSF_LAYERROWPCT_SUM:
2139     case CTSF_LAYERCOLPCT_SUM:
2140       s->moments = moments1_create (MOMENT_VARIANCE);
2141       break;
2142
2143     case CTSF_MEDIAN:
2144     case CTSF_MODE:
2145     case CTSF_PTILE:
2146       {
2147         struct caseproto *proto = caseproto_create ();
2148         proto = caseproto_add_width (proto, 0);
2149         proto = caseproto_add_width (proto, 0);
2150
2151         struct subcase ordering;
2152         subcase_init (&ordering, 0, 0, SC_ASCEND);
2153         s->writer = sort_create_writer (&ordering, proto);
2154         subcase_uninit (&ordering);
2155         caseproto_unref (proto);
2156
2157         s->ovalid = 0;
2158         s->ovalue = SYSMIS;
2159       }
2160       break;
2161     }
2162 }
2163
2164 static void UNUSED
2165 ctables_summary_uninit (union ctables_summary *s,
2166                         const struct ctables_summary_spec *ss)
2167 {
2168   switch (ss->function)
2169     {
2170     case CTSF_COUNT:
2171     case CTSF_ECOUNT:
2172     case CTSF_ROWPCT_COUNT:
2173     case CTSF_COLPCT_COUNT:
2174     case CTSF_TABLEPCT_COUNT:
2175     case CTSF_SUBTABLEPCT_COUNT:
2176     case CTSF_LAYERPCT_COUNT:
2177     case CTSF_LAYERROWPCT_COUNT:
2178     case CTSF_LAYERCOLPCT_COUNT:
2179     case CTSF_ROWPCT_VALIDN:
2180     case CTSF_COLPCT_VALIDN:
2181     case CTSF_TABLEPCT_VALIDN:
2182     case CTSF_SUBTABLEPCT_VALIDN:
2183     case CTSF_LAYERPCT_VALIDN:
2184     case CTSF_LAYERROWPCT_VALIDN:
2185     case CTSF_LAYERCOLPCT_VALIDN:
2186     case CTSF_ROWPCT_TOTALN:
2187     case CTSF_COLPCT_TOTALN:
2188     case CTSF_TABLEPCT_TOTALN:
2189     case CTSF_SUBTABLEPCT_TOTALN:
2190     case CTSF_LAYERPCT_TOTALN:
2191     case CTSF_LAYERROWPCT_TOTALN:
2192     case CTSF_LAYERCOLPCT_TOTALN:
2193     case CTSF_MISSING:
2194     case CSTF_TOTALN:
2195     case CTSF_ETOTALN:
2196     case CTSF_VALIDN:
2197     case CTSF_EVALIDN:
2198       break;
2199
2200     case CTSF_MAXIMUM:
2201     case CTSF_MINIMUM:
2202     case CTSF_RANGE:
2203       break;
2204
2205     case CTSF_MEAN:
2206     case CTSF_SEMEAN:
2207     case CTSF_STDDEV:
2208     case CTSF_SUM:
2209     case CTSF_VARIANCE:
2210     case CTSF_ROWPCT_SUM:
2211     case CTSF_COLPCT_SUM:
2212     case CTSF_TABLEPCT_SUM:
2213     case CTSF_SUBTABLEPCT_SUM:
2214     case CTSF_LAYERPCT_SUM:
2215     case CTSF_LAYERROWPCT_SUM:
2216     case CTSF_LAYERCOLPCT_SUM:
2217       moments1_destroy (s->moments);
2218       break;
2219
2220     case CTSF_MEDIAN:
2221     case CTSF_MODE:
2222     case CTSF_PTILE:
2223       casewriter_destroy (s->writer);
2224       break;
2225     }
2226 }
2227
2228 static void
2229 ctables_summary_add (union ctables_summary *s,
2230                      const struct ctables_summary_spec *ss,
2231                      const struct variable *var, const union value *value,
2232                      double d_weight, double e_weight)
2233 {
2234   switch (ss->function)
2235     {
2236     case CTSF_COUNT:
2237     case CSTF_TOTALN:
2238     case CTSF_VALIDN:
2239       if (var_is_value_missing (var, value))
2240         s->missing += d_weight;
2241       else
2242         s->valid += d_weight;
2243       break;
2244
2245     case CTSF_ECOUNT:
2246     case CTSF_ROWPCT_COUNT:
2247     case CTSF_COLPCT_COUNT:
2248     case CTSF_TABLEPCT_COUNT:
2249     case CTSF_SUBTABLEPCT_COUNT:
2250     case CTSF_LAYERPCT_COUNT:
2251     case CTSF_LAYERROWPCT_COUNT:
2252     case CTSF_LAYERCOLPCT_COUNT:
2253     case CTSF_ROWPCT_VALIDN:
2254     case CTSF_COLPCT_VALIDN:
2255     case CTSF_TABLEPCT_VALIDN:
2256     case CTSF_SUBTABLEPCT_VALIDN:
2257     case CTSF_LAYERPCT_VALIDN:
2258     case CTSF_LAYERROWPCT_VALIDN:
2259     case CTSF_LAYERCOLPCT_VALIDN:
2260     case CTSF_ROWPCT_TOTALN:
2261     case CTSF_COLPCT_TOTALN:
2262     case CTSF_TABLEPCT_TOTALN:
2263     case CTSF_SUBTABLEPCT_TOTALN:
2264     case CTSF_LAYERPCT_TOTALN:
2265     case CTSF_LAYERROWPCT_TOTALN:
2266     case CTSF_LAYERCOLPCT_TOTALN:
2267     case CTSF_MISSING:
2268     case CTSF_ETOTALN:
2269     case CTSF_EVALIDN:
2270       if (var_is_value_missing (var, value))
2271         s->missing += e_weight;
2272       else
2273         s->valid += e_weight;
2274       break;
2275
2276     case CTSF_MAXIMUM:
2277     case CTSF_MINIMUM:
2278     case CTSF_RANGE:
2279       if (!var_is_value_missing (var, value))
2280         {
2281           assert (!var_is_alpha (var)); /* XXX? */
2282           if (s->min == SYSMIS || value->f < s->min)
2283             s->min = value->f;
2284           if (s->max == SYSMIS || value->f > s->max)
2285             s->max = value->f;
2286         }
2287       break;
2288
2289     case CTSF_MEAN:
2290     case CTSF_SEMEAN:
2291     case CTSF_STDDEV:
2292     case CTSF_SUM:
2293     case CTSF_VARIANCE:
2294     case CTSF_ROWPCT_SUM:
2295     case CTSF_COLPCT_SUM:
2296     case CTSF_TABLEPCT_SUM:
2297     case CTSF_SUBTABLEPCT_SUM:
2298     case CTSF_LAYERPCT_SUM:
2299     case CTSF_LAYERROWPCT_SUM:
2300     case CTSF_LAYERCOLPCT_SUM:
2301       if (!var_is_value_missing (var, value))
2302         moments1_add (s->moments, value->f, e_weight);
2303       break;
2304
2305     case CTSF_MEDIAN:
2306     case CTSF_MODE:
2307     case CTSF_PTILE:
2308       if (var_is_value_missing (var, value))
2309         {
2310           s->ovalid += e_weight;
2311
2312           struct ccase *c = case_create (casewriter_get_proto (s->writer));
2313           *case_num_rw_idx (c, 0) = value->f;
2314           *case_num_rw_idx (c, 1) = e_weight;
2315           casewriter_write (s->writer, c);
2316         }
2317       break;
2318     }
2319 }
2320
2321 static enum ctables_domain_type
2322 ctables_function_domain (enum ctables_summary_function function)
2323 {
2324   switch (function)
2325     {
2326     case CTSF_COUNT:
2327     case CTSF_ECOUNT:
2328     case CTSF_MISSING:
2329     case CSTF_TOTALN:
2330     case CTSF_ETOTALN:
2331     case CTSF_VALIDN:
2332     case CTSF_EVALIDN:
2333     case CTSF_MAXIMUM:
2334     case CTSF_MINIMUM:
2335     case CTSF_RANGE:
2336     case CTSF_MEAN:
2337     case CTSF_SEMEAN:
2338     case CTSF_STDDEV:
2339     case CTSF_SUM:
2340     case CTSF_VARIANCE:
2341     case CTSF_MEDIAN:
2342     case CTSF_PTILE:
2343     case CTSF_MODE:
2344       NOT_REACHED ();
2345
2346     case CTSF_COLPCT_COUNT:
2347     case CTSF_COLPCT_SUM:
2348     case CTSF_COLPCT_TOTALN:
2349     case CTSF_COLPCT_VALIDN:
2350       return CTDT_COL;
2351
2352     case CTSF_LAYERCOLPCT_COUNT:
2353     case CTSF_LAYERCOLPCT_SUM:
2354     case CTSF_LAYERCOLPCT_TOTALN:
2355     case CTSF_LAYERCOLPCT_VALIDN:
2356       return CTDT_LAYERCOL;
2357
2358     case CTSF_LAYERPCT_COUNT:
2359     case CTSF_LAYERPCT_SUM:
2360     case CTSF_LAYERPCT_TOTALN:
2361     case CTSF_LAYERPCT_VALIDN:
2362       return CTDT_LAYER;
2363
2364     case CTSF_LAYERROWPCT_COUNT:
2365     case CTSF_LAYERROWPCT_SUM:
2366     case CTSF_LAYERROWPCT_TOTALN:
2367     case CTSF_LAYERROWPCT_VALIDN:
2368       return CTDT_LAYERROW;
2369
2370     case CTSF_ROWPCT_COUNT:
2371     case CTSF_ROWPCT_SUM:
2372     case CTSF_ROWPCT_TOTALN:
2373     case CTSF_ROWPCT_VALIDN:
2374       return CTDT_ROW;
2375
2376     case CTSF_SUBTABLEPCT_COUNT:
2377     case CTSF_SUBTABLEPCT_SUM:
2378     case CTSF_SUBTABLEPCT_TOTALN:
2379     case CTSF_SUBTABLEPCT_VALIDN:
2380       return CTDT_SUBTABLE;
2381
2382     case CTSF_TABLEPCT_COUNT:
2383     case CTSF_TABLEPCT_SUM:
2384     case CTSF_TABLEPCT_TOTALN:
2385     case CTSF_TABLEPCT_VALIDN:
2386       return CTDT_TABLE;
2387     }
2388
2389   NOT_REACHED ();
2390 }
2391
2392 static double
2393 ctables_summary_value (const struct ctables_cell *cell,
2394                        union ctables_summary *s,
2395                        const struct ctables_summary_spec *ss)
2396 {
2397   switch (ss->function)
2398     {
2399     case CTSF_COUNT:
2400     case CTSF_ECOUNT:
2401       return s->valid;
2402
2403     case CTSF_ROWPCT_COUNT:
2404     case CTSF_COLPCT_COUNT:
2405     case CTSF_TABLEPCT_COUNT:
2406     case CTSF_SUBTABLEPCT_COUNT:
2407     case CTSF_LAYERPCT_COUNT:
2408     case CTSF_LAYERROWPCT_COUNT:
2409     case CTSF_LAYERCOLPCT_COUNT:
2410       {
2411         enum ctables_domain_type d = ctables_function_domain (ss->function);
2412         return (cell->domains[d]->e_valid
2413                 ? s->valid / cell->domains[d]->e_valid * 100
2414                 : SYSMIS);
2415       }
2416
2417     case CTSF_ROWPCT_VALIDN:
2418     case CTSF_COLPCT_VALIDN:
2419     case CTSF_TABLEPCT_VALIDN:
2420     case CTSF_SUBTABLEPCT_VALIDN:
2421     case CTSF_LAYERPCT_VALIDN:
2422     case CTSF_LAYERROWPCT_VALIDN:
2423     case CTSF_LAYERCOLPCT_VALIDN:
2424     case CTSF_ROWPCT_TOTALN:
2425     case CTSF_COLPCT_TOTALN:
2426     case CTSF_TABLEPCT_TOTALN:
2427     case CTSF_SUBTABLEPCT_TOTALN:
2428     case CTSF_LAYERPCT_TOTALN:
2429     case CTSF_LAYERROWPCT_TOTALN:
2430     case CTSF_LAYERCOLPCT_TOTALN:
2431       NOT_REACHED ();
2432
2433     case CTSF_MISSING:
2434       return s->missing;
2435
2436     case CSTF_TOTALN:
2437     case CTSF_ETOTALN:
2438       return s->valid + s->missing;
2439
2440     case CTSF_VALIDN:
2441     case CTSF_EVALIDN:
2442       return s->valid;
2443
2444     case CTSF_MAXIMUM:
2445       return s->max;
2446
2447     case CTSF_MINIMUM:
2448       return s->min;
2449
2450     case CTSF_RANGE:
2451       return s->max != SYSMIS && s->min != SYSMIS ? s->max - s->min : SYSMIS;
2452
2453     case CTSF_MEAN:
2454       {
2455         double mean;
2456         moments1_calculate (s->moments, NULL, &mean, NULL, NULL, NULL);
2457         return mean;
2458       }
2459
2460     case CTSF_SEMEAN:
2461       {
2462         double weight, variance;
2463         moments1_calculate (s->moments, &weight, NULL, &variance, NULL, NULL);
2464         return calc_semean (variance, weight);
2465       }
2466
2467     case CTSF_STDDEV:
2468       {
2469         double variance;
2470         moments1_calculate (s->moments, NULL, NULL, &variance, NULL, NULL);
2471         return variance != SYSMIS ? sqrt (variance) : SYSMIS;
2472       }
2473
2474     case CTSF_SUM:
2475       {
2476         double weight, mean;
2477         moments1_calculate (s->moments, &weight, &mean, NULL, NULL, NULL);
2478         return weight != SYSMIS && mean != SYSMIS ? weight * mean : SYSMIS;
2479       }
2480
2481     case CTSF_VARIANCE:
2482       {
2483         double variance;
2484         moments1_calculate (s->moments, NULL, NULL, &variance, NULL, NULL);
2485         return variance;
2486       }
2487
2488     case CTSF_ROWPCT_SUM:
2489     case CTSF_COLPCT_SUM:
2490     case CTSF_TABLEPCT_SUM:
2491     case CTSF_SUBTABLEPCT_SUM:
2492     case CTSF_LAYERPCT_SUM:
2493     case CTSF_LAYERROWPCT_SUM:
2494     case CTSF_LAYERCOLPCT_SUM:
2495       NOT_REACHED ();
2496
2497     case CTSF_MEDIAN:
2498     case CTSF_PTILE:
2499       if (s->writer)
2500         {
2501           struct casereader *reader = casewriter_make_reader (s->writer);
2502           s->writer = NULL;
2503
2504           struct percentile *ptile = percentile_create (
2505             ss->function == CTSF_PTILE ? ss->percentile : 0.5, s->ovalid);
2506           struct order_stats *os = &ptile->parent;
2507           order_stats_accumulate_idx (&os, 1, reader, 1, 0);
2508           s->ovalue = percentile_calculate (ptile, PC_HAVERAGE);
2509           statistic_destroy (&ptile->parent.parent);
2510         }
2511       return s->ovalue;
2512
2513     case CTSF_MODE:
2514       if (s->writer)
2515         {
2516           struct casereader *reader = casewriter_make_reader (s->writer);
2517           s->writer = NULL;
2518
2519           struct mode *mode = mode_create ();
2520           struct order_stats *os = &mode->parent;
2521           order_stats_accumulate_idx (&os, 1, reader, 1, 0);
2522           s->ovalue = mode->mode;
2523           statistic_destroy (&mode->parent.parent);
2524         }
2525       return s->ovalue;
2526     }
2527
2528   NOT_REACHED ();
2529 }
2530
2531 struct ctables_cell_sort_aux
2532   {
2533     const struct ctables_nest *nest;
2534     enum pivot_axis_type a;
2535   };
2536
2537 static int
2538 ctables_cell_compare_3way (const void *a_, const void *b_, const void *aux_)
2539 {
2540   const struct ctables_cell_sort_aux *aux = aux_;
2541   struct ctables_cell *const *ap = a_;
2542   struct ctables_cell *const *bp = b_;
2543   const struct ctables_cell *a = *ap;
2544   const struct ctables_cell *b = *bp;
2545
2546   const struct ctables_nest *nest = aux->nest;
2547   for (size_t i = 0; i < nest->n; i++)
2548     if (i != nest->scale_idx)
2549       {
2550         const struct variable *var = nest->vars[i];
2551         const struct ctables_cell_value *a_cv = &a->axes[aux->a].cvs[i];
2552         const struct ctables_cell_value *b_cv = &b->axes[aux->a].cvs[i];
2553         if (a_cv->category != b_cv->category)
2554           return a_cv->category > b_cv->category ? 1 : -1;
2555
2556         const union value *a_val = &a_cv->value;
2557         const union value *b_val = &b_cv->value;
2558         switch (a_cv->category->type)
2559           {
2560           case CCT_NUMBER:
2561           case CCT_STRING:
2562           case CCT_SUBTOTAL:
2563           case CCT_TOTAL:
2564           case CCT_POSTCOMPUTE:
2565             /* Must be equal. */
2566             continue;
2567
2568           case CCT_RANGE:
2569           case CCT_MISSING:
2570           case CCT_OTHERNM:
2571             {
2572               int cmp = value_compare_3way (a_val, b_val, var_get_width (var));
2573               if (cmp)
2574                 return cmp;
2575             }
2576             break;
2577
2578           case CCT_VALUE:
2579             {
2580               int cmp = value_compare_3way (a_val, b_val, var_get_width (var));
2581               if (cmp)
2582                 return a_cv->category->sort_ascending ? cmp : -cmp;
2583             }
2584             break;
2585
2586           case CCT_LABEL:
2587             {
2588               const char *a_label = var_lookup_value_label (var, a_val);
2589               const char *b_label = var_lookup_value_label (var, b_val);
2590               int cmp = (a_label
2591                          ? (b_label ? strcmp (a_label, b_label) : 1)
2592                          : (b_label ? -1 : value_compare_3way (
2593                               a_val, b_val, var_get_width (var))));
2594               if (cmp)
2595                 return a_cv->category->sort_ascending ? cmp : -cmp;
2596             }
2597             break;
2598
2599           case CCT_FUNCTION:
2600             NOT_REACHED ();
2601           }
2602       }
2603   return 0;
2604 }
2605
2606 /* Algorithm:
2607
2608    For each row:
2609        For each ctables_table:
2610            For each combination of row vars:
2611                For each combination of column vars:
2612                    For each combination of layer vars:
2613                        Add entry
2614    Make a table of row values:
2615        Sort entries by row values
2616        Assign a 0-based index to each actual value
2617        Construct a dimension
2618    Make a table of column values
2619    Make a table of layer values
2620    For each entry:
2621        Fill the table entry using the indexes from before.
2622  */
2623
2624 static struct ctables_domain *
2625 ctables_domain_insert (struct ctables_section *s, struct ctables_cell *cell,
2626                        enum ctables_domain_type domain)
2627 {
2628   size_t hash = 0;
2629   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2630     {
2631       const struct ctables_nest *nest = s->nests[a];
2632       for (size_t i = 0; i < nest->n_domains[domain]; i++)
2633         {
2634           size_t v_idx = nest->domains[domain][i];
2635           hash = value_hash (&cell->axes[a].cvs[v_idx].value,
2636                              var_get_width (nest->vars[v_idx]), hash);
2637         }
2638     }
2639
2640   struct ctables_domain *d;
2641   HMAP_FOR_EACH_WITH_HASH (d, struct ctables_domain, node, hash, &s->domains[domain])
2642     {
2643       const struct ctables_cell *df = d->example;
2644       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2645         {
2646           const struct ctables_nest *nest = s->nests[a];
2647           for (size_t i = 0; i < nest->n_domains[domain]; i++)
2648             {
2649               size_t v_idx = nest->domains[domain][i];
2650               if (!value_equal (&df->axes[a].cvs[v_idx].value,
2651                                 &cell->axes[a].cvs[v_idx].value,
2652                                 var_get_width (nest->vars[v_idx])))
2653                 goto not_equal;
2654             }
2655         }
2656       return d;
2657
2658     not_equal: ;
2659     }
2660
2661   d = xmalloc (sizeof *d);
2662   *d = (struct ctables_domain) { .example = cell };
2663   hmap_insert (&s->domains[domain], &d->node, hash);
2664   return d;
2665 }
2666
2667 static const struct ctables_category *
2668 ctables_categories_match (const struct ctables_categories *c,
2669                           const union value *v, const struct variable *var)
2670 {
2671   const struct ctables_category *othernm = NULL;
2672   for (size_t i = c->n_cats; i-- > 0; )
2673     {
2674       const struct ctables_category *cat = &c->cats[i];
2675       switch (cat->type)
2676         {
2677         case CCT_NUMBER:
2678           if (cat->number == v->f)
2679             return cat;
2680           break;
2681
2682         case CCT_STRING:
2683           NOT_REACHED ();
2684
2685         case CCT_RANGE:
2686           if ((cat->range[0] == -DBL_MAX || v->f >= cat->range[0])
2687               && (cat->range[1] == DBL_MAX || v->f <= cat->range[1]))
2688             return cat;
2689           break;
2690
2691         case CCT_MISSING:
2692           if (var_is_value_missing (var, v))
2693             return cat;
2694           break;
2695
2696         case CCT_POSTCOMPUTE:
2697           break;
2698
2699         case CCT_OTHERNM:
2700           if (!othernm)
2701             othernm = cat;
2702           break;
2703
2704         case CCT_SUBTOTAL:
2705         case CCT_TOTAL:
2706           break;
2707
2708         case CCT_VALUE:
2709         case CCT_LABEL:
2710         case CCT_FUNCTION:
2711           return (cat->include_missing || !var_is_value_missing (var, v) ? cat
2712                   : NULL);
2713         }
2714     }
2715
2716   return var_is_value_missing (var, v) ? NULL : othernm;
2717 }
2718
2719 static const struct ctables_category *
2720 ctables_categories_total (const struct ctables_categories *c)
2721 {
2722   const struct ctables_category *first = &c->cats[0];
2723   const struct ctables_category *last = &c->cats[c->n_cats - 1];
2724   return (first->type == CCT_TOTAL ? first
2725           : last->type == CCT_TOTAL ? last
2726           : NULL);
2727 }
2728
2729 static struct ctables_cell *
2730 ctables_cell_insert__ (struct ctables_section *s, const struct ccase *c,
2731                        const struct ctables_category *cats[PIVOT_N_AXES][10])
2732 {
2733   size_t hash = 0;
2734   enum ctables_summary_variant sv = CSV_CELL;
2735   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2736     {
2737       const struct ctables_nest *nest = s->nests[a];
2738       for (size_t i = 0; i < nest->n; i++)
2739         if (i != nest->scale_idx)
2740           {
2741             hash = hash_pointer (cats[a][i], hash);
2742             if (cats[a][i]->type != CCT_TOTAL
2743                 && cats[a][i]->type != CCT_SUBTOTAL
2744                 && cats[a][i]->type != CCT_POSTCOMPUTE)
2745               hash = value_hash (case_data (c, nest->vars[i]),
2746                                  var_get_width (nest->vars[i]), hash);
2747             else
2748               sv = CSV_TOTAL;
2749           }
2750     }
2751
2752   struct ctables_cell *cell;
2753   HMAP_FOR_EACH_WITH_HASH (cell, struct ctables_cell, node, hash, &s->cells)
2754     {
2755       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2756         {
2757           const struct ctables_nest *nest = s->nests[a];
2758           for (size_t i = 0; i < nest->n; i++)
2759             if (i != nest->scale_idx
2760                 && (cats[a][i] != cell->axes[a].cvs[i].category
2761                     || (cats[a][i]->type != CCT_TOTAL
2762                         && cats[a][i]->type != CCT_SUBTOTAL
2763                         && cats[a][i]->type != CCT_POSTCOMPUTE
2764                         && !value_equal (case_data (c, nest->vars[i]),
2765                                          &cell->axes[a].cvs[i].value,
2766                                          var_get_width (nest->vars[i])))))
2767                 goto not_equal;
2768         }
2769
2770       return cell;
2771
2772     not_equal: ;
2773     }
2774
2775   cell = xmalloc (sizeof *cell);
2776   cell->hide = false;
2777   cell->sv = sv;
2778   cell->contributes_to_domains = true;
2779   cell->postcompute = false;
2780   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2781     {
2782       const struct ctables_nest *nest = s->nests[a];
2783       cell->axes[a].cvs = (nest->n
2784                         ? xnmalloc (nest->n, sizeof *cell->axes[a].cvs)
2785                         : NULL);
2786       for (size_t i = 0; i < nest->n; i++)
2787         {
2788           const struct ctables_category *cat = cats[a][i];
2789           if (i != nest->scale_idx)
2790             {
2791               const struct ctables_category *subtotal = cat->subtotal;
2792               if (cat->hide || (subtotal && subtotal->hide_subcategories))
2793                 cell->hide = true;
2794
2795               if (cat->type == CCT_TOTAL
2796                   || cat->type == CCT_SUBTOTAL
2797                   || cat->type == CCT_POSTCOMPUTE)
2798                 cell->contributes_to_domains = false;
2799               if (cat->type == CCT_POSTCOMPUTE)
2800                 cell->postcompute = true;
2801             }
2802
2803           cell->axes[a].cvs[i].category = cat;
2804           value_clone (&cell->axes[a].cvs[i].value, case_data (c, nest->vars[i]),
2805                        var_get_width (nest->vars[i]));
2806         }
2807     }
2808
2809   const struct ctables_nest *ss = s->nests[s->table->summary_axis];
2810   const struct ctables_summary_spec_set *specs = &ss->specs[cell->sv];
2811   cell->summaries = xmalloc (specs->n * sizeof *cell->summaries);
2812   for (size_t i = 0; i < specs->n; i++)
2813     ctables_summary_init (&cell->summaries[i], &specs->specs[i]);
2814   for (enum ctables_domain_type dt = 0; dt < N_CTDTS; dt++)
2815     cell->domains[dt] = ctables_domain_insert (s, cell, dt);
2816   hmap_insert (&s->cells, &cell->node, hash);
2817   return cell;
2818 }
2819
2820 static void
2821 ctables_cell_add__ (struct ctables_section *s, const struct ccase *c,
2822                     const struct ctables_category *cats[PIVOT_N_AXES][10],
2823                     double d_weight, double e_weight)
2824 {
2825   struct ctables_cell *cell = ctables_cell_insert__ (s, c, cats);
2826   const struct ctables_nest *ss = s->nests[s->table->summary_axis];
2827
2828   const struct ctables_summary_spec_set *specs = &ss->specs[cell->sv];
2829   for (size_t i = 0; i < specs->n; i++)
2830     ctables_summary_add (&cell->summaries[i], &specs->specs[i], specs->var,
2831                          case_data (c, specs->var), d_weight, e_weight);
2832   if (cell->contributes_to_domains)
2833     {
2834       for (enum ctables_domain_type dt = 0; dt < N_CTDTS; dt++)
2835         {
2836           cell->domains[dt]->d_valid += d_weight;
2837           cell->domains[dt]->e_valid += e_weight;
2838         }
2839     }
2840 }
2841
2842 static void
2843 recurse_totals (struct ctables_section *s, const struct ccase *c,
2844                 const struct ctables_category *cats[PIVOT_N_AXES][10],
2845                 double d_weight, double e_weight,
2846                 enum pivot_axis_type start_axis, size_t start_nest)
2847 {
2848   for (enum pivot_axis_type a = start_axis; a < PIVOT_N_AXES; a++)
2849     {
2850       const struct ctables_nest *nest = s->nests[a];
2851       for (size_t i = start_nest; i < nest->n; i++)
2852         {
2853           if (i == nest->scale_idx)
2854             continue;
2855
2856           const struct variable *var = nest->vars[i];
2857
2858           const struct ctables_category *total = ctables_categories_total (
2859             s->table->categories[var_get_dict_index (var)]);
2860           if (total)
2861             {
2862               const struct ctables_category *save = cats[a][i];
2863               cats[a][i] = total;
2864               ctables_cell_add__ (s, c, cats, d_weight, e_weight);
2865               recurse_totals (s, c, cats, d_weight, e_weight, a, i + 1);
2866               cats[a][i] = save;
2867             }
2868         }
2869       start_nest = 0;
2870     }
2871 }
2872
2873 static void
2874 recurse_subtotals (struct ctables_section *s, const struct ccase *c,
2875                    const struct ctables_category *cats[PIVOT_N_AXES][10],
2876                    double d_weight, double e_weight,
2877                    enum pivot_axis_type start_axis, size_t start_nest)
2878 {
2879   for (enum pivot_axis_type a = start_axis; a < PIVOT_N_AXES; a++)
2880     {
2881       const struct ctables_nest *nest = s->nests[a];
2882       for (size_t i = start_nest; i < nest->n; i++)
2883         {
2884           if (i == nest->scale_idx)
2885             continue;
2886
2887           const struct ctables_category *save = cats[a][i];
2888           if (save->subtotal)
2889             {
2890               cats[a][i] = save->subtotal;
2891               ctables_cell_add__ (s, c, cats, d_weight, e_weight);
2892               recurse_subtotals (s, c, cats, d_weight, e_weight, a, i + 1);
2893               cats[a][i] = save;
2894             }
2895         }
2896       start_nest = 0;
2897     }
2898 }
2899
2900 static void
2901 ctables_add_occurrence (const struct variable *var,
2902                         const union value *value,
2903                         struct hmap *occurrences)
2904 {
2905   int width = var_get_width (var);
2906   unsigned int hash = value_hash (value, width, 0);
2907
2908   struct ctables_occurrence *o;
2909   HMAP_FOR_EACH_WITH_HASH (o, struct ctables_occurrence, node, hash,
2910                            occurrences)
2911     if (value_equal (value, &o->value, width))
2912       return;
2913
2914   o = xmalloc (sizeof *o);
2915   value_clone (&o->value, value, width);
2916   hmap_insert (occurrences, &o->node, hash);
2917 }
2918
2919 static void
2920 ctables_cell_insert (struct ctables_section *s,
2921                      const struct ccase *c,
2922                      double d_weight, double e_weight)
2923 {
2924   const struct ctables_category *cats[PIVOT_N_AXES][10]; /* XXX */
2925   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2926     {
2927       const struct ctables_nest *nest = s->nests[a];
2928       for (size_t i = 0; i < nest->n; i++)
2929         {
2930           if (i == nest->scale_idx)
2931             continue;
2932
2933           const struct variable *var = nest->vars[i];
2934           const union value *value = case_data (c, var);
2935
2936           if (var_is_numeric (var) && value->f == SYSMIS)
2937             return;
2938
2939           cats[a][i] = ctables_categories_match (
2940             s->table->categories[var_get_dict_index (var)], value, var);
2941           if (!cats[a][i])
2942             return;
2943         }
2944     }
2945
2946   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
2947     {
2948       const struct ctables_nest *nest = s->nests[a];
2949       for (size_t i = 0; i < nest->n; i++)
2950         if (i != nest->scale_idx)
2951           {
2952             const struct variable *var = nest->vars[i];
2953             const union value *value = case_data (c, var);
2954             ctables_add_occurrence (var, value, &s->occurrences[a][i]);
2955           }
2956     }
2957
2958   ctables_cell_add__ (s, c, cats, d_weight, e_weight);
2959
2960   recurse_totals (s, c, cats, d_weight, e_weight, 0, 0);
2961   recurse_subtotals (s, c, cats, d_weight, e_weight, 0, 0);
2962 }
2963
2964 struct merge_item
2965   {
2966     const struct ctables_summary_spec_set *set;
2967     size_t ofs;
2968   };
2969
2970 static int
2971 merge_item_compare_3way (const struct merge_item *a, const struct merge_item *b)
2972 {
2973   const struct ctables_summary_spec *as = &a->set->specs[a->ofs];
2974   const struct ctables_summary_spec *bs = &b->set->specs[b->ofs];
2975   if (as->function != bs->function)
2976     return as->function > bs->function ? 1 : -1;
2977   else if (as->percentile != bs->percentile)
2978     return as->percentile < bs->percentile ? 1 : -1;
2979   return strcmp (as->label, bs->label);
2980 }
2981
2982 static struct pivot_value *
2983 ctables_category_create_label (const struct ctables_category *cat,
2984                                const struct variable *var,
2985                                const union value *value)
2986 {
2987   return (cat->type == CCT_TOTAL || cat->type == CCT_SUBTOTAL
2988           ? pivot_value_new_user_text (cat->total_label, SIZE_MAX)
2989           : cat->type == CCT_POSTCOMPUTE && cat->pc->label
2990           ? pivot_value_new_user_text (cat->pc->label, SIZE_MAX)
2991           : pivot_value_new_var_value (var, value));
2992 }
2993
2994 static struct ctables_value *
2995 ctables_value_find__ (struct ctables_table *t, const union value *value,
2996                       int width, unsigned int hash)
2997 {
2998   struct ctables_value *clv;
2999   HMAP_FOR_EACH_WITH_HASH (clv, struct ctables_value, node,
3000                            hash, &t->clabels_values_map)
3001     if (value_equal (value, &clv->value, width))
3002       return clv;
3003   return NULL;
3004 }
3005
3006 static void
3007 ctables_value_insert (struct ctables_table *t, const union value *value,
3008                       int width)
3009 {
3010   unsigned int hash = value_hash (value, width, 0);
3011   struct ctables_value *clv = ctables_value_find__ (t, value, width, hash);
3012   if (!clv)
3013     {
3014       clv = xmalloc (sizeof *clv);
3015       value_clone (&clv->value, value, width);
3016       hmap_insert (&t->clabels_values_map, &clv->node, hash);
3017     }
3018 }
3019
3020 static struct ctables_value *
3021 ctables_value_find (struct ctables_table *t,
3022                     const union value *value, int width)
3023 {
3024   return ctables_value_find__ (t, value, width,
3025                                value_hash (value, width, 0));
3026 }
3027
3028 static void
3029 ctables_table_add_section (struct ctables_table *t, enum pivot_axis_type a,
3030                            size_t ix[PIVOT_N_AXES])
3031 {
3032   if (a < PIVOT_N_AXES)
3033     {
3034       size_t limit = MAX (t->stacks[a].n, 1);
3035       for (ix[a] = 0; ix[a] < limit; ix[a]++)
3036         ctables_table_add_section (t, a + 1, ix);
3037     }
3038   else
3039     {
3040       struct ctables_section *s = &t->sections[t->n_sections++];
3041       *s = (struct ctables_section) {
3042         .table = t,
3043         .cells = HMAP_INITIALIZER (s->cells),
3044       };
3045       for (a = 0; a < PIVOT_N_AXES; a++)
3046         if (t->stacks[a].n)
3047           {
3048             struct ctables_nest *nest = &t->stacks[a].nests[ix[a]];
3049             s->nests[a] = nest;
3050             s->occurrences[a] = xnmalloc (nest->n, sizeof *s->occurrences[a]);
3051             for (size_t i = 0; i < nest->n; i++)
3052               hmap_init (&s->occurrences[a][i]);
3053         }
3054       for (size_t i = 0; i < N_CTDTS; i++)
3055         hmap_init (&s->domains[i]);
3056     }
3057 }
3058
3059 static double
3060 ctpo_add (double a, double b)
3061 {
3062   return a + b;
3063 }
3064
3065 static double
3066 ctpo_sub (double a, double b)
3067 {
3068   return a - b;
3069 }
3070
3071 static double
3072 ctpo_mul (double a, double b)
3073 {
3074   return a * b;
3075 }
3076
3077 static double
3078 ctpo_div (double a, double b)
3079 {
3080   return b ? a / b : SYSMIS;
3081 }
3082
3083 static double
3084 ctpo_pow (double a, double b)
3085 {
3086   int save_errno = errno;
3087   errno = 0;
3088   double result = pow (a, b);
3089   if (errno)
3090     result = SYSMIS;
3091   errno = save_errno;
3092   return result;
3093 }
3094
3095 static double
3096 ctpo_neg (double a, double b UNUSED)
3097 {
3098   return -a;
3099 }
3100
3101 struct ctables_pcexpr_evaluate_ctx
3102   {
3103     const struct ctables_cell *cell;
3104     const struct ctables_section *section;
3105     const struct ctables_categories *cats;
3106     enum pivot_axis_type pc_a;
3107     size_t pc_a_idx;
3108   };
3109
3110 static double ctables_pcexpr_evaluate (
3111   const struct ctables_pcexpr_evaluate_ctx *, const struct ctables_pcexpr *);
3112
3113 static double
3114 ctables_pcexpr_evaluate_nonterminal (
3115   const struct ctables_pcexpr_evaluate_ctx *ctx,
3116   const struct ctables_pcexpr *e, size_t n_args,
3117   double evaluate (double, double))
3118 {
3119   double args[2] = { 0, 0 };
3120   for (size_t i = 0; i < n_args; i++)
3121     {
3122       args[i] = ctables_pcexpr_evaluate (ctx, e->subs[i]);
3123       if (!isfinite (args[i]) || args[i] == SYSMIS)
3124         return SYSMIS;
3125     }
3126   return evaluate (args[0], args[1]);
3127 }
3128
3129 static double
3130 ctables_pcexpr_evaluate_category (const struct ctables_pcexpr_evaluate_ctx *ctx,
3131                                   const struct ctables_cell_value *pc_cv)
3132 {
3133   const struct ctables_section *s = ctx->section;
3134
3135   size_t hash = 0;
3136   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
3137     {
3138       const struct ctables_nest *nest = s->nests[a];
3139       for (size_t i = 0; i < nest->n; i++)
3140         if (i != nest->scale_idx)
3141           {
3142             const struct ctables_cell_value *cv
3143               = (a == ctx->pc_a && i == ctx->pc_a_idx ? pc_cv
3144                  : &ctx->cell->axes[a].cvs[i]);
3145             hash = hash_pointer (cv->category, hash);
3146             if (cv->category->type != CCT_TOTAL
3147                 && cv->category->type != CCT_SUBTOTAL
3148                 && cv->category->type != CCT_POSTCOMPUTE)
3149               hash = value_hash (&cv->value,
3150                                  var_get_width (nest->vars[i]), hash);
3151           }
3152     }
3153
3154   struct ctables_cell *tc;
3155   HMAP_FOR_EACH_WITH_HASH (tc, struct ctables_cell, node, hash, &s->cells)
3156     {
3157       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
3158         {
3159           const struct ctables_nest *nest = s->nests[a];
3160           for (size_t i = 0; i < nest->n; i++)
3161             if (i != nest->scale_idx)
3162               {
3163                 const struct ctables_cell_value *p_cv
3164                   = (a == ctx->pc_a && i == ctx->pc_a_idx ? pc_cv
3165                      : &ctx->cell->axes[a].cvs[i]);
3166                 const struct ctables_cell_value *t_cv = &tc->axes[a].cvs[i];
3167                 if (p_cv->category != t_cv->category
3168                     || (p_cv->category->type != CCT_TOTAL
3169                         && p_cv->category->type != CCT_SUBTOTAL
3170                         && p_cv->category->type != CCT_POSTCOMPUTE
3171                         && !value_equal (&p_cv->value,
3172                                          &t_cv->value,
3173                                          var_get_width (nest->vars[i]))))
3174                   goto not_equal;
3175               }
3176         }
3177
3178       goto found;
3179
3180     not_equal: ;
3181     }
3182   return 0;
3183
3184 found: ;
3185   const struct ctables_table *t = s->table;
3186   const struct ctables_nest *specs_nest = s->nests[t->summary_axis];
3187   const struct ctables_summary_spec_set *specs = &specs_nest->specs[tc->sv];
3188   size_t j = 0 /* XXX */;
3189   return ctables_summary_value (tc, &tc->summaries[j], &specs->specs[j]);
3190 }
3191
3192 static double
3193 ctables_pcexpr_evaluate (const struct ctables_pcexpr_evaluate_ctx *ctx,
3194                          const struct ctables_pcexpr *e)
3195 {
3196   switch (e->op)
3197     {
3198     case CTPO_CONSTANT:
3199       return e->number;
3200
3201     case CTPO_CAT_RANGE:
3202       {
3203         struct ctables_cell_value cv = {
3204           .category = ctables_find_category_for_postcompute (ctx->cats, e)
3205         };
3206         assert (cv.category != NULL);
3207
3208         struct hmap *occurrences = &ctx->section->occurrences[ctx->pc_a][ctx->pc_a_idx];
3209         const struct ctables_occurrence *o;
3210
3211         double sum = 0.0;
3212         const struct variable *var = ctx->section->nests[ctx->pc_a]->vars[ctx->pc_a_idx];
3213         HMAP_FOR_EACH (o, struct ctables_occurrence, node, occurrences)
3214           if (ctables_categories_match (ctx->cats, &o->value, var) == cv.category)
3215             {
3216               cv.value = o->value;
3217               sum += ctables_pcexpr_evaluate_category (ctx, &cv);
3218             }
3219         return sum;
3220       }
3221
3222     case CTPO_CAT_NUMBER:
3223     case CTPO_CAT_STRING:
3224     case CTPO_CAT_MISSING:
3225     case CTPO_CAT_OTHERNM:
3226     case CTPO_CAT_SUBTOTAL:
3227     case CTPO_CAT_TOTAL:
3228       {
3229         struct ctables_cell_value cv = {
3230           .category = ctables_find_category_for_postcompute (ctx->cats, e),
3231           .value = { .f = e->number },
3232         };
3233         assert (cv.category != NULL);
3234         return ctables_pcexpr_evaluate_category (ctx, &cv);
3235       }
3236
3237     case CTPO_ADD:
3238       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 2, ctpo_add);
3239
3240     case CTPO_SUB:
3241       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 2, ctpo_sub);
3242
3243     case CTPO_MUL:
3244       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 2, ctpo_mul);
3245
3246     case CTPO_DIV:
3247       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 2, ctpo_div);
3248
3249     case CTPO_POW:
3250       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 2, ctpo_pow);
3251
3252     case CTPO_NEG:
3253       return ctables_pcexpr_evaluate_nonterminal (ctx, e, 1, ctpo_neg);
3254     }
3255
3256   NOT_REACHED ();
3257 }
3258
3259 static double
3260 ctables_cell_calculate_postcompute (const struct ctables_section *s,
3261                                     const struct ctables_cell *cell)
3262 {
3263   enum pivot_axis_type pc_a;
3264   size_t pc_a_idx;
3265   const struct ctables_postcompute *pc;
3266   for (pc_a = 0; ; pc_a++)
3267     {
3268       assert (pc_a < PIVOT_N_AXES);
3269       for (pc_a_idx = 0; pc_a_idx < s->nests[pc_a]->n; pc_a_idx++)
3270         {
3271           const struct ctables_cell_value *cv = &cell->axes[pc_a].cvs[pc_a_idx];
3272           if (cv->category->type == CCT_POSTCOMPUTE)
3273             {
3274               pc = cv->category->pc;
3275               goto found;
3276             }
3277         }
3278     }
3279 found: ;
3280
3281   const struct variable *var = s->nests[pc_a]->vars[pc_a_idx];
3282   const struct ctables_categories *cats = s->table->categories[
3283     var_get_dict_index (var)];
3284   struct ctables_pcexpr_evaluate_ctx ctx = {
3285     .cell = cell,
3286     .section = s,
3287     .cats = cats,
3288     .pc_a = pc_a,
3289     .pc_a_idx = pc_a_idx,
3290   };
3291   return ctables_pcexpr_evaluate (&ctx, pc->expr);
3292 }
3293
3294 static void
3295 ctables_table_output (struct ctables *ct, struct ctables_table *t)
3296 {
3297   struct pivot_table *pt = pivot_table_create__ (
3298     (t->title
3299      ? pivot_value_new_user_text (t->title, SIZE_MAX)
3300      : pivot_value_new_text (N_("Custom Tables"))),
3301     "Custom Tables");
3302   if (t->caption)
3303     pivot_table_set_caption (
3304       pt, pivot_value_new_user_text (t->caption, SIZE_MAX));
3305   if (t->corner)
3306     pivot_table_set_caption (
3307       pt, pivot_value_new_user_text (t->corner, SIZE_MAX));
3308
3309   bool summary_dimension = (t->summary_axis != t->slabels_axis
3310                             || (!t->slabels_visible
3311                                 && t->summary_specs.n > 1));
3312   if (summary_dimension)
3313     {
3314       struct pivot_dimension *d = pivot_dimension_create (
3315         pt, t->slabels_axis, N_("Statistics"));
3316       const struct ctables_summary_spec_set *specs = &t->summary_specs;
3317       if (!t->slabels_visible)
3318         d->hide_all_labels = true;
3319       for (size_t i = 0; i < specs->n; i++)
3320         pivot_category_create_leaf (
3321           d->root, pivot_value_new_text (specs->specs[i].label));
3322     }
3323
3324   bool categories_dimension = t->clabels_example != NULL;
3325   if (categories_dimension)
3326     {
3327       struct pivot_dimension *d = pivot_dimension_create (
3328         pt, t->label_axis[t->clabels_from_axis],
3329         t->clabels_from_axis == PIVOT_AXIS_ROW
3330         ? N_("Row Categories")
3331         : N_("Column Categories"));
3332       const struct variable *var = t->clabels_example;
3333       const struct ctables_categories *c = t->categories[var_get_dict_index (var)];
3334       for (size_t i = 0; i < t->n_clabels_values; i++)
3335         {
3336           const struct ctables_value *value = t->clabels_values[i];
3337           const struct ctables_category *cat = ctables_categories_match (c, &value->value, var);
3338           assert (cat != NULL);
3339           pivot_category_create_leaf (d->root, ctables_category_create_label (
3340                                         cat, t->clabels_example, &value->value));
3341         }
3342     }
3343
3344   pivot_table_set_look (pt, ct->look);
3345   struct pivot_dimension *d[PIVOT_N_AXES];
3346   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
3347     {
3348       static const char *names[] = {
3349         [PIVOT_AXIS_ROW] = N_("Rows"),
3350         [PIVOT_AXIS_COLUMN] = N_("Columns"),
3351         [PIVOT_AXIS_LAYER] = N_("Layers"),
3352       };
3353       d[a] = (t->axes[a] || a == t->summary_axis
3354               ? pivot_dimension_create (pt, a, names[a])
3355               : NULL);
3356       if (!d[a])
3357         continue;
3358
3359       assert (t->axes[a]);
3360
3361       for (size_t i = 0; i < t->stacks[a].n; i++)
3362         {
3363           struct ctables_nest *nest = &t->stacks[a].nests[i];
3364           struct ctables_section **sections = xnmalloc (t->n_sections,
3365                                                         sizeof *sections);
3366           size_t n_sections = 0;
3367
3368           size_t n_total_cells = 0;
3369           size_t max_depth = 0;
3370           for (size_t j = 0; j < t->n_sections; j++)
3371             if (t->sections[j].nests[a] == nest)
3372               {
3373                 struct ctables_section *s = &t->sections[j];
3374                 sections[n_sections++] = s;
3375                 n_total_cells += s->cells.count;
3376
3377                 size_t depth = s->nests[a]->n;
3378                 max_depth = MAX (depth, max_depth);
3379               }
3380
3381           struct ctables_cell **sorted = xnmalloc (n_total_cells,
3382                                                    sizeof *sorted);
3383           size_t n_sorted = 0;
3384
3385           for (size_t j = 0; j < n_sections; j++)
3386             {
3387               struct ctables_section *s = sections[j];
3388
3389               struct ctables_cell *cell;
3390               HMAP_FOR_EACH (cell, struct ctables_cell, node, &s->cells)
3391                 if (!cell->hide)
3392                   sorted[n_sorted++] = cell;
3393               assert (n_sorted <= n_total_cells);
3394             }
3395
3396           struct ctables_cell_sort_aux aux = { .nest = nest, .a = a };
3397           sort (sorted, n_sorted, sizeof *sorted, ctables_cell_compare_3way, &aux);
3398
3399           struct ctables_level
3400             {
3401               enum ctables_level_type
3402                 {
3403                   CTL_VAR,          /* Variable label for nest->vars[var_idx]. */
3404                   CTL_CATEGORY,     /* Category for nest->vars[var_idx]. */
3405                   CTL_SUMMARY,      /* Summary functions. */
3406                 }
3407                 type;
3408
3409               enum settings_value_show vlabel; /* CTL_VAR only. */
3410               size_t var_idx;
3411             };
3412           struct ctables_level *levels = xnmalloc (1 + 2 * max_depth, sizeof *levels);
3413           size_t n_levels = 0;
3414           for (size_t k = 0; k < nest->n; k++)
3415             {
3416               enum ctables_vlabel vlabel = ct->vlabels[var_get_dict_index (nest->vars[k])];
3417               if (vlabel != CTVL_NONE)
3418                 {
3419                   levels[n_levels++] = (struct ctables_level) {
3420                     .type = CTL_VAR,
3421                     .vlabel = (enum settings_value_show) vlabel,
3422                     .var_idx = k,
3423                   };
3424                 }
3425
3426               if (nest->scale_idx != k
3427                   && (k != nest->n - 1 || t->label_axis[a] == a))
3428                 {
3429                   levels[n_levels++] = (struct ctables_level) {
3430                     .type = CTL_CATEGORY,
3431                     .var_idx = k,
3432                   };
3433                 }
3434             }
3435
3436           if (!summary_dimension && a == t->slabels_axis)
3437             {
3438               levels[n_levels++] = (struct ctables_level) {
3439                 .type = CTL_SUMMARY,
3440                 .var_idx = SIZE_MAX,
3441               };
3442             }
3443
3444           /* Pivot categories:
3445
3446              - variable label for nest->vars[0], if vlabel != CTVL_NONE
3447              - category for nest->vars[0], if nest->scale_idx != 0
3448              - variable label for nest->vars[1], if vlabel != CTVL_NONE
3449              - category for nest->vars[1], if nest->scale_idx != 1
3450              ...
3451              - variable label for nest->vars[n - 1], if vlabel != CTVL_NONE
3452              - category for nest->vars[n - 1], if t->label_axis[a] == a && nest->scale_idx != n - 1.
3453              - summary function, if 'a == t->slabels_axis && a ==
3454              t->summary_axis'.
3455
3456              Additional dimensions:
3457
3458              - If 'a == t->slabels_axis && a != t->summary_axis', add a summary
3459              dimension.
3460              - If 't->label_axis[b] == a' for some 'b != a', add a category
3461              dimension to 'a'.
3462           */
3463
3464
3465           struct pivot_category **groups = xnmalloc (1 + 2 * max_depth, sizeof *groups);
3466           int prev_leaf = 0;
3467           for (size_t j = 0; j < n_sorted; j++)
3468             {
3469               struct ctables_cell *cell = sorted[j];
3470               struct ctables_cell *prev = j > 0 ? sorted[j - 1] : NULL;
3471
3472               size_t n_common = 0;
3473               if (j > 0)
3474                 {
3475                   for (; n_common < n_levels; n_common++)
3476                     {
3477                       const struct ctables_level *level = &levels[n_common];
3478                       if (level->type == CTL_CATEGORY)
3479                         {
3480                           size_t var_idx = level->var_idx;
3481                           const struct ctables_category *c = cell->axes[a].cvs[var_idx].category;
3482                           if (prev->axes[a].cvs[var_idx].category != c)
3483                             break;
3484                           else if (c->type != CCT_SUBTOTAL
3485                                    && c->type != CCT_TOTAL
3486                                    && c->type != CCT_POSTCOMPUTE
3487                                    && !value_equal (&prev->axes[a].cvs[var_idx].value,
3488                                                     &cell->axes[a].cvs[var_idx].value,
3489                                                     var_get_type (nest->vars[var_idx])))
3490                             break;
3491                         }
3492                     }
3493                 }
3494
3495               for (size_t k = n_common; k < n_levels; k++)
3496                 {
3497                   const struct ctables_level *level = &levels[k];
3498                   struct pivot_category *parent = k ? groups[k - 1] : d[a]->root;
3499                   if (level->type == CTL_SUMMARY)
3500                     {
3501                       assert (k == n_levels - 1);
3502
3503                       const struct ctables_summary_spec_set *specs = &t->summary_specs;
3504                       for (size_t m = 0; m < specs->n; m++)
3505                         {
3506                           int leaf = pivot_category_create_leaf (
3507                             parent, pivot_value_new_text (specs->specs[m].label));
3508                           if (!m)
3509                             prev_leaf = leaf;
3510                         }
3511                     }
3512                   else
3513                     {
3514                       const struct variable *var = nest->vars[level->var_idx];
3515                       struct pivot_value *label;
3516                       if (level->type == CTL_VAR)
3517                         {
3518                           label = pivot_value_new_variable (var);
3519                           label->variable.show = level->vlabel;
3520                         }
3521                       else if (level->type == CTL_CATEGORY)
3522                         {
3523                           const struct ctables_cell_value *cv = &cell->axes[a].cvs[level->var_idx];
3524                           label = ctables_category_create_label (cv->category,
3525                                                                  var, &cv->value);
3526                         }
3527                       else
3528                         NOT_REACHED ();
3529
3530                       if (k == n_levels - 1)
3531                         prev_leaf = pivot_category_create_leaf (parent, label);
3532                       else
3533                         groups[k] = pivot_category_create_group__ (parent, label);
3534                     }
3535                 }
3536
3537               cell->axes[a].leaf = prev_leaf;
3538             }
3539           free (sorted);
3540           free (groups);
3541         }
3542     }
3543
3544   for (size_t i = 0; i < t->n_sections; i++)
3545     {
3546       struct ctables_section *s = &t->sections[i];
3547
3548       struct ctables_cell *cell;
3549       HMAP_FOR_EACH (cell, struct ctables_cell, node, &s->cells)
3550         {
3551           if (cell->hide)
3552             continue;
3553
3554           const struct ctables_nest *specs_nest = s->nests[t->summary_axis];
3555           const struct ctables_summary_spec_set *specs = &specs_nest->specs[cell->sv];
3556           for (size_t j = 0; j < specs->n; j++)
3557             {
3558               size_t dindexes[5];
3559               size_t n_dindexes = 0;
3560
3561               if (summary_dimension)
3562                 dindexes[n_dindexes++] = specs->specs[j].axis_idx;
3563
3564               if (categories_dimension)
3565                 {
3566                   const struct ctables_nest *clabels_nest = s->nests[t->clabels_from_axis];
3567                   const struct variable *var = clabels_nest->vars[clabels_nest->n - 1];
3568                   const union value *value = &cell->axes[t->clabels_from_axis].cvs[clabels_nest->n - 1].value;
3569                   const struct ctables_value *ctv = ctables_value_find (t, value, var_get_width (var));
3570                   if (!ctv)
3571                     continue;
3572                   dindexes[n_dindexes++] = ctv->leaf;
3573                 }
3574
3575               for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
3576                 if (d[a])
3577                   {
3578                     int leaf = cell->axes[a].leaf;
3579                     if (a == t->summary_axis && !summary_dimension)
3580                       leaf += j;
3581                     dindexes[n_dindexes++] = leaf;
3582                   }
3583
3584               const struct ctables_summary_spec *ss = &specs->specs[j];
3585
3586               double d = (cell->postcompute
3587                           ? ctables_cell_calculate_postcompute (s, cell)
3588                           : ctables_summary_value (cell, &cell->summaries[j], ss));
3589               struct pivot_value *value;
3590               if (ct->hide_threshold != 0
3591                   && d < ct->hide_threshold
3592                   && (cell->postcompute
3593                       ? false /* XXX */
3594                       : ctables_summary_function_is_count (ss->function)))
3595                 {
3596                   value = pivot_value_new_user_text_nocopy (
3597                     xasprintf ("<%d", ct->hide_threshold));
3598                 }
3599               else if (d == 0 && ct->zero)
3600                 value = pivot_value_new_user_text (ct->zero, SIZE_MAX);
3601               else if (d == SYSMIS && ct->missing)
3602                 value = pivot_value_new_user_text (ct->missing, SIZE_MAX);
3603               else if (specs->specs[j].is_ctables_format)
3604                 {
3605                   char *s = data_out_stretchy (&(union value) { .f = d },
3606                                                "UTF-8",
3607                                                &specs->specs[j].format,
3608                                                &ct->ctables_formats, NULL);
3609                   value = pivot_value_new_user_text_nocopy (s);
3610                 }
3611               else
3612                 {
3613                   value = pivot_value_new_number (d);
3614                   value->numeric.format = specs->specs[j].format;
3615                 }
3616               pivot_table_put (pt, dindexes, n_dindexes, value);
3617             }
3618         }
3619     }
3620
3621   pivot_table_submit (pt);
3622 }
3623
3624 static bool
3625 ctables_check_label_position (struct ctables_table *t, enum pivot_axis_type a)
3626 {
3627   enum pivot_axis_type label_pos = t->label_axis[a];
3628   if (label_pos == a)
3629     return true;
3630
3631   t->clabels_from_axis = a;
3632
3633   const char *subcommand_name = a == PIVOT_AXIS_ROW ? "ROWLABELS" : "COLLABELS";
3634   const char *pos_name = label_pos == PIVOT_AXIS_LAYER ? "LAYER" : "OPPOSITE";
3635
3636   const struct ctables_stack *stack = &t->stacks[a];
3637   if (!stack->n)
3638     return true;
3639
3640   const struct ctables_nest *n0 = &stack->nests[0];
3641   assert (n0->n > 0);
3642   const struct variable *v0 = n0->vars[n0->n - 1];
3643   struct ctables_categories *c0 = t->categories[var_get_dict_index (v0)];
3644   t->clabels_example = v0;
3645
3646   for (size_t i = 0; i < c0->n_cats; i++)
3647     if (c0->cats[i].type == CCT_FUNCTION)
3648       {
3649         msg (SE, _("%s=%s is not allowed with sorting based "
3650                    "on a summary function."),
3651              subcommand_name, pos_name);
3652         return false;
3653       }
3654   if (n0->n - 1 == n0->scale_idx)
3655     {
3656       msg (SE, _("%s=%s requires the variables to be moved to be categorical, "
3657                  "but %s is a scale variable."),
3658            subcommand_name, pos_name, var_get_name (v0));
3659       return false;
3660     }
3661
3662   for (size_t i = 1; i < stack->n; i++)
3663     {
3664       const struct ctables_nest *ni = &stack->nests[i];
3665       assert (ni->n > 0);
3666       const struct variable *vi = ni->vars[ni->n - 1];
3667       struct ctables_categories *ci = t->categories[var_get_dict_index (vi)];
3668
3669       if (ni->n - 1 == ni->scale_idx)
3670         {
3671           msg (SE, _("%s=%s requires the variables to be moved to be "
3672                      "categorical, but %s is a scale variable."),
3673                subcommand_name, pos_name, var_get_name (vi));
3674           return false;
3675         }
3676       if (var_get_width (v0) != var_get_width (vi))
3677         {
3678           msg (SE, _("%s=%s requires the variables to be "
3679                      "moved to have the same width, but %s has "
3680                      "width %d and %s has width %d."),
3681                subcommand_name, pos_name,
3682                var_get_name (v0), var_get_width (v0),
3683                var_get_name (vi), var_get_width (vi));
3684           return false;
3685         }
3686       if (!val_labs_equal (var_get_value_labels (v0),
3687                            var_get_value_labels (vi)))
3688         {
3689           msg (SE, _("%s=%s requires the variables to be "
3690                      "moved to have the same value labels, but %s "
3691                      "and %s have different value labels."),
3692                subcommand_name, pos_name,
3693                var_get_name (v0), var_get_name (vi));
3694           return false;
3695         }
3696       if (!ctables_categories_equal (c0, ci))
3697         {
3698           msg (SE, _("%s=%s requires the variables to be "
3699                      "moved to have the same category "
3700                      "specifications, but %s and %s have different "
3701                      "category specifications."),
3702                subcommand_name, pos_name,
3703                var_get_name (v0), var_get_name (vi));
3704           return false;
3705         }
3706     }
3707
3708   return true;
3709 }
3710
3711 static bool
3712 ctables_prepare_table (struct ctables_table *t)
3713 {
3714   for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
3715     if (t->axes[a])
3716       {
3717         t->stacks[a] = enumerate_fts (a, t->axes[a]);
3718
3719         for (size_t j = 0; j < t->stacks[a].n; j++)
3720           {
3721             struct ctables_nest *nest = &t->stacks[a].nests[j];
3722             for (enum ctables_domain_type dt = 0; dt < N_CTDTS; dt++)
3723               {
3724                 nest->domains[dt] = xmalloc (nest->n * sizeof *nest->domains[dt]);
3725                 nest->n_domains[dt] = 0;
3726
3727                 for (size_t k = 0; k < nest->n; k++)
3728                   {
3729                     if (k == nest->scale_idx)
3730                       continue;
3731
3732                     switch (dt)
3733                       {
3734                       case CTDT_TABLE:
3735                         continue;
3736
3737                       case CTDT_LAYER:
3738                         if (a != PIVOT_AXIS_LAYER)
3739                           continue;
3740                         break;
3741
3742                       case CTDT_SUBTABLE:
3743                       case CTDT_ROW:
3744                       case CTDT_COL:
3745                         if (dt == CTDT_SUBTABLE ? a != PIVOT_AXIS_LAYER
3746                             : dt == CTDT_ROW ? a == PIVOT_AXIS_COLUMN
3747                             : a == PIVOT_AXIS_ROW)
3748                           {
3749                             if (k == nest->n - 1
3750                                 || (nest->scale_idx == nest->n - 1
3751                                     && k == nest->n - 2))
3752                               continue;
3753                           }
3754                         break;
3755
3756                       case CTDT_LAYERROW:
3757                         if (a == PIVOT_AXIS_COLUMN)
3758                           continue;
3759                         break;
3760
3761                       case CTDT_LAYERCOL:
3762                         if (a == PIVOT_AXIS_ROW)
3763                           continue;
3764                         break;
3765                       }
3766
3767                     nest->domains[dt][nest->n_domains[dt]++] = k;
3768                   }
3769               }
3770           }
3771       }
3772     else
3773       {
3774         struct ctables_nest *nest = xmalloc (sizeof *nest);
3775         *nest = (struct ctables_nest) { .n = 0 };
3776         t->stacks[a] = (struct ctables_stack) { .nests = nest, .n = 1 };
3777       }
3778
3779   struct ctables_stack *stack = &t->stacks[t->summary_axis];
3780   for (size_t i = 0; i < stack->n; i++)
3781     {
3782       struct ctables_nest *nest = &stack->nests[i];
3783       if (!nest->specs[CSV_CELL].n)
3784         {
3785           struct ctables_summary_spec_set *specs = &nest->specs[CSV_CELL];
3786           specs->specs = xmalloc (sizeof *specs->specs);
3787           specs->n = 1;
3788
3789           enum ctables_summary_function function
3790             = specs->var ? CTSF_MEAN : CTSF_COUNT;
3791           struct ctables_var var = { .is_mrset = false, .var = specs->var };
3792
3793           *specs->specs = (struct ctables_summary_spec) {
3794             .function = function,
3795             .format = ctables_summary_default_format (function, &var),
3796             .label = ctables_summary_default_label (function, 0),
3797           };
3798           if (!specs->var)
3799             specs->var = nest->vars[0];
3800
3801           ctables_summary_spec_set_clone (&nest->specs[CSV_TOTAL],
3802                                           &nest->specs[CSV_CELL]);
3803         }
3804       else if (!nest->specs[CSV_TOTAL].n)
3805         ctables_summary_spec_set_clone (&nest->specs[CSV_TOTAL],
3806                                         &nest->specs[CSV_CELL]);
3807     }
3808
3809   struct ctables_summary_spec_set *merged = &t->summary_specs;
3810   struct merge_item *items = xnmalloc (2 * stack->n, sizeof *items);
3811   size_t n_left = 0;
3812   for (size_t j = 0; j < stack->n; j++)
3813     {
3814       const struct ctables_nest *nest = &stack->nests[j];
3815       if (nest->n)
3816         for (enum ctables_summary_variant sv = 0; sv < N_CSVS; sv++)
3817           items[n_left++] = (struct merge_item) { .set = &nest->specs[sv] };
3818     }
3819
3820   while (n_left > 0)
3821     {
3822       struct merge_item min = items[0];
3823       for (size_t j = 1; j < n_left; j++)
3824         if (merge_item_compare_3way (&items[j], &min) < 0)
3825           min = items[j];
3826
3827       if (merged->n >= merged->allocated)
3828         merged->specs = x2nrealloc (merged->specs, &merged->allocated,
3829                                     sizeof *merged->specs);
3830       merged->specs[merged->n++] = min.set->specs[min.ofs];
3831
3832       for (size_t j = 0; j < n_left; )
3833         {
3834           if (merge_item_compare_3way (&items[j], &min) == 0)
3835             {
3836               struct merge_item *item = &items[j];
3837               item->set->specs[item->ofs].axis_idx = merged->n - 1;
3838               if (++item->ofs >= item->set->n)
3839                 {
3840                   items[j] = items[--n_left];
3841                   continue;
3842                 }
3843             }
3844           j++;
3845         }
3846     }
3847
3848 #if 0
3849   for (size_t j = 0; j < merged->n; j++)
3850     printf ("%s\n", ctables_summary_function_name (merged->specs[j].function));
3851
3852   for (size_t j = 0; j < stack->n; j++)
3853     {
3854       const struct ctables_nest *nest = &stack->nests[j];
3855       for (enum ctables_summary_variant sv = 0; sv < N_CSVS; sv++)
3856         {
3857           const struct ctables_summary_spec_set *specs = &nest->specs[sv];
3858           for (size_t k = 0; k < specs->n; k++)
3859             printf ("(%s, %zu) ", ctables_summary_function_name (specs->specs[k].function),
3860                     specs->specs[k].axis_idx);
3861           printf ("\n");
3862         }
3863     }
3864 #endif
3865
3866   return (ctables_check_label_position (t, PIVOT_AXIS_ROW)
3867           && ctables_check_label_position (t, PIVOT_AXIS_COLUMN));
3868 }
3869
3870 static void
3871 ctables_insert_clabels_values (struct ctables_table *t, const struct ccase *c,
3872                                enum pivot_axis_type a)
3873 {
3874   struct ctables_stack *stack = &t->stacks[a];
3875   for (size_t i = 0; i < stack->n; i++)
3876     {
3877       const struct ctables_nest *nest = &stack->nests[i];
3878       const struct variable *var = nest->vars[nest->n - 1];
3879       const union value *value = case_data (c, var);
3880
3881       if (var_is_numeric (var) && value->f == SYSMIS)
3882         continue;
3883
3884       if (ctables_categories_match (t->categories [var_get_dict_index (var)],
3885                                     value, var))
3886         ctables_value_insert (t, value, var_get_width (var));
3887     }
3888 }
3889
3890 static int
3891 compare_clabels_values_3way (const void *a_, const void *b_, const void *width_)
3892 {
3893   const struct ctables_value *const *ap = a_;
3894   const struct ctables_value *const *bp = b_;
3895   const struct ctables_value *a = *ap;
3896   const struct ctables_value *b = *bp;
3897   const int *width = width_;
3898   return value_compare_3way (&a->value, &b->value, *width);
3899 }
3900
3901 static void
3902 ctables_sort_clabels_values (struct ctables_table *t)
3903 {
3904   const struct variable *v0 = t->clabels_example;
3905   int width = var_get_width (v0);
3906
3907   struct ctables_categories *c0 = t->categories[var_get_dict_index (v0)];
3908   if (c0->show_empty)
3909     {
3910       const struct val_labs *val_labs = var_get_value_labels (v0);
3911       for (const struct val_lab *vl = val_labs_first (val_labs); vl;
3912            vl = val_labs_next (val_labs, vl))
3913         if (ctables_categories_match (c0, &vl->value, v0))
3914           ctables_value_insert (t, &vl->value, width);
3915     }
3916
3917   size_t n = hmap_count (&t->clabels_values_map);
3918   t->clabels_values = xnmalloc (n, sizeof *t->clabels_values);
3919
3920   struct ctables_value *clv;
3921   size_t i = 0;
3922   HMAP_FOR_EACH (clv, struct ctables_value, node, &t->clabels_values_map)
3923     t->clabels_values[i++] = clv;
3924   t->n_clabels_values = n;
3925   assert (i == n);
3926
3927   sort (t->clabels_values, n, sizeof *t->clabels_values,
3928         compare_clabels_values_3way, &width);
3929
3930   for (size_t i = 0; i < n; i++)
3931     t->clabels_values[i]->leaf = i;
3932 }
3933
3934 static void
3935 ctables_add_category_occurrences (const struct variable *var,
3936                                   struct hmap *occurrences,
3937                                   const struct ctables_categories *cats)
3938 {
3939   const struct val_labs *val_labs = var_get_value_labels (var);
3940
3941   for (size_t i = 0; i < cats->n_cats; i++)
3942     {
3943       const struct ctables_category *c = &cats->cats[i];
3944       switch (c->type)
3945         {
3946         case CCT_NUMBER:
3947           ctables_add_occurrence (var, &(const union value) { .f = c->number },
3948                                   occurrences);
3949           break;
3950
3951         case CCT_STRING:
3952           abort ();             /* XXX */
3953
3954         case CCT_RANGE:
3955           assert (var_is_numeric (var));
3956           for (const struct val_lab *vl = val_labs_first (val_labs); vl;
3957                vl = val_labs_next (val_labs, vl))
3958             if (vl->value.f >= c->range[0] && vl->value.f <= c->range[1])
3959               ctables_add_occurrence (var, &vl->value, occurrences);
3960           break;
3961
3962         case CCT_MISSING:
3963           for (const struct val_lab *vl = val_labs_first (val_labs); vl;
3964                vl = val_labs_next (val_labs, vl))
3965             if (var_is_value_missing (var, &vl->value))
3966               ctables_add_occurrence (var, &vl->value, occurrences);
3967           break;
3968
3969         case CCT_OTHERNM:
3970           for (const struct val_lab *vl = val_labs_first (val_labs); vl;
3971                vl = val_labs_next (val_labs, vl))
3972             ctables_add_occurrence (var, &vl->value, occurrences);
3973           break;
3974
3975         case CCT_POSTCOMPUTE:
3976           break;
3977
3978         case CCT_SUBTOTAL:
3979         case CCT_TOTAL:
3980           break;
3981
3982         case CCT_VALUE:
3983         case CCT_LABEL:
3984         case CCT_FUNCTION:
3985           for (const struct val_lab *vl = val_labs_first (val_labs); vl;
3986                vl = val_labs_next (val_labs, vl))
3987             if (c->include_missing || !var_is_value_missing (var, &vl->value))
3988               ctables_add_occurrence (var, &vl->value, occurrences);
3989           break;
3990         }
3991     }
3992 }
3993
3994 static void
3995 ctables_section_recurse_add_empty_categories (
3996   struct ctables_section *s,
3997   const struct ctables_category *cats[PIVOT_N_AXES][10], struct ccase *c,
3998   enum pivot_axis_type a, size_t a_idx)
3999 {
4000   if (a >= PIVOT_N_AXES)
4001     ctables_cell_insert__ (s, c, cats);
4002   else if (!s->nests[a] || a_idx >= s->nests[a]->n)
4003     ctables_section_recurse_add_empty_categories (s, cats, c, a + 1, 0);
4004   else
4005     {
4006       const struct variable *var = s->nests[a]->vars[a_idx];
4007       const struct ctables_categories *categories = s->table->categories[
4008         var_get_dict_index (var)];
4009       int width = var_get_width (var);
4010       const struct hmap *occurrences = &s->occurrences[a][a_idx];
4011       const struct ctables_occurrence *o;
4012       HMAP_FOR_EACH (o, struct ctables_occurrence, node, occurrences)
4013         {
4014           union value *value = case_data_rw (c, var);
4015           value_destroy (value, width);
4016           value_clone (value, &o->value, width);
4017           cats[a][a_idx] = ctables_categories_match (categories, value, var);
4018           assert (cats[a][a_idx] != NULL);
4019           ctables_section_recurse_add_empty_categories (s, cats, c, a, a_idx + 1);
4020         }
4021
4022       for (size_t i = 0; i < categories->n_cats; i++)
4023         {
4024           const struct ctables_category *cat = &categories->cats[i];
4025           if (cat->type == CCT_POSTCOMPUTE)
4026             {
4027               cats[a][a_idx] = cat;
4028               ctables_section_recurse_add_empty_categories (s, cats, c, a, a_idx + 1);
4029             }
4030         }
4031     }
4032 }
4033
4034 static void
4035 ctables_section_add_empty_categories (struct ctables_section *s)
4036 {
4037   bool show_empty = false;
4038   for (size_t a = 0; a < PIVOT_N_AXES; a++)
4039     if (s->nests[a])
4040       for (size_t k = 0; k < s->nests[a]->n; k++)
4041         if (k != s->nests[a]->scale_idx)
4042           {
4043             const struct variable *var = s->nests[a]->vars[k];
4044             const struct ctables_categories *cats = s->table->categories[
4045               var_get_dict_index (var)];
4046             if (cats->show_empty)
4047               {
4048                 show_empty = true;
4049                 ctables_add_category_occurrences (var, &s->occurrences[a][k], cats);
4050               }
4051           }
4052   if (!show_empty)
4053     return;
4054
4055   const struct ctables_category *cats[PIVOT_N_AXES][10]; /* XXX */
4056   struct ccase *c = case_create (dict_get_proto (s->table->ctables->dict));
4057   ctables_section_recurse_add_empty_categories (s, cats, c, 0, 0);
4058   case_unref (c);
4059 }
4060
4061 static bool
4062 ctables_execute (struct dataset *ds, struct ctables *ct)
4063 {
4064   for (size_t i = 0; i < ct->n_tables; i++)
4065     {
4066       struct ctables_table *t = ct->tables[i];
4067       t->sections = xnmalloc (MAX (1, t->stacks[PIVOT_AXIS_ROW].n) *
4068                               MAX (1, t->stacks[PIVOT_AXIS_COLUMN].n) *
4069                               MAX (1, t->stacks[PIVOT_AXIS_LAYER].n),
4070                               sizeof *t->sections);
4071       size_t ix[PIVOT_N_AXES];
4072       ctables_table_add_section (t, 0, ix);
4073     }
4074
4075   struct casereader *input = proc_open (ds);
4076   bool warn_on_invalid = true;
4077   for (struct ccase *c = casereader_read (input); c;
4078        case_unref (c), c = casereader_read (input))
4079     {
4080       double d_weight = dict_get_case_weight (dataset_dict (ds), c,
4081                                               &warn_on_invalid);
4082       double e_weight = (ct->e_weight
4083                          ? var_force_valid_weight (ct->e_weight,
4084                                                    case_num (c, ct->e_weight),
4085                                                    &warn_on_invalid)
4086                          : d_weight);
4087
4088       for (size_t i = 0; i < ct->n_tables; i++)
4089         {
4090           struct ctables_table *t = ct->tables[i];
4091
4092           for (size_t j = 0; j < t->n_sections; j++)
4093             ctables_cell_insert (&t->sections[j], c, d_weight, e_weight);
4094
4095           for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
4096             if (t->label_axis[a] != a)
4097               ctables_insert_clabels_values (t, c, a);
4098         }
4099     }
4100   casereader_destroy (input);
4101
4102   for (size_t i = 0; i < ct->n_tables; i++)
4103     {
4104       struct ctables_table *t = ct->tables[i];
4105
4106       if (t->clabels_example)
4107         ctables_sort_clabels_values (t);
4108
4109       for (size_t j = 0; j < t->n_sections; j++)
4110         ctables_section_add_empty_categories (&t->sections[j]);
4111
4112       ctables_table_output (ct, ct->tables[i]);
4113     }
4114   return proc_commit (ds);
4115 }
4116 \f
4117 /* Postcomputes. */
4118
4119 typedef struct ctables_pcexpr *parse_recursively_func (struct lexer *);
4120
4121 static void
4122 ctables_pcexpr_destroy (struct ctables_pcexpr *e)
4123 {
4124   if (e)
4125     {
4126       switch (e->op)
4127         {
4128         case CTPO_CAT_STRING:
4129           free (e->string);
4130           break;
4131
4132         case CTPO_ADD:
4133         case CTPO_SUB:
4134         case CTPO_MUL:
4135         case CTPO_DIV:
4136         case CTPO_POW:
4137         case CTPO_NEG:
4138           for (size_t i = 0; i < 2; i++)
4139             ctables_pcexpr_destroy (e->subs[i]);
4140           break;
4141
4142         case CTPO_CONSTANT:
4143         case CTPO_CAT_NUMBER:
4144         case CTPO_CAT_RANGE:
4145         case CTPO_CAT_MISSING:
4146         case CTPO_CAT_OTHERNM:
4147         case CTPO_CAT_SUBTOTAL:
4148         case CTPO_CAT_TOTAL:
4149           break;
4150         }
4151
4152       msg_location_destroy (e->location);
4153       free (e);
4154     }
4155 }
4156
4157 static struct ctables_pcexpr *
4158 ctables_pcexpr_allocate_binary (enum ctables_postcompute_op op,
4159                                 struct ctables_pcexpr *sub0,
4160                                 struct ctables_pcexpr *sub1)
4161 {
4162   struct ctables_pcexpr *e = xmalloc (sizeof *e);
4163   *e = (struct ctables_pcexpr) {
4164     .op = op,
4165     .subs = { sub0, sub1 },
4166     .location = msg_location_merged (sub0->location, sub1->location),
4167   };
4168   return e;
4169 }
4170
4171 /* How to parse an operator. */
4172 struct operator
4173   {
4174     enum token_type token;
4175     enum ctables_postcompute_op op;
4176   };
4177
4178 static const struct operator *
4179 match_operator (struct lexer *lexer, const struct operator ops[], size_t n_ops)
4180 {
4181   for (const struct operator *op = ops; op < ops + n_ops; op++)
4182     if (lex_token (lexer) == op->token)
4183       {
4184         if (op->token != T_NEG_NUM)
4185           lex_get (lexer);
4186
4187         return op;
4188       }
4189
4190   return NULL;
4191 }
4192
4193 static struct ctables_pcexpr *
4194 parse_binary_operators__ (struct lexer *lexer,
4195                           const struct operator ops[], size_t n_ops,
4196                           parse_recursively_func *parse_next_level,
4197                           const char *chain_warning,
4198                           struct ctables_pcexpr *lhs)
4199 {
4200   for (int op_count = 0; ; op_count++)
4201     {
4202       const struct operator *op = match_operator (lexer, ops, n_ops);
4203       if (!op)
4204         {
4205           if (op_count > 1 && chain_warning)
4206             msg_at (SW, lhs->location, "%s", chain_warning);
4207
4208           return lhs;
4209         }
4210
4211       struct ctables_pcexpr *rhs = parse_next_level (lexer);
4212       if (!rhs)
4213         {
4214           ctables_pcexpr_destroy (lhs);
4215           return NULL;
4216         }
4217
4218       lhs = ctables_pcexpr_allocate_binary (op->op, lhs, rhs);
4219     }
4220 }
4221
4222 static struct ctables_pcexpr *
4223 parse_binary_operators (struct lexer *lexer,
4224                         const struct operator ops[], size_t n_ops,
4225                         parse_recursively_func *parse_next_level,
4226                         const char *chain_warning)
4227 {
4228   struct ctables_pcexpr *lhs = parse_next_level (lexer);
4229   if (!lhs)
4230     return NULL;
4231
4232   return parse_binary_operators__ (lexer, ops, n_ops, parse_next_level,
4233                                    chain_warning, lhs);
4234 }
4235
4236 static struct ctables_pcexpr *parse_add (struct lexer *);
4237
4238 static struct ctables_pcexpr
4239 ctpo_cat_range (double low, double high)
4240 {
4241   return (struct ctables_pcexpr) {
4242     .op = CTPO_CAT_RANGE,
4243     .range = { low, high },
4244   };
4245 }
4246
4247 static struct ctables_pcexpr *
4248 parse_primary (struct lexer *lexer)
4249 {
4250   int start_ofs = lex_ofs (lexer);
4251   struct ctables_pcexpr e;
4252   if (lex_is_number (lexer))
4253     {
4254       e = (struct ctables_pcexpr) { .op = CTPO_CONSTANT,
4255                                     .number = lex_number (lexer) };
4256       lex_get (lexer);
4257     }
4258   else if (lex_match_id (lexer, "MISSING"))
4259     e = (struct ctables_pcexpr) { .op = CTPO_CAT_MISSING };
4260   else if (lex_match_id (lexer, "OTHERNM"))
4261     e = (struct ctables_pcexpr) { .op = CTPO_CAT_OTHERNM };
4262   else if (lex_match_id (lexer, "TOTAL"))
4263     e = (struct ctables_pcexpr) { .op = CTPO_CAT_TOTAL };
4264   else if (lex_match_id (lexer, "SUBTOTAL"))
4265     {
4266       size_t subtotal_index = 0;
4267       if (lex_match (lexer, T_LBRACK))
4268         {
4269           if (!lex_force_int_range (lexer, "SUBTOTAL", 1, LONG_MAX))
4270             return NULL;
4271           subtotal_index = lex_integer (lexer);
4272           lex_get (lexer);
4273           if (!lex_force_match (lexer, T_RBRACK))
4274             return NULL;
4275         }
4276       e = (struct ctables_pcexpr) { .op = CTPO_CAT_SUBTOTAL,
4277                                     .subtotal_index = subtotal_index };
4278     }
4279   else if (lex_match (lexer, T_LBRACK))
4280     {
4281       if (lex_match_id (lexer, "LO"))
4282         {
4283           if (!lex_force_match_id (lexer, "THRU") || lex_force_num (lexer))
4284             return false;
4285           e = ctpo_cat_range (-DBL_MAX, lex_number (lexer));
4286           lex_get (lexer);
4287         }
4288       else if (lex_is_number (lexer))
4289         {
4290           double number = lex_number (lexer);
4291           lex_get (lexer);
4292           if (lex_match_id (lexer, "THRU"))
4293             {
4294               if (lex_match_id (lexer, "HI"))
4295                 e = ctpo_cat_range (number, DBL_MAX);
4296               else
4297                 {
4298                   if (!lex_force_num (lexer))
4299                     return false;
4300                   e = ctpo_cat_range (number, lex_number (lexer));
4301                   lex_get (lexer);
4302                 }
4303             }
4304           else
4305             e = (struct ctables_pcexpr) { .op = CTPO_CAT_NUMBER,
4306                                           .number = number };
4307         }
4308       else if (lex_is_string (lexer))
4309         {
4310           e = (struct ctables_pcexpr) {
4311             .op = CTPO_CAT_STRING,
4312             .string = ss_xstrdup (lex_tokss (lexer)),
4313           };
4314           lex_get (lexer);
4315         }
4316       else
4317         {
4318           lex_error (lexer, NULL);
4319           return NULL;
4320         }
4321
4322       if (!lex_force_match (lexer, T_RBRACK))
4323         {
4324           if (e.op == CTPO_CAT_STRING)
4325             free (e.string);
4326           return NULL;
4327         }
4328     }
4329   else if (lex_match (lexer, T_LPAREN))
4330     {
4331       struct ctables_pcexpr *ep = parse_add (lexer);
4332       if (!ep)
4333         return NULL;
4334       if (!lex_force_match (lexer, T_RPAREN))
4335         {
4336           ctables_pcexpr_destroy (ep);
4337           return NULL;
4338         }
4339       return ep;
4340     }
4341   else
4342     {
4343       lex_error (lexer, NULL);
4344       return NULL;
4345     }
4346
4347   e.location = lex_ofs_location (lexer, start_ofs, lex_ofs (lexer) - 1);
4348   return xmemdup (&e, sizeof e);
4349 }
4350
4351 static struct ctables_pcexpr *
4352 ctables_pcexpr_allocate_neg (struct ctables_pcexpr *sub,
4353                              struct lexer *lexer, int start_ofs)
4354 {
4355   struct ctables_pcexpr *e = xmalloc (sizeof *e);
4356   *e = (struct ctables_pcexpr) {
4357     .op = CTPO_NEG,
4358     .subs = { sub },
4359     .location = lex_ofs_location (lexer, start_ofs, lex_ofs (lexer) - 1),
4360   };
4361   return e;
4362 }
4363
4364 static struct ctables_pcexpr *
4365 parse_exp (struct lexer *lexer)
4366 {
4367   static const struct operator op = { T_EXP, CTPO_POW };
4368
4369   const char *chain_warning =
4370     _("The exponentiation operator (`**') is left-associative: "
4371       "`a**b**c' equals `(a**b)**c', not `a**(b**c)'.  "
4372       "To disable this warning, insert parentheses.");
4373
4374   if (lex_token (lexer) != T_NEG_NUM || lex_next_token (lexer, 1) != T_EXP)
4375     return parse_binary_operators (lexer, &op, 1,
4376                                    parse_primary, chain_warning);
4377
4378   /* Special case for situations like "-5**6", which must be parsed as
4379      -(5**6). */
4380
4381   int start_ofs = lex_ofs (lexer);
4382   struct ctables_pcexpr *lhs = xmalloc (sizeof *lhs);
4383   *lhs = (struct ctables_pcexpr) {
4384     .op = CTPO_CONSTANT,
4385     .number = -lex_tokval (lexer),
4386     .location = lex_ofs_location (lexer, start_ofs, lex_ofs (lexer)),
4387   };
4388   lex_get (lexer);
4389
4390   struct ctables_pcexpr *node = parse_binary_operators__ (
4391     lexer, &op, 1, parse_primary, chain_warning, lhs);
4392   if (!node)
4393     return NULL;
4394
4395   return ctables_pcexpr_allocate_neg (node, lexer, start_ofs);
4396 }
4397
4398 /* Parses the unary minus level. */
4399 static struct ctables_pcexpr *
4400 parse_neg (struct lexer *lexer)
4401 {
4402   int start_ofs = lex_ofs (lexer);
4403   if (!lex_match (lexer, T_DASH))
4404     return parse_exp (lexer);
4405
4406   struct ctables_pcexpr *inner = parse_neg (lexer);
4407   if (!inner)
4408     return NULL;
4409
4410   return ctables_pcexpr_allocate_neg (inner, lexer, start_ofs);
4411 }
4412
4413 /* Parses the multiplication and division level. */
4414 static struct ctables_pcexpr *
4415 parse_mul (struct lexer *lexer)
4416 {
4417   static const struct operator ops[] =
4418     {
4419       { T_ASTERISK, CTPO_MUL },
4420       { T_SLASH, CTPO_DIV },
4421     };
4422
4423   return parse_binary_operators (lexer, ops, sizeof ops / sizeof *ops,
4424                                  parse_neg, NULL);
4425 }
4426
4427 /* Parses the addition and subtraction level. */
4428 static struct ctables_pcexpr *
4429 parse_add (struct lexer *lexer)
4430 {
4431   static const struct operator ops[] =
4432     {
4433       { T_PLUS, CTPO_ADD },
4434       { T_DASH, CTPO_SUB },
4435       { T_NEG_NUM, CTPO_ADD },
4436     };
4437
4438   return parse_binary_operators (lexer, ops, sizeof ops / sizeof *ops,
4439                                  parse_mul, NULL);
4440 }
4441
4442 static struct ctables_postcompute *
4443 ctables_find_postcompute (struct ctables *ct, const char *name)
4444 {
4445   struct ctables_postcompute *pc;
4446   HMAP_FOR_EACH_WITH_HASH (pc, struct ctables_postcompute, hmap_node,
4447                            utf8_hash_case_string (name, 0), &ct->postcomputes)
4448     if (!utf8_strcasecmp (pc->name, name))
4449       return pc;
4450   return NULL;
4451 }
4452
4453 static bool
4454 ctables_parse_pcompute (struct lexer *lexer, struct ctables *ct)
4455 {
4456   int pcompute_start = lex_ofs (lexer) - 1;
4457
4458   if (!lex_force_match (lexer, T_AND) || !lex_force_id (lexer))
4459     return false;
4460
4461   char *name = ss_xstrdup (lex_tokss (lexer));
4462
4463   lex_get (lexer);
4464   if (!lex_force_match (lexer, T_EQUALS)
4465       || !lex_force_match_id (lexer, "EXPR")
4466       || !lex_force_match (lexer, T_LPAREN))
4467     {
4468       free (name);
4469       return false;
4470     }
4471
4472   int expr_start = lex_ofs (lexer);
4473   struct ctables_pcexpr *expr = parse_add (lexer);
4474   int expr_end = lex_ofs (lexer) - 1;
4475   if (!expr || !lex_force_match (lexer, T_RPAREN))
4476     {
4477       free (name);
4478       return false;
4479     }
4480   int pcompute_end = lex_ofs (lexer) - 1;
4481
4482   struct msg_location *location = lex_ofs_location (lexer, pcompute_start,
4483                                                     pcompute_end);
4484
4485   struct ctables_postcompute *pc = ctables_find_postcompute (ct, name);
4486   if (pc)
4487     {
4488       msg_at (SW, location, _("New definition of &%s will override the "
4489                               "previous definition."),
4490               pc->name);
4491       msg_at (SN, pc->location, _("This is the previous definition."));
4492
4493       ctables_pcexpr_destroy (pc->expr);
4494       msg_location_destroy (pc->location);
4495       free (name);
4496     }
4497   else
4498     {
4499       pc = xmalloc (sizeof *pc);
4500       *pc = (struct ctables_postcompute) { .name = name };
4501       hmap_insert (&ct->postcomputes, &pc->hmap_node,
4502                    utf8_hash_case_string (pc->name, 0));
4503     }
4504   pc->expr = expr;
4505   pc->location = location;
4506   if (!pc->label)
4507     pc->label = lex_ofs_representation (lexer, expr_start, expr_end);
4508   return true;
4509 }
4510
4511 static bool
4512 ctables_parse_pproperties_format (struct lexer *lexer,
4513                                   struct ctables_summary_spec_set *sss)
4514 {
4515   *sss = (struct ctables_summary_spec_set) { .n = 0 };
4516
4517   while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH
4518          && !(lex_token (lexer) == T_ID
4519               && (lex_id_match (ss_cstr ("LABEL"), lex_tokss (lexer))
4520                   || lex_id_match (ss_cstr ("HIDESOURCECATS"),
4521                                    lex_tokss (lexer)))))
4522     {
4523       /* Parse function. */
4524       enum ctables_summary_function function;
4525       if (!parse_ctables_summary_function (lexer, &function))
4526         goto error;
4527
4528       /* Parse percentile. */
4529       double percentile = 0;
4530       if (function == CTSF_PTILE)
4531         {
4532           if (!lex_force_num_range_closed (lexer, "PTILE", 0, 100))
4533             goto error;
4534           percentile = lex_number (lexer);
4535           lex_get (lexer);
4536         }
4537
4538       /* Parse format. */
4539       struct fmt_spec format;
4540       if (!parse_format_specifier (lexer, &format)
4541           || !fmt_check_output (&format)
4542           || !fmt_check_type_compat (&format, VAL_NUMERIC))
4543         goto error;
4544
4545       if (sss->n >= sss->allocated)
4546         sss->specs = x2nrealloc (sss->specs, &sss->allocated,
4547                                  sizeof *sss->specs);
4548       sss->specs[sss->n++] = (struct ctables_summary_spec) {
4549         .function = function,
4550         .percentile = percentile,
4551         .format = format,
4552       };
4553     }
4554   return true;
4555
4556 error:
4557   ctables_summary_spec_set_uninit (sss);
4558   return false;
4559 }
4560
4561 static bool
4562 ctables_parse_pproperties (struct lexer *lexer, struct ctables *ct)
4563 {
4564   struct ctables_postcompute **pcs = NULL;
4565   size_t n_pcs = 0;
4566   size_t allocated_pcs = 0;
4567
4568   while (lex_match (lexer, T_AND))
4569     {
4570       if (!lex_force_id (lexer))
4571         goto error;
4572       struct ctables_postcompute *pc
4573         = ctables_find_postcompute (ct, lex_tokcstr (lexer));
4574       if (!pc)
4575         {
4576           msg (SE, _("Unknown computed category &%s."), lex_tokcstr (lexer));
4577           goto error;
4578         }
4579       lex_get (lexer);
4580
4581       if (n_pcs >= allocated_pcs)
4582         pcs = x2nrealloc (pcs, &allocated_pcs, sizeof *pcs);
4583       pcs[n_pcs++] = pc;
4584     }
4585
4586   while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD)
4587     {
4588       if (lex_match_id (lexer, "LABEL"))
4589         {
4590           lex_match (lexer, T_EQUALS);
4591           if (!lex_force_string (lexer))
4592             goto error;
4593
4594           for (size_t i = 0; i < n_pcs; i++)
4595             {
4596               free (pcs[i]->label);
4597               pcs[i]->label = ss_xstrdup (lex_tokss (lexer));
4598             }
4599
4600           lex_get (lexer);
4601         }
4602       else if (lex_match_id (lexer, "FORMAT"))
4603         {
4604           lex_match (lexer, T_EQUALS);
4605
4606           struct ctables_summary_spec_set sss;
4607           if (!ctables_parse_pproperties_format (lexer, &sss))
4608             goto error;
4609
4610           for (size_t i = 0; i < n_pcs; i++)
4611             {
4612               if (pcs[i]->specs)
4613                 ctables_summary_spec_set_uninit (pcs[i]->specs);
4614               else
4615                 pcs[i]->specs = xmalloc (sizeof *pcs[i]->specs);
4616               ctables_summary_spec_set_clone (pcs[i]->specs, &sss);
4617             }
4618           ctables_summary_spec_set_uninit (&sss);
4619         }
4620       else if (lex_match_id (lexer, "HIDESOURCECATS"))
4621         {
4622           lex_match (lexer, T_EQUALS);
4623           bool hide_source_cats;
4624           if (!parse_bool (lexer, &hide_source_cats))
4625             goto error;
4626           for (size_t i = 0; i < n_pcs; i++)
4627             pcs[i]->hide_source_cats = hide_source_cats;
4628         }
4629       else
4630         {
4631           lex_error_expecting (lexer, "LABEL", "FORMAT", "HIDESOURCECATS");
4632           goto error;
4633         }
4634     }
4635   free (pcs);
4636   return true;
4637
4638 error:
4639   free (pcs);
4640   return false;
4641 }
4642
4643 int
4644 cmd_ctables (struct lexer *lexer, struct dataset *ds)
4645 {
4646   size_t n_vars = dict_get_n_vars (dataset_dict (ds));
4647   enum ctables_vlabel *vlabels = xnmalloc (n_vars, sizeof *vlabels);
4648   enum settings_value_show tvars = settings_get_show_variables ();
4649   for (size_t i = 0; i < n_vars; i++)
4650     vlabels[i] = (enum ctables_vlabel) tvars;
4651
4652   struct pivot_table_look *look = pivot_table_look_unshare (
4653     pivot_table_look_ref (pivot_table_look_get_default ()));
4654   look->omit_empty = false;
4655
4656   struct ctables *ct = xmalloc (sizeof *ct);
4657   *ct = (struct ctables) {
4658     .dict = dataset_dict (ds),
4659     .look = look,
4660     .ctables_formats = FMT_SETTINGS_INIT,
4661     .vlabels = vlabels,
4662     .postcomputes = HMAP_INITIALIZER (ct->postcomputes),
4663   };
4664
4665   struct ctf
4666     {
4667       enum fmt_type type;
4668       const char *dot_string;
4669       const char *comma_string;
4670     };
4671   static const struct ctf ctfs[4] = {
4672     { CTEF_NEGPAREN, "(,,,)",   "(...)" },
4673     { CTEF_NEQUAL,   "-,N=,,",  "-.N=.." },
4674     { CTEF_PAREN,    "-,(,),",  "-.(.)." },
4675     { CTEF_PCTPAREN, "-,(,%),", "-.(.%)." },
4676   };
4677   bool is_dot = settings_get_fmt_settings ()->decimal == '.';
4678   for (size_t i = 0; i < 4; i++)
4679     {
4680       const char *s = is_dot ? ctfs[i].dot_string : ctfs[i].comma_string;
4681       fmt_settings_set_cc (&ct->ctables_formats, ctfs[i].type,
4682                            fmt_number_style_from_string (s));
4683     }
4684
4685   if (!lex_force_match (lexer, T_SLASH))
4686     goto error;
4687
4688   while (!lex_match_id (lexer, "TABLE"))
4689     {
4690       if (lex_match_id (lexer, "FORMAT"))
4691         {
4692           double widths[2] = { SYSMIS, SYSMIS };
4693           double units_per_inch = 72.0;
4694
4695           while (lex_token (lexer) != T_SLASH)
4696             {
4697               if (lex_match_id (lexer, "MINCOLWIDTH"))
4698                 {
4699                   if (!parse_col_width (lexer, "MINCOLWIDTH", &widths[0]))
4700                     goto error;
4701                 }
4702               else if (lex_match_id (lexer, "MAXCOLWIDTH"))
4703                 {
4704                   if (!parse_col_width (lexer, "MAXCOLWIDTH", &widths[1]))
4705                     goto error;
4706                 }
4707               else if (lex_match_id (lexer, "UNITS"))
4708                 {
4709                   lex_match (lexer, T_EQUALS);
4710                   if (lex_match_id (lexer, "POINTS"))
4711                     units_per_inch = 72.0;
4712                   else if (lex_match_id (lexer, "INCHES"))
4713                     units_per_inch = 1.0;
4714                   else if (lex_match_id (lexer, "CM"))
4715                     units_per_inch = 2.54;
4716                   else
4717                     {
4718                       lex_error_expecting (lexer, "POINTS", "INCHES", "CM");
4719                       goto error;
4720                     }
4721                 }
4722               else if (lex_match_id (lexer, "EMPTY"))
4723                 {
4724                   free (ct->zero);
4725                   ct->zero = NULL;
4726
4727                   lex_match (lexer, T_EQUALS);
4728                   if (lex_match_id (lexer, "ZERO"))
4729                     {
4730                       /* Nothing to do. */
4731                     }
4732                   else if (lex_match_id (lexer, "BLANK"))
4733                     ct->zero = xstrdup ("");
4734                   else if (lex_force_string (lexer))
4735                     {
4736                       ct->zero = ss_xstrdup (lex_tokss (lexer));
4737                       lex_get (lexer);
4738                     }
4739                   else
4740                     goto error;
4741                 }
4742               else if (lex_match_id (lexer, "MISSING"))
4743                 {
4744                   lex_match (lexer, T_EQUALS);
4745                   if (!lex_force_string (lexer))
4746                     goto error;
4747
4748                   free (ct->missing);
4749                   ct->missing = (strcmp (lex_tokcstr (lexer), ".")
4750                                  ? ss_xstrdup (lex_tokss (lexer))
4751                                  : NULL);
4752                   lex_get (lexer);
4753                 }
4754               else
4755                 {
4756                   lex_error_expecting (lexer, "MINCOLWIDTH", "MAXCOLWIDTH",
4757                                        "UNITS", "EMPTY", "MISSING");
4758                   goto error;
4759                 }
4760             }
4761
4762           if (widths[0] != SYSMIS && widths[1] != SYSMIS
4763               && widths[0] > widths[1])
4764             {
4765               msg (SE, _("MINCOLWIDTH must not be greater than MAXCOLWIDTH."));
4766               goto error;
4767             }
4768
4769           for (size_t i = 0; i < 2; i++)
4770             if (widths[i] != SYSMIS)
4771               {
4772                 int *wr = ct->look->width_ranges[TABLE_HORZ];
4773                 wr[i] = widths[i] / units_per_inch * 96.0;
4774                 if (wr[0] > wr[1])
4775                   wr[!i] = wr[i];
4776               }
4777         }
4778       else if (lex_match_id (lexer, "VLABELS"))
4779         {
4780           if (!lex_force_match_id (lexer, "VARIABLES"))
4781             goto error;
4782           lex_match (lexer, T_EQUALS);
4783
4784           struct variable **vars;
4785           size_t n_vars;
4786           if (!parse_variables (lexer, dataset_dict (ds), &vars, &n_vars,
4787                                 PV_NO_SCRATCH))
4788             goto error;
4789
4790           if (!lex_force_match_id (lexer, "DISPLAY"))
4791             {
4792               free (vars);
4793               goto error;
4794             }
4795           lex_match (lexer, T_EQUALS);
4796
4797           enum ctables_vlabel vlabel;
4798           if (lex_match_id (lexer, "DEFAULT"))
4799             vlabel = (enum ctables_vlabel) settings_get_show_variables ();
4800           else if (lex_match_id (lexer, "NAME"))
4801             vlabel = CTVL_NAME;
4802           else if (lex_match_id (lexer, "LABEL"))
4803             vlabel = CTVL_LABEL;
4804           else if (lex_match_id (lexer, "BOTH"))
4805             vlabel = CTVL_BOTH;
4806           else if (lex_match_id (lexer, "NONE"))
4807             vlabel = CTVL_NONE;
4808           else
4809             {
4810               lex_error_expecting (lexer, "DEFAULT", "NAME", "LABEL",
4811                                    "BOTH", "NONE");
4812               free (vars);
4813               goto error;
4814             }
4815
4816           for (size_t i = 0; i < n_vars; i++)
4817             ct->vlabels[var_get_dict_index (vars[i])] = vlabel;
4818           free (vars);
4819         }
4820       else if (lex_match_id (lexer, "MRSETS"))
4821         {
4822           if (!lex_force_match_id (lexer, "COUNTDUPLICATES"))
4823             goto error;
4824           lex_match (lexer, T_EQUALS);
4825           if (!parse_bool (lexer, &ct->mrsets_count_duplicates))
4826             goto error;
4827         }
4828       else if (lex_match_id (lexer, "SMISSING"))
4829         {
4830           if (lex_match_id (lexer, "VARIABLE"))
4831             ct->smissing_listwise = false;
4832           else if (lex_match_id (lexer, "LISTWISE"))
4833             ct->smissing_listwise = true;
4834           else
4835             {
4836               lex_error_expecting (lexer, "VARIABLE", "LISTWISE");
4837               goto error;
4838             }
4839         }
4840       else if (lex_match_id (lexer, "PCOMPUTE"))
4841         {
4842           if (!ctables_parse_pcompute (lexer, ct))
4843             goto error;
4844         }
4845       else if (lex_match_id (lexer, "PPROPERTIES"))
4846         {
4847           if (!ctables_parse_pproperties (lexer, ct))
4848             goto error;
4849         }
4850       else if (lex_match_id (lexer, "WEIGHT"))
4851         {
4852           if (!lex_force_match_id (lexer, "VARIABLE"))
4853             goto error;
4854           lex_match (lexer, T_EQUALS);
4855           ct->e_weight = parse_variable (lexer, dataset_dict (ds));
4856           if (!ct->e_weight)
4857             goto error;
4858         }
4859       else if (lex_match_id (lexer, " HIDESMALLCOUNTS"))
4860         {
4861           if (lex_match_id (lexer, "COUNT"))
4862             {
4863               lex_match (lexer, T_EQUALS);
4864               if (!lex_force_int_range (lexer, "HIDESMALLCOUNTS COUNT",
4865                                         2, INT_MAX))
4866                 goto error;
4867               ct->hide_threshold = lex_integer (lexer);
4868               lex_get (lexer);
4869             }
4870           else if (ct->hide_threshold == 0)
4871             ct->hide_threshold = 5;
4872         }
4873       else
4874         {
4875           lex_error_expecting (lexer, "FORMAT", "VLABELS", "MRSETS",
4876                                "SMISSING", "PCOMPUTE", "PPROPERTIES",
4877                                "WEIGHT", "HIDESMALLCOUNTS", "TABLE");
4878           goto error;
4879         }
4880
4881       if (!lex_force_match (lexer, T_SLASH))
4882         goto error;
4883     }
4884
4885   size_t allocated_tables = 0;
4886   do
4887     {
4888       if (ct->n_tables >= allocated_tables)
4889         ct->tables = x2nrealloc (ct->tables, &allocated_tables,
4890                                  sizeof *ct->tables);
4891
4892       struct ctables_category *cat = xmalloc (sizeof *cat);
4893       *cat = (struct ctables_category) {
4894         .type = CCT_VALUE,
4895         .include_missing = false,
4896         .sort_ascending = true,
4897       };
4898
4899       struct ctables_categories *c = xmalloc (sizeof *c);
4900       size_t n_vars = dict_get_n_vars (dataset_dict (ds));
4901       *c = (struct ctables_categories) {
4902         .n_refs = n_vars,
4903         .cats = cat,
4904         .n_cats = 1,
4905         .show_empty = true,
4906       };
4907
4908       struct ctables_categories **categories = xnmalloc (n_vars,
4909                                                          sizeof *categories);
4910       for (size_t i = 0; i < n_vars; i++)
4911         categories[i] = c;
4912
4913       struct ctables_table *t = xmalloc (sizeof *t);
4914       *t = (struct ctables_table) {
4915         .ctables = ct,
4916         .slabels_axis = PIVOT_AXIS_COLUMN,
4917         .slabels_visible = true,
4918         .clabels_values_map = HMAP_INITIALIZER (t->clabels_values_map),
4919         .label_axis = {
4920           [PIVOT_AXIS_ROW] = PIVOT_AXIS_ROW,
4921           [PIVOT_AXIS_COLUMN] = PIVOT_AXIS_COLUMN,
4922           [PIVOT_AXIS_LAYER] = PIVOT_AXIS_LAYER,
4923         },
4924         .clabels_from_axis = PIVOT_AXIS_LAYER,
4925         .categories = categories,
4926         .n_categories = n_vars,
4927         .cilevel = 95,
4928       };
4929       ct->tables[ct->n_tables++] = t;
4930
4931       lex_match (lexer, T_EQUALS);
4932       if (!ctables_axis_parse (lexer, dataset_dict (ds), ct, t, PIVOT_AXIS_ROW))
4933         goto error;
4934       if (lex_match (lexer, T_BY))
4935         {
4936           if (!ctables_axis_parse (lexer, dataset_dict (ds),
4937                                    ct, t, PIVOT_AXIS_COLUMN))
4938             goto error;
4939
4940           if (lex_match (lexer, T_BY))
4941             {
4942               if (!ctables_axis_parse (lexer, dataset_dict (ds),
4943                                        ct, t, PIVOT_AXIS_LAYER))
4944                 goto error;
4945             }
4946         }
4947
4948       if (!t->axes[PIVOT_AXIS_ROW] && !t->axes[PIVOT_AXIS_COLUMN]
4949           && !t->axes[PIVOT_AXIS_LAYER])
4950         {
4951           lex_error (lexer, _("At least one variable must be specified."));
4952           goto error;
4953         }
4954
4955       const struct ctables_axis *scales[PIVOT_N_AXES];
4956       size_t n_scales = 0;
4957       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
4958         {
4959           scales[a] = find_scale (t->axes[a]);
4960           if (scales[a])
4961             n_scales++;
4962         }
4963       if (n_scales > 1)
4964         {
4965           msg (SE, _("Scale variables may appear only on one axis."));
4966           if (scales[PIVOT_AXIS_ROW])
4967             msg_at (SN, scales[PIVOT_AXIS_ROW]->loc,
4968                     _("This scale variable appears on the rows axis."));
4969           if (scales[PIVOT_AXIS_COLUMN])
4970             msg_at (SN, scales[PIVOT_AXIS_COLUMN]->loc,
4971                     _("This scale variable appears on the columns axis."));
4972           if (scales[PIVOT_AXIS_LAYER])
4973             msg_at (SN, scales[PIVOT_AXIS_LAYER]->loc,
4974                     _("This scale variable appears on the layer axis."));
4975           goto error;
4976         }
4977
4978       const struct ctables_axis *summaries[PIVOT_N_AXES];
4979       size_t n_summaries = 0;
4980       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
4981         {
4982           summaries[a] = (scales[a]
4983                           ? scales[a]
4984                           : find_categorical_summary_spec (t->axes[a]));
4985           if (summaries[a])
4986             n_summaries++;
4987         }
4988       if (n_summaries > 1)
4989         {
4990           msg (SE, _("Summaries may appear only on one axis."));
4991           if (summaries[PIVOT_AXIS_ROW])
4992             msg_at (SN, summaries[PIVOT_AXIS_ROW]->loc,
4993                     _("This variable on the rows axis has a summary."));
4994           if (summaries[PIVOT_AXIS_COLUMN])
4995             msg_at (SN, summaries[PIVOT_AXIS_COLUMN]->loc,
4996                     _("This variable on the columns axis has a summary."));
4997           if (summaries[PIVOT_AXIS_LAYER])
4998             msg_at (SN, summaries[PIVOT_AXIS_LAYER]->loc,
4999                     _("This variable on the layers axis has a summary."));
5000           goto error;
5001         }
5002       for (enum pivot_axis_type a = 0; a < PIVOT_N_AXES; a++)
5003         if (n_summaries ? summaries[a] : t->axes[a])
5004           {
5005             t->summary_axis = a;
5006             break;
5007           }
5008
5009       if (lex_token (lexer) == T_ENDCMD)
5010         {
5011           if (!ctables_prepare_table (t))
5012             goto error;
5013           break;
5014         }
5015       if (!lex_force_match (lexer, T_SLASH))
5016         break;
5017
5018       while (!lex_match_id (lexer, "TABLE") && lex_token (lexer) != T_ENDCMD)
5019         {
5020           if (lex_match_id (lexer, "SLABELS"))
5021             {
5022               while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD)
5023                 {
5024                   if (lex_match_id (lexer, "POSITION"))
5025                     {
5026                       lex_match (lexer, T_EQUALS);
5027                       if (lex_match_id (lexer, "COLUMN"))
5028                         t->slabels_axis = PIVOT_AXIS_COLUMN;
5029                       else if (lex_match_id (lexer, "ROW"))
5030                         t->slabels_axis = PIVOT_AXIS_ROW;
5031                       else if (lex_match_id (lexer, "LAYER"))
5032                         t->slabels_axis = PIVOT_AXIS_LAYER;
5033                       else
5034                         {
5035                           lex_error_expecting (lexer, "COLUMN", "ROW", "LAYER");
5036                           goto error;
5037                         }
5038                     }
5039                   else if (lex_match_id (lexer, "VISIBLE"))
5040                     {
5041                       lex_match (lexer, T_EQUALS);
5042                       if (!parse_bool (lexer, &t->slabels_visible))
5043                         goto error;
5044                     }
5045                   else
5046                     {
5047                       lex_error_expecting (lexer, "POSITION", "VISIBLE");
5048                       goto error;
5049                     }
5050                 }
5051             }
5052           else if (lex_match_id (lexer, "CLABELS"))
5053             {
5054               while (lex_token (lexer) != T_SLASH && lex_token (lexer) != T_ENDCMD)
5055                 {
5056                   if (lex_match_id (lexer, "AUTO"))
5057                     {
5058                       t->label_axis[PIVOT_AXIS_ROW] = PIVOT_AXIS_ROW;
5059                       t->label_axis[PIVOT_AXIS_COLUMN] = PIVOT_AXIS_COLUMN;
5060                     }
5061                   else if (lex_match_id (lexer, "ROWLABELS"))
5062                     {
5063                       lex_match (lexer, T_EQUALS);
5064                       if (lex_match_id (lexer, "OPPOSITE"))
5065                         t->label_axis[PIVOT_AXIS_ROW] = PIVOT_AXIS_COLUMN;
5066                       else if (lex_match_id (lexer, "LAYER"))
5067                         t->label_axis[PIVOT_AXIS_ROW] = PIVOT_AXIS_LAYER;
5068                       else
5069                         {
5070                           lex_error_expecting (lexer, "OPPOSITE", "LAYER");
5071                           goto error;
5072                         }
5073                     }
5074                   else if (lex_match_id (lexer, "COLLABELS"))
5075                     {
5076                       lex_match (lexer, T_EQUALS);
5077                       if (lex_match_id (lexer, "OPPOSITE"))
5078                         t->label_axis[PIVOT_AXIS_COLUMN] = PIVOT_AXIS_ROW;
5079                       else if (lex_match_id (lexer, "LAYER"))
5080                         t->label_axis[PIVOT_AXIS_COLUMN] = PIVOT_AXIS_LAYER;
5081                       else
5082                         {
5083                           lex_error_expecting (lexer, "OPPOSITE", "LAYER");
5084                           goto error;
5085                         }
5086                     }
5087                   else
5088                     {
5089                       lex_error_expecting (lexer, "AUTO", "ROWLABELS",
5090                                            "COLLABELS");
5091                       goto error;
5092                     }
5093                 }
5094             }
5095           else if (lex_match_id (lexer, "CRITERIA"))
5096             {
5097               if (!lex_force_match_id (lexer, "CILEVEL"))
5098                 goto error;
5099               lex_match (lexer, T_EQUALS);
5100
5101               if (!lex_force_num_range_halfopen (lexer, "CILEVEL", 0, 100))
5102                 goto error;
5103               t->cilevel = lex_number (lexer);
5104               lex_get (lexer);
5105             }
5106           else if (lex_match_id (lexer, "CATEGORIES"))
5107             {
5108               if (!ctables_table_parse_categories (lexer, dataset_dict (ds),
5109                                                    ct, t))
5110                 goto error;
5111             }
5112           else if (lex_match_id (lexer, "TITLES"))
5113             {
5114               do
5115                 {
5116                   char **textp;
5117                   if (lex_match_id (lexer, "CAPTION"))
5118                     textp = &t->caption;
5119                   else if (lex_match_id (lexer, "CORNER"))
5120                     textp = &t->corner;
5121                   else if (lex_match_id (lexer, "TITLE"))
5122                     textp = &t->title;
5123                   else
5124                     {
5125                       lex_error_expecting (lexer, "CAPTION", "CORNER", "TITLE");
5126                       goto error;
5127                     }
5128                   lex_match (lexer, T_EQUALS);
5129
5130                   struct string s = DS_EMPTY_INITIALIZER;
5131                   while (lex_is_string (lexer))
5132                     {
5133                       if (!ds_is_empty (&s))
5134                         ds_put_byte (&s, ' ');
5135                       ds_put_substring (&s, lex_tokss (lexer));
5136                       lex_get (lexer);
5137                     }
5138                   free (*textp);
5139                   *textp = ds_steal_cstr (&s);
5140                 }
5141               while (lex_token (lexer) != T_SLASH
5142                      && lex_token (lexer) != T_ENDCMD);
5143             }
5144           else if (lex_match_id (lexer, "SIGTEST"))
5145             {
5146               if (!t->chisq)
5147                 {
5148                   t->chisq = xmalloc (sizeof *t->chisq);
5149                   *t->chisq = (struct ctables_chisq) {
5150                     .alpha = .05,
5151                     .include_mrsets = true,
5152                     .all_visible = true,
5153                   };
5154                 }
5155
5156               do
5157                 {
5158                   if (lex_match_id (lexer, "TYPE"))
5159                     {
5160                       lex_match (lexer, T_EQUALS);
5161                       if (!lex_force_match_id (lexer, "CHISQUARE"))
5162                         goto error;
5163                     }
5164                   else if (lex_match_id (lexer, "ALPHA"))
5165                     {
5166                       lex_match (lexer, T_EQUALS);
5167                       if (!lex_force_num_range_halfopen (lexer, "ALPHA", 0, 1))
5168                         goto error;
5169                       t->chisq->alpha = lex_number (lexer);
5170                       lex_get (lexer);
5171                     }
5172                   else if (lex_match_id (lexer, "INCLUDEMRSETS"))
5173                     {
5174                       lex_match (lexer, T_EQUALS);
5175                       if (parse_bool (lexer, &t->chisq->include_mrsets))
5176                         goto error;
5177                     }
5178                   else if (lex_match_id (lexer, "CATEGORIES"))
5179                     {
5180                       lex_match (lexer, T_EQUALS);
5181                       if (lex_match_id (lexer, "ALLVISIBLE"))
5182                         t->chisq->all_visible = true;
5183                       else if (lex_match_id (lexer, "SUBTOTALS"))
5184                         t->chisq->all_visible = false;
5185                       else
5186                         {
5187                           lex_error_expecting (lexer,
5188                                                "ALLVISIBLE", "SUBTOTALS");
5189                           goto error;
5190                         }
5191                     }
5192                   else
5193                     {
5194                       lex_error_expecting (lexer, "TYPE", "ALPHA",
5195                                            "INCLUDEMRSETS", "CATEGORIES");
5196                       goto error;
5197                     }
5198                 }
5199               while (lex_token (lexer) != T_SLASH
5200                      && lex_token (lexer) != T_ENDCMD);
5201             }
5202           else if (lex_match_id (lexer, "COMPARETEST"))
5203             {
5204               if (!t->pairwise)
5205                 {
5206                   t->pairwise = xmalloc (sizeof *t->pairwise);
5207                   *t->pairwise = (struct ctables_pairwise) {
5208                     .type = PROP,
5209                     .alpha = { .05, .05 },
5210                     .adjust = BONFERRONI,
5211                     .include_mrsets = true,
5212                     .meansvariance_allcats = true,
5213                     .all_visible = true,
5214                     .merge = false,
5215                     .apa_style = true,
5216                     .show_sig = false,
5217                   };
5218                 }
5219
5220               do
5221                 {
5222                   if (lex_match_id (lexer, "TYPE"))
5223                     {
5224                       lex_match (lexer, T_EQUALS);
5225                       if (lex_match_id (lexer, "PROP"))
5226                         t->pairwise->type = PROP;
5227                       else if (lex_match_id (lexer, "MEAN"))
5228                         t->pairwise->type = MEAN;
5229                       else
5230                         {
5231                           lex_error_expecting (lexer, "PROP", "MEAN");
5232                           goto error;
5233                         }
5234                     }
5235                   else if (lex_match_id (lexer, "ALPHA"))
5236                     {
5237                       lex_match (lexer, T_EQUALS);
5238
5239                       if (!lex_force_num_range_open (lexer, "ALPHA", 0, 1))
5240                         goto error;
5241                       double a0 = lex_number (lexer);
5242                       lex_get (lexer);
5243
5244                       lex_match (lexer, T_COMMA);
5245                       if (lex_is_number (lexer))
5246                         {
5247                           if (!lex_force_num_range_open (lexer, "ALPHA", 0, 1))
5248                             goto error;
5249                           double a1 = lex_number (lexer);
5250                           lex_get (lexer);
5251
5252                           t->pairwise->alpha[0] = MIN (a0, a1);
5253                           t->pairwise->alpha[1] = MAX (a0, a1);
5254                         }
5255                       else
5256                         t->pairwise->alpha[0] = t->pairwise->alpha[1] = a0;
5257                     }
5258                   else if (lex_match_id (lexer, "ADJUST"))
5259                     {
5260                       lex_match (lexer, T_EQUALS);
5261                       if (lex_match_id (lexer, "BONFERRONI"))
5262                         t->pairwise->adjust = BONFERRONI;
5263                       else if (lex_match_id (lexer, "BH"))
5264                         t->pairwise->adjust = BH;
5265                       else if (lex_match_id (lexer, "NONE"))
5266                         t->pairwise->adjust = 0;
5267                       else
5268                         {
5269                           lex_error_expecting (lexer, "BONFERRONI", "BH",
5270                                                "NONE");
5271                           goto error;
5272                         }
5273                     }
5274                   else if (lex_match_id (lexer, "INCLUDEMRSETS"))
5275                     {
5276                       lex_match (lexer, T_EQUALS);
5277                       if (!parse_bool (lexer, &t->pairwise->include_mrsets))
5278                         goto error;
5279                     }
5280                   else if (lex_match_id (lexer, "MEANSVARIANCE"))
5281                     {
5282                       lex_match (lexer, T_EQUALS);
5283                       if (lex_match_id (lexer, "ALLCATS"))
5284                         t->pairwise->meansvariance_allcats = true;
5285                       else if (lex_match_id (lexer, "TESTEDCATS"))
5286                         t->pairwise->meansvariance_allcats = false;
5287                       else
5288                         {
5289                           lex_error_expecting (lexer, "ALLCATS", "TESTEDCATS");
5290                           goto error;
5291                         }
5292                     }
5293                   else if (lex_match_id (lexer, "CATEGORIES"))
5294                     {
5295                       lex_match (lexer, T_EQUALS);
5296                       if (lex_match_id (lexer, "ALLVISIBLE"))
5297                         t->pairwise->all_visible = true;
5298                       else if (lex_match_id (lexer, "SUBTOTALS"))
5299                         t->pairwise->all_visible = false;
5300                       else
5301                         {
5302                           lex_error_expecting (lexer, "ALLVISIBLE",
5303                                                "SUBTOTALS");
5304                           goto error;
5305                         }
5306                     }
5307                   else if (lex_match_id (lexer, "MERGE"))
5308                     {
5309                       lex_match (lexer, T_EQUALS);
5310                       if (!parse_bool (lexer, &t->pairwise->merge))
5311                         goto error;
5312                     }
5313                   else if (lex_match_id (lexer, "STYLE"))
5314                     {
5315                       lex_match (lexer, T_EQUALS);
5316                       if (lex_match_id (lexer, "APA"))
5317                         t->pairwise->apa_style = true;
5318                       else if (lex_match_id (lexer, "SIMPLE"))
5319                         t->pairwise->apa_style = false;
5320                       else
5321                         {
5322                           lex_error_expecting (lexer, "APA", "SIMPLE");
5323                           goto error;
5324                         }
5325                     }
5326                   else if (lex_match_id (lexer, "SHOWSIG"))
5327                     {
5328                       lex_match (lexer, T_EQUALS);
5329                       if (!parse_bool (lexer, &t->pairwise->show_sig))
5330                         goto error;
5331                     }
5332                   else
5333                     {
5334                       lex_error_expecting (lexer, "TYPE", "ALPHA", "ADJUST",
5335                                            "INCLUDEMRSETS", "MEANSVARIANCE",
5336                                            "CATEGORIES", "MERGE", "STYLE",
5337                                            "SHOWSIG");
5338                       goto error;
5339                     }
5340                 }
5341               while (lex_token (lexer) != T_SLASH
5342                      && lex_token (lexer) != T_ENDCMD);
5343             }
5344           else
5345             {
5346               lex_error_expecting (lexer, "TABLE", "SLABELS", "CLABELS",
5347                                    "CRITERIA", "CATEGORIES", "TITLES",
5348                                    "SIGTEST", "COMPARETEST");
5349               goto error;
5350             }
5351
5352           if (!lex_match (lexer, T_SLASH))
5353             break;
5354         }
5355
5356       if (t->label_axis[PIVOT_AXIS_ROW] != PIVOT_AXIS_ROW
5357           && t->label_axis[PIVOT_AXIS_COLUMN] != PIVOT_AXIS_COLUMN)
5358         {
5359           msg (SE, _("ROWLABELS and COLLABELS may not both be specified."));
5360           goto error;
5361         }
5362
5363       if (!ctables_prepare_table (t))
5364         goto error;
5365     }
5366   while (lex_token (lexer) != T_ENDCMD);
5367
5368   bool ok = ctables_execute (ds, ct);
5369   ctables_destroy (ct);
5370   return ok ? CMD_SUCCESS : CMD_FAILURE;
5371
5372 error:
5373   ctables_destroy (ct);
5374   return CMD_FAILURE;
5375 }
5376