1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014,
3 2015, 2020 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "data/dictionary.h"
27 #include "data/attributes.h"
28 #include "data/case.h"
29 #include "data/identifier.h"
30 #include "data/mrset.h"
31 #include "data/settings.h"
32 #include "data/value-labels.h"
33 #include "data/vardict.h"
34 #include "data/variable.h"
35 #include "data/vector.h"
36 #include "libpspp/array.h"
37 #include "libpspp/assertion.h"
38 #include "libpspp/compiler.h"
39 #include "libpspp/hash-functions.h"
40 #include "libpspp/hmap.h"
41 #include "libpspp/i18n.h"
42 #include "libpspp/message.h"
43 #include "libpspp/misc.h"
44 #include "libpspp/pool.h"
45 #include "libpspp/str.h"
46 #include "libpspp/string-array.h"
47 #include "libpspp/ll.h"
49 #include "gl/intprops.h"
50 #include "gl/minmax.h"
51 #include "gl/xalloc.h"
52 #include "gl/xmemdup0.h"
55 #define _(msgid) gettext (msgid)
61 struct vardict_info *vars; /* Variables. */
62 size_t n_vars; /* Number of variables. */
63 size_t allocated_vars; /* Allocated space in 'vars'. */
64 struct caseproto *proto; /* Prototype for dictionary cases
66 struct hmap name_map; /* Variable index by name. */
67 int next_value_idx; /* Index of next `union value' to allocate. */
68 const struct variable **split; /* SPLIT FILE vars. */
69 size_t n_splits; /* SPLIT FILE count. */
70 enum split_type split_type;
71 struct variable *weight; /* WEIGHT variable. */
72 struct variable *filter; /* FILTER variable. */
73 casenumber case_limit; /* Current case limit (N command). */
74 char *label; /* File label. */
75 struct string_array documents; /* Documents. */
76 struct vector **vector; /* Vectors of variables. */
77 size_t n_vectors; /* Number of vectors. */
78 struct attrset attributes; /* Custom attributes. */
79 struct mrset **mrsets; /* Multiple response sets. */
80 size_t n_mrsets; /* Number of multiple response sets. */
82 /* Whether variable names must be valid identifiers. Normally, this is
83 true, but sometimes a dictionary is prepared for external use
84 (e.g. output to a CSV file) where names don't have to be valid. */
85 bool names_must_be_ids;
87 char *encoding; /* Character encoding of string data */
89 const struct dict_callbacks *callbacks; /* Callbacks on dictionary
91 void *cb_data ; /* Data passed to callbacks */
93 void (*changed) (struct dictionary *, void *); /* Generic change callback */
97 static void dict_unset_split_var (struct dictionary *, struct variable *, bool);
98 static void dict_unset_mrset_var (struct dictionary *, struct variable *);
100 /* Compares two double pointers to variables, which should point
101 to elements of a struct dictionary's `var' member array. */
103 compare_var_ptrs (const void *a_, const void *b_, const void *aux UNUSED)
105 struct variable *const *a = a_;
106 struct variable *const *b = b_;
108 return *a < *b ? -1 : *a > *b;
112 unindex_var (struct dictionary *d, struct vardict_info *vardict)
114 hmap_delete (&d->name_map, &vardict->name_node);
117 /* This function assumes that vardict->name_node.hash is valid, that is, that
118 its name has not changed since it was hashed (rename_var() updates this
119 hash along with the name itself). */
121 reindex_var (struct dictionary *d, struct vardict_info *vardict, bool skip_callbacks)
123 struct variable *old = (d->callbacks && d->callbacks->var_changed
124 ? var_clone (vardict->var)
127 struct variable *var = vardict->var;
128 var_set_vardict (var, vardict);
129 hmap_insert_fast (&d->name_map, &vardict->name_node,
130 vardict->name_node.hash);
132 if (! skip_callbacks)
134 if (d->changed) d->changed (d, d->changed_data);
137 d->callbacks->var_changed (d, var_get_dict_index (var), VAR_TRAIT_POSITION, old, d->cb_data);
143 /* Sets the case_index in V's vardict to CASE_INDEX. */
145 set_var_case_index (struct variable *v, int case_index)
147 var_get_vardict (v)->case_index = case_index;
150 /* Removes the dictionary variables with indexes from FROM to TO (exclusive)
153 unindex_vars (struct dictionary *d, size_t from, size_t to)
157 for (i = from; i < to; i++)
158 unindex_var (d, &d->vars[i]);
161 /* Re-sets the dict_index in the dictionary variables with
162 indexes from FROM to TO (exclusive). */
164 reindex_vars (struct dictionary *d, size_t from, size_t to, bool skip_callbacks)
168 for (i = from; i < to; i++)
169 reindex_var (d, &d->vars[i], skip_callbacks);
174 /* Returns the encoding for data in dictionary D. The return value is a
175 nonnull string that contains an IANA character set name. */
177 dict_get_encoding (const struct dictionary *d)
182 /* Returns true if UTF-8 string ID is an acceptable identifier in DICT's
183 encoding, false otherwise. If ISSUE_ERROR is true, issues an explanatory
184 error message on failure. */
186 dict_id_is_valid (const struct dictionary *dict, const char *id,
189 return (!dict->names_must_be_ids
190 || id_is_valid (id, dict->encoding, issue_error));
194 dict_set_change_callback (struct dictionary *d,
195 void (*changed) (struct dictionary *, void*),
198 d->changed = changed;
199 d->changed_data = data;
202 /* Discards dictionary D's caseproto. (It will be regenerated
203 lazily, on demand.) */
205 invalidate_proto (struct dictionary *d)
207 caseproto_unref (d->proto);
211 /* Print a representation of dictionary D to stdout, for
212 debugging purposes. */
214 dict_dump (const struct dictionary *d)
217 for (i = 0 ; i < d->n_vars ; ++i)
219 const struct variable *v = d->vars[i].var;
220 printf ("Name: %s;\tdict_idx: %zu; case_idx: %zu\n",
222 var_get_dict_index (v),
223 var_get_case_index (v));
228 /* Associate CALLBACKS with DICT. Callbacks will be invoked whenever
229 the dictionary or any of the variables it contains are modified.
230 Each callback will get passed CALLBACK_DATA.
231 Any callback may be NULL, in which case it'll be ignored.
234 dict_set_callbacks (struct dictionary *dict,
235 const struct dict_callbacks *callbacks,
238 dict->callbacks = callbacks;
239 dict->cb_data = callback_data;
242 /* Shallow copy the callbacks from SRC to DEST */
244 dict_copy_callbacks (struct dictionary *dest,
245 const struct dictionary *src)
247 dest->callbacks = src->callbacks;
248 dest->cb_data = src->cb_data;
251 /* Creates and returns a new dictionary with the specified ENCODING. */
253 dict_create (const char *encoding)
255 struct dictionary *d = xmalloc (sizeof *d);
257 *d = (struct dictionary) {
258 .encoding = xstrdup (encoding),
259 .names_must_be_ids = true,
260 .name_map = HMAP_INITIALIZER (d->name_map),
261 .attributes = ATTRSET_INITIALIZER (d->attributes),
262 .split_type = SPLIT_NONE,
269 /* Creates and returns a (deep) copy of an existing
272 The new dictionary's case indexes are copied from the old
273 dictionary. If the new dictionary won't be used to access
274 cases produced with the old dictionary, then the new
275 dictionary's case indexes should be compacted with
276 dict_compact_values to save space.
278 Callbacks are not cloned. */
280 dict_clone (const struct dictionary *s)
282 struct dictionary *d;
285 d = dict_create (s->encoding);
286 dict_set_names_must_be_ids (d, dict_get_names_must_be_ids (s));
288 for (i = 0; i < s->n_vars; i++)
290 struct variable *sv = s->vars[i].var;
291 struct variable *dv = dict_clone_var_assert (d, sv);
294 for (i = 0; i < var_get_n_short_names (sv); i++)
295 var_set_short_name (dv, i, var_get_short_name (sv, i));
297 var_get_vardict (dv)->case_index = var_get_vardict (sv)->case_index;
300 d->next_value_idx = s->next_value_idx;
302 d->n_splits = s->n_splits;
305 d->split = xnmalloc (d->n_splits, sizeof *d->split);
306 for (i = 0; i < d->n_splits; i++)
307 d->split[i] = dict_lookup_var_assert (d, var_get_name (s->split[i]));
309 d->split_type = s->split_type;
311 if (s->weight != NULL)
312 dict_set_weight (d, dict_lookup_var_assert (d, var_get_name (s->weight)));
314 if (s->filter != NULL)
315 dict_set_filter (d, dict_lookup_var_assert (d, var_get_name (s->filter)));
317 d->case_limit = s->case_limit;
318 dict_set_label (d, dict_get_label (s));
319 dict_set_documents (d, dict_get_documents (s));
321 d->n_vectors = s->n_vectors;
322 d->vector = xnmalloc (d->n_vectors, sizeof *d->vector);
323 for (i = 0; i < s->n_vectors; i++)
324 d->vector[i] = vector_clone (s->vector[i], s, d);
326 dict_set_attributes (d, dict_get_attributes (s));
328 for (i = 0; i < s->n_mrsets; i++)
330 const struct mrset *old = s->mrsets[i];
334 /* Clone old mrset, then replace vars from D by vars from S. */
335 new = mrset_clone (old);
336 for (j = 0; j < new->n_vars; j++)
337 new->vars[j] = dict_lookup_var_assert (d, var_get_name (new->vars[j]));
339 dict_add_mrset (d, new);
347 /* Returns the SPLIT FILE vars (see cmd_split_file()). Call
348 dict_get_n_splits() to determine how many SPLIT FILE vars
349 there are. Returns a null pointer if and only if there are no
351 const struct variable *const *
352 dict_get_split_vars (const struct dictionary *d)
357 /* Returns the number of SPLIT FILE vars. */
359 dict_get_n_splits (const struct dictionary *d)
364 /* Removes variable V, which must be in D, from D's set of split
367 dict_unset_split_var (struct dictionary *d, struct variable *v, bool skip_callbacks)
371 assert (dict_contains_var (d, v));
373 orig_count = d->n_splits;
374 d->n_splits = remove_equal (d->split, d->n_splits, sizeof *d->split,
375 &v, compare_var_ptrs, NULL);
376 if (orig_count != d->n_splits && !skip_callbacks)
378 if (d->changed) d->changed (d, d->changed_data);
379 /* We changed the set of split variables so invoke the
381 if (d->callbacks && d->callbacks->split_changed)
382 d->callbacks->split_changed (d, d->cb_data);
387 /* Sets N split vars SPLIT in dictionary D. N is silently capped to a maximum
390 dict_set_split_vars__ (struct dictionary *d,
391 struct variable *const *split, size_t n,
392 enum split_type type, bool skip_callbacks)
396 assert (n == 0 || split != NULL);
399 d->split_type = type == SPLIT_NONE ? SPLIT_LAYERED : type;
402 d->split = xnrealloc (d->split, n, sizeof *d->split) ;
403 memcpy (d->split, split, n * sizeof *d->split);
413 if (d->changed) d->changed (d, d->changed_data);
414 if (d->callbacks && d->callbacks->split_changed)
415 d->callbacks->split_changed (d, d->cb_data);
420 dict_get_split_type (const struct dictionary *d)
422 return d->split_type;
425 /* Sets N split vars SPLIT in dictionary D. */
427 dict_set_split_vars (struct dictionary *d,
428 struct variable *const *split, size_t n,
429 enum split_type type)
431 dict_set_split_vars__ (d, split, n, type, false);
435 dict_clear_split_vars (struct dictionary *d)
437 dict_set_split_vars (d, NULL, 0, SPLIT_NONE);
441 /* Deletes variable V from dictionary D and frees V.
443 This is a very bad idea if there might be any pointers to V
444 from outside D. In general, no variable in the active dataset's
445 dictionary should be deleted when any transformations are
446 active on the dictionary's dataset, because those
447 transformations might reference the deleted variable. The
448 safest time to delete a variable is just after a procedure has
449 been executed, as done by DELETE VARIABLES.
451 Pointers to V within D are not a problem, because
452 dict_delete_var() knows to remove V from split variables,
453 weights, filters, etc. */
455 dict_delete_var__ (struct dictionary *d, struct variable *v, bool skip_callbacks)
457 int dict_index = var_get_dict_index (v);
458 const int case_index = var_get_case_index (v);
460 assert (dict_contains_var (d, v));
462 dict_unset_split_var (d, v, skip_callbacks);
463 dict_unset_mrset_var (d, v);
466 dict_set_weight (d, NULL);
469 dict_set_filter (d, NULL);
471 dict_clear_vectors (d);
473 /* Remove V from var array. */
474 unindex_vars (d, dict_index, d->n_vars);
475 remove_element (d->vars, d->n_vars, sizeof *d->vars, dict_index);
478 /* Update dict_index for each affected variable. */
479 reindex_vars (d, dict_index, d->n_vars, skip_callbacks);
482 var_clear_vardict (v);
484 if (! skip_callbacks)
486 if (d->changed) d->changed (d, d->changed_data);
487 if (d->callbacks && d->callbacks->var_deleted)
488 d->callbacks->var_deleted (d, v, dict_index, case_index, d->cb_data);
491 invalidate_proto (d);
495 /* Deletes variable V from dictionary D and frees V.
497 This is a very bad idea if there might be any pointers to V
498 from outside D. In general, no variable in the active dataset's
499 dictionary should be deleted when any transformations are
500 active on the dictionary's dataset, because those
501 transformations might reference the deleted variable. The
502 safest time to delete a variable is just after a procedure has
503 been executed, as done by DELETE VARIABLES.
505 Pointers to V within D are not a problem, because
506 dict_delete_var() knows to remove V from split variables,
507 weights, filters, etc. */
509 dict_delete_var (struct dictionary *d, struct variable *v)
511 dict_delete_var__ (d, v, false);
515 /* Deletes the COUNT variables listed in VARS from D. This is
516 unsafe; see the comment on dict_delete_var() for details. */
518 dict_delete_vars (struct dictionary *d,
519 struct variable *const *vars, size_t count)
521 /* FIXME: this can be done in O(count) time, but this algorithm
523 assert (count == 0 || vars != NULL);
526 dict_delete_var (d, *vars++);
529 /* Deletes the COUNT variables in D starting at index IDX. This
530 is unsafe; see the comment on dict_delete_var() for
531 details. Deleting consecutive vars will result in less callbacks
532 compared to iterating over dict_delete_var.
533 A simple while loop over dict_delete_var will
534 produce (d->n_vars - IDX) * COUNT variable changed callbacks
535 plus COUNT variable delete callbacks.
536 This here produces d->n_vars - IDX variable changed callbacks
537 plus COUNT variable delete callbacks. */
539 dict_delete_consecutive_vars (struct dictionary *d, size_t idx, size_t count)
541 assert (idx + count <= d->n_vars);
543 /* We need to store the variable and the corresponding case_index
544 for the delete callbacks later. We store them in a linked list.*/
547 struct variable *var;
550 struct ll_list list = LL_INITIALIZER (list);
552 for (size_t i = idx; i < idx + count; i++)
554 struct delvar *dv = xmalloc (sizeof (struct delvar));
556 struct variable *v = d->vars[i].var;
558 dict_unset_split_var (d, v, false);
559 dict_unset_mrset_var (d, v);
562 dict_set_weight (d, NULL);
565 dict_set_filter (d, NULL);
568 dv->case_index = var_get_case_index (v);
569 ll_push_tail (&list, (struct ll *)dv);
572 dict_clear_vectors (d);
574 /* Remove variables from var array. */
575 unindex_vars (d, idx, d->n_vars);
576 remove_range (d->vars, d->n_vars, sizeof *d->vars, idx, count);
579 /* Reindexing will result variable-changed callback */
580 reindex_vars (d, idx, d->n_vars, false);
582 invalidate_proto (d);
583 if (d->changed) d->changed (d, d->changed_data);
585 /* Now issue the variable delete callbacks and delete
586 the variables. The vardict is not valid at this point
587 anymore. That is the reason why we stored the
588 caseindex before reindexing. */
589 for (size_t vi = idx; vi < idx + count; vi++)
591 struct delvar *dv = (struct delvar *) ll_pop_head (&list);
592 var_clear_vardict (dv->var);
593 if (d->callbacks && d->callbacks->var_deleted)
594 d->callbacks->var_deleted (d, dv->var, vi, dv->case_index, d->cb_data);
600 /* Deletes scratch variables from dictionary D. */
602 dict_delete_scratch_vars (struct dictionary *d)
606 /* FIXME: this can be done in O(count) time, but this algorithm
608 for (i = 0; i < d->n_vars;)
609 if (var_get_dict_class (d->vars[i].var) == DC_SCRATCH)
610 dict_delete_var (d, d->vars[i].var);
617 /* Clears the contents from a dictionary without destroying the
618 dictionary itself. */
620 dict_clear__ (struct dictionary *d, bool skip_callbacks)
622 /* FIXME? Should we really clear case_limit, label, documents?
623 Others are necessarily cleared by deleting all the variables.*/
624 while (d->n_vars > 0)
626 dict_delete_var__ (d, d->vars[d->n_vars - 1].var, skip_callbacks);
631 d->n_vars = d->allocated_vars = 0;
632 invalidate_proto (d);
633 hmap_clear (&d->name_map);
634 d->next_value_idx = 0;
635 dict_set_split_vars__ (d, NULL, 0, SPLIT_NONE, skip_callbacks);
644 dict_set_weight (d, NULL);
645 dict_set_filter (d, NULL);
650 string_array_clear (&d->documents);
651 dict_clear_vectors (d);
652 attrset_clear (&d->attributes);
655 /* Clears the contents from a dictionary without destroying the
656 dictionary itself. */
658 dict_clear (struct dictionary *d)
660 dict_clear__ (d, false);
663 /* Clears a dictionary and destroys it. */
665 _dict_destroy (struct dictionary *d)
667 /* In general, we don't want callbacks occurring, if the dictionary
668 is being destroyed */
669 d->callbacks = NULL ;
671 dict_clear__ (d, true);
672 string_array_destroy (&d->documents);
673 hmap_destroy (&d->name_map);
674 attrset_destroy (&d->attributes);
675 dict_clear_mrsets (d);
681 dict_ref (struct dictionary *d)
688 dict_unref (struct dictionary *d)
693 assert (d->ref_cnt >= 0);
698 /* Returns the number of variables in D. */
700 dict_get_n_vars (const struct dictionary *d)
705 /* Returns the variable in D with dictionary index IDX, which
706 must be between 0 and the count returned by
707 dict_get_n_vars(), exclusive. */
709 dict_get_var (const struct dictionary *d, size_t idx)
711 assert (idx < d->n_vars);
713 return d->vars[idx].var;
716 /* Sets *VARS to an array of pointers to variables in D and *N
717 to the number of variables in *D. All variables are returned
718 except for those, if any, in the classes indicated by EXCLUDE.
719 (There is no point in putting DC_SYSTEM in EXCLUDE as
720 dictionaries never include system variables.) */
722 dict_get_vars (const struct dictionary *d, const struct variable ***vars,
723 size_t *n, enum dict_class exclude)
725 dict_get_vars_mutable (d, (struct variable ***) vars, n, exclude);
728 /* Sets *VARS to an array of pointers to variables in D and *N
729 to the number of variables in *D. All variables are returned
730 except for those, if any, in the classes indicated by EXCLUDE.
731 (There is no point in putting DC_SYSTEM in EXCLUDE as
732 dictionaries never include system variables.) */
734 dict_get_vars_mutable (const struct dictionary *d, struct variable ***vars,
735 size_t *n, enum dict_class exclude)
740 assert (exclude == (exclude & DC_ALL));
743 for (i = 0; i < d->n_vars; i++)
745 enum dict_class class = var_get_dict_class (d->vars[i].var);
746 if (!(class & exclude))
750 *vars = xnmalloc (count, sizeof **vars);
752 for (i = 0; i < d->n_vars; i++)
754 enum dict_class class = var_get_dict_class (d->vars[i].var);
755 if (!(class & exclude))
756 (*vars)[(*n)++] = d->vars[i].var;
758 assert (*n == count);
761 static struct variable *
762 add_var_with_case_index (struct dictionary *d, struct variable *v,
765 struct vardict_info *vardict;
767 assert (case_index >= d->next_value_idx);
769 /* Update dictionary. */
770 if (d->n_vars >= d->allocated_vars)
774 d->vars = x2nrealloc (d->vars, &d->allocated_vars, sizeof *d->vars);
775 hmap_clear (&d->name_map);
776 for (i = 0; i < d->n_vars; i++)
778 var_set_vardict (d->vars[i].var, &d->vars[i]);
779 hmap_insert_fast (&d->name_map, &d->vars[i].name_node,
780 d->vars[i].name_node.hash);
784 vardict = &d->vars[d->n_vars++];
787 hmap_insert (&d->name_map, &vardict->name_node,
788 utf8_hash_case_string (var_get_name (v), 0));
789 vardict->case_index = case_index;
790 var_set_vardict (v, vardict);
792 if (d->changed) d->changed (d, d->changed_data);
793 if (d->callbacks && d->callbacks->var_added)
794 d->callbacks->var_added (d, var_get_dict_index (v), d->cb_data);
796 invalidate_proto (d);
797 d->next_value_idx = case_index + 1;
802 static struct variable *
803 add_var (struct dictionary *d, struct variable *v)
805 return add_var_with_case_index (d, v, d->next_value_idx);
808 /* Creates and returns a new variable in D with the given NAME
809 and WIDTH. Returns a null pointer if the given NAME would
810 duplicate that of an existing variable in the dictionary. */
812 dict_create_var (struct dictionary *d, const char *name, int width)
814 return (dict_lookup_var (d, name) == NULL
815 ? dict_create_var_assert (d, name, width)
819 /* Creates and returns a new variable in D with the given NAME
820 and WIDTH. Assert-fails if the given NAME would duplicate
821 that of an existing variable in the dictionary. */
823 dict_create_var_assert (struct dictionary *d, const char *name, int width)
825 assert (dict_lookup_var (d, name) == NULL);
826 return add_var (d, var_create (name, width));
829 /* Creates and returns a new variable in D, as a copy of existing variable
830 OLD_VAR, which need not be in D or in any dictionary. Returns a null
831 pointer if OLD_VAR's name would duplicate that of an existing variable in
834 dict_clone_var (struct dictionary *d, const struct variable *old_var)
836 return dict_clone_var_as (d, old_var, var_get_name (old_var));
839 /* Creates and returns a new variable in D, as a copy of existing variable
840 OLD_VAR, which need not be in D or in any dictionary. Assert-fails if
841 OLD_VAR's name would duplicate that of an existing variable in the
844 dict_clone_var_assert (struct dictionary *d, const struct variable *old_var)
846 return dict_clone_var_as_assert (d, old_var, var_get_name (old_var));
849 /* Creates and returns a new variable in D with name NAME, as a copy of
850 existing variable OLD_VAR, which need not be in D or in any dictionary.
851 Returns a null pointer if the given NAME would duplicate that of an existing
852 variable in the dictionary. */
854 dict_clone_var_as (struct dictionary *d, const struct variable *old_var,
857 return (dict_lookup_var (d, name) == NULL
858 ? dict_clone_var_as_assert (d, old_var, name)
862 /* Creates and returns a new variable in D with name NAME, as a copy of
863 existing variable OLD_VAR, which need not be in D or in any dictionary.
864 Assert-fails if the given NAME would duplicate that of an existing variable
865 in the dictionary. */
867 dict_clone_var_as_assert (struct dictionary *d, const struct variable *old_var,
870 struct variable *new_var = var_clone (old_var);
871 assert (dict_lookup_var (d, name) == NULL);
872 var_set_name (new_var, name);
873 return add_var (d, new_var);
877 dict_clone_var_in_place_assert (struct dictionary *d,
878 const struct variable *old_var)
880 assert (dict_lookup_var (d, var_get_name (old_var)) == NULL);
881 return add_var_with_case_index (d, var_clone (old_var),
882 var_get_case_index (old_var));
885 /* Returns the variable named NAME in D, or a null pointer if no
886 variable has that name. */
888 dict_lookup_var (const struct dictionary *d, const char *name)
890 struct vardict_info *vardict;
892 HMAP_FOR_EACH_WITH_HASH (vardict, struct vardict_info, name_node,
893 utf8_hash_case_string (name, 0), &d->name_map)
895 struct variable *var = vardict->var;
896 if (!utf8_strcasecmp (var_get_name (var), name))
903 /* Returns the variable named NAME in D. Assert-fails if no
904 variable has that name. */
906 dict_lookup_var_assert (const struct dictionary *d, const char *name)
908 struct variable *v = dict_lookup_var (d, name);
913 /* Returns true if variable V is in dictionary D,
916 dict_contains_var (const struct dictionary *d, const struct variable *v)
918 return (var_has_vardict (v)
919 && vardict_get_dictionary (var_get_vardict (v)) == d);
922 /* Moves V to 0-based position IDX in D. Other variables in D,
923 if any, retain their relative positions. Runs in time linear
924 in the distance moved. */
926 dict_reorder_var (struct dictionary *d, struct variable *v, size_t new_index)
928 size_t old_index = var_get_dict_index (v);
930 assert (new_index < d->n_vars);
932 unindex_vars (d, MIN (old_index, new_index), MAX (old_index, new_index) + 1);
933 move_element (d->vars, d->n_vars, sizeof *d->vars, old_index, new_index);
934 reindex_vars (d, MIN (old_index, new_index), MAX (old_index, new_index) + 1, false);
937 /* Reorders the variables in D, placing the COUNT variables
938 listed in ORDER in that order at the beginning of D. The
939 other variables in D, if any, retain their relative
942 dict_reorder_vars (struct dictionary *d,
943 struct variable *const *order, size_t count)
945 struct vardict_info *new_var;
948 assert (count == 0 || order != NULL);
949 assert (count <= d->n_vars);
951 new_var = xnmalloc (d->allocated_vars, sizeof *new_var);
953 /* Add variables in ORDER to new_var. */
954 for (i = 0; i < count; i++)
956 struct vardict_info *old_var;
958 assert (dict_contains_var (d, order[i]));
960 old_var = var_get_vardict (order[i]);
961 new_var[i] = *old_var;
962 old_var->dict = NULL;
965 /* Add remaining variables to new_var. */
966 for (i = 0; i < d->n_vars; i++)
967 if (d->vars[i].dict != NULL)
968 new_var[count++] = d->vars[i];
969 assert (count == d->n_vars);
971 /* Replace old vardicts by new ones. */
975 hmap_clear (&d->name_map);
976 reindex_vars (d, 0, d->n_vars, false);
979 /* Changes the name of variable V that is currently in a dictionary to
982 rename_var (struct variable *v, const char *new_name)
984 struct vardict_info *vardict = var_get_vardict (v);
985 var_clear_vardict (v);
986 var_set_name (v, new_name);
987 vardict->name_node.hash = utf8_hash_case_string (new_name, 0);
988 var_set_vardict (v, vardict);
991 /* Tries to changes the name of V in D to name NEW_NAME. Returns true if
992 successful, false if a variable (other than V) with the given name already
995 dict_try_rename_var (struct dictionary *d, struct variable *v,
996 const char *new_name)
998 struct variable *conflict = dict_lookup_var (d, new_name);
999 if (conflict && v != conflict)
1002 struct variable *old = var_clone (v);
1003 unindex_var (d, var_get_vardict (v));
1004 rename_var (v, new_name);
1005 reindex_var (d, var_get_vardict (v), false);
1007 if (settings_get_algorithm () == ENHANCED)
1008 var_clear_short_names (v);
1010 if (d->changed) d->changed (d, d->changed_data);
1011 if (d->callbacks && d->callbacks->var_changed)
1012 d->callbacks->var_changed (d, var_get_dict_index (v), VAR_TRAIT_NAME, old, d->cb_data);
1019 /* Changes the name of V in D to name NEW_NAME. Assert-fails if
1020 a variable named NEW_NAME is already in D, except that
1021 NEW_NAME may be the same as V's existing name. */
1023 dict_rename_var (struct dictionary *d, struct variable *v,
1024 const char *new_name)
1026 bool ok UNUSED = dict_try_rename_var (d, v, new_name);
1030 /* Renames COUNT variables specified in VARS to the names given
1031 in NEW_NAMES within dictionary D. If the renaming would
1032 result in a duplicate variable name, returns false and stores a
1033 name that would be duplicated into *ERR_NAME (if ERR_NAME is
1034 non-null). Otherwise, the renaming is successful, and true
1037 dict_rename_vars (struct dictionary *d,
1038 struct variable **vars, char **new_names, size_t count,
1045 assert (count == 0 || vars != NULL);
1046 assert (count == 0 || new_names != NULL);
1048 /* Save the names of the variables to be renamed. */
1049 pool = pool_create ();
1050 old_names = pool_nalloc (pool, count, sizeof *old_names);
1051 for (i = 0; i < count; i++)
1052 old_names[i] = pool_strdup (pool, var_get_name (vars[i]));
1054 /* Remove the variables to be renamed from the name hash,
1056 for (i = 0; i < count; i++)
1058 unindex_var (d, var_get_vardict (vars[i]));
1059 rename_var (vars[i], new_names[i]);
1062 /* Add the renamed variables back into the name hash,
1063 checking for conflicts. */
1064 for (i = 0; i < count; i++)
1066 if (dict_lookup_var (d, var_get_name (vars[i])) != NULL)
1068 /* There is a name conflict.
1069 Back out all the name changes that have already
1070 taken place, and indicate failure. */
1071 size_t fail_idx = i;
1072 if (err_name != NULL)
1073 *err_name = new_names[i];
1075 for (i = 0; i < fail_idx; i++)
1076 unindex_var (d, var_get_vardict (vars[i]));
1078 for (i = 0; i < count; i++)
1080 rename_var (vars[i], old_names[i]);
1081 reindex_var (d, var_get_vardict (vars[i]), false);
1084 pool_destroy (pool);
1087 reindex_var (d, var_get_vardict (vars[i]), false);
1090 /* Clear short names. */
1091 if (settings_get_algorithm () == ENHANCED)
1092 for (i = 0; i < count; i++)
1093 var_clear_short_names (vars[i]);
1095 pool_destroy (pool);
1099 /* Returns true if a variable named NAME may be inserted in DICT;
1100 that is, if there is not already a variable with that name in
1101 DICT and if NAME is not a reserved word. (The caller's checks
1102 have already verified that NAME is otherwise acceptable as a
1105 var_name_is_insertable (const struct dictionary *dict, const char *name)
1107 return (dict_lookup_var (dict, name) == NULL
1108 && lex_id_to_token (ss_cstr (name)) == T_ID);
1112 make_hinted_name (const struct dictionary *dict, const char *hint)
1114 size_t hint_len = strlen (hint);
1115 bool dropped = false;
1120 if (hint_len > ID_MAX_LEN)
1121 hint_len = ID_MAX_LEN;
1123 /* The allocation size here is OK: characters that are copied directly fit
1124 OK, and characters that are not copied directly are replaced by a single
1125 '_' byte. If u8_mbtouc() replaces bad input by 0xfffd, then that will get
1126 replaced by '_' too. */
1127 root = rp = xmalloc (hint_len + 1);
1128 for (ofs = 0; ofs < hint_len; ofs += mblen)
1132 mblen = u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, hint + ofs),
1135 ? lex_uc_is_id1 (uc) && uc != '$'
1136 : lex_uc_is_idn (uc))
1143 rp += u8_uctomb (CHAR_CAST (uint8_t *, rp), uc, 6);
1145 else if (rp != root)
1150 if (root[0] != '\0')
1152 unsigned long int i;
1154 if (var_name_is_insertable (dict, root))
1157 for (i = 0; i < ULONG_MAX; i++)
1159 char suffix[INT_BUFSIZE_BOUND (i) + 1];
1163 if (!str_format_26adic (i + 1, true, &suffix[1], sizeof suffix - 1))
1166 name = utf8_encoding_concat (root, suffix, dict->encoding, 64);
1167 if (var_name_is_insertable (dict, name))
1182 make_numeric_name (const struct dictionary *dict, unsigned long int *num_start)
1184 unsigned long int number;
1186 for (number = num_start != NULL ? MAX (*num_start, 1) : 1;
1190 char name[3 + INT_STRLEN_BOUND (number) + 1];
1192 sprintf (name, "VAR%03lu", number);
1193 if (dict_lookup_var (dict, name) == NULL)
1195 if (num_start != NULL)
1196 *num_start = number + 1;
1197 return xstrdup (name);
1205 /* Devises and returns a variable name unique within DICT. The variable name
1206 is owned by the caller, which must free it with free() when it is no longer
1209 HINT, if it is non-null, is used as a suggestion that will be
1210 modified for suitability as a variable name and for
1213 If HINT is null or entirely unsuitable, a name in the form
1214 "VAR%03d" will be generated, where the smallest unused integer
1215 value is used. If NUM_START is non-null, then its value is
1216 used as the minimum numeric value to check, and it is updated
1217 to the next value to be checked.
1220 dict_make_unique_var_name (const struct dictionary *dict, const char *hint,
1221 unsigned long int *num_start)
1225 char *hinted_name = make_hinted_name (dict, hint);
1226 if (hinted_name != NULL)
1230 return make_numeric_name (dict, num_start);
1233 /* Returns whether variable names must be valid identifiers. Normally, this is
1234 true, but sometimes a dictionary is prepared for external use (e.g. output
1235 to a CSV file) where names don't have to be valid. */
1237 dict_get_names_must_be_ids (const struct dictionary *d)
1239 return d->names_must_be_ids;
1242 /* Sets whether variable names must be valid identifiers. Normally, this is
1243 true, but sometimes a dictionary is prepared for external use (e.g. output
1244 to a CSV file) where names don't have to be valid.
1246 Changing this setting from false to true doesn't make the dictionary check
1247 all the existing variable names, so it can cause an invariant violation. */
1249 dict_set_names_must_be_ids (struct dictionary *d, bool names_must_be_ids)
1251 d->names_must_be_ids = names_must_be_ids;
1254 /* Returns the weighting variable in dictionary D, or a null
1255 pointer if the dictionary is unweighted. */
1257 dict_get_weight (const struct dictionary *d)
1259 assert (d->weight == NULL || dict_contains_var (d, d->weight));
1264 /* Returns the value of D's weighting variable in case C, except
1265 that a negative or missing weight is returned as 0. Returns 1 if the
1266 dictionary is unweighted. Will warn about missing, negative,
1267 or zero values if *WARN_ON_INVALID is true. The function will
1268 set *WARN_ON_INVALID to false if an invalid weight is
1271 dict_get_case_weight (const struct dictionary *d, const struct ccase *c,
1272 bool *warn_on_invalid)
1276 if (d->weight == NULL)
1280 double w = case_num (c, d->weight);
1282 return var_force_valid_weight (d->weight, w, warn_on_invalid);
1286 /* Like dict_get_case_weight(), but additionally rounds each weight to the
1289 dict_get_rounded_case_weight (const struct dictionary *d,
1290 const struct ccase *c, bool *warn_on_invalid)
1292 return floor (dict_get_case_weight (d, c, warn_on_invalid) + 0.5);
1295 /* Returns the format to use for weights. */
1296 const struct fmt_spec *
1297 dict_get_weight_format (const struct dictionary *d)
1299 return d->weight ? var_get_print_format (d->weight) : &F_8_0;
1302 /* Sets the weighting variable of D to V, or turning off
1303 weighting if V is a null pointer. */
1305 dict_set_weight (struct dictionary *d, struct variable *v)
1307 assert (v == NULL || dict_contains_var (d, v));
1308 assert (v == NULL || var_is_numeric (v));
1312 if (d->changed) d->changed (d, d->changed_data);
1313 if (d->callbacks && d->callbacks->weight_changed)
1314 d->callbacks->weight_changed (d,
1315 v ? var_get_dict_index (v) : -1,
1319 /* Returns the filter variable in dictionary D (see cmd_filter())
1320 or a null pointer if the dictionary is unfiltered. */
1322 dict_get_filter (const struct dictionary *d)
1324 assert (d->filter == NULL || dict_contains_var (d, d->filter));
1329 /* Sets V as the filter variable for dictionary D. Passing a
1330 null pointer for V turn off filtering. */
1332 dict_set_filter (struct dictionary *d, struct variable *v)
1334 assert (v == NULL || dict_contains_var (d, v));
1335 assert (v == NULL || var_is_numeric (v));
1339 if (d->changed) d->changed (d, d->changed_data);
1340 if (d->callbacks && d->callbacks->filter_changed)
1341 d->callbacks->filter_changed (d,
1342 v ? var_get_dict_index (v) : -1,
1346 /* Returns the case limit for dictionary D, or zero if the number
1347 of cases is unlimited. */
1349 dict_get_case_limit (const struct dictionary *d)
1351 return d->case_limit;
1354 /* Sets CASE_LIMIT as the case limit for dictionary D. Use
1355 0 for CASE_LIMIT to indicate no limit. */
1357 dict_set_case_limit (struct dictionary *d, casenumber case_limit)
1359 d->case_limit = case_limit;
1362 /* Returns the prototype used for cases created by dictionary D. */
1363 const struct caseproto *
1364 dict_get_proto (const struct dictionary *d_)
1366 struct dictionary *d = CONST_CAST (struct dictionary *, d_);
1367 if (d->proto == NULL)
1371 d->proto = caseproto_create ();
1372 d->proto = caseproto_reserve (d->proto, d->n_vars);
1373 for (i = 0; i < d->n_vars; i++)
1374 d->proto = caseproto_set_width (d->proto,
1375 var_get_case_index (d->vars[i].var),
1376 var_get_width (d->vars[i].var));
1381 /* Returns the case index of the next value to be added to D.
1382 This value is the number of `union value's that need to be
1383 allocated to store a case for dictionary D. */
1385 dict_get_next_value_idx (const struct dictionary *d)
1387 return d->next_value_idx;
1390 /* Returns the number of bytes needed to store a case for
1393 dict_get_case_size (const struct dictionary *d)
1395 return sizeof (union value) * dict_get_next_value_idx (d);
1398 /* Reassigns values in dictionary D so that fragmentation is
1401 dict_compact_values (struct dictionary *d)
1405 d->next_value_idx = 0;
1406 for (i = 0; i < d->n_vars; i++)
1408 struct variable *v = d->vars[i].var;
1409 set_var_case_index (v, d->next_value_idx++);
1411 invalidate_proto (d);
1414 /* Returns the number of values occupied by the variables in
1415 dictionary D. All variables are considered if EXCLUDE_CLASSES
1416 is 0, or it may contain one or more of (1u << DC_ORDINARY),
1417 (1u << DC_SYSTEM), or (1u << DC_SCRATCH) to exclude the
1418 corresponding type of variable.
1420 The return value may be less than the number of values in one
1421 of dictionary D's cases (as returned by
1422 dict_get_next_value_idx) even if E is 0, because there may be
1423 gaps in D's cases due to deleted variables. */
1425 dict_count_values (const struct dictionary *d, unsigned int exclude_classes)
1427 assert ((exclude_classes & ~((1u << DC_ORDINARY)
1429 | (1u << DC_SCRATCH))) == 0);
1432 for (size_t i = 0; i < d->n_vars; i++)
1434 enum dict_class class = var_get_dict_class (d->vars[i].var);
1435 if (!(exclude_classes & (1u << class)))
1441 /* Returns the case prototype that would result after deleting
1442 all variables from D that are not in one of the
1443 EXCLUDE_CLASSES and compacting the dictionary with
1446 The caller must unref the returned caseproto when it is no
1449 dict_get_compacted_proto (const struct dictionary *d,
1450 unsigned int exclude_classes)
1452 struct caseproto *proto;
1455 assert ((exclude_classes & ~((1u << DC_ORDINARY)
1457 | (1u << DC_SCRATCH))) == 0);
1459 proto = caseproto_create ();
1460 for (i = 0; i < d->n_vars; i++)
1462 struct variable *v = d->vars[i].var;
1463 if (!(exclude_classes & (1u << var_get_dict_class (v))))
1464 proto = caseproto_add_width (proto, var_get_width (v));
1468 /* Returns the file label for D, or a null pointer if D is
1469 unlabeled (see cmd_file_label()). */
1471 dict_get_label (const struct dictionary *d)
1476 /* Sets D's file label to LABEL, truncating it to at most 60 bytes in D's
1479 Removes D's label if LABEL is null or the empty string. */
1481 dict_set_label (struct dictionary *d, const char *label)
1484 if (label == NULL || label[0] == '\0')
1487 d->label = utf8_encoding_trunc (label, d->encoding, 60);
1490 /* Returns the documents for D, as an UTF-8 encoded string_array. The
1491 return value is always nonnull; if there are no documents then the
1492 string_arary is empty.*/
1493 const struct string_array *
1494 dict_get_documents (const struct dictionary *d)
1496 return &d->documents;
1499 /* Replaces the documents for D by NEW_DOCS, a UTF-8 encoded string_array. */
1501 dict_set_documents (struct dictionary *d, const struct string_array *new_docs)
1503 /* Swap out the old documents, instead of destroying them immediately, to
1504 allow the new documents to include pointers into the old ones. */
1505 struct string_array old_docs = STRING_ARRAY_INITIALIZER;
1506 string_array_swap (&d->documents, &old_docs);
1508 for (size_t i = 0; i < new_docs->n; i++)
1509 dict_add_document_line (d, new_docs->strings[i], false);
1511 string_array_destroy (&old_docs);
1514 /* Replaces the documents for D by UTF-8 encoded string NEW_DOCS, dividing it
1515 into individual lines at new-line characters. Each line is truncated to at
1516 most DOC_LINE_LENGTH bytes in D's encoding. */
1518 dict_set_documents_string (struct dictionary *d, const char *new_docs)
1522 dict_clear_documents (d);
1523 for (s = new_docs; *s != '\0';)
1525 size_t len = strcspn (s, "\n");
1526 char *line = xmemdup0 (s, len);
1527 dict_add_document_line (d, line, false);
1536 /* Drops the documents from dictionary D. */
1538 dict_clear_documents (struct dictionary *d)
1540 string_array_clear (&d->documents);
1543 /* Appends the UTF-8 encoded LINE to the documents in D. LINE will be
1544 truncated so that it is no more than 80 bytes in the dictionary's
1545 encoding. If this causes some text to be lost, and ISSUE_WARNING is true,
1546 then a warning will be issued. */
1548 dict_add_document_line (struct dictionary *d, const char *line,
1554 trunc_len = utf8_encoding_trunc_len (line, d->encoding, DOC_LINE_LENGTH);
1555 truncated = line[trunc_len] != '\0';
1556 if (truncated && issue_warning)
1558 /* TRANSLATORS: "bytes" is correct, not characters due to UTF encoding */
1559 msg (SW, _("Truncating document line to %d bytes."), DOC_LINE_LENGTH);
1562 string_array_append_nocopy (&d->documents, xmemdup0 (line, trunc_len));
1567 /* Returns the number of document lines in dictionary D. */
1569 dict_get_document_n_lines (const struct dictionary *d)
1571 return d->documents.n;
1574 /* Returns document line number IDX in dictionary D. The caller must not
1575 modify or free the returned string. */
1577 dict_get_document_line (const struct dictionary *d, size_t idx)
1579 assert (idx < d->documents.n);
1580 return d->documents.strings[idx];
1583 /* Creates in D a vector named NAME that contains the N
1584 variables in VAR. Returns true if successful, or false if a
1585 vector named NAME already exists in D. */
1587 dict_create_vector (struct dictionary *d,
1589 struct variable **var, size_t n)
1592 for (size_t i = 0; i < n; i++)
1593 assert (dict_contains_var (d, var[i]));
1595 if (dict_lookup_vector (d, name) == NULL)
1597 d->vector = xnrealloc (d->vector, d->n_vectors + 1, sizeof *d->vector);
1598 d->vector[d->n_vectors++] = vector_create (name, var, n);
1605 /* Creates in D a vector named NAME that contains the N
1606 variables in VAR. A vector named NAME must not already exist
1609 dict_create_vector_assert (struct dictionary *d,
1611 struct variable **var, size_t n)
1613 assert (dict_lookup_vector (d, name) == NULL);
1614 dict_create_vector (d, name, var, n);
1617 /* Returns the vector in D with index IDX, which must be less
1618 than dict_get_n_vectors (D). */
1619 const struct vector *
1620 dict_get_vector (const struct dictionary *d, size_t idx)
1622 assert (idx < d->n_vectors);
1624 return d->vector[idx];
1627 /* Returns the number of vectors in D. */
1629 dict_get_n_vectors (const struct dictionary *d)
1631 return d->n_vectors;
1634 /* Looks up and returns the vector within D with the given
1636 const struct vector *
1637 dict_lookup_vector (const struct dictionary *d, const char *name)
1640 for (i = 0; i < d->n_vectors; i++)
1641 if (!utf8_strcasecmp (vector_get_name (d->vector[i]), name))
1642 return d->vector[i];
1646 /* Deletes all vectors from D. */
1648 dict_clear_vectors (struct dictionary *d)
1652 for (i = 0; i < d->n_vectors; i++)
1653 vector_destroy (d->vector[i]);
1660 /* Multiple response sets. */
1662 /* Returns the multiple response set in DICT with index IDX, which must be
1663 between 0 and the count returned by dict_get_n_mrsets(), exclusive. */
1664 const struct mrset *
1665 dict_get_mrset (const struct dictionary *dict, size_t idx)
1667 assert (idx < dict->n_mrsets);
1668 return dict->mrsets[idx];
1671 /* Returns the number of multiple response sets in DICT. */
1673 dict_get_n_mrsets (const struct dictionary *dict)
1675 return dict->n_mrsets;
1678 /* Looks for a multiple response set named NAME in DICT. If it finds one,
1679 returns its index; otherwise, returns SIZE_MAX. */
1681 dict_lookup_mrset_idx (const struct dictionary *dict, const char *name)
1685 for (i = 0; i < dict->n_mrsets; i++)
1686 if (!utf8_strcasecmp (name, dict->mrsets[i]->name))
1692 /* Looks for a multiple response set named NAME in DICT. If it finds one,
1693 returns it; otherwise, returns NULL. */
1694 const struct mrset *
1695 dict_lookup_mrset (const struct dictionary *dict, const char *name)
1697 size_t idx = dict_lookup_mrset_idx (dict, name);
1698 return idx != SIZE_MAX ? dict->mrsets[idx] : NULL;
1701 /* Adds MRSET to DICT, replacing any existing set with the same name. Returns
1702 true if a set was replaced, false if none existed with the specified name.
1704 Ownership of MRSET is transferred to DICT. */
1706 dict_add_mrset (struct dictionary *dict, struct mrset *mrset)
1710 assert (mrset_ok (mrset, dict));
1712 idx = dict_lookup_mrset_idx (dict, mrset->name);
1713 if (idx == SIZE_MAX)
1715 dict->mrsets = xrealloc (dict->mrsets,
1716 (dict->n_mrsets + 1) * sizeof *dict->mrsets);
1717 dict->mrsets[dict->n_mrsets++] = mrset;
1722 mrset_destroy (dict->mrsets[idx]);
1723 dict->mrsets[idx] = mrset;
1728 /* Looks for a multiple response set in DICT named NAME. If found, removes it
1729 from DICT and returns true. If none is found, returns false without
1732 Deleting one multiple response set causes the indexes of other sets within
1735 dict_delete_mrset (struct dictionary *dict, const char *name)
1737 size_t idx = dict_lookup_mrset_idx (dict, name);
1738 if (idx != SIZE_MAX)
1740 mrset_destroy (dict->mrsets[idx]);
1741 dict->mrsets[idx] = dict->mrsets[--dict->n_mrsets];
1748 /* Deletes all multiple response sets from DICT. */
1750 dict_clear_mrsets (struct dictionary *dict)
1754 for (i = 0; i < dict->n_mrsets; i++)
1755 mrset_destroy (dict->mrsets[i]);
1756 free (dict->mrsets);
1757 dict->mrsets = NULL;
1761 /* Removes VAR, which must be in DICT, from DICT's multiple response sets. */
1763 dict_unset_mrset_var (struct dictionary *dict, struct variable *var)
1767 assert (dict_contains_var (dict, var));
1769 for (i = 0; i < dict->n_mrsets;)
1771 struct mrset *mrset = dict->mrsets[i];
1774 for (j = 0; j < mrset->n_vars;)
1775 if (mrset->vars[j] == var)
1776 remove_element (mrset->vars, mrset->n_vars--,
1777 sizeof *mrset->vars, j);
1781 if (mrset->n_vars < 2)
1783 mrset_destroy (mrset);
1784 dict->mrsets[i] = dict->mrsets[--dict->n_mrsets];
1791 /* Returns D's attribute set. The caller may examine or modify
1792 the attribute set, but must not destroy it. Destroying D or
1793 calling dict_set_attributes for D will also destroy D's
1796 dict_get_attributes (const struct dictionary *d)
1798 return CONST_CAST (struct attrset *, &d->attributes);
1801 /* Replaces D's attributes set by a copy of ATTRS. */
1803 dict_set_attributes (struct dictionary *d, const struct attrset *attrs)
1805 attrset_destroy (&d->attributes);
1806 attrset_clone (&d->attributes, attrs);
1809 /* Returns true if D has at least one attribute in its attribute
1810 set, false if D's attribute set is empty. */
1812 dict_has_attributes (const struct dictionary *d)
1814 return attrset_count (&d->attributes) > 0;
1817 /* Called from variable.c to notify the dictionary that some property (indicated
1818 by WHAT) of the variable has changed. OLDVAR is a copy of V as it existed
1819 prior to the change. OLDVAR is destroyed by this function.
1822 dict_var_changed (const struct variable *v, unsigned int what, struct variable *oldvar)
1824 if (var_has_vardict (v))
1826 const struct vardict_info *vardict = var_get_vardict (v);
1827 struct dictionary *d = vardict->dict;
1832 if (what & (VAR_TRAIT_WIDTH | VAR_TRAIT_POSITION))
1833 invalidate_proto (d);
1835 if (d->changed) d->changed (d, d->changed_data);
1836 if (d->callbacks && d->callbacks->var_changed)
1837 d->callbacks->var_changed (d, var_get_dict_index (v), what, oldvar, d->cb_data);
1844 /* Dictionary used to contain "internal variables". */
1845 static struct dictionary *internal_dict;
1847 /* Create a variable of the specified WIDTH to be used for internal
1848 calculations only. The variable is assigned case index CASE_IDX. */
1850 dict_create_internal_var (int case_idx, int width)
1852 if (internal_dict == NULL)
1853 internal_dict = dict_create ("UTF-8");
1857 static int counter = INT_MAX / 2;
1858 struct variable *var;
1861 if (++counter == INT_MAX)
1862 counter = INT_MAX / 2;
1864 sprintf (name, "$internal%d", counter);
1865 var = dict_create_var (internal_dict, name, width);
1868 set_var_case_index (var, case_idx);
1874 /* Destroys VAR, which must have been created with
1875 dict_create_internal_var(). */
1877 dict_destroy_internal_var (struct variable *var)
1881 dict_delete_var (internal_dict, var);
1883 /* Destroy internal_dict if it has no variables left, just so that
1884 valgrind --leak-check --show-reachable won't show internal_dict. */
1885 if (dict_get_n_vars (internal_dict) == 0)
1887 dict_unref (internal_dict);
1888 internal_dict = NULL;
1894 vardict_get_dict_index (const struct vardict_info *vardict)
1896 return vardict - vardict->dict->vars;