Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / lib / hmap.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef HMAP_H
18 #define HMAP_H 1
19
20 #include <stdbool.h>
21 #include <stdlib.h>
22 #include "ovs-atomic.h"
23 #include "util.h"
24
25 #ifdef  __cplusplus
26 extern "C" {
27 #endif
28
29 /* A hash map node, to be embedded inside the data structure being mapped. */
30 struct hmap_node {
31     size_t hash;                /* Hash value. */
32     struct hmap_node *next;     /* Next in linked list. */
33 };
34
35 /* Returns the hash value embedded in 'node'. */
36 static inline size_t hmap_node_hash(const struct hmap_node *node)
37 {
38     return node->hash;
39 }
40
41 #define HMAP_NODE_NULL ((struct hmap_node *) 1)
42 #define HMAP_NODE_NULL_INITIALIZER { 0, HMAP_NODE_NULL }
43
44 /* Returns true if 'node' has been set to null by hmap_node_nullify() and has
45  * not been un-nullified by being inserted into an hmap. */
46 static inline bool
47 hmap_node_is_null(const struct hmap_node *node)
48 {
49     return node->next == HMAP_NODE_NULL;
50 }
51
52 /* Marks 'node' with a distinctive value that can be tested with
53  * hmap_node_is_null().  */
54 static inline void
55 hmap_node_nullify(struct hmap_node *node)
56 {
57     node->next = HMAP_NODE_NULL;
58 }
59
60 /* A hash map. */
61 struct hmap {
62     struct hmap_node **buckets; /* Must point to 'one' iff 'mask' == 0. */
63     struct hmap_node *one;
64     size_t mask;
65     size_t n;
66 };
67
68 /* Initializer for an empty hash map. */
69 #define HMAP_INITIALIZER(HMAP) \
70     { (struct hmap_node **const) &(HMAP)->one, NULL, 0, 0 }
71
72 /* Initialization. */
73 void hmap_init(struct hmap *);
74 void hmap_destroy(struct hmap *);
75 void hmap_clear(struct hmap *);
76 void hmap_swap(struct hmap *a, struct hmap *b);
77 void hmap_moved(struct hmap *hmap);
78 static inline size_t hmap_count(const struct hmap *);
79 static inline bool hmap_is_empty(const struct hmap *);
80
81 /* Adjusting capacity. */
82 void hmap_expand_at(struct hmap *, const char *where);
83 #define hmap_expand(HMAP) hmap_expand_at(HMAP, SOURCE_LOCATOR)
84
85 void hmap_shrink_at(struct hmap *, const char *where);
86 #define hmap_shrink(HMAP) hmap_shrink_at(HMAP, SOURCE_LOCATOR)
87
88 void hmap_reserve_at(struct hmap *, size_t capacity, const char *where);
89 #define hmap_reserve(HMAP, CAPACITY) \
90     hmap_reserve_at(HMAP, CAPACITY, SOURCE_LOCATOR)
91
92 /* Insertion and deletion. */
93 static inline void hmap_insert_at(struct hmap *, struct hmap_node *,
94                                   size_t hash, const char *where);
95 #define hmap_insert(HMAP, NODE, HASH) \
96     hmap_insert_at(HMAP, NODE, HASH, SOURCE_LOCATOR)
97
98 static inline void hmap_insert_fast(struct hmap *,
99                                     struct hmap_node *, size_t hash);
100 static inline void hmap_remove(struct hmap *, struct hmap_node *);
101
102 void hmap_node_moved(struct hmap *, struct hmap_node *, struct hmap_node *);
103 static inline void hmap_replace(struct hmap *, const struct hmap_node *old,
104                                 struct hmap_node *new_node);
105
106 struct hmap_node *hmap_random_node(const struct hmap *);
107
108 /* Search.
109  *
110  * HMAP_FOR_EACH_WITH_HASH iterates NODE over all of the nodes in HMAP that
111  * have hash value equal to HASH.  HMAP_FOR_EACH_IN_BUCKET iterates NODE over
112  * all of the nodes in HMAP that would fall in the same bucket as HASH.  MEMBER
113  * must be the name of the 'struct hmap_node' member within NODE.
114  *
115  * These macros may be used interchangeably to search for a particular value in
116  * an hmap, see, e.g. shash_find() for an example.  Usually, using
117  * HMAP_FOR_EACH_WITH_HASH provides an optimization, because comparing a hash
118  * value is usually cheaper than comparing an entire hash map key.  But for
119  * simple hash map keys, it makes sense to use HMAP_FOR_EACH_IN_BUCKET because
120  * it avoids doing two comparisons when a single simple comparison suffices.
121  *
122  * The loop should not change NODE to point to a different node or insert or
123  * delete nodes in HMAP (unless it "break"s out of the loop to terminate
124  * iteration).
125  *
126  * HASH is only evaluated once.
127  */
128 #define HMAP_FOR_EACH_WITH_HASH(NODE, MEMBER, HASH, HMAP)               \
129     for (ASSIGN_CONTAINER(NODE, hmap_first_with_hash(HMAP, HASH), MEMBER); \
130          NODE != OBJECT_CONTAINING(NULL, NODE, MEMBER);                  \
131          ASSIGN_CONTAINER(NODE, hmap_next_with_hash(&(NODE)->MEMBER),   \
132                           MEMBER))
133 #define HMAP_FOR_EACH_IN_BUCKET(NODE, MEMBER, HASH, HMAP)               \
134     for (ASSIGN_CONTAINER(NODE, hmap_first_in_bucket(HMAP, HASH), MEMBER); \
135          NODE != OBJECT_CONTAINING(NULL, NODE, MEMBER);                  \
136          ASSIGN_CONTAINER(NODE, hmap_next_in_bucket(&(NODE)->MEMBER), MEMBER))
137
138 static inline struct hmap_node *hmap_first_with_hash(const struct hmap *,
139                                                      size_t hash);
140 static inline struct hmap_node *hmap_next_with_hash(const struct hmap_node *);
141 static inline struct hmap_node *hmap_first_in_bucket(const struct hmap *,
142                                                      size_t hash);
143 static inline struct hmap_node *hmap_next_in_bucket(const struct hmap_node *);
144
145 bool hmap_contains(const struct hmap *, const struct hmap_node *);
146
147 /* Iteration. */
148
149 /* Iterates through every node in HMAP. */
150 #define HMAP_FOR_EACH(NODE, MEMBER, HMAP)                               \
151     for (ASSIGN_CONTAINER(NODE, hmap_first(HMAP), MEMBER);              \
152          NODE != OBJECT_CONTAINING(NULL, NODE, MEMBER);                  \
153          ASSIGN_CONTAINER(NODE, hmap_next(HMAP, &(NODE)->MEMBER), MEMBER))
154
155 /* Safe when NODE may be freed (not needed when NODE may be removed from the
156  * hash map but its members remain accessible and intact). */
157 #define HMAP_FOR_EACH_SAFE(NODE, NEXT, MEMBER, HMAP)                    \
158     for (ASSIGN_CONTAINER(NODE, hmap_first(HMAP), MEMBER);              \
159          (NODE != OBJECT_CONTAINING(NULL, NODE, MEMBER)                  \
160           ? ASSIGN_CONTAINER(NEXT, hmap_next(HMAP, &(NODE)->MEMBER), MEMBER), 1 \
161           : 0);                                                         \
162          (NODE) = (NEXT))
163
164 /* Continues an iteration from just after NODE. */
165 #define HMAP_FOR_EACH_CONTINUE(NODE, MEMBER, HMAP)                      \
166     for (ASSIGN_CONTAINER(NODE, hmap_next(HMAP, &(NODE)->MEMBER), MEMBER); \
167          NODE != OBJECT_CONTAINING(NULL, NODE, MEMBER);                  \
168          ASSIGN_CONTAINER(NODE, hmap_next(HMAP, &(NODE)->MEMBER), MEMBER))
169
170 static inline struct hmap_node *hmap_first(const struct hmap *);
171 static inline struct hmap_node *hmap_next(const struct hmap *,
172                                           const struct hmap_node *);
173
174 struct hmap_node *hmap_at_position(const struct hmap *,
175                                    uint32_t *bucket, uint32_t *offset);
176
177 /* Returns the number of nodes currently in 'hmap'. */
178 static inline size_t
179 hmap_count(const struct hmap *hmap)
180 {
181     return hmap->n;
182 }
183
184 /* Returns the maximum number of nodes that 'hmap' may hold before it should be
185  * rehashed. */
186 static inline size_t
187 hmap_capacity(const struct hmap *hmap)
188 {
189     return hmap->mask * 2 + 1;
190 }
191
192 /* Returns true if 'hmap' currently contains no nodes,
193  * false otherwise.
194  * Note: While hmap in general is not thread-safe without additional locking,
195  * hmap_is_empty() is. */
196 static inline bool
197 hmap_is_empty(const struct hmap *hmap)
198 {
199     return hmap->n == 0;
200 }
201
202 /* Inserts 'node', with the given 'hash', into 'hmap'.  'hmap' is never
203  * expanded automatically. */
204 static inline void
205 hmap_insert_fast(struct hmap *hmap, struct hmap_node *node, size_t hash)
206 {
207     struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
208     node->hash = hash;
209     node->next = *bucket;
210     *bucket = node;
211     hmap->n++;
212 }
213
214 /* Inserts 'node', with the given 'hash', into 'hmap', and expands 'hmap' if
215  * necessary to optimize search performance.
216  *
217  * ('where' is used in debug logging.  Commonly one would use hmap_insert() to
218  * automatically provide the caller's source file and line number for
219  * 'where'.) */
220 static inline void
221 hmap_insert_at(struct hmap *hmap, struct hmap_node *node, size_t hash,
222                const char *where)
223 {
224     hmap_insert_fast(hmap, node, hash);
225     if (hmap->n / 2 > hmap->mask) {
226         hmap_expand_at(hmap, where);
227     }
228 }
229
230 /* Removes 'node' from 'hmap'.  Does not shrink the hash table; call
231  * hmap_shrink() directly if desired. */
232 static inline void
233 hmap_remove(struct hmap *hmap, struct hmap_node *node)
234 {
235     struct hmap_node **bucket = &hmap->buckets[node->hash & hmap->mask];
236     while (*bucket != node) {
237         bucket = &(*bucket)->next;
238     }
239     *bucket = node->next;
240     hmap->n--;
241 }
242
243 /* Puts 'new_node' in the position in 'hmap' currently occupied by 'old_node'.
244  * The 'new_node' must hash to the same value as 'old_node'.  The client is
245  * responsible for ensuring that the replacement does not violate any
246  * client-imposed invariants (e.g. uniqueness of keys within a map).
247  *
248  * Afterward, 'old_node' is not part of 'hmap', and the client is responsible
249  * for freeing it (if this is desirable). */
250 static inline void
251 hmap_replace(struct hmap *hmap,
252              const struct hmap_node *old_node, struct hmap_node *new_node)
253 {
254     struct hmap_node **bucket = &hmap->buckets[old_node->hash & hmap->mask];
255     while (*bucket != old_node) {
256         bucket = &(*bucket)->next;
257     }
258     *bucket = new_node;
259     new_node->hash = old_node->hash;
260     new_node->next = old_node->next;
261 }
262
263 static inline struct hmap_node *
264 hmap_next_with_hash__(const struct hmap_node *node, size_t hash)
265 {
266     while (node != NULL && node->hash != hash) {
267         node = node->next;
268     }
269     return CONST_CAST(struct hmap_node *, node);
270 }
271
272 /* Returns the first node in 'hmap' with the given 'hash', or a null pointer if
273  * no nodes have that hash value. */
274 static inline struct hmap_node *
275 hmap_first_with_hash(const struct hmap *hmap, size_t hash)
276 {
277     return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
278 }
279
280 /* Returns the first node in 'hmap' in the bucket in which the given 'hash'
281  * would land, or a null pointer if that bucket is empty. */
282 static inline struct hmap_node *
283 hmap_first_in_bucket(const struct hmap *hmap, size_t hash)
284 {
285     return hmap->buckets[hash & hmap->mask];
286 }
287
288 /* Returns the next node in the same bucket as 'node', or a null pointer if
289  * there are no more nodes in that bucket.
290  *
291  * If the hash map has been reallocated since 'node' was visited, some nodes
292  * may be skipped; if new nodes with the same hash value have been added, they
293  * will be skipped.  (Removing 'node' from the hash map does not prevent
294  * calling this function, since node->next is preserved, although freeing
295  * 'node' of course does.) */
296 static inline struct hmap_node *
297 hmap_next_in_bucket(const struct hmap_node *node)
298 {
299     return node->next;
300 }
301
302 /* Returns the next node in the same hash map as 'node' with the same hash
303  * value, or a null pointer if no more nodes have that hash value.
304  *
305  * If the hash map has been reallocated since 'node' was visited, some nodes
306  * may be skipped; if new nodes with the same hash value have been added, they
307  * will be skipped.  (Removing 'node' from the hash map does not prevent
308  * calling this function, since node->next is preserved, although freeing
309  * 'node' of course does.) */
310 static inline struct hmap_node *
311 hmap_next_with_hash(const struct hmap_node *node)
312 {
313     return hmap_next_with_hash__(node->next, node->hash);
314 }
315
316 static inline struct hmap_node *
317 hmap_next__(const struct hmap *hmap, size_t start)
318 {
319     size_t i;
320     for (i = start; i <= hmap->mask; i++) {
321         struct hmap_node *node = hmap->buckets[i];
322         if (node) {
323             return node;
324         }
325     }
326     return NULL;
327 }
328
329 /* Returns the first node in 'hmap', in arbitrary order, or a null pointer if
330  * 'hmap' is empty. */
331 static inline struct hmap_node *
332 hmap_first(const struct hmap *hmap)
333 {
334     return hmap_next__(hmap, 0);
335 }
336
337 /* Returns the next node in 'hmap' following 'node', in arbitrary order, or a
338  * null pointer if 'node' is the last node in 'hmap'.
339  *
340  * If the hash map has been reallocated since 'node' was visited, some nodes
341  * may be skipped or visited twice.  (Removing 'node' from the hash map does
342  * not prevent calling this function, since node->next is preserved, although
343  * freeing 'node' of course does.) */
344 static inline struct hmap_node *
345 hmap_next(const struct hmap *hmap, const struct hmap_node *node)
346 {
347     return (node->next
348             ? node->next
349             : hmap_next__(hmap, (node->hash & hmap->mask) + 1));
350 }
351
352 #ifdef  __cplusplus
353 }
354 #endif
355
356 #endif /* hmap.h */