home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / GDBM14AS.ZIP / BUCKET.C next >
Encoding:
C/C++ Source or Header  |  1992-02-22  |  12.3 KB  |  360 lines

  1. /* bucket.c - The routines for playing with hash buckets. */
  2.  
  3. /*  This file is part of GDBM, the GNU data base manager, by Philip A. Nelson.
  4.     Copyright (C) 1990  Free Software Foundation, Inc.
  5.  
  6.     GDBM 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 1, or (at your option)
  9.     any later version.
  10.  
  11.     GDBM 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 GDBM; see the file COPYING.  If not, write to
  18.     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20.     You may contact the author by:
  21.        e-mail:  phil@wwu.edu
  22.       us-mail:  Philip A. Nelson
  23.                 Computer Science Department
  24.                 Western Washington University
  25.                 Bellingham, WA 98226
  26.         phone:  (206) 676-3035
  27.        
  28. *************************************************************************/
  29.  
  30. /*
  31.  * MS-DOS port (c) 1990 by Thorsten Ohl, ohl@gnu.ai.mit.edu
  32.  *
  33.  * To this port, the same copying conditions apply as to the
  34.  * original release.
  35.  *
  36.  * IMPORTANT:
  37.  * This file is not identical to the original GNU release!
  38.  * You should have received this code as patch to the official
  39.  * GNU release.
  40.  *
  41.  * MORE IMPORTANT:
  42.  * This port comes with ABSOLUTELY NO WARRANTY.
  43.  *
  44.  * $Header: e:/gnu/gdbm/RCS/bucket.c'v 1.4.0.1 90/08/16 09:22:04 tho Exp $
  45.  */
  46.  
  47. #include <stdio.h>
  48. #include <sys/types.h>
  49. #ifndef MSDOS
  50. #include <sys/file.h>
  51. #endif /* not MSDOS */
  52. #include <sys/stat.h>
  53. #include "gdbmdefs.h"
  54. #include "systems.h"
  55.  
  56.  
  57. /* Initializing a new hash buckets sets all bucket entries to -1 hash value. */
  58. VOID
  59. _gdbm_new_bucket (dbf, bucket, bits)
  60.      gdbm_file_info *dbf;
  61.      hash_bucket *bucket;
  62.      int bits;
  63. {
  64.   int index;
  65.   
  66.   /* Initialize the avail block. */
  67.   bucket->av_count = 0;
  68.  
  69.   /* Set the information fields first. */
  70.   bucket->bucket_bits = bits;
  71.   bucket->count = 0;
  72.   
  73.   /* Initialize all bucket elements. */
  74.   for (index = 0; index < dbf->header->bucket_elems; index++)
  75.     bucket->h_table[index].hash_value = -1;
  76. }
  77.  
  78.  
  79.  
  80. /* Find a bucket for DBF that is pointed to by the bucket directory from
  81.    location DIR_INDEX.   The bucket cache is first checked to see if it
  82.    is already in memory.  If not, a bucket may be tossed to read the new
  83.    bucket.  In any case, the requested bucket is make the "current" bucket
  84.    and dbf->bucket points to the correct bucket. */
  85. VOID
  86. _gdbm_get_bucket (dbf, dir_index)
  87.      gdbm_file_info *dbf;
  88.      int dir_index;
  89. {
  90.   LONG bucket_adr;    /* The address of the correct hash bucket.  */
  91.   LONG num_bytes;    /* The number of bytes read. */
  92.   int  index;        /* Loop index. */
  93.  
  94.   /* Initial set up. */
  95.   dbf->bucket_dir = dir_index;
  96.   bucket_adr = dbf->dir [dir_index];
  97.   
  98.   /* Is that one is not alread current, we must find it. */
  99.   if (dbf->cache_entry->ca_adr != bucket_adr)
  100.     {
  101.       /* Look in the cache. */
  102.       for (index = 0; index < CACHE_SIZE; index++)
  103.     if (dbf->bucket_cache[index].ca_adr == bucket_adr)
  104.       {
  105.         dbf->bucket = dbf->bucket_cache[index].ca_bucket;
  106.         dbf->cache_entry = &dbf->bucket_cache[index];
  107.         return;
  108.       }
  109.  
  110.       /* It is not in the cache, read it from the disk. */
  111.       dbf->last_read = (dbf->last_read + 1) % CACHE_SIZE;
  112.       dbf->bucket_cache[dbf->last_read].ca_adr = bucket_adr;
  113.       dbf->bucket = dbf->bucket_cache[dbf->last_read].ca_bucket;
  114.       dbf->cache_entry = &dbf->bucket_cache[dbf->last_read];
  115.       dbf->cache_entry->ca_data.elem_loc = -1;
  116.       dbf->cache_entry->ca_changed = FALSE;
  117.  
  118.       /* Read the bucket. */
  119.       num_bytes = lseek (dbf->desc, bucket_adr, L_SET);
  120.       if (num_bytes != bucket_adr)
  121.     _gdbm_fatal (dbf, "lseek error");
  122.  
  123. #ifdef MSDOS            /* shut up the compiler!  */
  124.       num_bytes = read (dbf->desc,
  125.             (char *)dbf->bucket, dbf->header->bucket_size);
  126. #else /* not MSDOS */
  127.       num_bytes = read (dbf->desc, dbf->bucket, dbf->header->bucket_size);
  128. #endif /* not MSDOS */
  129.       if (num_bytes != dbf->header->bucket_size)
  130.     _gdbm_fatal (dbf, "read error");
  131.     }
  132.  
  133.   return;
  134. }
  135.  
  136.  
  137. /* Split the current bucket.  This includes moving all items in the bucket to
  138.    a new bucket.  This doesn't require any disk reads because all hash values
  139.    are stored in the buckets.  Splitting the current bucket may require
  140.    doubling the size of the hash directory.  */
  141.  
  142. VOID
  143. _gdbm_split_bucket (dbf, next_insert)
  144.      gdbm_file_info *dbf;
  145.      LONG next_insert;
  146. {
  147.   hash_bucket *bucket[2];     /* Pointers to the new buckets. */
  148.  
  149.   int          new_bits;    /* The number of bits for the new buckets. */
  150.   int           cache_0;        /* Location in the cache for the buckets. */
  151.   int           cache_1;
  152.   LONG           adr_0;        /* File address of the new bucket 0. */
  153.   LONG           adr_1;        /* File address of the new bucket 1. */
  154.   avail_elem   old_bucket;    /* Avail Struct for the old bucket. */
  155.  
  156.   int          dir_start0;    /* Used in updating the directory. */
  157.   int          dir_start1;
  158.   int          dir_end;
  159.  
  160.   LONG          *new_dir;        /* Pointer to the new directory. */
  161.   LONG         dir_adr;     /* Address of the new directory. */
  162.   int          dir_size;    /* Size of the new directory. */
  163.   LONG         old_adr[31];     /* Address of the old directories. */
  164.   int          old_size[31];     /* Size of the old directories. */
  165.   int           old_count;    /* Number of old directories. */
  166.  
  167.   int          index;        /* Used in array indexing. */
  168.   int          index1;        /* Used in array indexing. */
  169.   int          elem_loc;    /* Location in new bucket to put element. */
  170.   bucket_element *old_el;    /* Pointer into the old bucket. */
  171.   int           select;        /* Used to index bucket during movement. */
  172.  
  173.  
  174.   /* No directories are yet old. */
  175.   old_count = 0;
  176.  
  177.   while (dbf->bucket->count == dbf->header->bucket_elems)
  178.     {
  179.       /* Initialize the "new" buckets in the cache. */
  180.       do
  181.     {
  182.       dbf->last_read = (dbf->last_read + 1) % CACHE_SIZE;
  183.       cache_0 = dbf->last_read;
  184.     }      
  185.       while (dbf->bucket_cache[cache_0].ca_bucket == dbf->bucket);
  186.       bucket[0] = dbf->bucket_cache[cache_0].ca_bucket;
  187.       if (dbf->bucket_cache[cache_0].ca_changed)
  188.     _gdbm_write_bucket (dbf, &dbf->bucket_cache[cache_0]);
  189.       do
  190.     {
  191.       dbf->last_read = (dbf->last_read + 1) % CACHE_SIZE;
  192.       cache_1 = dbf->last_read;
  193.     }      
  194.       while (dbf->bucket_cache[cache_1].ca_bucket == dbf->bucket);
  195.       bucket[1] = dbf->bucket_cache[cache_1].ca_bucket;
  196.       if (dbf->bucket_cache[cache_1].ca_changed)
  197.     _gdbm_write_bucket (dbf, &dbf->bucket_cache[cache_1]);
  198.       new_bits = dbf->bucket->bucket_bits+1;
  199.       _gdbm_new_bucket (dbf, bucket[0], new_bits);
  200.       _gdbm_new_bucket (dbf, bucket[1], new_bits);
  201.       adr_0 = _gdbm_alloc (dbf, dbf->header->bucket_size); 
  202.       dbf->bucket_cache[cache_0].ca_adr = adr_0;
  203.       adr_1 = _gdbm_alloc (dbf, dbf->header->bucket_size);
  204.       dbf->bucket_cache[cache_1].ca_adr = adr_1;
  205.  
  206.       
  207.       
  208.       /* Double the directory size if necessary. */
  209.       if (dbf->header->dir_bits == dbf->bucket->bucket_bits)
  210.     {
  211.       dir_size = dbf->header->dir_size * 2;
  212.       dir_adr  = _gdbm_alloc (dbf, dir_size);
  213.       new_dir  = (LONG *) malloc (dir_size);
  214.       if (new_dir == NULL) _gdbm_fatal (dbf, "malloc error");
  215.       for (index = 0; index < dbf->header->dir_size/sizeof (LONG); index++)
  216.         {
  217.           new_dir[2*index]   = dbf->dir[index];
  218.           new_dir[2*index+1] = dbf->dir[index];
  219.         }
  220.       
  221.       /* Update header. */
  222.       old_adr[old_count] = dbf->header->dir;
  223.       dbf->header->dir = dir_adr;
  224.       old_size[old_count] = dbf->header->dir_size;
  225.       dbf->header->dir_size = dir_size;
  226.       dbf->header->dir_bits = new_bits;
  227.       old_count++;
  228.       
  229.       /* Now update dbf.  */
  230.       dbf->header_changed = TRUE;
  231.       dbf->bucket_dir *= 2;
  232.       free (dbf->dir);
  233.       dbf->dir = new_dir;
  234.     }
  235.  
  236.       /* Copy all elements in dbf->bucket into the new buckets. */
  237.       for (index = 0; index < dbf->header->bucket_elems; index++)
  238.     {
  239.       old_el = & (dbf->bucket->h_table[index]);
  240. #ifdef MSDOS
  241.       select = (int) (old_el->hash_value >> (31-new_bits)) & 1;
  242.       elem_loc = (int) (old_el->hash_value % dbf->header->bucket_elems);
  243. #else /* not MSDOS */
  244.       select = (old_el->hash_value >> (31-new_bits)) & 1;
  245.       elem_loc = old_el->hash_value % dbf->header->bucket_elems;
  246. #endif /* not MSDOS */
  247.       while (bucket[select]->h_table[elem_loc].hash_value != -1)
  248.         elem_loc = (elem_loc + 1) % dbf->header->bucket_elems;
  249.       bucket[select]->h_table[elem_loc] = *old_el;
  250.       bucket[select]->count += 1;
  251.     }
  252.       
  253.       /* Allocate avail space for the bucket[1]. */
  254.       bucket[1]->bucket_avail[0].av_adr
  255.     = _gdbm_alloc (dbf, dbf->header->block_size);
  256.       bucket[1]->bucket_avail[0].av_size = dbf->header->block_size;
  257.       bucket[1]->av_count = 1;
  258.       
  259.       /* Copy the avail elements in dbf->bucket to bucket[0]. */
  260.       bucket[0]->av_count = dbf->bucket->av_count;
  261.       index = 0;
  262.       index1 = 0;
  263.       if (bucket[0]->av_count == BUCKET_AVAIL)
  264.     {
  265.       /* The avail is full, move the first one to bucket[1]. */
  266.       _gdbm_put_av_elem (dbf->bucket->bucket_avail[0],
  267.                  bucket[1]->bucket_avail,
  268.                  &bucket[1]->av_count);
  269.       index = 1;
  270.       bucket[0]->av_count --;
  271.     }
  272.       for (; index < dbf->bucket->av_count; index++)
  273.     {
  274.       bucket[0]->bucket_avail[index1++] = dbf->bucket->bucket_avail[index];
  275.     }
  276.       
  277.       /* Update the directory.  We have new file addresses for both buckets. */
  278.       dir_start1 = (dbf->bucket_dir >> (dbf->header->dir_bits - new_bits)) | 1;
  279.       dir_end = (dir_start1 + 1) << (dbf->header->dir_bits - new_bits);
  280.       dir_start1 = dir_start1 << (dbf->header->dir_bits - new_bits);
  281.       dir_start0 = dir_start1 - (dir_end - dir_start1);
  282.       for (index = dir_start0; index < dir_start1; index++)
  283.     dbf->dir[index] = adr_0;
  284.       for (index = dir_start1; index < dir_end; index++)
  285.     dbf->dir[index] = adr_1;
  286.       
  287.       
  288.       /* Set changed flags. */
  289.       dbf->bucket_cache[cache_0].ca_changed = TRUE;
  290.       dbf->bucket_cache[cache_1].ca_changed = TRUE;
  291.       dbf->bucket_changed = TRUE;
  292.       dbf->directory_changed = TRUE;
  293.       dbf->second_changed = TRUE;
  294.       
  295.       /* Update the cache! */
  296. #ifdef MSDOS
  297.       dbf->bucket_dir = (int) (next_insert >> (31-dbf->header->dir_bits));
  298. #else /* not MSDOS */
  299.       dbf->bucket_dir = next_insert >> (31-dbf->header->dir_bits);
  300. #endif /* not MSDOS */
  301.       
  302.       /* Invalidate old cache entry. */
  303.       old_bucket.av_adr  = dbf->cache_entry->ca_adr;
  304.       old_bucket.av_size = dbf->header->bucket_size;
  305.       dbf->cache_entry->ca_adr = 0;
  306.       dbf->cache_entry->ca_changed = FALSE;
  307.       
  308.       /* Set dbf->bucket to the proper bucket. */
  309.       if (dbf->dir[dbf->bucket_dir] == adr_0)
  310.     {
  311.       dbf->bucket = bucket[0];
  312.       dbf->cache_entry = &dbf->bucket_cache[cache_0];
  313.       _gdbm_put_av_elem (old_bucket,
  314.                  bucket[1]->bucket_avail,
  315.                  &bucket[1]->av_count);
  316.     }
  317.       else
  318.     {
  319.       dbf->bucket = bucket[1];
  320.       dbf->cache_entry = &dbf->bucket_cache[cache_1];
  321.       _gdbm_put_av_elem (old_bucket,
  322.                  bucket[0]->bucket_avail,
  323.                  &bucket[0]->av_count);
  324.     }
  325.       
  326.     }
  327.  
  328.   /* Get rid of old directories. */
  329.   for (index = 0; index < old_count; index++)
  330.     _gdbm_free (dbf, old_adr[index], old_size[index]);
  331. }
  332.  
  333.  
  334. /* The only place where a bucket is written.  CA_ENTRY is the
  335.    cache entry containing the bucket to be written. */
  336.  
  337. VOID
  338. _gdbm_write_bucket (dbf, ca_entry)
  339.      gdbm_file_info *dbf;
  340.      cache_elem *ca_entry;
  341. {
  342.   LONG num_bytes;    /* The return value for lseek and write. */
  343.   
  344.   num_bytes = lseek (dbf->desc, ca_entry->ca_adr, L_SET);
  345.   if (num_bytes != ca_entry->ca_adr)
  346.     _gdbm_fatal (dbf, "lseek error");
  347. #ifdef MSDOS            /* shut up the compiler!   */
  348.   num_bytes = write (dbf->desc,
  349.              (char *)ca_entry->ca_bucket, dbf->header->bucket_size);
  350. #else /* not MSDOS */
  351.   num_bytes = write (dbf->desc, ca_entry->ca_bucket, dbf->header->bucket_size);
  352. #endif /* not MSDOS */
  353.   if (num_bytes != dbf->header->bucket_size)
  354.     _gdbm_fatal (dbf, "write error");
  355.   ca_entry->ca_changed = FALSE;
  356.   ca_entry->ca_data.hash_val = -1;
  357.   ca_entry->ca_data.elem_loc = -1;
  358.   
  359. }
  360.