home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / Shells / bashsrc.zoo / hash.c < prev    next >
C/C++ Source or Header  |  1991-06-05  |  6KB  |  226 lines

  1. /* Hash.c -- Where hashing for bash is done. */
  2.  
  3. /* Copyright (C) 1987,1989 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Bash, the Bourne Again SHell.
  6.  
  7. Bash is free software; you can redistribute it and/or modify it under
  8. the terms of the GNU General Public License as published by the Free
  9. Software Foundation; either version 1, or (at your option) any later
  10. version.
  11.  
  12. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  13. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License along
  18. with Bash; see the file COPYING.  If not, write to the Free Software
  19. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21. /* There appears to be library functions for this stuff, but it seems like
  22.    a lot of overhead, so I just implemented this hashing stuff on my own. */
  23.  
  24. #include "shell.h"
  25. #include "hash.h"
  26.  
  27. HASH_TABLE *hashed_filenames;
  28.  
  29. #define FILENAME_HASH_BUCKETS 107
  30.  
  31. /* Create the hash table that we use in the shell. */
  32. initialize_hashed_filenames ()
  33. {
  34.   HASH_TABLE *make_hash_table ();
  35.   hashed_filenames = make_hash_table (FILENAME_HASH_BUCKETS);
  36. }
  37.  
  38. /* Make a new hash table with BUCKETS number of buckets.  Initialize
  39.    each slot in the table to NULL. */
  40. HASH_TABLE *
  41. make_hash_table (buckets)
  42.      int buckets;
  43. {
  44.   HASH_TABLE *new_table = (HASH_TABLE *)xmalloc (sizeof (HASH_TABLE));
  45.   new_table->bucket_array =
  46.     (BUCKET_CONTENTS **)xmalloc (buckets * sizeof (BUCKET_CONTENTS *));
  47.   new_table->nbuckets = buckets;
  48.   new_table->nentries = 0;
  49.   initialize_hash_table (new_table);
  50.   return (new_table);
  51. }
  52.  
  53. /* Zero the buckets in TABLE. */
  54. initialize_hash_table (table)
  55.      HASH_TABLE *table;
  56. {
  57.   register int i;
  58.   for (i = 0; i < table->nbuckets; i++)
  59.     table->bucket_array[i] = (BUCKET_CONTENTS *)NULL;
  60. }
  61.  
  62. /* Return the location of the bucket which should contain the data
  63.    for STRING.  TABLE is a pointer to a HASH_TABLE. */
  64. hash_string (string, table)
  65.      char *string;
  66.      HASH_TABLE *table;
  67. {
  68.   register unsigned int i = 0;
  69.  
  70.   while (*string) i += *string++;
  71.   i %= table->nbuckets;
  72.   return (i);
  73. }
  74.  
  75. /* Return a pointer to the hashed item, or NULL if the item
  76.    can't be found. */
  77. BUCKET_CONTENTS *
  78. find_hash_item (string, table)
  79.      char *string;
  80.      HASH_TABLE *table;
  81. {
  82.   BUCKET_CONTENTS *list = table->bucket_array[hash_string (string, table)];
  83.  
  84.   while (list) {
  85.     if (strcmp (list->key, string) == 0) {
  86.       list->times_found++;
  87.       return (list);
  88.     }
  89.     else list = list->next;
  90.   }
  91.   return (BUCKET_CONTENTS *)NULL;
  92. }
  93.  
  94. /* Remove the item specified by STRING from the hash table TABLE.
  95.    The item removed is returned, so you can free its contents.  If
  96.    the item isn't in this table NULL is returned. */
  97. BUCKET_CONTENTS *
  98. remove_hash_item (string, table)
  99.      char *string;
  100.      HASH_TABLE *table;
  101. {
  102.   int the_bucket = hash_string (string, table);
  103.   BUCKET_CONTENTS *prev = (BUCKET_CONTENTS *)NULL;
  104.   BUCKET_CONTENTS *temp = table->bucket_array[the_bucket];
  105.  
  106.   while (temp) {
  107.     if (strcmp (temp->key, string) == 0) {
  108.       if (prev) prev->next = temp->next;
  109.       else table->bucket_array[the_bucket] = temp->next;
  110.       table->nentries--;
  111.       return (temp);
  112.     }
  113.     prev = temp;
  114.     temp = temp->next;
  115.   }
  116.   return ((BUCKET_CONTENTS *) NULL);
  117. }
  118.  
  119. /* Create an entry for STRING, in TABLE.  If the entry already
  120.    exists, then return it. */
  121. BUCKET_CONTENTS *
  122. add_hash_item (string, table)
  123.      char *string;
  124.      HASH_TABLE *table;
  125. {
  126.   BUCKET_CONTENTS *item;
  127.  
  128.   if (!(item = find_hash_item (string, table))) {
  129.     int bucket = hash_string (string, table);
  130.     item = table->bucket_array[bucket];
  131.  
  132.     while (item && item->next) item = item->next;
  133.     if (item) {
  134.       item->next = (BUCKET_CONTENTS *)xmalloc (sizeof (BUCKET_CONTENTS));
  135.       item = item->next;
  136.     } else {
  137.       table->bucket_array[bucket] = (BUCKET_CONTENTS *)xmalloc (sizeof (BUCKET_CONTENTS));
  138.       item = table->bucket_array[bucket];
  139.     }
  140.     item->data = (char *)NULL;
  141.     item->next = (BUCKET_CONTENTS *)NULL;
  142.     item->key = string;        /* I'm not so sure this is a good idea. */
  143.     table->nentries++;
  144.     item->times_found =    0;
  145.   }
  146.   return (item);
  147. }
  148.  
  149. /* Return the bucket_contents list of bucket BUCKET in TABLE.  If
  150.    TABLE doesn't have BUCKET buckets, return NULL. */
  151. BUCKET_CONTENTS *
  152. get_hash_bucket (bucket, table)
  153.      int bucket;
  154.      HASH_TABLE *table;
  155. {
  156.   if (bucket < table->nbuckets) return (table->bucket_array[bucket]);
  157.   else return (BUCKET_CONTENTS *)NULL;
  158. }
  159.  
  160. #ifdef TEST_HASHING
  161.  
  162. #undef NULL
  163. #include <stdio.h>
  164.  
  165. HASH_TABLE *table;
  166. #define NBUCKETS 107
  167.  
  168. xmalloc (bytes)
  169.      int bytes;
  170. {
  171.   char *result = (char *)malloc (bytes);
  172.   if (!result) {
  173.     fprintf (stderr, "Out of memory!");
  174.     abort ();
  175.   }
  176.   return ((int)result);
  177. }
  178.  
  179. main ()
  180. {
  181.   char string[256];
  182.   int count = 0;
  183.   BUCKET_CONTENTS *tt;
  184.  
  185.   table = make_hash_table (NBUCKETS);
  186.   
  187.   printf ("Enter some data to be hashed, a word at a time.\n\
  188. Type a blank line when done:\n\n");
  189.  
  190.   for (;;) {
  191.     char *temp_string = savestring (gets (string));
  192.     if (!*string) break;
  193.     tt = add_hash_item (temp_string, table);
  194.     if (tt->times_found) {
  195.       printf ("\nYou have already added that item\n");
  196.       free (temp_string);
  197.     } else {
  198.       count++;
  199.     }
  200.   }
  201.   
  202.   printf ("\nYou have entered %d (%d) items.  The items are:\n\n",
  203.       table->nentries, count);
  204.  
  205.   for (count = 0; count < table->nbuckets; count++) {
  206.     register BUCKET_CONTENTS *list = get_hash_bucket (count, table);
  207.     
  208.     if (list) {
  209.       printf ("%3d slot: ", count);
  210.       while (list) {
  211.     printf ("%s\n          ", list->key);
  212.     list = list->next;
  213.       }
  214.       printf ("\n");
  215.     }
  216.   }
  217. }
  218.  
  219. #endif  /* TEST_HASHING */
  220.  
  221. /*
  222.  * Local variables:
  223.  * compile-command: "gcc -g -DTEST_HASHING -o hash hash.c"
  224.  * end:
  225.  */
  226.