]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/hash.cc
SourceFormat Enforcement
[thirdparty/squid.git] / lib / hash.cc
CommitLineData
f52a7d75 1
2/*
262a0e14 3 * $Id$
f52a7d75 4 *
b510f3a1 5 * DEBUG: section 00 Hash Tables
f52a7d75 6 * AUTHOR: Harvest Derived
7 *
2b6662ba 8 * SQUID Web Proxy Cache http://www.squid-cache.org/
f52a7d75 9 * ----------------------------------------------------------
10 *
2b6662ba 11 * Squid is the result of efforts by numerous individuals from
12 * the Internet community; see the CONTRIBUTORS file for full
13 * details. Many organizations have provided support for Squid's
14 * development; see the SPONSORS file for full details. Squid is
15 * Copyrighted (C) 2001 by the Regents of the University of
16 * California; see the COPYRIGHT file for full details. Squid
17 * incorporates software developed and/or copyrighted by other
18 * sources; see the CREDITS file for full details.
f52a7d75 19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
26ac0430 24 *
f52a7d75 25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
26ac0430 29 *
f52a7d75 30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
33 *
34 */
35
f7f3304a 36#include "squid.h"
25f98340
AJ
37#include "hash.h"
38#include "profiler/Profiler.h"
f52a7d75 39
40#if HAVE_STDIO_H
41#include <stdio.h>
42#endif
43#if HAVE_STDLIB_H
44#include <stdlib.h>
45#endif
46#if HAVE_STRING_H
47#include <string.h>
48#endif
49#if HAVE_UNISTD_H
50#include <unistd.h>
51#endif
52#if HAVE_GNUMALLLOC_H
53#include <gnumalloc.h>
482aa790 54#elif HAVE_MALLOC_H
f52a7d75 55#include <malloc.h>
56#endif
57#if HAVE_ASSERT_H
58#include <assert.h>
59#endif
e880cefa 60#if HAVE_MATH_H
61#include <math.h>
62#endif
f52a7d75 63
f52a7d75 64static void hash_next_bucket(hash_table * hid);
65
66unsigned int
67hash_string(const void *data, unsigned int size)
68{
209663bb 69 const unsigned char *s = static_cast<const unsigned char *>(data);
f52a7d75 70 unsigned int n = 0;
71 unsigned int j = 0;
72 unsigned int i = 0;
73 while (*s) {
742a021b 74 ++j;
aec55359
FC
75 n ^= 271 * *s;
76 ++s;
f52a7d75 77 }
78 i = n ^ (j * 271);
79 return i % size;
80}
81
82/* the following function(s) were adapted from
83 * usr/src/lib/libc/db/hash_func.c, 4.4 BSD lite */
84
85/* Hash function from Chris Torek. */
86unsigned int
87hash4(const void *data, unsigned int size)
88{
209663bb 89 const char *key = static_cast<const char *>(data);
f52a7d75 90 size_t loop;
91 unsigned int h;
92 size_t len;
93
94#define HASH4a h = (h << 5) - h + *key++;
95#define HASH4b h = (h << 5) + h + *key++;
96#define HASH4 HASH4b
97
98 h = 0;
99 len = strlen(key);
100 loop = len >> 3;
101 switch (len & (8 - 1)) {
102 case 0:
26ac0430 103 break;
f52a7d75 104 case 7:
26ac0430
AJ
105 HASH4;
106 /* FALLTHROUGH */
f52a7d75 107 case 6:
26ac0430
AJ
108 HASH4;
109 /* FALLTHROUGH */
f52a7d75 110 case 5:
26ac0430
AJ
111 HASH4;
112 /* FALLTHROUGH */
f52a7d75 113 case 4:
26ac0430
AJ
114 HASH4;
115 /* FALLTHROUGH */
f52a7d75 116 case 3:
26ac0430
AJ
117 HASH4;
118 /* FALLTHROUGH */
f52a7d75 119 case 2:
26ac0430
AJ
120 HASH4;
121 /* FALLTHROUGH */
f52a7d75 122 case 1:
26ac0430 123 HASH4;
f52a7d75 124 }
a08d350e
CT
125 while (loop) {
126 --loop;
26ac0430
AJ
127 HASH4;
128 HASH4;
129 HASH4;
130 HASH4;
131 HASH4;
132 HASH4;
133 HASH4;
134 HASH4;
f52a7d75 135 }
136 return h % size;
137}
138
209663bb 139/**
f52a7d75 140 * hash_create - creates a new hash table, uses the cmp_func
141 * to compare keys. Returns the identification for the hash table;
142 * otherwise returns a negative number on error.
143 */
144hash_table *
145hash_create(HASHCMP * cmp_func, int hash_sz, HASHHASH * hash_func)
146{
209663bb 147 hash_table *hid = (hash_table *)xcalloc(1, sizeof(hash_table));
f52a7d75 148 if (!hash_sz)
26ac0430 149 hid->size = (unsigned int) DEFAULT_HASH_SIZE;
f52a7d75 150 else
26ac0430 151 hid->size = (unsigned int) hash_sz;
f52a7d75 152 /* allocate and null the buckets */
209663bb 153 hid->buckets = (hash_link **)xcalloc(hid->size, sizeof(hash_link *));
f52a7d75 154 hid->cmp = cmp_func;
155 hid->hash = hash_func;
156 hid->next = NULL;
157 hid->current_slot = 0;
158 return hid;
159}
160
209663bb 161/**
f52a7d75 162 * hash_join - joins a hash_link under its key lnk->key
26ac0430 163 * into the hash table 'hid'.
f52a7d75 164 *
165 * It does not copy any data into the hash table, only links pointers.
166 */
167void
168hash_join(hash_table * hid, hash_link * lnk)
169{
170 int i;
171 i = hid->hash(lnk->key, hid->size);
172 lnk->next = hid->buckets[i];
173 hid->buckets[i] = lnk;
742a021b 174 ++hid->count;
f52a7d75 175}
176
209663bb 177/**
f52a7d75 178 * hash_lookup - locates the item under the key 'k' in the hash table
179 * 'hid'. Returns a pointer to the hash bucket on success; otherwise
180 * returns NULL.
181 */
4a8b20e8 182hash_link *
f52a7d75 183hash_lookup(hash_table * hid, const void *k)
184{
f52a7d75 185 int b;
88bfe092 186 PROF_start(hash_lookup);
f52a7d75 187 assert(k != NULL);
188 b = hid->hash(k, hid->size);
209663bb 189 for (hash_link *walker = hid->buckets[b]; walker != NULL; walker = walker->next) {
26ac0430
AJ
190 if ((hid->cmp) (k, walker->key) == 0) {
191 PROF_stop(hash_lookup);
192 return (walker);
193 }
194 assert(walker != walker->next);
f52a7d75 195 }
88bfe092 196 PROF_stop(hash_lookup);
f52a7d75 197 return NULL;
198}
199
200static void
201hash_next_bucket(hash_table * hid)
202{
203 while (hid->next == NULL && ++hid->current_slot < hid->size)
26ac0430 204 hid->next = hid->buckets[hid->current_slot];
f52a7d75 205}
206
209663bb 207/**
f52a7d75 208 * hash_first - initializes the hash table for the hash_next()
209 * function.
210 */
211void
212hash_first(hash_table * hid)
213{
214 assert(NULL == hid->next);
215 hid->current_slot = 0;
216 hid->next = hid->buckets[hid->current_slot];
217 if (NULL == hid->next)
26ac0430 218 hash_next_bucket(hid);
f52a7d75 219}
220
209663bb 221/**
f52a7d75 222 * hash_next - returns the next item in the hash table 'hid'.
26ac0430 223 * Otherwise, returns NULL on error or end of list.
f52a7d75 224 *
225 * MUST call hash_first() before hash_next().
226 */
4a8b20e8 227hash_link *
f52a7d75 228hash_next(hash_table * hid)
229{
209663bb
AJ
230 hash_link *p = hid->next;
231 if (NULL == p)
26ac0430 232 return NULL;
209663bb 233 hid->next = p->next;
f52a7d75 234 if (NULL == hid->next)
26ac0430 235 hash_next_bucket(hid);
209663bb 236 return p;
f52a7d75 237}
238
209663bb 239/**
2c4f7ab2 240 * hash_last - resets hash traversal state to NULL
241 *
242 */
243void
ab96e65c 244hash_last(hash_table * hid)
2c4f7ab2 245{
137a13ea 246 assert(hid != NULL);
2c4f7ab2 247 hid->next = NULL;
248 hid->current_slot = 0;
249}
250
209663bb 251/**
26ac0430 252 * hash_remove_link - deletes the given hash_link node from the
f52a7d75 253 * hash table 'hid'. Does not free the item, only removes it
254 * from the list.
255 *
4fba1a24 256 * An assertion is triggered if the hash_link is not found in the
257 * list.
f52a7d75 258 */
259void
260hash_remove_link(hash_table * hid, hash_link * hl)
261{
f52a7d75 262 assert(hl != NULL);
209663bb
AJ
263 int i = hid->hash(hl->key, hid->size);
264 for (hash_link **P = &hid->buckets[i]; *P; P = &(*P)->next) {
26ac0430
AJ
265 if (*P != hl)
266 continue;
267 *P = hl->next;
268 if (hid->next == hl) {
269 hid->next = hl->next;
270 if (NULL == hid->next)
271 hash_next_bucket(hid);
272 }
742a021b 273 --hid->count;
26ac0430 274 return;
f52a7d75 275 }
e530de6c 276 assert(0);
f52a7d75 277}
278
209663bb 279/**
26ac0430 280 * hash_get_bucket - returns the head item of the bucket
f52a7d75 281 * in the hash table 'hid'. Otherwise, returns NULL on error.
282 */
283hash_link *
284hash_get_bucket(hash_table * hid, unsigned int bucket)
285{
286 if (bucket >= hid->size)
26ac0430 287 return NULL;
f52a7d75 288 return (hid->buckets[bucket]);
289}
290
291void
292hashFreeItems(hash_table * hid, HASHFREE * free_func)
293{
294 hash_link *l;
f52a7d75 295 int i = 0;
209663bb 296 hash_link **list = (hash_link **)xcalloc(hid->count, sizeof(hash_link *));
f52a7d75 297 hash_first(hid);
298 while ((l = hash_next(hid)) && i < hid->count) {
26ac0430 299 *(list + i) = l;
742a021b 300 ++i;
f52a7d75 301 }
742a021b 302 for (int j = 0; j < i; ++j)
26ac0430 303 free_func(*(list + j));
f52a7d75 304 xfree(list);
305}
306
307void
308hashFreeMemory(hash_table * hid)
309{
04f7fd38 310 if (hid == NULL)
928b6c10 311 return;
efacbef0 312 if (hid->buckets)
26ac0430 313 xfree(hid->buckets);
f52a7d75 314 xfree(hid);
315}
316
26ac0430 317static int hash_primes[] = {
f52a7d75 318 103,
319 229,
320 467,
321 977,
322 1979,
323 4019,
324 6037,
325 7951,
326 12149,
327 16231,
328 33493,
329 65357
330};
331
332int
333hashPrime(int n)
334{
335 int I = sizeof(hash_primes) / sizeof(int);
f52a7d75 336 int best_prime = hash_primes[0];
d87ebd78 337 double min = fabs(log((double) n) - log((double) hash_primes[0]));
f52a7d75 338 double d;
742a021b 339 for (int i = 0; i < I; ++i) {
26ac0430
AJ
340 d = fabs(log((double) n) - log((double) hash_primes[i]));
341 if (d > min)
342 continue;
343 min = d;
344 best_prime = hash_primes[i];
f52a7d75 345 }
346 return best_prime;
347}
348
209663bb 349/**
186477c1 350 * return the key of a hash_link as a const string
351 */
352const char *
353hashKeyStr(hash_link * hl)
354{
355 return (const char *) hl->key;
356}
357
32d002cb 358#if USE_HASH_DRIVER
209663bb 359/**
f52a7d75 360 * hash-driver - Run with a big file as stdin to insert each line into the
361 * hash table, then prints the whole hash table, then deletes a random item,
362 * and prints the table again...
363 */
364int
365main(void)
366{
367 hash_table *hid;
f52a7d75 368 LOCAL_ARRAY(char, buf, BUFSIZ);
369 LOCAL_ARRAY(char, todelete, BUFSIZ);
370 hash_link *walker = NULL;
371
372 todelete[0] = '\0';
373 printf("init\n");
374
375 printf("creating hash table\n");
376 if ((hid = hash_create((HASHCMP *) strcmp, 229, hash4)) < 0) {
26ac0430
AJ
377 printf("hash_create error.\n");
378 exit(1);
f52a7d75 379 }
380 printf("done creating hash table: %d\n", hid);
381
382 while (fgets(buf, BUFSIZ, stdin)) {
26ac0430
AJ
383 buf[strlen(buf) - 1] = '\0';
384 printf("Inserting '%s' for item %p to hash table: %d\n",
385 buf, buf, hid);
386 hash_insert(hid, xstrdup(buf), (void *) 0x12345678);
387 if (random() % 17 == 0)
388 strcpy(todelete, buf);
f52a7d75 389 }
390
391 printf("walking hash table...\n");
209663bb 392 for (int i = 0, walker = hash_first(hid); walker; walker = hash_next(hid)) {
26ac0430
AJ
393 printf("item %5d: key: '%s' item: %p\n", i++, walker->key,
394 walker->item);
f52a7d75 395 }
396 printf("done walking hash table...\n");
397
398 if (todelete[0]) {
26ac0430
AJ
399 printf("deleting %s from %d\n", todelete, hid);
400 if (hash_delete(hid, todelete))
401 printf("hash_delete error\n");
f52a7d75 402 }
403 printf("walking hash table...\n");
209663bb 404 for (int i = 0, walker = hash_first(hid); walker; walker = hash_next(hid)) {
26ac0430
AJ
405 printf("item %5d: key: '%s' item: %p\n", i++, walker->key,
406 walker->item);
f52a7d75 407 }
408 printf("done walking hash table...\n");
409
f52a7d75 410 printf("driver finished.\n");
411 exit(0);
412}
413#endif