/*-----------------------------------------------------------------------------
- * $Id: Hash.c,v 1.1 1999/01/27 12:11:25 simonm Exp $
+ * $Id: Hash.c,v 1.2 2000/10/06 15:34:29 simonmar Exp $
*
* (c) The AQUA Project, Glasgow University, 1995-1998
* (c) The GHC Team, 1999
typedef struct hashlist HashList;
+typedef int HashFunction(HashTable *table, StgWord key);
+typedef int CompareFunction(StgWord key1, StgWord key2);
+
struct hashtable {
int split; /* Next bucket to split when expanding */
int max; /* Max bucket of smaller table */
int kcount; /* Number of keys */
int bcount; /* Number of buckets */
HashList **dir[HDIRSIZE]; /* Directory of segments */
+ HashFunction *hash; /* hash function */
+ CompareFunction *compare; /* key comparison function */
};
/* -----------------------------------------------------------------------------
* -------------------------------------------------------------------------- */
static int
-hash(HashTable *table, W_ key)
+hashWord(HashTable *table, StgWord key)
{
int bucket;
return bucket;
}
+static int
+hashStr(HashTable *table, char *key)
+{
+ int h, bucket;
+ char *s;
+
+ s = key;
+ for (h=0; *s; s++) {
+ h *= 128;
+ h += *s;
+ h = h % 1048583; /* some random large prime */
+ }
+
+ /* Mod the size of the hash table (a power of 2) */
+ bucket = h & table->mask1;
+
+ if (bucket < table->split) {
+ /* Mod the size of the expanded hash table (also a power of 2) */
+ bucket = h & table->mask2;
+ }
+
+ return bucket;
+}
+
+static int
+compareWord(StgWord key1, StgWord key2)
+{
+ return (key1 == key2);
+}
+
+static int
+compareStr(StgWord key1, StgWord key2)
+{
+ return (strcmp((char *)key1, (char *)key2) == 0);
+}
+
+
/* -----------------------------------------------------------------------------
* Allocate a new segment of the dynamically growing hash table.
* -------------------------------------------------------------------------- */
old = new = NULL;
for (hl = table->dir[oldsegment][oldindex]; hl != NULL; hl = next) {
next = hl->next;
- if (hash(table, hl->key) == newbucket) {
+ if (table->hash(table, hl->key) == newbucket) {
hl->next = new;
new = hl;
} else {
int index;
HashList *hl;
- bucket = hash(table, key);
+ bucket = table->hash(table, key);
segment = bucket / HSEGSIZE;
index = bucket % HSEGSIZE;
for (hl = table->dir[segment][index]; hl != NULL; hl = hl->next)
- if (hl->key == key)
+ if (table->compare(hl->key, key))
return hl->data;
/* It's not there */
if (++table->kcount >= HLOAD * table->bcount)
expand(table);
- bucket = hash(table, key);
+ bucket = table->hash(table, key);
segment = bucket / HSEGSIZE;
index = bucket % HSEGSIZE;
HashList *hl;
HashList *prev = NULL;
- bucket = hash(table, key);
+ bucket = table->hash(table, key);
segment = bucket / HSEGSIZE;
index = bucket % HSEGSIZE;
for (hl = table->dir[segment][index]; hl != NULL; hl = hl->next) {
- if (hl->key == key && (data == NULL || hl->data == data)) {
+ if (table->compare(hl->key,key) && (data == NULL || hl->data == data)) {
if (prev == NULL)
table->dir[segment][index] = hl->next;
else
* initializing all of the first segment's hash buckets to NULL.
* -------------------------------------------------------------------------- */
-HashTable *
-allocHashTable(void)
+static HashTable *
+allocHashTable_(HashFunction *hash, CompareFunction *compare)
{
HashTable *table;
HashList **hb;
table->mask2 = 2 * HSEGSIZE - 1;
table->kcount = 0;
table->bcount = HSEGSIZE;
+ table->hash = hash;
+ table->compare = compare;
return table;
}
+
+HashTable *
+allocHashTable(void)
+{
+ return allocHashTable_(hashWord, compareWord);
+}
+
+HashTable *
+allocStrHashTable(void)
+{
+ return allocHashTable_((HashFunction *)hashStr,
+ (CompareFunction *)compareStr);
+}
/*-----------------------------------------------------------------------------
- * $Id: Hash.h,v 1.2 2000/01/13 14:34:03 hwloidl Exp $
+ * $Id: Hash.h,v 1.3 2000/10/06 15:34:29 simonmar Exp $
*
* (c) The GHC Team, 1999
*
typedef struct hashtable HashTable; /* abstract */
+/* Hash table access where the keys are StgWords */
+HashTable * allocHashTable ( void );
void * lookupHashTable ( HashTable *table, StgWord key );
void insertHashTable ( HashTable *table, StgWord key, void *data );
void * removeHashTable ( HashTable *table, StgWord key, void *data );
-void freeHashTable ( HashTable *table, void (*freeDataFun)(void *) );
-HashTable * allocHashTable ( void );
+/* Hash table access where the keys are C strings (the strings are
+ * assumed to be allocated by the caller, and mustn't be deallocated
+ * until the corresponding hash table entry has been removed).
+ */
+HashTable * allocStrHashTable ( void );
+
+#define lookupStrHashTable(table, key) \
+ (lookupHashTable(table, (StgWord)key))
+
+#define insertStrHashTable(table, key, data) \
+ (insertHashTable(table, (StgWord)key, data))
+
+#define removeStrHashTable(table, key, data) \
+ (removeHashTable(table, (StgWord)key, data))
+
+/* Freeing hash tables
+ */
+void freeHashTable ( HashTable *table, void (*freeDataFun)(void *) );