blob: 6cfc9a0ea6e4f633335184966439b57fa1a148c4 [file] [log] [blame]
Michael Clarkf0d08882007-03-13 08:26:18 +00001/*
Michael Clarkf6a6e482007-03-13 08:26:23 +00002 * $Id: linkhash.c,v 1.4 2006/01/26 02:16:28 mclark Exp $
Michael Clarkf0d08882007-03-13 08:26:18 +00003 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
Michael Clarkf0d08882007-03-13 08:26:18 +00005 * Michael Clark <michael@metaparadigm.com>
6 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00007 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the MIT license. See COPYING for details.
Michael Clarkf0d08882007-03-13 08:26:18 +00009 *
10 */
11
Michael Clark4504df72007-03-13 08:26:20 +000012#include "config.h"
13
Michael Clarkf0d08882007-03-13 08:26:18 +000014#include <stdio.h>
15#include <string.h>
16#include <stdlib.h>
17#include <stdarg.h>
Michael Clark4504df72007-03-13 08:26:20 +000018#include <stddef.h>
19#include <limits.h>
Michael Clarkf0d08882007-03-13 08:26:18 +000020
21#include "linkhash.h"
22
Michael Clarkf0d08882007-03-13 08:26:18 +000023void lh_abort(const char *msg, ...)
24{
25 va_list ap;
26 va_start(ap, msg);
27 vprintf(msg, ap);
28 exit(1);
29}
30
Michael Clarkf0d08882007-03-13 08:26:18 +000031unsigned long lh_ptr_hash(void *k)
32{
Michael Clark4504df72007-03-13 08:26:20 +000033 /* CAW: refactored to be 64bit nice */
34 return (unsigned long)((((ptrdiff_t)k * LH_PRIME) >> 4) & ULONG_MAX);
Michael Clarkf0d08882007-03-13 08:26:18 +000035}
36
Michael Clarkf0d08882007-03-13 08:26:18 +000037int lh_ptr_equal(void *k1, void *k2)
38{
39 return (k1 == k2);
40}
41
Michael Clarkf0d08882007-03-13 08:26:18 +000042unsigned long lh_char_hash(void *k)
43{
44 unsigned int h = 0;
45 const char* data = k;
46
47 while( *data!=0 ) h = h*129 + (unsigned int)(*data++) + LH_PRIME;
48
49 return h;
50}
51
Michael Clarkf0d08882007-03-13 08:26:18 +000052int lh_char_equal(void *k1, void *k2)
53{
54 return (strcmp((char*)k1, (char*)k2) == 0);
55}
56
Michael Clarkf0d08882007-03-13 08:26:18 +000057struct lh_table* lh_table_new(int size, char *name,
58 lh_entry_free_fn *free_fn,
59 lh_hash_fn *hash_fn,
60 lh_equal_fn *equal_fn)
61{
62 int i;
63 struct lh_table *t;
64
65 t = calloc(1, sizeof(struct lh_table));
66 if(!t) lh_abort("lh_table_new: calloc failed\n");
67 t->count = 0;
68 t->size = size;
69 t->name = name;
70 t->table = calloc(size, sizeof(struct lh_entry));
71 if(!t->table) lh_abort("lh_table_new: calloc failed\n");
72 t->free_fn = free_fn;
73 t->hash_fn = hash_fn;
74 t->equal_fn = equal_fn;
75 for(i = 0; i < size; i++) t->table[i].k = LH_EMPTY;
76 return t;
77}
78
Michael Clarkf0d08882007-03-13 08:26:18 +000079struct lh_table* lh_kchar_table_new(int size, char *name,
80 lh_entry_free_fn *free_fn)
81{
82 return lh_table_new(size, name, free_fn, lh_char_hash, lh_char_equal);
83}
84
Michael Clarkf0d08882007-03-13 08:26:18 +000085struct lh_table* lh_kptr_table_new(int size, char *name,
86 lh_entry_free_fn *free_fn)
87{
88 return lh_table_new(size, name, free_fn, lh_ptr_hash, lh_ptr_equal);
89}
90
Michael Clarkf0d08882007-03-13 08:26:18 +000091void lh_table_resize(struct lh_table *t, int new_size)
92{
93 struct lh_table *new_t;
94 struct lh_entry *ent;
95
96 new_t = lh_table_new(new_size, t->name, NULL, t->hash_fn, t->equal_fn);
97 ent = t->head;
98 while(ent) {
99 lh_table_insert(new_t, ent->k, ent->v);
100 ent = ent->next;
101 }
102 free(t->table);
103 t->table = new_t->table;
104 t->size = new_size;
105 t->head = new_t->head;
106 t->tail = new_t->tail;
107 t->resizes++;
108 free(new_t);
109}
110
Michael Clarkf0d08882007-03-13 08:26:18 +0000111void lh_table_free(struct lh_table *t)
112{
113 struct lh_entry *c;
114 for(c = t->head; c != NULL; c = c->next) {
115 if(t->free_fn) {
116 t->free_fn(c);
117 }
118 }
119 free(t->table);
120 free(t);
121}
122
123
124int lh_table_insert(struct lh_table *t, void *k, void *v)
125{
126 unsigned long h, n;
127
128 t->inserts++;
129 if(t->count > t->size * 0.66) lh_table_resize(t, t->size * 2);
130
131 h = t->hash_fn(k);
132 n = h % t->size;
133
134 while( 1 ) {
135 if(t->table[n].k == LH_EMPTY || t->table[n].k == LH_FREED) break;
136 t->collisions++;
137 if(++n == t->size) n = 0;
138 }
139
140 t->table[n].k = k;
141 t->table[n].v = v;
142 t->count++;
143
144 if(t->head == NULL) {
145 t->head = t->tail = &t->table[n];
146 t->table[n].next = t->table[n].prev = NULL;
147 } else {
148 t->tail->next = &t->table[n];
149 t->table[n].prev = t->tail;
150 t->table[n].next = NULL;
151 t->tail = &t->table[n];
152 }
153
154 return 0;
155}
156
157
158struct lh_entry* lh_table_lookup_entry(struct lh_table *t, void *k)
159{
160 unsigned long h = t->hash_fn(k);
161 unsigned long n = h % t->size;
162
163 t->lookups++;
164 while( 1 ) {
165 if(t->table[n].k == LH_EMPTY) return NULL;
166 if(t->table[n].k != LH_FREED &&
167 t->equal_fn(t->table[n].k, k)) return &t->table[n];
168 if(++n == t->size) n = 0;
169 }
170 return NULL;
171}
172
173
174void* lh_table_lookup(struct lh_table *t, void *k)
175{
176 struct lh_entry *e = lh_table_lookup_entry(t, k);
177 if(e) return e->v;
178 return NULL;
179}
180
181
182int lh_table_delete_entry(struct lh_table *t, struct lh_entry *e)
183{
Michael Clark4504df72007-03-13 08:26:20 +0000184 ptrdiff_t n = (ptrdiff_t)(e - t->table); /* CAW: fixed to be 64bit nice, still need the crazy negative case... */
185
186 /* CAW: this is bad, really bad, maybe stack goes other direction on this machine... */
187 if(n < 0) { return -2; }
188
Michael Clarkf0d08882007-03-13 08:26:18 +0000189 if(t->table[n].k == LH_EMPTY || t->table[n].k == LH_FREED) return -1;
190 t->count--;
191 if(t->free_fn) t->free_fn(e);
192 t->table[n].v = NULL;
193 t->table[n].k = LH_FREED;
194 if(t->tail == &t->table[n] && t->head == &t->table[n]) {
195 t->head = t->tail = NULL;
196 } else if (t->head == &t->table[n]) {
197 t->head->next->prev = NULL;
198 t->head = t->head->next;
199 } else if (t->tail == &t->table[n]) {
200 t->tail->prev->next = NULL;
201 t->tail = t->tail->prev;
202 } else {
203 t->table[n].prev->next = t->table[n].next;
204 t->table[n].next->prev = t->table[n].prev;
205 }
206 t->table[n].next = t->table[n].prev = NULL;
207 return 0;
208}
209
210
211int lh_table_delete(struct lh_table *t, void *k)
212{
213 struct lh_entry *e = lh_table_lookup_entry(t, k);
214 if(!e) return -1;
215 return lh_table_delete_entry(t, e);
216}
217