dictionary: Fix memory leak in dict_set_encoding().
[pspp] / src / data / dictionary.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010 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 "dictionary.h"
20
21 #include <stdlib.h>
22 #include <ctype.h>
23
24 #include <data/attributes.h>
25 #include <data/case.h>
26 #include <data/category.h>
27 #include <data/identifier.h>
28 #include <data/settings.h>
29 #include <data/value-labels.h>
30 #include <data/vardict.h>
31 #include <data/variable.h>
32 #include <data/vector.h>
33 #include <libpspp/array.h>
34 #include <libpspp/assertion.h>
35 #include <libpspp/compiler.h>
36 #include <libpspp/hash.h>
37 #include <libpspp/message.h>
38 #include <libpspp/misc.h>
39 #include <libpspp/pool.h>
40 #include <libpspp/str.h>
41
42 #include "intprops.h"
43 #include "minmax.h"
44 #include "xalloc.h"
45
46 #include "gettext.h"
47 #define _(msgid) gettext (msgid)
48
49 /* A dictionary. */
50 struct dictionary
51   {
52     struct variable **var;      /* Variables. */
53     size_t var_cnt, var_cap;    /* Number of variables, capacity. */
54     struct caseproto *proto;    /* Prototype for dictionary cases
55                                    (updated lazily). */
56     struct hsh_table *name_tab; /* Variable index by name. */
57     int next_value_idx;         /* Index of next `union value' to allocate. */
58     const struct variable **split;    /* SPLIT FILE vars. */
59     size_t split_cnt;           /* SPLIT FILE count. */
60     struct variable *weight;    /* WEIGHT variable. */
61     struct variable *filter;    /* FILTER variable. */
62     casenumber case_limit;      /* Current case limit (N command). */
63     char *label;                /* File label. */
64     struct string documents;    /* Documents, as a string. */
65     struct vector **vector;     /* Vectors of variables. */
66     size_t vector_cnt;          /* Number of vectors. */
67     struct attrset attributes;  /* Custom attributes. */
68
69     char *encoding;             /* Character encoding of string data */
70
71     const struct dict_callbacks *callbacks; /* Callbacks on dictionary
72                                                modification */
73     void *cb_data ;                  /* Data passed to callbacks */
74
75     void (*changed) (struct dictionary *, void *); /* Generic change callback */
76     void *changed_data;
77   };
78
79
80 void
81 dict_set_encoding (struct dictionary *d, const char *enc)
82 {
83   if (enc)
84     {
85       free (d->encoding);
86       d->encoding = xstrdup (enc);
87     }
88 }
89
90 const char *
91 dict_get_encoding (const struct dictionary *d)
92 {
93   return d->encoding ;
94 }
95
96
97 void
98 dict_set_change_callback (struct dictionary *d,
99                           void (*changed) (struct dictionary *, void*),
100                           void *data)
101 {
102   d->changed = changed;
103   d->changed_data = data;
104 }
105
106 /* Discards dictionary D's caseproto.  (It will be regenerated
107    lazily, on demand.) */
108 static void
109 invalidate_proto (struct dictionary *d)
110 {
111   caseproto_unref (d->proto);
112   d->proto = NULL;
113 }
114
115 /* Print a representation of dictionary D to stdout, for
116    debugging purposes. */
117 void
118 dict_dump (const struct dictionary *d)
119 {
120   int i;
121   for (i = 0 ; i < d->var_cnt ; ++i )
122     {
123       const struct variable *v =
124         d->var[i];
125       printf ("Name: %s;\tdict_idx: %zu; case_idx: %zu\n",
126               var_get_name (v),
127               var_get_dict_index (v),
128               var_get_case_index (v));
129
130     }
131 }
132
133 /* Associate CALLBACKS with DICT.  Callbacks will be invoked whenever
134    the dictionary or any of the variables it contains are modified.
135    Each callback will get passed CALLBACK_DATA.
136    Any callback may be NULL, in which case it'll be ignored.
137 */
138 void
139 dict_set_callbacks (struct dictionary *dict,
140                     const struct dict_callbacks *callbacks,
141                     void *callback_data)
142 {
143   dict->callbacks = callbacks;
144   dict->cb_data = callback_data;
145 }
146
147 /* Shallow copy the callbacks from SRC to DEST */
148 void
149 dict_copy_callbacks (struct dictionary *dest,
150                      const struct dictionary *src)
151 {
152   dest->callbacks = src->callbacks;
153   dest->cb_data = src->cb_data;
154 }
155
156 /* Creates and returns a new dictionary. */
157 struct dictionary *
158 dict_create (void)
159 {
160   struct dictionary *d = xzalloc (sizeof *d);
161
162   d->name_tab = hsh_create (8, compare_vars_by_name, hash_var_by_name,
163                             NULL, NULL);
164   attrset_init (&d->attributes);
165   return d;
166 }
167
168 /* Creates and returns a (deep) copy of an existing
169    dictionary.
170
171    The new dictionary's case indexes are copied from the old
172    dictionary.  If the new dictionary won't be used to access
173    cases produced with the old dictionary, then the new
174    dictionary's case indexes should be compacted with
175    dict_compact_values to save space. */
176 struct dictionary *
177 dict_clone (const struct dictionary *s)
178 {
179   struct dictionary *d;
180   size_t i;
181
182   assert (s != NULL);
183
184   d = dict_create ();
185
186   for (i = 0; i < s->var_cnt; i++)
187     {
188       const struct vardict_info *svdi;
189       struct vardict_info dvdi;
190       struct variable *sv = s->var[i];
191       struct variable *dv = dict_clone_var_assert (d, sv);
192       size_t i;
193
194       for (i = 0; i < var_get_short_name_cnt (sv); i++)
195         var_set_short_name (dv, i, var_get_short_name (sv, i));
196
197       svdi = var_get_vardict (sv);
198       dvdi = *svdi;
199       dvdi.dict = d;
200       var_set_vardict (dv, &dvdi);
201     }
202
203   d->next_value_idx = s->next_value_idx;
204
205   d->split_cnt = s->split_cnt;
206   if (d->split_cnt > 0)
207     {
208       d->split = xnmalloc (d->split_cnt, sizeof *d->split);
209       for (i = 0; i < d->split_cnt; i++)
210         d->split[i] = dict_lookup_var_assert (d, var_get_name (s->split[i]));
211     }
212
213   if (s->weight != NULL)
214     dict_set_weight (d, dict_lookup_var_assert (d, var_get_name (s->weight)));
215
216   if (s->filter != NULL)
217     dict_set_filter (d, dict_lookup_var_assert (d, var_get_name (s->filter)));
218
219   d->case_limit = s->case_limit;
220   dict_set_label (d, dict_get_label (s));
221   dict_set_documents (d, dict_get_documents (s));
222
223   d->vector_cnt = s->vector_cnt;
224   d->vector = xnmalloc (d->vector_cnt, sizeof *d->vector);
225   for (i = 0; i < s->vector_cnt; i++)
226     d->vector[i] = vector_clone (s->vector[i], s, d);
227
228   if ( s->encoding)
229     d->encoding = xstrdup (s->encoding);
230
231   dict_set_attributes (d, dict_get_attributes (s));
232
233   return d;
234 }
235
236 /* Clears the contents from a dictionary without destroying the
237    dictionary itself. */
238 void
239 dict_clear (struct dictionary *d)
240 {
241   /* FIXME?  Should we really clear case_limit, label, documents?
242      Others are necessarily cleared by deleting all the variables.*/
243   assert (d != NULL);
244
245   while (d->var_cnt > 0 )
246     {
247       dict_delete_var (d, d->var[d->var_cnt - 1]);
248     }
249
250   free (d->var);
251   d->var = NULL;
252   d->var_cnt = d->var_cap = 0;
253   invalidate_proto (d);
254   hsh_clear (d->name_tab);
255   d->next_value_idx = 0;
256   dict_set_split_vars (d, NULL, 0);
257   dict_set_weight (d, NULL);
258   dict_set_filter (d, NULL);
259   d->case_limit = 0;
260   free (d->label);
261   d->label = NULL;
262   ds_destroy (&d->documents);
263   dict_clear_vectors (d);
264   attrset_clear (&d->attributes);
265 }
266
267 /* Destroys the aux data for every variable in D, by calling
268    var_clear_aux() for each variable. */
269 void
270 dict_clear_aux (struct dictionary *d)
271 {
272   int i;
273
274   assert (d != NULL);
275
276   for (i = 0; i < d->var_cnt; i++)
277     var_clear_aux (d->var[i]);
278 }
279
280 /* Clears a dictionary and destroys it. */
281 void
282 dict_destroy (struct dictionary *d)
283 {
284   if (d != NULL)
285     {
286       /* In general, we don't want callbacks occuring, if the dictionary
287          is being destroyed */
288       d->callbacks  = NULL ;
289
290       dict_clear (d);
291       hsh_destroy (d->name_tab);
292       attrset_destroy (&d->attributes);
293       free (d);
294     }
295 }
296
297 /* Returns the number of variables in D. */
298 size_t
299 dict_get_var_cnt (const struct dictionary *d)
300 {
301   assert (d != NULL);
302
303   return d->var_cnt;
304 }
305
306 /* Returns the variable in D with dictionary index IDX, which
307    must be between 0 and the count returned by
308    dict_get_var_cnt(), exclusive. */
309 struct variable *
310 dict_get_var (const struct dictionary *d, size_t idx)
311 {
312   assert (d != NULL);
313   assert (idx < d->var_cnt);
314
315   return d->var[idx];
316 }
317
318 /* Sets *VARS to an array of pointers to variables in D and *CNT
319    to the number of variables in *D.  All variables are returned
320    except for those, if any, in the classes indicated by EXCLUDE.
321    (There is no point in putting DC_SYSTEM in EXCLUDE as
322    dictionaries never include system variables.) */
323 void
324 dict_get_vars (const struct dictionary *d, const struct variable ***vars,
325                size_t *cnt, enum dict_class exclude)
326 {
327   dict_get_vars_mutable (d, (struct variable ***) vars, cnt, exclude);
328 }
329
330 /* Sets *VARS to an array of pointers to variables in D and *CNT
331    to the number of variables in *D.  All variables are returned
332    except for those, if any, in the classes indicated by EXCLUDE.
333    (There is no point in putting DC_SYSTEM in EXCLUDE as
334    dictionaries never include system variables.) */
335 void
336 dict_get_vars_mutable (const struct dictionary *d, struct variable ***vars,
337                        size_t *cnt, enum dict_class exclude)
338 {
339   size_t count;
340   size_t i;
341
342   assert (d != NULL);
343   assert (vars != NULL);
344   assert (cnt != NULL);
345   assert (exclude == (exclude & DC_ALL));
346
347   count = 0;
348   for (i = 0; i < d->var_cnt; i++)
349     {
350       enum dict_class class = var_get_dict_class (d->var[i]);
351       if (!(class & exclude))
352         count++;
353     }
354
355   *vars = xnmalloc (count, sizeof **vars);
356   *cnt = 0;
357   for (i = 0; i < d->var_cnt; i++)
358     {
359       enum dict_class class = var_get_dict_class (d->var[i]);
360       if (!(class & exclude))
361         (*vars)[(*cnt)++] = d->var[i];
362     }
363   assert (*cnt == count);
364 }
365
366 static struct variable *
367 add_var (struct dictionary *d, struct variable *v)
368 {
369   /* Add dictionary info to variable. */
370   struct vardict_info vdi;
371   vdi.case_index = d->next_value_idx;
372   vdi.dict_index = d->var_cnt;
373   vdi.dict = d;
374   var_set_vardict (v, &vdi);
375
376   /* Update dictionary. */
377   if (d->var_cnt >= d->var_cap)
378     {
379       d->var_cap = 8 + 2 * d->var_cap;
380       d->var = xnrealloc (d->var, d->var_cap, sizeof *d->var);
381     }
382   d->var[d->var_cnt++] = v;
383   hsh_force_insert (d->name_tab, v);
384
385   if ( d->changed ) d->changed (d, d->changed_data);
386   if ( d->callbacks &&  d->callbacks->var_added )
387     d->callbacks->var_added (d, var_get_dict_index (v), d->cb_data);
388
389   d->next_value_idx++;
390   invalidate_proto (d);
391
392   return v;
393 }
394
395 /* Creates and returns a new variable in D with the given NAME
396    and WIDTH.  Returns a null pointer if the given NAME would
397    duplicate that of an existing variable in the dictionary. */
398 struct variable *
399 dict_create_var (struct dictionary *d, const char *name, int width)
400 {
401   return (dict_lookup_var (d, name) == NULL
402           ? dict_create_var_assert (d, name, width)
403           : NULL);
404 }
405
406 /* Creates and returns a new variable in D with the given NAME
407    and WIDTH.  Assert-fails if the given NAME would duplicate
408    that of an existing variable in the dictionary. */
409 struct variable *
410 dict_create_var_assert (struct dictionary *d, const char *name, int width)
411 {
412   assert (dict_lookup_var (d, name) == NULL);
413   return add_var (d, var_create (name, width));
414 }
415
416 /* Creates and returns a new variable in D, as a copy of existing variable
417    OLD_VAR, which need not be in D or in any dictionary.  Returns a null
418    pointer if OLD_VAR's name would duplicate that of an existing variable in
419    the dictionary. */
420 struct variable *
421 dict_clone_var (struct dictionary *d, const struct variable *old_var)
422 {
423   return dict_clone_var_as (d, old_var, var_get_name (old_var));
424 }
425
426 /* Creates and returns a new variable in D, as a copy of existing variable
427    OLD_VAR, which need not be in D or in any dictionary.  Assert-fails if
428    OLD_VAR's name would duplicate that of an existing variable in the
429    dictionary. */
430 struct variable *
431 dict_clone_var_assert (struct dictionary *d, const struct variable *old_var)
432 {
433   return dict_clone_var_as_assert (d, old_var, var_get_name (old_var));
434 }
435
436 /* Creates and returns a new variable in D with name NAME, as a copy of
437    existing variable OLD_VAR, which need not be in D or in any dictionary.
438    Returns a null pointer if the given NAME would duplicate that of an existing
439    variable in the dictionary. */
440 struct variable *
441 dict_clone_var_as (struct dictionary *d, const struct variable *old_var,
442                    const char *name)
443 {
444   return (dict_lookup_var (d, name) == NULL
445           ? dict_clone_var_as_assert (d, old_var, name)
446           : NULL);
447 }
448
449 /* Creates and returns a new variable in D with name NAME, as a copy of
450    existing variable OLD_VAR, which need not be in D or in any dictionary.
451    Assert-fails if the given NAME would duplicate that of an existing variable
452    in the dictionary. */
453 struct variable *
454 dict_clone_var_as_assert (struct dictionary *d, const struct variable *old_var,
455                           const char *name)
456 {
457   struct variable *new_var = var_clone (old_var);
458   assert (dict_lookup_var (d, name) == NULL);
459   var_set_name (new_var, name);
460   return add_var (d, new_var);
461 }
462
463 /* Returns the variable named NAME in D, or a null pointer if no
464    variable has that name. */
465 struct variable *
466 dict_lookup_var (const struct dictionary *d, const char *name)
467 {
468   struct variable *target ;
469   struct variable *result ;
470
471   if ( ! var_is_plausible_name (name, false))
472     return NULL;
473
474   target = var_create (name, 0);
475   result = hsh_find (d->name_tab, target);
476   var_destroy (target);
477
478   if ( result && var_has_vardict (result)) 
479   {
480       const struct vardict_info *vdi = var_get_vardict (result);
481       assert (vdi->dict == d);
482   }
483
484   return result;
485 }
486
487 /* Returns the variable named NAME in D.  Assert-fails if no
488    variable has that name. */
489 struct variable *
490 dict_lookup_var_assert (const struct dictionary *d, const char *name)
491 {
492   struct variable *v = dict_lookup_var (d, name);
493   assert (v != NULL);
494   return v;
495 }
496
497 /* Returns true if variable V is in dictionary D,
498    false otherwise. */
499 bool
500 dict_contains_var (const struct dictionary *d, const struct variable *v)
501 {
502   if (var_has_vardict (v))
503     {
504       const struct vardict_info *vdi = var_get_vardict (v);
505       return (vdi->dict_index >= 0
506               && vdi->dict_index < d->var_cnt
507               && d->var[vdi->dict_index] == v);
508     }
509   else
510     return false;
511 }
512
513 /* Compares two double pointers to variables, which should point
514    to elements of a struct dictionary's `var' member array. */
515 static int
516 compare_var_ptrs (const void *a_, const void *b_, const void *aux UNUSED)
517 {
518   struct variable *const *a = a_;
519   struct variable *const *b = b_;
520
521   return *a < *b ? -1 : *a > *b;
522 }
523
524 /* Sets the dict_index in V's vardict to DICT_INDEX. */
525 static void
526 set_var_dict_index (struct variable *v, int dict_index)
527 {
528   struct vardict_info vdi = *var_get_vardict (v);
529   struct dictionary *d = vdi.dict;
530   vdi.dict_index = dict_index;
531   var_set_vardict (v, &vdi);
532
533   if ( d->changed ) d->changed (d, d->changed_data);
534   if ( d->callbacks &&  d->callbacks->var_changed )
535     d->callbacks->var_changed (d, dict_index, d->cb_data);
536 }
537
538 /* Sets the case_index in V's vardict to CASE_INDEX. */
539 static void
540 set_var_case_index (struct variable *v, int case_index)
541 {
542   struct vardict_info vdi = *var_get_vardict (v);
543   vdi.case_index = case_index;
544   var_set_vardict (v, &vdi);
545 }
546
547 /* Re-sets the dict_index in the dictionary variables with
548    indexes from FROM to TO (exclusive). */
549 static void
550 reindex_vars (struct dictionary *d, size_t from, size_t to)
551 {
552   size_t i;
553
554   for (i = from; i < to; i++)
555     set_var_dict_index (d->var[i], i);
556 }
557
558 /* Deletes variable V from dictionary D and frees V.
559
560    This is a very bad idea if there might be any pointers to V
561    from outside D.  In general, no variable in the active file's
562    dictionary should be deleted when any transformations are
563    active on the dictionary's dataset, because those
564    transformations might reference the deleted variable.  The
565    safest time to delete a variable is just after a procedure has
566    been executed, as done by DELETE VARIABLES.
567
568    Pointers to V within D are not a problem, because
569    dict_delete_var() knows to remove V from split variables,
570    weights, filters, etc. */
571 void
572 dict_delete_var (struct dictionary *d, struct variable *v)
573 {
574   int dict_index = var_get_dict_index (v);
575   const int case_index = var_get_case_index (v);
576   const int width = var_get_width (v);
577
578   assert (dict_contains_var (d, v));
579
580   /* Delete aux data. */
581   var_clear_aux (v);
582
583   dict_unset_split_var (d, v);
584
585   if (d->weight == v)
586     dict_set_weight (d, NULL);
587
588   if (d->filter == v)
589     dict_set_filter (d, NULL);
590
591   dict_clear_vectors (d);
592
593   /* Remove V from var array. */
594   remove_element (d->var, d->var_cnt, sizeof *d->var, dict_index);
595   d->var_cnt--;
596
597   /* Update dict_index for each affected variable. */
598   reindex_vars (d, dict_index, d->var_cnt);
599
600   /* Update name hash. */
601   hsh_force_delete (d->name_tab, v);
602
603
604   /* Free memory. */
605   var_clear_vardict (v);
606   var_destroy (v);
607
608   if ( d->changed ) d->changed (d, d->changed_data);
609
610   invalidate_proto (d);
611   if (d->callbacks &&  d->callbacks->var_deleted )
612     d->callbacks->var_deleted (d, dict_index, case_index, width, d->cb_data);
613 }
614
615 /* Deletes the COUNT variables listed in VARS from D.  This is
616    unsafe; see the comment on dict_delete_var() for details. */
617 void
618 dict_delete_vars (struct dictionary *d,
619                   struct variable *const *vars, size_t count)
620 {
621   /* FIXME: this can be done in O(count) time, but this algorithm
622      is O(count**2). */
623   assert (d != NULL);
624   assert (count == 0 || vars != NULL);
625
626   while (count-- > 0)
627     dict_delete_var (d, *vars++);
628 }
629
630 /* Deletes the COUNT variables in D starting at index IDX.  This
631    is unsafe; see the comment on dict_delete_var() for
632    details. */
633 void
634 dict_delete_consecutive_vars (struct dictionary *d, size_t idx, size_t count)
635 {
636   /* FIXME: this can be done in O(count) time, but this algorithm
637      is O(count**2). */
638   assert (idx + count <= d->var_cnt);
639
640   while (count-- > 0)
641     dict_delete_var (d, d->var[idx]);
642 }
643
644 /* Deletes scratch variables from dictionary D. */
645 void
646 dict_delete_scratch_vars (struct dictionary *d)
647 {
648   int i;
649
650   /* FIXME: this can be done in O(count) time, but this algorithm
651      is O(count**2). */
652   assert (d != NULL);
653
654   for (i = 0; i < d->var_cnt; )
655     if (var_get_dict_class (d->var[i]) == DC_SCRATCH)
656       dict_delete_var (d, d->var[i]);
657     else
658       i++;
659 }
660
661 /* Moves V to 0-based position IDX in D.  Other variables in D,
662    if any, retain their relative positions.  Runs in time linear
663    in the distance moved. */
664 void
665 dict_reorder_var (struct dictionary *d, struct variable *v, size_t new_index)
666 {
667   size_t old_index = var_get_dict_index (v);
668
669   assert (new_index < d->var_cnt);
670   move_element (d->var, d->var_cnt, sizeof *d->var, old_index, new_index);
671   reindex_vars (d, MIN (old_index, new_index), MAX (old_index, new_index) + 1);
672 }
673
674 /* Reorders the variables in D, placing the COUNT variables
675    listed in ORDER in that order at the beginning of D.  The
676    other variables in D, if any, retain their relative
677    positions. */
678 void
679 dict_reorder_vars (struct dictionary *d,
680                    struct variable *const *order, size_t count)
681 {
682   struct variable **new_var;
683   size_t i;
684
685   assert (d != NULL);
686   assert (count == 0 || order != NULL);
687   assert (count <= d->var_cnt);
688
689   new_var = xnmalloc (d->var_cap, sizeof *new_var);
690   memcpy (new_var, order, count * sizeof *new_var);
691   for (i = 0; i < count; i++)
692     {
693       size_t index = var_get_dict_index (order[i]);
694       assert (d->var[index] == order[i]);
695       d->var[index] = NULL;
696       set_var_dict_index (order[i], i);
697     }
698   for (i = 0; i < d->var_cnt; i++)
699     if (d->var[i] != NULL)
700       {
701         assert (count < d->var_cnt);
702         new_var[count] = d->var[i];
703         set_var_dict_index (new_var[count], count);
704         count++;
705       }
706   free (d->var);
707   d->var = new_var;
708 }
709
710 /* Changes the name of variable V in dictionary D to NEW_NAME. */
711 static void
712 rename_var (struct dictionary *d, struct variable *v, const char *new_name)
713 {
714   struct vardict_info vdi;
715
716   assert (dict_contains_var (d, v));
717
718   vdi = *var_get_vardict (v);
719   var_clear_vardict (v);
720   var_set_name (v, new_name);
721   var_set_vardict (v, &vdi);
722 }
723
724 /* Changes the name of V in D to name NEW_NAME.  Assert-fails if
725    a variable named NEW_NAME is already in D, except that
726    NEW_NAME may be the same as V's existing name. */
727 void
728 dict_rename_var (struct dictionary *d, struct variable *v,
729                  const char *new_name)
730 {
731   assert (!strcasecmp (var_get_name (v), new_name)
732           || dict_lookup_var (d, new_name) == NULL);
733
734   hsh_force_delete (d->name_tab, v);
735   rename_var (d, v, new_name);
736   hsh_force_insert (d->name_tab, v);
737
738   if (settings_get_algorithm () == ENHANCED)
739     var_clear_short_names (v);
740
741   if ( d->changed ) d->changed (d, d->changed_data);
742   if ( d->callbacks &&  d->callbacks->var_changed )
743     d->callbacks->var_changed (d, var_get_dict_index (v), d->cb_data);
744 }
745
746 /* Renames COUNT variables specified in VARS to the names given
747    in NEW_NAMES within dictionary D.  If the renaming would
748    result in a duplicate variable name, returns false and stores a
749    name that would be duplicated into *ERR_NAME (if ERR_NAME is
750    non-null).  Otherwise, the renaming is successful, and true
751    is returned. */
752 bool
753 dict_rename_vars (struct dictionary *d,
754                   struct variable **vars, char **new_names, size_t count,
755                   char **err_name)
756 {
757   struct pool *pool;
758   char **old_names;
759   size_t i;
760
761   assert (count == 0 || vars != NULL);
762   assert (count == 0 || new_names != NULL);
763
764   /* Save the names of the variables to be renamed. */
765   pool = pool_create ();
766   old_names = pool_nalloc (pool, count, sizeof *old_names);
767   for (i = 0; i < count; i++)
768     old_names[i] = pool_strdup (pool, var_get_name (vars[i]));
769
770   /* Remove the variables to be renamed from the name hash,
771      and rename them. */
772   for (i = 0; i < count; i++)
773     {
774       hsh_force_delete (d->name_tab, vars[i]);
775       rename_var (d, vars[i], new_names[i]);
776     }
777
778   /* Add the renamed variables back into the name hash,
779      checking for conflicts. */
780   for (i = 0; i < count; i++)
781     if (hsh_insert (d->name_tab, vars[i]) != NULL)
782       {
783         /* There is a name conflict.
784            Back out all the name changes that have already
785            taken place, and indicate failure. */
786         size_t fail_idx = i;
787         if (err_name != NULL)
788           *err_name = new_names[i];
789
790         for (i = 0; i < fail_idx; i++)
791           hsh_force_delete (d->name_tab, vars[i]);
792
793         for (i = 0; i < count; i++)
794           {
795             rename_var (d, vars[i], old_names[i]);
796             hsh_force_insert (d->name_tab, vars[i]);
797           }
798
799         pool_destroy (pool);
800         return false;
801       }
802
803   /* Clear short names. */
804   if (settings_get_algorithm () == ENHANCED)
805     for (i = 0; i < count; i++)
806       var_clear_short_names (vars[i]);
807
808   pool_destroy (pool);
809   return true;
810 }
811
812 /* Returns true if a variable named NAME may be inserted in DICT;
813    that is, if there is not already a variable with that name in
814    DICT and if NAME is not a reserved word.  (The caller's checks
815    have already verified that NAME is otherwise acceptable as a
816    variable name.) */
817 static bool
818 var_name_is_insertable (const struct dictionary *dict, const char *name)
819 {
820   return (dict_lookup_var (dict, name) == NULL
821           && lex_id_to_token (ss_cstr (name)) == T_ID);
822 }
823
824 static bool
825 make_hinted_name (const struct dictionary *dict, const char *hint,
826                   char name[VAR_NAME_LEN + 1])
827 {
828   bool dropped = false;
829   char *cp;
830
831   for (cp = name; *hint && cp < name + VAR_NAME_LEN; hint++)
832     {
833       if (cp == name
834           ? lex_is_id1 (*hint) && *hint != '$'
835           : lex_is_idn (*hint))
836         {
837           if (dropped)
838             {
839               *cp++ = '_';
840               dropped = false;
841             }
842           if (cp < name + VAR_NAME_LEN)
843             *cp++ = *hint;
844         }
845       else if (cp > name)
846         dropped = true;
847     }
848   *cp = '\0';
849
850   if (name[0] != '\0')
851     {
852       size_t len = strlen (name);
853       unsigned long int i;
854
855       if (var_name_is_insertable (dict, name))
856         return true;
857
858       for (i = 0; i < ULONG_MAX; i++)
859         {
860           char suffix[INT_BUFSIZE_BOUND (i) + 1];
861           int ofs;
862
863           suffix[0] = '_';
864           if (!str_format_26adic (i + 1, &suffix[1], sizeof suffix - 1))
865             NOT_REACHED ();
866
867           ofs = MIN (VAR_NAME_LEN - strlen (suffix), len);
868           strcpy (&name[ofs], suffix);
869
870           if (var_name_is_insertable (dict, name))
871             return true;
872         }
873     }
874
875   return false;
876 }
877
878 static bool
879 make_numeric_name (const struct dictionary *dict, unsigned long int *num_start,
880                    char name[VAR_NAME_LEN + 1])
881 {
882   unsigned long int number;
883
884   for (number = num_start != NULL ? MAX (*num_start, 1) : 1;
885        number < ULONG_MAX;
886        number++)
887     {
888       sprintf (name, "VAR%03lu", number);
889       if (dict_lookup_var (dict, name) == NULL)
890         {
891           if (num_start != NULL)
892             *num_start = number + 1;
893           return true;
894         }
895     }
896
897   if (num_start != NULL)
898     *num_start = ULONG_MAX;
899   return false;
900 }
901
902
903 /* Attempts to devise a variable name unique within DICT.
904    Returns true if successful, in which case the new variable
905    name is stored into NAME.  Returns false if all names that can
906    be generated have already been taken.  (Returning false is
907    quite unlikely: at least ULONG_MAX unique names can be
908    generated.)
909
910    HINT, if it is non-null, is used as a suggestion that will be
911    modified for suitability as a variable name and for
912    uniqueness.
913
914    If HINT is null or entirely unsuitable, a name in the form
915    "VAR%03d" will be generated, where the smallest unused integer
916    value is used.  If NUM_START is non-null, then its value is
917    used as the minimum numeric value to check, and it is updated
918    to the next value to be checked.
919    */
920 bool
921 dict_make_unique_var_name (const struct dictionary *dict, const char *hint,
922                            unsigned long int *num_start,
923                            char name[VAR_NAME_LEN + 1])
924 {
925   return ((hint != NULL && make_hinted_name (dict, hint, name))
926           || make_numeric_name (dict, num_start, name));
927 }
928
929 /* Returns the weighting variable in dictionary D, or a null
930    pointer if the dictionary is unweighted. */
931 struct variable *
932 dict_get_weight (const struct dictionary *d)
933 {
934   assert (d != NULL);
935   assert (d->weight == NULL || dict_contains_var (d, d->weight));
936
937   return d->weight;
938 }
939
940 /* Returns the value of D's weighting variable in case C, except
941    that a negative weight is returned as 0.  Returns 1 if the
942    dictionary is unweighted.  Will warn about missing, negative,
943    or zero values if *WARN_ON_INVALID is true.  The function will
944    set *WARN_ON_INVALID to false if an invalid weight is
945    found. */
946 double
947 dict_get_case_weight (const struct dictionary *d, const struct ccase *c,
948                       bool *warn_on_invalid)
949 {
950   assert (d != NULL);
951   assert (c != NULL);
952
953   if (d->weight == NULL)
954     return 1.0;
955   else
956     {
957       double w = case_num (c, d->weight);
958       if (w < 0.0 || var_is_num_missing (d->weight, w, MV_ANY))
959         w = 0.0;
960       if ( w == 0.0 && warn_on_invalid != NULL && *warn_on_invalid ) {
961           *warn_on_invalid = false;
962           msg (SW, _("At least one case in the data file had a weight value "
963                      "that was user-missing, system-missing, zero, or "
964                      "negative.  These case(s) were ignored."));
965       }
966       return w;
967     }
968 }
969
970 /* Sets the weighting variable of D to V, or turning off
971    weighting if V is a null pointer. */
972 void
973 dict_set_weight (struct dictionary *d, struct variable *v)
974 {
975   assert (d != NULL);
976   assert (v == NULL || dict_contains_var (d, v));
977   assert (v == NULL || var_is_numeric (v));
978
979   d->weight = v;
980
981   if (d->changed) d->changed (d, d->changed_data);
982   if ( d->callbacks &&  d->callbacks->weight_changed )
983     d->callbacks->weight_changed (d,
984                                   v ? var_get_dict_index (v) : -1,
985                                   d->cb_data);
986 }
987
988 /* Returns the filter variable in dictionary D (see cmd_filter())
989    or a null pointer if the dictionary is unfiltered. */
990 struct variable *
991 dict_get_filter (const struct dictionary *d)
992 {
993   assert (d != NULL);
994   assert (d->filter == NULL || dict_contains_var (d, d->filter));
995
996   return d->filter;
997 }
998
999 /* Sets V as the filter variable for dictionary D.  Passing a
1000    null pointer for V turn off filtering. */
1001 void
1002 dict_set_filter (struct dictionary *d, struct variable *v)
1003 {
1004   assert (d != NULL);
1005   assert (v == NULL || dict_contains_var (d, v));
1006   assert (v == NULL || var_is_numeric (v));
1007
1008   d->filter = v;
1009
1010   if (d->changed) d->changed (d, d->changed_data);
1011   if ( d->callbacks && d->callbacks->filter_changed )
1012     d->callbacks->filter_changed (d,
1013                                   v ? var_get_dict_index (v) : -1,
1014                                   d->cb_data);
1015 }
1016
1017 /* Returns the case limit for dictionary D, or zero if the number
1018    of cases is unlimited. */
1019 casenumber
1020 dict_get_case_limit (const struct dictionary *d)
1021 {
1022   assert (d != NULL);
1023
1024   return d->case_limit;
1025 }
1026
1027 /* Sets CASE_LIMIT as the case limit for dictionary D.  Use
1028    0 for CASE_LIMIT to indicate no limit. */
1029 void
1030 dict_set_case_limit (struct dictionary *d, casenumber case_limit)
1031 {
1032   assert (d != NULL);
1033
1034   d->case_limit = case_limit;
1035 }
1036
1037 /* Returns the prototype used for cases created by dictionary D. */
1038 const struct caseproto *
1039 dict_get_proto (const struct dictionary *d_)
1040 {
1041   struct dictionary *d = CONST_CAST (struct dictionary *, d_);
1042   if (d->proto == NULL)
1043     {
1044       size_t i;
1045
1046       d->proto = caseproto_create ();
1047       d->proto = caseproto_reserve (d->proto, d->var_cnt);
1048       for (i = 0; i < d->var_cnt; i++)
1049         d->proto = caseproto_set_width (d->proto,
1050                                         var_get_case_index (d->var[i]),
1051                                         var_get_width (d->var[i]));
1052     }
1053   return d->proto;
1054 }
1055
1056 /* Returns the case index of the next value to be added to D.
1057    This value is the number of `union value's that need to be
1058    allocated to store a case for dictionary D. */
1059 int
1060 dict_get_next_value_idx (const struct dictionary *d)
1061 {
1062   assert (d != NULL);
1063
1064   return d->next_value_idx;
1065 }
1066
1067 /* Returns the number of bytes needed to store a case for
1068    dictionary D. */
1069 size_t
1070 dict_get_case_size (const struct dictionary *d)
1071 {
1072   assert (d != NULL);
1073
1074   return sizeof (union value) * dict_get_next_value_idx (d);
1075 }
1076
1077 /* Reassigns values in dictionary D so that fragmentation is
1078    eliminated. */
1079 void
1080 dict_compact_values (struct dictionary *d)
1081 {
1082   size_t i;
1083
1084   d->next_value_idx = 0;
1085   for (i = 0; i < d->var_cnt; i++)
1086     {
1087       struct variable *v = d->var[i];
1088       set_var_case_index (v, d->next_value_idx++);
1089     }
1090   invalidate_proto (d);
1091 }
1092
1093 /* Returns the number of values occupied by the variables in
1094    dictionary D.  All variables are considered if EXCLUDE_CLASSES
1095    is 0, or it may contain one or more of (1u << DC_ORDINARY),
1096    (1u << DC_SYSTEM), or (1u << DC_SCRATCH) to exclude the
1097    corresponding type of variable.
1098
1099    The return value may be less than the number of values in one
1100    of dictionary D's cases (as returned by
1101    dict_get_next_value_idx) even if E is 0, because there may be
1102    gaps in D's cases due to deleted variables. */
1103 size_t
1104 dict_count_values (const struct dictionary *d, unsigned int exclude_classes)
1105 {
1106   size_t i;
1107   size_t cnt;
1108
1109   assert ((exclude_classes & ~((1u << DC_ORDINARY)
1110                                | (1u << DC_SYSTEM)
1111                                | (1u << DC_SCRATCH))) == 0);
1112
1113   cnt = 0;
1114   for (i = 0; i < d->var_cnt; i++)
1115     {
1116       enum dict_class class = var_get_dict_class (d->var[i]);
1117       if (!(exclude_classes & (1u << class)))
1118         cnt++;
1119     }
1120   return cnt;
1121 }
1122
1123 /* Returns the case prototype that would result after deleting
1124    all variables from D that are not in one of the
1125    EXCLUDE_CLASSES and compacting the dictionary with
1126    dict_compact().
1127
1128    The caller must unref the returned caseproto when it is no
1129    longer needed. */
1130 struct caseproto *
1131 dict_get_compacted_proto (const struct dictionary *d,
1132                           unsigned int exclude_classes)
1133 {
1134   struct caseproto *proto;
1135   size_t i;
1136
1137   assert ((exclude_classes & ~((1u << DC_ORDINARY)
1138                                | (1u << DC_SYSTEM)
1139                                | (1u << DC_SCRATCH))) == 0);
1140
1141   proto = caseproto_create ();
1142   for (i = 0; i < d->var_cnt; i++)
1143     {
1144       struct variable *v = d->var[i];
1145       if (!(exclude_classes & (1u << var_get_dict_class (v))))
1146         proto = caseproto_add_width (proto, var_get_width (v));
1147     }
1148   return proto;
1149 }
1150 \f
1151 /* Returns the SPLIT FILE vars (see cmd_split_file()).  Call
1152    dict_get_split_cnt() to determine how many SPLIT FILE vars
1153    there are.  Returns a null pointer if and only if there are no
1154    SPLIT FILE vars. */
1155 const struct variable *const *
1156 dict_get_split_vars (const struct dictionary *d)
1157 {
1158   assert (d != NULL);
1159
1160   return d->split;
1161 }
1162
1163 /* Returns the number of SPLIT FILE vars. */
1164 size_t
1165 dict_get_split_cnt (const struct dictionary *d)
1166 {
1167   assert (d != NULL);
1168
1169   return d->split_cnt;
1170 }
1171
1172 /* Removes variable V, which must be in D, from D's set of split
1173    variables. */
1174 void
1175 dict_unset_split_var (struct dictionary *d, struct variable *v)
1176 {
1177   int orig_count;
1178
1179   assert (dict_contains_var (d, v));
1180
1181   orig_count = d->split_cnt;
1182   d->split_cnt = remove_equal (d->split, d->split_cnt, sizeof *d->split,
1183                                &v, compare_var_ptrs, NULL);
1184   if (orig_count != d->split_cnt)
1185     {
1186       if (d->changed) d->changed (d, d->changed_data);
1187       /* We changed the set of split variables so invoke the
1188          callback. */
1189       if (d->callbacks &&  d->callbacks->split_changed)
1190         d->callbacks->split_changed (d, d->cb_data);
1191     }
1192 }
1193
1194 /* Sets CNT split vars SPLIT in dictionary D. */
1195 void
1196 dict_set_split_vars (struct dictionary *d,
1197                      struct variable *const *split, size_t cnt)
1198 {
1199   assert (d != NULL);
1200   assert (cnt == 0 || split != NULL);
1201
1202   d->split_cnt = cnt;
1203   if ( cnt > 0 )
1204    {
1205     d->split = xnrealloc (d->split, cnt, sizeof *d->split) ;
1206     memcpy (d->split, split, cnt * sizeof *d->split);
1207    }
1208   else
1209    {
1210     free (d->split);
1211     d->split = NULL;
1212    }
1213
1214   if (d->changed) d->changed (d, d->changed_data);
1215   if ( d->callbacks &&  d->callbacks->split_changed )
1216     d->callbacks->split_changed (d, d->cb_data);
1217 }
1218
1219 /* Returns the file label for D, or a null pointer if D is
1220    unlabeled (see cmd_file_label()). */
1221 const char *
1222 dict_get_label (const struct dictionary *d)
1223 {
1224   assert (d != NULL);
1225
1226   return d->label;
1227 }
1228
1229 /* Sets D's file label to LABEL, truncating it to a maximum of 60
1230    characters. */
1231 void
1232 dict_set_label (struct dictionary *d, const char *label)
1233 {
1234   assert (d != NULL);
1235
1236   free (d->label);
1237   d->label = label != NULL ? xstrndup (label, 60) : NULL;
1238 }
1239
1240 /* Returns the documents for D, or a null pointer if D has no
1241    documents.  If the return value is nonnull, then the string
1242    will be an exact multiple of DOC_LINE_LENGTH bytes in length,
1243    with each segment corresponding to one line. */
1244 const char *
1245 dict_get_documents (const struct dictionary *d)
1246 {
1247   return ds_is_empty (&d->documents) ? NULL : ds_cstr (&d->documents);
1248 }
1249
1250 /* Sets the documents for D to DOCUMENTS, or removes D's
1251    documents if DOCUMENT is a null pointer.  If DOCUMENTS is
1252    nonnull, then it should be an exact multiple of
1253    DOC_LINE_LENGTH bytes in length, with each segment
1254    corresponding to one line. */
1255 void
1256 dict_set_documents (struct dictionary *d, const char *documents)
1257 {
1258   size_t remainder;
1259
1260   ds_assign_cstr (&d->documents, documents != NULL ? documents : "");
1261
1262   /* In case the caller didn't get it quite right, pad out the
1263      final line with spaces. */
1264   remainder = ds_length (&d->documents) % DOC_LINE_LENGTH;
1265   if (remainder != 0)
1266     ds_put_char_multiple (&d->documents, ' ', DOC_LINE_LENGTH - remainder);
1267 }
1268
1269 /* Drops the documents from dictionary D. */
1270 void
1271 dict_clear_documents (struct dictionary *d)
1272 {
1273   ds_clear (&d->documents);
1274 }
1275
1276 /* Appends LINE to the documents in D.  LINE will be truncated or
1277    padded on the right with spaces to make it exactly
1278    DOC_LINE_LENGTH bytes long. */
1279 void
1280 dict_add_document_line (struct dictionary *d, const char *line)
1281 {
1282   if (strlen (line) > DOC_LINE_LENGTH)
1283     {
1284       /* Note to translators: "bytes" is correct, not characters */
1285       msg (SW, _("Truncating document line to %d bytes."), DOC_LINE_LENGTH);
1286     }
1287   buf_copy_str_rpad (ds_put_uninit (&d->documents, DOC_LINE_LENGTH),
1288                      DOC_LINE_LENGTH, line, ' ');
1289 }
1290
1291 /* Returns the number of document lines in dictionary D. */
1292 size_t
1293 dict_get_document_line_cnt (const struct dictionary *d)
1294 {
1295   return ds_length (&d->documents) / DOC_LINE_LENGTH;
1296 }
1297
1298 /* Copies document line number IDX from dictionary D into
1299    LINE, trimming off any trailing white space. */
1300 void
1301 dict_get_document_line (const struct dictionary *d,
1302                         size_t idx, struct string *line)
1303 {
1304   assert (idx < dict_get_document_line_cnt (d));
1305   ds_assign_substring (line, ds_substr (&d->documents, idx * DOC_LINE_LENGTH,
1306                                         DOC_LINE_LENGTH));
1307   ds_rtrim (line, ss_cstr (CC_SPACES));
1308 }
1309
1310 /* Creates in D a vector named NAME that contains the CNT
1311    variables in VAR.  Returns true if successful, or false if a
1312    vector named NAME already exists in D. */
1313 bool
1314 dict_create_vector (struct dictionary *d,
1315                     const char *name,
1316                     struct variable **var, size_t cnt)
1317 {
1318   size_t i;
1319
1320   assert (var != NULL);
1321   assert (cnt > 0);
1322   for (i = 0; i < cnt; i++)
1323     assert (dict_contains_var (d, var[i]));
1324
1325   if (dict_lookup_vector (d, name) == NULL)
1326     {
1327       d->vector = xnrealloc (d->vector, d->vector_cnt + 1, sizeof *d->vector);
1328       d->vector[d->vector_cnt++] = vector_create (name, var, cnt);
1329       return true;
1330     }
1331   else
1332     return false;
1333 }
1334
1335 /* Creates in D a vector named NAME that contains the CNT
1336    variables in VAR.  A vector named NAME must not already exist
1337    in D. */
1338 void
1339 dict_create_vector_assert (struct dictionary *d,
1340                            const char *name,
1341                            struct variable **var, size_t cnt)
1342 {
1343   assert (dict_lookup_vector (d, name) == NULL);
1344   dict_create_vector (d, name, var, cnt);
1345 }
1346
1347 /* Returns the vector in D with index IDX, which must be less
1348    than dict_get_vector_cnt (D). */
1349 const struct vector *
1350 dict_get_vector (const struct dictionary *d, size_t idx)
1351 {
1352   assert (d != NULL);
1353   assert (idx < d->vector_cnt);
1354
1355   return d->vector[idx];
1356 }
1357
1358 /* Returns the number of vectors in D. */
1359 size_t
1360 dict_get_vector_cnt (const struct dictionary *d)
1361 {
1362   assert (d != NULL);
1363
1364   return d->vector_cnt;
1365 }
1366
1367 /* Looks up and returns the vector within D with the given
1368    NAME. */
1369 const struct vector *
1370 dict_lookup_vector (const struct dictionary *d, const char *name)
1371 {
1372   size_t i;
1373   for (i = 0; i < d->vector_cnt; i++)
1374     if (!strcasecmp (vector_get_name (d->vector[i]), name))
1375       return d->vector[i];
1376   return NULL;
1377 }
1378
1379 /* Deletes all vectors from D. */
1380 void
1381 dict_clear_vectors (struct dictionary *d)
1382 {
1383   size_t i;
1384
1385   for (i = 0; i < d->vector_cnt; i++)
1386     vector_destroy (d->vector[i]);
1387   free (d->vector);
1388
1389   d->vector = NULL;
1390   d->vector_cnt = 0;
1391 }
1392
1393 /* Returns D's attribute set.  The caller may examine or modify
1394    the attribute set, but must not destroy it.  Destroying D or
1395    calling dict_set_attributes for D will also destroy D's
1396    attribute set. */
1397 struct attrset *
1398 dict_get_attributes (const struct dictionary *d) 
1399 {
1400   return CONST_CAST (struct attrset *, &d->attributes);
1401 }
1402
1403 /* Replaces D's attributes set by a copy of ATTRS. */
1404 void
1405 dict_set_attributes (struct dictionary *d, const struct attrset *attrs)
1406 {
1407   attrset_destroy (&d->attributes);
1408   attrset_clone (&d->attributes, attrs);
1409 }
1410
1411 /* Returns true if D has at least one attribute in its attribute
1412    set, false if D's attribute set is empty. */
1413 bool
1414 dict_has_attributes (const struct dictionary *d) 
1415 {
1416   return attrset_count (&d->attributes) > 0;
1417 }
1418
1419 /* Called from variable.c to notify the dictionary that some property of
1420    the variable has changed */
1421 void
1422 dict_var_changed (const struct variable *v)
1423 {
1424   if ( var_has_vardict (v))
1425     {
1426       const struct vardict_info *vdi = var_get_vardict (v);
1427       struct dictionary *d = vdi->dict;
1428
1429       if ( NULL == d)
1430         return;
1431
1432       if (d->changed ) d->changed (d, d->changed_data);
1433       if ( d->callbacks && d->callbacks->var_changed )
1434         d->callbacks->var_changed (d, var_get_dict_index (v), d->cb_data);
1435     }
1436 }
1437
1438
1439 /* Called from variable.c to notify the dictionary that the variable's width
1440    has changed */
1441 void
1442 dict_var_resized (const struct variable *v, int old_width)
1443 {
1444   if ( var_has_vardict (v))
1445     {
1446       const struct vardict_info *vdi = var_get_vardict (v);
1447       struct dictionary *d;
1448
1449       d = vdi->dict;
1450
1451       if (d->changed) d->changed (d, d->changed_data);
1452
1453       invalidate_proto (d);
1454       if ( d->callbacks && d->callbacks->var_resized )
1455         d->callbacks->var_resized (d, var_get_dict_index (v), old_width,
1456                                    d->cb_data);
1457     }
1458 }
1459
1460 /* Called from variable.c to notify the dictionary that the variable's display width
1461    has changed */
1462 void
1463 dict_var_display_width_changed (const struct variable *v)
1464 {
1465   if ( var_has_vardict (v))
1466     {
1467       const struct vardict_info *vdi = var_get_vardict (v);
1468       struct dictionary *d;
1469
1470       d = vdi->dict;
1471
1472       if (d->changed) d->changed (d, d->changed_data);
1473       if ( d->callbacks && d->callbacks->var_display_width_changed )
1474         d->callbacks->var_display_width_changed (d, var_get_dict_index (v), d->cb_data);
1475     }
1476 }
1477