e312d2e9abd2d5fce35f4b49b4ddc478c93926b9
[pspp-builds.git] / src / data / dictionary.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21
22 #include "dictionary.h"
23
24 #include <stdlib.h>
25 #include <ctype.h>
26
27 #include "case.h"
28 #include "cat-routines.h"
29 #include "category.h"
30 #include "settings.h"
31 #include "value-labels.h"
32 #include "vardict.h"
33 #include "variable.h"
34 #include "vector.h"
35 #include <libpspp/alloc.h>
36 #include <libpspp/array.h>
37 #include <libpspp/compiler.h>
38 #include <libpspp/hash.h>
39 #include <libpspp/message.h>
40 #include <libpspp/misc.h>
41 #include <libpspp/pool.h>
42 #include <libpspp/str.h>
43
44 #include "minmax.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 hsh_table *name_tab; /* Variable index by name. */
55     int next_value_idx;         /* Index of next `union value' to allocate. */
56     struct variable **split;    /* SPLIT FILE vars. */
57     size_t split_cnt;           /* SPLIT FILE count. */
58     struct variable *weight;    /* WEIGHT variable. */
59     struct variable *filter;    /* FILTER variable. */
60     size_t case_limit;          /* Current case limit (N command). */
61     char *label;                /* File label. */
62     char *documents;            /* Documents, as a string. */
63     struct vector **vector;     /* Vectors of variables. */
64     size_t vector_cnt;          /* Number of vectors. */
65   };
66
67 /* Creates and returns a new dictionary. */
68 struct dictionary *
69 dict_create (void) 
70 {
71   struct dictionary *d = xmalloc (sizeof *d);
72   
73   d->var = NULL;
74   d->var_cnt = d->var_cap = 0;
75   d->name_tab = hsh_create (8, compare_vars_by_name, hash_var_by_name,
76                             NULL, NULL);
77   d->next_value_idx = 0;
78   d->split = NULL;
79   d->split_cnt = 0;
80   d->weight = NULL;
81   d->filter = NULL;
82   d->case_limit = 0;
83   d->label = NULL;
84   d->documents = NULL;
85   d->vector = NULL;
86   d->vector_cnt = 0;
87
88   return d;
89 }
90
91 /* Creates and returns a (deep) copy of an existing
92    dictionary. */
93 struct dictionary *
94 dict_clone (const struct dictionary *s) 
95 {
96   struct dictionary *d;
97   size_t i;
98
99   assert (s != NULL);
100
101   d = dict_create ();
102
103   for (i = 0; i < s->var_cnt; i++) 
104     {
105       struct variable *sv = s->var[i];
106       struct variable *dv = dict_clone_var_assert (d, sv, var_get_name (sv));
107       var_set_short_name (dv, var_get_short_name (sv));
108     }
109
110   d->next_value_idx = s->next_value_idx;
111
112   d->split_cnt = s->split_cnt;
113   if (d->split_cnt > 0) 
114     {
115       d->split = xnmalloc (d->split_cnt, sizeof *d->split);
116       for (i = 0; i < d->split_cnt; i++) 
117         d->split[i] = dict_lookup_var_assert (d, var_get_name (s->split[i]));
118     }
119
120   if (s->weight != NULL) 
121     d->weight = dict_lookup_var_assert (d, var_get_name (s->weight));
122
123   if (s->filter != NULL) 
124     d->filter = dict_lookup_var_assert (d, var_get_name (s->filter));
125
126   d->case_limit = s->case_limit;
127   dict_set_label (d, dict_get_label (s));
128   dict_set_documents (d, dict_get_documents (s));
129
130   d->vector_cnt = s->vector_cnt;
131   d->vector = xnmalloc (d->vector_cnt, sizeof *d->vector);
132   for (i = 0; i < s->vector_cnt; i++)
133     d->vector[i] = vector_clone (s->vector[i], s, d);
134
135   return d;
136 }
137
138 /* Clears the contents from a dictionary without destroying the
139    dictionary itself. */
140 void
141 dict_clear (struct dictionary *d) 
142 {
143   /* FIXME?  Should we really clear case_limit, label, documents?
144      Others are necessarily cleared by deleting all the variables.*/
145   int i;
146
147   assert (d != NULL);
148
149   for (i = 0; i < d->var_cnt; i++)
150     {
151       var_clear_vardict (d->var[i]);
152       var_destroy (d->var[i]); 
153     }
154   free (d->var);
155   d->var = NULL;
156   d->var_cnt = d->var_cap = 0;
157   hsh_clear (d->name_tab);
158   d->next_value_idx = 0;
159   free (d->split);
160   d->split = NULL;
161   d->split_cnt = 0;
162   d->weight = NULL;
163   d->filter = NULL;
164   d->case_limit = 0;
165   free (d->label);
166   d->label = NULL;
167   free (d->documents);
168   d->documents = NULL;
169   dict_clear_vectors (d);
170 }
171
172 /* Destroys the aux data for every variable in D, by calling
173    var_clear_aux() for each variable. */
174 void
175 dict_clear_aux (struct dictionary *d) 
176 {
177   int i;
178   
179   assert (d != NULL);
180   
181   for (i = 0; i < d->var_cnt; i++)
182     var_clear_aux (d->var[i]);
183 }
184
185 /* Clears a dictionary and destroys it. */
186 void
187 dict_destroy (struct dictionary *d)
188 {
189   if (d != NULL) 
190     {
191       dict_clear (d);
192       hsh_destroy (d->name_tab);
193       free (d);
194     }
195 }
196
197 /* Returns the number of variables in D. */
198 size_t
199 dict_get_var_cnt (const struct dictionary *d) 
200 {
201   assert (d != NULL);
202
203   return d->var_cnt;
204 }
205
206 /* Returns the variable in D with dictionary index IDX, which
207    must be between 0 and the count returned by
208    dict_get_var_cnt(), exclusive. */
209 struct variable *
210 dict_get_var (const struct dictionary *d, size_t idx) 
211 {
212   assert (d != NULL);
213   assert (idx < d->var_cnt);
214
215   return d->var[idx];
216 }
217
218 /* Sets *VARS to an array of pointers to variables in D and *CNT
219    to the number of variables in *D.  All variables are returned
220    if EXCLUDE_CLASSES is 0, or it may contain one or more of (1u
221    << DC_ORDINARY), (1u << DC_SYSTEM), or (1u << DC_SCRATCH) to
222    exclude the corresponding type of variable. */
223 void
224 dict_get_vars (const struct dictionary *d, struct variable ***vars,
225                size_t *cnt, unsigned exclude_classes)
226 {
227   size_t count;
228   size_t i;
229   
230   assert (d != NULL);
231   assert (vars != NULL);
232   assert (cnt != NULL);
233   assert ((exclude_classes & ~((1u << DC_ORDINARY)
234                                | (1u << DC_SYSTEM)
235                                | (1u << DC_SCRATCH))) == 0);
236   
237   count = 0;
238   for (i = 0; i < d->var_cnt; i++)
239     {
240       enum dict_class class = dict_class_from_id (var_get_name (d->var[i]));
241       if (!(exclude_classes & (1u << class)))
242         count++;
243     }
244   
245   *vars = xnmalloc (count, sizeof **vars);
246   *cnt = 0;
247   for (i = 0; i < d->var_cnt; i++) 
248     {
249       enum dict_class class = dict_class_from_id (var_get_name (d->var[i]));
250       if (!(exclude_classes & (1u << class)))
251         (*vars)[(*cnt)++] = d->var[i]; 
252     }
253   assert (*cnt == count);
254 }
255
256 static struct variable *
257 add_var (struct dictionary *d, struct variable *v) 
258 {
259   /* Add dictionary info to variable. */
260   struct vardict_info vdi;
261   vdi.case_index = d->next_value_idx;
262   vdi.dict_index = d->var_cnt;
263   var_set_vardict (v, &vdi);
264
265   /* Update dictionary. */
266   if (d->var_cnt >= d->var_cap) 
267     {
268       d->var_cap = 8 + 2 * d->var_cap; 
269       d->var = xnrealloc (d->var, d->var_cap, sizeof *d->var);
270     }
271   d->var[d->var_cnt++] = v;
272   hsh_force_insert (d->name_tab, v);
273
274   d->next_value_idx += var_get_value_cnt (v);
275
276   return v;
277 }
278
279 /* Creates and returns a new variable in D with the given NAME
280    and WIDTH.  Returns a null pointer if the given NAME would
281    duplicate that of an existing variable in the dictionary. */
282 struct variable *
283 dict_create_var (struct dictionary *d, const char *name, int width)
284 {
285   return (dict_lookup_var (d, name) == NULL
286           ? dict_create_var_assert (d, name, width)
287           : NULL);
288 }
289
290 /* Creates and returns a new variable in D with the given NAME
291    and WIDTH.  Assert-fails if the given NAME would duplicate
292    that of an existing variable in the dictionary. */
293 struct variable *
294 dict_create_var_assert (struct dictionary *d, const char *name, int width)
295 {
296   assert (dict_lookup_var (d, name) == NULL);
297   return add_var (d, var_create (name, width));
298 }
299
300 /* Creates and returns a new variable in D with name NAME, as a
301    copy of existing variable OLD_VAR, which need not be in D or
302    in any dictionary.  Returns a null pointer if the given NAME
303    would duplicate that of an existing variable in the
304    dictionary. */
305 struct variable *
306 dict_clone_var (struct dictionary *d, const struct variable *old_var,
307                 const char *name)
308 {
309   return (dict_lookup_var (d, name) == NULL
310           ? dict_clone_var_assert (d, old_var, name)
311           : NULL);
312 }
313
314 /* Creates and returns a new variable in D with name NAME, as a
315    copy of existing variable OLD_VAR, which need not be in D or
316    in any dictionary.  Assert-fails if the given NAME would
317    duplicate that of an existing variable in the dictionary. */
318 struct variable *
319 dict_clone_var_assert (struct dictionary *d, const struct variable *old_var,
320                        const char *name)
321 {
322   struct variable *new_var = var_clone (old_var);
323   assert (dict_lookup_var (d, name) == NULL);
324   var_set_name (new_var, name);
325   return add_var (d, new_var);
326 }
327
328 /* Returns the variable named NAME in D, or a null pointer if no
329    variable has that name. */
330 struct variable *
331 dict_lookup_var (const struct dictionary *d, const char *name)
332 {
333   struct variable *target = var_create (name, 0);
334   struct variable *result = hsh_find (d->name_tab, target);
335   var_destroy (target);
336   return result;
337 }
338
339 /* Returns the variable named NAME in D.  Assert-fails if no
340    variable has that name. */
341 struct variable *
342 dict_lookup_var_assert (const struct dictionary *d, const char *name)
343 {
344   struct variable *v = dict_lookup_var (d, name);
345   assert (v != NULL);
346   return v;
347 }
348
349 /* Returns true if variable V is in dictionary D,
350    false otherwise. */
351 bool
352 dict_contains_var (const struct dictionary *d, const struct variable *v)
353 {
354   if (var_has_vardict (v)) 
355     {
356       const struct vardict_info *vdi = var_get_vardict (v);
357       return (vdi->dict_index >= 0
358               && vdi->dict_index < d->var_cnt
359               && d->var[vdi->dict_index] == v); 
360     }
361   else
362     return false;
363 }
364
365 /* Compares two double pointers to variables, which should point
366    to elements of a struct dictionary's `var' member array. */
367 static int
368 compare_var_ptrs (const void *a_, const void *b_, const void *aux UNUSED) 
369 {
370   struct variable *const *a = a_;
371   struct variable *const *b = b_;
372
373   return *a < *b ? -1 : *a > *b;
374 }
375
376 /* Sets the dict_index in V's vardict to DICT_INDEX. */
377 static void
378 set_var_dict_index (struct variable *v, int dict_index)
379 {
380   struct vardict_info vdi = *var_get_vardict (v);
381   vdi.dict_index = dict_index;
382   var_set_vardict (v, &vdi); 
383 }
384
385 /* Sets the case_index in V's vardict to DICT_INDEX. */
386 static void
387 set_var_case_index (struct variable *v, int case_index)
388 {
389   struct vardict_info vdi = *var_get_vardict (v);
390   vdi.case_index = case_index;
391   var_set_vardict (v, &vdi); 
392 }
393
394 /* Re-sets the dict_index in the dictionary variables with
395    indexes from FROM to TO (exclusive). */
396 static void
397 reindex_vars (struct dictionary *d, size_t from, size_t to) 
398 {
399   size_t i;
400   
401   for (i = from; i < to; i++)
402     set_var_dict_index (d->var[i], i);
403 }
404
405 /* Deletes variable V from dictionary D and frees V.
406
407    This is a very bad idea if there might be any pointers to V
408    from outside D.  In general, no variable in should be deleted when 
409    any transformations are active on the dictionary's dataset, because
410    those transformations might reference the deleted variable.
411    The safest time to delete a variable is just after a procedure
412    has been executed, as done by MODIFY VARS.
413
414    Pointers to V within D are not a problem, because
415    dict_delete_var() knows to remove V from split variables,
416    weights, filters, etc. */
417 void
418 dict_delete_var (struct dictionary *d, struct variable *v) 
419 {
420   int dict_index = var_get_dict_index (v);
421
422   assert (dict_contains_var (d, v));
423
424   /* Delete aux data. */
425   var_clear_aux (v);
426
427   /* Remove V from splits, weight, filter variables. */
428   d->split_cnt = remove_equal (d->split, d->split_cnt, sizeof *d->split,
429                                &v, compare_var_ptrs, NULL);
430   if (d->weight == v)
431     d->weight = NULL;
432   if (d->filter == v)
433     d->filter = NULL;
434   dict_clear_vectors (d);
435
436   /* Remove V from var array. */
437   remove_element (d->var, d->var_cnt, sizeof *d->var, dict_index);
438   d->var_cnt--;
439
440   /* Update dict_index for each affected variable. */
441   reindex_vars (d, dict_index, d->var_cnt);
442
443   /* Update name hash. */
444   hsh_force_delete (d->name_tab, v);
445
446   /* Free memory. */
447   var_clear_vardict (v);
448   var_destroy (v);
449 }
450
451 /* Deletes the COUNT variables listed in VARS from D.  This is
452    unsafe; see the comment on dict_delete_var() for details. */
453 void 
454 dict_delete_vars (struct dictionary *d,
455                   struct variable *const *vars, size_t count) 
456 {
457   /* FIXME: this can be done in O(count) time, but this algorithm
458      is O(count**2). */
459   assert (d != NULL);
460   assert (count == 0 || vars != NULL);
461
462   while (count-- > 0)
463     dict_delete_var (d, *vars++);
464 }
465
466 /* Deletes scratch variables from dictionary D. */
467 void
468 dict_delete_scratch_vars (struct dictionary *d)
469 {
470   int i;
471
472   /* FIXME: this can be done in O(count) time, but this algorithm
473      is O(count**2). */
474   assert (d != NULL);
475
476   for (i = 0; i < d->var_cnt; )
477     if (dict_class_from_id (var_get_name (d->var[i])) == DC_SCRATCH)
478       dict_delete_var (d, d->var[i]);
479     else
480       i++;
481 }
482
483 /* Moves V to 0-based position IDX in D.  Other variables in D,
484    if any, retain their relative positions.  Runs in time linear
485    in the distance moved. */
486 void
487 dict_reorder_var (struct dictionary *d, struct variable *v, size_t new_index) 
488 {
489   size_t old_index = var_get_dict_index (v);
490
491   assert (new_index < d->var_cnt);
492   move_element (d->var, d->var_cnt, sizeof *d->var, old_index, new_index);
493   reindex_vars (d, MIN (old_index, new_index), MAX (old_index, new_index) + 1);
494 }
495
496 /* Reorders the variables in D, placing the COUNT variables
497    listed in ORDER in that order at the beginning of D.  The
498    other variables in D, if any, retain their relative
499    positions. */
500 void 
501 dict_reorder_vars (struct dictionary *d,
502                    struct variable *const *order, size_t count) 
503 {
504   struct variable **new_var;
505   size_t i;
506   
507   assert (d != NULL);
508   assert (count == 0 || order != NULL);
509   assert (count <= d->var_cnt);
510
511   new_var = xnmalloc (d->var_cnt, sizeof *new_var);
512   memcpy (new_var, order, count * sizeof *new_var);
513   for (i = 0; i < count; i++) 
514     {
515       size_t index = var_get_dict_index (order[i]);
516       assert (d->var[index] == order[i]);
517       d->var[index] = NULL;
518       set_var_dict_index (order[i], i);
519     }
520   for (i = 0; i < d->var_cnt; i++)
521     if (d->var[i] != NULL)
522       {
523         assert (count < d->var_cnt);
524         new_var[count] = d->var[i];
525         set_var_dict_index (new_var[count], count);
526         count++;
527       }
528   free (d->var);
529   d->var = new_var;
530 }
531
532 /* Changes the name of variable V in dictionary D to NEW_NAME. */
533 static void
534 rename_var (struct dictionary *d, struct variable *v, const char *new_name) 
535 {
536   struct vardict_info vdi;
537
538   assert (dict_contains_var (d, v));
539
540   vdi = *var_get_vardict (v);
541   var_clear_vardict (v);
542   var_set_name (v, new_name);
543   var_set_vardict (v, &vdi);
544 }
545
546 /* Changes the name of V in D to name NEW_NAME.  Assert-fails if
547    a variable named NEW_NAME is already in D, except that
548    NEW_NAME may be the same as V's existing name. */
549 void 
550 dict_rename_var (struct dictionary *d, struct variable *v,
551                  const char *new_name) 
552 {
553   assert (!strcasecmp (var_get_name (v), new_name)
554           || dict_lookup_var (d, new_name) == NULL);
555
556   hsh_force_delete (d->name_tab, v);
557   rename_var (d, v, new_name);
558   hsh_force_insert (d->name_tab, v);
559
560   if (get_algorithm () == ENHANCED)
561     var_clear_short_name (v);
562 }
563
564 /* Renames COUNT variables specified in VARS to the names given
565    in NEW_NAMES within dictionary D.  If the renaming would
566    result in a duplicate variable name, returns false and stores a
567    name that would be duplicated into *ERR_NAME (if ERR_NAME is
568    non-null).  Otherwise, the renaming is successful, and true
569    is returned. */
570 bool
571 dict_rename_vars (struct dictionary *d,
572                   struct variable **vars, char **new_names, size_t count,
573                   char **err_name) 
574 {
575   struct pool *pool;
576   char **old_names;
577   size_t i;
578
579   assert (count == 0 || vars != NULL);
580   assert (count == 0 || new_names != NULL);
581
582   /* Save the names of the variables to be renamed. */
583   pool = pool_create ();
584   old_names = pool_nalloc (pool, count, sizeof *old_names);
585   for (i = 0; i < count; i++) 
586     old_names[i] = pool_strdup (pool, var_get_name (vars[i]));
587   
588   /* Remove the variables to be renamed from the name hash,
589      and rename them. */
590   for (i = 0; i < count; i++) 
591     {
592       hsh_force_delete (d->name_tab, vars[i]);
593       rename_var (d, vars[i], new_names[i]);
594     }
595
596   /* Add the renamed variables back into the name hash,
597      checking for conflicts. */
598   for (i = 0; i < count; i++)
599     if (hsh_insert (d->name_tab, vars[i]) != NULL)
600       {
601         /* There is a name conflict.
602            Back out all the name changes that have already
603            taken place, and indicate failure. */
604         size_t fail_idx = i;
605         if (err_name != NULL) 
606           *err_name = new_names[i];
607
608         for (i = 0; i < fail_idx; i++)
609           hsh_force_delete (d->name_tab, vars[i]);
610           
611         for (i = 0; i < count; i++)
612           {
613             rename_var (d, vars[i], old_names[i]);
614             hsh_force_insert (d->name_tab, vars[i]);
615           }
616
617         pool_destroy (pool);
618         return false;
619       }
620
621   /* Clear short names. */
622   if (get_algorithm () == ENHANCED)
623     for (i = 0; i < count; i++)
624       var_clear_short_name (vars[i]);
625
626   pool_destroy (pool);
627   return true;
628 }
629
630 /* Returns the weighting variable in dictionary D, or a null
631    pointer if the dictionary is unweighted. */
632 struct variable *
633 dict_get_weight (const struct dictionary *d) 
634 {
635   assert (d != NULL);
636   assert (d->weight == NULL || dict_contains_var (d, d->weight));
637   
638   return d->weight;
639 }
640
641 /* Returns the value of D's weighting variable in case C, except that a
642    negative weight is returned as 0.  Returns 1 if the dictionary is
643    unweighted. Will warn about missing, negative, or zero values if
644    warn_on_invalid is true. The function will set warn_on_invalid to false
645    if an invalid weight is found. */
646 double
647 dict_get_case_weight (const struct dictionary *d, const struct ccase *c, 
648                       bool *warn_on_invalid)
649 {
650   assert (d != NULL);
651   assert (c != NULL);
652
653   if (d->weight == NULL)
654     return 1.0;
655   else 
656     {
657       double w = case_num (c, d->weight);
658       if (w < 0.0 || var_is_num_missing (d->weight, w))
659         w = 0.0;
660       if ( w == 0.0 && *warn_on_invalid ) {
661           *warn_on_invalid = false;
662           msg (SW, _("At least one case in the data file had a weight value "
663                      "that was user-missing, system-missing, zero, or "
664                      "negative.  These case(s) were ignored."));
665       }
666       return w;
667     }
668 }
669
670 /* Sets the weighting variable of D to V, or turning off
671    weighting if V is a null pointer. */
672 void
673 dict_set_weight (struct dictionary *d, struct variable *v) 
674 {
675   assert (d != NULL);
676   assert (v == NULL || dict_contains_var (d, v));
677   assert (v == NULL || var_is_numeric (v));
678
679   d->weight = v;
680 }
681
682 /* Returns the filter variable in dictionary D (see cmd_filter())
683    or a null pointer if the dictionary is unfiltered. */
684 struct variable *
685 dict_get_filter (const struct dictionary *d) 
686 {
687   assert (d != NULL);
688   assert (d->filter == NULL || dict_contains_var (d, d->filter));
689   
690   return d->filter;
691 }
692
693 /* Sets V as the filter variable for dictionary D.  Passing a
694    null pointer for V turn off filtering. */
695 void
696 dict_set_filter (struct dictionary *d, struct variable *v)
697 {
698   assert (d != NULL);
699   assert (v == NULL || dict_contains_var (d, v));
700
701   d->filter = v;
702 }
703
704 /* Returns the case limit for dictionary D, or zero if the number
705    of cases is unlimited. */
706 size_t
707 dict_get_case_limit (const struct dictionary *d) 
708 {
709   assert (d != NULL);
710
711   return d->case_limit;
712 }
713
714 /* Sets CASE_LIMIT as the case limit for dictionary D.  Use
715    0 for CASE_LIMIT to indicate no limit. */
716 void
717 dict_set_case_limit (struct dictionary *d, size_t case_limit) 
718 {
719   assert (d != NULL);
720
721   d->case_limit = case_limit;
722 }
723
724 /* Returns the case index of the next value to be added to D.
725    This value is the number of `union value's that need to be
726    allocated to store a case for dictionary D. */
727 int
728 dict_get_next_value_idx (const struct dictionary *d) 
729 {
730   assert (d != NULL);
731
732   return d->next_value_idx;
733 }
734
735 /* Returns the number of bytes needed to store a case for
736    dictionary D. */
737 size_t
738 dict_get_case_size (const struct dictionary *d) 
739 {
740   assert (d != NULL);
741
742   return sizeof (union value) * dict_get_next_value_idx (d);
743 }
744
745 /* Deletes scratch variables in dictionary D and reassigns values
746    so that fragmentation is eliminated. */
747 void
748 dict_compact_values (struct dictionary *d) 
749 {
750   size_t i;
751
752   d->next_value_idx = 0;
753   for (i = 0; i < d->var_cnt; )
754     {
755       struct variable *v = d->var[i];
756
757       if (dict_class_from_id (var_get_name (v)) != DC_SCRATCH) 
758         {
759           set_var_case_index (v, d->next_value_idx);
760           d->next_value_idx += var_get_value_cnt (v);
761           i++;
762         }
763       else
764         dict_delete_var (d, v);
765     }
766 }
767
768 /* Returns the number of values that would be used by a case if
769    dict_compact_values() were called. */
770 size_t
771 dict_get_compacted_value_cnt (const struct dictionary *d) 
772 {
773   size_t i;
774   size_t cnt;
775
776   cnt = 0;
777   for (i = 0; i < d->var_cnt; i++)
778     if (dict_class_from_id (var_get_name (d->var[i])) != DC_SCRATCH) 
779       cnt += var_get_value_cnt (d->var[i]);
780   return cnt;
781 }
782
783 /* Creates and returns an array mapping from a dictionary index
784    to the case index that the corresponding variable will have
785    after calling dict_compact_values().  Scratch variables
786    receive -1 for case index because dict_compact_values() will
787    delete them. */
788 int *
789 dict_get_compacted_dict_index_to_case_index (const struct dictionary *d) 
790 {
791   size_t i;
792   size_t next_value_idx;
793   int *map;
794   
795   map = xnmalloc (d->var_cnt, sizeof *map);
796   next_value_idx = 0;
797   for (i = 0; i < d->var_cnt; i++)
798     {
799       struct variable *v = d->var[i];
800
801       if (dict_class_from_id (var_get_name (v)) != DC_SCRATCH) 
802         {
803           map[i] = next_value_idx;
804           next_value_idx += var_get_value_cnt (v);
805         }
806       else 
807         map[i] = -1;
808     }
809   return map;
810 }
811
812 /* Returns true if a case for dictionary D would be smaller after
813    compacting, false otherwise.  Compacting a case eliminates
814    "holes" between values and after the last value.  Holes are
815    created by deleting variables (or by scratch variables).
816
817    The return value may differ from whether compacting a case
818    from dictionary D would *change* the case: compacting could
819    rearrange values even if it didn't reduce space
820    requirements. */
821 bool
822 dict_compacting_would_shrink (const struct dictionary *d) 
823 {
824   return dict_get_compacted_value_cnt (d) < dict_get_next_value_idx (d);
825 }
826
827 /* Returns true if a case for dictionary D would change after
828    compacting, false otherwise.  Compacting a case eliminates
829    "holes" between values and after the last value.  Holes are
830    created by deleting variables (or by scratch variables).
831
832    The return value may differ from whether compacting a case
833    from dictionary D would *shrink* the case: compacting could
834    rearrange values without reducing space requirements. */
835 bool
836 dict_compacting_would_change (const struct dictionary *d) 
837 {
838   size_t case_idx;
839   size_t i;
840
841   case_idx = 0;
842   for (i = 0; i < dict_get_var_cnt (d); i++) 
843     {
844       struct variable *v = dict_get_var (d, i);
845       if (var_get_case_index (v) != case_idx)
846         return true;
847       case_idx += var_get_value_cnt (v);
848     }
849   return false;
850 }
851 \f
852 /* How to copy a contiguous range of values between cases. */
853 struct copy_map
854   {
855     size_t src_idx;             /* Starting value index in source case. */
856     size_t dst_idx;             /* Starting value index in target case. */
857     size_t cnt;                 /* Number of values. */
858   };
859
860 /* How to compact a case. */
861 struct dict_compactor 
862   {
863     struct copy_map *maps;      /* Array of mappings. */
864     size_t map_cnt;             /* Number of mappings. */
865   };
866
867 /* Creates and returns a dict_compactor that can be used to
868    compact cases for dictionary D.
869
870    Compacting a case eliminates "holes" between values and after
871    the last value.  Holes are created by deleting variables (or
872    by scratch variables). */
873 struct dict_compactor *
874 dict_make_compactor (const struct dictionary *d)
875 {
876   struct dict_compactor *compactor;
877   struct copy_map *map;
878   size_t map_allocated;
879   size_t value_idx;
880   size_t i;
881
882   compactor = xmalloc (sizeof *compactor);
883   compactor->maps = NULL;
884   compactor->map_cnt = 0;
885   map_allocated = 0;
886
887   value_idx = 0;
888   map = NULL;
889   for (i = 0; i < d->var_cnt; i++) 
890     {
891       struct variable *v = d->var[i];
892
893       if (dict_class_from_id (var_get_name (v)) == DC_SCRATCH)
894         continue;
895       if (map != NULL && map->src_idx + map->cnt == var_get_case_index (v)) 
896         map->cnt += var_get_value_cnt (v);
897       else 
898         {
899           if (compactor->map_cnt == map_allocated)
900             compactor->maps = x2nrealloc (compactor->maps, &map_allocated,
901                                           sizeof *compactor->maps);
902           map = &compactor->maps[compactor->map_cnt++];
903           map->src_idx = var_get_case_index (v);
904           map->dst_idx = value_idx;
905           map->cnt = var_get_value_cnt (v);
906         }
907       value_idx += var_get_value_cnt (v);
908     }
909
910   return compactor;
911 }
912
913 /* Compacts SRC by copying it to DST according to the scheme in
914    COMPACTOR.
915
916    Compacting a case eliminates "holes" between values and after
917    the last value.  Holes are created by deleting variables (or
918    by scratch variables). */
919 void
920 dict_compactor_compact (const struct dict_compactor *compactor,
921                         struct ccase *dst, const struct ccase *src) 
922 {
923   size_t i;
924
925   for (i = 0; i < compactor->map_cnt; i++) 
926     {
927       const struct copy_map *map = &compactor->maps[i];
928       case_copy (dst, map->dst_idx, src, map->src_idx, map->cnt);
929     }
930 }
931
932 /* Destroys COMPACTOR. */
933 void
934 dict_compactor_destroy (struct dict_compactor *compactor) 
935 {
936   if (compactor != NULL) 
937     {
938       free (compactor->maps);
939       free (compactor);
940     }
941 }
942
943 /* Returns the SPLIT FILE vars (see cmd_split_file()).  Call
944    dict_get_split_cnt() to determine how many SPLIT FILE vars
945    there are.  Returns a null pointer if and only if there are no
946    SPLIT FILE vars. */
947 struct variable *const *
948 dict_get_split_vars (const struct dictionary *d) 
949 {
950   assert (d != NULL);
951   
952   return d->split;
953 }
954
955 /* Returns the number of SPLIT FILE vars. */
956 size_t
957 dict_get_split_cnt (const struct dictionary *d) 
958 {
959   assert (d != NULL);
960
961   return d->split_cnt;
962 }
963
964 /* Sets CNT split vars SPLIT in dictionary D. */
965 void
966 dict_set_split_vars (struct dictionary *d,
967                      struct variable *const *split, size_t cnt)
968 {
969   assert (d != NULL);
970   assert (cnt == 0 || split != NULL);
971
972   d->split_cnt = cnt;
973   d->split = xnrealloc (d->split, cnt, sizeof *d->split);
974   memcpy (d->split, split, cnt * sizeof *d->split);
975 }
976
977 /* Returns the file label for D, or a null pointer if D is
978    unlabeled (see cmd_file_label()). */
979 const char *
980 dict_get_label (const struct dictionary *d) 
981 {
982   assert (d != NULL);
983
984   return d->label;
985 }
986
987 /* Sets D's file label to LABEL, truncating it to a maximum of 60
988    characters. */
989 void
990 dict_set_label (struct dictionary *d, const char *label) 
991 {
992   assert (d != NULL);
993
994   free (d->label);
995   if (label == NULL)
996     d->label = NULL;
997   else if (strlen (label) < 60)
998     d->label = xstrdup (label);
999   else 
1000     {
1001       d->label = xmalloc (61);
1002       memcpy (d->label, label, 60);
1003       d->label[60] = '\0';
1004     }
1005 }
1006
1007 /* Returns the documents for D, or a null pointer if D has no
1008    documents (see cmd_document()).. */
1009 const char *
1010 dict_get_documents (const struct dictionary *d) 
1011 {
1012   assert (d != NULL);
1013
1014   return d->documents;
1015 }
1016
1017 /* Sets the documents for D to DOCUMENTS, or removes D's
1018    documents if DOCUMENT is a null pointer. */
1019 void
1020 dict_set_documents (struct dictionary *d, const char *documents)
1021 {
1022   assert (d != NULL);
1023
1024   free (d->documents);
1025   if (documents == NULL)
1026     d->documents = NULL;
1027   else
1028     d->documents = xstrdup (documents);
1029 }
1030
1031 /* Creates in D a vector named NAME that contains the CNT
1032    variables in VAR.  Returns true if successful, or false if a
1033    vector named NAME already exists in D. */
1034 bool
1035 dict_create_vector (struct dictionary *d,
1036                     const char *name,
1037                     struct variable **var, size_t cnt) 
1038 {
1039   size_t i;
1040
1041   assert (var != NULL);
1042   assert (cnt > 0);
1043   for (i = 0; i < cnt; i++)
1044     assert (dict_contains_var (d, var[i]));
1045   
1046   if (dict_lookup_vector (d, name) == NULL)
1047     {
1048       d->vector = xnrealloc (d->vector, d->vector_cnt + 1, sizeof *d->vector);
1049       d->vector[d->vector_cnt++] = vector_create (name, var, cnt);
1050       return true; 
1051     }
1052   else
1053     return false;
1054 }
1055
1056 /* Returns the vector in D with index IDX, which must be less
1057    than dict_get_vector_cnt (D). */
1058 const struct vector *
1059 dict_get_vector (const struct dictionary *d, size_t idx) 
1060 {
1061   assert (d != NULL);
1062   assert (idx < d->vector_cnt);
1063
1064   return d->vector[idx];
1065 }
1066
1067 /* Returns the number of vectors in D. */
1068 size_t
1069 dict_get_vector_cnt (const struct dictionary *d) 
1070 {
1071   assert (d != NULL);
1072
1073   return d->vector_cnt;
1074 }
1075
1076 /* Looks up and returns the vector within D with the given
1077    NAME. */
1078 const struct vector *
1079 dict_lookup_vector (const struct dictionary *d, const char *name) 
1080 {
1081   size_t i;
1082   for (i = 0; i < d->vector_cnt; i++)
1083     if (!strcasecmp (vector_get_name (d->vector[i]), name))
1084       return d->vector[i];
1085   return NULL;
1086 }
1087
1088 /* Deletes all vectors from D. */
1089 void
1090 dict_clear_vectors (struct dictionary *d) 
1091 {
1092   size_t i;
1093   
1094   for (i = 0; i < d->vector_cnt; i++)
1095     vector_destroy (d->vector[i]);
1096   free (d->vector);
1097
1098   d->vector = NULL;
1099   d->vector_cnt = 0;
1100 }
1101
1102 /* Compares two strings. */
1103 static int
1104 compare_strings (const void *a, const void *b, const void *aux UNUSED) 
1105 {
1106   return strcmp (a, b);
1107 }
1108
1109 /* Hashes a string. */
1110 static unsigned
1111 hash_string (const void *s, const void *aux UNUSED) 
1112 {
1113   return hsh_hash_string (s);
1114 }
1115
1116
1117 /* Sets V's short name to BASE, followed by a suffix of the form
1118    _A, _B, _C, ..., _AA, _AB, etc. according to the value of
1119    SUFFIX_NUMBER.  Truncates BASE as necessary to fit. */
1120 static void
1121 set_var_short_name_suffix (struct variable *v, const char *base,
1122                            int suffix_number)
1123 {
1124   char suffix[SHORT_NAME_LEN + 1];
1125   char short_name[SHORT_NAME_LEN + 1];
1126   char *start, *end;
1127   int len, ofs;
1128
1129   assert (v != NULL);
1130   assert (suffix_number >= 0);
1131
1132   /* Set base name. */
1133   var_set_short_name (v, base);
1134
1135   /* Compose suffix. */
1136   start = end = suffix + sizeof suffix - 1;
1137   *end = '\0';
1138   do 
1139     {
1140       *--start = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"[suffix_number % 26];
1141       if (start <= suffix + 1)
1142         msg (SE, _("Variable suffix too large."));
1143       suffix_number /= 26;
1144     }
1145   while (suffix_number > 0);
1146   *--start = '_';
1147
1148   /* Append suffix to V's short name. */
1149   str_copy_trunc (short_name, sizeof short_name, base);
1150   len = end - start;
1151   if (len + strlen (short_name) > SHORT_NAME_LEN)
1152     ofs = SHORT_NAME_LEN - len;
1153   else
1154     ofs = strlen (short_name);
1155   strcpy (short_name + ofs, start);
1156
1157   /* Set name. */
1158   var_set_short_name (v, short_name);
1159 }
1160
1161 /* Assigns a valid, unique short_name[] to each variable in D.
1162    Each variable whose actual name is short has highest priority
1163    for that short name.  Otherwise, variables with an existing
1164    short_name[] have the next highest priority for a given short
1165    name; if it is already taken, then the variable is treated as
1166    if short_name[] had been empty.  Otherwise, long names are
1167    truncated to form short names.  If that causes conflicts,
1168    variables are renamed as PREFIX_A, PREFIX_B, and so on. */
1169 void
1170 dict_assign_short_names (struct dictionary *d) 
1171 {
1172   struct hsh_table *short_names;
1173   size_t i;
1174
1175   /* Give variables whose names are short the corresponding short
1176      names, and clear short_names[] that conflict with a variable
1177      name. */
1178   for (i = 0; i < d->var_cnt; i++)
1179     {
1180       struct variable *v = d->var[i];
1181       const char *short_name = var_get_short_name (v);
1182       if (strlen (var_get_name (v)) <= SHORT_NAME_LEN)
1183         var_set_short_name (v, var_get_name (v));
1184       else if (short_name != NULL && dict_lookup_var (d, short_name) != NULL)
1185         var_clear_short_name (v);
1186     }
1187
1188   /* Each variable with an assigned short_name[] now gets it
1189      unless there is a conflict. */
1190   short_names = hsh_create (d->var_cnt, compare_strings, hash_string,
1191                             NULL, NULL);
1192   for (i = 0; i < d->var_cnt; i++)
1193     {
1194       struct variable *v = d->var[i];
1195       const char *name = var_get_short_name (v);
1196       if (name != NULL && hsh_insert (short_names, (char *) name) != NULL)
1197         var_clear_short_name (v);
1198     }
1199   
1200   /* Now assign short names to remaining variables. */
1201   for (i = 0; i < d->var_cnt; i++)
1202     {
1203       struct variable *v = d->var[i];
1204       const char *name = var_get_short_name (v);
1205       if (name == NULL) 
1206         {
1207           /* Form initial short_name from the variable name, then
1208              try _A, _B, ... _AA, _AB, etc., if needed.*/
1209           int trial = 0;
1210           do
1211             {
1212               if (trial == 0)
1213                 var_set_short_name (v, var_get_name (v));
1214               else
1215                 set_var_short_name_suffix (v, var_get_name (v), trial - 1);
1216
1217               trial++;
1218             }
1219           while (hsh_insert (short_names, (char *) var_get_short_name (v))
1220                  != NULL);
1221         } 
1222     }
1223
1224   /* Get rid of hash table. */
1225   hsh_destroy (short_names);
1226 }