blob: fd88e3d93b9acda98e4e24d763dfcbf1d649e11c [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
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020025#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020026#include "dict.h"
Radek Krejci857189e2020-09-01 13:26:36 +020027#include "log.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 Vaskoda859032020-07-14 12:20:14 +0200249 * @param[out] crec_p Optional found first record.
250 * @param[out] col Optional collision number of @p rec_p, 0 for no collision.
251 * @param[out] rec_p Found exact matching record, may be a collision of @p crec_p.
252 * @return LY_ENOTFOUND if no record found,
253 * @return LY_SUCCESS if record was found.
254 */
255static LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200256lyht_find_rec(struct ly_ht *ht, void *val_p, uint32_t hash, ly_bool mod, struct ly_ht_rec **crec_p, uint32_t *col,
257 struct ly_ht_rec **rec_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200258{
Olivier Matz75c00192023-09-21 14:35:12 +0200259 uint32_t hlist_idx = hash & (ht->size - 1);
260 struct ly_ht_rec *rec;
261 uint32_t rec_idx;
Michal Vaskoda859032020-07-14 12:20:14 +0200262
263 if (crec_p) {
264 *crec_p = NULL;
265 }
266 if (col) {
267 *col = 0;
268 }
269 *rec_p = NULL;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200270
Olivier Matz75c00192023-09-21 14:35:12 +0200271 LYHT_ITER_HLIST_RECS(ht, hlist_idx, rec_idx, rec) {
Michal Vaskoda859032020-07-14 12:20:14 +0200272 if ((rec->hash == hash) && ht->val_equal(val_p, &rec->val, mod, ht->cb_data)) {
273 if (crec_p) {
Olivier Matz75c00192023-09-21 14:35:12 +0200274 *crec_p = rec;
Michal Vaskoda859032020-07-14 12:20:14 +0200275 }
276 *rec_p = rec;
277 return LY_SUCCESS;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200278 }
Olivier Matz75c00192023-09-21 14:35:12 +0200279
280 if (col) {
281 *col = *col + 1;
282 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200283 }
284
285 /* not found even in collisions */
Michal Vaskoda859032020-07-14 12:20:14 +0200286 return LY_ENOTFOUND;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200287}
288
Michal Vaskoae130f52023-04-20 14:25:16 +0200289LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200290lyht_find(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Michal Vaskoda859032020-07-14 12:20:14 +0200291{
Michal Vasko8efac242023-03-30 08:24:56 +0200292 struct ly_ht_rec *rec;
Michal Vaskoda859032020-07-14 12:20:14 +0200293
294 lyht_find_rec(ht, val_p, hash, 0, NULL, NULL, &rec);
295
296 if (rec && match_p) {
297 *match_p = rec->val;
298 }
299 return rec ? LY_SUCCESS : LY_ENOTFOUND;
300}
301
Michal Vaskoae130f52023-04-20 14:25:16 +0200302LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200303lyht_find_next_with_collision_cb(struct ly_ht *ht, void *val_p, uint32_t hash,
Michal Vasko6374de22022-09-05 15:48:48 +0200304 lyht_value_equal_cb collision_val_equal, void **match_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200305{
Michal Vasko8efac242023-03-30 08:24:56 +0200306 struct ly_ht_rec *rec, *crec;
Olivier Matz75c00192023-09-21 14:35:12 +0200307 uint32_t rec_idx;
308 uint32_t i;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200309
Michal Vasko6374de22022-09-05 15:48:48 +0200310 /* find the record of the previously found value */
Michal Vaskoda859032020-07-14 12:20:14 +0200311 if (lyht_find_rec(ht, val_p, hash, 1, &crec, &i, &rec)) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200312 /* not found, cannot happen */
Michal Vaskoda859032020-07-14 12:20:14 +0200313 LOGINT_RET(NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200314 }
315
Olivier Matz75c00192023-09-21 14:35:12 +0200316 for (rec_idx = rec->next, rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx);
Olivier Matzc0feb682023-09-21 08:53:59 +0200317 rec_idx != LYHT_NO_RECORD;
318 rec_idx = rec->next, rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx)) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200319
Michal Vasko6374de22022-09-05 15:48:48 +0200320 if (rec->hash != hash) {
321 continue;
322 }
323
324 if (collision_val_equal) {
325 if (collision_val_equal(val_p, &rec->val, 0, ht->cb_data)) {
326 /* even the value matches */
327 if (match_p) {
328 *match_p = rec->val;
329 }
330 return LY_SUCCESS;
331 }
332 } else if (ht->val_equal(val_p, &rec->val, 0, ht->cb_data)) {
Michal Vaskoda859032020-07-14 12:20:14 +0200333 /* even the value matches */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200334 if (match_p) {
335 *match_p = rec->val;
336 }
Michal Vaskoda859032020-07-14 12:20:14 +0200337 return LY_SUCCESS;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200338 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200339 }
340
341 /* the last equal value was already returned */
Michal Vaskoda859032020-07-14 12:20:14 +0200342 return LY_ENOTFOUND;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200343}
344
Michal Vaskoae130f52023-04-20 14:25:16 +0200345LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200346lyht_find_next(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Michal Vasko6374de22022-09-05 15:48:48 +0200347{
348 return lyht_find_next_with_collision_cb(ht, val_p, hash, NULL, match_p);
349}
350
Olivier Matz75c00192023-09-21 14:35:12 +0200351static LY_ERR
352__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 +0200353 void **match_p, int check)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200354{
Olivier Matz75c00192023-09-21 14:35:12 +0200355 uint32_t hlist_idx = hash & (ht->size - 1);
Radek Krejci1deb5be2020-08-26 16:43:36 +0200356 LY_ERR r, ret = LY_SUCCESS;
Olivier Matz6a669c12023-09-28 12:07:12 +0200357 struct ly_ht_rec *rec, *prev_rec;
Michal Vasko62524a92021-02-26 10:08:50 +0100358 lyht_value_equal_cb old_val_equal = NULL;
Olivier Matz75c00192023-09-21 14:35:12 +0200359 uint32_t rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200360
Olivier Matz6ad93d92023-09-28 12:13:36 +0200361 if (check) {
362 if (lyht_find_rec(ht, val_p, hash, 1, NULL, NULL, &rec) == LY_SUCCESS) {
363 if (rec && match_p) {
364 *match_p = rec->val;
365 }
366 return LY_EEXIST;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200367 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200368 }
369
Olivier Matz75c00192023-09-21 14:35:12 +0200370 rec_idx = ht->first_free_rec;
371 assert(rec_idx < ht->size);
372 rec = lyht_get_rec(ht->recs, ht->rec_size, rec_idx);
373 ht->first_free_rec = rec->next;
Olivier Matz6a669c12023-09-28 12:07:12 +0200374
375 if (ht->hlists[hlist_idx].first == LYHT_NO_RECORD) {
376 ht->hlists[hlist_idx].first = rec_idx;
377 } else {
378 prev_rec = lyht_get_rec(ht->recs, ht->rec_size, ht->hlists[hlist_idx].last);
379 prev_rec->next = rec_idx;
380 }
381 rec->next = LYHT_NO_RECORD;
382 ht->hlists[hlist_idx].last = rec_idx;
Olivier Matz75c00192023-09-21 14:35:12 +0200383
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200384 rec->hash = hash;
Olivier Matz75c00192023-09-21 14:35:12 +0200385 memcpy(&rec->val, val_p, ht->rec_size - SIZEOF_LY_HT_REC);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200386 if (match_p) {
387 *match_p = (void *)&rec->val;
388 }
389
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200390 /* check size & enlarge if needed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200391 ++ht->used;
392 if (ht->resize) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100393 r = (ht->used * LYHT_HUNDRED_PERCENTAGE) / ht->size;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200394 if ((ht->resize == 1) && (r >= LYHT_FIRST_SHRINK_PERCENTAGE)) {
395 /* enable shrinking */
396 ht->resize = 2;
397 }
398 if ((ht->resize == 2) && (r >= LYHT_ENLARGE_PERCENTAGE)) {
399 if (resize_val_equal) {
400 old_val_equal = lyht_set_cb(ht, resize_val_equal);
401 }
402
403 /* enlarge */
Olivier Matz6ad93d92023-09-28 12:13:36 +0200404 ret = lyht_resize(ht, 1, check);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200405 /* if hash_table was resized, we need to find new matching value */
Michal Vasko69730152020-10-09 16:30:07 +0200406 if ((ret == LY_SUCCESS) && match_p) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200407 lyht_find(ht, val_p, hash, match_p);
408 }
409
410 if (resize_val_equal) {
411 lyht_set_cb(ht, old_val_equal);
412 }
413 }
414 }
415 return ret;
416}
417
Michal Vaskoae130f52023-04-20 14:25:16 +0200418LIBYANG_API_DEF LY_ERR
Olivier Matz75c00192023-09-21 14:35:12 +0200419lyht_insert_with_resize_cb(struct ly_ht *ht, void *val_p, uint32_t hash, lyht_value_equal_cb resize_val_equal,
420 void **match_p)
421{
Olivier Matz6ad93d92023-09-28 12:13:36 +0200422 return __lyht_insert_with_resize_cb(ht, val_p, hash, resize_val_equal, match_p, 1);
Olivier Matz75c00192023-09-21 14:35:12 +0200423}
424
425LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200426lyht_insert(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200427{
Olivier Matz6ad93d92023-09-28 12:13:36 +0200428 return __lyht_insert_with_resize_cb(ht, val_p, hash, NULL, match_p, 1);
429}
430
431LIBYANG_API_DEF LY_ERR
432lyht_insert_no_check(struct ly_ht *ht, void *val_p, uint32_t hash, void **match_p)
433{
434 return __lyht_insert_with_resize_cb(ht, val_p, hash, NULL, match_p, 0);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200435}
436
Michal Vaskoae130f52023-04-20 14:25:16 +0200437LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200438lyht_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 +0200439{
Olivier Matz75c00192023-09-21 14:35:12 +0200440 struct ly_ht_rec *found_rec, *prev_rec, *rec;
441 uint32_t hlist_idx = hash & (ht->size - 1);
Radek Krejci1deb5be2020-08-26 16:43:36 +0200442 LY_ERR r, ret = LY_SUCCESS;
stewegd8e2fc92023-05-31 09:52:56 +0200443 lyht_value_equal_cb old_val_equal = NULL;
Olivier Matz75c00192023-09-21 14:35:12 +0200444 uint32_t prev_rec_idx;
445 uint32_t rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200446
Olivier Matz75c00192023-09-21 14:35:12 +0200447 LY_CHECK_ERR_RET(lyht_find_rec(ht, val_p, hash, 1, NULL, NULL, &found_rec),
Olivier Matzc0feb682023-09-21 08:53:59 +0200448 LOGARG(NULL, hash), LY_ENOTFOUND); /* hash not found */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200449
Olivier Matz75c00192023-09-21 14:35:12 +0200450 prev_rec_idx = LYHT_NO_RECORD;
451 LYHT_ITER_HLIST_RECS(ht, hlist_idx, rec_idx, rec) {
Olivier Matzc0feb682023-09-21 08:53:59 +0200452 if (rec == found_rec) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200453 break;
Olivier Matzc0feb682023-09-21 08:53:59 +0200454 }
Olivier Matz75c00192023-09-21 14:35:12 +0200455 prev_rec_idx = rec_idx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200456 }
457
Olivier Matz75c00192023-09-21 14:35:12 +0200458 if (prev_rec_idx == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200459 ht->hlists[hlist_idx].first = rec->next;
Olivier Matzc0feb682023-09-21 08:53:59 +0200460 if (rec->next == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200461 ht->hlists[hlist_idx].last = LYHT_NO_RECORD;
Olivier Matzc0feb682023-09-21 08:53:59 +0200462 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200463 } else {
Olivier Matz75c00192023-09-21 14:35:12 +0200464 prev_rec = lyht_get_rec(ht->recs, ht->rec_size, prev_rec_idx);
465 prev_rec->next = rec->next;
Olivier Matzc0feb682023-09-21 08:53:59 +0200466 if (rec->next == LYHT_NO_RECORD) {
Olivier Matz6a669c12023-09-28 12:07:12 +0200467 ht->hlists[hlist_idx].last = prev_rec_idx;
Olivier Matzc0feb682023-09-21 08:53:59 +0200468 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200469 }
470
Olivier Matz75c00192023-09-21 14:35:12 +0200471 rec->next = ht->first_free_rec;
472 ht->first_free_rec = rec_idx;
473
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200474 /* check size & shrink if needed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200475 --ht->used;
476 if (ht->resize == 2) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100477 r = (ht->used * LYHT_HUNDRED_PERCENTAGE) / ht->size;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200478 if ((r < LYHT_SHRINK_PERCENTAGE) && (ht->size > LYHT_MIN_SIZE)) {
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200479 if (resize_val_equal) {
480 old_val_equal = lyht_set_cb(ht, resize_val_equal);
481 }
482
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200483 /* shrink */
Olivier Matz6ad93d92023-09-28 12:13:36 +0200484 ret = lyht_resize(ht, -1, 1);
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200485
486 if (resize_val_equal) {
487 lyht_set_cb(ht, old_val_equal);
488 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200489 }
490 }
491
492 return ret;
493}
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200494
Michal Vaskoae130f52023-04-20 14:25:16 +0200495LIBYANG_API_DEF LY_ERR
Michal Vasko8efac242023-03-30 08:24:56 +0200496lyht_remove(struct ly_ht *ht, void *val_p, uint32_t hash)
Michal Vasko5bcc33b2020-10-06 15:33:44 +0200497{
498 return lyht_remove_with_resize_cb(ht, val_p, hash, NULL);
499}
Michal Vasko626196f2022-08-05 12:49:52 +0200500
Michal Vaskoae130f52023-04-20 14:25:16 +0200501LIBYANG_API_DEF uint32_t
Michal Vasko626196f2022-08-05 12:49:52 +0200502lyht_get_fixed_size(uint32_t item_count)
503{
Olivier Matzc0feb682023-09-21 08:53:59 +0200504 if (item_count == 0) {
Olivier Matz75c00192023-09-21 14:35:12 +0200505 return 1;
Olivier Matzc0feb682023-09-21 08:53:59 +0200506 }
Michal Vasko626196f2022-08-05 12:49:52 +0200507
Olivier Matz75c00192023-09-21 14:35:12 +0200508 /* return next power of 2 (greater or equal) */
509 item_count--;
510 item_count |= item_count >> 1;
511 item_count |= item_count >> 2;
512 item_count |= item_count >> 4;
513 item_count |= item_count >> 8;
514 item_count |= item_count >> 16;
Michal Vasko626196f2022-08-05 12:49:52 +0200515
Olivier Matz75c00192023-09-21 14:35:12 +0200516 return item_count + 1;
Michal Vasko626196f2022-08-05 12:49:52 +0200517}