2009-07-08 13:19:16 -07:00
|
|
|
/*
|
2012-07-13 16:00:29 -07:00
|
|
|
* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2016-07-12 16:37:34 -05:00
|
|
|
#include "openvswitch/shash.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
#include "hash.h"
|
|
|
|
|
2010-06-30 13:22:28 -07:00
|
|
|
static struct shash_node *shash_find__(const struct shash *,
|
2011-11-17 09:57:40 -08:00
|
|
|
const char *name, size_t name_len,
|
|
|
|
size_t hash);
|
2010-06-30 13:22:28 -07:00
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
static size_t
|
|
|
|
hash_name(const char *name)
|
|
|
|
{
|
|
|
|
return hash_string(name, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
shash_init(struct shash *sh)
|
|
|
|
{
|
|
|
|
hmap_init(&sh->map);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
shash_destroy(struct shash *sh)
|
|
|
|
{
|
|
|
|
if (sh) {
|
|
|
|
shash_clear(sh);
|
2009-09-23 15:33:00 -07:00
|
|
|
hmap_destroy(&sh->map);
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-07 16:58:57 -07:00
|
|
|
/* Like shash_destroy(), but also free() each node's 'data'. */
|
|
|
|
void
|
|
|
|
shash_destroy_free_data(struct shash *sh)
|
|
|
|
{
|
|
|
|
if (sh) {
|
|
|
|
shash_clear_free_data(sh);
|
|
|
|
hmap_destroy(&sh->map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-19 10:40:36 -08:00
|
|
|
void
|
|
|
|
shash_swap(struct shash *a, struct shash *b)
|
|
|
|
{
|
|
|
|
hmap_swap(&a->map, &b->map);
|
|
|
|
}
|
|
|
|
|
2010-01-28 14:21:31 -08:00
|
|
|
void
|
|
|
|
shash_moved(struct shash *sh)
|
|
|
|
{
|
|
|
|
hmap_moved(&sh->map);
|
|
|
|
}
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
void
|
|
|
|
shash_clear(struct shash *sh)
|
|
|
|
{
|
2022-03-23 12:56:17 +01:00
|
|
|
struct shash_node *node;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2022-03-23 12:56:17 +01:00
|
|
|
SHASH_FOR_EACH_SAFE (node, sh) {
|
2009-07-08 13:19:16 -07:00
|
|
|
hmap_remove(&sh->map, &node->node);
|
|
|
|
free(node->name);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-07 16:58:57 -07:00
|
|
|
/* Like shash_clear(), but also free() each node's 'data'. */
|
|
|
|
void
|
|
|
|
shash_clear_free_data(struct shash *sh)
|
|
|
|
{
|
2022-03-23 12:56:17 +01:00
|
|
|
struct shash_node *node;
|
2010-06-07 16:58:57 -07:00
|
|
|
|
2022-03-23 12:56:17 +01:00
|
|
|
SHASH_FOR_EACH_SAFE (node, sh) {
|
2010-06-07 16:58:57 -07:00
|
|
|
hmap_remove(&sh->map, &node->node);
|
|
|
|
free(node->data);
|
|
|
|
free(node->name);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 10:21:25 -07:00
|
|
|
bool
|
|
|
|
shash_is_empty(const struct shash *shash)
|
|
|
|
{
|
|
|
|
return hmap_is_empty(&shash->map);
|
|
|
|
}
|
|
|
|
|
2009-11-04 14:56:03 -08:00
|
|
|
size_t
|
|
|
|
shash_count(const struct shash *shash)
|
|
|
|
{
|
|
|
|
return hmap_count(&shash->map);
|
|
|
|
}
|
|
|
|
|
2010-06-30 13:22:28 -07:00
|
|
|
static struct shash_node *
|
|
|
|
shash_add_nocopy__(struct shash *sh, char *name, const void *data, size_t hash)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
struct shash_node *node = xmalloc(sizeof *node);
|
2010-06-02 11:08:03 -07:00
|
|
|
node->name = name;
|
2012-07-13 16:00:29 -07:00
|
|
|
node->data = CONST_CAST(void *, data);
|
2010-06-30 13:22:28 -07:00
|
|
|
hmap_insert(&sh->map, &node->node, hash);
|
2009-07-28 13:29:57 -07:00
|
|
|
return node;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
|
|
|
|
2010-06-30 13:22:28 -07:00
|
|
|
/* It is the caller's responsibility to avoid duplicate names, if that is
|
|
|
|
* desirable. */
|
|
|
|
struct shash_node *
|
|
|
|
shash_add_nocopy(struct shash *sh, char *name, const void *data)
|
|
|
|
{
|
|
|
|
return shash_add_nocopy__(sh, name, data, hash_name(name));
|
|
|
|
}
|
|
|
|
|
2010-06-02 11:08:03 -07:00
|
|
|
/* 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, const void *data)
|
|
|
|
{
|
|
|
|
return shash_add_nocopy(sh, xstrdup(name), data);
|
|
|
|
}
|
|
|
|
|
2009-12-03 11:28:40 -08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 14:00:47 -07:00
|
|
|
void
|
|
|
|
shash_add_assert(struct shash *sh, const char *name, const void *data)
|
|
|
|
{
|
2018-01-31 11:23:24 -08:00
|
|
|
ovs_assert(shash_add_once(sh, name, data));
|
2010-05-05 14:00:47 -07:00
|
|
|
}
|
|
|
|
|
2010-06-30 13:26:42 -07:00
|
|
|
/* 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;
|
|
|
|
|
2011-11-17 09:57:40 -08:00
|
|
|
node = shash_find__(sh, name, strlen(name), hash);
|
2010-06-30 13:26:42 -07:00
|
|
|
if (!node) {
|
|
|
|
shash_add_nocopy__(sh, xstrdup(name), data, hash);
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
void *old_data = node->data;
|
2012-07-13 16:00:29 -07:00
|
|
|
node->data = CONST_CAST(void *, data);
|
2010-06-30 13:26:42 -07:00
|
|
|
return old_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-23 15:46:58 -07:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
* Takes ownership of 'name'. */
|
|
|
|
void *
|
|
|
|
shash_replace_nocopy(struct shash *sh, char *name, const void *data)
|
|
|
|
{
|
|
|
|
size_t hash = hash_name(name);
|
|
|
|
struct shash_node *node;
|
|
|
|
|
|
|
|
node = shash_find__(sh, name, strlen(name), hash);
|
|
|
|
if (!node) {
|
|
|
|
shash_add_nocopy__(sh, name, data, hash);
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
free(name);
|
|
|
|
void *old_data = node->data;
|
|
|
|
node->data = CONST_CAST(void *, data);
|
|
|
|
return old_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-23 09:42:30 -07:00
|
|
|
/* Deletes 'node' from 'sh' and frees the node's name. The caller is still
|
|
|
|
* responsible for freeing the node's data, if necessary. */
|
2009-07-08 13:19:16 -07:00
|
|
|
void
|
|
|
|
shash_delete(struct shash *sh, struct shash_node *node)
|
|
|
|
{
|
2010-09-23 09:42:30 -07:00
|
|
|
free(shash_steal(sh, node));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deletes 'node' from 'sh'. Neither the node's name nor its data is freed;
|
|
|
|
* instead, ownership is transferred to the caller. Returns the node's
|
|
|
|
* name. */
|
|
|
|
char *
|
|
|
|
shash_steal(struct shash *sh, struct shash_node *node)
|
|
|
|
{
|
|
|
|
char *name = node->name;
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
hmap_remove(&sh->map, &node->node);
|
|
|
|
free(node);
|
2010-09-23 09:42:30 -07:00
|
|
|
return name;
|
2009-07-08 13:19:16 -07:00
|
|
|
}
|
|
|
|
|
2010-06-30 13:22:28 -07:00
|
|
|
static struct shash_node *
|
2011-11-17 09:57:40 -08:00
|
|
|
shash_find__(const struct shash *sh, const char *name, size_t name_len,
|
|
|
|
size_t hash)
|
2009-07-08 13:19:16 -07:00
|
|
|
{
|
|
|
|
struct shash_node *node;
|
|
|
|
|
2010-09-17 10:33:10 -07:00
|
|
|
HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) {
|
2011-11-17 09:57:40 -08:00
|
|
|
if (!strncmp(node->name, name, name_len) && !node->name[name_len]) {
|
2009-07-08 13:19:16 -07:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-30 13:22:28 -07:00
|
|
|
/* If there are duplicates, returns a random element. */
|
|
|
|
struct shash_node *
|
|
|
|
shash_find(const struct shash *sh, const char *name)
|
|
|
|
{
|
2011-11-17 09:57:40 -08:00
|
|
|
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));
|
2010-06-30 13:22:28 -07:00
|
|
|
}
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
void *
|
|
|
|
shash_find_data(const struct shash *sh, const char *name)
|
|
|
|
{
|
|
|
|
struct shash_node *node = shash_find(sh, name);
|
|
|
|
return node ? node->data : NULL;
|
|
|
|
}
|
2009-06-24 10:21:39 -07:00
|
|
|
|
2009-10-28 11:10:36 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 14:00:47 -07:00
|
|
|
void *
|
|
|
|
shash_find_and_delete_assert(struct shash *sh, const char *name)
|
|
|
|
{
|
|
|
|
void *data = shash_find_and_delete(sh, name);
|
2012-11-06 13:14:55 -08:00
|
|
|
ovs_assert(data != NULL);
|
2010-05-05 14:00:47 -07:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2009-06-24 10:21:39 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-10-29 14:51:25 -07:00
|
|
|
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;
|
|
|
|
}
|
2012-11-06 13:14:55 -08:00
|
|
|
ovs_assert(i == n);
|
2009-10-29 14:51:25 -07:00
|
|
|
|
|
|
|
qsort(nodes, n, sizeof *nodes, compare_nodes_by_name);
|
|
|
|
|
|
|
|
return nodes;
|
|
|
|
}
|
|
|
|
}
|
2010-01-19 10:40:36 -08:00
|
|
|
|
|
|
|
/* Returns true if 'a' and 'b' contain the same keys (regardless of their
|
|
|
|
* values), false otherwise. */
|
|
|
|
bool
|
|
|
|
shash_equal_keys(const struct shash *a, const struct shash *b)
|
|
|
|
{
|
|
|
|
struct shash_node *node;
|
|
|
|
|
|
|
|
if (hmap_count(&a->map) != hmap_count(&b->map)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SHASH_FOR_EACH (node, a) {
|
|
|
|
if (!shash_find(b, node->name)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-08-11 10:24:40 -07:00
|
|
|
|
|
|
|
/* Chooses and returns a randomly selected node from 'sh', which must not be
|
|
|
|
* empty.
|
|
|
|
*
|
|
|
|
* I wouldn't depend on this algorithm to be fair, since I haven't analyzed it.
|
|
|
|
* But it does at least ensure that any node in 'sh' can be chosen. */
|
|
|
|
struct shash_node *
|
|
|
|
shash_random_node(struct shash *sh)
|
|
|
|
{
|
|
|
|
return CONTAINER_OF(hmap_random_node(&sh->map), struct shash_node, node);
|
|
|
|
}
|