X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fshash.c;h=da33fe8b6fab4b994ffc2c0ee3793c56f171cf7c;hb=594624655524ccaa5a73d41b6cec163869bfab6d;hp=520e1892948c968ce0b3b0d80eca4ce622640d36;hpb=d855aeadfd46089ba26902ee31c8e0b3860c045b;p=sliver-openvswitch.git diff --git a/lib/shash.c b/lib/shash.c index 520e18929..da33fe8b6 100644 --- a/lib/shash.c +++ b/lib/shash.c @@ -45,22 +45,29 @@ shash_clear(struct shash *sh) { struct shash_node *node, *next; - HMAP_FOR_EACH_SAFE (node, next, struct shash_node, node, &sh->map) { + SHASH_FOR_EACH_SAFE (node, next, sh) { hmap_remove(&sh->map, &node->node); free(node->name); free(node); } } -/* It is the caller's responsible to avoid duplicate names, if that is +bool +shash_is_empty(const struct shash *shash) +{ + return hmap_is_empty(&shash->map); +} + +/* It is the caller's responsibility to avoid duplicate names, if that is * desirable. */ -void +struct shash_node * shash_add(struct shash *sh, const char *name, void *data) { struct shash_node *node = xmalloc(sizeof *node); node->name = xstrdup(name); node->data = data; hmap_insert(&sh->map, &node->node, hash_name(name)); + return node; } void @@ -92,3 +99,11 @@ shash_find_data(const struct shash *sh, const char *name) struct shash_node *node = shash_find(sh, name); return node ? node->data : NULL; } + +struct shash_node * +shash_first(const struct shash *shash) +{ + struct hmap_node *node = hmap_first(&shash->map); + return node ? CONTAINER_OF(node, struct shash_node, node) : NULL; +} +