X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fshash.c;h=1cf7d6e1631b9300637f0c74ebfbc61e0f6f3f50;hb=51f4701be1545a3faa288dfe3993221a6a2fd81c;hp=cc45efb5c8a29b906ac24bcaa4a975451821d829;hpb=4f2226487d3522654876885d769510b835c5f5ee;p=openvswitch diff --git a/lib/shash.c b/lib/shash.c index cc45efb5..1cf7d6e1 100644 --- a/lib/shash.c +++ b/lib/shash.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Nicira Networks. + * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,7 +20,8 @@ #include "hash.h" static struct shash_node *shash_find__(const struct shash *, - const char *name, size_t hash); + const char *name, size_t name_len, + size_t hash); static size_t hash_name(const char *name) @@ -108,7 +109,7 @@ shash_add_nocopy__(struct shash *sh, char *name, const void *data, size_t hash) { struct shash_node *node = xmalloc(sizeof *node); node->name = name; - node->data = (void *) data; + node->data = CONST_CAST(void *, data); hmap_insert(&sh->map, &node->node, hash); return node; } @@ -156,13 +157,13 @@ 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); + node = shash_find__(sh, name, strlen(name), hash); if (!node) { shash_add_nocopy__(sh, xstrdup(name), data, hash); return NULL; } else { void *old_data = node->data; - node->data = (void *) data; + node->data = CONST_CAST(void *, data); return old_data; } } @@ -189,12 +190,13 @@ shash_steal(struct shash *sh, struct shash_node *node) } static struct shash_node * -shash_find__(const struct shash *sh, const char *name, size_t hash) +shash_find__(const struct shash *sh, const char *name, size_t name_len, + size_t hash) { struct shash_node *node; - HMAP_FOR_EACH_WITH_HASH (node, struct shash_node, node, hash, &sh->map) { - if (!strcmp(node->name, name)) { + HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) { + if (!strncmp(node->name, name, name_len) && !node->name[name_len]) { return node; } } @@ -205,7 +207,15 @@ shash_find__(const struct shash *sh, const char *name, size_t hash) struct shash_node * shash_find(const struct shash *sh, const char *name) { - return shash_find__(sh, name, hash_name(name)); + return shash_find__(sh, name, strlen(name), hash_name(name)); +} + +/* Finds and returns a shash_node within 'sh' that has the given 'name' that is + * exactly 'len' bytes long. Returns NULL if no node in 'sh' has that name. */ +struct shash_node * +shash_find_len(const struct shash *sh, const char *name, size_t len) +{ + return shash_find__(sh, name, len, hash_bytes(name, len, 0)); } void *