[c585827] | 1 | /*
|
---|
[82cbf8c6] | 2 | * Copyright (c) 2008 Jakub Jermar
|
---|
| 3 | * Copyright (c) 2012 Adam Hraska
|
---|
[1b20da0] | 4 | *
|
---|
[c585827] | 5 | * All rights reserved.
|
---|
| 6 | *
|
---|
| 7 | * Redistribution and use in source and binary forms, with or without
|
---|
| 8 | * modification, are permitted provided that the following conditions
|
---|
| 9 | * are met:
|
---|
| 10 | *
|
---|
| 11 | * - Redistributions of source code must retain the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer.
|
---|
| 13 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 14 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 15 | * documentation and/or other materials provided with the distribution.
|
---|
| 16 | * - The name of the author may not be used to endorse or promote products
|
---|
| 17 | * derived from this software without specific prior written permission.
|
---|
| 18 | *
|
---|
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 29 | */
|
---|
| 30 |
|
---|
[82cbf8c6] | 31 | /** @addtogroup libc
|
---|
[b45c443] | 32 | * @{
|
---|
| 33 | */
|
---|
[82cbf8c6] | 34 | /** @file
|
---|
| 35 | */
|
---|
[b45c443] | 36 |
|
---|
[82cbf8c6] | 37 | /*
|
---|
| 38 | * This is an implementation of a generic resizable chained hash table.
|
---|
[1b20da0] | 39 | *
|
---|
| 40 | * The table grows to 2*n+1 buckets each time, starting at n == 89,
|
---|
[82cbf8c6] | 41 | * per Thomas Wang's recommendation:
|
---|
| 42 | * http://www.concentric.net/~Ttwang/tech/hashsize.htm
|
---|
[1b20da0] | 43 | *
|
---|
[82cbf8c6] | 44 | * This policy produces prime table sizes for the first five resizes
|
---|
[1b20da0] | 45 | * and generally produces table sizes which are either prime or
|
---|
[82cbf8c6] | 46 | * have fairly large (prime/odd) divisors. Having a prime table size
|
---|
| 47 | * mitigates the use of suboptimal hash functions and distributes
|
---|
| 48 | * items over the whole table.
|
---|
[c585827] | 49 | */
|
---|
| 50 |
|
---|
| 51 | #include <adt/hash_table.h>
|
---|
| 52 | #include <adt/list.h>
|
---|
[085d973] | 53 | #include <mm/slab.h>
|
---|
[82cbf8c6] | 54 | #include <assert.h>
|
---|
| 55 | #include <str.h>
|
---|
| 56 |
|
---|
| 57 | /* Optimal initial bucket count. See comment above. */
|
---|
| 58 | #define HT_MIN_BUCKETS 89
|
---|
| 59 | /* The table is resized when the average load per bucket exceeds this number. */
|
---|
| 60 | #define HT_MAX_LOAD 2
|
---|
| 61 |
|
---|
| 62 | static size_t round_up_size(size_t);
|
---|
| 63 | static bool alloc_table(size_t, list_t **);
|
---|
| 64 | static void clear_items(hash_table_t *);
|
---|
| 65 | static void resize(hash_table_t *, size_t);
|
---|
| 66 | static void grow_if_needed(hash_table_t *);
|
---|
| 67 | static void shrink_if_needed(hash_table_t *);
|
---|
| 68 |
|
---|
| 69 | /* Dummy do nothing callback to invoke in place of remove_callback == NULL. */
|
---|
| 70 | static void nop_remove_callback(ht_link_t *item)
|
---|
| 71 | {
|
---|
| 72 | /* no-op */
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[c585827] | 75 | /** Create chained hash table.
|
---|
| 76 | *
|
---|
[82cbf8c6] | 77 | * @param h Hash table structure. Will be initialized by this call.
|
---|
| 78 | * @param init_size Initial desired number of hash table buckets. Pass zero
|
---|
[1b20da0] | 79 | * if you want the default initial size.
|
---|
[82cbf8c6] | 80 | * @param max_load The table is resized when the average load per bucket
|
---|
| 81 | * exceeds this number. Pass zero if you want the default.
|
---|
| 82 | * @param op Hash table operations structure. remove_callback()
|
---|
| 83 | * is optional and can be NULL if no action is to be taken
|
---|
| 84 | * upon removal. equal() is optional if and only if
|
---|
| 85 | * hash_table_insert_unique() will never be invoked.
|
---|
[1b20da0] | 86 | * All other operations are mandatory.
|
---|
[82cbf8c6] | 87 | *
|
---|
| 88 | * @return True on success
|
---|
| 89 | *
|
---|
[c585827] | 90 | */
|
---|
[82cbf8c6] | 91 | bool hash_table_create(hash_table_t *h, size_t init_size, size_t max_load,
|
---|
| 92 | hash_table_ops_t *op)
|
---|
[c585827] | 93 | {
|
---|
[63e27ef] | 94 | assert(h);
|
---|
[82cbf8c6] | 95 | assert(op && op->hash && op->key_hash && op->key_equal);
|
---|
[a35b458] | 96 |
|
---|
[82cbf8c6] | 97 | /* Check for compulsory ops. */
|
---|
| 98 | if (!op || !op->hash || !op->key_hash || !op->key_equal)
|
---|
| 99 | return false;
|
---|
[a35b458] | 100 |
|
---|
[82cbf8c6] | 101 | h->bucket_cnt = round_up_size(init_size);
|
---|
[a35b458] | 102 |
|
---|
[82cbf8c6] | 103 | if (!alloc_table(h->bucket_cnt, &h->bucket))
|
---|
| 104 | return false;
|
---|
[a35b458] | 105 |
|
---|
[82cbf8c6] | 106 | h->max_load = (max_load == 0) ? HT_MAX_LOAD : max_load;
|
---|
| 107 | h->item_cnt = 0;
|
---|
[c585827] | 108 | h->op = op;
|
---|
[82cbf8c6] | 109 | h->full_item_cnt = h->max_load * h->bucket_cnt;
|
---|
| 110 | h->apply_ongoing = false;
|
---|
| 111 |
|
---|
| 112 | if (h->op->remove_callback == NULL) {
|
---|
| 113 | h->op->remove_callback = nop_remove_callback;
|
---|
| 114 | }
|
---|
[a35b458] | 115 |
|
---|
[82cbf8c6] | 116 | return true;
|
---|
[c585827] | 117 | }
|
---|
| 118 |
|
---|
[82cbf8c6] | 119 | /** Destroy a hash table instance.
|
---|
[c585827] | 120 | *
|
---|
[82cbf8c6] | 121 | * @param h Hash table to be destroyed.
|
---|
| 122 | *
|
---|
| 123 | */
|
---|
| 124 | void hash_table_destroy(hash_table_t *h)
|
---|
| 125 | {
|
---|
| 126 | assert(h && h->bucket);
|
---|
| 127 | assert(!h->apply_ongoing);
|
---|
[a35b458] | 128 |
|
---|
[82cbf8c6] | 129 | clear_items(h);
|
---|
[a35b458] | 130 |
|
---|
[82cbf8c6] | 131 | free(h->bucket);
|
---|
| 132 |
|
---|
| 133 | h->bucket = NULL;
|
---|
| 134 | h->bucket_cnt = 0;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
| 137 | /** Returns true if there are no items in the table. */
|
---|
| 138 | bool hash_table_empty(hash_table_t *h)
|
---|
| 139 | {
|
---|
| 140 | assert(h && h->bucket);
|
---|
| 141 | return h->item_cnt == 0;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | /** Returns the number of items in the table. */
|
---|
| 145 | size_t hash_table_size(hash_table_t *h)
|
---|
| 146 | {
|
---|
| 147 | assert(h && h->bucket);
|
---|
| 148 | return h->item_cnt;
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | /** Remove all elements from the hash table
|
---|
| 152 | *
|
---|
| 153 | * @param h Hash table to be cleared
|
---|
| 154 | */
|
---|
| 155 | void hash_table_clear(hash_table_t *h)
|
---|
| 156 | {
|
---|
| 157 | assert(h && h->bucket);
|
---|
| 158 | assert(!h->apply_ongoing);
|
---|
[a35b458] | 159 |
|
---|
[82cbf8c6] | 160 | clear_items(h);
|
---|
[a35b458] | 161 |
|
---|
[82cbf8c6] | 162 | /* Shrink the table to its minimum size if possible. */
|
---|
| 163 | if (HT_MIN_BUCKETS < h->bucket_cnt) {
|
---|
| 164 | resize(h, HT_MIN_BUCKETS);
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 |
|
---|
| 168 | /** Unlinks and removes all items but does not resize. */
|
---|
| 169 | static void clear_items(hash_table_t *h)
|
---|
| 170 | {
|
---|
| 171 | if (h->item_cnt == 0)
|
---|
| 172 | return;
|
---|
[a35b458] | 173 |
|
---|
[82cbf8c6] | 174 | for (size_t idx = 0; idx < h->bucket_cnt; ++idx) {
|
---|
| 175 | list_foreach_safe(h->bucket[idx], cur, next) {
|
---|
| 176 | assert(cur);
|
---|
| 177 | ht_link_t *cur_link = member_to_inst(cur, ht_link_t, link);
|
---|
[a35b458] | 178 |
|
---|
[82cbf8c6] | 179 | list_remove(cur);
|
---|
| 180 | h->op->remove_callback(cur_link);
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
[a35b458] | 183 |
|
---|
[82cbf8c6] | 184 | h->item_cnt = 0;
|
---|
| 185 | }
|
---|
| 186 |
|
---|
| 187 | /** Insert item into a hash table.
|
---|
| 188 | *
|
---|
| 189 | * @param h Hash table.
|
---|
[c585827] | 190 | * @param item Item to be inserted into the hash table.
|
---|
| 191 | */
|
---|
[82cbf8c6] | 192 | void hash_table_insert(hash_table_t *h, ht_link_t *item)
|
---|
[c585827] | 193 | {
|
---|
[82cbf8c6] | 194 | assert(item);
|
---|
| 195 | assert(h && h->bucket);
|
---|
| 196 | assert(!h->apply_ongoing);
|
---|
[a35b458] | 197 |
|
---|
[82cbf8c6] | 198 | size_t idx = h->op->hash(item) % h->bucket_cnt;
|
---|
[a35b458] | 199 |
|
---|
[82cbf8c6] | 200 | list_append(&item->link, &h->bucket[idx]);
|
---|
| 201 | ++h->item_cnt;
|
---|
| 202 | grow_if_needed(h);
|
---|
| 203 | }
|
---|
| 204 |
|
---|
| 205 | /** Insert item into a hash table if not already present.
|
---|
| 206 | *
|
---|
| 207 | * @param h Hash table.
|
---|
| 208 | * @param item Item to be inserted into the hash table.
|
---|
[1b20da0] | 209 | *
|
---|
| 210 | * @return False if such an item had already been inserted.
|
---|
[82cbf8c6] | 211 | * @return True if the inserted item was the only item with such a lookup key.
|
---|
| 212 | */
|
---|
| 213 | bool hash_table_insert_unique(hash_table_t *h, ht_link_t *item)
|
---|
| 214 | {
|
---|
[63e27ef] | 215 | assert(item);
|
---|
[82cbf8c6] | 216 | assert(h && h->bucket && h->bucket_cnt);
|
---|
| 217 | assert(h->op && h->op->hash && h->op->equal);
|
---|
| 218 | assert(!h->apply_ongoing);
|
---|
[a35b458] | 219 |
|
---|
[82cbf8c6] | 220 | size_t idx = h->op->hash(item) % h->bucket_cnt;
|
---|
[a35b458] | 221 |
|
---|
[82cbf8c6] | 222 | /* Check for duplicates. */
|
---|
| 223 | list_foreach(h->bucket[idx], link, ht_link_t, cur_link) {
|
---|
[1b20da0] | 224 | /*
|
---|
| 225 | * We could filter out items using their hashes first, but
|
---|
[82cbf8c6] | 226 | * calling equal() might very well be just as fast.
|
---|
| 227 | */
|
---|
| 228 | if (h->op->equal(cur_link, item))
|
---|
| 229 | return false;
|
---|
| 230 | }
|
---|
[a35b458] | 231 |
|
---|
[82cbf8c6] | 232 | list_append(&item->link, &h->bucket[idx]);
|
---|
| 233 | ++h->item_cnt;
|
---|
| 234 | grow_if_needed(h);
|
---|
[a35b458] | 235 |
|
---|
[82cbf8c6] | 236 | return true;
|
---|
[c585827] | 237 | }
|
---|
| 238 |
|
---|
| 239 | /** Search hash table for an item matching keys.
|
---|
| 240 | *
|
---|
[82cbf8c6] | 241 | * @param h Hash table.
|
---|
[c585827] | 242 | * @param key Array of all keys needed to compute hash index.
|
---|
| 243 | *
|
---|
| 244 | * @return Matching item on success, NULL if there is no such item.
|
---|
[82cbf8c6] | 245 | *
|
---|
[c585827] | 246 | */
|
---|
[82cbf8c6] | 247 | ht_link_t *hash_table_find(const hash_table_t *h, void *key)
|
---|
[c585827] | 248 | {
|
---|
[82cbf8c6] | 249 | assert(h && h->bucket);
|
---|
[a35b458] | 250 |
|
---|
[82cbf8c6] | 251 | size_t idx = h->op->key_hash(key) % h->bucket_cnt;
|
---|
| 252 |
|
---|
| 253 | list_foreach(h->bucket[idx], link, ht_link_t, cur_link) {
|
---|
[1b20da0] | 254 | /*
|
---|
| 255 | * Is this is the item we are looking for? We could have first
|
---|
| 256 | * checked if the hashes match but op->key_equal() may very well be
|
---|
[82cbf8c6] | 257 | * just as fast as op->hash().
|
---|
| 258 | */
|
---|
| 259 | if (h->op->key_equal(key, cur_link)) {
|
---|
| 260 | return cur_link;
|
---|
[c585827] | 261 | }
|
---|
| 262 | }
|
---|
[a35b458] | 263 |
|
---|
[c585827] | 264 | return NULL;
|
---|
| 265 | }
|
---|
| 266 |
|
---|
[82cbf8c6] | 267 | /** Find the next item equal to item. */
|
---|
[30f1a25] | 268 | ht_link_t *
|
---|
| 269 | hash_table_find_next(const hash_table_t *h, ht_link_t *first, ht_link_t *item)
|
---|
[82cbf8c6] | 270 | {
|
---|
| 271 | assert(item);
|
---|
| 272 | assert(h && h->bucket);
|
---|
| 273 |
|
---|
[963037b0] | 274 | size_t idx = h->op->hash(item) % h->bucket_cnt;
|
---|
| 275 |
|
---|
[82cbf8c6] | 276 | /* Traverse the circular list until we reach the starting item again. */
|
---|
[30f1a25] | 277 | for (link_t *cur = item->link.next; cur != &first->link;
|
---|
| 278 | cur = cur->next) {
|
---|
[82cbf8c6] | 279 | assert(cur);
|
---|
[963037b0] | 280 |
|
---|
| 281 | if (cur == &h->bucket[idx].head)
|
---|
| 282 | continue;
|
---|
| 283 |
|
---|
[82cbf8c6] | 284 | ht_link_t *cur_link = member_to_inst(cur, ht_link_t, link);
|
---|
[1b20da0] | 285 | /*
|
---|
| 286 | * Is this is the item we are looking for? We could have first
|
---|
| 287 | * checked if the hashes match but op->equal() may very well be
|
---|
[82cbf8c6] | 288 | * just as fast as op->hash().
|
---|
| 289 | */
|
---|
| 290 | if (h->op->equal(cur_link, item)) {
|
---|
| 291 | return cur_link;
|
---|
| 292 | }
|
---|
| 293 | }
|
---|
| 294 |
|
---|
| 295 | return NULL;
|
---|
| 296 | }
|
---|
| 297 |
|
---|
[c585827] | 298 | /** Remove all matching items from hash table.
|
---|
| 299 | *
|
---|
[82cbf8c6] | 300 | * For each removed item, h->remove_callback() is called.
|
---|
[c585827] | 301 | *
|
---|
[82cbf8c6] | 302 | * @param h Hash table.
|
---|
| 303 | * @param key Array of keys that will be compared against items of
|
---|
| 304 | * the hash table.
|
---|
[1b20da0] | 305 | *
|
---|
[82cbf8c6] | 306 | * @return Returns the number of removed items.
|
---|
[c585827] | 307 | */
|
---|
[82cbf8c6] | 308 | size_t hash_table_remove(hash_table_t *h, void *key)
|
---|
[c585827] | 309 | {
|
---|
[82cbf8c6] | 310 | assert(h && h->bucket);
|
---|
| 311 | assert(!h->apply_ongoing);
|
---|
[a35b458] | 312 |
|
---|
[82cbf8c6] | 313 | size_t idx = h->op->key_hash(key) % h->bucket_cnt;
|
---|
| 314 |
|
---|
| 315 | size_t removed = 0;
|
---|
[a35b458] | 316 |
|
---|
[82cbf8c6] | 317 | list_foreach_safe(h->bucket[idx], cur, next) {
|
---|
| 318 | ht_link_t *cur_link = member_to_inst(cur, ht_link_t, link);
|
---|
[a35b458] | 319 |
|
---|
[82cbf8c6] | 320 | if (h->op->key_equal(key, cur_link)) {
|
---|
| 321 | ++removed;
|
---|
[c585827] | 322 | list_remove(cur);
|
---|
[82cbf8c6] | 323 | h->op->remove_callback(cur_link);
|
---|
[c585827] | 324 | }
|
---|
| 325 | }
|
---|
[82cbf8c6] | 326 |
|
---|
| 327 | h->item_cnt -= removed;
|
---|
| 328 | shrink_if_needed(h);
|
---|
[a35b458] | 329 |
|
---|
[82cbf8c6] | 330 | return removed;
|
---|
[c585827] | 331 | }
|
---|
[b45c443] | 332 |
|
---|
[82cbf8c6] | 333 | /** Removes an item already present in the table. The item must be in the table.*/
|
---|
| 334 | void hash_table_remove_item(hash_table_t *h, ht_link_t *item)
|
---|
| 335 | {
|
---|
| 336 | assert(item);
|
---|
| 337 | assert(h && h->bucket);
|
---|
| 338 | assert(link_in_use(&item->link));
|
---|
| 339 |
|
---|
| 340 | list_remove(&item->link);
|
---|
| 341 | --h->item_cnt;
|
---|
| 342 | h->op->remove_callback(item);
|
---|
| 343 | shrink_if_needed(h);
|
---|
| 344 | }
|
---|
| 345 |
|
---|
| 346 | /** Apply function to all items in hash table.
|
---|
[1c85bae] | 347 | *
|
---|
[82cbf8c6] | 348 | * @param h Hash table.
|
---|
[1b20da0] | 349 | * @param f Function to be applied. Return false if no more items
|
---|
[82cbf8c6] | 350 | * should be visited. The functor may only delete the supplied
|
---|
[1b20da0] | 351 | * item. It must not delete the successor of the item passed
|
---|
[82cbf8c6] | 352 | * in the first argument.
|
---|
| 353 | * @param arg Argument to be passed to the function.
|
---|
[1c85bae] | 354 | */
|
---|
[82cbf8c6] | 355 | void hash_table_apply(hash_table_t *h, bool (*f)(ht_link_t *, void *), void *arg)
|
---|
[1b20da0] | 356 | {
|
---|
[82cbf8c6] | 357 | assert(f);
|
---|
| 358 | assert(h && h->bucket);
|
---|
[a35b458] | 359 |
|
---|
[82cbf8c6] | 360 | if (h->item_cnt == 0)
|
---|
| 361 | return;
|
---|
[a35b458] | 362 |
|
---|
[82cbf8c6] | 363 | h->apply_ongoing = true;
|
---|
[a35b458] | 364 |
|
---|
[82cbf8c6] | 365 | for (size_t idx = 0; idx < h->bucket_cnt; ++idx) {
|
---|
| 366 | list_foreach_safe(h->bucket[idx], cur, next) {
|
---|
| 367 | ht_link_t *cur_link = member_to_inst(cur, ht_link_t, link);
|
---|
[1b20da0] | 368 | /*
|
---|
| 369 | * The next pointer had already been saved. f() may safely
|
---|
[82cbf8c6] | 370 | * delete cur (but not next!).
|
---|
| 371 | */
|
---|
| 372 | if (!f(cur_link, arg))
|
---|
| 373 | goto out;
|
---|
| 374 | }
|
---|
| 375 | }
|
---|
| 376 | out:
|
---|
| 377 | h->apply_ongoing = false;
|
---|
[a35b458] | 378 |
|
---|
[82cbf8c6] | 379 | shrink_if_needed(h);
|
---|
| 380 | grow_if_needed(h);
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 | /** Rounds up size to the nearest suitable table size. */
|
---|
| 384 | static size_t round_up_size(size_t size)
|
---|
[1c85bae] | 385 | {
|
---|
[82cbf8c6] | 386 | size_t rounded_size = HT_MIN_BUCKETS;
|
---|
[a35b458] | 387 |
|
---|
[82cbf8c6] | 388 | while (rounded_size < size) {
|
---|
| 389 | rounded_size = 2 * rounded_size + 1;
|
---|
| 390 | }
|
---|
[a35b458] | 391 |
|
---|
[82cbf8c6] | 392 | return rounded_size;
|
---|
| 393 | }
|
---|
| 394 |
|
---|
| 395 | /** Allocates and initializes the desired number of buckets. True if successful.*/
|
---|
| 396 | static bool alloc_table(size_t bucket_cnt, list_t **pbuckets)
|
---|
| 397 | {
|
---|
| 398 | assert(pbuckets && HT_MIN_BUCKETS <= bucket_cnt);
|
---|
[a35b458] | 399 |
|
---|
[11b285d] | 400 | list_t *buckets = malloc(bucket_cnt * sizeof(list_t));
|
---|
[82cbf8c6] | 401 | if (!buckets)
|
---|
| 402 | return false;
|
---|
[a35b458] | 403 |
|
---|
[82cbf8c6] | 404 | for (size_t i = 0; i < bucket_cnt; i++)
|
---|
| 405 | list_initialize(&buckets[i]);
|
---|
| 406 |
|
---|
| 407 | *pbuckets = buckets;
|
---|
| 408 | return true;
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | /** Shrinks the table if the table is only sparely populated. */
|
---|
| 412 | static inline void shrink_if_needed(hash_table_t *h)
|
---|
| 413 | {
|
---|
| 414 | if (h->item_cnt <= h->full_item_cnt / 4 && HT_MIN_BUCKETS < h->bucket_cnt) {
|
---|
[1b20da0] | 415 | /*
|
---|
| 416 | * Keep the bucket_cnt odd (possibly also prime).
|
---|
[82cbf8c6] | 417 | * Shrink from 2n + 1 to n. Integer division discards the +1.
|
---|
| 418 | */
|
---|
| 419 | size_t new_bucket_cnt = h->bucket_cnt / 2;
|
---|
| 420 | resize(h, new_bucket_cnt);
|
---|
| 421 | }
|
---|
| 422 | }
|
---|
| 423 |
|
---|
| 424 | /** Grows the table if table load exceeds the maximum allowed. */
|
---|
| 425 | static inline void grow_if_needed(hash_table_t *h)
|
---|
| 426 | {
|
---|
| 427 | /* Grow the table if the average bucket load exceeds the maximum. */
|
---|
| 428 | if (h->full_item_cnt < h->item_cnt) {
|
---|
| 429 | /* Keep the bucket_cnt odd (possibly also prime). */
|
---|
| 430 | size_t new_bucket_cnt = 2 * h->bucket_cnt + 1;
|
---|
| 431 | resize(h, new_bucket_cnt);
|
---|
| 432 | }
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 | /** Allocates and rehashes items to a new table. Frees the old table. */
|
---|
[1b20da0] | 436 | static void resize(hash_table_t *h, size_t new_bucket_cnt)
|
---|
[82cbf8c6] | 437 | {
|
---|
| 438 | assert(h && h->bucket);
|
---|
| 439 | assert(HT_MIN_BUCKETS <= new_bucket_cnt);
|
---|
[a35b458] | 440 |
|
---|
[82cbf8c6] | 441 | /* We are traversing the table and resizing would mess up the buckets. */
|
---|
| 442 | if (h->apply_ongoing)
|
---|
| 443 | return;
|
---|
[a35b458] | 444 |
|
---|
[82cbf8c6] | 445 | list_t *new_buckets;
|
---|
| 446 |
|
---|
| 447 | /* Leave the table as is if we cannot resize. */
|
---|
| 448 | if (!alloc_table(new_bucket_cnt, &new_buckets))
|
---|
| 449 | return;
|
---|
[a35b458] | 450 |
|
---|
[82cbf8c6] | 451 | if (0 < h->item_cnt) {
|
---|
| 452 | /* Rehash all the items to the new table. */
|
---|
| 453 | for (size_t old_idx = 0; old_idx < h->bucket_cnt; ++old_idx) {
|
---|
| 454 | list_foreach_safe(h->bucket[old_idx], cur, next) {
|
---|
| 455 | ht_link_t *cur_link = member_to_inst(cur, ht_link_t, link);
|
---|
| 456 |
|
---|
| 457 | size_t new_idx = h->op->hash(cur_link) % new_bucket_cnt;
|
---|
| 458 | list_remove(cur);
|
---|
| 459 | list_append(cur, &new_buckets[new_idx]);
|
---|
| 460 | }
|
---|
| 461 | }
|
---|
| 462 | }
|
---|
[a35b458] | 463 |
|
---|
[82cbf8c6] | 464 | free(h->bucket);
|
---|
| 465 | h->bucket = new_buckets;
|
---|
| 466 | h->bucket_cnt = new_bucket_cnt;
|
---|
| 467 | h->full_item_cnt = h->max_load * h->bucket_cnt;
|
---|
[1c85bae] | 468 | }
|
---|
| 469 |
|
---|
[cc73a8a1] | 470 | /** @}
|
---|
[b45c443] | 471 | */
|
---|