2 * Copyright (c) 2009, 2010 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 static struct shash_node *shash_find__(const struct shash *,
23 const char *name, size_t hash);
26 hash_name(const char *name)
28 return hash_string(name, 0);
32 shash_init(struct shash *sh)
38 shash_destroy(struct shash *sh)
42 hmap_destroy(&sh->map);
46 /* Like shash_destroy(), but also free() each node's 'data'. */
48 shash_destroy_free_data(struct shash *sh)
51 shash_clear_free_data(sh);
52 hmap_destroy(&sh->map);
57 shash_swap(struct shash *a, struct shash *b)
59 hmap_swap(&a->map, &b->map);
63 shash_moved(struct shash *sh)
69 shash_clear(struct shash *sh)
71 struct shash_node *node, *next;
73 SHASH_FOR_EACH_SAFE (node, next, sh) {
74 hmap_remove(&sh->map, &node->node);
80 /* Like shash_clear(), but also free() each node's 'data'. */
82 shash_clear_free_data(struct shash *sh)
84 struct shash_node *node, *next;
86 SHASH_FOR_EACH_SAFE (node, next, sh) {
87 hmap_remove(&sh->map, &node->node);
95 shash_is_empty(const struct shash *shash)
97 return hmap_is_empty(&shash->map);
101 shash_count(const struct shash *shash)
103 return hmap_count(&shash->map);
106 static struct shash_node *
107 shash_add_nocopy__(struct shash *sh, char *name, const void *data, size_t hash)
109 struct shash_node *node = xmalloc(sizeof *node);
111 node->data = (void *) data;
112 hmap_insert(&sh->map, &node->node, hash);
116 /* It is the caller's responsibility to avoid duplicate names, if that is
119 shash_add_nocopy(struct shash *sh, char *name, const void *data)
121 return shash_add_nocopy__(sh, name, data, hash_name(name));
124 /* It is the caller's responsibility to avoid duplicate names, if that is
127 shash_add(struct shash *sh, const char *name, const void *data)
129 return shash_add_nocopy(sh, xstrdup(name), data);
133 shash_add_once(struct shash *sh, const char *name, const void *data)
135 if (!shash_find(sh, name)) {
136 shash_add(sh, name, data);
144 shash_add_assert(struct shash *sh, const char *name, const void *data)
146 bool added OVS_UNUSED = shash_add_once(sh, name, data);
150 /* Searches for 'name' in 'sh'. If it does not already exist, adds it along
151 * with 'data' and returns NULL. If it does already exist, replaces its data
152 * by 'data' and returns the data that it formerly contained. */
154 shash_replace(struct shash *sh, const char *name, const void *data)
156 size_t hash = hash_name(name);
157 struct shash_node *node;
159 node = shash_find__(sh, name, hash);
161 shash_add_nocopy__(sh, xstrdup(name), data, hash);
164 void *old_data = node->data;
165 node->data = (void *) data;
170 /* Deletes 'node' from 'sh' and frees the node's name. The caller is still
171 * responsible for freeing the node's data, if necessary. */
173 shash_delete(struct shash *sh, struct shash_node *node)
175 free(shash_steal(sh, node));
178 /* Deletes 'node' from 'sh'. Neither the node's name nor its data is freed;
179 * instead, ownership is transferred to the caller. Returns the node's
182 shash_steal(struct shash *sh, struct shash_node *node)
184 char *name = node->name;
186 hmap_remove(&sh->map, &node->node);
191 static struct shash_node *
192 shash_find__(const struct shash *sh, const char *name, size_t hash)
194 struct shash_node *node;
196 HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) {
197 if (!strcmp(node->name, name)) {
204 /* If there are duplicates, returns a random element. */
206 shash_find(const struct shash *sh, const char *name)
208 return shash_find__(sh, name, hash_name(name));
212 shash_find_data(const struct shash *sh, const char *name)
214 struct shash_node *node = shash_find(sh, name);
215 return node ? node->data : NULL;
219 shash_find_and_delete(struct shash *sh, const char *name)
221 struct shash_node *node = shash_find(sh, name);
223 void *data = node->data;
224 shash_delete(sh, node);
232 shash_find_and_delete_assert(struct shash *sh, const char *name)
234 void *data = shash_find_and_delete(sh, name);
235 assert(data != NULL);
240 shash_first(const struct shash *shash)
242 struct hmap_node *node = hmap_first(&shash->map);
243 return node ? CONTAINER_OF(node, struct shash_node, node) : NULL;
247 compare_nodes_by_name(const void *a_, const void *b_)
249 const struct shash_node *const *a = a_;
250 const struct shash_node *const *b = b_;
251 return strcmp((*a)->name, (*b)->name);
254 const struct shash_node **
255 shash_sort(const struct shash *sh)
257 if (shash_is_empty(sh)) {
260 const struct shash_node **nodes;
261 struct shash_node *node;
265 nodes = xmalloc(n * sizeof *nodes);
267 SHASH_FOR_EACH (node, sh) {
272 qsort(nodes, n, sizeof *nodes, compare_nodes_by_name);
278 /* Returns true if 'a' and 'b' contain the same keys (regardless of their
279 * values), false otherwise. */
281 shash_equal_keys(const struct shash *a, const struct shash *b)
283 struct shash_node *node;
285 if (hmap_count(&a->map) != hmap_count(&b->map)) {
288 SHASH_FOR_EACH (node, a) {
289 if (!shash_find(b, node->name)) {
296 /* Chooses and returns a randomly selected node from 'sh', which must not be
299 * I wouldn't depend on this algorithm to be fair, since I haven't analyzed it.
300 * But it does at least ensure that any node in 'sh' can be chosen. */
302 shash_random_node(struct shash *sh)
304 return CONTAINER_OF(hmap_random_node(&sh->map), struct shash_node, node);
307 /* String-to-string maps (smaps). */
309 /* Frees 'smap', including its keys and string values. */
311 smap_destroy(struct shash *smap)
313 shash_destroy_free_data(smap);
316 /* Returns true if string-to-string maps 'a' and 'b' contain the same keys and
317 * values, false otherwise. */
319 smap_equal(const struct shash *a, const struct shash *b)
321 struct shash_node *a_node;
323 if (shash_count(a) != shash_count(b)) {
327 SHASH_FOR_EACH (a_node, a) {
328 uint32_t hash = a_node->node.hash;
329 struct shash_node *b_node = shash_find__(b, a_node->name, hash);
330 if (!b_node || strcmp(a_node->data, b_node->data)) {
338 /* Initializes 'dst' as a clone of 'src'. */
340 smap_clone(struct shash *dst, const struct shash *src)
342 struct shash_node *node;
345 SHASH_FOR_EACH (node, src) {
346 shash_add_nocopy__(dst, xstrdup(node->name), xstrdup(node->data),
351 /* Adds 'key' with string 'value' to 'smap', making a copy of each.
353 * It is the caller's responsibility to avoid duplicate names, if that is
356 smap_add(struct shash *smap, const char *key, const char *value)
358 shash_add(smap, key, xstrdup(value));