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.
23 hash_name(const char *name)
25 return hash_string(name, 0);
29 shash_init(struct shash *sh)
35 shash_destroy(struct shash *sh)
39 hmap_destroy(&sh->map);
44 shash_swap(struct shash *a, struct shash *b)
46 hmap_swap(&a->map, &b->map);
50 shash_moved(struct shash *sh)
56 shash_clear(struct shash *sh)
58 struct shash_node *node, *next;
60 SHASH_FOR_EACH_SAFE (node, next, sh) {
61 hmap_remove(&sh->map, &node->node);
68 shash_is_empty(const struct shash *shash)
70 return hmap_is_empty(&shash->map);
74 shash_count(const struct shash *shash)
76 return hmap_count(&shash->map);
79 /* It is the caller's responsibility to avoid duplicate names, if that is
82 shash_add(struct shash *sh, const char *name, const void *data)
84 struct shash_node *node = xmalloc(sizeof *node);
85 node->name = xstrdup(name);
86 node->data = (void *) data;
87 hmap_insert(&sh->map, &node->node, hash_name(name));
92 shash_add_once(struct shash *sh, const char *name, const void *data)
94 if (!shash_find(sh, name)) {
95 shash_add(sh, name, data);
103 shash_add_assert(struct shash *sh, const char *name, const void *data)
105 bool added OVS_UNUSED = shash_add_once(sh, name, data);
110 shash_delete(struct shash *sh, struct shash_node *node)
112 hmap_remove(&sh->map, &node->node);
117 /* If there are duplicates, returns a random element. */
119 shash_find(const struct shash *sh, const char *name)
121 struct shash_node *node;
123 HMAP_FOR_EACH_WITH_HASH (node, struct shash_node, node,
124 hash_name(name), &sh->map) {
125 if (!strcmp(node->name, name)) {
133 shash_find_data(const struct shash *sh, const char *name)
135 struct shash_node *node = shash_find(sh, name);
136 return node ? node->data : NULL;
140 shash_find_and_delete(struct shash *sh, const char *name)
142 struct shash_node *node = shash_find(sh, name);
144 void *data = node->data;
145 shash_delete(sh, node);
153 shash_find_and_delete_assert(struct shash *sh, const char *name)
155 void *data = shash_find_and_delete(sh, name);
156 assert(data != NULL);
161 shash_first(const struct shash *shash)
163 struct hmap_node *node = hmap_first(&shash->map);
164 return node ? CONTAINER_OF(node, struct shash_node, node) : NULL;
168 compare_nodes_by_name(const void *a_, const void *b_)
170 const struct shash_node *const *a = a_;
171 const struct shash_node *const *b = b_;
172 return strcmp((*a)->name, (*b)->name);
175 const struct shash_node **
176 shash_sort(const struct shash *sh)
178 if (shash_is_empty(sh)) {
181 const struct shash_node **nodes;
182 struct shash_node *node;
186 nodes = xmalloc(n * sizeof *nodes);
188 SHASH_FOR_EACH (node, sh) {
193 qsort(nodes, n, sizeof *nodes, compare_nodes_by_name);
199 /* Returns true if 'a' and 'b' contain the same keys (regardless of their
200 * values), false otherwise. */
202 shash_equal_keys(const struct shash *a, const struct shash *b)
204 struct shash_node *node;
206 if (hmap_count(&a->map) != hmap_count(&b->map)) {
209 SHASH_FOR_EACH (node, a) {
210 if (!shash_find(b, node->name)) {