Patch #6262. New developers guide and resulting fixes and cleanups.
[pspp-builds.git] / src / data / variable.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006 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 #include "variable.h"
19
20 #include <stdlib.h>
21
22 #include "category.h"
23 #include "data-out.h"
24 #include "format.h"
25 #include "dictionary.h"
26 #include "identifier.h"
27 #include "missing-values.h"
28 #include "value-labels.h"
29 #include "vardict.h"
30
31 #include <libpspp/misc.h>
32 #include <libpspp/assertion.h>
33 #include <libpspp/compiler.h>
34 #include <libpspp/hash.h>
35 #include <libpspp/message.h>
36 #include <libpspp/str.h>
37
38 #include "xalloc.h"
39
40 #include "gettext.h"
41 #define _(msgid) gettext (msgid)
42
43 /* A variable. */
44 struct variable
45   {
46     /* Dictionary information. */
47     char name[VAR_NAME_LEN + 1]; /* Variable name.  Mixed case. */
48     int width;                  /* 0 for numeric, otherwise string width. */
49     struct missing_values miss; /* Missing values. */
50     struct fmt_spec print;      /* Default format for PRINT. */
51     struct fmt_spec write;      /* Default format for WRITE. */
52     struct val_labs *val_labs;  /* Value labels. */
53     char *label;                /* Variable label. */
54
55     /* GUI information. */
56     enum measure measure;       /* Nominal, ordinal, or continuous. */
57     int display_width;          /* Width of data editor column. */
58     enum alignment alignment;   /* Alignment of data in GUI. */
59
60     /* Case information. */
61     bool leave;                 /* Leave value from case to case? */
62
63     /* Data for use by containing dictionary. */
64     struct vardict_info vardict;
65
66     /* Used only for system and portable file input and output.
67        See short-names.h. */
68     char **short_names;
69     size_t short_name_cnt;
70
71     /* Each command may use these fields as needed. */
72     void *aux;
73     void (*aux_dtor) (struct variable *);
74
75     /* Values of a categorical variable.  Procedures need
76        vectors with binary entries, so any variable of type ALPHA will
77        have its values stored here. */
78     struct cat_vals *obs_vals;
79   };
80 \f
81 /* Creates and returns a new variable with the given NAME and
82    WIDTH and other fields initialized to default values.  The
83    variable is not added to a dictionary; for that, use
84    dict_create_var instead. */
85 struct variable *
86 var_create (const char *name, int width)
87 {
88   struct variable *v;
89
90   assert (width >= 0 && width <= MAX_STRING);
91
92   v = xmalloc (sizeof *v);
93   v->vardict.dict_index = v->vardict.case_index = -1;
94   var_set_name (v, name);
95   v->width = width;
96   mv_init (&v->miss, width);
97   v->leave = var_must_leave (v);
98   if (var_is_numeric (v))
99     {
100       v->print = fmt_for_output (FMT_F, 8, 2);
101       v->alignment = ALIGN_RIGHT;
102       v->measure = MEASURE_SCALE;
103     }
104   else
105     {
106       v->print = fmt_for_output (FMT_A, var_get_width (v), 0);
107       v->alignment = ALIGN_LEFT;
108       v->measure = MEASURE_NOMINAL;
109     }
110   v->display_width = var_default_display_width (width);
111   v->write = v->print;
112   v->val_labs = NULL;
113   v->label = NULL;
114   v->short_names = NULL;
115   v->short_name_cnt = 0;
116   v->aux = NULL;
117   v->aux_dtor = NULL;
118   v->obs_vals = NULL;
119
120   return v;
121 }
122
123 /* Creates and returns a clone of OLD_VAR.  Most properties of
124    the new variable are copied from OLD_VAR, except:
125
126     - The variable's short name is not copied, because there is
127       no reason to give a new variable with potentially a new
128       name the same short name.
129
130     - The new variable is not added to OLD_VAR's dictionary by
131       default.  Use dict_clone_var, instead, to do that.
132
133     - Auxiliary data and obs_vals are not copied. */
134 struct variable *
135 var_clone (const struct variable *old_var)
136 {
137   struct variable *new_var = var_create (var_get_name (old_var),
138                                          var_get_width (old_var));
139
140   var_set_missing_values (new_var, var_get_missing_values (old_var));
141   var_set_print_format (new_var, var_get_print_format (old_var));
142   var_set_write_format (new_var, var_get_write_format (old_var));
143   var_set_value_labels (new_var, var_get_value_labels (old_var));
144   var_set_label (new_var, var_get_label (old_var));
145   var_set_measure (new_var, var_get_measure (old_var));
146   var_set_display_width (new_var, var_get_display_width (old_var));
147   var_set_alignment (new_var, var_get_alignment (old_var));
148   var_set_leave (new_var, var_get_leave (old_var));
149
150   return new_var;
151 }
152
153 /* Destroys variable V.
154    V must not belong to a dictionary.  If it does, use
155    dict_delete_var instead. */
156 void
157 var_destroy (struct variable *v)
158 {
159   if (v != NULL)
160     {
161       assert (!var_has_vardict (v));
162       cat_stored_values_destroy (v->obs_vals);
163       var_clear_short_names (v);
164       var_clear_aux (v);
165       val_labs_destroy (v->val_labs);
166       var_clear_label (v);
167       free (v);
168     }
169 }
170 \f
171 /* Variable names. */
172
173 /* Return variable V's name. */
174 const char *
175 var_get_name (const struct variable *v)
176 {
177   return v->name;
178 }
179
180 /* Sets V's name to NAME.
181    Do not use this function for a variable in a dictionary.  Use
182    dict_rename_var instead. */
183 void
184 var_set_name (struct variable *v, const char *name)
185 {
186   assert (v->vardict.dict_index == -1);
187   assert (var_is_plausible_name (name, false));
188
189   str_copy_trunc (v->name, sizeof v->name, name);
190   dict_var_changed (v);
191 }
192
193 /* Returns true if NAME is an acceptable name for a variable,
194    false otherwise.  If ISSUE_ERROR is true, issues an
195    explanatory error message on failure. */
196 bool
197 var_is_valid_name (const char *name, bool issue_error)
198 {
199   bool plausible;
200   size_t length, i;
201
202   assert (name != NULL);
203
204   /* Note that strlen returns number of BYTES, not the number of
205      CHARACTERS */
206   length = strlen (name);
207
208   plausible = var_is_plausible_name(name, issue_error);
209
210   if ( ! plausible )
211     return false;
212
213
214   if (!lex_is_id1 (name[0]))
215     {
216       if (issue_error)
217         msg (SE, _("Character `%c' (in %s) may not appear "
218                    "as the first character in a variable name."),
219              name[0], name);
220       return false;
221     }
222
223
224   for (i = 0; i < length; i++)
225     {
226     if (!lex_is_idn (name[i]))
227       {
228         if (issue_error)
229           msg (SE, _("Character `%c' (in %s) may not appear in "
230                      "a variable name."),
231                name[i], name);
232         return false;
233       }
234     }
235
236   return true;
237 }
238
239 /* Returns true if NAME is an plausible name for a variable,
240    false otherwise.  If ISSUE_ERROR is true, issues an
241    explanatory error message on failure.
242    This function makes no use of LC_CTYPE.
243 */
244 bool
245 var_is_plausible_name (const char *name, bool issue_error)
246 {
247   size_t length;
248
249   assert (name != NULL);
250
251   /* Note that strlen returns number of BYTES, not the number of
252      CHARACTERS */
253   length = strlen (name);
254   if (length < 1)
255     {
256       if (issue_error)
257         msg (SE, _("Variable name cannot be empty string."));
258       return false;
259     }
260   else if (length > VAR_NAME_LEN)
261     {
262       if (issue_error)
263         msg (SE, _("Variable name %s exceeds %d-character limit."),
264              name, (int) VAR_NAME_LEN);
265       return false;
266     }
267
268   if (lex_id_to_token (ss_cstr (name)) != T_ID)
269     {
270       if (issue_error)
271         msg (SE, _("`%s' may not be used as a variable name because it "
272                    "is a reserved word."), name);
273       return false;
274     }
275
276   return true;
277 }
278
279 /* Returns VAR's dictionary class. */
280 enum dict_class
281 var_get_dict_class (const struct variable *var)
282 {
283   return dict_class_from_id (var->name);
284 }
285
286 /* A hsh_compare_func that orders variables A and B by their
287    names. */
288 int
289 compare_vars_by_name (const void *a_, const void *b_, const void *aux UNUSED)
290 {
291   const struct variable *a = a_;
292   const struct variable *b = b_;
293
294   return strcasecmp (a->name, b->name);
295 }
296
297 /* A hsh_hash_func that hashes variable V based on its name. */
298 unsigned
299 hash_var_by_name (const void *v_, const void *aux UNUSED)
300 {
301   const struct variable *v = v_;
302
303   return hsh_hash_case_string (v->name);
304 }
305
306 /* A hsh_compare_func that orders pointers to variables A and B
307    by their names. */
308 int
309 compare_var_ptrs_by_name (const void *a_, const void *b_,
310                           const void *aux UNUSED)
311 {
312   struct variable *const *a = a_;
313   struct variable *const *b = b_;
314
315   return strcasecmp (var_get_name (*a), var_get_name (*b));
316 }
317
318 /* A hsh_hash_func that hashes pointer to variable V based on its
319    name. */
320 unsigned
321 hash_var_ptr_by_name (const void *v_, const void *aux UNUSED)
322 {
323   struct variable *const *v = v_;
324
325   return hsh_hash_case_string (var_get_name (*v));
326 }
327 \f
328 /* Returns the type of variable V. */
329 enum val_type
330 var_get_type (const struct variable *v)
331 {
332   return val_type_from_width (v->width);
333 }
334
335 /* Returns the width of variable V. */
336 int
337 var_get_width (const struct variable *v)
338 {
339   return v->width;
340 }
341
342 /* Changes the width of V to NEW_WIDTH.
343    This function should be used cautiously. */
344 void
345 var_set_width (struct variable *v, int new_width)
346 {
347   const int old_width = v->width;
348
349   if (mv_is_resizable (&v->miss, new_width))
350     mv_resize (&v->miss, new_width);
351   else
352     mv_init (&v->miss, new_width);
353
354   if (v->val_labs != NULL)
355     {
356       if (val_labs_can_set_width (v->val_labs, new_width))
357         val_labs_set_width (v->val_labs, new_width);
358       else
359         {
360           val_labs_destroy (v->val_labs);
361           v->val_labs = NULL;
362         }
363     }
364
365   fmt_resize (&v->print, new_width);
366   fmt_resize (&v->write, new_width);
367
368   v->width = new_width;
369
370   {
371     const int old_val_count = value_cnt_from_width (old_width);
372     const int new_val_count = value_cnt_from_width (new_width);
373
374     if ( old_val_count != new_val_count)
375          dict_var_resized (v, new_val_count - old_val_count);
376   }
377
378   dict_var_changed (v);
379 }
380
381 /* Returns true if variable V is numeric, false otherwise. */
382 bool
383 var_is_numeric (const struct variable *v)
384 {
385   return var_get_type (v) == VAL_NUMERIC;
386 }
387
388 /* Returns true if variable V is a string variable, false
389    otherwise. */
390 bool
391 var_is_alpha (const struct variable *v)
392 {
393   return var_get_type (v) == VAL_STRING;
394 }
395
396 /* Returns true if variable V is a short string variable, false
397    otherwise. */
398 bool
399 var_is_short_string (const struct variable *v)
400 {
401   return v->width > 0 && v->width <= MAX_SHORT_STRING;
402 }
403
404 /* Returns true if variable V is a long string variable, false
405    otherwise. */
406 bool
407 var_is_long_string (const struct variable *v)
408 {
409   return v->width > MAX_SHORT_STRING;
410 }
411
412 /* Returns the number of "union value"s need to store a value of
413    variable V. */
414 size_t
415 var_get_value_cnt (const struct variable *v)
416 {
417   return value_cnt_from_width (v->width);
418 }
419 \f
420 /* Returns variable V's missing values. */
421 const struct missing_values *
422 var_get_missing_values (const struct variable *v)
423 {
424   return &v->miss;
425 }
426
427 /* Sets variable V's missing values to MISS, which must be of V's
428    width or at least resizable to V's width.
429    If MISS is null, then V's missing values, if any, are
430    cleared. */
431 void
432 var_set_missing_values (struct variable *v, const struct missing_values *miss)
433 {
434   if (miss != NULL)
435     {
436       assert (mv_is_resizable (miss, v->width));
437       mv_copy (&v->miss, miss);
438       mv_resize (&v->miss, v->width);
439     }
440   else
441     mv_init (&v->miss, v->width);
442
443   dict_var_changed (v);
444 }
445
446 /* Sets variable V to have no user-missing values. */
447 void
448 var_clear_missing_values (struct variable *v)
449 {
450   var_set_missing_values (v, NULL);
451 }
452
453 /* Returns true if V has any user-missing values,
454    false otherwise. */
455 bool
456 var_has_missing_values (const struct variable *v)
457 {
458   return !mv_is_empty (&v->miss);
459 }
460
461 /* Returns true if VALUE is in the given CLASS of missing values
462    in V, false otherwise. */
463 bool
464 var_is_value_missing (const struct variable *v, const union value *value,
465                       enum mv_class class)
466 {
467   return mv_is_value_missing (&v->miss, value, class);
468 }
469
470 /* Returns true if D is in the given CLASS of missing values in
471    V, false otherwise.
472    V must be a numeric variable. */
473 bool
474 var_is_num_missing (const struct variable *v, double d, enum mv_class class)
475 {
476   return mv_is_num_missing (&v->miss, d, class);
477 }
478
479 /* Returns true if S[] is a missing value for V, false otherwise.
480    S[] must contain exactly as many characters as V's width.
481    V must be a string variable. */
482 bool
483 var_is_str_missing (const struct variable *v, const char s[],
484                     enum mv_class class)
485 {
486   return mv_is_str_missing (&v->miss, s, class);
487 }
488 \f
489 /* Returns variable V's value labels,
490    possibly a null pointer if it has none. */
491 const struct val_labs *
492 var_get_value_labels (const struct variable *v)
493 {
494   return v->val_labs;
495 }
496
497 /* Returns true if variable V has at least one value label. */
498 bool
499 var_has_value_labels (const struct variable *v)
500 {
501   return val_labs_count (v->val_labs) > 0;
502 }
503
504 /* Sets variable V's value labels to a copy of VLS,
505    which must have a width equal to V's width or one that can be
506    changed to V's width.
507    If VLS is null, then V's value labels, if any, are removed. */
508 void
509 var_set_value_labels (struct variable *v, const struct val_labs *vls)
510 {
511   val_labs_destroy (v->val_labs);
512   v->val_labs = NULL;
513
514   if (vls != NULL)
515     {
516       assert (val_labs_can_set_width (vls, v->width));
517       v->val_labs = val_labs_clone (vls);
518       val_labs_set_width (v->val_labs, v->width);
519       dict_var_changed (v);
520     }
521 }
522
523 /* Makes sure that V has a set of value labels,
524    by assigning one to it if necessary. */
525 static void
526 alloc_value_labels (struct variable *v)
527 {
528   assert (!var_is_long_string (v));
529   if (v->val_labs == NULL)
530     v->val_labs = val_labs_create (v->width);
531 }
532
533 /* Attempts to add a value label with the given VALUE and LABEL
534    to V.  Returns true if successful, false if VALUE has an
535    existing label or if V is a long string variable. */
536 bool
537 var_add_value_label (struct variable *v,
538                      const union value *value, const char *label)
539 {
540   alloc_value_labels (v);
541   return val_labs_add (v->val_labs, *value, label);
542 }
543
544 /* Adds or replaces a value label with the given VALUE and LABEL
545    to V.
546    Has no effect if V is a long string variable. */
547 void
548 var_replace_value_label (struct variable *v,
549                          const union value *value, const char *label)
550 {
551   alloc_value_labels (v);
552   val_labs_replace (v->val_labs, *value, label);
553 }
554
555 /* Removes V's value labels, if any. */
556 void
557 var_clear_value_labels (struct variable *v)
558 {
559   var_set_value_labels (v, NULL);
560 }
561
562 /* Returns the label associated with VALUE for variable V,
563    or a null pointer if none. */
564 const char *
565 var_lookup_value_label (const struct variable *v, const union value *value)
566 {
567   return val_labs_find (v->val_labs, *value);
568 }
569
570 /* Get a string representing VALUE for variable V.
571    That is, if VALUE has a label, return that label,
572    otherwise format VALUE and return the formatted string. */
573 const char *
574 var_get_value_name (const struct variable *v, const union value *value)
575 {
576   const char *name = var_lookup_value_label (v, value);
577   if (name == NULL)
578     {
579       static char buf[MAX_STRING + 1];
580       data_out (value, &v->print, buf);
581       buf[v->print.w] = '\0';
582       name = buf;
583     }
584   return name;
585 }
586 \f
587 /* Print and write formats. */
588
589 /* Returns V's print format specification. */
590 const struct fmt_spec *
591 var_get_print_format (const struct variable *v)
592 {
593   return &v->print;
594 }
595
596 /* Sets V's print format specification to PRINT, which must be a
597    valid format specification for outputting a variable of V's
598    width. */
599 void
600 var_set_print_format (struct variable *v, const struct fmt_spec *print)
601 {
602   assert (fmt_check_width_compat (print, v->width));
603   v->print = *print;
604   dict_var_changed (v);
605 }
606
607 /* Returns V's write format specification. */
608 const struct fmt_spec *
609 var_get_write_format (const struct variable *v)
610 {
611   return &v->write;
612 }
613
614 /* Sets V's write format specification to WRITE, which must be a
615    valid format specification for outputting a variable of V's
616    width. */
617 void
618 var_set_write_format (struct variable *v, const struct fmt_spec *write)
619 {
620   assert (fmt_check_width_compat (write, v->width));
621   v->write = *write;
622   dict_var_changed (v);
623 }
624
625 /* Sets V's print and write format specifications to FORMAT,
626    which must be a valid format specification for outputting a
627    variable of V's width. */
628 void
629 var_set_both_formats (struct variable *v, const struct fmt_spec *format)
630 {
631   var_set_print_format (v, format);
632   var_set_write_format (v, format);
633 }
634 \f
635 /* Return a string representing this variable, in the form most
636    appropriate from a human factors perspective, that is, its
637    variable label if it has one, otherwise its name. */
638 const char *
639 var_to_string (const struct variable *v)
640 {
641   return v->label != NULL ? v->label : v->name;
642 }
643
644 /* Returns V's variable label, or a null pointer if it has none. */
645 const char *
646 var_get_label (const struct variable *v)
647 {
648   return v->label;
649 }
650
651 /* Sets V's variable label to LABEL, stripping off leading and
652    trailing white space and truncating to 255 characters.
653    If LABEL is a null pointer or if LABEL is an empty string
654    (after stripping white space), then V's variable label (if
655    any) is removed. */
656 void
657 var_set_label (struct variable *v, const char *label)
658 {
659   free (v->label);
660   v->label = NULL;
661
662   if (label != NULL)
663     {
664       struct substring s = ss_cstr (label);
665       ss_trim (&s, ss_cstr (CC_SPACES));
666       ss_truncate (&s, 255);
667       if (!ss_is_empty (s))
668         v->label = ss_xstrdup (s);
669       dict_var_changed (v);
670     }
671 }
672
673 /* Removes any variable label from V. */
674 void
675 var_clear_label (struct variable *v)
676 {
677   var_set_label (v, NULL);
678 }
679
680 /* Returns true if V has a variable V,
681    false otherwise. */
682 bool
683 var_has_label (const struct variable *v)
684 {
685   return v->label != NULL;
686 }
687 \f
688 /* Returns true if M is a valid variable measurement level,
689    false otherwise. */
690 bool
691 measure_is_valid (enum measure m)
692 {
693   return m == MEASURE_NOMINAL || m == MEASURE_ORDINAL || m == MEASURE_SCALE;
694 }
695
696 /* Returns V's measurement level. */
697 enum measure
698 var_get_measure (const struct variable *v)
699 {
700   return v->measure;
701 }
702
703 /* Sets V's measurement level to MEASURE. */
704 void
705 var_set_measure (struct variable *v, enum measure measure)
706 {
707   assert (measure_is_valid (measure));
708   v->measure = measure;
709   dict_var_changed (v);
710 }
711 \f
712 /* Returns V's display width, which applies only to GUIs. */
713 int
714 var_get_display_width (const struct variable *v)
715 {
716   return v->display_width;
717 }
718
719 /* Sets V's display width to DISPLAY_WIDTH. */
720 void
721 var_set_display_width (struct variable *v, int display_width)
722 {
723   v->display_width = display_width;
724   dict_var_changed (v);
725 }
726
727 /* Returns the default display width for a variable of the given
728    WIDTH, as set by var_create.  The return value can be used to
729    reset a variable's display width to the default. */
730 int
731 var_default_display_width (int width)
732 {
733   return width == 0 ? 8 : MIN (width, 32);
734 }
735 \f
736 /* Returns true if A is a valid alignment,
737    false otherwise. */
738 bool
739 alignment_is_valid (enum alignment a)
740 {
741   return a == ALIGN_LEFT || a == ALIGN_RIGHT || a == ALIGN_CENTRE;
742 }
743
744 /* Returns V's display alignment, which applies only to GUIs. */
745 enum alignment
746 var_get_alignment (const struct variable *v)
747 {
748   return v->alignment;
749 }
750
751 /* Sets V's display alignment to ALIGNMENT. */
752 void
753 var_set_alignment (struct variable *v, enum alignment alignment)
754 {
755   assert (alignment_is_valid (alignment));
756   v->alignment = alignment;
757   dict_var_changed (v);
758 }
759 \f
760 /* Whether variables' values should be preserved from case to
761    case. */
762
763 /* Returns true if variable V's value should be left from case to
764    case, instead of being reset to system-missing or blanks. */
765 bool
766 var_get_leave (const struct variable *v)
767 {
768   return v->leave;
769 }
770
771 /* Sets V's leave setting to LEAVE. */
772 void
773 var_set_leave (struct variable *v, bool leave)
774 {
775   assert (leave || !var_must_leave (v));
776   v->leave = leave;
777   dict_var_changed (v);
778 }
779
780 /* Returns true if V must be left from case to case,
781    false if it can be set either way. */
782 bool
783 var_must_leave (const struct variable *v)
784 {
785   return var_get_dict_class (v) == DC_SCRATCH;
786 }
787 \f
788 /* Returns the number of short names stored in VAR.
789
790    Short names are used only for system and portable file input
791    and output.  They are upper-case only, not necessarily unique,
792    and limited to SHORT_NAME_LEN characters (plus a null
793    terminator).  Ordinarily a variable has at most one short
794    name, but very long string variables (longer than 255 bytes)
795    may have more.  A variable might not have any short name at
796    all if it hasn't been saved to or read from a system or
797    portable file. */
798 size_t
799 var_get_short_name_cnt (const struct variable *var) 
800 {
801   return var->short_name_cnt;
802 }
803
804 /* Returns VAR's short name with the given IDX, if it has one
805    with that index, or a null pointer otherwise.  Short names may
806    be sparse: even if IDX is less than the number of short names
807    in VAR, this function may return a null pointer. */
808 const char *
809 var_get_short_name (const struct variable *var, size_t idx)
810 {
811   return idx < var->short_name_cnt ? var->short_names[idx] : NULL;
812 }
813
814 /* Sets VAR's short name with the given IDX to SHORT_NAME,
815    truncating it to SHORT_NAME_LEN characters and converting it
816    to uppercase in the process.  Specifying a null pointer for
817    SHORT_NAME clears the specified short name. */
818 void
819 var_set_short_name (struct variable *var, size_t idx, const char *short_name)
820 {
821   assert (var != NULL);
822   assert (short_name == NULL || var_is_plausible_name (short_name, false));
823
824   /* Clear old short name numbered IDX, if any. */
825   if (idx < var->short_name_cnt) 
826     {
827       free (var->short_names[idx]);
828       var->short_names[idx] = NULL; 
829     }
830
831   /* Install new short name for IDX. */
832   if (short_name != NULL) 
833     {
834       if (idx >= var->short_name_cnt)
835         {
836           size_t old_cnt = var->short_name_cnt;
837           size_t i;
838           var->short_name_cnt = MAX (idx * 2, 1);
839           var->short_names = xnrealloc (var->short_names, var->short_name_cnt,
840                                         sizeof *var->short_names);
841           for (i = old_cnt; i < var->short_name_cnt; i++)
842             var->short_names[i] = NULL;
843         }
844       var->short_names[idx] = xstrndup (short_name, MAX_SHORT_STRING);
845       str_uppercase (var->short_names[idx]);
846     }
847
848   dict_var_changed (var);
849 }
850
851 /* Clears V's short names. */
852 void
853 var_clear_short_names (struct variable *v)
854 {
855   size_t i;
856
857   for (i = 0; i < v->short_name_cnt; i++)
858     free (v->short_names[i]);
859   free (v->short_names);
860   v->short_names = NULL;
861   v->short_name_cnt = 0;
862 }
863 \f
864 /* Relationship with dictionary. */
865
866 /* Returns V's index within its dictionary, the value
867    for which "dict_get_var (dict, index)" will return V.
868    V must be in a dictionary. */
869 size_t
870 var_get_dict_index (const struct variable *v)
871 {
872   assert (v->vardict.dict_index != -1);
873   return v->vardict.dict_index;
874 }
875
876 /* Returns V's index within the case represented by its
877    dictionary, that is, the value for which "case_data_idx (case,
878    index)" will return the data for V in that case.
879    V must be in a dictionary. */
880 size_t
881 var_get_case_index (const struct variable *v)
882 {
883   assert (v->vardict.case_index != -1);
884   return v->vardict.case_index;
885 }
886 \f
887 /* Returns V's auxiliary data, or a null pointer if none has been
888    attached. */
889 void *
890 var_get_aux (const struct variable *v)
891 {
892   return v->aux;
893 }
894
895 /* Assign auxiliary data AUX to variable V, which must not
896    already have auxiliary data.  Before V's auxiliary data is
897    cleared, AUX_DTOR(V) will be called.  (var_dtor_free, below,
898    may be appropriate for use as AUX_DTOR.) */
899 void *
900 var_attach_aux (const struct variable *v_,
901                 void *aux, void (*aux_dtor) (struct variable *))
902 {
903   struct variable *v = (struct variable *) v_ ; /* cast away const  */
904   assert (v->aux == NULL);
905   assert (aux != NULL);
906   v->aux = aux;
907   v->aux_dtor = aux_dtor;
908   return aux;
909 }
910
911 /* Remove auxiliary data, if any, from V, and return it, without
912    calling any associated destructor. */
913 void *
914 var_detach_aux (struct variable *v)
915 {
916   void *aux = v->aux;
917   assert (aux != NULL);
918   v->aux = NULL;
919   return aux;
920 }
921
922 /* Clears auxiliary data, if any, from V, and calls any
923    associated destructor. */
924 void
925 var_clear_aux (struct variable *v)
926 {
927   assert (v != NULL);
928   if (v->aux != NULL)
929     {
930       if (v->aux_dtor != NULL)
931         v->aux_dtor (v);
932       v->aux = NULL;
933     }
934 }
935
936 /* This function is appropriate for use an auxiliary data
937    destructor (passed as AUX_DTOR to var_attach_aux()) for the
938    case where the auxiliary data should be passed to free(). */
939 void
940 var_dtor_free (struct variable *v)
941 {
942   free (v->aux);
943 }
944 \f
945 /* Observed categorical values. */
946
947 /* Returns V's observed categorical values,
948    which V must have. */
949 struct cat_vals *
950 var_get_obs_vals (const struct variable *v)
951 {
952   assert (v->obs_vals != NULL);
953   return v->obs_vals;
954 }
955
956 /* Sets V's observed categorical values to CAT_VALS.
957    V becomes the owner of CAT_VALS. */
958 void
959 var_set_obs_vals (const struct variable *v_, struct cat_vals *cat_vals)
960 {
961   struct variable *v = (struct variable *) v_ ; /* cast away const */
962   cat_stored_values_destroy (v->obs_vals);
963   v->obs_vals = cat_vals;
964 }
965
966 /* Returns true if V has observed categorical values,
967    false otherwise. */
968 bool
969 var_has_obs_vals (const struct variable *v)
970 {
971   return v->obs_vals != NULL;
972 }
973 \f
974 /* Returns V's vardict structure. */
975 const struct vardict_info *
976 var_get_vardict (const struct variable *v)
977 {
978   assert (var_has_vardict (v));
979   return &v->vardict;
980 }
981
982 /* Sets V's vardict data to VARDICT. */
983 void
984 var_set_vardict (struct variable *v, const struct vardict_info *vardict)
985 {
986   assert (vardict->dict_index >= 0);
987   assert (vardict->case_index >= 0);
988   v->vardict = *vardict;
989 }
990
991 /* Returns true if V has vardict data. */
992 bool
993 var_has_vardict (const struct variable *v)
994 {
995   return v->vardict.dict_index != -1;
996 }
997
998 /* Clears V's vardict data. */
999 void
1000 var_clear_vardict (struct variable *v)
1001 {
1002   v->vardict.dict_index = v->vardict.case_index = -1;
1003 }