summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-01-06 14:54:41 -0500
committerSimo Sorce <idra@samba.org>2009-01-09 14:31:06 -0500
commitbbf87bbd85be62183997516e4928fa1fdfcc70ff (patch)
treeb6586ef4126b18ff3216d118d985bc1c809004d1 /server
parent05ab26fa32d364c71b582d5bb72b5305b2554ef6 (diff)
downloadsssd-bbf87bbd85be62183997516e4928fa1fdfcc70ff.tar.gz
sssd-bbf87bbd85be62183997516e4928fa1fdfcc70ff.tar.xz
sssd-bbf87bbd85be62183997516e4928fa1fdfcc70ff.zip
Minor change to btreemap to use an enum for the return codes of btreemap_search_key.
Diffstat (limited to 'server')
-rw-r--r--server/util/btreemap.c32
-rw-r--r--server/util/btreemap.h9
2 files changed, 24 insertions, 17 deletions
diff --git a/server/util/btreemap.c b/server/util/btreemap.c
index 7c20086b1..15cf7b5a3 100644
--- a/server/util/btreemap.c
+++ b/server/util/btreemap.c
@@ -1,4 +1,4 @@
-/*
+/*
SSSD
Service monitor
@@ -43,27 +43,27 @@ struct btreemap
/* btreemap_search_key
* Searches a btreemap for an entry with a specific key
- * If found, it will return 0 and node will be set to the
- * appropriate node.
+ * If found, it will return BTREEMAP_FOUND and node will
+ * be set to the appropriate node.
* If not found, it will set the following:
- * -2: The map was empty, create a new map when adding keys
- * -1: A new node created should use node->left
- * 1: A new node created should use node->right
+ * BTREEMAP_EMPTY: The map was empty, create a new map when adding keys
+ * BTREEMAP_CREATE_LEFT: A new node created should use node->left
+ * BTREEMAP_CREATE_RIGHT: A new node created should use node->right
*/
int btreemap_search_key(struct btreemap *map, void *key, struct btreemap **node)
{
struct btreemap *tempnode;
int result;
- int found = -2;
+ int found = BTREEMAP_EMPTY;
if (!map)
{
*node = NULL;
- return -2;
+ return BTREEMAP_EMPTY;
}
tempnode = map;
- while (found == -2) {
+ while (found == BTREEMAP_EMPTY) {
result = tempnode->comparator(tempnode->key, key);
if (result > 0)
{
@@ -71,7 +71,7 @@ int btreemap_search_key(struct btreemap *map, void *key, struct btreemap **node)
tempnode=tempnode->right;
else
{
- found = 1;
+ found = BTREEMAP_CREATE_RIGHT;
}
} else if (result < 0)
{
@@ -79,12 +79,12 @@ int btreemap_search_key(struct btreemap *map, void *key, struct btreemap **node)
tempnode=tempnode->left;
else
{
- found = -1;
+ found = BTREEMAP_CREATE_LEFT;
}
} else
{
/* This entry matched */
- found = 0;
+ found = BTREEMAP_FOUND;
}
}
@@ -127,7 +127,7 @@ int btreemap_set_value(struct btreemap **map, void *key, void *value,
/* Search for the key */
found = btreemap_search_key(*map, key, &node);
- if (found == 0)
+ if (found == BTREEMAP_FOUND)
{
/* Update existing value */
node->value = value;
@@ -144,14 +144,14 @@ int btreemap_set_value(struct btreemap **map, void *key, void *value,
new_node->value = talloc_steal(*map, value);
new_node->comparator = comparator;
- if (found == -2)
+ if (found == BTREEMAP_EMPTY)
{
*map = new_node;
}
- if (found == -1)
+ if (found == BTREEMAP_CREATE_LEFT)
{
node->left = new_node;
- } else if (found == 1)
+ } else if (found == BTREEMAP_CREATE_RIGHT)
{
node->right = new_node;
}
diff --git a/server/util/btreemap.h b/server/util/btreemap.h
index 8452732f0..941e36e5b 100644
--- a/server/util/btreemap.h
+++ b/server/util/btreemap.h
@@ -1,4 +1,4 @@
-/*
+/*
SSSD
Service monitor
@@ -21,6 +21,13 @@
#ifndef BTREEMAP_H_
#define BTREEMAP_H_
+enum {
+ BTREEMAP_EMPTY = -2,
+ BTREEMAP_CREATE_LEFT,
+ BTREEMAP_FOUND,
+ BTREEMAP_CREATE_RIGHT
+};
+
typedef int (*btreemap_comparison_fn)(void *first, void *second);
struct btreemap;
int btreemap_search_key(struct btreemap *map, void *key, struct btreemap **node);