X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fshash.c;h=5257de12aad4c4df7acb03809224e1e0bdd70e0c;hb=5e4641a147c3e450a56b199b9066f1af75c2f779;hp=f1785139d74f08bc7481d7fa4891da6b5d87295a;hpb=78299b0a6871a31c8b0cce5ef3f67ab465ab094f;p=openvswitch diff --git a/lib/shash.c b/lib/shash.c index f1785139..5257de12 100644 --- a/lib/shash.c +++ b/lib/shash.c @@ -36,6 +36,7 @@ shash_destroy(struct shash *sh) { if (sh) { shash_clear(sh); + hmap_destroy(&sh->map); } } @@ -44,7 +45,7 @@ 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); @@ -57,18 +58,35 @@ shash_is_empty(const struct shash *shash) return hmap_is_empty(&shash->map); } +size_t +shash_count(const struct shash *shash) +{ + return hmap_count(&shash->map); +} + /* It is the caller's responsibility to avoid duplicate names, if that is * desirable. */ struct shash_node * -shash_add(struct shash *sh, const char *name, void *data) +shash_add(struct shash *sh, const char *name, const void *data) { struct shash_node *node = xmalloc(sizeof *node); node->name = xstrdup(name); - node->data = data; + node->data = (void *) data; hmap_insert(&sh->map, &node->node, hash_name(name)); return node; } +bool +shash_add_once(struct shash *sh, const char *name, const void *data) +{ + if (!shash_find(sh, name)) { + shash_add(sh, name, data); + return true; + } else { + return false; + } +} + void shash_delete(struct shash *sh, struct shash_node *node) { @@ -99,6 +117,19 @@ shash_find_data(const struct shash *sh, const char *name) return node ? node->data : NULL; } +void * +shash_find_and_delete(struct shash *sh, const char *name) +{ + struct shash_node *node = shash_find(sh, name); + if (node) { + void *data = node->data; + shash_delete(sh, node); + return data; + } else { + return NULL; + } +} + struct shash_node * shash_first(const struct shash *shash) { @@ -106,3 +137,34 @@ shash_first(const struct shash *shash) return node ? CONTAINER_OF(node, struct shash_node, node) : NULL; } +static int +compare_nodes_by_name(const void *a_, const void *b_) +{ + const struct shash_node *const *a = a_; + const struct shash_node *const *b = b_; + return strcmp((*a)->name, (*b)->name); +} + +const struct shash_node ** +shash_sort(const struct shash *sh) +{ + if (shash_is_empty(sh)) { + return NULL; + } else { + const struct shash_node **nodes; + struct shash_node *node; + size_t i, n; + + n = shash_count(sh); + nodes = xmalloc(n * sizeof *nodes); + i = 0; + SHASH_FOR_EACH (node, sh) { + nodes[i++] = node; + } + assert(i == n); + + qsort(nodes, n, sizeof *nodes, compare_nodes_by_name); + + return nodes; + } +}