]> git.proxmox.com Git - mirror_frr.git/blob - lib/hash.h
Merge pull request #2291 from qlyoung/top-cleanup
[mirror_frr.git] / lib / hash.h
1 /* Hash routine.
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 */
20
21 #ifndef _ZEBRA_HASH_H
22 #define _ZEBRA_HASH_H
23
24 #include "memory.h"
25 #include "frratomic.h"
26
27 DECLARE_MTYPE(HASH)
28 DECLARE_MTYPE(HASH_BACKET)
29
30 /* Default hash table size. */
31 #define HASH_INITIAL_SIZE 256
32 /* Expansion threshold */
33 #define HASH_THRESHOLD(used, size) ((used) > (size))
34
35 #define HASHWALK_CONTINUE 0
36 #define HASHWALK_ABORT -1
37
38 struct hash_backet {
39 /*
40 * if this backet is the head of the linked listed, len denotes the
41 * number of elements in the list
42 */
43 int len;
44
45 /* Linked list. */
46 struct hash_backet *next;
47
48 /* Hash key. */
49 unsigned int key;
50
51 /* Data. */
52 void *data;
53 };
54
55 struct hashstats {
56 /* number of empty hash buckets */
57 _Atomic uint_fast32_t empty;
58 /* sum of squares of bucket length */
59 _Atomic uint_fast32_t ssq;
60 };
61
62 struct hash {
63 /* Hash backet. */
64 struct hash_backet **index;
65
66 /* Hash table size. Must be power of 2 */
67 unsigned int size;
68
69 /* If max_size is 0 there is no limit */
70 unsigned int max_size;
71
72 /* Key make function. */
73 unsigned int (*hash_key)(void *);
74
75 /* Data compare function. */
76 int (*hash_cmp)(const void *, const void *);
77
78 /* Backet alloc. */
79 unsigned long count;
80
81 struct hashstats stats;
82
83 /* hash name */
84 char *name;
85 };
86
87 #define hashcount(X) ((X)->count)
88
89 /*
90 * Create a hash table.
91 *
92 * The created hash table uses chaining and a user-provided comparator function
93 * to resolve collisions. For best performance use a perfect hash function.
94 * Worst case lookup time is O(N) when using a constant hash function. Best
95 * case lookup time is O(1) when using a perfect hash function.
96 *
97 * The initial size of the created hash table is HASH_INITIAL_SIZE.
98 *
99 * hash_key
100 * hash function to use; should return a unique unsigned integer when called
101 * with a data item. Collisions are acceptable.
102 *
103 * hash_cmp
104 * comparison function used for resolving collisions; when called with two
105 * data items, should return nonzero if the two items are equal and 0
106 * otherwise
107 *
108 * name
109 * optional name for the hashtable; this is used when displaying global
110 * hashtable statistics. If this parameter is NULL the hash's name will be
111 * set to NULL and the default name will be displayed when showing
112 * statistics.
113 *
114 * Returns:
115 * a new hash table
116 */
117 extern struct hash *hash_create(unsigned int (*hash_key)(void *),
118 int (*hash_cmp)(const void *, const void *),
119 const char *name);
120
121 /*
122 * Create a hash table.
123 *
124 * The created hash table uses chaining and a user-provided comparator function
125 * to resolve collisions. For best performance use a perfect hash function.
126 * Worst case lookup time is O(N) when using a constant hash function. Best
127 * case lookup time is O(1) when using a perfect hash function.
128 *
129 * size
130 * initial number of hash buckets to allocate; must be a power of 2 or the
131 * program will assert
132 *
133 * hash_key
134 * hash function to use; should return a unique unsigned integer when called
135 * with a data item. Collisions are acceptable.
136 *
137 * hash_cmp
138 * comparison function used for resolving collisions; when called with two
139 * data items, should return nonzero if the two items are equal and 0
140 * otherwise
141 *
142 * name
143 * optional name for the hashtable; this is used when displaying global
144 * hashtable statistics. If this parameter is NULL the hash's name will be
145 * set to NULL and the default name will be displayed when showing
146 * statistics.
147 *
148 * Returns:
149 * a new hash table
150 */
151 extern struct hash *
152 hash_create_size(unsigned int size, unsigned int (*hash_key)(void *),
153 int (*hash_cmp)(const void *, const void *), const char *name);
154
155 /*
156 * Retrieve or insert data from / into a hash table.
157 *
158 * This function is somewhat counterintuitive in its usage. In order to look up
159 * an element from its key, you must provide the data item itself, with the
160 * portions used in the hash function set to the same values as the data item
161 * to retrieve. To insert a data element, either provide the key as just
162 * described and provide alloc_func as descrbied below to allocate the full
163 * data element, or provide the full data element and pass 'hash_alloc_intern'
164 * to alloc_func.
165 *
166 * hash
167 * hash table to operate on
168 *
169 * data
170 * data to insert or retrieve
171 *
172 * alloc_func
173 * function to call if the item is not found in the hash table. This
174 * function is called with the value of 'data' and should create the data
175 * item to insert and return a pointer to it. If the data has already been
176 * completely created and provided in the 'data' parameter, passing
177 * 'hash_alloc_intern' to this parameter will cause 'data' to be inserted.
178 * If this parameter is NULL, then this call to hash_get is equivalent to
179 * hash_lookup.
180 *
181 * Returns:
182 * the data item found or inserted, or NULL if alloc_func is NULL and the
183 * data is not found
184 */
185 extern void *hash_get(struct hash *hash, void *data,
186 void *(*alloc_func)(void *));
187
188 /*
189 * Dummy element allocation function.
190 *
191 * See hash_get for details.
192 *
193 * data
194 * data to insert into the hash table
195 *
196 * Returns:
197 * data
198 */
199 extern void *hash_alloc_intern(void *data);
200
201 /*
202 * Retrieve an item from a hash table.
203 *
204 * This function is equivalent to calling hash_get with alloc_func set to NULL.
205 *
206 * hash
207 * hash table to operate on
208 *
209 * data
210 * data element with values used for key computation set
211 *
212 * Returns:
213 * the data element if found, or NULL if not found
214 */
215 extern void *hash_lookup(struct hash *hash, void *data);
216
217 /*
218 * Remove an element from a hash table.
219 *
220 * hash
221 * hash table to operate on
222 *
223 * data
224 * data element to remove with values used for key computation set
225 *
226 * Returns:
227 * the removed element if found, or NULL if not found
228 */
229 extern void *hash_release(struct hash *hash, void *data);
230
231 /*
232 * Iterate over the elements in a hash table.
233 *
234 * It is safe to delete items passed to the iteration function from the hash
235 * table during iteration.
236 *
237 * hash
238 * hash table to operate on
239 *
240 * func
241 * function to call with each data item
242 *
243 * arg
244 * arbitrary argument passed as the second parameter in each call to 'func'
245 */
246 extern void hash_iterate(struct hash *hash,
247 void (*func)(struct hash_backet *, void *), void *arg);
248
249 /*
250 * Iterate over the elements in a hash table, stopping on condition.
251 *
252 * It is safe to delete items passed to the iteration function from the hash
253 * table during iteration.
254 *
255 * hash
256 * hash table to operate on
257 *
258 * func
259 * function to call with each data item. If this function returns
260 * HASHWALK_ABORT then the iteration stops.
261 *
262 * arg
263 * arbitrary argument passed as the second parameter in each call to 'func'
264 */
265 extern void hash_walk(struct hash *hash,
266 int (*func)(struct hash_backet *, void *), void *arg);
267
268 /*
269 * Remove all elements from a hash table.
270 *
271 * hash
272 * hash table to operate on
273 *
274 * free_func
275 * function to call with each removed item; intended to free the data
276 */
277 extern void hash_clean(struct hash *hash, void (*free_func)(void *));
278
279 /*
280 * Delete a hash table.
281 *
282 * This function assumes the table is empty. Call hash_clean to delete the
283 * hashtable contents if necessary.
284 *
285 * hash
286 * hash table to delete
287 */
288 extern void hash_free(struct hash *hash);
289
290 /*
291 * Converts a hash table to an unsorted linked list.
292 * Does not modify the hash table in any way.
293 *
294 * hash
295 * hash table to convert
296 */
297 extern struct list *hash_to_list(struct hash *hash);
298
299 /*
300 * Hash a string using the modified Bernstein hash.
301 *
302 * This is not a perfect hash function.
303 *
304 * str
305 * string to hash
306 *
307 * Returns:
308 * modified Bernstein hash of the string
309 */
310 extern unsigned int string_hash_make(const char *);
311
312 /*
313 * Install CLI commands for viewing global hash table statistics.
314 */
315 extern void hash_cmd_init(void);
316
317 #endif /* _ZEBRA_HASH_H */