X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fshash.c;h=1664baf62e55fd3833302fd120b326dc651a3568;hb=142181fcd734a2afff9fe13e54fe51c7a2c824d2;hp=e2b1fe2c723bb302423f84b01d8d9a68ab523b9e;hpb=1c6d8802c23c64a9439be43fa2064aca8083bfb2;p=openvswitch diff --git a/lib/shash.c b/lib/shash.c index e2b1fe2c..1664baf6 100644 --- a/lib/shash.c +++ b/lib/shash.c @@ -147,6 +147,26 @@ shash_add_assert(struct shash *sh, const char *name, const void *data) assert(added); } +/* Searches for 'name' in 'sh'. If it does not already exist, adds it along + * with 'data' and returns NULL. If it does already exist, replaces its data + * by 'data' and returns the data that it formerly contained. */ +void * +shash_replace(struct shash *sh, const char *name, const void *data) +{ + size_t hash = hash_name(name); + struct shash_node *node; + + node = shash_find__(sh, name, hash); + if (!node) { + shash_add_nocopy__(sh, xstrdup(name), data, hash); + return NULL; + } else { + void *old_data = node->data; + node->data = (void *) data; + return old_data; + } +} + void shash_delete(struct shash *sh, struct shash_node *node) {