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