1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
7 Copyright 2014 Michal Schmidt
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
30 #include "siphash24.h"
33 #include "random-util.h"
35 #ifdef ENABLE_DEBUG_HASHMAP
40 * Implementation of hashmaps.
42 * - uses less RAM compared to closed addressing (chaining), because
43 * our entries are small (especially in Sets, which tend to contain
44 * the majority of entries in systemd).
45 * Collision resolution: Robin Hood
46 * - tends to equalize displacement of entries from their optimal buckets.
47 * Probe sequence: linear
48 * - though theoretically worse than random probing/uniform hashing/double
49 * hashing, it is good for cache locality.
52 * Celis, P. 1986. Robin Hood Hashing.
53 * Ph.D. Dissertation. University of Waterloo, Waterloo, Ont., Canada, Canada.
54 * https://cs.uwaterloo.ca/research/tr/1986/CS-86-14.pdf
55 * - The results are derived for random probing. Suggests deletion with
56 * tombstones and two mean-centered search methods. None of that works
57 * well for linear probing.
59 * Janson, S. 2005. Individual displacements for linear probing hashing with different insertion policies.
60 * ACM Trans. Algorithms 1, 2 (October 2005), 177-213.
61 * DOI=10.1145/1103963.1103964 http://doi.acm.org/10.1145/1103963.1103964
62 * http://www.math.uu.se/~svante/papers/sj157.pdf
63 * - Applies to Robin Hood with linear probing. Contains remarks on
64 * the unsuitability of mean-centered search with linear probing.
66 * Viola, A. 2005. Exact distribution of individual displacements in linear probing hashing.
67 * ACM Trans. Algorithms 1, 2 (October 2005), 214-242.
68 * DOI=10.1145/1103963.1103965 http://doi.acm.org/10.1145/1103963.1103965
69 * - Similar to Janson. Note that Viola writes about C_{m,n} (number of probes
70 * in a successful search), and Janson writes about displacement. C = d + 1.
72 * Goossaert, E. 2013. Robin Hood hashing: backward shift deletion.
73 * http://codecapsule.com/2013/11/17/robin-hood-hashing-backward-shift-deletion/
74 * - Explanation of backward shift deletion with pictures.
76 * Khuong, P. 2013. The Other Robin Hood Hashing.
77 * http://www.pvk.ca/Blog/2013/11/26/the-other-robin-hood-hashing/
78 * - Short summary of random vs. linear probing, and tombstones vs. backward shift.
82 * XXX Ideas for improvement:
83 * For unordered hashmaps, randomize iteration order, similarly to Perl:
84 * http://blog.booking.com/hardening-perls-hash-function.html
87 /* INV_KEEP_FREE = 1 / (1 - max_load_factor)
88 * e.g. 1 / (1 - 0.8) = 5 ... keep one fifth of the buckets free. */
89 #define INV_KEEP_FREE 5U
91 /* Fields common to entries of all hashmap/set types */
92 struct hashmap_base_entry {
96 /* Entry types for specific hashmap/set types
97 * hashmap_base_entry must be at the beginning of each entry struct. */
99 struct plain_hashmap_entry {
100 struct hashmap_base_entry b;
104 struct ordered_hashmap_entry {
105 struct plain_hashmap_entry p;
106 unsigned iterate_next, iterate_previous;
110 struct hashmap_base_entry b;
113 /* In several functions it is advantageous to have the hash table extended
114 * virtually by a couple of additional buckets. We reserve special index values
115 * for these "swap" buckets. */
116 #define _IDX_SWAP_BEGIN (UINT_MAX - 3)
117 #define IDX_PUT (_IDX_SWAP_BEGIN + 0)
118 #define IDX_TMP (_IDX_SWAP_BEGIN + 1)
119 #define _IDX_SWAP_END (_IDX_SWAP_BEGIN + 2)
121 #define IDX_FIRST (UINT_MAX - 1) /* special index for freshly initialized iterators */
122 #define IDX_NIL UINT_MAX /* special index value meaning "none" or "end" */
124 assert_cc(IDX_FIRST == _IDX_SWAP_END);
125 assert_cc(IDX_FIRST == _IDX_ITERATOR_FIRST);
127 /* Storage space for the "swap" buckets.
128 * All entry types can fit into a ordered_hashmap_entry. */
129 struct swap_entries {
130 struct ordered_hashmap_entry e[_IDX_SWAP_END - _IDX_SWAP_BEGIN];
133 /* Distance from Initial Bucket */
134 typedef uint8_t dib_raw_t;
135 #define DIB_RAW_OVERFLOW ((dib_raw_t)0xfdU) /* indicates DIB value is greater than representable */
136 #define DIB_RAW_REHASH ((dib_raw_t)0xfeU) /* entry yet to be rehashed during in-place resize */
137 #define DIB_RAW_FREE ((dib_raw_t)0xffU) /* a free bucket */
138 #define DIB_RAW_INIT ((char)DIB_RAW_FREE) /* a byte to memset a DIB store with when initializing */
140 #define DIB_FREE UINT_MAX
142 #ifdef ENABLE_DEBUG_HASHMAP
143 struct hashmap_debug_info {
144 LIST_FIELDS(struct hashmap_debug_info, debug_list);
145 unsigned max_entries; /* high watermark of n_entries */
147 /* who allocated this hashmap */
152 /* fields to detect modification while iterating */
153 unsigned put_count; /* counts puts into the hashmap */
154 unsigned rem_count; /* counts removals from hashmap */
155 unsigned last_rem_idx; /* remembers last removal index */
158 /* Tracks all existing hashmaps. Get at it from gdb. See sd_dump_hashmaps.py */
159 static LIST_HEAD(struct hashmap_debug_info, hashmap_debug_list);
161 #define HASHMAP_DEBUG_FIELDS struct hashmap_debug_info debug;
163 #else /* !ENABLE_DEBUG_HASHMAP */
164 #define HASHMAP_DEBUG_FIELDS
165 #endif /* ENABLE_DEBUG_HASHMAP */
169 HASHMAP_TYPE_ORDERED,
174 struct _packed_ indirect_storage {
175 char *storage; /* where buckets and DIBs are stored */
176 uint8_t hash_key[HASH_KEY_SIZE]; /* hash key; changes during resize */
178 unsigned n_entries; /* number of stored entries */
179 unsigned n_buckets; /* number of buckets */
181 unsigned idx_lowest_entry; /* Index below which all buckets are free.
182 Makes "while(hashmap_steal_first())" loops
183 O(n) instead of O(n^2) for unordered hashmaps. */
184 uint8_t _pad[3]; /* padding for the whole HashmapBase */
185 /* The bitfields in HashmapBase complete the alignment of the whole thing. */
188 struct direct_storage {
189 /* This gives us 39 bytes on 64bit, or 35 bytes on 32bit.
190 * That's room for 4 set_entries + 4 DIB bytes + 3 unused bytes on 64bit,
191 * or 7 set_entries + 7 DIB bytes + 0 unused bytes on 32bit. */
192 char storage[sizeof(struct indirect_storage)];
195 #define DIRECT_BUCKETS(entry_t) \
196 (sizeof(struct direct_storage) / (sizeof(entry_t) + sizeof(dib_raw_t)))
198 /* We should be able to store at least one entry directly. */
199 assert_cc(DIRECT_BUCKETS(struct ordered_hashmap_entry) >= 1);
201 /* We have 3 bits for n_direct_entries. */
202 assert_cc(DIRECT_BUCKETS(struct set_entry) < (1 << 3));
204 /* Hashmaps with directly stored entries all use this shared hash key.
205 * It's no big deal if the key is guessed, because there can be only
206 * a handful of directly stored entries in a hashmap. When a hashmap
207 * outgrows direct storage, it gets its own key for indirect storage. */
208 static uint8_t shared_hash_key[HASH_KEY_SIZE];
209 static bool shared_hash_key_initialized;
211 /* Fields that all hashmap/set types must have */
213 const struct hash_ops *hash_ops; /* hash and compare ops to use */
216 struct indirect_storage indirect; /* if has_indirect */
217 struct direct_storage direct; /* if !has_indirect */
220 enum HashmapType type:2; /* HASHMAP_TYPE_* */
221 bool has_indirect:1; /* whether indirect storage is used */
222 unsigned n_direct_entries:3; /* Number of entries in direct storage.
223 * Only valid if !has_indirect. */
224 bool from_pool:1; /* whether was allocated from mempool */
225 HASHMAP_DEBUG_FIELDS /* optional hashmap_debug_info */
228 /* Specific hash types
229 * HashmapBase must be at the beginning of each hashmap struct. */
232 struct HashmapBase b;
235 struct OrderedHashmap {
236 struct HashmapBase b;
237 unsigned iterate_list_head, iterate_list_tail;
241 struct HashmapBase b;
244 DEFINE_MEMPOOL(hashmap_pool, Hashmap, 8);
245 DEFINE_MEMPOOL(ordered_hashmap_pool, OrderedHashmap, 8);
246 /* No need for a separate Set pool */
247 assert_cc(sizeof(Hashmap) == sizeof(Set));
249 struct hashmap_type_info {
252 struct mempool *mempool;
253 unsigned n_direct_buckets;
256 static const struct hashmap_type_info hashmap_type_info[_HASHMAP_TYPE_MAX] = {
257 [HASHMAP_TYPE_PLAIN] = {
258 .head_size = sizeof(Hashmap),
259 .entry_size = sizeof(struct plain_hashmap_entry),
260 .mempool = &hashmap_pool,
261 .n_direct_buckets = DIRECT_BUCKETS(struct plain_hashmap_entry),
263 [HASHMAP_TYPE_ORDERED] = {
264 .head_size = sizeof(OrderedHashmap),
265 .entry_size = sizeof(struct ordered_hashmap_entry),
266 .mempool = &ordered_hashmap_pool,
267 .n_direct_buckets = DIRECT_BUCKETS(struct ordered_hashmap_entry),
269 [HASHMAP_TYPE_SET] = {
270 .head_size = sizeof(Set),
271 .entry_size = sizeof(struct set_entry),
272 .mempool = &hashmap_pool,
273 .n_direct_buckets = DIRECT_BUCKETS(struct set_entry),
277 unsigned long string_hash_func(const void *p, const uint8_t hash_key[HASH_KEY_SIZE]) {
279 siphash24((uint8_t*) &u, p, strlen(p), hash_key);
280 return (unsigned long) u;
283 int string_compare_func(const void *a, const void *b) {
287 const struct hash_ops string_hash_ops = {
288 .hash = string_hash_func,
289 .compare = string_compare_func
292 unsigned long trivial_hash_func(const void *p, const uint8_t hash_key[HASH_KEY_SIZE]) {
294 siphash24((uint8_t*) &u, &p, sizeof(p), hash_key);
295 return (unsigned long) u;
298 int trivial_compare_func(const void *a, const void *b) {
299 return a < b ? -1 : (a > b ? 1 : 0);
302 const struct hash_ops trivial_hash_ops = {
303 .hash = trivial_hash_func,
304 .compare = trivial_compare_func
307 unsigned long uint64_hash_func(const void *p, const uint8_t hash_key[HASH_KEY_SIZE]) {
309 siphash24((uint8_t*) &u, p, sizeof(uint64_t), hash_key);
310 return (unsigned long) u;
313 int uint64_compare_func(const void *_a, const void *_b) {
315 a = *(const uint64_t*) _a;
316 b = *(const uint64_t*) _b;
317 return a < b ? -1 : (a > b ? 1 : 0);
320 const struct hash_ops uint64_hash_ops = {
321 .hash = uint64_hash_func,
322 .compare = uint64_compare_func
325 #if SIZEOF_DEV_T != 8
326 unsigned long devt_hash_func(const void *p, const uint8_t hash_key[HASH_KEY_SIZE]) {
328 siphash24((uint8_t*) &u, p, sizeof(dev_t), hash_key);
329 return (unsigned long) u;
332 int devt_compare_func(const void *_a, const void *_b) {
334 a = *(const dev_t*) _a;
335 b = *(const dev_t*) _b;
336 return a < b ? -1 : (a > b ? 1 : 0);
339 const struct hash_ops devt_hash_ops = {
340 .hash = devt_hash_func,
341 .compare = devt_compare_func
345 static unsigned n_buckets(HashmapBase *h) {
346 return h->has_indirect ? h->indirect.n_buckets
347 : hashmap_type_info[h->type].n_direct_buckets;
350 static unsigned n_entries(HashmapBase *h) {
351 return h->has_indirect ? h->indirect.n_entries
352 : h->n_direct_entries;
355 static void n_entries_inc(HashmapBase *h) {
357 h->indirect.n_entries++;
359 h->n_direct_entries++;
362 static void n_entries_dec(HashmapBase *h) {
364 h->indirect.n_entries--;
366 h->n_direct_entries--;
369 static char *storage_ptr(HashmapBase *h) {
370 return h->has_indirect ? h->indirect.storage
374 static uint8_t *hash_key(HashmapBase *h) {
375 return h->has_indirect ? h->indirect.hash_key
379 static unsigned base_bucket_hash(HashmapBase *h, const void *p) {
380 return (unsigned) (h->hash_ops->hash(p, hash_key(h)) % n_buckets(h));
382 #define bucket_hash(h, p) base_bucket_hash(HASHMAP_BASE(h), p)
384 static void get_hash_key(uint8_t hash_key[HASH_KEY_SIZE], bool reuse_is_ok) {
385 static uint8_t current[HASH_KEY_SIZE];
386 static bool current_initialized = false;
388 /* Returns a hash function key to use. In order to keep things
389 * fast we will not generate a new key each time we allocate a
390 * new hash table. Instead, we'll just reuse the most recently
391 * generated one, except if we never generated one or when we
392 * are rehashing an entire hash table because we reached a
395 if (!current_initialized || !reuse_is_ok) {
396 random_bytes(current, sizeof(current));
397 current_initialized = true;
400 memcpy(hash_key, current, sizeof(current));
403 static struct hashmap_base_entry *bucket_at(HashmapBase *h, unsigned idx) {
404 return (struct hashmap_base_entry*)
405 (storage_ptr(h) + idx * hashmap_type_info[h->type].entry_size);
408 static struct plain_hashmap_entry *plain_bucket_at(Hashmap *h, unsigned idx) {
409 return (struct plain_hashmap_entry*) bucket_at(HASHMAP_BASE(h), idx);
412 static struct ordered_hashmap_entry *ordered_bucket_at(OrderedHashmap *h, unsigned idx) {
413 return (struct ordered_hashmap_entry*) bucket_at(HASHMAP_BASE(h), idx);
416 static struct set_entry *set_bucket_at(Set *h, unsigned idx) {
417 return (struct set_entry*) bucket_at(HASHMAP_BASE(h), idx);
420 static struct ordered_hashmap_entry *bucket_at_swap(struct swap_entries *swap, unsigned idx) {
421 return &swap->e[idx - _IDX_SWAP_BEGIN];
424 /* Returns a pointer to the bucket at index idx.
425 * Understands real indexes and swap indexes, hence "_virtual". */
426 static struct hashmap_base_entry *bucket_at_virtual(HashmapBase *h, struct swap_entries *swap,
428 if (idx < _IDX_SWAP_BEGIN)
429 return bucket_at(h, idx);
431 if (idx < _IDX_SWAP_END)
432 return &bucket_at_swap(swap, idx)->p.b;
434 assert_not_reached("Invalid index");
437 static dib_raw_t *dib_raw_ptr(HashmapBase *h) {
439 (storage_ptr(h) + hashmap_type_info[h->type].entry_size * n_buckets(h));
442 static unsigned bucket_distance(HashmapBase *h, unsigned idx, unsigned from) {
443 return idx >= from ? idx - from
444 : n_buckets(h) + idx - from;
447 static unsigned bucket_calculate_dib(HashmapBase *h, unsigned idx, dib_raw_t raw_dib) {
448 unsigned initial_bucket;
450 if (raw_dib == DIB_RAW_FREE)
453 if (_likely_(raw_dib < DIB_RAW_OVERFLOW))
457 * Having an overflow DIB value is very unlikely. The hash function
458 * would have to be bad. For example, in a table of size 2^24 filled
459 * to load factor 0.9 the maximum observed DIB is only about 60.
460 * In theory (assuming I used Maxima correctly), for an infinite size
461 * hash table with load factor 0.8 the probability of a given entry
462 * having DIB > 40 is 1.9e-8.
463 * This returns the correct DIB value by recomputing the hash value in
464 * the unlikely case. XXX Hitting this case could be a hint to rehash.
466 initial_bucket = bucket_hash(h, bucket_at(h, idx)->key);
467 return bucket_distance(h, idx, initial_bucket);
470 static void bucket_set_dib(HashmapBase *h, unsigned idx, unsigned dib) {
471 dib_raw_ptr(h)[idx] = dib != DIB_FREE ? MIN(dib, DIB_RAW_OVERFLOW) : DIB_RAW_FREE;
474 static unsigned skip_free_buckets(HashmapBase *h, unsigned idx) {
477 dibs = dib_raw_ptr(h);
479 for ( ; idx < n_buckets(h); idx++)
480 if (dibs[idx] != DIB_RAW_FREE)
486 static void bucket_mark_free(HashmapBase *h, unsigned idx) {
487 memzero(bucket_at(h, idx), hashmap_type_info[h->type].entry_size);
488 bucket_set_dib(h, idx, DIB_FREE);
491 static void bucket_move_entry(HashmapBase *h, struct swap_entries *swap,
492 unsigned from, unsigned to) {
493 struct hashmap_base_entry *e_from, *e_to;
497 e_from = bucket_at_virtual(h, swap, from);
498 e_to = bucket_at_virtual(h, swap, to);
500 memcpy(e_to, e_from, hashmap_type_info[h->type].entry_size);
502 if (h->type == HASHMAP_TYPE_ORDERED) {
503 OrderedHashmap *lh = (OrderedHashmap*) h;
504 struct ordered_hashmap_entry *le, *le_to;
506 le_to = (struct ordered_hashmap_entry*) e_to;
508 if (le_to->iterate_next != IDX_NIL) {
509 le = (struct ordered_hashmap_entry*)
510 bucket_at_virtual(h, swap, le_to->iterate_next);
511 le->iterate_previous = to;
514 if (le_to->iterate_previous != IDX_NIL) {
515 le = (struct ordered_hashmap_entry*)
516 bucket_at_virtual(h, swap, le_to->iterate_previous);
517 le->iterate_next = to;
520 if (lh->iterate_list_head == from)
521 lh->iterate_list_head = to;
522 if (lh->iterate_list_tail == from)
523 lh->iterate_list_tail = to;
527 static unsigned next_idx(HashmapBase *h, unsigned idx) {
528 return (idx + 1U) % n_buckets(h);
531 static unsigned prev_idx(HashmapBase *h, unsigned idx) {
532 return (n_buckets(h) + idx - 1U) % n_buckets(h);
535 static void *entry_value(HashmapBase *h, struct hashmap_base_entry *e) {
538 case HASHMAP_TYPE_PLAIN:
539 case HASHMAP_TYPE_ORDERED:
540 return ((struct plain_hashmap_entry*)e)->value;
542 case HASHMAP_TYPE_SET:
543 return (void*) e->key;
546 assert_not_reached("Unknown hashmap type");
550 static void base_remove_entry(HashmapBase *h, unsigned idx) {
551 unsigned left, right, prev, dib;
552 dib_raw_t raw_dib, *dibs;
554 dibs = dib_raw_ptr(h);
555 assert(dibs[idx] != DIB_RAW_FREE);
557 #ifdef ENABLE_DEBUG_HASHMAP
558 h->debug.rem_count++;
559 h->debug.last_rem_idx = idx;
563 /* Find the stop bucket ("right"). It is either free or has DIB == 0. */
564 for (right = next_idx(h, left); ; right = next_idx(h, right)) {
565 raw_dib = dibs[right];
566 if (raw_dib == 0 || raw_dib == DIB_RAW_FREE)
569 /* The buckets are not supposed to be all occupied and with DIB > 0.
570 * That would mean we could make everyone better off by shifting them
571 * backward. This scenario is impossible. */
572 assert(left != right);
575 if (h->type == HASHMAP_TYPE_ORDERED) {
576 OrderedHashmap *lh = (OrderedHashmap*) h;
577 struct ordered_hashmap_entry *le = ordered_bucket_at(lh, idx);
579 if (le->iterate_next != IDX_NIL)
580 ordered_bucket_at(lh, le->iterate_next)->iterate_previous = le->iterate_previous;
582 lh->iterate_list_tail = le->iterate_previous;
584 if (le->iterate_previous != IDX_NIL)
585 ordered_bucket_at(lh, le->iterate_previous)->iterate_next = le->iterate_next;
587 lh->iterate_list_head = le->iterate_next;
590 /* Now shift all buckets in the interval (left, right) one step backwards */
591 for (prev = left, left = next_idx(h, left); left != right;
592 prev = left, left = next_idx(h, left)) {
593 dib = bucket_calculate_dib(h, left, dibs[left]);
595 bucket_move_entry(h, NULL, left, prev);
596 bucket_set_dib(h, prev, dib - 1);
599 bucket_mark_free(h, prev);
602 #define remove_entry(h, idx) base_remove_entry(HASHMAP_BASE(h), idx)
604 static unsigned hashmap_iterate_in_insertion_order(OrderedHashmap *h, Iterator *i) {
605 struct ordered_hashmap_entry *e;
611 if (i->idx == IDX_NIL)
614 if (i->idx == IDX_FIRST && h->iterate_list_head == IDX_NIL)
617 if (i->idx == IDX_FIRST) {
618 idx = h->iterate_list_head;
619 e = ordered_bucket_at(h, idx);
622 e = ordered_bucket_at(h, idx);
624 * We allow removing the current entry while iterating, but removal may cause
625 * a backward shift. The next entry may thus move one bucket to the left.
626 * To detect when it happens, we remember the key pointer of the entry we were
627 * going to iterate next. If it does not match, there was a backward shift.
629 if (e->p.b.key != i->next_key) {
630 idx = prev_idx(HASHMAP_BASE(h), idx);
631 e = ordered_bucket_at(h, idx);
633 assert(e->p.b.key == i->next_key);
636 #ifdef ENABLE_DEBUG_HASHMAP
640 if (e->iterate_next != IDX_NIL) {
641 struct ordered_hashmap_entry *n;
642 i->idx = e->iterate_next;
643 n = ordered_bucket_at(h, i->idx);
644 i->next_key = n->p.b.key;
655 static unsigned hashmap_iterate_in_internal_order(HashmapBase *h, Iterator *i) {
661 if (i->idx == IDX_NIL)
664 if (i->idx == IDX_FIRST) {
665 /* fast forward to the first occupied bucket */
666 if (h->has_indirect) {
667 i->idx = skip_free_buckets(h, h->indirect.idx_lowest_entry);
668 h->indirect.idx_lowest_entry = i->idx;
670 i->idx = skip_free_buckets(h, 0);
672 if (i->idx == IDX_NIL)
675 struct hashmap_base_entry *e;
679 e = bucket_at(h, i->idx);
681 * We allow removing the current entry while iterating, but removal may cause
682 * a backward shift. The next entry may thus move one bucket to the left.
683 * To detect when it happens, we remember the key pointer of the entry we were
684 * going to iterate next. If it does not match, there was a backward shift.
686 if (e->key != i->next_key)
687 e = bucket_at(h, --i->idx);
689 assert(e->key == i->next_key);
693 #ifdef ENABLE_DEBUG_HASHMAP
697 i->idx = skip_free_buckets(h, i->idx + 1);
698 if (i->idx != IDX_NIL)
699 i->next_key = bucket_at(h, i->idx)->key;
710 static unsigned hashmap_iterate_entry(HashmapBase *h, Iterator *i) {
716 #ifdef ENABLE_DEBUG_HASHMAP
717 if (i->idx == IDX_FIRST) {
718 i->put_count = h->debug.put_count;
719 i->rem_count = h->debug.rem_count;
721 /* While iterating, must not add any new entries */
722 assert(i->put_count == h->debug.put_count);
723 /* ... or remove entries other than the current one */
724 assert(i->rem_count == h->debug.rem_count ||
725 (i->rem_count == h->debug.rem_count - 1 &&
726 i->prev_idx == h->debug.last_rem_idx));
727 /* Reset our removals counter */
728 i->rem_count = h->debug.rem_count;
732 return h->type == HASHMAP_TYPE_ORDERED ? hashmap_iterate_in_insertion_order((OrderedHashmap*) h, i)
733 : hashmap_iterate_in_internal_order(h, i);
736 void *internal_hashmap_iterate(HashmapBase *h, Iterator *i, const void **key) {
737 struct hashmap_base_entry *e;
741 idx = hashmap_iterate_entry(h, i);
742 if (idx == IDX_NIL) {
749 e = bucket_at(h, idx);
750 data = entry_value(h, e);
757 void *set_iterate(Set *s, Iterator *i) {
758 return internal_hashmap_iterate(HASHMAP_BASE(s), i, NULL);
761 #define HASHMAP_FOREACH_IDX(idx, h, i) \
762 for ((i) = ITERATOR_FIRST, (idx) = hashmap_iterate_entry((h), &(i)); \
764 (idx) = hashmap_iterate_entry((h), &(i)))
766 static void reset_direct_storage(HashmapBase *h) {
767 const struct hashmap_type_info *hi = &hashmap_type_info[h->type];
770 assert(!h->has_indirect);
772 p = mempset(h->direct.storage, 0, hi->entry_size * hi->n_direct_buckets);
773 memset(p, DIB_RAW_INIT, sizeof(dib_raw_t) * hi->n_direct_buckets);
776 static struct HashmapBase *hashmap_base_new(const struct hash_ops *hash_ops, enum HashmapType type HASHMAP_DEBUG_PARAMS) {
778 const struct hashmap_type_info *hi = &hashmap_type_info[type];
781 use_pool = is_main_thread();
783 h = use_pool ? mempool_alloc0_tile(hi->mempool) : malloc0(hi->head_size);
789 h->from_pool = use_pool;
790 h->hash_ops = hash_ops ? hash_ops : &trivial_hash_ops;
792 if (type == HASHMAP_TYPE_ORDERED) {
793 OrderedHashmap *lh = (OrderedHashmap*)h;
794 lh->iterate_list_head = lh->iterate_list_tail = IDX_NIL;
797 reset_direct_storage(h);
799 if (!shared_hash_key_initialized) {
800 random_bytes(shared_hash_key, sizeof(shared_hash_key));
801 shared_hash_key_initialized= true;
804 #ifdef ENABLE_DEBUG_HASHMAP
805 LIST_PREPEND(debug_list, hashmap_debug_list, &h->debug);
806 h->debug.func = func;
807 h->debug.file = file;
808 h->debug.line = line;
814 Hashmap *internal_hashmap_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
815 return (Hashmap*) hashmap_base_new(hash_ops, HASHMAP_TYPE_PLAIN HASHMAP_DEBUG_PASS_ARGS);
818 OrderedHashmap *internal_ordered_hashmap_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
819 return (OrderedHashmap*) hashmap_base_new(hash_ops, HASHMAP_TYPE_ORDERED HASHMAP_DEBUG_PASS_ARGS);
822 Set *internal_set_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
823 return (Set*) hashmap_base_new(hash_ops, HASHMAP_TYPE_SET HASHMAP_DEBUG_PASS_ARGS);
826 static int hashmap_base_ensure_allocated(HashmapBase **h, const struct hash_ops *hash_ops,
827 enum HashmapType type HASHMAP_DEBUG_PARAMS) {
835 q = hashmap_base_new(hash_ops, type HASHMAP_DEBUG_PASS_ARGS);
843 int internal_hashmap_ensure_allocated(Hashmap **h, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
844 return hashmap_base_ensure_allocated((HashmapBase**)h, hash_ops, HASHMAP_TYPE_PLAIN HASHMAP_DEBUG_PASS_ARGS);
847 int internal_ordered_hashmap_ensure_allocated(OrderedHashmap **h, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
848 return hashmap_base_ensure_allocated((HashmapBase**)h, hash_ops, HASHMAP_TYPE_ORDERED HASHMAP_DEBUG_PASS_ARGS);
851 int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS) {
852 return hashmap_base_ensure_allocated((HashmapBase**)s, hash_ops, HASHMAP_TYPE_SET HASHMAP_DEBUG_PASS_ARGS);
855 static void hashmap_free_no_clear(HashmapBase *h) {
856 assert(!h->has_indirect);
857 assert(!h->n_direct_entries);
859 #ifdef ENABLE_DEBUG_HASHMAP
860 LIST_REMOVE(debug_list, hashmap_debug_list, &h->debug);
864 mempool_free_tile(hashmap_type_info[h->type].mempool, h);
869 HashmapBase *internal_hashmap_free(HashmapBase *h) {
871 /* Free the hashmap, but nothing in it */
874 internal_hashmap_clear(h);
875 hashmap_free_no_clear(h);
881 HashmapBase *internal_hashmap_free_free(HashmapBase *h) {
883 /* Free the hashmap and all data objects in it, but not the
887 internal_hashmap_clear_free(h);
888 hashmap_free_no_clear(h);
894 Hashmap *hashmap_free_free_free(Hashmap *h) {
896 /* Free the hashmap and all data and key objects in it */
899 hashmap_clear_free_free(h);
900 hashmap_free_no_clear(HASHMAP_BASE(h));
906 void internal_hashmap_clear(HashmapBase *h) {
910 if (h->has_indirect) {
911 free(h->indirect.storage);
912 h->has_indirect = false;
915 h->n_direct_entries = 0;
916 reset_direct_storage(h);
918 if (h->type == HASHMAP_TYPE_ORDERED) {
919 OrderedHashmap *lh = (OrderedHashmap*) h;
920 lh->iterate_list_head = lh->iterate_list_tail = IDX_NIL;
924 void internal_hashmap_clear_free(HashmapBase *h) {
930 for (idx = skip_free_buckets(h, 0); idx != IDX_NIL;
931 idx = skip_free_buckets(h, idx + 1))
932 free(entry_value(h, bucket_at(h, idx)));
934 internal_hashmap_clear(h);
937 void hashmap_clear_free_free(Hashmap *h) {
943 for (idx = skip_free_buckets(HASHMAP_BASE(h), 0); idx != IDX_NIL;
944 idx = skip_free_buckets(HASHMAP_BASE(h), idx + 1)) {
945 struct plain_hashmap_entry *e = plain_bucket_at(h, idx);
946 free((void*)e->b.key);
950 internal_hashmap_clear(HASHMAP_BASE(h));
953 static int resize_buckets(HashmapBase *h, unsigned entries_add);
956 * Finds an empty bucket to put an entry into, starting the scan at 'idx'.
957 * Performs Robin Hood swaps as it goes. The entry to put must be placed
958 * by the caller into swap slot IDX_PUT.
959 * If used for in-place resizing, may leave a displaced entry in swap slot
960 * IDX_PUT. Caller must rehash it next.
961 * Returns: true if it left a displaced entry to rehash next in IDX_PUT,
964 static bool hashmap_put_robin_hood(HashmapBase *h, unsigned idx,
965 struct swap_entries *swap) {
966 dib_raw_t raw_dib, *dibs;
967 unsigned dib, distance;
969 #ifdef ENABLE_DEBUG_HASHMAP
970 h->debug.put_count++;
973 dibs = dib_raw_ptr(h);
975 for (distance = 0; ; distance++) {
977 if (raw_dib == DIB_RAW_FREE || raw_dib == DIB_RAW_REHASH) {
978 if (raw_dib == DIB_RAW_REHASH)
979 bucket_move_entry(h, swap, idx, IDX_TMP);
981 if (h->has_indirect && h->indirect.idx_lowest_entry > idx)
982 h->indirect.idx_lowest_entry = idx;
984 bucket_set_dib(h, idx, distance);
985 bucket_move_entry(h, swap, IDX_PUT, idx);
986 if (raw_dib == DIB_RAW_REHASH) {
987 bucket_move_entry(h, swap, IDX_TMP, IDX_PUT);
994 dib = bucket_calculate_dib(h, idx, raw_dib);
996 if (dib < distance) {
997 /* Found a wealthier entry. Go Robin Hood! */
998 bucket_set_dib(h, idx, distance);
1000 /* swap the entries */
1001 bucket_move_entry(h, swap, idx, IDX_TMP);
1002 bucket_move_entry(h, swap, IDX_PUT, idx);
1003 bucket_move_entry(h, swap, IDX_TMP, IDX_PUT);
1008 idx = next_idx(h, idx);
1013 * Puts an entry into a hashmap, boldly - no check whether key already exists.
1014 * The caller must place the entry (only its key and value, not link indexes)
1015 * in swap slot IDX_PUT.
1016 * Caller must ensure: the key does not exist yet in the hashmap.
1017 * that resize is not needed if !may_resize.
1018 * Returns: 1 if entry was put successfully.
1019 * -ENOMEM if may_resize==true and resize failed with -ENOMEM.
1020 * Cannot return -ENOMEM if !may_resize.
1022 static int hashmap_base_put_boldly(HashmapBase *h, unsigned idx,
1023 struct swap_entries *swap, bool may_resize) {
1024 struct ordered_hashmap_entry *new_entry;
1027 assert(idx < n_buckets(h));
1029 new_entry = bucket_at_swap(swap, IDX_PUT);
1032 r = resize_buckets(h, 1);
1036 idx = bucket_hash(h, new_entry->p.b.key);
1038 assert(n_entries(h) < n_buckets(h));
1040 if (h->type == HASHMAP_TYPE_ORDERED) {
1041 OrderedHashmap *lh = (OrderedHashmap*) h;
1043 new_entry->iterate_next = IDX_NIL;
1044 new_entry->iterate_previous = lh->iterate_list_tail;
1046 if (lh->iterate_list_tail != IDX_NIL) {
1047 struct ordered_hashmap_entry *old_tail;
1049 old_tail = ordered_bucket_at(lh, lh->iterate_list_tail);
1050 assert(old_tail->iterate_next == IDX_NIL);
1051 old_tail->iterate_next = IDX_PUT;
1054 lh->iterate_list_tail = IDX_PUT;
1055 if (lh->iterate_list_head == IDX_NIL)
1056 lh->iterate_list_head = IDX_PUT;
1059 assert_se(hashmap_put_robin_hood(h, idx, swap) == false);
1062 #ifdef ENABLE_DEBUG_HASHMAP
1063 h->debug.max_entries = MAX(h->debug.max_entries, n_entries(h));
1068 #define hashmap_put_boldly(h, idx, swap, may_resize) \
1069 hashmap_base_put_boldly(HASHMAP_BASE(h), idx, swap, may_resize)
1072 * Returns 0 if resize is not needed.
1073 * 1 if successfully resized.
1074 * -ENOMEM on allocation failure.
1076 static int resize_buckets(HashmapBase *h, unsigned entries_add) {
1077 struct swap_entries swap;
1079 dib_raw_t *old_dibs, *new_dibs;
1080 const struct hashmap_type_info *hi;
1081 unsigned idx, optimal_idx;
1082 unsigned old_n_buckets, new_n_buckets, n_rehashed, new_n_entries;
1088 hi = &hashmap_type_info[h->type];
1089 new_n_entries = n_entries(h) + entries_add;
1092 if (_unlikely_(new_n_entries < entries_add))
1095 /* For direct storage we allow 100% load, because it's tiny. */
1096 if (!h->has_indirect && new_n_entries <= hi->n_direct_buckets)
1100 * Load factor = n/m = 1 - (1/INV_KEEP_FREE).
1101 * From it follows: m = n + n/(INV_KEEP_FREE - 1)
1103 new_n_buckets = new_n_entries + new_n_entries / (INV_KEEP_FREE - 1);
1105 if (_unlikely_(new_n_buckets < new_n_entries))
1108 if (_unlikely_(new_n_buckets > UINT_MAX / (hi->entry_size + sizeof(dib_raw_t))))
1111 old_n_buckets = n_buckets(h);
1113 if (_likely_(new_n_buckets <= old_n_buckets))
1116 new_shift = log2u_round_up(MAX(
1117 new_n_buckets * (hi->entry_size + sizeof(dib_raw_t)),
1118 2 * sizeof(struct direct_storage)));
1120 /* Realloc storage (buckets and DIB array). */
1121 new_storage = realloc(h->has_indirect ? h->indirect.storage : NULL,
1126 /* Must upgrade direct to indirect storage. */
1127 if (!h->has_indirect) {
1128 memcpy(new_storage, h->direct.storage,
1129 old_n_buckets * (hi->entry_size + sizeof(dib_raw_t)));
1130 h->indirect.n_entries = h->n_direct_entries;
1131 h->indirect.idx_lowest_entry = 0;
1132 h->n_direct_entries = 0;
1135 /* Get a new hash key. If we've just upgraded to indirect storage,
1136 * allow reusing a previously generated key. It's still a different key
1137 * from the shared one that we used for direct storage. */
1138 get_hash_key(h->indirect.hash_key, !h->has_indirect);
1140 h->has_indirect = true;
1141 h->indirect.storage = new_storage;
1142 h->indirect.n_buckets = (1U << new_shift) /
1143 (hi->entry_size + sizeof(dib_raw_t));
1145 old_dibs = (dib_raw_t*)(new_storage + hi->entry_size * old_n_buckets);
1146 new_dibs = dib_raw_ptr(h);
1149 * Move the DIB array to the new place, replacing valid DIB values with
1150 * DIB_RAW_REHASH to indicate all of the used buckets need rehashing.
1151 * Note: Overlap is not possible, because we have at least doubled the
1152 * number of buckets and dib_raw_t is smaller than any entry type.
1154 for (idx = 0; idx < old_n_buckets; idx++) {
1155 assert(old_dibs[idx] != DIB_RAW_REHASH);
1156 new_dibs[idx] = old_dibs[idx] == DIB_RAW_FREE ? DIB_RAW_FREE
1160 /* Zero the area of newly added entries (including the old DIB area) */
1161 memzero(bucket_at(h, old_n_buckets),
1162 (n_buckets(h) - old_n_buckets) * hi->entry_size);
1164 /* The upper half of the new DIB array needs initialization */
1165 memset(&new_dibs[old_n_buckets], DIB_RAW_INIT,
1166 (n_buckets(h) - old_n_buckets) * sizeof(dib_raw_t));
1168 /* Rehash entries that need it */
1170 for (idx = 0; idx < old_n_buckets; idx++) {
1171 if (new_dibs[idx] != DIB_RAW_REHASH)
1174 optimal_idx = bucket_hash(h, bucket_at(h, idx)->key);
1177 * Not much to do if by luck the entry hashes to its current
1178 * location. Just set its DIB.
1180 if (optimal_idx == idx) {
1186 new_dibs[idx] = DIB_RAW_FREE;
1187 bucket_move_entry(h, &swap, idx, IDX_PUT);
1188 /* bucket_move_entry does not clear the source */
1189 memzero(bucket_at(h, idx), hi->entry_size);
1193 * Find the new bucket for the current entry. This may make
1194 * another entry homeless and load it into IDX_PUT.
1196 rehash_next = hashmap_put_robin_hood(h, optimal_idx, &swap);
1199 /* Did the current entry displace another one? */
1201 optimal_idx = bucket_hash(h, bucket_at_swap(&swap, IDX_PUT)->p.b.key);
1202 } while (rehash_next);
1205 assert(n_rehashed == n_entries(h));
1211 * Finds an entry with a matching key
1212 * Returns: index of the found entry, or IDX_NIL if not found.
1214 static unsigned base_bucket_scan(HashmapBase *h, unsigned idx, const void *key) {
1215 struct hashmap_base_entry *e;
1216 unsigned dib, distance;
1217 dib_raw_t *dibs = dib_raw_ptr(h);
1219 assert(idx < n_buckets(h));
1221 for (distance = 0; ; distance++) {
1222 if (dibs[idx] == DIB_RAW_FREE)
1225 dib = bucket_calculate_dib(h, idx, dibs[idx]);
1229 if (dib == distance) {
1230 e = bucket_at(h, idx);
1231 if (h->hash_ops->compare(e->key, key) == 0)
1235 idx = next_idx(h, idx);
1238 #define bucket_scan(h, idx, key) base_bucket_scan(HASHMAP_BASE(h), idx, key)
1240 int hashmap_put(Hashmap *h, const void *key, void *value) {
1241 struct swap_entries swap;
1242 struct plain_hashmap_entry *e;
1247 hash = bucket_hash(h, key);
1248 idx = bucket_scan(h, hash, key);
1249 if (idx != IDX_NIL) {
1250 e = plain_bucket_at(h, idx);
1251 if (e->value == value)
1256 e = &bucket_at_swap(&swap, IDX_PUT)->p;
1259 return hashmap_put_boldly(h, hash, &swap, true);
1262 int set_put(Set *s, const void *key) {
1263 struct swap_entries swap;
1264 struct hashmap_base_entry *e;
1269 hash = bucket_hash(s, key);
1270 idx = bucket_scan(s, hash, key);
1274 e = &bucket_at_swap(&swap, IDX_PUT)->p.b;
1276 return hashmap_put_boldly(s, hash, &swap, true);
1279 int hashmap_replace(Hashmap *h, const void *key, void *value) {
1280 struct swap_entries swap;
1281 struct plain_hashmap_entry *e;
1286 hash = bucket_hash(h, key);
1287 idx = bucket_scan(h, hash, key);
1288 if (idx != IDX_NIL) {
1289 e = plain_bucket_at(h, idx);
1290 #ifdef ENABLE_DEBUG_HASHMAP
1291 /* Although the key is equal, the key pointer may have changed,
1292 * and this would break our assumption for iterating. So count
1293 * this operation as incompatible with iteration. */
1294 if (e->b.key != key) {
1295 h->b.debug.put_count++;
1296 h->b.debug.rem_count++;
1297 h->b.debug.last_rem_idx = idx;
1305 e = &bucket_at_swap(&swap, IDX_PUT)->p;
1308 return hashmap_put_boldly(h, hash, &swap, true);
1311 int hashmap_update(Hashmap *h, const void *key, void *value) {
1312 struct plain_hashmap_entry *e;
1317 hash = bucket_hash(h, key);
1318 idx = bucket_scan(h, hash, key);
1322 e = plain_bucket_at(h, idx);
1327 void *internal_hashmap_get(HashmapBase *h, const void *key) {
1328 struct hashmap_base_entry *e;
1334 hash = bucket_hash(h, key);
1335 idx = bucket_scan(h, hash, key);
1339 e = bucket_at(h, idx);
1340 return entry_value(h, e);
1343 void *hashmap_get2(Hashmap *h, const void *key, void **key2) {
1344 struct plain_hashmap_entry *e;
1350 hash = bucket_hash(h, key);
1351 idx = bucket_scan(h, hash, key);
1355 e = plain_bucket_at(h, idx);
1357 *key2 = (void*) e->b.key;
1362 bool internal_hashmap_contains(HashmapBase *h, const void *key) {
1368 hash = bucket_hash(h, key);
1369 return bucket_scan(h, hash, key) != IDX_NIL;
1372 void *internal_hashmap_remove(HashmapBase *h, const void *key) {
1373 struct hashmap_base_entry *e;
1380 hash = bucket_hash(h, key);
1381 idx = bucket_scan(h, hash, key);
1385 e = bucket_at(h, idx);
1386 data = entry_value(h, e);
1387 remove_entry(h, idx);
1392 void *hashmap_remove2(Hashmap *h, const void *key, void **rkey) {
1393 struct plain_hashmap_entry *e;
1403 hash = bucket_hash(h, key);
1404 idx = bucket_scan(h, hash, key);
1405 if (idx == IDX_NIL) {
1411 e = plain_bucket_at(h, idx);
1414 *rkey = (void*) e->b.key;
1416 remove_entry(h, idx);
1421 int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void *new_key, void *value) {
1422 struct swap_entries swap;
1423 struct plain_hashmap_entry *e;
1424 unsigned old_hash, new_hash, idx;
1429 old_hash = bucket_hash(h, old_key);
1430 idx = bucket_scan(h, old_hash, old_key);
1434 new_hash = bucket_hash(h, new_key);
1435 if (bucket_scan(h, new_hash, new_key) != IDX_NIL)
1438 remove_entry(h, idx);
1440 e = &bucket_at_swap(&swap, IDX_PUT)->p;
1443 assert_se(hashmap_put_boldly(h, new_hash, &swap, false) == 1);
1448 int set_remove_and_put(Set *s, const void *old_key, const void *new_key) {
1449 struct swap_entries swap;
1450 struct hashmap_base_entry *e;
1451 unsigned old_hash, new_hash, idx;
1456 old_hash = bucket_hash(s, old_key);
1457 idx = bucket_scan(s, old_hash, old_key);
1461 new_hash = bucket_hash(s, new_key);
1462 if (bucket_scan(s, new_hash, new_key) != IDX_NIL)
1465 remove_entry(s, idx);
1467 e = &bucket_at_swap(&swap, IDX_PUT)->p.b;
1469 assert_se(hashmap_put_boldly(s, new_hash, &swap, false) == 1);
1474 int hashmap_remove_and_replace(Hashmap *h, const void *old_key, const void *new_key, void *value) {
1475 struct swap_entries swap;
1476 struct plain_hashmap_entry *e;
1477 unsigned old_hash, new_hash, idx_old, idx_new;
1482 old_hash = bucket_hash(h, old_key);
1483 idx_old = bucket_scan(h, old_hash, old_key);
1484 if (idx_old == IDX_NIL)
1487 old_key = bucket_at(HASHMAP_BASE(h), idx_old)->key;
1489 new_hash = bucket_hash(h, new_key);
1490 idx_new = bucket_scan(h, new_hash, new_key);
1491 if (idx_new != IDX_NIL)
1492 if (idx_old != idx_new) {
1493 remove_entry(h, idx_new);
1494 /* Compensate for a possible backward shift. */
1495 if (old_key != bucket_at(HASHMAP_BASE(h), idx_old)->key)
1496 idx_old = prev_idx(HASHMAP_BASE(h), idx_old);
1497 assert(old_key == bucket_at(HASHMAP_BASE(h), idx_old)->key);
1500 remove_entry(h, idx_old);
1502 e = &bucket_at_swap(&swap, IDX_PUT)->p;
1505 assert_se(hashmap_put_boldly(h, new_hash, &swap, false) == 1);
1510 void *hashmap_remove_value(Hashmap *h, const void *key, void *value) {
1511 struct plain_hashmap_entry *e;
1517 hash = bucket_hash(h, key);
1518 idx = bucket_scan(h, hash, key);
1522 e = plain_bucket_at(h, idx);
1523 if (e->value != value)
1526 remove_entry(h, idx);
1531 static unsigned find_first_entry(HashmapBase *h) {
1532 Iterator i = ITERATOR_FIRST;
1534 if (!h || !n_entries(h))
1537 return hashmap_iterate_entry(h, &i);
1540 void *internal_hashmap_first(HashmapBase *h) {
1543 idx = find_first_entry(h);
1547 return entry_value(h, bucket_at(h, idx));
1550 void *internal_hashmap_first_key(HashmapBase *h) {
1551 struct hashmap_base_entry *e;
1554 idx = find_first_entry(h);
1558 e = bucket_at(h, idx);
1559 return (void*) e->key;
1562 void *internal_hashmap_steal_first(HashmapBase *h) {
1563 struct hashmap_base_entry *e;
1567 idx = find_first_entry(h);
1571 e = bucket_at(h, idx);
1572 data = entry_value(h, e);
1573 remove_entry(h, idx);
1578 void *internal_hashmap_steal_first_key(HashmapBase *h) {
1579 struct hashmap_base_entry *e;
1583 idx = find_first_entry(h);
1587 e = bucket_at(h, idx);
1588 key = (void*) e->key;
1589 remove_entry(h, idx);
1594 unsigned internal_hashmap_size(HashmapBase *h) {
1599 return n_entries(h);
1602 unsigned internal_hashmap_buckets(HashmapBase *h) {
1607 return n_buckets(h);
1610 int internal_hashmap_merge(Hashmap *h, Hashmap *other) {
1616 HASHMAP_FOREACH_IDX(idx, HASHMAP_BASE(other), i) {
1617 struct plain_hashmap_entry *pe = plain_bucket_at(other, idx);
1620 r = hashmap_put(h, pe->b.key, pe->value);
1621 if (r < 0 && r != -EEXIST)
1628 int set_merge(Set *s, Set *other) {
1634 HASHMAP_FOREACH_IDX(idx, HASHMAP_BASE(other), i) {
1635 struct set_entry *se = set_bucket_at(other, idx);
1638 r = set_put(s, se->b.key);
1646 int internal_hashmap_reserve(HashmapBase *h, unsigned entries_add) {
1651 r = resize_buckets(h, entries_add);
1659 * The same as hashmap_merge(), but every new item from other is moved to h.
1660 * Keys already in h are skipped and stay in other.
1661 * Returns: 0 on success.
1662 * -ENOMEM on alloc failure, in which case no move has been done.
1664 int internal_hashmap_move(HashmapBase *h, HashmapBase *other) {
1665 struct swap_entries swap;
1666 struct hashmap_base_entry *e, *n;
1676 assert(other->type == h->type);
1679 * This reserves buckets for the worst case, where none of other's
1680 * entries are yet present in h. This is preferable to risking
1681 * an allocation failure in the middle of the moving and having to
1682 * rollback or return a partial result.
1684 r = resize_buckets(h, n_entries(other));
1688 HASHMAP_FOREACH_IDX(idx, other, i) {
1691 e = bucket_at(other, idx);
1692 h_hash = bucket_hash(h, e->key);
1693 if (bucket_scan(h, h_hash, e->key) != IDX_NIL)
1696 n = &bucket_at_swap(&swap, IDX_PUT)->p.b;
1698 if (h->type != HASHMAP_TYPE_SET)
1699 ((struct plain_hashmap_entry*) n)->value =
1700 ((struct plain_hashmap_entry*) e)->value;
1701 assert_se(hashmap_put_boldly(h, h_hash, &swap, false) == 1);
1703 remove_entry(other, idx);
1709 int internal_hashmap_move_one(HashmapBase *h, HashmapBase *other, const void *key) {
1710 struct swap_entries swap;
1711 unsigned h_hash, other_hash, idx;
1712 struct hashmap_base_entry *e, *n;
1717 h_hash = bucket_hash(h, key);
1718 if (bucket_scan(h, h_hash, key) != IDX_NIL)
1724 assert(other->type == h->type);
1726 other_hash = bucket_hash(other, key);
1727 idx = bucket_scan(other, other_hash, key);
1731 e = bucket_at(other, idx);
1733 n = &bucket_at_swap(&swap, IDX_PUT)->p.b;
1735 if (h->type != HASHMAP_TYPE_SET)
1736 ((struct plain_hashmap_entry*) n)->value =
1737 ((struct plain_hashmap_entry*) e)->value;
1738 r = hashmap_put_boldly(h, h_hash, &swap, true);
1742 remove_entry(other, idx);
1746 HashmapBase *internal_hashmap_copy(HashmapBase *h) {
1752 copy = hashmap_base_new(h->hash_ops, h->type HASHMAP_DEBUG_SRC_ARGS);
1757 case HASHMAP_TYPE_PLAIN:
1758 case HASHMAP_TYPE_ORDERED:
1759 r = hashmap_merge((Hashmap*)copy, (Hashmap*)h);
1761 case HASHMAP_TYPE_SET:
1762 r = set_merge((Set*)copy, (Set*)h);
1765 assert_not_reached("Unknown hashmap type");
1769 internal_hashmap_free(copy);
1776 char **internal_hashmap_get_strv(HashmapBase *h) {
1781 sv = new(char*, n_entries(h)+1);
1786 HASHMAP_FOREACH_IDX(idx, h, i)
1787 sv[n++] = entry_value(h, bucket_at(h, idx));
1793 void *ordered_hashmap_next(OrderedHashmap *h, const void *key) {
1794 struct ordered_hashmap_entry *e;
1802 hash = bucket_hash(h, key);
1803 idx = bucket_scan(h, hash, key);
1807 e = ordered_bucket_at(h, idx);
1808 if (e->iterate_next == IDX_NIL)
1810 return ordered_bucket_at(h, e->iterate_next)->p.value;
1813 int set_consume(Set *s, void *value) {
1816 r = set_put(s, value);
1823 int set_put_strdup(Set *s, const char *p) {
1834 r = set_consume(s, c);
1841 int set_put_strdupv(Set *s, char **l) {
1845 STRV_FOREACH(i, l) {
1846 r = set_put_strdup(s, *i);