]> git.ipfire.org Git - thirdparty/git.git/blame - hashmap.h
hashmap: use *_entry APIs to wrap container_of
[thirdparty/git.git] / hashmap.h
CommitLineData
6a364ced
KB
1#ifndef HASHMAP_H
2#define HASHMAP_H
3
d40abc8e
JK
4#include "hash.h"
5
6a364ced
KB
6/*
7 * Generic implementation of hash-based key-value mappings.
1ecbf31d
SB
8 *
9 * An example that maps long to a string:
10 * For the sake of the example this allows to lookup exact values, too
11 * (i.e. it is operated as a set, the value is part of the key)
12 * -------------------------------------
13 *
14 * struct hashmap map;
15 * struct long2string {
16 * struct hashmap_entry ent; // must be the first member!
17 * long key;
18 * char value[FLEX_ARRAY]; // be careful with allocating on stack!
19 * };
20 *
21 * #define COMPARE_VALUE 1
22 *
826c778f
JS
23 * static int long2string_cmp(const void *hashmap_cmp_fn_data,
24 * const struct long2string *e1,
1ecbf31d 25 * const struct long2string *e2,
826c778f 26 * const void *keydata)
1ecbf31d 27 * {
826c778f
JS
28 * const char *string = keydata;
29 * unsigned flags = *(unsigned *)hashmap_cmp_fn_data;
1ecbf31d
SB
30 *
31 * if (flags & COMPARE_VALUE)
826c778f
JS
32 * return e1->key != e2->key ||
33 * strcmp(e1->value, string ? string : e2->value);
1ecbf31d 34 * else
826c778f 35 * return e1->key != e2->key;
1ecbf31d
SB
36 * }
37 *
38 * int main(int argc, char **argv)
39 * {
40 * long key;
826c778f
JS
41 * char value[255], action[32];
42 * unsigned flags = 0;
1ecbf31d
SB
43 *
44 * hashmap_init(&map, (hashmap_cmp_fn) long2string_cmp, &flags, 0);
45 *
826c778f 46 * while (scanf("%s %ld %s", action, &key, value)) {
1ecbf31d
SB
47 *
48 * if (!strcmp("add", action)) {
49 * struct long2string *e;
826c778f 50 * FLEX_ALLOC_STR(e, value, value);
d22245a2 51 * hashmap_entry_init(&e->ent, memhash(&key, sizeof(long)));
1ecbf31d 52 * e->key = key;
b94e5c1d 53 * hashmap_add(&map, &e->ent);
1ecbf31d
SB
54 * }
55 *
56 * if (!strcmp("print_all_by_key", action)) {
826c778f 57 * struct long2string k, *e;
d22245a2 58 * hashmap_entry_init(&k->ent, memhash(&key, sizeof(long)));
1ecbf31d
SB
59 * k.key = key;
60 *
826c778f 61 * flags &= ~COMPARE_VALUE;
f0e63c41
EW
62 * e = hashmap_get_entry(&map, &k, NULL, struct long2string, ent);
63 * if (e) {
826c778f 64 * printf("first: %ld %s\n", e->key, e->value);
f0e63c41
EW
65 * while ((e = hashmap_get_next_entry(&map, e,
66 * struct long2string, ent))) {
826c778f 67 * printf("found more: %ld %s\n", e->key, e->value);
6bcbdfb2 68 * }
1ecbf31d
SB
69 * }
70 * }
71 *
72 * if (!strcmp("has_exact_match", action)) {
1ecbf31d 73 * struct long2string *e;
826c778f 74 * FLEX_ALLOC_STR(e, value, value);
d22245a2 75 * hashmap_entry_init(&e->ent, memhash(&key, sizeof(long)));
1ecbf31d 76 * e->key = key;
1ecbf31d 77 *
826c778f 78 * flags |= COMPARE_VALUE;
b6c52416
EW
79 * printf("%sfound\n",
80 * hashmap_get(&map, &e->ent, NULL) ? "" : "not ");
826c778f 81 * free(e);
1ecbf31d
SB
82 * }
83 *
84 * if (!strcmp("has_exact_match_no_heap_alloc", action)) {
826c778f 85 * struct long2string k;
d22245a2 86 * hashmap_entry_init(&k->ent, memhash(&key, sizeof(long)));
826c778f 87 * k.key = key;
1ecbf31d 88 *
826c778f 89 * flags |= COMPARE_VALUE;
b6c52416
EW
90 * printf("%sfound\n",
91 * hashmap_get(&map, &k->ent, value) ? "" : "not ");
1ecbf31d
SB
92 * }
93 *
94 * if (!strcmp("end", action)) {
95 * hashmap_free(&map, 1);
96 * break;
97 * }
98 * }
826c778f
JS
99 *
100 * return 0;
1ecbf31d 101 * }
6a364ced
KB
102 */
103
1ecbf31d
SB
104/*
105 * Ready-to-use hash functions for strings, using the FNV-1 algorithm (see
106 * http://www.isthe.com/chongo/tech/comp/fnv).
107 * `strhash` and `strihash` take 0-terminated strings, while `memhash` and
108 * `memihash` operate on arbitrary-length memory.
109 * `strihash` and `memihash` are case insensitive versions.
110 * `memihash_cont` is a variant of `memihash` that allows a computation to be
111 * continued with another chunk of data.
112 */
55454427
DL
113unsigned int strhash(const char *buf);
114unsigned int strihash(const char *buf);
115unsigned int memhash(const void *buf, size_t len);
116unsigned int memihash(const void *buf, size_t len);
117unsigned int memihash_cont(unsigned int hash_seed, const void *buf, size_t len);
6a364ced 118
1ecbf31d
SB
119/*
120 * Converts a cryptographic hash (e.g. SHA-1) into an int-sized hash code
121 * for use in hash tables. Cryptographic hashes are supposed to have
122 * uniform distribution, so in contrast to `memhash()`, this just copies
123 * the first `sizeof(int)` bytes without shuffling any bits. Note that
124 * the results will be different on big-endian and little-endian
125 * platforms, so they should not be stored or transferred over the net.
126 */
d40abc8e 127static inline unsigned int oidhash(const struct object_id *oid)
039dc71a
KB
128{
129 /*
d40abc8e 130 * Equivalent to 'return *(unsigned int *)oid->hash;', but safe on
039dc71a
KB
131 * platforms that don't support unaligned reads.
132 */
133 unsigned int hash;
d40abc8e 134 memcpy(&hash, oid->hash, sizeof(hash));
039dc71a
KB
135 return hash;
136}
137
1ecbf31d
SB
138/*
139 * struct hashmap_entry is an opaque structure representing an entry in the
140 * hash table, which must be used as first member of user data structures.
141 * Ideally it should be followed by an int-sized member to prevent unused
142 * memory on 64-bit systems due to alignment.
143 */
6a364ced 144struct hashmap_entry {
1ecbf31d
SB
145 /*
146 * next points to the next entry in case of collisions (i.e. if
147 * multiple entries map to the same bucket)
148 */
6a364ced 149 struct hashmap_entry *next;
1ecbf31d
SB
150
151 /* entry's hash code */
6a364ced
KB
152 unsigned int hash;
153};
154
1ecbf31d
SB
155/*
156 * User-supplied function to test two hashmap entries for equality. Shall
157 * return 0 if the entries are equal.
158 *
159 * This function is always called with non-NULL `entry` and `entry_or_key`
160 * parameters that have the same hash code.
161 *
162 * When looking up an entry, the `key` and `keydata` parameters to hashmap_get
163 * and hashmap_remove are always passed as second `entry_or_key` and third
164 * argument `keydata`, respectively. Otherwise, `keydata` is NULL.
165 *
166 * When it is too expensive to allocate a user entry (either because it is
167 * large or varialbe sized, such that it is not on the stack), then the
168 * relevant data to check for equality should be passed via `keydata`.
169 * In this case `key` can be a stripped down version of the user key data
170 * or even just a hashmap_entry having the correct hash.
171 *
172 * The `hashmap_cmp_fn_data` entry is the pointer given in the init function.
173 */
7663cdc8
SB
174typedef int (*hashmap_cmp_fn)(const void *hashmap_cmp_fn_data,
175 const void *entry, const void *entry_or_key,
176 const void *keydata);
6a364ced 177
1ecbf31d
SB
178/*
179 * struct hashmap is the hash table structure. Members can be used as follows,
180 * but should not be modified directly.
181 */
6a364ced
KB
182struct hashmap {
183 struct hashmap_entry **table;
1ecbf31d
SB
184
185 /* Stores the comparison function specified in `hashmap_init()`. */
6a364ced 186 hashmap_cmp_fn cmpfn;
7663cdc8 187 const void *cmpfn_data;
6a364ced 188
1ecbf31d 189 /* total number of entries (0 means the hashmap is empty) */
8b604d19 190 unsigned int private_size; /* use hashmap_get_size() */
1ecbf31d
SB
191
192 /*
193 * tablesize is the allocated size of the hash table. A non-0 value
194 * indicates that the hashmap is initialized. It may also be useful
195 * for statistical purposes (i.e. `size / tablesize` is the current
196 * load factor).
197 */
198 unsigned int tablesize;
199
200 unsigned int grow_at;
201 unsigned int shrink_at;
202
8b604d19 203 unsigned int do_count_items : 1;
6a364ced
KB
204};
205
206/* hashmap functions */
207
1ecbf31d
SB
208/*
209 * Initializes a hashmap structure.
210 *
211 * `map` is the hashmap to initialize.
212 *
213 * The `equals_function` can be specified to compare two entries for equality.
214 * If NULL, entries are considered equal if their hash codes are equal.
215 *
216 * The `equals_function_data` parameter can be used to provide additional data
217 * (a callback cookie) that will be passed to `equals_function` each time it
218 * is called. This allows a single `equals_function` to implement multiple
219 * comparison functions.
220 *
221 * If the total number of entries is known in advance, the `initial_size`
222 * parameter may be used to preallocate a sufficiently large table and thus
223 * prevent expensive resizing. If 0, the table is dynamically resized.
224 */
55454427 225void hashmap_init(struct hashmap *map,
7663cdc8
SB
226 hashmap_cmp_fn equals_function,
227 const void *equals_function_data,
228 size_t initial_size);
1ecbf31d
SB
229
230/*
231 * Frees a hashmap structure and allocated memory.
232 *
233 * If `free_entries` is true, each hashmap_entry in the map is freed as well
234 * using stdlibs free().
235 */
55454427 236void hashmap_free(struct hashmap *map, int free_entries);
6a364ced
KB
237
238/* hashmap_entry functions */
239
1ecbf31d
SB
240/*
241 * Initializes a hashmap_entry structure.
242 *
243 * `entry` points to the entry to initialize.
244 * `hash` is the hash code of the entry.
245 *
246 * The hashmap_entry structure does not hold references to external resources,
247 * and it is safe to just discard it once you are done with it (i.e. if
248 * your structure was allocated with xmalloc(), you can just free(3) it,
249 * and if it is on stack, you can just let it go out of scope).
250 */
d22245a2
EW
251static inline void hashmap_entry_init(struct hashmap_entry *e,
252 unsigned int hash)
6a364ced 253{
6a364ced
KB
254 e->hash = hash;
255 e->next = NULL;
256}
1ecbf31d 257
8b604d19
JH
258/*
259 * Return the number of items in the map.
260 */
261static inline unsigned int hashmap_get_size(struct hashmap *map)
262{
263 if (map->do_count_items)
264 return map->private_size;
265
266 BUG("hashmap_get_size: size not set");
267 return 0;
268}
269
1ecbf31d
SB
270/*
271 * Returns the hashmap entry for the specified key, or NULL if not found.
272 *
273 * `map` is the hashmap structure.
274 *
275 * `key` is a user data structure that starts with hashmap_entry that has at
276 * least been initialized with the proper hash code (via `hashmap_entry_init`).
277 *
278 * `keydata` is a data structure that holds just enough information to check
279 * for equality to a given entry.
280 *
281 * If the key data is variable-sized (e.g. a FLEX_ARRAY string) or quite large,
282 * it is undesirable to create a full-fledged entry structure on the heap and
283 * copy all the key data into the structure.
284 *
285 * In this case, the `keydata` parameter can be used to pass
286 * variable-sized key data directly to the comparison function, and the `key`
287 * parameter can be a stripped-down, fixed size entry structure allocated on the
288 * stack.
289 *
290 * If an entry with matching hash code is found, `key` and `keydata` are passed
291 * to `hashmap_cmp_fn` to decide whether the entry matches the key.
292 */
b6c52416 293void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key,
1ecbf31d 294 const void *keydata);
6a364ced 295
1ecbf31d
SB
296/*
297 * Returns the hashmap entry for the specified hash code and key data,
298 * or NULL if not found.
299 *
300 * `map` is the hashmap structure.
301 * `hash` is the hash code of the entry to look up.
302 *
303 * If an entry with matching hash code is found, `keydata` is passed to
304 * `hashmap_cmp_fn` to decide whether the entry matches the key. The
305 * `entry_or_key` parameter of `hashmap_cmp_fn` points to a hashmap_entry
306 * structure that should not be used in the comparison.
307 */
ab73a9d1 308static inline void *hashmap_get_from_hash(const struct hashmap *map,
1ecbf31d
SB
309 unsigned int hash,
310 const void *keydata)
ab73a9d1
KB
311{
312 struct hashmap_entry key;
313 hashmap_entry_init(&key, hash);
314 return hashmap_get(map, &key, keydata);
315}
316
1ecbf31d
SB
317/*
318 * Returns the next equal hashmap entry, or NULL if not found. This can be
319 * used to iterate over duplicate entries (see `hashmap_add`).
320 *
321 * `map` is the hashmap structure.
322 * `entry` is the hashmap_entry to start the search from, obtained via a previous
323 * call to `hashmap_get` or `hashmap_get_next`.
324 */
6bcbdfb2 325struct hashmap_entry *hashmap_get_next(const struct hashmap *map,
f6eb6bdc 326 const struct hashmap_entry *entry);
1ecbf31d
SB
327
328/*
329 * Adds a hashmap entry. This allows to add duplicate entries (i.e.
330 * separate values with the same key according to hashmap_cmp_fn).
331 *
332 * `map` is the hashmap structure.
333 * `entry` is the entry to add.
334 */
b94e5c1d 335void hashmap_add(struct hashmap *map, struct hashmap_entry *entry);
1ecbf31d
SB
336
337/*
338 * Adds or replaces a hashmap entry. If the hashmap contains duplicate
339 * entries equal to the specified entry, only one of them will be replaced.
340 *
341 * `map` is the hashmap structure.
342 * `entry` is the entry to add or replace.
343 * Returns the replaced entry, or NULL if not found (i.e. the entry was added).
344 */
26b455f2 345void *hashmap_put(struct hashmap *map, struct hashmap_entry *entry);
1ecbf31d
SB
346
347/*
348 * Removes a hashmap entry matching the specified key. If the hashmap contains
349 * duplicate entries equal to the specified key, only one of them will be
350 * removed. Returns the removed entry, or NULL if not found.
351 *
352 * Argument explanation is the same as in `hashmap_get`.
353 */
28ee7941 354void *hashmap_remove(struct hashmap *map, const struct hashmap_entry *key,
1ecbf31d
SB
355 const void *keydata);
356
357/*
358 * Returns the `bucket` an entry is stored in.
359 * Useful for multithreaded read access.
360 */
0607e100
JH
361int hashmap_bucket(const struct hashmap *map, unsigned int hash);
362
1ecbf31d
SB
363/*
364 * Used to iterate over all entries of a hashmap. Note that it is
365 * not safe to add or remove entries to the hashmap while
366 * iterating.
367 */
368struct hashmap_iter {
369 struct hashmap *map;
370 struct hashmap_entry *next;
371 unsigned int tablepos;
372};
6a364ced 373
1ecbf31d 374/* Initializes a `hashmap_iter` structure. */
55454427 375void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter);
1ecbf31d
SB
376
377/* Returns the next hashmap_entry, or NULL if there are no more entries. */
55454427 378void *hashmap_iter_next(struct hashmap_iter *iter);
1ecbf31d
SB
379
380/* Initializes the iterator and returns the first entry, if any. */
6a364ced
KB
381static inline void *hashmap_iter_first(struct hashmap *map,
382 struct hashmap_iter *iter)
383{
384 hashmap_iter_init(map, iter);
385 return hashmap_iter_next(iter);
386}
387
f0e63c41
EW
388/*
389 * returns a @pointer of @type matching @keyvar, or NULL if nothing found.
390 * @keyvar is a pointer of @type
391 * @member is the name of the "struct hashmap_entry" field in @type
392 */
393#define hashmap_get_entry(map, keyvar, keydata, type, member) \
394 container_of_or_null(hashmap_get(map, &(keyvar)->member, keydata), \
395 type, member)
396
397#define hashmap_get_entry_from_hash(map, hash, keydata, type, member) \
398 container_of_or_null(hashmap_get_from_hash(map, hash, keydata), \
399 type, member)
400/*
401 * returns the next equal @type pointer to @var, or NULL if not found.
402 * @var is a pointer of @type
403 * @member is the name of the "struct hashmap_entry" field in @type
404 */
405#define hashmap_get_next_entry(map, var, type, member) \
406 container_of_or_null(hashmap_get_next(map, &(var)->member), \
407 type, member)
408
409/*
410 * iterate @map starting from @var, where @var is a pointer of @type
411 * and @member is the name of the "struct hashmap_entry" field in @type
412 */
413#define hashmap_for_each_entry_from(map, var, type, member) \
414 for (; \
415 var; \
416 var = hashmap_get_next_entry(map, var, type, member))
417
8b604d19
JH
418/*
419 * Disable item counting and automatic rehashing when adding/removing items.
420 *
421 * Normally, the hashmap keeps track of the number of items in the map
422 * and uses it to dynamically resize it. This (both the counting and
423 * the resizing) can cause problems when the map is being used by
424 * threaded callers (because the hashmap code does not know about the
425 * locking strategy used by the threaded callers and therefore, does
426 * not know how to protect the "private_size" counter).
427 */
428static inline void hashmap_disable_item_counting(struct hashmap *map)
429{
430 map->do_count_items = 0;
431}
432
433/*
434 * Re-enable item couting when adding/removing items.
435 * If counting is currently disabled, it will force count them.
436 * It WILL NOT automatically rehash them.
437 */
438static inline void hashmap_enable_item_counting(struct hashmap *map)
439{
8b604d19
JH
440 unsigned int n = 0;
441 struct hashmap_iter iter;
442
443 if (map->do_count_items)
444 return;
445
446 hashmap_iter_init(map, &iter);
7d68bb07 447 while (hashmap_iter_next(&iter))
8b604d19
JH
448 n++;
449
450 map->do_count_items = 1;
451 map->private_size = n;
452}
453
1ecbf31d 454/* String interning */
7b64d42d 455
1ecbf31d
SB
456/*
457 * Returns the unique, interned version of the specified string or data,
458 * similar to the `String.intern` API in Java and .NET, respectively.
459 * Interned strings remain valid for the entire lifetime of the process.
460 *
461 * Can be used as `[x]strdup()` or `xmemdupz` replacement, except that interned
462 * strings / data must not be modified or freed.
463 *
464 * Interned strings are best used for short strings with high probability of
465 * duplicates.
466 *
467 * Uses a hashmap to store the pool of interned strings.
468 */
55454427 469const void *memintern(const void *data, size_t len);
7b64d42d
KB
470static inline const char *strintern(const char *string)
471{
472 return memintern(string, strlen(string));
473}
474
6a364ced 475#endif