blob: f951e6aa1637679a0f4f56d658860a32e2d8ad23 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file hash_table.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vaskoae130f52023-04-20 14:25:16 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
5 * @brief libyang generic hash table implementation
Radek Krejci5aeea3a2018-09-05 13:29:36 +02006 *
Michal Vaskoae130f52023-04-20 14:25:16 +02007 * Copyright (c) 2015 - 2023 CESNET, z.s.p.o.
Radek Krejci5aeea3a2018-09-05 13:29:36 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#include "hash_table.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020017
Michal Vasko69730152020-10-09 16:30:07 +020018#include <assert.h>
19#include <pthread.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020020#include <stdint.h>
21#include <stdlib.h>
Michal Vasko69730152020-10-09 16:30:07 +020022#include <string.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020023
Michal Vasko69730152020-10-09 16:30:07 +020024#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "dict.h"
Radek Krejci857189e2020-09-01 13:26:36 +020026#include "log.h"
Michal Vasko8f702ee2024-02-20 15:44:24 +010027#include "ly_common.h"
Radek Krejci5aeea3a2018-09-05 13:29:36 +020028
Michal Vaskoae130f52023-04-20 14:25:16 +020029LIBYANG_API_DEF uint32_t
30lyht_hash_multi(uint32_t hash, const char *key_part, size_t len)
Radek Krejci5aeea3a2018-09-05 13:29:36 +020031{
32 uint32_t i;
33
aPiecek4f07c3e2021-06-11 10:53:07 +020034 if (key_part && len) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +020035 for (i = 0; i < len; ++i) {
36 hash += key_part[i];
37 hash += (hash << 10);
38 hash ^= (hash >> 6);
39 }
40 } else {
41 hash += (hash << 3);
42 hash ^= (hash >> 11);
43 hash += (hash << 15);
44 }
45
46 return hash;
47}
48
Michal Vaskoae130f52023-04-20 14:25:16 +020049LIBYANG_API_DEF uint32_t
50lyht_hash(const char *key, size_t len)
Radek Krejcif2dc4c52018-11-08 09:04:13 +010051{
52 uint32_t hash;
53
Michal Vaskoae130f52023-04-20 14:25:16 +020054 hash = lyht_hash_multi(0, key, len);
55 return lyht_hash_multi(hash, NULL, len);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020056}
57
Olivier Matz75c00192023-09-21 14:35:12 +020058static LY_ERR
59lyht_init_hlists_and_records(struct ly_ht *ht)
Radek Krejci5aeea3a2018-09-05 13:29:36 +020060{
Olivier Matz75c00192023-09-21 14:35:12 +020061 struct ly_ht_rec *rec;
62 uint32_t i;
63
64 ht->recs = calloc(ht->size, ht->rec_size);
65 LY_CHECK_ERR_RET(!ht->recs, LOGMEM(NULL), LY_EMEM);
66 for (i = 0; i < ht->size; i++) {
67 rec = lyht_get_rec(ht->recs, ht->rec_size, i);
Olivier Matzc0feb682023-09-21 08:53:59 +020068 if (i != ht->size) {
Olivier Matz75c00192023-09-21 14:35:12 +020069 rec->next = i + 1;
Olivier Matzc0feb682023-09-21 08:53:59 +020070 } else {
Olivier Matz75c00192023-09-21 14:35:12 +020071 rec->next = LYHT_NO_RECORD;
Olivier Matzc0feb682023-09-21 08:53:59 +020072 }
Olivier Matz75c00192023-09-21 14:35:12 +020073 }
74
75 ht->hlists = malloc(sizeof(ht->hlists[0]) * ht->size);
76 LY_CHECK_ERR_RET(!ht->hlists, free(ht->recs); LOGMEM(NULL), LY_EMEM);
Olivier Matz6a669c12023-09-28 12:07:12 +020077 for (i = 0; i < ht->size; i++) {
78 ht->hlists[i].first = LYHT_NO_RECORD;
79 ht->hlists[i].last = LYHT_NO_RECORD;
80 }
Olivier Matz75c00192023-09-21 14:35:12 +020081 ht->first_free_rec = 0;
82
83 return LY_SUCCESS;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020084}
85
Michal Vaskoae130f52023-04-20 14:25:16 +020086LIBYANG_API_DEF struct ly_ht *
Michal Vasko62524a92021-02-26 10:08:50 +010087lyht_new(uint32_t size, uint16_t val_size, lyht_value_equal_cb val_equal, void *cb_data, uint16_t resize)
Radek Krejci5aeea3a2018-09-05 13:29:36 +020088{
Michal Vasko8efac242023-03-30 08:24:56 +020089 struct ly_ht *ht;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020090
91 /* check that 2^x == size (power of 2) */
92 assert(size && !(size & (size - 1)));
93 assert(val_equal && val_size);
94 assert(resize == 0 || resize == 1);
95
96 if (size < LYHT_MIN_SIZE) {
97 size = LYHT_MIN_SIZE;
98 }
99
100 ht = malloc(sizeof *ht);
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200101 LY_CHECK_ERR_RET(!ht, LOGMEM(NULL), NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200102
103 ht->used = 0;
104 ht->size = size;
105 ht->val_equal = val_equal;
106 ht->cb_data = cb_data;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200107 ht->resize = resize;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200108
Olivier Matz75c00192023-09-21 14:35:12 +0200109 ht->rec_size = SIZEOF_LY_HT_REC + val_size;
110 if (lyht_init_hlists_and_records(ht) != LY_SUCCESS) {
111 free(ht);
112 return NULL;
113 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200114
115 return ht;
116}
117
Michal Vaskoae130f52023-04-20 14:25:16 +0200118LIBYANG_API_DEF lyht_value_equal_cb
Michal Vasko8efac242023-03-30 08:24:56 +0200119lyht_set_cb(struct ly_ht *ht, lyht_value_equal_cb new_val_equal)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200120{
Michal Vasko62524a92021-02-26 10:08:50 +0100121 lyht_value_equal_cb prev;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200122
123 prev = ht->val_equal;
124 ht->val_equal = new_val_equal;
125 return prev;
126}
127
Michal Vaskoae130f52023-04-20 14:25:16 +0200128LIBYANG_API_DEF void *
Michal Vasko8efac242023-03-30 08:24:56 +0200129lyht_set_cb_data(struct ly_ht *ht, void *new_cb_data)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200130{
131 void *prev;
132
133 prev = ht->cb_data;
134 ht->cb_data = new_cb_data;
135 return prev;
136}
137
Michal Vaskoae130f52023-04-20 14:25:16 +0200138LIBYANG_API_DEF struct ly_ht *
Michal Vasko8efac242023-03-30 08:24:56 +0200139lyht_dup(const struct ly_ht *orig)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200140{
Michal Vasko8efac242023-03-30 08:24:56 +0200141 struct ly_ht *ht;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200142
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200143 LY_CHECK_ARG_RET(NULL, orig, NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200144
Olivier Matz75c00192023-09-21 14:35:12 +0200145 ht = lyht_new(orig->size, orig->rec_size - SIZEOF_LY_HT_REC, orig->val_equal, orig->cb_data, orig->resize ? 1 : 0);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200146 if (!ht) {
147 return NULL;
148 }
149
Olivier Matz75c00192023-09-21 14:35:12 +0200150 memcpy(ht->hlists, orig->hlists, sizeof(ht->hlists[0]) * orig->size);
151 memcpy(ht->recs, orig->recs, (size_t)orig->size * orig->rec_size);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200152 ht->used = orig->used;
153 return ht;
154}
155
Michal Vaskoae130f52023-04-20 14:25:16 +0200156LIBYANG_API_DEF void
Michal Vasko8efac242023-03-30 08:24:56 +0200157lyht_free(struct ly_ht *ht, void (*val_free)(void *val_p))
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200158{
Michal Vasko8efac242023-03-30 08:24:56 +0200159 struct ly_ht_rec *rec;
Olivier Matz75c00192023-09-21 14:35:12 +0200160 uint32_t hlist_idx;
161 uint32_t rec_idx;
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100162
163 if (!ht) {
164 return;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200165 }
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100166
167 if (val_free) {
Olivier Matzc0feb682023-09-21 08:53:59 +0200168 LYHT_ITER_ALL_RECS(ht, hlist_idx, rec_idx, rec) {
Olivier Matz75c00192023-09-21 14:35:12 +0200169 val_free(&rec->val);
Olivier Matzc0feb682023-09-21 08:53:59 +0200170 }
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100171 }
Olivier Matz75c00192023-09-21 14:35:12 +0200172 free(ht->hlists);
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100173 free(ht->recs);
174 free(ht);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200175}
176
Michal Vaskodc95d9c2021-04-12 15:11:48 +0200177/**
178 * @brief Resize a hash table.
179 *
180 * @param[in] ht Hash table to resize.
181 * @param[in] operation Operation to perform. 1 to enlarge, -1 to shrink, 0 to only rehash all records.
182 * @return LY_ERR value.
183 */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200184static LY_ERR
Olivier Matz6ad93d92023-09-28 12:13:36 +0200185lyht_resize(struct ly_ht *ht, int operation, int check)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200186{
Michal Vasko8efac242023-03-30 08:24:56 +0200187 struct ly_ht_rec *rec;
Olivier Matz6a669c12023-09-28 12:07:12 +0200188 struct ly_ht_hlist *old_hlists;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200189 unsigned char *old_recs;
Olivier Matz75c00192023-09-21 14:35:12 +0200190 uint32_t old_first_free_rec;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200191 uint32_t i, old_size;
Olivier Matz75c00192023-09-21 14:35:12 +0200192 uint32_t rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200193
Olivier Matz75c00192023-09-21 14:35:12 +0200194 old_hlists = ht->hlists;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200195 old_recs = ht->recs;
196 old_size = ht->size;
Olivier Matz75c00192023-09-21 14:35:12 +0200197 old_first_free_rec = ht->first_free_rec;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200198
Michal Vaskodc95d9c2021-04-12 15:11:48 +0200199 if (operation > 0) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200200 /* double the size */
201 ht->size <<= 1;
Michal Vaskodc95d9c2021-04-12 15:11:48 +0200202 } else if (operation < 0) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200203 /* half the size */
204 ht->size >>= 1;
205 }
206
Olivier Matz75c00192023-09-21 14:35:12 +0200207 if (lyht_init_hlists_and_records(ht) != LY_SUCCESS) {
208 ht->hlists = old_hlists;
209 ht->recs = old_recs;
210 ht->size = old_size;
211 ht->first_free_rec = old_first_free_rec;
212 return LY_EMEM;
213 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200214
Olivier Matz75c00192023-09-21 14:35:12 +0200215 /* reset used, it will increase again */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200216 ht->used = 0;
217
218 /* add all the old records into the new records array */
Olivier Matz75c00192023-09-21 14:35:12 +0200219 for (i = 0; i < old_size; i++) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200220 for (rec_idx = old_hlists[i].first, rec = lyht_get_rec(old_recs, ht->rec_size, rec_idx);
Olivier Matzc0feb682023-09-21 08:53:59 +0200221 rec_idx != LYHT_NO_RECORD;
222 rec_idx = rec->next, rec = lyht_get_rec(old_recs, ht->rec_size, rec_idx)) {
Olivier Matz75c00192023-09-21 14:35:12 +0200223 LY_ERR ret;
224
Olivier Matzc0feb682023-09-21 08:53:59 +0200225 if (check) {
Olivier Matz6ad93d92023-09-28 12:13:36 +0200226 ret = lyht_insert(ht, rec->val, rec->hash, NULL);
Olivier Matzc0feb682023-09-21 08:53:59 +0200227 } else {
Olivier Matz6ad93d92023-09-28 12:13:36 +0200228 ret = lyht_insert_no_check(ht, rec->val, rec->hash, NULL);
Olivier Matzc0feb682023-09-21 08:53:59 +0200229 }
Michal Vasko26bbb272022-08-02 14:54:33 +0200230
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200231 assert(!ret);
232 (void)ret;
233 }
234 }
235
236 /* final touches */
237 free(old_recs);
Olivier Matz75c00192023-09-21 14:35:12 +0200238 free(old_hlists);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200239 return LY_SUCCESS;
240}
241
Michal Vaskoda859032020-07-14 12:20:14 +0200242/**
Michal Vaskoda859032020-07-14 12:20:14 +0200243 * @brief Search for a record with specific value and hash.
244 *
245 * @param[in] ht Hash table to search in.
246 * @param[in] val_p Pointer to the value to find.
247 * @param[in] hash Hash to find.
Radek Krejci857189e2020-09-01 13:26:36 +0200248 * @param[in] mod Whether the operation modifies the hash table (insert or remove) or not (find).
Michal Vaskof1e09412023-10-23 10:03:21 +0200249 * @param[in] val_equal Callback for checking value equivalence.
Michal Vaskoda859032020-07-14 12:20:14 +0200250 * @param[out] crec_p Optional found first record.
251 * @param[out] col Optional collision number of @p rec_p, 0 for no collision.
252 * @param[out] rec_p Found exact matching record, may be a collision of @p crec_p.
253 * @return LY_ENOTFOUND if no record found,
254 * @return LY_SUCCESS if record was found.
255 */
256static LY_ERR
Michal Vaskof1e09412023-10-23 10:03:21 +0200257lyht_find_rec(const struct ly_ht *ht, void *val_p, uint32_t hash, ly_bool mod, lyht_value_equal_cb val_equal,
258 struct ly_ht_rec **crec_p, uint32_t *col, struct ly_ht_rec **rec_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200259{
Olivier Matz75c00192023-09-21 14:35:12 +0200260 uint32_t hlist_idx = hash & (ht->size - 1);
261 struct ly_ht_rec *rec;
262 uint32_t rec_idx;
Michal Vaskoda859032020-07-14 12:20:14 +0200263
264 if (crec_p) {
265 *crec_p = NULL;
266 }
267 if (col) {
268 *col = 0;
269 }
270 *rec_p = NULL;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200271
Olivier Matz75c00192023-09-21 14:35:12 +0200272 LYHT_ITER_HLIST_RECS(ht, hlist_idx, rec_idx, rec) {
Michal Vaskof1e09412023-10-23 10:03:21 +0200273 if ((rec->hash == hash) && val_equal(val_p, &rec->val, mod, ht->cb_data)) {
Michal Vaskoda859032020-07-14 12:20:14 +0200274 if (crec_p) {
Olivier Matz75c00192023-09-21 14:35:12 +0200275 *crec_p = rec;
Michal Vaskoda859032020-07-14 12:20:14 +0200276 }
277 *rec_p = rec;
278 return LY_SUCCESS;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200279 }
Olivier Matz75c00192023-09-21 14:35:12 +0200280
281 if (col) {
282 *col = *col + 1;
283 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200284 }
285
286 /* not found even in collisions */
Michal Vaskoda859032020-07-14 12:20:14 +0200287 return LY_ENOTFOUND;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200288}
289
Michal Vaskoae130f52023-04-20 14:25:16 +0200290LIBYANG_API_DEF LY_ERR
Michal Vaskof1e09412023-10-23 10:03:21 +0200291lyht_find(const struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Michal Vaskoda859032020-07-14 12:20:14 +0200292{
Michal Vasko8efac242023-03-30 08:24:56 +0200293 struct ly_ht_rec *rec;
Michal Vaskoda859032020-07-14 12:20:14 +0200294
Michal Vaskof1e09412023-10-23 10:03:21 +0200295 lyht_find_rec(ht, val_p, hash, 0, ht->val_equal, NULL, NULL, &rec);
Michal Vaskoda859032020-07-14 12:20:14 +0200296
297 if (rec && match_p) {
298 *match_p = rec->val;
299 }
300 return rec ? LY_SUCCESS : LY_ENOTFOUND;
301}
302
Michal Vaskoae130f52023-04-20 14:25:16 +0200303LIBYANG_API_DEF LY_ERR
Michal Vaskof1e09412023-10-23 10:03:21 +0200304lyht_find_with_val_cb(const struct ly_ht *ht, void *val_p, uint32_t hash, lyht_value_equal_cb val_equal, void **match_p)
305{
306 struct ly_ht_rec *rec;
307
308 lyht_find_rec(ht, val_p, hash, 0, val_equal ? val_equal : ht->val_equal, NULL, NULL, &rec);
309
310 if (rec && match_p) {
311 *match_p = rec->val;
312 }
313 return rec ? LY_SUCCESS : LY_ENOTFOUND;
314}
315
316LIBYANG_API_DEF LY_ERR
317lyht_find_next_with_collision_cb(const struct ly_ht *ht, void *val_p, uint32_t hash,
Michal Vasko6374de22022-09-05 15:48:48 +0200318 lyht_value_equal_cb collision_val_equal, void **match_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200319{
Michal Vasko8efac242023-03-30 08:24:56 +0200320 struct ly_ht_rec *rec, *crec;
Olivier Matz75c00192023-09-21 14:35:12 +0200321 uint32_t rec_idx;
322 uint32_t i;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200323
Michal Vasko6374de22022-09-05 15:48:48 +0200324 /* find the record of the previously found value */
Michal Vaskof1e09412023-10-23 10:03:21 +0200325 if (lyht_find_rec(ht, val_p, hash, 1, ht->val_equal, &crec, &i, &rec)) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200326 /* not found, cannot happen */
Michal Vaskoda859032020-07-14 12:20:14 +0200327 LOGINT_RET(NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200328 }
329
Olivier Matz75c00192023-09-21 14:35:12 +0200330 for (rec_idx = rec->next, rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx);
Olivier Matzc0feb682023-09-21 08:53:59 +0200331 rec_idx != LYHT_NO_RECORD;
332 rec_idx = rec->next, rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx)) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200333
Michal Vasko6374de22022-09-05 15:48:48 +0200334 if (rec->hash != hash) {
335 continue;
336 }
337
338 if (collision_val_equal) {
339 if (collision_val_equal(val_p, &rec->val, 0, ht->cb_data)) {
340 /* even the value matches */
341 if (match_p) {
342 *match_p = rec->val;
343 }
344 return LY_SUCCESS;
345 }
346 } else if (ht->val_equal(val_p, &rec->val, 0, ht->cb_data)) {
Michal Vaskoda859032020-07-14 12:20:14 +0200347 /* even the value matches */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200348 if (match_p) {
349 *match_p = rec->val;
350 }
Michal Vaskoda859032020-07-14 12:20:14 +0200351 return LY_SUCCESS;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200352 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200353 }
354
355 /* the last equal value was already returned */
Michal Vaskoda859032020-07-14 12:20:14 +0200356 return LY_ENOTFOUND;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200357}
358
Michal Vaskoae130f52023-04-20 14:25:16 +0200359LIBYANG_API_DEF LY_ERR
Michal Vaskof1e09412023-10-23 10:03:21 +0200360lyht_find_next(const struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Michal Vasko6374de22022-09-05 15:48:48 +0200361{
362 return lyht_find_next_with_collision_cb(ht, val_p, hash, NULL, match_p);
363}
364
Olivier Matz75c00192023-09-21 14:35:12 +0200365static LY_ERR
Michal Vaskof1e09412023-10-23 10:03:21 +0200366_lyht_insert_with_resize_cb(struct ly_ht *ht, void *val_p, uint32_t hash, lyht_value_equal_cb resize_val_equal,
Olivier Matz6ad93d92023-09-28 12:13:36 +0200367 void **match_p, int check)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200368{
Olivier Matz75c00192023-09-21 14:35:12 +0200369 uint32_t hlist_idx = hash & (ht->size - 1);
Radek Krejci1deb5be2020-08-26 16:43:36 +0200370 LY_ERR r, ret = LY_SUCCESS;
Olivier Matz6a669c12023-09-28 12:07:12 +0200371 struct ly_ht_rec *rec, *prev_rec;
Michal Vasko62524a92021-02-26 10:08:50 +0100372 lyht_value_equal_cb old_val_equal = NULL;
Olivier Matz75c00192023-09-21 14:35:12 +0200373 uint32_t rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200374
Olivier Matz6ad93d92023-09-28 12:13:36 +0200375 if (check) {
Michal Vaskof1e09412023-10-23 10:03:21 +0200376 if (lyht_find_rec(ht, val_p, hash, 1, ht->val_equal, NULL, NULL, &rec) == LY_SUCCESS) {
Olivier Matz6ad93d92023-09-28 12:13:36 +0200377 if (rec && match_p) {
378 *match_p = rec->val;
379 }
380 return LY_EEXIST;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200381 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200382 }
383
Olivier Matz75c00192023-09-21 14:35:12 +0200384 rec_idx = ht->first_free_rec;
385 assert(rec_idx < ht->size);
386 rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx);
387 ht->first_free_rec = rec->next;
Olivier Matz6a669c12023-09-28 12:07:12 +0200388
389 if (ht->hlists[hlist_idx].first == LYHT_NO_RECORD) {
390 ht->hlists[hlist_idx].first = rec_idx;
391 } else {
392 prev_rec = lyht_get_rec(ht->recs, ht->rec_size, ht->hlists[hlist_idx].last);
393 prev_rec->next = rec_idx;
394 }
395 rec->next = LYHT_NO_RECORD;
396 ht->hlists[hlist_idx].last = rec_idx;
Olivier Matz75c00192023-09-21 14:35:12 +0200397
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200398 rec->hash = hash;
Olivier Matz75c00192023-09-21 14:35:12 +0200399 memcpy(&rec->val, val_p, ht->rec_size - SIZEOF_LY_HT_REC);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200400 if (match_p) {
401 *match_p = (void *)&rec->val;
402 }
403
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200404 /* check size & enlarge if needed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200405 ++ht->used;
406 if (ht->resize) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100407 r = (ht->used * LYHT_HUNDRED_PERCENTAGE) / ht->size;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200408 if ((ht->resize == 1) && (r >= LYHT_FIRST_SHRINK_PERCENTAGE)) {
409 /* enable shrinking */
410 ht->resize = 2;
411 }
412 if ((ht->resize == 2) && (r >= LYHT_ENLARGE_PERCENTAGE)) {
413 if (resize_val_equal) {
414 old_val_equal = lyht_set_cb(ht, resize_val_equal);
415 }
416
417 /* enlarge */
Olivier Matz6ad93d92023-09-28 12:13:36 +0200418 ret = lyht_resize(ht, 1, check);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200419 /* if hash_table was resized, we need to find new matching value */
Michal Vasko69730152020-10-09 16:30:07 +0200420 if ((ret == LY_SUCCESS) && match_p) {
Michal Vasko59118802023-10-04 16:00:26 +0200421 ret = lyht_find(ht, val_p, hash, match_p);
422 assert(!ret);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200423 }
424
425 if (resize_val_equal) {
426 lyht_set_cb(ht, old_val_equal);
427 }
428 }
429 }
430 return ret;
431}
432
Michal Vaskoae130f52023-04-20 14:25:16 +0200433LIBYANG_API_DEF LY_ERR
Olivier Matz75c00192023-09-21 14:35:12 +0200434lyht_insert_with_resize_cb(struct ly_ht *ht, void *val_p, uint32_t hash, lyht_value_equal_cb resize_val_equal,
435 void **match_p)
436{
Michal Vaskof1e09412023-10-23 10:03:21 +0200437 return _lyht_insert_with_resize_cb(ht, val_p, hash, resize_val_equal, match_p, 1);
Olivier Matz75c00192023-09-21 14:35:12 +0200438}
439
440LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200441lyht_insert(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200442{
Michal Vaskof1e09412023-10-23 10:03:21 +0200443 return _lyht_insert_with_resize_cb(ht, val_p, hash, NULL, match_p, 1);
Olivier Matz6ad93d92023-09-28 12:13:36 +0200444}
445
446LIBYANG_API_DEF LY_ERR
447lyht_insert_no_check(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
448{
Michal Vaskof1e09412023-10-23 10:03:21 +0200449 return _lyht_insert_with_resize_cb(ht, val_p, hash, NULL, match_p, 0);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200450}
451
Michal Vaskoae130f52023-04-20 14:25:16 +0200452LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200453lyht_remove_with_resize_cb(struct ly_ht *ht, void *val_p, uint32_t hash, lyht_value_equal_cb resize_val_equal)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200454{
Olivier Matz75c00192023-09-21 14:35:12 +0200455 struct ly_ht_rec *found_rec, *prev_rec, *rec;
456 uint32_t hlist_idx = hash & (ht->size - 1);
Radek Krejci1deb5be2020-08-26 16:43:36 +0200457 LY_ERR r, ret = LY_SUCCESS;
stewegd8e2fc92023-05-31 09:52:56 +0200458 lyht_value_equal_cb old_val_equal = NULL;
Olivier Matz75c00192023-09-21 14:35:12 +0200459 uint32_t prev_rec_idx;
460 uint32_t rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200461
Michal Vaskoc70cf032023-10-23 10:04:29 +0200462 if (lyht_find_rec(ht, val_p, hash, 1, ht->val_equal, NULL, NULL, &found_rec)) {
463 LOGARG(NULL, hash);
464 return LY_ENOTFOUND;
465 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200466
Olivier Matz75c00192023-09-21 14:35:12 +0200467 prev_rec_idx = LYHT_NO_RECORD;
468 LYHT_ITER_HLIST_RECS(ht, hlist_idx, rec_idx, rec) {
Olivier Matzc0feb682023-09-21 08:53:59 +0200469 if (rec == found_rec) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200470 break;
Olivier Matzc0feb682023-09-21 08:53:59 +0200471 }
Olivier Matz75c00192023-09-21 14:35:12 +0200472 prev_rec_idx = rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200473 }
474
Olivier Matz75c00192023-09-21 14:35:12 +0200475 if (prev_rec_idx == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200476 ht->hlists[hlist_idx].first = rec->next;
Olivier Matzc0feb682023-09-21 08:53:59 +0200477 if (rec->next == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200478 ht->hlists[hlist_idx].last = LYHT_NO_RECORD;
Olivier Matzc0feb682023-09-21 08:53:59 +0200479 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200480 } else {
Olivier Matz75c00192023-09-21 14:35:12 +0200481 prev_rec = lyht_get_rec(ht->recs, ht->rec_size, prev_rec_idx);
482 prev_rec->next = rec->next;
Olivier Matzc0feb682023-09-21 08:53:59 +0200483 if (rec->next == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200484 ht->hlists[hlist_idx].last = prev_rec_idx;
Olivier Matzc0feb682023-09-21 08:53:59 +0200485 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200486 }
487
Olivier Matz75c00192023-09-21 14:35:12 +0200488 rec->next = ht->first_free_rec;
489 ht->first_free_rec = rec_idx;
490
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200491 /* check size & shrink if needed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200492 --ht->used;
493 if (ht->resize == 2) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100494 r = (ht->used * LYHT_HUNDRED_PERCENTAGE) / ht->size;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200495 if ((r < LYHT_SHRINK_PERCENTAGE) && (ht->size > LYHT_MIN_SIZE)) {
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200496 if (resize_val_equal) {
497 old_val_equal = lyht_set_cb(ht, resize_val_equal);
498 }
499
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200500 /* shrink */
Olivier Matz6ad93d92023-09-28 12:13:36 +0200501 ret = lyht_resize(ht, -1, 1);
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200502
503 if (resize_val_equal) {
504 lyht_set_cb(ht, old_val_equal);
505 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200506 }
507 }
508
509 return ret;
510}
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200511
Michal Vaskoae130f52023-04-20 14:25:16 +0200512LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200513lyht_remove(struct ly_ht *ht, void *val_p, uint32_t hash)
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200514{
515 return lyht_remove_with_resize_cb(ht, val_p, hash, NULL);
516}
Michal Vasko626196f2022-08-05 12:49:52 +0200517
Michal Vaskoae130f52023-04-20 14:25:16 +0200518LIBYANG_API_DEF uint32_t
Michal Vasko626196f2022-08-05 12:49:52 +0200519lyht_get_fixed_size(uint32_t item_count)
520{
Olivier Matzc0feb682023-09-21 08:53:59 +0200521 if (item_count == 0) {
Olivier Matz75c00192023-09-21 14:35:12 +0200522 return 1;
Olivier Matzc0feb682023-09-21 08:53:59 +0200523 }
Michal Vasko626196f2022-08-05 12:49:52 +0200524
Olivier Matz75c00192023-09-21 14:35:12 +0200525 /* return next power of 2 (greater or equal) */
526 item_count--;
527 item_count |= item_count >> 1;
528 item_count |= item_count >> 2;
529 item_count |= item_count >> 4;
530 item_count |= item_count >> 8;
531 item_count |= item_count >> 16;
Michal Vasko626196f2022-08-05 12:49:52 +0200532
Olivier Matz75c00192023-09-21 14:35:12 +0200533 return item_count + 1;
Michal Vasko626196f2022-08-05 12:49:52 +0200534}