dictionary.c: Added a oldvar parameter to the var_changed callback
[pspp] / src / data / variable.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 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 "data/variable.h"
20
21 #include <stdlib.h>
22
23 #include "data/attributes.h"
24 #include "data/data-out.h"
25 #include "data/dictionary.h"
26 #include "data/format.h"
27 #include "data/identifier.h"
28 #include "data/missing-values.h"
29 #include "data/settings.h"
30 #include "data/value-labels.h"
31 #include "data/vardict.h"
32 #include "libpspp/assertion.h"
33 #include "libpspp/compiler.h"
34 #include "libpspp/hash-functions.h"
35 #include "libpspp/i18n.h"
36 #include "libpspp/message.h"
37 #include "libpspp/misc.h"
38 #include "libpspp/str.h"
39
40 #include "gl/minmax.h"
41 #include "gl/xalloc.h"
42
43 #include "gettext.h"
44 #define _(msgid) gettext (msgid)
45
46 /* A variable. */
47 struct variable
48   {
49     /* Dictionary information. */
50     char *name;                 /* Variable name.  Mixed case. */
51     int width;                  /* 0 for numeric, otherwise string width. */
52     struct missing_values miss; /* Missing values. */
53     struct fmt_spec print;      /* Default format for PRINT. */
54     struct fmt_spec write;      /* Default format for WRITE. */
55     struct val_labs *val_labs;  /* Value labels. */
56     char *label;                /* Variable label. */
57     struct string name_and_label; /* The name and label in the same string */
58
59     /* GUI information. */
60     enum measure measure;       /* Nominal, ordinal, or continuous. */
61     int display_width;          /* Width of data editor column. */
62     enum alignment alignment;   /* Alignment of data in GUI. */
63
64     /* Case information. */
65     bool leave;                 /* Leave value from case to case? */
66
67     /* Data for use by containing dictionary. */
68     struct vardict_info *vardict;
69
70     /* Used only for system and portable file input and output.
71        See short-names.h. */
72     char **short_names;
73     size_t short_name_cnt;
74
75     /* Custom attributes. */
76     struct attrset attributes;
77   };
78 \f
79
80 static bool var_set_label_quiet (struct variable *v, const char *label, bool issue_warning);
81 static void var_set_name_quiet (struct variable *v, const char *name);
82
83 /* Creates and returns a new variable with the given NAME and
84    WIDTH and other fields initialized to default values.  The
85    variable is not added to a dictionary; for that, use
86    dict_create_var instead. */
87 struct variable *
88 var_create (const char *name, int width)
89 {
90   struct variable *v;
91   enum val_type type;
92
93   assert (width >= 0 && width <= MAX_STRING);
94
95   v = xzalloc (sizeof *v);
96   var_set_name_quiet (v, name);
97   v->width = width;
98   mv_init (&v->miss, width);
99   v->leave = var_must_leave (v);
100   type = val_type_from_width (width);
101   v->alignment = var_default_alignment (type);
102   v->measure = var_default_measure (type);
103   v->display_width = var_default_display_width (width);
104   v->print = v->write = var_default_formats (width);
105   attrset_init (&v->attributes);
106   ds_init_empty (&v->name_and_label);
107
108   return v;
109 }
110
111 /* Destroys variable V.
112    V must not belong to a dictionary.  If it does, use
113    dict_delete_var instead. */
114 void
115 var_destroy (struct variable *v)
116 {
117   if (v != NULL)
118     {
119       assert (!var_has_vardict (v));
120       mv_destroy (&v->miss);
121       var_clear_short_names (v);
122       val_labs_destroy (v->val_labs);
123       var_set_label_quiet (v, NULL, false);
124       attrset_destroy (var_get_attributes (v));
125       free (v->name);
126       ds_destroy (&v->name_and_label);
127       free (v);
128     }
129 }
130 \f
131 /* Variable names. */
132
133 /* Return variable V's name, as a UTF-8 encoded string. */
134 const char *
135 var_get_name (const struct variable *v)
136 {
137   return v->name;
138 }
139
140
141
142 /* Sets V's name to NAME, a UTF-8 encoded string.
143    Do not use this function for a variable in a dictionary.  Use
144    dict_rename_var instead. */
145 static void
146 var_set_name_quiet (struct variable *v, const char *name)
147 {
148   assert (!var_has_vardict (v));
149   assert (id_is_plausible (name, false));
150
151   free (v->name);
152   v->name = xstrdup (name);
153   ds_destroy (&v->name_and_label);
154   ds_init_empty (&v->name_and_label);
155 }
156
157 /* Sets V's name to NAME, a UTF-8 encoded string.
158    Do not use this function for a variable in a dictionary.  Use
159    dict_rename_var instead. */
160 void
161 var_set_name (struct variable *v, const char *name)
162 {
163   struct variable *ov = var_clone (v);
164   var_set_name_quiet (v, name);
165   dict_var_changed (v, VAR_TRAIT_NAME, ov);
166 }
167
168 /* Returns VAR's dictionary class. */
169 enum dict_class
170 var_get_dict_class (const struct variable *var)
171 {
172   return dict_class_from_id (var->name);
173 }
174
175 /* A hsh_compare_func that orders variables A and B by their
176    names. */
177 int
178 compare_vars_by_name (const void *a_, const void *b_, const void *aux UNUSED)
179 {
180   const struct variable *a = a_;
181   const struct variable *b = b_;
182
183   return utf8_strcasecmp (a->name, b->name);
184 }
185
186 /* A hsh_hash_func that hashes variable V based on its name. */
187 unsigned
188 hash_var_by_name (const void *v_, const void *aux UNUSED)
189 {
190   const struct variable *v = v_;
191
192   return utf8_hash_case_string (v->name, 0);
193 }
194
195 /* A hsh_compare_func that orders pointers to variables A and B
196    by their names. */
197 int
198 compare_var_ptrs_by_name (const void *a_, const void *b_,
199                           const void *aux UNUSED)
200 {
201   struct variable *const *a = a_;
202   struct variable *const *b = b_;
203
204   return utf8_strcasecmp (var_get_name (*a), var_get_name (*b));
205 }
206
207 /* A hsh_compare_func that orders pointers to variables A and B
208    by their dictionary indexes. */
209 int
210 compare_var_ptrs_by_dict_index (const void *a_, const void *b_,
211                                 const void *aux UNUSED)
212 {
213   struct variable *const *a = a_;
214   struct variable *const *b = b_;
215   size_t a_index = var_get_dict_index (*a);
216   size_t b_index = var_get_dict_index (*b);
217
218   return a_index < b_index ? -1 : a_index > b_index;
219 }
220
221 /* A hsh_hash_func that hashes pointer to variable V based on its
222    name. */
223 unsigned
224 hash_var_ptr_by_name (const void *v_, const void *aux UNUSED)
225 {
226   struct variable *const *v = v_;
227
228   return utf8_hash_case_string (var_get_name (*v), 0);
229 }
230 \f
231 /* Returns the type of variable V. */
232 enum val_type
233 var_get_type (const struct variable *v)
234 {
235   return val_type_from_width (v->width);
236 }
237
238 /* Returns the width of variable V. */
239 int
240 var_get_width (const struct variable *v)
241 {
242   return v->width;
243 }
244
245 /* Changes the width of V to NEW_WIDTH.
246    This function should be used cautiously. */
247 void
248 var_set_width (struct variable *v, int new_width)
249 {
250   struct variable *ov;
251   const int old_width = v->width;
252
253   if (old_width == new_width)
254     return;
255
256   ov = var_clone (v);
257
258   if (mv_is_resizable (&v->miss, new_width))
259     mv_resize (&v->miss, new_width);
260   else
261     {
262       mv_destroy (&v->miss);
263       mv_init (&v->miss, new_width);
264     }
265
266   if (v->val_labs != NULL)
267     {
268       if (val_labs_can_set_width (v->val_labs, new_width))
269         val_labs_set_width (v->val_labs, new_width);
270       else
271         {
272           val_labs_destroy (v->val_labs);
273           v->val_labs = NULL;
274         }
275     }
276
277   fmt_resize (&v->print, new_width);
278   fmt_resize (&v->write, new_width);
279
280   v->width = new_width;
281   dict_var_resized (v, old_width);
282   dict_var_changed (v, VAR_TRAIT_WIDTH, ov);
283 }
284
285 /* Returns true if variable V is numeric, false otherwise. */
286 bool
287 var_is_numeric (const struct variable *v)
288 {
289   return var_get_type (v) == VAL_NUMERIC;
290 }
291
292 /* Returns true if variable V is a string variable, false
293    otherwise. */
294 bool
295 var_is_alpha (const struct variable *v)
296 {
297   return var_get_type (v) == VAL_STRING;
298 }
299 \f
300 /* Returns variable V's missing values. */
301 const struct missing_values *
302 var_get_missing_values (const struct variable *v)
303 {
304   return &v->miss;
305 }
306
307 /* Sets variable V's missing values to MISS, which must be of V's
308    width or at least resizable to V's width.
309    If MISS is null, then V's missing values, if any, are
310    cleared. */
311 static void
312 var_set_missing_values_quiet (struct variable *v, const struct missing_values *miss)
313 {
314   if (miss != NULL)
315     {
316       assert (mv_is_resizable (miss, v->width));
317       mv_destroy (&v->miss);
318       mv_copy (&v->miss, miss);
319       mv_resize (&v->miss, v->width);
320     }
321   else
322     mv_clear (&v->miss);
323 }
324
325 /* Sets variable V's missing values to MISS, which must be of V's
326    width or at least resizable to V's width.
327    If MISS is null, then V's missing values, if any, are
328    cleared. */
329 void
330 var_set_missing_values (struct variable *v, const struct missing_values *miss)
331 {
332   struct variable *ov = var_clone (v);
333   var_set_missing_values_quiet (v, miss);
334   dict_var_changed (v, VAR_TRAIT_MISSING_VALUES, ov);
335 }
336
337 /* Sets variable V to have no user-missing values. */
338 void
339 var_clear_missing_values (struct variable *v)
340 {
341   var_set_missing_values (v, NULL);
342 }
343
344 /* Returns true if V has any user-missing values,
345    false otherwise. */
346 bool
347 var_has_missing_values (const struct variable *v)
348 {
349   return !mv_is_empty (&v->miss);
350 }
351
352 /* Returns true if VALUE is in the given CLASS of missing values
353    in V, false otherwise. */
354 bool
355 var_is_value_missing (const struct variable *v, const union value *value,
356                       enum mv_class class)
357 {
358   return mv_is_value_missing (&v->miss, value, class);
359 }
360
361 /* Returns true if D is in the given CLASS of missing values in
362    V, false otherwise.
363    V must be a numeric variable. */
364 bool
365 var_is_num_missing (const struct variable *v, double d, enum mv_class class)
366 {
367   return mv_is_num_missing (&v->miss, d, class);
368 }
369
370 /* Returns true if S[] is a missing value for V, false otherwise.
371    S[] must contain exactly as many characters as V's width.
372    V must be a string variable. */
373 bool
374 var_is_str_missing (const struct variable *v, const uint8_t s[],
375                     enum mv_class class)
376 {
377   return mv_is_str_missing (&v->miss, s, class);
378 }
379 \f
380 /* Returns variable V's value labels,
381    possibly a null pointer if it has none. */
382 const struct val_labs *
383 var_get_value_labels (const struct variable *v)
384 {
385   return v->val_labs;
386 }
387
388 /* Returns true if variable V has at least one value label. */
389 bool
390 var_has_value_labels (const struct variable *v)
391 {
392   return val_labs_count (v->val_labs) > 0;
393 }
394
395 /* Sets variable V's value labels to a copy of VLS,
396    which must have a width equal to V's width or one that can be
397    changed to V's width.
398    If VLS is null, then V's value labels, if any, are removed. */
399 static void
400 var_set_value_labels_quiet (struct variable *v, const struct val_labs *vls)
401 {
402   val_labs_destroy (v->val_labs);
403   v->val_labs = NULL;
404
405   if (vls != NULL)
406     {
407       assert (val_labs_can_set_width (vls, v->width));
408       v->val_labs = val_labs_clone (vls);
409       val_labs_set_width (v->val_labs, v->width);
410     }
411 }
412
413
414 /* Sets variable V's value labels to a copy of VLS,
415    which must have a width equal to V's width or one that can be
416    changed to V's width.
417    If VLS is null, then V's value labels, if any, are removed. */
418 void
419 var_set_value_labels (struct variable *v, const struct val_labs *vls)
420 {
421   struct variable *ov = var_clone (v);
422   var_set_value_labels_quiet (v, vls);
423   dict_var_changed (v, VAR_TRAIT_LABEL, ov);  
424 }
425
426
427 /* Makes sure that V has a set of value labels,
428    by assigning one to it if necessary. */
429 static void
430 alloc_value_labels (struct variable *v)
431 {
432   if (v->val_labs == NULL)
433     v->val_labs = val_labs_create (v->width);
434 }
435
436 /* Attempts to add a value label with the given VALUE and UTF-8 encoded LABEL
437    to V.  Returns true if successful, false otherwise (probably due to an
438    existing label).
439
440    In LABEL, the two-byte sequence "\\n" is interpreted as a new-line. */
441 bool
442 var_add_value_label (struct variable *v,
443                      const union value *value, const char *label)
444 {
445   alloc_value_labels (v);
446   return val_labs_add (v->val_labs, value, label);
447 }
448
449 /* Adds or replaces a value label with the given VALUE and UTF-8 encoded LABEL
450    to V.
451
452    In LABEL, the two-byte sequence "\\n" is interpreted as a new-line. */
453 void
454 var_replace_value_label (struct variable *v,
455                          const union value *value, const char *label)
456 {
457   alloc_value_labels (v);
458   val_labs_replace (v->val_labs, value, label);
459 }
460
461 /* Removes V's value labels, if any. */
462 void
463 var_clear_value_labels (struct variable *v)
464 {
465   var_set_value_labels (v, NULL);
466 }
467
468 /* Returns the label associated with VALUE for variable V, as a UTF-8 string in
469    a format suitable for output, or a null pointer if none. */
470 const char *
471 var_lookup_value_label (const struct variable *v, const union value *value)
472 {
473   return val_labs_find (v->val_labs, value);
474 }
475
476 /*
477    Append to STR the string representation of VALUE for variable V.
478    STR must be a pointer to an initialised struct string.
479 */
480 static void
481 append_value (const struct variable *v, const union value *value,
482               struct string *str)
483 {
484   char *s = data_out (value, var_get_encoding (v), &v->print);
485   ds_put_cstr (str, s);
486   free (s);
487 }
488
489 /* Append STR with a string representing VALUE for variable V.
490    That is, if VALUE has a label, append that label,
491    otherwise format VALUE and append the formatted string.
492    STR must be a pointer to an initialised struct string.
493 */
494 void
495 var_append_value_name (const struct variable *v, const union value *value,
496                        struct string *str)
497 {
498   enum settings_value_style style = settings_get_value_style ();
499   const char *name = var_lookup_value_label (v, value);
500
501   switch (style)
502     {
503     case SETTINGS_VAL_STYLE_VALUES:
504       append_value (v, value, str);
505       break;
506       
507     case SETTINGS_VAL_STYLE_LABELS:
508       if (name == NULL)
509         append_value (v, value, str);
510       else
511         ds_put_cstr (str, name);
512       break;
513
514     case SETTINGS_VAL_STYLE_BOTH:
515     default:
516       append_value (v, value, str);
517       if (name != NULL)
518         {
519           ds_put_cstr (str, " (");
520           ds_put_cstr (str, name);
521           ds_put_cstr (str, ")");
522         }
523       break;
524     };
525 }
526 \f
527 /* Print and write formats. */
528
529 /* Returns V's print format specification. */
530 const struct fmt_spec *
531 var_get_print_format (const struct variable *v)
532 {
533   return &v->print;
534 }
535
536 /* Sets V's print format specification to PRINT, which must be a
537    valid format specification for a variable of V's width
538    (ordinarily an output format, but input formats are not
539    rejected). */
540 static void
541 var_set_print_format_quiet (struct variable *v, const struct fmt_spec *print)
542 {
543   if (!fmt_equal (&v->print, print))
544     {
545       assert (fmt_check_width_compat (print, v->width));
546       v->print = *print;
547     }
548 }
549
550 /* Sets V's print format specification to PRINT, which must be a
551    valid format specification for a variable of V's width
552    (ordinarily an output format, but input formats are not
553    rejected). */
554 void
555 var_set_print_format (struct variable *v, const struct fmt_spec *print)
556 {
557   struct variable *ov = var_clone (v);
558   var_set_print_format_quiet (v, print);
559   dict_var_changed (v, VAR_TRAIT_FORMAT, ov);
560 }
561
562 /* Returns V's write format specification. */
563 const struct fmt_spec *
564 var_get_write_format (const struct variable *v)
565 {
566   return &v->write;
567 }
568
569 /* Sets V's write format specification to WRITE, which must be a
570    valid format specification for a variable of V's width
571    (ordinarily an output format, but input formats are not
572    rejected). */
573 static void
574 var_set_write_format_quiet (struct variable *v, const struct fmt_spec *write)
575 {
576   if (!fmt_equal (&v->write, write))
577     {
578       assert (fmt_check_width_compat (write, v->width));
579       v->write = *write;
580     }
581 }
582
583 /* Sets V's write format specification to WRITE, which must be a
584    valid format specification for a variable of V's width
585    (ordinarily an output format, but input formats are not
586    rejected). */
587 void
588 var_set_write_format (struct variable *v, const struct fmt_spec *write)
589 {
590   struct variable *ov = var_clone (v);
591   var_set_write_format_quiet (v, write);
592   dict_var_changed (v, VAR_TRAIT_FORMAT, ov);
593 }
594
595
596 /* Sets V's print and write format specifications to FORMAT,
597    which must be a valid format specification for a variable of
598    V's width (ordinarily an output format, but input formats are
599    not rejected). */
600 void
601 var_set_both_formats (struct variable *v, const struct fmt_spec *format)
602 {
603   struct variable *ov = var_clone (v);
604   var_set_print_format_quiet (v, format);
605   var_set_write_format_quiet (v, format);
606   dict_var_changed (v, VAR_TRAIT_FORMAT, ov);
607 }
608
609 /* Returns the default print and write format for a variable of
610    the given TYPE, as set by var_create.  The return value can be
611    used to reset a variable's print and write formats to the
612    default. */
613 struct fmt_spec
614 var_default_formats (int width)
615 {
616   return (width == 0
617           ? fmt_for_output (FMT_F, 8, 2)
618           : fmt_for_output (FMT_A, width, 0));
619 }
620
621
622 \f
623
624 /* Update the combined name and label string if necessary */
625 static void
626 update_vl_string (const struct variable *v)
627 {
628   /* Cast away const! */
629   struct string *str = (struct string *) &v->name_and_label;
630
631   if (ds_is_empty (str))
632     {
633       if (v->label)
634         ds_put_format (str, _("%s (%s)"), v->label, v->name);
635       else
636         ds_put_cstr (str, v->name);
637     }
638 }
639
640
641 /* Return a string representing this variable, in the form most
642    appropriate from a human factors perspective, that is, its
643    variable label if it has one, otherwise its name. */
644 const char *
645 var_to_string (const struct variable *v)
646 {
647   enum settings_var_style style = settings_get_var_style ();
648
649   switch (style)
650   {
651     case SETTINGS_VAR_STYLE_NAMES:
652       return v->name;
653       break;
654     case SETTINGS_VAR_STYLE_LABELS:
655       return v->label != NULL ? v->label : v->name;
656       break;
657     case SETTINGS_VAR_STYLE_BOTH:
658       update_vl_string (v);
659       return ds_cstr (&v->name_and_label);
660       break;
661     default:
662       NOT_REACHED ();
663       break;
664   };
665 }
666
667 /* Returns V's variable label, or a null pointer if it has none. */
668 const char *
669 var_get_label (const struct variable *v)
670 {
671   return v->label;
672 }
673
674 /* Sets V's variable label to UTF-8 encoded string LABEL, stripping off leading
675    and trailing white space.  If LABEL is a null pointer or if LABEL is an
676    empty string (after stripping white space), then V's variable label (if any)
677    is removed.
678
679    Variable labels are limited to 255 bytes in V's encoding (as returned by
680    var_get_encoding()).  If LABEL fits within this limit, this function returns
681    true.  Otherwise, the variable label is set to a truncated value, this
682    function returns false and, if ISSUE_WARNING is true, issues a warning.  */
683 static bool
684 var_set_label_quiet (struct variable *v, const char *label, bool issue_warning)
685 {
686   bool truncated = false;
687
688   free (v->label);
689   v->label = NULL;
690
691   if (label != NULL && label[strspn (label, CC_SPACES)])
692     {
693       const char *dict_encoding = var_get_encoding (v);
694       struct substring s = ss_cstr (label);
695       size_t trunc_len;
696
697       if (dict_encoding != NULL)
698         {
699           enum { MAX_LABEL_LEN = 255 };
700
701           trunc_len = utf8_encoding_trunc_len (label, dict_encoding,
702                                                MAX_LABEL_LEN);
703           if (ss_length (s) > trunc_len)
704             {
705               if (issue_warning)
706                 msg (SW, _("Truncating variable label for variable `%s' to %d "
707                            "bytes."), var_get_name (v), MAX_LABEL_LEN);
708               ss_truncate (&s, trunc_len);
709               truncated = true;
710             }
711         }
712
713         v->label = ss_xstrdup (s);
714     }
715
716   ds_destroy (&v->name_and_label);
717   ds_init_empty (&v->name_and_label);
718
719   return truncated;
720 }
721
722
723
724 /* Sets V's variable label to UTF-8 encoded string LABEL, stripping off leading
725    and trailing white space.  If LABEL is a null pointer or if LABEL is an
726    empty string (after stripping white space), then V's variable label (if any)
727    is removed.
728
729    Variable labels are limited to 255 bytes in V's encoding (as returned by
730    var_get_encoding()).  If LABEL fits within this limit, this function returns
731    true.  Otherwise, the variable label is set to a truncated value, this
732    function returns false and, if ISSUE_WARNING is true, issues a warning.  */
733 bool
734 var_set_label (struct variable *v, const char *label, bool issue_warning)
735 {
736   struct variable *ov = var_clone (v);
737   bool truncated = var_set_label_quiet (v, label, issue_warning);
738
739   dict_var_changed (v, VAR_TRAIT_LABEL, ov);
740
741   return truncated;
742 }
743
744
745 /* Removes any variable label from V. */
746 void
747 var_clear_label (struct variable *v)
748 {
749   var_set_label (v, NULL, false);
750 }
751
752 /* Returns true if V has a variable V,
753    false otherwise. */
754 bool
755 var_has_label (const struct variable *v)
756 {
757   return v->label != NULL;
758 }
759 \f
760 /* Returns true if M is a valid variable measurement level,
761    false otherwise. */
762 bool
763 measure_is_valid (enum measure m)
764 {
765   return m == MEASURE_NOMINAL || m == MEASURE_ORDINAL || m == MEASURE_SCALE;
766 }
767
768 /* Returns a string version of measurement level M, for display to a user. */
769 const char *
770 measure_to_string (enum measure m)
771 {
772   switch (m)
773     {
774     case MEASURE_NOMINAL:
775       return _("Nominal");
776
777     case MEASURE_ORDINAL:
778       return _("Ordinal");
779
780     case MEASURE_SCALE:
781       return _("Scale");
782
783     default:
784       return "Invalid";
785     }
786 }
787
788 /* Returns V's measurement level. */
789 enum measure
790 var_get_measure (const struct variable *v)
791 {
792   return v->measure;
793 }
794
795 /* Sets V's measurement level to MEASURE. */
796 static void
797 var_set_measure_quiet (struct variable *v, enum measure measure)
798 {
799   assert (measure_is_valid (measure));
800   v->measure = measure;
801 }
802
803
804 /* Sets V's measurement level to MEASURE. */
805 void
806 var_set_measure (struct variable *v, enum measure measure)
807 {
808   struct variable *ov = var_clone (v);
809   var_set_measure_quiet (v, measure);
810   dict_var_changed (v, VAR_TRAIT_MEASURE, ov);
811 }
812
813
814 /* Returns the default measurement level for a variable of the
815    given TYPE, as set by var_create.  The return value can be
816    used to reset a variable's measurement level to the
817    default. */
818 enum measure
819 var_default_measure (enum val_type type)
820 {
821   return type == VAL_NUMERIC ? MEASURE_SCALE : MEASURE_NOMINAL;
822 }
823 \f
824 /* Returns V's display width, which applies only to GUIs. */
825 int
826 var_get_display_width (const struct variable *v)
827 {
828   return v->display_width;
829 }
830
831 /* Sets V's display width to DISPLAY_WIDTH. */
832 static void
833 var_set_display_width_quiet (struct variable *v, int new_width)
834 {
835   if (v->display_width != new_width)
836     {
837       v->display_width = new_width;
838       dict_var_display_width_changed (v);
839     }
840 }
841
842 void
843 var_set_display_width (struct variable *v, int new_width)
844 {
845   struct variable *ov = var_clone (v);
846   var_set_display_width_quiet (v, new_width);
847   dict_var_changed (v, VAR_TRAIT_DISPLAY_WIDTH, ov);
848 }
849
850
851 /* Returns the default display width for a variable of the given
852    WIDTH, as set by var_create.  The return value can be used to
853    reset a variable's display width to the default. */
854 int
855 var_default_display_width (int width)
856 {
857   return width == 0 ? 8 : MIN (width, 32);
858 }
859 \f
860 /* Returns true if A is a valid alignment,
861    false otherwise. */
862 bool
863 alignment_is_valid (enum alignment a)
864 {
865   return a == ALIGN_LEFT || a == ALIGN_RIGHT || a == ALIGN_CENTRE;
866 }
867
868 /* Returns a string version of alignment A, for display to a user. */
869 const char *
870 alignment_to_string (enum alignment a)
871 {
872   switch (a)
873     {
874     case ALIGN_LEFT:
875       return _("Left");
876
877     case ALIGN_RIGHT:
878       return _("Right");
879
880     case ALIGN_CENTRE:
881       return _("Center");
882
883     default:
884       return "Invalid";
885     }
886 }
887
888 /* Returns V's display alignment, which applies only to GUIs. */
889 enum alignment
890 var_get_alignment (const struct variable *v)
891 {
892   return v->alignment;
893 }
894
895 /* Sets V's display alignment to ALIGNMENT. */
896 static void
897 var_set_alignment_quiet (struct variable *v, enum alignment alignment)
898 {
899   assert (alignment_is_valid (alignment));
900   v->alignment = alignment;
901 }
902
903 /* Sets V's display alignment to ALIGNMENT. */
904 void
905 var_set_alignment (struct variable *v, enum alignment alignment)
906 {
907   struct variable *ov = var_clone (v);
908   var_set_alignment_quiet (v, alignment);
909   dict_var_changed (v, VAR_TRAIT_ALIGNMENT, ov);
910 }
911
912
913 /* Returns the default display alignment for a variable of the
914    given TYPE, as set by var_create.  The return value can be
915    used to reset a variable's display alignment to the default. */
916 enum alignment
917 var_default_alignment (enum val_type type)
918 {
919   return type == VAL_NUMERIC ? ALIGN_RIGHT : ALIGN_LEFT;
920 }
921 \f
922 /* Whether variables' values should be preserved from case to
923    case. */
924
925 /* Returns true if variable V's value should be left from case to
926    case, instead of being reset to system-missing or blanks. */
927 bool
928 var_get_leave (const struct variable *v)
929 {
930   return v->leave;
931 }
932
933 /* Sets V's leave setting to LEAVE. */
934 static void
935 var_set_leave_quiet (struct variable *v, bool leave)
936 {
937   assert (leave || !var_must_leave (v));
938   v->leave = leave;
939 }
940
941
942 /* Sets V's leave setting to LEAVE. */
943 void
944 var_set_leave (struct variable *v, bool leave)
945 {
946   struct variable *ov = var_clone (v);
947   var_set_leave_quiet (v, leave);
948   dict_var_changed (v, VAR_TRAIT_LEAVE, ov);
949 }
950
951
952 /* Returns true if V must be left from case to case,
953    false if it can be set either way. */
954 bool
955 var_must_leave (const struct variable *v)
956 {
957   return var_get_dict_class (v) == DC_SCRATCH;
958 }
959 \f
960 /* Returns the number of short names stored in VAR.
961
962    Short names are used only for system and portable file input
963    and output.  They are upper-case only, not necessarily unique,
964    and limited to SHORT_NAME_LEN characters (plus a null
965    terminator).  Ordinarily a variable has at most one short
966    name, but very long string variables (longer than 255 bytes)
967    may have more.  A variable might not have any short name at
968    all if it hasn't been saved to or read from a system or
969    portable file. */
970 size_t
971 var_get_short_name_cnt (const struct variable *var) 
972 {
973   return var->short_name_cnt;
974 }
975
976 /* Returns VAR's short name with the given IDX, if it has one
977    with that index, or a null pointer otherwise.  Short names may
978    be sparse: even if IDX is less than the number of short names
979    in VAR, this function may return a null pointer. */
980 const char *
981 var_get_short_name (const struct variable *var, size_t idx)
982 {
983   return idx < var->short_name_cnt ? var->short_names[idx] : NULL;
984 }
985
986 /* Sets VAR's short name with the given IDX to the UTF-8 string SHORT_NAME.
987    The caller must already have checked that, in the dictionary encoding,
988    SHORT_NAME is no more than SHORT_NAME_LEN bytes long.  The new short name
989    will be converted to uppercase.
990
991    Specifying a null pointer for SHORT_NAME clears the specified short name. */
992 void
993 var_set_short_name (struct variable *var, size_t idx, const char *short_name)
994 {
995   struct variable *ov = var_clone (var);
996
997   assert (short_name == NULL || id_is_plausible (short_name, false));
998
999   /* Clear old short name numbered IDX, if any. */
1000   if (idx < var->short_name_cnt) 
1001     {
1002       free (var->short_names[idx]);
1003       var->short_names[idx] = NULL; 
1004     }
1005
1006   /* Install new short name for IDX. */
1007   if (short_name != NULL) 
1008     {
1009       if (idx >= var->short_name_cnt)
1010         {
1011           size_t old_cnt = var->short_name_cnt;
1012           size_t i;
1013           var->short_name_cnt = MAX (idx * 2, 1);
1014           var->short_names = xnrealloc (var->short_names, var->short_name_cnt,
1015                                         sizeof *var->short_names);
1016           for (i = old_cnt; i < var->short_name_cnt; i++)
1017             var->short_names[i] = NULL;
1018         }
1019       var->short_names[idx] = utf8_to_upper (short_name);
1020     }
1021
1022   dict_var_changed (var, VAR_TRAIT_NAME, ov);
1023 }
1024
1025 /* Clears V's short names. */
1026 void
1027 var_clear_short_names (struct variable *v)
1028 {
1029   size_t i;
1030
1031   for (i = 0; i < v->short_name_cnt; i++)
1032     free (v->short_names[i]);
1033   free (v->short_names);
1034   v->short_names = NULL;
1035   v->short_name_cnt = 0;
1036 }
1037 \f
1038 /* Relationship with dictionary. */
1039
1040 /* Returns V's index within its dictionary, the value
1041    for which "dict_get_var (dict, index)" will return V.
1042    V must be in a dictionary. */
1043 size_t
1044 var_get_dict_index (const struct variable *v)
1045 {
1046   assert (var_has_vardict (v));
1047   return vardict_get_dict_index (v->vardict);
1048 }
1049
1050 /* Returns V's index within the case represented by its
1051    dictionary, that is, the value for which "case_data_idx (case,
1052    index)" will return the data for V in that case.
1053    V must be in a dictionary. */
1054 size_t
1055 var_get_case_index (const struct variable *v)
1056 {
1057   assert (var_has_vardict (v));
1058   return vardict_get_case_index (v->vardict);
1059 }
1060 \f
1061 /* Returns variable V's attribute set.  The caller may examine or
1062    modify the attribute set, but must not destroy it.  Destroying
1063    V, or calling var_set_attributes() on V, will also destroy its
1064    attribute set. */
1065 struct attrset *
1066 var_get_attributes (const struct variable *v) 
1067 {
1068   return CONST_CAST (struct attrset *, &v->attributes);
1069 }
1070
1071 /* Replaces variable V's attributes set by a copy of ATTRS. */
1072 static void
1073 var_set_attributes_quiet (struct variable *v, const struct attrset *attrs) 
1074 {
1075   attrset_destroy (&v->attributes);
1076   attrset_clone (&v->attributes, attrs);
1077 }
1078
1079 /* Replaces variable V's attributes set by a copy of ATTRS. */
1080 void
1081 var_set_attributes (struct variable *v, const struct attrset *attrs) 
1082 {
1083   struct variable *ov = var_clone (v);
1084   var_set_attributes_quiet (v, attrs);
1085   dict_var_changed (v, VAR_TRAIT_ATTRIBUTES, ov);
1086 }
1087
1088
1089 /* Returns true if V has any custom attributes, false if it has none. */
1090 bool
1091 var_has_attributes (const struct variable *v)
1092 {
1093   return attrset_count (&v->attributes) > 0;
1094 }
1095 \f
1096
1097 /* Creates and returns a clone of OLD_VAR.  Most properties of
1098    the new variable are copied from OLD_VAR, except:
1099
1100     - The variable's short name is not copied, because there is
1101       no reason to give a new variable with potentially a new
1102       name the same short name.
1103
1104     - The new variable is not added to OLD_VAR's dictionary by
1105       default.  Use dict_clone_var, instead, to do that.
1106 */
1107 struct variable *
1108 var_clone (const struct variable *old_var)
1109 {
1110   struct variable *new_var = var_create (var_get_name (old_var),
1111                                          var_get_width (old_var));
1112
1113   var_set_missing_values_quiet (new_var, var_get_missing_values (old_var));
1114   var_set_print_format_quiet (new_var, var_get_print_format (old_var));
1115   var_set_write_format_quiet (new_var, var_get_write_format (old_var));
1116   var_set_value_labels_quiet (new_var, var_get_value_labels (old_var));
1117   var_set_label_quiet (new_var, var_get_label (old_var), false);
1118   var_set_measure_quiet (new_var, var_get_measure (old_var));
1119   var_set_display_width_quiet (new_var, var_get_display_width (old_var));
1120   var_set_alignment_quiet (new_var, var_get_alignment (old_var));
1121   var_set_leave_quiet (new_var, var_get_leave (old_var));
1122   var_set_attributes_quiet (new_var, var_get_attributes (old_var));
1123
1124   return new_var;
1125 }
1126
1127
1128
1129 /* Returns the encoding of values of variable VAR.  (This is actually a
1130    property of the dictionary.)  Returns null if no specific encoding has been
1131    set.  */
1132 const char *
1133 var_get_encoding (const struct variable *var)
1134 {
1135   return (var_has_vardict (var)
1136           ? dict_get_encoding (vardict_get_dictionary (var->vardict))
1137           : NULL);
1138 }
1139 \f
1140 /* Returns V's vardict structure. */
1141 struct vardict_info *
1142 var_get_vardict (const struct variable *v)
1143 {
1144   return CONST_CAST (struct vardict_info *, v->vardict);
1145 }
1146
1147 /* Sets V's vardict data to VARDICT. */
1148 void
1149 var_set_vardict (struct variable *v, struct vardict_info *vardict)
1150 {
1151   v->vardict = vardict;
1152 }
1153
1154 /* Returns true if V has vardict data. */
1155 bool
1156 var_has_vardict (const struct variable *v)
1157 {
1158   return v->vardict != NULL;
1159 }
1160
1161 /* Clears V's vardict data. */
1162 void
1163 var_clear_vardict (struct variable *v)
1164 {
1165   v->vardict = NULL;
1166 }