b91c038ac9080f6404cddbfe08344c184394fd57
[pspp] / src / language / lexer / variable-parser.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012 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 "language/lexer/variable-parser.h"
20
21 #include <ctype.h>
22 #include <limits.h>
23 #include <stdbool.h>
24 #include <stdlib.h>
25
26 #include "data/dataset.h"
27 #include "data/dictionary.h"
28 #include "data/variable.h"
29 #include "language/lexer/lexer.h"
30 #include "libpspp/assertion.h"
31 #include "libpspp/cast.h"
32 #include "libpspp/hash-functions.h"
33 #include "libpspp/i18n.h"
34 #include "libpspp/hmapx.h"
35 #include "libpspp/message.h"
36 #include "libpspp/misc.h"
37 #include "libpspp/pool.h"
38 #include "libpspp/str.h"
39 #include "libpspp/stringi-set.h"
40
41 #include "math/interaction.h"
42
43 #include "gl/c-ctype.h"
44 #include "gl/xalloc.h"
45
46 #include "gettext.h"
47 #define _(msgid) gettext (msgid)
48
49 static struct variable * var_set_get_var (const struct var_set *, size_t );
50
51 static struct variable *var_set_lookup_var (const struct var_set *,
52                                             const char *);
53
54 static bool var_set_lookup_var_idx (const struct var_set *, const char *,
55                                     size_t *);
56
57
58
59 /* Parses a name as a variable within VS.  Sets *IDX to the
60    variable's index and returns true if successful.  On failure
61    emits an error message and returns false. */
62 static bool
63 parse_vs_variable_idx (struct lexer *lexer, const struct var_set *vs,
64                 size_t *idx)
65 {
66   assert (idx != NULL);
67
68   if (lex_token (lexer) != T_ID)
69     {
70       lex_error (lexer, _("expecting variable name"));
71       return false;
72     }
73   else if (var_set_lookup_var_idx (vs, lex_tokcstr (lexer), idx))
74     {
75       lex_get (lexer);
76       return true;
77     }
78   else
79     {
80       msg (SE, _("%s is not a variable name."), lex_tokcstr (lexer));
81       return false;
82     }
83 }
84
85 /* Parses a name as a variable within VS and returns the variable
86    if successful.  On failure emits an error message and returns
87    a null pointer. */
88 static struct variable *
89 parse_vs_variable (struct lexer *lexer, const struct var_set *vs)
90 {
91   size_t idx;
92   return parse_vs_variable_idx (lexer, vs, &idx) ? var_set_get_var (vs, idx) : NULL;
93 }
94
95 /* Parses a variable name in dictionary D and returns the
96    variable if successful.  On failure emits an error message and
97    returns a null pointer. */
98 struct variable *
99 parse_variable (struct lexer *lexer, const struct dictionary *d)
100 {
101   struct var_set *vs = var_set_create_from_dict (d);
102   struct variable *var = parse_vs_variable (lexer, vs);
103   var_set_destroy (vs);
104   return var;
105 }
106
107 /* Parses a set of variables from dictionary D given options
108    OPTS.  Resulting list of variables stored in *VAR and the
109    number of variables into *CNT.  Returns true only if
110    successful. */
111 bool
112 parse_variables (struct lexer *lexer, const struct dictionary *d,
113                         struct variable ***var,
114                         size_t *cnt, int opts)
115 {
116   struct var_set *vs;
117   int success;
118
119   assert (d != NULL);
120   assert (var != NULL);
121   assert (cnt != NULL);
122
123   vs = var_set_create_from_dict (d);
124   success = parse_var_set_vars (lexer, vs, var, cnt, opts);
125   var_set_destroy (vs);
126   return success;
127 }
128
129 /* Parses a set of variables from dictionary D given options
130    OPTS.  Resulting list of variables stored in *VARS and the
131    number of variables into *VAR_CNT.  Returns true only if
132    successful.  Same behavior as parse_variables, except that all
133    allocations are taken from the given POOL. */
134 bool
135 parse_variables_pool (struct lexer *lexer, struct pool *pool,
136                 const struct dictionary *dict,
137                 struct variable ***vars, size_t *var_cnt, int opts)
138 {
139   int retval;
140
141   /* PV_APPEND is unsafe because parse_variables would free the
142      existing names on failure, but those names are presumably
143      already in the pool, which would attempt to re-free it
144      later. */
145   assert (!(opts & PV_APPEND));
146
147   retval = parse_variables (lexer, dict, vars, var_cnt, opts);
148   if (retval)
149     pool_register (pool, free, *vars);
150   return retval;
151 }
152
153 /* Parses a variable name from VS.  If successful, sets *IDX to
154    the variable's index in VS, *CLASS to the variable's
155    dictionary class, and returns true.  Returns false on
156    failure. */
157 static bool
158 parse_var_idx_class (struct lexer *lexer, const struct var_set *vs,
159                         size_t *idx,
160                         enum dict_class *class)
161 {
162   if (!parse_vs_variable_idx (lexer, vs, idx))
163     return false;
164
165   *class = dict_class_from_id (var_get_name (var_set_get_var (vs, *idx)));
166   return true;
167 }
168
169 /* Add the variable from VS with index IDX to the list of
170    variables V that has *NV elements and room for *MV.
171    Uses and updates INCLUDED to avoid duplicates if indicated by
172    PV_OPTS, which also affects what variables are allowed in
173    appropriate ways. */
174 static void
175 add_variable (struct variable ***v, size_t *nv, size_t *mv,
176               char *included, int pv_opts,
177               const struct var_set *vs, size_t idx)
178 {
179   struct variable *add = var_set_get_var (vs, idx);
180   const char *add_name = var_get_name (add);
181
182   if ((pv_opts & PV_NUMERIC) && !var_is_numeric (add))
183     msg (SW, _("%s is not a numeric variable.  It will not be "
184                "included in the variable list."), add_name);
185   else if ((pv_opts & PV_STRING) && !var_is_alpha (add))
186     msg (SE, _("%s is not a string variable.  It will not be "
187                "included in the variable list."), add_name);
188   else if ((pv_opts & PV_NO_SCRATCH)
189            && dict_class_from_id (add_name) == DC_SCRATCH)
190     msg (SE, _("Scratch variables (such as %s) are not allowed "
191                "here."), add_name);
192   else if ((pv_opts & (PV_SAME_TYPE | PV_SAME_WIDTH)) && *nv
193            && var_get_type (add) != var_get_type ((*v)[0]))
194     msg (SE, _("%s and %s are not the same type.  All variables in "
195                "this variable list must be of the same type.  %s "
196                "will be omitted from the list."),
197          var_get_name ((*v)[0]), add_name, add_name);
198   else if ((pv_opts & PV_SAME_WIDTH) && *nv
199            && var_get_width (add) != var_get_width ((*v)[0]))
200     msg (SE, _("%s and %s are string variables with different widths.  "
201                "All variables in this variable list must have the "
202                "same width.  %s will be omitted from the list."),
203          var_get_name ((*v)[0]), add_name, add_name);
204   else if ((pv_opts & PV_NO_DUPLICATE) && included && included[idx])
205     msg (SE, _("Variable %s appears twice in variable list."), add_name);
206   else if ((pv_opts & PV_DUPLICATE) || !included || !included[idx])
207     {
208       if (*nv >= *mv)
209         {
210           *mv = 2 * (*nv + 1);
211           *v = xnrealloc (*v, *mv, sizeof **v);
212         }
213       (*v)[(*nv)++] = add;
214       if (included != NULL)
215         included[idx] = 1;
216     }
217 }
218
219 /* Adds the variables in VS with indexes FIRST_IDX through
220    LAST_IDX, inclusive, to the list of variables V that has *NV
221    elements and room for *MV.  Uses and updates INCLUDED to avoid
222    duplicates if indicated by PV_OPTS, which also affects what
223    variables are allowed in appropriate ways. */
224 static void
225 add_variables (struct variable ***v, size_t *nv, size_t *mv, char *included,
226                int pv_opts,
227                const struct var_set *vs, int first_idx, int last_idx,
228                enum dict_class class)
229 {
230   size_t i;
231
232   for (i = first_idx; i <= last_idx; i++)
233     if (dict_class_from_id (var_get_name (var_set_get_var (vs, i))) == class)
234       add_variable (v, nv, mv, included, pv_opts, vs, i);
235 }
236
237 /* Note that if parse_variables() returns false, *v is free()'d.
238    Conversely, if parse_variables() returns true, then *nv is
239    nonzero and *v is non-NULL. */
240 bool
241 parse_var_set_vars (struct lexer *lexer, const struct var_set *vs,
242                     struct variable ***v, size_t *nv,
243                     int pv_opts)
244 {
245   size_t mv;
246   char *included;
247
248   assert (vs != NULL);
249   assert (v != NULL);
250   assert (nv != NULL);
251
252   /* At most one of PV_NUMERIC, PV_STRING, PV_SAME_TYPE,
253      PV_SAME_WIDTH may be specified. */
254   assert (((pv_opts & PV_NUMERIC) != 0)
255           + ((pv_opts & PV_STRING) != 0)
256           + ((pv_opts & PV_SAME_TYPE) != 0)
257           + ((pv_opts & PV_SAME_WIDTH) != 0) <= 1);
258
259   /* PV_DUPLICATE and PV_NO_DUPLICATE are incompatible. */
260   assert (!(pv_opts & PV_DUPLICATE) || !(pv_opts & PV_NO_DUPLICATE));
261
262   if (!(pv_opts & PV_APPEND))
263     {
264       *v = NULL;
265       *nv = 0;
266       mv = 0;
267     }
268   else
269     mv = *nv;
270
271   if (!(pv_opts & PV_DUPLICATE))
272     {
273       size_t i;
274
275       included = xcalloc (var_set_get_cnt (vs), sizeof *included);
276       for (i = 0; i < *nv; i++)
277         {
278           size_t index;
279           if (!var_set_lookup_var_idx (vs, var_get_name ((*v)[i]), &index))
280             NOT_REACHED ();
281           included[index] = 1;
282         }
283     }
284   else
285     included = NULL;
286
287   do
288     {
289       if (lex_match (lexer, T_ALL))
290         add_variables (v, nv, &mv, included, pv_opts,
291                        vs, 0, var_set_get_cnt (vs) - 1, DC_ORDINARY);
292       else
293         {
294           enum dict_class class;
295           size_t first_idx;
296
297           if (!parse_var_idx_class (lexer, vs, &first_idx, &class))
298             goto fail;
299
300           if (!lex_match (lexer, T_TO))
301             add_variable (v, nv, &mv, included, pv_opts, vs, first_idx);
302           else
303             {
304               size_t last_idx;
305               enum dict_class last_class;
306               struct variable *first_var, *last_var;
307
308               if (!parse_var_idx_class (lexer, vs, &last_idx, &last_class))
309                 goto fail;
310
311               first_var = var_set_get_var (vs, first_idx);
312               last_var = var_set_get_var (vs, last_idx);
313
314               if (last_idx < first_idx)
315                 {
316                   const char *first_name = var_get_name (first_var);
317                   const char *last_name = var_get_name (last_var);
318                   msg (SE, _("%s TO %s is not valid syntax since %s "
319                              "precedes %s in the dictionary."),
320                        first_name, last_name, first_name, last_name);
321                   goto fail;
322                 }
323
324               if (class != last_class)
325                 {
326                   msg (SE, _("When using the TO keyword to specify several "
327                              "variables, both variables must be from "
328                              "the same variable dictionaries, of either "
329                              "ordinary, scratch, or system variables.  "
330                              "%s is a %s variable, whereas %s is %s."),
331                        var_get_name (first_var), dict_class_to_name (class),
332                        var_get_name (last_var),
333                        dict_class_to_name (last_class));
334                   goto fail;
335                 }
336
337               add_variables (v, nv, &mv, included, pv_opts,
338                              vs, first_idx, last_idx, class);
339             }
340         }
341
342       if (pv_opts & PV_SINGLE)
343         break;
344       lex_match (lexer, T_COMMA);
345     }
346   while (lex_token (lexer) == T_ALL
347          || (lex_token (lexer) == T_ID && var_set_lookup_var (vs, lex_tokcstr (lexer)) != NULL));
348
349   if (*nv == 0)
350     goto fail;
351
352   free (included);
353   return 1;
354
355 fail:
356   free (included);
357   free (*v);
358   *v = NULL;
359   *nv = 0;
360   return 0;
361 }
362
363 /* Attempts to break UTF-8 encoded NAME into a root (whose contents are
364    arbitrary except that it does not end in a digit) followed by an integer
365    numeric suffix.  On success, stores the value of the suffix into *NUMBERP,
366    the number of digits in the suffix into *N_DIGITSP, and returns the number
367    of bytes in the root.  On failure, returns 0. */
368 static int
369 extract_numeric_suffix (const char *name,
370                         unsigned long int *numberp, int *n_digitsp)
371 {
372   size_t root_len, n_digits;
373   size_t i;
374
375   /* Count length of root. */
376   root_len = 1;                 /* Valid identifier never starts with digit. */
377   for (i = 1; name[i] != '\0'; i++)
378     if (!c_isdigit (name[i]))
379       root_len = i + 1;
380   n_digits = i - root_len;
381
382   if (n_digits == 0)
383     {
384       msg (SE, _("`%s' cannot be used with TO because it does not end in "
385                  "a digit."), name);
386       return 0;
387     }
388
389   *numberp = strtoull (name + root_len, NULL, 10);
390   if (*numberp == ULONG_MAX)
391     {
392       msg (SE, _("Numeric suffix on `%s' is larger than supported with TO."),
393            name);
394       return 0;
395     }
396   *n_digitsp = n_digits;
397   return root_len;
398 }
399
400 static bool
401 add_var_name (char *name,
402               char ***names, size_t *n_vars, size_t *allocated_vars,
403               struct stringi_set *set, int pv_opts)
404 {
405   if (pv_opts & PV_NO_DUPLICATE && !stringi_set_insert (set, name))
406     {
407       msg (SE, _("Variable %s appears twice in variable list."),
408            name);
409       return false;
410     }
411
412   if (*n_vars >= *allocated_vars)
413     *names = x2nrealloc (*names, allocated_vars, sizeof **names);
414   (*names)[(*n_vars)++] = name;
415   return true;
416 }
417
418 /* Parses a list of variable names according to the DATA LIST version
419    of the TO convention.  */
420 bool
421 parse_DATA_LIST_vars (struct lexer *lexer, const struct dictionary *dict,
422                       char ***namesp, size_t *n_varsp, int pv_opts)
423 {
424   char **names;
425   size_t n_vars;
426   size_t allocated_vars;
427
428   struct stringi_set set;
429
430   char *name1 = NULL;
431
432   bool ok = false;
433
434   assert ((pv_opts & ~(PV_APPEND | PV_SINGLE
435                        | PV_NO_SCRATCH | PV_NO_DUPLICATE)) == 0);
436   stringi_set_init (&set);
437
438   if (pv_opts & PV_APPEND)
439     {
440       n_vars = allocated_vars = *n_varsp;
441       names = *namesp;
442
443       if (pv_opts & PV_NO_DUPLICATE)
444         {
445           size_t i;
446
447           for (i = 0; i < n_vars; i++)
448             stringi_set_insert (&set, names[i]);
449         }
450     }
451   else
452     {
453       n_vars = allocated_vars = 0;
454       names = NULL;
455     }
456
457   do
458     {
459       if (lex_token (lexer) != T_ID
460           || !dict_id_is_valid (dict, lex_tokcstr (lexer), true))
461         {
462           lex_error (lexer, "expecting variable name");
463           goto exit;
464         }
465       if (dict_class_from_id (lex_tokcstr (lexer)) == DC_SCRATCH
466           && (pv_opts & PV_NO_SCRATCH))
467         {
468           msg (SE, _("Scratch variables not allowed here."));
469           goto exit;
470         }
471       name1 = xstrdup (lex_tokcstr (lexer));
472       lex_get (lexer);
473       if (lex_token (lexer) == T_TO)
474         {
475           char *name2 = NULL;
476           unsigned long int num1, num2;
477           int n_digits1, n_digits2;
478           int root_len1, root_len2;
479           unsigned long int number;
480
481           lex_get (lexer);
482           if (lex_token (lexer) != T_ID
483               || !dict_id_is_valid (dict, lex_tokcstr (lexer), true))
484             {
485               lex_error (lexer, "expecting variable name");
486               goto exit;
487             }
488           name2 = xstrdup (lex_tokcstr (lexer));
489           lex_get (lexer);
490
491           root_len1 = extract_numeric_suffix (name1, &num1, &n_digits1);
492           if (root_len1 == 0)
493             goto exit;
494
495           root_len2 = extract_numeric_suffix (name2, &num2, &n_digits2);
496           if (root_len2 == 0)
497             goto exit;
498
499           if (root_len1 != root_len2 || memcasecmp (name1, name2, root_len1))
500             {
501               msg (SE, _("Prefixes don't match in use of TO convention."));
502               goto exit;
503             }
504           if (num1 > num2)
505             {
506               msg (SE, _("Bad bounds in use of TO convention."));
507               goto exit;
508             }
509
510           for (number = num1; number <= num2; number++)
511             {
512               char *name = xasprintf ("%.*s%0*lu",
513                                       root_len1, name1,
514                                       n_digits1, number);
515               if (!add_var_name (name, &names, &n_vars, &allocated_vars,
516                                  &set, pv_opts))
517                 {
518                   free (name);
519                   goto exit;
520                 }
521             }
522
523           free (name1);
524           name1 = NULL;
525           free (name2);
526         }
527       else
528         {
529           if (!add_var_name (name1, &names, &n_vars, &allocated_vars,
530                              &set, pv_opts))
531             goto exit;
532           name1 = NULL;
533         }
534
535       lex_match (lexer, T_COMMA);
536
537       if (pv_opts & PV_SINGLE)
538         break;
539     }
540   while (lex_token (lexer) == T_ID);
541   ok = true;
542
543 exit:
544   stringi_set_destroy (&set);
545   if (ok)
546     {
547       *namesp = names;
548       *n_varsp = n_vars;
549     }
550   else
551     {
552       int i;
553       for (i = 0; i < n_vars; i++)
554         free (names[i]);
555       free (names);
556       *namesp = NULL;
557       *n_varsp = 0;
558
559       free (name1);
560     }
561   return ok;
562 }
563
564 /* Registers each of the NAMES[0...NNAMES - 1] in POOL, as well
565    as NAMES itself. */
566 static void
567 register_vars_pool (struct pool *pool, char **names, size_t nnames)
568 {
569   size_t i;
570
571   for (i = 0; i < nnames; i++)
572     pool_register (pool, free, names[i]);
573   pool_register (pool, free, names);
574 }
575
576 /* Parses a list of variable names according to the DATA LIST
577    version of the TO convention.  Same args as
578    parse_DATA_LIST_vars(), except that all allocations are taken
579    from the given POOL. */
580 bool
581 parse_DATA_LIST_vars_pool (struct lexer *lexer, const struct dictionary *dict,
582                            struct pool *pool,
583                            char ***names, size_t *nnames, int pv_opts)
584 {
585   int retval;
586
587   /* PV_APPEND is unsafe because parse_DATA_LIST_vars would free
588      the existing names on failure, but those names are
589      presumably already in the pool, which would attempt to
590      re-free it later. */
591   assert (!(pv_opts & PV_APPEND));
592
593   retval = parse_DATA_LIST_vars (lexer, dict, names, nnames, pv_opts);
594   if (retval)
595     register_vars_pool (pool, *names, *nnames);
596   return retval;
597 }
598
599 /* Parses a list of variables where some of the variables may be
600    existing and the rest are to be created.  Same args as
601    parse_DATA_LIST_vars(). */
602 bool
603 parse_mixed_vars (struct lexer *lexer, const struct dictionary *dict,
604                   char ***names, size_t *nnames, int pv_opts)
605 {
606   size_t i;
607
608   assert (names != NULL);
609   assert (nnames != NULL);
610
611   if (!(pv_opts & PV_APPEND))
612     {
613       *names = NULL;
614       *nnames = 0;
615     }
616   while (lex_token (lexer) == T_ID || lex_token (lexer) == T_ALL)
617     {
618       if (lex_token (lexer) == T_ALL || dict_lookup_var (dict, lex_tokcstr (lexer)) != NULL)
619         {
620           struct variable **v;
621           size_t nv;
622
623           if (!parse_variables (lexer, dict, &v, &nv, pv_opts))
624             goto fail;
625           *names = xnrealloc (*names, *nnames + nv, sizeof **names);
626           for (i = 0; i < nv; i++)
627             (*names)[*nnames + i] = xstrdup (var_get_name (v[i]));
628           free (v);
629           *nnames += nv;
630         }
631       else if (!parse_DATA_LIST_vars (lexer, dict, names, nnames, PV_APPEND | pv_opts))
632         goto fail;
633     }
634   if (*nnames == 0)
635     goto fail;
636
637   return true;
638
639 fail:
640   for (i = 0; i < *nnames; i++)
641     free ((*names)[i]);
642   free (*names);
643   *names = NULL;
644   *nnames = 0;
645   return false;
646 }
647
648 /* Parses a list of variables where some of the variables may be
649    existing and the rest are to be created.  Same args as
650    parse_mixed_vars(), except that all allocations are taken
651    from the given POOL. */
652 bool
653 parse_mixed_vars_pool (struct lexer *lexer, const struct dictionary *dict, struct pool *pool,
654                        char ***names, size_t *nnames, int pv_opts)
655 {
656   int retval;
657
658   /* PV_APPEND is unsafe because parse_mixed_vars_pool would free
659      the existing names on failure, but those names are
660      presumably already in the pool, which would attempt to
661      re-free it later. */
662   assert (!(pv_opts & PV_APPEND));
663
664   retval = parse_mixed_vars (lexer, dict, names, nnames, pv_opts);
665   if (retval)
666     register_vars_pool (pool, *names, *nnames);
667   return retval;
668 }
669 \f
670 /* A set of variables. */
671 struct var_set
672   {
673     size_t (*get_cnt) (const struct var_set *);
674     struct variable *(*get_var) (const struct var_set *, size_t idx);
675     bool (*lookup_var_idx) (const struct var_set *, const char *, size_t *);
676     void (*destroy) (struct var_set *);
677     void *aux;
678   };
679
680 /* Returns the number of variables in VS. */
681 size_t
682 var_set_get_cnt (const struct var_set *vs)
683 {
684   assert (vs != NULL);
685
686   return vs->get_cnt (vs);
687 }
688
689 /* Return variable with index IDX in VS.
690    IDX must be less than the number of variables in VS. */
691 static struct variable *
692 var_set_get_var (const struct var_set *vs, size_t idx)
693 {
694   assert (vs != NULL);
695   assert (idx < var_set_get_cnt (vs));
696
697   return vs->get_var (vs, idx);
698 }
699
700 /* Returns the variable in VS named NAME, or a null pointer if VS
701    contains no variable with that name. */
702 struct variable *
703 var_set_lookup_var (const struct var_set *vs, const char *name)
704 {
705   size_t idx;
706   return (var_set_lookup_var_idx (vs, name, &idx)
707           ? var_set_get_var (vs, idx)
708           : NULL);
709 }
710
711 /* If VS contains a variable named NAME, sets *IDX to its index
712    and returns true.  Otherwise, returns false. */
713 bool
714 var_set_lookup_var_idx (const struct var_set *vs, const char *name,
715                         size_t *idx)
716 {
717   assert (vs != NULL);
718   assert (name != NULL);
719
720   return vs->lookup_var_idx (vs, name, idx);
721 }
722
723 /* Destroys VS. */
724 void
725 var_set_destroy (struct var_set *vs)
726 {
727   if (vs != NULL)
728     vs->destroy (vs);
729 }
730 \f
731 /* Returns the number of variables in VS. */
732 static size_t
733 dict_var_set_get_cnt (const struct var_set *vs)
734 {
735   struct dictionary *d = vs->aux;
736
737   return dict_get_var_cnt (d);
738 }
739
740 /* Return variable with index IDX in VS.
741    IDX must be less than the number of variables in VS. */
742 static struct variable *
743 dict_var_set_get_var (const struct var_set *vs, size_t idx)
744 {
745   struct dictionary *d = vs->aux;
746
747   return dict_get_var (d, idx);
748 }
749
750 /* If VS contains a variable named NAME, sets *IDX to its index
751    and returns true.  Otherwise, returns false. */
752 static bool
753 dict_var_set_lookup_var_idx (const struct var_set *vs, const char *name,
754                              size_t *idx)
755 {
756   struct dictionary *d = vs->aux;
757   struct variable *v = dict_lookup_var (d, name);
758   if (v != NULL)
759     {
760       *idx = var_get_dict_index (v);
761       return true;
762     }
763   else
764     return false;
765 }
766
767 /* Destroys VS. */
768 static void
769 dict_var_set_destroy (struct var_set *vs)
770 {
771   free (vs);
772 }
773
774 /* Returns a variable set based on D. */
775 struct var_set *
776 var_set_create_from_dict (const struct dictionary *d)
777 {
778   struct var_set *vs = xmalloc (sizeof *vs);
779   vs->get_cnt = dict_var_set_get_cnt;
780   vs->get_var = dict_var_set_get_var;
781   vs->lookup_var_idx = dict_var_set_lookup_var_idx;
782   vs->destroy = dict_var_set_destroy;
783   vs->aux = (void *) d;
784   return vs;
785 }
786 \f
787 /* A variable set based on an array. */
788 struct array_var_set
789   {
790     struct variable *const *var;/* Array of variables. */
791     size_t var_cnt;             /* Number of elements in var. */
792     struct hmapx vars_by_name;  /* Variables hashed by name. */
793   };
794
795 /* Returns the number of variables in VS. */
796 static size_t
797 array_var_set_get_cnt (const struct var_set *vs)
798 {
799   struct array_var_set *avs = vs->aux;
800
801   return avs->var_cnt;
802 }
803
804 /* Return variable with index IDX in VS.
805    IDX must be less than the number of variables in VS. */
806 static struct variable *
807 array_var_set_get_var (const struct var_set *vs, size_t idx)
808 {
809   struct array_var_set *avs = vs->aux;
810
811   return CONST_CAST (struct variable *, avs->var[idx]);
812 }
813
814 /* If VS contains a variable named NAME, sets *IDX to its index
815    and returns true.  Otherwise, returns false. */
816 static bool
817 array_var_set_lookup_var_idx (const struct var_set *vs, const char *name,
818                               size_t *idx)
819 {
820   struct array_var_set *avs = vs->aux;
821   struct hmapx_node *node;
822   struct variable **varp;
823
824   HMAPX_FOR_EACH_WITH_HASH (varp, node, utf8_hash_case_string (name, 0),
825                             &avs->vars_by_name)
826     if (!utf8_strcasecmp (name, var_get_name (*varp)))
827       {
828         *idx = varp - avs->var;
829         return true;
830       }
831
832   return false;
833 }
834
835 /* Destroys VS. */
836 static void
837 array_var_set_destroy (struct var_set *vs)
838 {
839   struct array_var_set *avs = vs->aux;
840
841   hmapx_destroy (&avs->vars_by_name);
842   free (avs);
843   free (vs);
844 }
845
846 /* Returns a variable set based on the VAR_CNT variables in VAR. */
847 struct var_set *
848 var_set_create_from_array (struct variable *const *var, size_t var_cnt)
849 {
850   struct var_set *vs;
851   struct array_var_set *avs;
852   size_t i;
853
854   vs = xmalloc (sizeof *vs);
855   vs->get_cnt = array_var_set_get_cnt;
856   vs->get_var = array_var_set_get_var;
857   vs->lookup_var_idx = array_var_set_lookup_var_idx;
858   vs->destroy = array_var_set_destroy;
859   vs->aux = avs = xmalloc (sizeof *avs);
860   avs->var = var;
861   avs->var_cnt = var_cnt;
862   hmapx_init (&avs->vars_by_name);
863   for (i = 0; i < var_cnt; i++)
864     {
865       const char *name = var_get_name (var[i]);
866       size_t idx;
867
868       if (array_var_set_lookup_var_idx (vs, name, &idx))
869         {
870           var_set_destroy (vs);
871           return NULL;
872         }
873       hmapx_insert (&avs->vars_by_name, CONST_CAST (void *, &avs->var[i]),
874                     utf8_hash_case_string (name, 0));
875     }
876
877   return vs;
878 }
879
880
881 /* Match a variable.
882    If the match succeeds, the variable will be placed in VAR.
883    Returns true if successful */
884 bool
885 lex_match_variable (struct lexer *lexer, const struct dictionary *dict, const struct variable **var)
886 {
887   if (lex_token (lexer) !=  T_ID)
888     return false;
889
890   *var = parse_variable_const  (lexer, dict);
891
892   if ( *var == NULL)
893     return false;
894   return true;
895 }
896
897 /* An interaction is a variable followed by {*, BY} followed by an interaction */
898 static bool
899 parse_internal_interaction (struct lexer *lexer, const struct dictionary *dict, struct interaction **iact, struct interaction **it)
900 {
901   const struct variable *v = NULL;
902   assert (iact);
903
904   switch  (lex_next_token (lexer, 1))
905     {
906     case T_ENDCMD:
907     case T_SLASH:
908     case T_COMMA:
909     case T_ID:
910     case T_BY:
911     case T_ASTERISK:
912       break;
913     default:
914       return false;
915       break;
916     }
917
918   if (! lex_match_variable (lexer, dict, &v))
919     {
920       if (it)
921         interaction_destroy (*it);
922       *iact = NULL;
923       return false;
924     }
925
926   assert (v);
927
928   if ( *iact == NULL)
929     *iact = interaction_create (v);
930   else
931     interaction_add_variable (*iact, v);
932
933   if ( lex_match (lexer, T_ASTERISK) || lex_match (lexer, T_BY))
934     {
935       return parse_internal_interaction (lexer, dict, iact, iact);
936     }
937
938   return true;
939 }
940
941 bool
942 parse_design_interaction (struct lexer *lexer, const struct dictionary *dict, struct interaction **iact)
943 {
944   return parse_internal_interaction (lexer, dict, iact, NULL);
945 }
946