]> sjero.net Git - wget/blob - src/hash.c
[svn] Name the source of the integer hash function.
[wget] / src / hash.c
1 /* Hash tables.
2    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at
9 your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #ifdef HAVE_CONFIG_H
31 # include <config.h>
32 #endif
33
34 #ifdef HAVE_STRING_H
35 # include <string.h>
36 #else
37 # include <strings.h>
38 #endif /* HAVE_STRING_H */
39 #include <stdlib.h>
40 #include <assert.h>
41
42 #include "wget.h"
43 #include "utils.h"
44
45 #include "hash.h"
46
47 #ifdef STANDALONE
48 # undef xmalloc
49 # undef xrealloc
50 # undef xfree
51
52 # define xmalloc malloc
53 # define xrealloc realloc
54 # define xfree free
55
56 # undef TOLOWER
57 # define TOLOWER(x) ('A' <= (x) && (x) <= 'Z' ? (x) - 32 : (x))
58 #endif
59
60 /* INTERFACE:
61
62    Hash tables are a technique used to implement mapping between
63    objects with near-constant-time access and storage.  The table
64    associates keys to values, and a value can be very quickly
65    retrieved by providing the key.  Fast lookup tables are typically
66    implemented as hash tables.
67
68    The entry points are
69      hash_table_new       -- creates the table.
70      hash_table_destroy   -- destroys the table.
71      hash_table_put       -- establishes or updates key->value mapping.
72      hash_table_get       -- retrieves value of key.
73      hash_table_get_pair  -- get key/value pair for key.
74      hash_table_contains  -- test whether the table contains key.
75      hash_table_remove    -- remove the key->value mapping for key.
76      hash_table_map       -- iterate through table mappings.
77      hash_table_clear     -- clear hash table contents.
78      hash_table_count     -- return the number of entries in the table.
79
80    The hash table grows internally as new entries are added and is not
81    limited in size, except by available memory.  The table doubles
82    with each resize, which ensures that the amortized time per
83    operation remains constant.
84
85    By default, tables created by hash_table_new consider the keys to
86    be equal if their pointer values are the same.  You can use
87    make_string_hash_table to create tables whose keys are considered
88    equal if their string contents are the same.  In the general case,
89    the criterion of equality used to compare keys is specified at
90    table creation time with two callback functions, "hash" and "test".
91    The hash function transforms the key into an arbitrary number that
92    must be the same for two equal keys.  The test function accepts two
93    keys and returns non-zero if they are to be considered equal.
94
95    Note that neither keys nor values are copied when inserted into the
96    hash table, so they must exist for the lifetime of the table.  This
97    means that e.g. the use of static strings is OK, but objects with a
98    shorter life-time need to be copied (with strdup() or the like in
99    the case of strings) before being inserted.  */
100
101 /* IMPLEMENTATION:
102
103    The hash table is implemented as an open-addressed table with
104    linear probing collision resolution.
105
106    For those not up to CS parlance, it means that all the hash entries
107    (pairs of pointers key and value) are stored in a contiguous array.
108    The position of each mapping is determined by the hash value of its
109    key and the size of the table: location := hash(key) % size.  If
110    two different keys end up on the same position (collide), the one
111    that came second is placed at the next empty position following the
112    occupied place.  This collision resolution technique is called
113    "linear probing".
114
115    There are more advanced collision resolution methods (quadratic
116    probing, double hashing), but we don't use them because they incur
117    more non-sequential access to the array, which results in worse CPU
118    cache behavior.  Linear probing works well as long as the
119    count/size ratio (fullness) is kept below 75%.  We make sure to
120    grow and rehash the table whenever this threshold is exceeded.
121
122    Collisions make deletion tricky because clearing a position
123    followed by a colliding entry would make the position seem empty
124    and the colliding entry not found.  One solution is to leave a
125    "tombstone" instead of clearing the entry, and another is to
126    carefully rehash the entries immediately following the deleted one.
127    We use the latter method because it results in less bookkeeping and
128    faster retrieval at the (slight) expense of deletion.  */
129
130 /* Maximum allowed fullness: when hash table's fullness exceeds this
131    value, the table is resized.  */
132 #define HASH_MAX_FULLNESS 0.75
133
134 /* The hash table size is multiplied by this factor (and then rounded
135    to the next prime) with each resize.  This guarantees infrequent
136    resizes.  */
137 #define HASH_RESIZE_FACTOR 2
138
139 struct mapping {
140   void *key;
141   void *value;
142 };
143
144 typedef unsigned long (*hashfun_t) PARAMS ((const void *));
145 typedef int (*testfun_t) PARAMS ((const void *, const void *));
146
147 struct hash_table {
148   hashfun_t hash_function;
149   testfun_t test_function;
150
151   struct mapping *mappings;     /* pointer to the table entries. */
152   int size;                     /* size of the array. */
153
154   int count;                    /* number of non-empty entries. */
155   int resize_threshold;         /* after size exceeds this number of
156                                    entries, resize the table.  */
157   int prime_offset;             /* the offset of the current prime in
158                                    the prime table. */
159 };
160
161 /* We use all-bit-set marker to mean that a mapping is empty.  It is
162    (hopefully) illegal as a pointer, and it allows the users to use
163    NULL (as well as any non-negative integer) as key.  */
164
165 #define NON_EMPTY(mp) (mp->key != (void *)~(unsigned long)0)
166 #define MARK_AS_EMPTY(mp) (mp->key = (void *)~(unsigned long)0)
167
168 /* "Next" mapping is the mapping after MP, but wrapping back to
169    MAPPINGS when MP would reach MAPPINGS+SIZE.  */
170 #define NEXT_MAPPING(mp, mappings, size) (mp != mappings + (size - 1)   \
171                                           ? mp + 1 : mappings)
172
173 /* Loop over non-empty mappings starting at MP. */
174 #define LOOP_NON_EMPTY(mp, mappings, size)                              \
175   for (; NON_EMPTY (mp); mp = NEXT_MAPPING (mp, mappings, size))
176
177 /* Return the position of KEY in hash table SIZE large, hash function
178    being HASHFUN.  */
179 #define HASH_POSITION(key, hashfun, size) ((hashfun) (key) % size)
180
181 /* Find a prime near, but greather than or equal to SIZE.  Of course,
182    the primes are not calculated, but looked up from a table.  The
183    table does not contain all primes in range, just a selection useful
184    for this purpose.
185
186    PRIME_OFFSET is a minor optimization: it specifies start position
187    for the search for the large enough prime.  The final offset is
188    stored in the same variable.  That way the list of primes does not
189    have to be scanned from the beginning each time around.  */
190
191 static int
192 prime_size (int size, int *prime_offset)
193 {
194   static const unsigned long primes [] = {
195     13, 19, 29, 41, 59, 79, 107, 149, 197, 263, 347, 457, 599, 787, 1031,
196     1361, 1777, 2333, 3037, 3967, 5167, 6719, 8737, 11369, 14783,
197     19219, 24989, 32491, 42257, 54941, 71429, 92861, 120721, 156941,
198     204047, 265271, 344857, 448321, 582821, 757693, 985003, 1280519,
199     1664681, 2164111, 2813353, 3657361, 4754591, 6180989, 8035301,
200     10445899, 13579681, 17653589, 22949669, 29834603, 38784989,
201     50420551, 65546729, 85210757, 110774011, 144006217, 187208107,
202     243370577, 316381771, 411296309, 534685237, 695090819, 903618083,
203     1174703521, 1527114613, 1985248999,
204     (unsigned long)0x99d43ea5, (unsigned long)0xc7fa5177
205   };
206   int i;
207
208   for (i = *prime_offset; i < countof (primes); i++)
209     if (primes[i] >= size)
210       {
211         /* Set the offset to the next prime.  That is safe because,
212            next time we are called, it will be with a larger SIZE,
213            which means we could never return the same prime anyway.
214            (If that is not the case, the caller can simply reset
215            *prime_offset.)  */
216         *prime_offset = i + 1;
217         return primes[i];
218       }
219
220   abort ();
221   return 0;
222 }
223
224 static unsigned long ptrhash PARAMS ((const void *));
225 static int ptrcmp PARAMS ((const void *, const void *));
226
227 /* Create a hash table with hash function HASH_FUNCTION and test
228    function TEST_FUNCTION.  The table is empty (its count is 0), but
229    pre-allocated to store at least ITEMS items.
230
231    ITEMS is the number of items that the table can accept without
232    needing to resize.  It is useful when creating a table that is to
233    be immediately filled with a known number of items.  In that case,
234    the regrows are a waste of time, and specifying ITEMS correctly
235    will avoid them altogether.
236
237    Note that hash tables grow dynamically regardless of ITEMS.  The
238    only use of ITEMS is to preallocate the table and avoid unnecessary
239    dynamic regrows.  Don't bother making ITEMS prime because it's not
240    used as size unchanged.  To start with a small table that grows as
241    needed, simply specify zero ITEMS.
242
243    If hash and test callbacks are not specified, identity mapping is
244    assumed, i.e. pointer values are used for key comparison.  If,
245    instead of that, you want strings with equal contents to hash the
246    same, use make_string_hash_table.  */
247
248 struct hash_table *
249 hash_table_new (int items,
250                 unsigned long (*hash_function) (const void *),
251                 int (*test_function) (const void *, const void *))
252 {
253   int size;
254   struct hash_table *ht = xnew (struct hash_table);
255
256   ht->hash_function = hash_function ? hash_function : ptrhash;
257   ht->test_function = test_function ? test_function : ptrcmp;
258
259   /* If the size of struct hash_table ever becomes a concern, this
260      field can go.  (Wget doesn't create many hashes.)  */
261   ht->prime_offset = 0;
262
263   /* Calculate the size that ensures that the table will store at
264      least ITEMS keys without the need to resize.  */
265   size = 1 + items / HASH_MAX_FULLNESS;
266   size = prime_size (size, &ht->prime_offset);
267   ht->size = size;
268   ht->resize_threshold = size * HASH_MAX_FULLNESS;
269   /*assert (ht->resize_threshold >= items);*/
270
271   ht->mappings = xnew_array (struct mapping, ht->size);
272   /* Mark mappings as empty.  We use 0xff rather than 0 to mark empty
273      keys because it allows us to store NULL keys to the table.  */
274   memset (ht->mappings, 0xff, size * sizeof (struct mapping));
275
276   ht->count = 0;
277
278   return ht;
279 }
280
281 /* Free the data associated with hash table HT. */
282
283 void
284 hash_table_destroy (struct hash_table *ht)
285 {
286   xfree (ht->mappings);
287   xfree (ht);
288 }
289
290 /* The heart of most functions in this file -- find the mapping whose
291    KEY is equal to key, using linear probing.  Returns the mapping
292    that matches KEY, or the first empty mapping if none matches.  */
293
294 static inline struct mapping *
295 find_mapping (const struct hash_table *ht, const void *key)
296 {
297   struct mapping *mappings = ht->mappings;
298   int size = ht->size;
299   struct mapping *mp = mappings + HASH_POSITION (key, ht->hash_function, size);
300   testfun_t equals = ht->test_function;
301
302   LOOP_NON_EMPTY (mp, mappings, size)
303     if (equals (key, mp->key))
304       break;
305   return mp;
306 }
307
308 /* Get the value that corresponds to the key KEY in the hash table HT.
309    If no value is found, return NULL.  Note that NULL is a legal value
310    for value; if you are storing NULLs in your hash table, you can use
311    hash_table_contains to be sure that a (possibly NULL) value exists
312    in the table.  Or, you can use hash_table_get_pair instead of this
313    function.  */
314
315 void *
316 hash_table_get (const struct hash_table *ht, const void *key)
317 {
318   struct mapping *mp = find_mapping (ht, key);
319   if (NON_EMPTY (mp))
320     return mp->value;
321   else
322     return NULL;
323 }
324
325 /* Like hash_table_get, but writes out the pointers to both key and
326    value.  Returns non-zero on success.  */
327
328 int
329 hash_table_get_pair (const struct hash_table *ht, const void *lookup_key,
330                      void *orig_key, void *value)
331 {
332   struct mapping *mp = find_mapping (ht, lookup_key);
333   if (NON_EMPTY (mp))
334     {
335       if (orig_key)
336         *(void **)orig_key = mp->key;
337       if (value)
338         *(void **)value = mp->value;
339       return 1;
340     }
341   else
342     return 0;
343 }
344
345 /* Return 1 if HT contains KEY, 0 otherwise. */
346
347 int
348 hash_table_contains (const struct hash_table *ht, const void *key)
349 {
350   struct mapping *mp = find_mapping (ht, key);
351   return NON_EMPTY (mp);
352 }
353
354 /* Grow hash table HT as necessary, and rehash all the key-value
355    mappings.  */
356
357 static void
358 grow_hash_table (struct hash_table *ht)
359 {
360   hashfun_t hasher = ht->hash_function;
361   struct mapping *old_mappings = ht->mappings;
362   struct mapping *old_end      = ht->mappings + ht->size;
363   struct mapping *mp, *mappings;
364   int newsize;
365
366   newsize = prime_size (ht->size * HASH_RESIZE_FACTOR, &ht->prime_offset);
367 #if 0
368   printf ("growing from %d to %d; fullness %.2f%% to %.2f%%\n",
369           ht->size, newsize,
370           100.0 * ht->count / ht->size,
371           100.0 * ht->count / newsize);
372 #endif
373
374   ht->size = newsize;
375   ht->resize_threshold = newsize * HASH_MAX_FULLNESS;
376
377   mappings = xnew_array (struct mapping, newsize);
378   memset (mappings, 0xff, newsize * sizeof (struct mapping));
379   ht->mappings = mappings;
380
381   for (mp = old_mappings; mp < old_end; mp++)
382     if (NON_EMPTY (mp))
383       {
384         struct mapping *new_mp;
385         /* We don't need to test for uniqueness of keys because they
386            come from the hash table and are therefore known to be
387            unique.  */
388         new_mp = mappings + HASH_POSITION (mp->key, hasher, newsize);
389         LOOP_NON_EMPTY (new_mp, mappings, newsize)
390           ;
391         *new_mp = *mp;
392       }
393
394   xfree (old_mappings);
395 }
396
397 /* Put VALUE in the hash table HT under the key KEY.  This regrows the
398    table if necessary.  */
399
400 void
401 hash_table_put (struct hash_table *ht, const void *key, void *value)
402 {
403   struct mapping *mp = find_mapping (ht, key);
404   if (NON_EMPTY (mp))
405     {
406       /* update existing item */
407       mp->key   = (void *)key; /* const? */
408       mp->value = value;
409       return;
410     }
411
412   /* If adding the item would make the table exceed max. fullness,
413      grow the table first.  */
414   if (ht->count >= ht->resize_threshold)
415     {
416       grow_hash_table (ht);
417       mp = find_mapping (ht, key);
418     }
419
420   /* add new item */
421   ++ht->count;
422   mp->key   = (void *)key;      /* const? */
423   mp->value = value;
424 }
425
426 /* Remove a mapping that matches KEY from HT.  Return 0 if there was
427    no such entry; return 1 if an entry was removed.  */
428
429 int
430 hash_table_remove (struct hash_table *ht, const void *key)
431 {
432   struct mapping *mp = find_mapping (ht, key);
433   if (!NON_EMPTY (mp))
434     return 0;
435   else
436     {
437       int size = ht->size;
438       struct mapping *mappings = ht->mappings;
439       hashfun_t hasher = ht->hash_function;
440
441       MARK_AS_EMPTY (mp);
442       --ht->count;
443
444       /* Rehash all the entries following MP.  The alternative
445          approach is to mark the entry as deleted, i.e. create a
446          "tombstone".  That speeds up removal, but leaves a lot of
447          garbage and slows down hash_table_get and hash_table_put.  */
448
449       mp = NEXT_MAPPING (mp, mappings, size);
450       LOOP_NON_EMPTY (mp, mappings, size)
451         {
452           const void *key2 = mp->key;
453           struct mapping *mp_new;
454
455           /* Find the new location for the key. */
456           mp_new = mappings + HASH_POSITION (key2, hasher, size);
457           LOOP_NON_EMPTY (mp_new, mappings, size)
458             if (key2 == mp_new->key)
459               /* The mapping MP (key2) is already where we want it (in
460                  MP_NEW's "chain" of keys.)  */
461               goto next_rehash;
462
463           *mp_new = *mp;
464           MARK_AS_EMPTY (mp);
465
466         next_rehash:
467           ;
468         }
469       return 1;
470     }
471 }
472
473 /* Clear HT of all entries.  After calling this function, the count
474    and the fullness of the hash table will be zero.  The size will
475    remain unchanged.  */
476
477 void
478 hash_table_clear (struct hash_table *ht)
479 {
480   memset (ht->mappings, 0xff, ht->size * sizeof (struct mapping));
481   ht->count = 0;
482 }
483
484 /* Map MAPFUN over all the mappings in hash table HT.  MAPFUN is
485    called with three arguments: the key, the value, and MAPARG.
486
487    It is undefined what happens if you add or remove entries in the
488    hash table while hash_table_map is running.  The exception is the
489    entry you're currently mapping over; you may remove or change that
490    entry.  */
491
492 void
493 hash_table_map (struct hash_table *ht,
494                 int (*mapfun) (void *, void *, void *),
495                 void *maparg)
496 {
497   struct mapping *mp  = ht->mappings;
498   struct mapping *end = ht->mappings + ht->size;
499
500   for (; mp < end; mp++)
501     if (NON_EMPTY (mp))
502       {
503         void *key;
504       repeat:
505         key = mp->key;
506         if (mapfun (key, mp->value, maparg))
507           return;
508         /* hash_table_remove might have moved the adjacent
509            mappings. */
510         if (mp->key != key && NON_EMPTY (mp))
511           goto repeat;
512       }
513 }
514
515 /* Return the number of elements in the hash table.  This is not the
516    same as the physical size of the hash table, which is always
517    greater than the number of elements.  */
518
519 int
520 hash_table_count (const struct hash_table *ht)
521 {
522   return ht->count;
523 }
524 \f
525 /* Functions from this point onward are meant for convenience and
526    don't strictly belong to this file.  However, this is as good a
527    place for them as any.  */
528
529 /* Rules for creating custom hash and test functions:
530
531    - The test function returns non-zero for keys that are considered
532      "equal", zero otherwise.
533
534    - The hash function returns a number that represents the
535      "distinctness" of the object.  In more precise terms, it means
536      that for any two objects that test "equal" under the test
537      function, the hash function MUST produce the same result.
538
539      This does not mean that all different objects must produce
540      different values (that would be "perfect" hashing), only that
541      non-distinct objects must produce the same values!  For instance,
542      a hash function that returns 0 for any given object is a
543      perfectly valid (albeit extremely bad) hash function.  A hash
544      function that hashes a string by adding up all its characters is
545      another example of a valid (but quite bad) hash function.
546
547      It is not hard to make hash and test functions agree about
548      equality.  For example, if the test function compares strings
549      case-insensitively, the hash function can lower-case the
550      characters when calculating the hash value.  That ensures that
551      two strings differing only in case will hash the same.
552
553    - If you care about performance, choose a hash function with as
554      good "spreading" as possible.  A good hash function will use all
555      the bits of the input when calculating the hash, and will react
556      to even small changes in input with a completely different
557      output.  Finally, don't make the hash function itself overly
558      slow, because you'll be incurring a non-negligible overhead to
559      all hash table operations.  */
560
561 /*
562  * Support for hash tables whose keys are strings.
563  *
564  */
565    
566 /* 31 bit hash function.  Taken from Gnome's glib, modified to use
567    standard C types.
568
569    We used to use the popular hash function from the Dragon Book, but
570    this one seems to perform much better.  */
571
572 unsigned long
573 string_hash (const void *key)
574 {
575   const char *p = key;
576   unsigned int h = *p;
577   
578   if (h)
579     for (p += 1; *p != '\0'; p++)
580       h = (h << 5) - h + *p;
581   
582   return h;
583 }
584
585 /* Frontend for strcmp usable for hash tables. */
586
587 int
588 string_cmp (const void *s1, const void *s2)
589 {
590   return !strcmp ((const char *)s1, (const char *)s2);
591 }
592
593 /* Return a hash table of preallocated to store at least ITEMS items
594    suitable to use strings as keys.  */
595
596 struct hash_table *
597 make_string_hash_table (int items)
598 {
599   return hash_table_new (items, string_hash, string_cmp);
600 }
601
602 /*
603  * Support for hash tables whose keys are strings, but which are
604  * compared case-insensitively.
605  *
606  */
607
608 /* Like string_hash, but produce the same hash regardless of the case. */
609
610 static unsigned long
611 string_hash_nocase (const void *key)
612 {
613   const char *p = key;
614   unsigned int h = TOLOWER (*p);
615   
616   if (h)
617     for (p += 1; *p != '\0'; p++)
618       h = (h << 5) - h + TOLOWER (*p);
619   
620   return h;
621 }
622
623 /* Like string_cmp, but doing case-insensitive compareison. */
624
625 static int
626 string_cmp_nocase (const void *s1, const void *s2)
627 {
628   return !strcasecmp ((const char *)s1, (const char *)s2);
629 }
630
631 /* Like make_string_hash_table, but uses string_hash_nocase and
632    string_cmp_nocase.  */
633
634 struct hash_table *
635 make_nocase_string_hash_table (int items)
636 {
637   return hash_table_new (items, string_hash_nocase, string_cmp_nocase);
638 }
639
640 /* Hashing of numeric values, such as pointers and integers.  Used for
641    hash tables that are keyed by pointer identity.  (Common Lisp calls
642    them EQ hash tables, and Java calls them IdentityHashMaps.)
643
644    This implementation is the Robert Jenkins' 32 bit Mix Function,
645    with a simple adaptation for 64-bit values.  It offers excellent
646    spreading of values and doesn't need to know the hash table size to
647    work (unlike the very popular Knuth's multiplication hash).  */
648
649 static unsigned long
650 ptrhash (const void *ptr)
651 {
652   unsigned long key = (unsigned long)ptr;
653   key += (key << 12);
654   key ^= (key >> 22);
655   key += (key << 4);
656   key ^= (key >> 9);
657   key += (key << 10);
658   key ^= (key >> 2);
659   key += (key << 7);
660   key ^= (key >> 12);
661 #if SIZEOF_LONG > 4
662   key += (key << 44);
663   key ^= (key >> 54);
664   key += (key << 36);
665   key ^= (key >> 41);
666   key += (key << 42);
667   key ^= (key >> 34);
668   key += (key << 39);
669   key ^= (key >> 44);
670 #endif
671   return key;
672 }
673
674 static int
675 ptrcmp (const void *ptr1, const void *ptr2)
676 {
677   return ptr1 == ptr2;
678 }
679 \f
680 #ifdef STANDALONE
681
682 #include <stdio.h>
683 #include <string.h>
684
685 int
686 print_hash_table_mapper (void *key, void *value, void *count)
687 {
688   ++*(int *)count;
689   printf ("%s: %s\n", (const char *)key, (char *)value);
690   return 0;
691 }
692
693 void
694 print_hash (struct hash_table *sht)
695 {
696   int debug_count = 0;
697   hash_table_map (sht, print_hash_table_mapper, &debug_count);
698   assert (debug_count == sht->count);
699 }
700
701 int
702 main (void)
703 {
704   struct hash_table *ht = make_string_hash_table (0);
705   char line[80];
706   while ((fgets (line, sizeof (line), stdin)))
707     {
708       int len = strlen (line);
709       if (len <= 1)
710         continue;
711       line[--len] = '\0';
712       if (!hash_table_contains (ht, line))
713         hash_table_put (ht, strdup (line), "here I am!");
714 #if 1
715       if (len % 5 == 0)
716         {
717           char *line_copy;
718           if (hash_table_get_pair (ht, line, &line_copy, NULL))
719             {
720               hash_table_remove (ht, line);
721               xfree (line_copy);
722             }
723         }
724 #endif
725     }
726 #if 0
727   print_hash (ht);
728 #endif
729 #if 1
730   printf ("%d %d\n", ht->count, ht->size);
731 #endif
732   return 0;
733 }
734 #endif