1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/*
* Generic hash table routines.
* (c) Thomas Pornin 1998, 1999, 2000
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 4. The name of the authors may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <string.h>
#include "hash.h"
#include "mem.h"
#include "tune.h"
/*
* hash_string() is a sample hash function for strings
*/
int hash_string(char *s)
{
#ifdef FAST_HASH
unsigned h = 0, g;
while (*s) {
h = (h << 4) + *(unsigned char *)(s ++);
if ((g = h & 0xF000U) != 0) h ^= (g >> 12);
h &= ~g;
}
return (h ^ (h >> 9)) & 127U;
#else
unsigned char h = 0;
for (; *s; s ++) h ^= (unsigned char)(*s);
return ((int)h);
#endif
}
/*
* struct hash_item is the basic data type to internally handle hash tables
*/
struct hash_item {
void *data;
struct hash_item *next;
};
/*
* This function adds an entry to the struct hash_item list
*/
static struct hash_item *add_entry(struct hash_item *blist, void *data)
{
struct hash_item *t = getmem(sizeof(struct hash_item));
t->data = data;
t->next = blist;
return t;
}
/*
* This function finds a struct hash_item in a list, using the
* comparison function provided as cmpdata (*cmpdata() returns
* non-zero if the two parameters are to be considered identical).
*
* It returns 0 if the item is not found.
*/
static struct hash_item *get_entry(struct hash_item *blist, void *data,
int (*cmpdata)(void *, void *))
{
while (blist) {
if ((*cmpdata)(data, blist->data)) return blist;
blist = blist->next;
}
return 0;
}
/*
* This function acts like get_entry but deletes the found item, using
* the provided function deldata(); it returns 0 if the given data was
* not found.
*/
static struct hash_item *del_entry(struct hash_item *blist, void *data,
int (*cmpdata)(void *, void *), void (*deldata)(void *))
{
struct hash_item *prev = 0, *save = blist;
while (blist) {
if ((*cmpdata)(data, blist->data)) {
if (deldata) (*deldata)(blist->data);
if (prev) prev->next = blist->next;
if (save == blist) save = blist->next;
freemem(blist);
return save;
}
prev = blist;
blist = blist->next;
}
return 0;
}
/*
* This function creates a new hashtable, with the hashing and comparison
* functions given as parameters
*/
struct HT *newHT(int n, int (*cmpdata)(void *, void *), int (*hash)(void *),
void (*deldata)(void *))
{
struct HT *t = getmem(sizeof(struct HT));
int i;
t->lists = getmem(n * sizeof(struct hash_item *));
for (i = 0; i < n; i ++) t->lists[i] = 0;
t->nb_lists = n;
t->cmpdata = cmpdata;
t->hash = hash;
t->deldata = deldata;
return t;
}
/*
* This function adds a new entry in the hashtable ht; it returns 0
* on success, or a pointer to the already present item otherwise.
*/
void *putHT(struct HT *ht, void *data)
{
int h;
struct hash_item *d;
h = ((*(ht->hash))(data));
#ifndef FAST_HASH
h %= ht->nb_lists;
#endif
if ((d = get_entry(ht->lists[h], data, ht->cmpdata)))
return d->data;
ht->lists[h] = add_entry(ht->lists[h], data);
return 0;
}
/*
* This function adds a new entry in the hashtable ht, even if an equal
* entry is already there. Exercise caution !
* The new entry will "hide" the old one, which means that the new will be
* found upon lookup/delete, not the old one.
*/
void *forceputHT(struct HT *ht, void *data)
{
int h;
h = ((*(ht->hash))(data));
#ifndef FAST_HASH
h %= ht->nb_lists;
#endif
ht->lists[h] = add_entry(ht->lists[h], data);
return 0;
}
/*
* This function finds the entry corresponding to *data in the
* hashtable ht (using the comparison function given as argument
* to newHT)
*/
void *getHT(struct HT *ht, void *data)
{
int h;
struct hash_item *t;
h = ((*(ht->hash))(data));
#ifndef FAST_HASH
h %= ht->nb_lists;
#endif
if ((t = get_entry(ht->lists[h], data, ht->cmpdata)) == 0)
return 0;
return (t->data);
}
/*
* This function finds and delete the entry corresponding to *data
* in the hashtable ht (using the comparison function given as
* argument to newHT).
*/
int delHT(struct HT *ht, void *data)
{
int h;
h = ((*(ht->hash))(data));
#ifndef FAST_HASH
h %= ht->nb_lists;
#endif
ht->lists[h] = del_entry(ht->lists[h], data, ht->cmpdata, ht->deldata);
return 1;
}
/*
* This function completely eradicates from memory a given hash table,
* releasing all objects
*/
void killHT(struct HT *ht)
{
int i;
struct hash_item *t, *n;
void (*dd)(void *) = ht->deldata;
for (i = 0; i < ht->nb_lists; i ++) for (t = ht->lists[i]; t;) {
n = t->next;
if (dd) (*dd)(t->data);
freemem(t);
t = n;
}
freemem(ht->lists);
freemem(ht);
}
/*
* This function stores a backup of the hash table, for context stacking.
*/
void saveHT(struct HT *ht, void **buffer)
{
struct hash_item **b = (struct hash_item **)buffer;
mmv(b, ht->lists, ht->nb_lists * sizeof(struct hash_item *));
}
/*
* This function restores the saved state of the hash table.
* Do NOT use if some of the entries that were present before the backup
* have been removed (even temporarily).
*/
void restoreHT(struct HT *ht, void **buffer)
{
struct hash_item **b = (struct hash_item **)buffer;
int i;
for (i = 0; i < ht->nb_lists; i ++) {
struct hash_item *t = ht->lists[i], *n;
while (t != b[i]) {
n = t->next;
(*(ht->deldata))(t->data);
freemem(t);
t = n;
}
ht->lists[i] = b[i];
}
}
/*
* This function is evil. It inserts a new item in a saved hash table,
* tweaking the save buffer and the hash table in order to keep things
* stable. There are no checks.
*/
void tweakHT(struct HT *ht, void **buffer, void *data)
{
int h;
struct hash_item *d, *e;
h = ((*(ht->hash))(data));
#ifndef FAST_HASH
h %= ht->nb_lists;
#endif
for (d = ht->lists[h]; d != buffer[h]; d = d->next);
d = add_entry(buffer[h], data);
if (buffer[h] == ht->lists[h]) {
buffer[h] = ht->lists[h] = d;
return;
}
for (e = ht->lists[h]; e->next != buffer[h]; e = e->next);
e->next = d;
buffer[h] = d;
}
/*
* This function scans the whole table and calls the given function on
* each entry.
*/
void scanHT(struct HT *ht, void (*action)(void *))
{
int i;
for (i = 0; i < ht->nb_lists; i ++) {
struct hash_item *t = ht->lists[i];
while (t) {
(*action)(t->data);
t = t->next;
}
}
}
/*
* The two following fonctions are generic for storing structures
* uniquely identified by their name, which must be the first
* field of the structure.
*/
int hash_struct(void *m)
{
char *n = *(char **)m;
#ifdef FAST_HASH
return hash_string(n);
#else
return hash_string(n) & 127;
#endif
}
int cmp_struct(void *m1, void *m2)
{
char *n1 = *(char **)m1, *n2 = *(char **)m2;
return !strcmp(n1, n2);
}
|