diff options
author | Harshavardhana <fharshav@redhat.com> | 2011-11-21 16:28:47 -0800 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-12-06 02:02:02 -0800 |
commit | 254fbfd92d4088c97ddde79a37b4e08e80c8eff3 (patch) | |
tree | 229df761122889997a14a4cc310095a438e2f3ff /libglusterfs/src | |
parent | 2b64c93c9f7f69fab506bdfca163a2805a2ea46c (diff) |
cluster/distribute: Assert checks at known locations
and new function dict_get_ptr_and_len().
Change-Id: I653a1cc8123baa36d750250d02721aa98b196f38
BUG: 3158
Signed-off-by: Harshavardhana <fharshav@redhat.com>
Reviewed-on: http://review.gluster.com/744
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/dict.c | 30 | ||||
-rw-r--r-- | libglusterfs/src/dict.h | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c index 35a6c94f0..40f575d52 100644 --- a/libglusterfs/src/dict.c +++ b/libglusterfs/src/dict.c @@ -1979,6 +1979,36 @@ err: } int +dict_get_ptr_and_len (dict_t *this, char *key, void **ptr, int *len) +{ + data_t * data = NULL; + int ret = 0; + + if (!this || !key || !ptr) { + ret = -EINVAL; + goto err; + } + + ret = dict_get_with_ref (this, key, &data); + if (ret != 0) { + goto err; + } + + *len = data->len; + + ret = _data_to_ptr (data, ptr); + if (ret != 0) { + goto err; + } + +err: + if (data) + data_unref (data); + + return ret; +} + +int dict_set_ptr (dict_t *this, char *key, void *ptr) { data_t * data = NULL; diff --git a/libglusterfs/src/dict.h b/libglusterfs/src/dict.h index c51c7d8f7..121f84be5 100644 --- a/libglusterfs/src/dict.h +++ b/libglusterfs/src/dict.h @@ -175,6 +175,7 @@ GF_MUST_CHECK int dict_set_double (dict_t *this, char *key, double val); GF_MUST_CHECK int dict_set_static_ptr (dict_t *this, char *key, void *ptr); GF_MUST_CHECK int dict_get_ptr (dict_t *this, char *key, void **ptr); +GF_MUST_CHECK int dict_get_ptr_and_len (dict_t *this, char *key, void **ptr, int *len); GF_MUST_CHECK int dict_set_ptr (dict_t *this, char *key, void *ptr); GF_MUST_CHECK int dict_set_dynptr (dict_t *this, char *key, void *ptr, size_t size); |