]> git.proxmox.com Git - mirror_frr.git/blame - lib/hash.h
lib: Add int encoder/decoder
[mirror_frr.git] / lib / hash.h
CommitLineData
718e3744 1/* Hash routine.
896014f4
DL
2 * Copyright (C) 1998 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published
8 * by the Free Software Foundation; either version 2, or (at your
9 * option) any later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
718e3744 20
21#ifndef _ZEBRA_HASH_H
22#define _ZEBRA_HASH_H
23
4a1ab8e4 24#include "memory.h"
6f6f0010 25#include "frratomic.h"
4a1ab8e4 26
5e244469
RW
27#ifdef __cplusplus
28extern "C" {
29#endif
30
d62a17ae 31/* Default hash table size. */
bed7ad83
QY
32#define HASH_INITIAL_SIZE 256
33/* Expansion threshold */
34#define HASH_THRESHOLD(used, size) ((used) > (size))
718e3744 35
3f9c7369
DS
36#define HASHWALK_CONTINUE 0
37#define HASHWALK_ABORT -1
38
e3b78da8 39struct hash_bucket {
6fd8c487 40 /*
e3b78da8 41 * if this bucket is the head of the linked listed, len denotes the
6fd8c487
QY
42 * number of elements in the list
43 */
d62a17ae 44 int len;
6f6f0010 45
d62a17ae 46 /* Linked list. */
e3b78da8 47 struct hash_bucket *next;
718e3744 48
d62a17ae 49 /* Hash key. */
50 unsigned int key;
718e3744 51
d62a17ae 52 /* Data. */
53 void *data;
718e3744 54};
55
d62a17ae 56struct hashstats {
57 /* number of empty hash buckets */
c8a65463 58 atomic_uint_fast32_t empty;
d62a17ae 59 /* sum of squares of bucket length */
c8a65463 60 atomic_uint_fast32_t ssq;
6f6f0010
QY
61};
62
d62a17ae 63struct hash {
e3b78da8
TB
64 /* Hash bucket. */
65 struct hash_bucket **index;
718e3744 66
d62a17ae 67 /* Hash table size. Must be power of 2 */
68 unsigned int size;
718e3744 69
40520c36
DW
70 /* If max_size is 0 there is no limit */
71 unsigned int max_size;
72
d62a17ae 73 /* Key make function. */
d8b87afe 74 unsigned int (*hash_key)(const void *);
718e3744 75
d62a17ae 76 /* Data compare function. */
74df8d6d 77 bool (*hash_cmp)(const void *, const void *);
718e3744 78
1ac88792 79 /* Bucket alloc. */
d62a17ae 80 unsigned long count;
4db0cff1 81
d62a17ae 82 struct hashstats stats;
6f6f0010 83
d62a17ae 84 /* hash name */
85 char *name;
718e3744 86};
87
8234a987 88#define hashcount(X) ((X)->count)
89
6fd8c487
QY
90/*
91 * Create a hash table.
92 *
93 * The created hash table uses chaining and a user-provided comparator function
94 * to resolve collisions. For best performance use a perfect hash function.
95 * Worst case lookup time is O(N) when using a constant hash function. Best
96 * case lookup time is O(1) when using a perfect hash function.
97 *
98 * The initial size of the created hash table is HASH_INITIAL_SIZE.
99 *
100 * hash_key
101 * hash function to use; should return a unique unsigned integer when called
102 * with a data item. Collisions are acceptable.
103 *
104 * hash_cmp
105 * comparison function used for resolving collisions; when called with two
c8aad9c3 106 * data items, should return true if the two items are equal and false
6fd8c487
QY
107 * otherwise
108 *
109 * name
110 * optional name for the hashtable; this is used when displaying global
111 * hashtable statistics. If this parameter is NULL the hash's name will be
112 * set to NULL and the default name will be displayed when showing
113 * statistics.
114 *
115 * Returns:
116 * a new hash table
117 */
d8b87afe 118extern struct hash *hash_create(unsigned int (*hash_key)(const void *),
74df8d6d 119 bool (*hash_cmp)(const void *, const void *),
6fd8c487
QY
120 const char *name);
121
122/*
123 * Create a hash table.
124 *
125 * The created hash table uses chaining and a user-provided comparator function
126 * to resolve collisions. For best performance use a perfect hash function.
127 * Worst case lookup time is O(N) when using a constant hash function. Best
128 * case lookup time is O(1) when using a perfect hash function.
129 *
130 * size
131 * initial number of hash buckets to allocate; must be a power of 2 or the
132 * program will assert
133 *
134 * hash_key
135 * hash function to use; should return a unique unsigned integer when called
136 * with a data item. Collisions are acceptable.
137 *
138 * hash_cmp
139 * comparison function used for resolving collisions; when called with two
be268ed6 140 * data items, should return true if the two items are equal and false
6fd8c487
QY
141 * otherwise
142 *
143 * name
144 * optional name for the hashtable; this is used when displaying global
145 * hashtable statistics. If this parameter is NULL the hash's name will be
146 * set to NULL and the default name will be displayed when showing
147 * statistics.
148 *
149 * Returns:
150 * a new hash table
151 */
152extern struct hash *
d8b87afe 153hash_create_size(unsigned int size, unsigned int (*hash_key)(const void *),
74df8d6d
DS
154 bool (*hash_cmp)(const void *, const void *),
155 const char *name);
6fd8c487
QY
156
157/*
158 * Retrieve or insert data from / into a hash table.
159 *
160 * This function is somewhat counterintuitive in its usage. In order to look up
161 * an element from its key, you must provide the data item itself, with the
162 * portions used in the hash function set to the same values as the data item
163 * to retrieve. To insert a data element, either provide the key as just
164 * described and provide alloc_func as descrbied below to allocate the full
165 * data element, or provide the full data element and pass 'hash_alloc_intern'
166 * to alloc_func.
167 *
168 * hash
169 * hash table to operate on
170 *
171 * data
e3b78da8 172 * data to insert or retrieve - A hash bucket will not be created if
d3ce24ef 173 * the alloc_func returns a NULL pointer and nothing will be added to
e3b78da8 174 * the hash. As such bucket->data will always be non-NULL.
6fd8c487
QY
175 *
176 * alloc_func
177 * function to call if the item is not found in the hash table. This
178 * function is called with the value of 'data' and should create the data
179 * item to insert and return a pointer to it. If the data has already been
180 * completely created and provided in the 'data' parameter, passing
181 * 'hash_alloc_intern' to this parameter will cause 'data' to be inserted.
182 * If this parameter is NULL, then this call to hash_get is equivalent to
183 * hash_lookup.
184 *
185 * Returns:
186 * the data item found or inserted, or NULL if alloc_func is NULL and the
187 * data is not found
188 */
189extern void *hash_get(struct hash *hash, void *data,
190 void *(*alloc_func)(void *));
191
192/*
193 * Dummy element allocation function.
194 *
195 * See hash_get for details.
196 *
197 * data
198 * data to insert into the hash table
199 *
200 * Returns:
201 * data
202 */
203extern void *hash_alloc_intern(void *data);
204
205/*
206 * Retrieve an item from a hash table.
207 *
208 * This function is equivalent to calling hash_get with alloc_func set to NULL.
209 *
210 * hash
211 * hash table to operate on
212 *
213 * data
214 * data element with values used for key computation set
215 *
216 * Returns:
217 * the data element if found, or NULL if not found
218 */
219extern void *hash_lookup(struct hash *hash, void *data);
718e3744 220
6fd8c487
QY
221/*
222 * Remove an element from a hash table.
223 *
224 * hash
225 * hash table to operate on
226 *
227 * data
228 * data element to remove with values used for key computation set
229 *
230 * Returns:
231 * the removed element if found, or NULL if not found
232 */
233extern void *hash_release(struct hash *hash, void *data);
718e3744 234
6fd8c487
QY
235/*
236 * Iterate over the elements in a hash table.
237 *
238 * It is safe to delete items passed to the iteration function from the hash
3509dd49
SW
239 * table during iteration. More than one item cannot be deleted during each
240 * iteration. Please note that adding entries to the hash
8b52179d
DS
241 * during the walk will cause undefined behavior in that some new entries
242 * will be walked and some will not. So do not do this.
6fd8c487 243 *
e3b78da8 244 * The bucket passed to func will have a non-NULL data pointer.
d3ce24ef 245 *
6fd8c487
QY
246 * hash
247 * hash table to operate on
248 *
249 * func
250 * function to call with each data item
251 *
252 * arg
253 * arbitrary argument passed as the second parameter in each call to 'func'
254 */
255extern void hash_iterate(struct hash *hash,
e3b78da8 256 void (*func)(struct hash_bucket *, void *), void *arg);
718e3744 257
6fd8c487
QY
258/*
259 * Iterate over the elements in a hash table, stopping on condition.
260 *
261 * It is safe to delete items passed to the iteration function from the hash
8b52179d
DS
262 * table during iteration. Please note that adding entries to the hash
263 * during the walk will cause undefined behavior in that some new entries
264 * will be walked and some will not. So do not do this.
6fd8c487 265 *
e3b78da8 266 * The bucket passed to func will have a non-NULL data pointer.
d3ce24ef 267 *
6fd8c487
QY
268 * hash
269 * hash table to operate on
270 *
271 * func
272 * function to call with each data item. If this function returns
273 * HASHWALK_ABORT then the iteration stops.
274 *
275 * arg
276 * arbitrary argument passed as the second parameter in each call to 'func'
277 */
278extern void hash_walk(struct hash *hash,
e3b78da8 279 int (*func)(struct hash_bucket *, void *), void *arg);
3f9c7369 280
6fd8c487
QY
281/*
282 * Remove all elements from a hash table.
283 *
284 * hash
285 * hash table to operate on
286 *
287 * free_func
288 * function to call with each removed item; intended to free the data
289 */
290extern void hash_clean(struct hash *hash, void (*free_func)(void *));
291
292/*
293 * Delete a hash table.
294 *
295 * This function assumes the table is empty. Call hash_clean to delete the
296 * hashtable contents if necessary.
297 *
298 * hash
299 * hash table to delete
300 */
301extern void hash_free(struct hash *hash);
718e3744 302
91f10370
QY
303/*
304 * Converts a hash table to an unsorted linked list.
305 * Does not modify the hash table in any way.
306 *
307 * hash
6fd8c487 308 * hash table to convert
91f10370
QY
309 */
310extern struct list *hash_to_list(struct hash *hash);
311
6fd8c487
QY
312/*
313 * Hash a string using the modified Bernstein hash.
314 *
315 * This is not a perfect hash function.
316 *
317 * str
318 * string to hash
319 *
320 * Returns:
321 * modified Bernstein hash of the string
322 */
d62a17ae 323extern unsigned int string_hash_make(const char *);
6392aa83 324
6fd8c487
QY
325/*
326 * Install CLI commands for viewing global hash table statistics.
327 */
d62a17ae 328extern void hash_cmd_init(void);
4db0cff1 329
5e244469
RW
330#ifdef __cplusplus
331}
332#endif
333
718e3744 334#endif /* _ZEBRA_HASH_H */