]> git.ipfire.org Git - thirdparty/squid.git/blame - include/hash.h
SourceFormat Enforcement
[thirdparty/squid.git] / include / hash.h
CommitLineData
5c193dec 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
5c193dec
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
b5638623 9#ifndef SQUID_HASH_H
10#define SQUID_HASH_H
11
f52a7d75 12typedef void HASHFREE(void *);
13typedef int HASHCMP(const void *, const void *);
14typedef unsigned int HASHHASH(const void *, unsigned int);
15typedef struct _hash_link hash_link;
16typedef struct _hash_table hash_table;
17
18struct _hash_link {
186477c1 19 void *key;
f52a7d75 20 hash_link *next;
21};
22
23struct _hash_table {
24 hash_link **buckets;
25 HASHCMP *cmp;
26 HASHHASH *hash;
27 unsigned int size;
28 unsigned int current_slot;
29 hash_link *next;
30 int count;
31};
32
e6ccf245 33SQUIDCEXTERN hash_table *hash_create(HASHCMP *, int, HASHHASH *);
34SQUIDCEXTERN void hash_join(hash_table *, hash_link *);
35SQUIDCEXTERN void hash_remove_link(hash_table *, hash_link *);
36SQUIDCEXTERN int hashPrime(int n);
4a8b20e8 37SQUIDCEXTERN hash_link *hash_lookup(hash_table *, const void *);
e6ccf245 38SQUIDCEXTERN void hash_first(hash_table *);
4a8b20e8 39SQUIDCEXTERN hash_link *hash_next(hash_table *);
e6ccf245 40SQUIDCEXTERN void hash_last(hash_table *);
41SQUIDCEXTERN hash_link *hash_get_bucket(hash_table *, unsigned int);
42SQUIDCEXTERN void hashFreeMemory(hash_table *);
43SQUIDCEXTERN void hashFreeItems(hash_table *, HASHFREE *);
44SQUIDCEXTERN HASHHASH hash_string;
45SQUIDCEXTERN HASHHASH hash4;
46SQUIDCEXTERN const char *hashKeyStr(hash_link *);
f52a7d75 47
48/*
49 * Here are some good prime number choices. It's important not to
50 * choose a prime number that is too close to exact powers of 2.
51 *
52 * HASH_SIZE 103 // prime number < 128
53 * HASH_SIZE 229 // prime number < 256
54 * HASH_SIZE 467 // prime number < 512
55 * HASH_SIZE 977 // prime number < 1024
56 * HASH_SIZE 1979 // prime number < 2048
57 * HASH_SIZE 4019 // prime number < 4096
58 * HASH_SIZE 6037 // prime number < 6144
59 * HASH_SIZE 7951 // prime number < 8192
60 * HASH_SIZE 12149 // prime number < 12288
61 * HASH_SIZE 16231 // prime number < 16384
62 * HASH_SIZE 33493 // prime number < 32768
63 * HASH_SIZE 65357 // prime number < 65536
64 */
f53969cc 65#define DEFAULT_HASH_SIZE 7951 /* prime number < 8192 */
b5638623 66
67#endif /* SQUID_HASH_H */
f53969cc 68