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
|
/*
* Simple hash table
* Copyright
* (C) 1992 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
#include "types.h"
static HENTRY *freentry = NULL;
/* Compute hash value of string */
#define hnext(accu, c) (((accu) << 4) + ((accu) >> 28) + (c))
unsigned long hash(unsigned char *s)
{
unsigned long accu = 0;
while (*s) {
accu = hnext(accu, *s++);
}
return accu;
}
/* Create hash table */
HASH *htmk(int len)
{
HASH *t = (HASH *) joe_malloc(sizeof(HASH));
t->nentries = 0;
t->len = len;
t->tab = (HENTRY **) joe_calloc(sizeof(HENTRY *), len);
return t;
}
/* Delete hash table. Only the hash table is deleted, not the names and values */
void htrm(HASH *ht)
{
int x;
for (x = 0; x != ht->len; ++x) {
HENTRY *p, *n;
for (p = ht->tab[x]; p; p = n) {
n = p->next;
p->next = freentry;
freentry = p;
}
}
joe_free(ht->tab);
joe_free(ht);
}
/* Expand hash table */
void htexpand(HASH *h)
{
unsigned x;
/* Allocate new table */
unsigned new_size = h->len * 2;
HENTRY **new_table = (HENTRY **)joe_calloc(new_size, sizeof(HENTRY *));
/* Copy entries from old table to new */
for (x = 0; x != h->len; ++x) {
HENTRY *e;
while ((e = h->tab[x])) {
h->tab[x] = e->next;
e->next = new_table[e->hash_val & (new_size - 1)];
new_table[e->hash_val & (new_size - 1)] = e;
}
}
/* Replace old table with new */
free(h->tab);
h->tab = new_table;
h->len = new_size;
}
/* Bind a value to a name. This does not check for duplicate entries. The
* name and value are not duplicated: it's up to you to keep them around for
* the life of the hash table. */
void *htadd(HASH *ht, unsigned char *name, void *val)
{
unsigned hval = hash(name);
unsigned idx = hval & (ht->len - 1);
HENTRY *entry;
int x;
if (!freentry) {
entry = (HENTRY *) joe_malloc(sizeof(HENTRY) * 64);
for (x = 0; x != 64; ++x) {
entry[x].next = freentry;
freentry = entry + x;
}
}
entry = freentry;
freentry = entry->next;
entry->next = ht->tab[idx];
ht->tab[idx] = entry;
entry->name = name;
entry->val = val;
entry->hash_val = hval;
if (++ht->nentries == (ht->len >> 1) + (ht->len >> 2))
htexpand(ht);
return val;
}
/* Return value associated with name or NULL if there is none */
void *htfind(HASH *ht, unsigned char *name)
{
HENTRY *e;
for (e = ht->tab[hash(name) & (ht->len - 1)]; e; e = e->next) {
if (!zcmp(e->name, name)) {
return e->val;
}
}
return NULL;
}
|