lib: use BT_LIB_LOG*_APPEND_CAUSE() where appropriate
[babeltrace.git] / src / lib / value.c
index ab265e01f0e3d1b0ef85cfa9f0c1c34ad29ca0e8..0d42e8795ba22b8133c04ab0d72a3a6f29674f74 100644 (file)
@@ -36,6 +36,7 @@
 #include "lib/assert-pre.h"
 #include "lib/value.h"
 #include "common/assert.h"
+#include "func-status.h"
 
 #define BT_VALUE_TO_BOOL(_base) ((struct bt_value_bool *) (_base))
 #define BT_VALUE_TO_INTEGER(_base) ((struct bt_value_integer *) (_base))
@@ -177,7 +178,7 @@ struct bt_value *bt_value_array_copy(const struct bt_value *array_obj)
        typed_array_obj = BT_VALUE_TO_ARRAY(array_obj);
        copy_obj = bt_value_array_create();
        if (!copy_obj) {
-               BT_LOGE_STR("Cannot create empty array value.");
+               BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty array value.");
                goto end;
        }
 
@@ -192,7 +193,8 @@ struct bt_value *bt_value_array_copy(const struct bt_value *array_obj)
                        "index=%d", element_obj, i);
                ret = bt_value_copy(element_obj, &element_obj_copy);
                if (ret) {
-                       BT_LOGE("Cannot copy array value's element: "
+                       BT_LIB_LOGE_APPEND_CAUSE(
+                               "Cannot copy array value's element: "
                                "array-addr=%p, index=%d",
                                array_obj, i);
                        BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
@@ -204,7 +206,8 @@ struct bt_value *bt_value_array_copy(const struct bt_value *array_obj)
                        (void *) element_obj_copy);
                BT_OBJECT_PUT_REF_AND_RESET(element_obj_copy);
                if (ret) {
-                       BT_LOGE("Cannot append to array value: addr=%p",
+                       BT_LIB_LOGE_APPEND_CAUSE(
+                               "Cannot append to array value: addr=%p",
                                array_obj);
                        BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
                        goto end;
@@ -245,7 +248,8 @@ struct bt_value *bt_value_map_copy(const struct bt_value *map_obj)
                        "key=\"%s\"", element_obj, key_str);
                ret = bt_value_copy(element_obj, &element_obj_copy);
                if (ret) {
-                       BT_LOGE("Cannot copy map value's element: "
+                       BT_LIB_LOGE_APPEND_CAUSE(
+                               "Cannot copy map value's element: "
                                "map-addr=%p, key=\"%s\"",
                                map_obj, key_str);
                        BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
@@ -257,7 +261,8 @@ struct bt_value *bt_value_map_copy(const struct bt_value *map_obj)
                        (void *) element_obj_copy);
                BT_OBJECT_PUT_REF_AND_RESET(element_obj_copy);
                if (ret) {
-                       BT_LOGE("Cannot insert into map value: addr=%p, key=\"%s\"",
+                       BT_LIB_LOGE_APPEND_CAUSE(
+                               "Cannot insert into map value: addr=%p, key=\"%s\"",
                                map_obj, key_str);
                        BT_OBJECT_PUT_REF_AND_RESET(copy_obj);
                        goto end;
@@ -539,10 +544,9 @@ void bt_value_destroy(struct bt_object *obj)
 }
 
 BT_HIDDEN
-enum bt_value_status _bt_value_freeze(const struct bt_value *c_object)
+void _bt_value_freeze(const struct bt_value *c_object)
 {
        const struct bt_value *object = (void *) c_object;
-       enum bt_value_status ret = BT_VALUE_STATUS_OK;
 
        BT_ASSERT(object);
 
@@ -554,7 +558,7 @@ enum bt_value_status _bt_value_freeze(const struct bt_value *c_object)
        freeze_funcs[object->type]((void *) object);
 
 end:
-       return ret;
+       return;
 }
 
 enum bt_value_type bt_value_get_type(const struct bt_value *object)
@@ -581,7 +585,8 @@ struct bt_value *bt_value_bool_create_init(bt_bool val)
        BT_LOGD("Creating boolean value object: val=%d", val);
        bool_obj = g_new0(struct bt_value_bool, 1);
        if (!bool_obj) {
-               BT_LOGE_STR("Failed to allocate one boolean value object.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one boolean value object.");
                goto end;
        }
 
@@ -617,7 +622,8 @@ struct bt_value *bt_value_integer_create_init(enum bt_value_type type,
 
        integer_obj = g_new0(struct bt_value_integer, 1);
        if (!integer_obj) {
-               BT_LOGE_STR("Failed to allocate one integer value object.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one integer value object.");
                goto end;
        }
 
@@ -660,7 +666,8 @@ struct bt_value *bt_value_real_create_init(double val)
        BT_LOGD("Creating real number value object: val=%f", val);
        real_obj = g_new0(struct bt_value_real, 1);
        if (!real_obj) {
-               BT_LOGE_STR("Failed to allocate one real number value object.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one real number value object.");
                goto end;
        }
 
@@ -682,22 +689,20 @@ struct bt_value *bt_value_string_create_init(const char *val)
 {
        struct bt_value_string *string_obj = NULL;
 
-       if (!val) {
-               BT_LOGW_STR("Invalid parameter: value is NULL.");
-               goto end;
-       }
-
+       BT_ASSERT_PRE_NON_NULL(val, "Value");
        BT_LOGD("Creating string value object: val-len=%zu", strlen(val));
        string_obj = g_new0(struct bt_value_string, 1);
        if (!string_obj) {
-               BT_LOGE_STR("Failed to allocate one string object.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one string object.");
                goto end;
        }
 
        string_obj->base = bt_value_create_base(BT_VALUE_TYPE_STRING);
        string_obj->gstr = g_string_new(val);
        if (!string_obj->gstr) {
-               BT_LOGE_STR("Failed to allocate a GString.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate a GString.");
                g_free(string_obj);
                string_obj = NULL;
                goto end;
@@ -722,7 +727,8 @@ struct bt_value *bt_value_array_create(void)
        BT_LOGD_STR("Creating empty array value object.");
        array_obj = g_new0(struct bt_value_array, 1);
        if (!array_obj) {
-               BT_LOGE_STR("Failed to allocate one array object.");
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to allocate one array object.");
                goto end;
        }
 
@@ -730,7 +736,7 @@ struct bt_value *bt_value_array_create(void)
        array_obj->garray = bt_g_ptr_array_new_full(0,
                (GDestroyNotify) bt_object_put_ref);
        if (!array_obj->garray) {
-               BT_LOGE_STR("Failed to allocate a GPtrArray.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
                g_free(array_obj);
                array_obj = NULL;
                goto end;
@@ -750,7 +756,7 @@ struct bt_value *bt_value_map_create(void)
        BT_LOGD_STR("Creating empty map value object.");
        map_obj = g_new0(struct bt_value_map, 1);
        if (!map_obj) {
-               BT_LOGE_STR("Failed to allocate one map object.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one map object.");
                goto end;
        }
 
@@ -758,7 +764,7 @@ struct bt_value *bt_value_map_create(void)
        map_obj->ght = g_hash_table_new_full(g_direct_hash, g_direct_equal,
                NULL, (GDestroyNotify) bt_object_put_ref);
        if (!map_obj->ght) {
-               BT_LOGE_STR("Failed to allocate a GHashTable.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GHashTable.");
                g_free(map_obj);
                map_obj = NULL;
                goto end;
@@ -855,7 +861,7 @@ const char *bt_value_string_get(const struct bt_value *string_obj)
        return BT_VALUE_TO_STRING(string_obj)->gstr->str;
 }
 
-enum bt_value_status bt_value_string_set(
+enum bt_value_string_set_status bt_value_string_set(
                struct bt_value *string_obj, const char *val)
 {
        BT_ASSERT_PRE_NON_NULL(string_obj, "Value object");
@@ -864,7 +870,7 @@ enum bt_value_status bt_value_string_set(
        g_string_assign(BT_VALUE_TO_STRING(string_obj)->gstr, val);
        BT_LOGT("Set string value's raw value: value-addr=%p, raw-value-addr=%p",
                string_obj, val);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
 uint64_t bt_value_array_get_size(const struct bt_value *array_obj)
@@ -895,7 +901,7 @@ const struct bt_value *bt_value_array_borrow_element_by_index_const(
                (void *) array_obj, index);
 }
 
-enum bt_value_status bt_value_array_append_element(
+enum bt_value_array_append_element_status bt_value_array_append_element(
                struct bt_value *array_obj,
                struct bt_value *element_obj)
 {
@@ -911,13 +917,13 @@ enum bt_value_status bt_value_array_append_element(
        BT_LOGT("Appended element to array value: array-value-addr=%p, "
                "element-value-addr=%p, new-size=%u",
                array_obj, element_obj, typed_array_obj->garray->len);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
-enum bt_value_status bt_value_array_append_bool_element(
-               struct bt_value *array_obj, bt_bool val)
+enum bt_value_array_append_element_status
+bt_value_array_append_bool_element(struct bt_value *array_obj, bt_bool val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *bool_obj = NULL;
 
        bool_obj = bt_value_bool_create_init(val);
@@ -927,10 +933,11 @@ enum bt_value_status bt_value_array_append_bool_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_unsigned_integer_element(
-               struct bt_value *array_obj, uint64_t val)
+enum bt_value_array_append_element_status
+bt_value_array_append_unsigned_integer_element(struct bt_value *array_obj,
+               uint64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_unsigned_integer_create_init(val);
@@ -940,10 +947,11 @@ enum bt_value_status bt_value_array_append_unsigned_integer_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_signed_integer_element(
-               struct bt_value *array_obj, int64_t val)
+enum bt_value_array_append_element_status
+bt_value_array_append_signed_integer_element(struct bt_value *array_obj,
+               int64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_signed_integer_create_init(val);
@@ -953,10 +961,10 @@ enum bt_value_status bt_value_array_append_signed_integer_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_real_element(
-               struct bt_value *array_obj, double val)
+enum bt_value_array_append_element_status
+bt_value_array_append_real_element(struct bt_value *array_obj, double val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *real_obj = NULL;
 
        real_obj = bt_value_real_create_init(val);
@@ -966,10 +974,11 @@ enum bt_value_status bt_value_array_append_real_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_string_element(
-               struct bt_value *array_obj, const char *val)
+enum bt_value_array_append_element_status
+bt_value_array_append_string_element(struct bt_value *array_obj,
+               const char *val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *string_obj = NULL;
 
        string_obj = bt_value_string_create_init(val);
@@ -979,10 +988,10 @@ enum bt_value_status bt_value_array_append_string_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_empty_array_element(
-               struct bt_value *array_obj)
+enum bt_value_array_append_element_status
+bt_value_array_append_empty_array_element(struct bt_value *array_obj)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *empty_array_obj = NULL;
 
        empty_array_obj = bt_value_array_create();
@@ -992,10 +1001,10 @@ enum bt_value_status bt_value_array_append_empty_array_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_empty_map_element(
-               struct bt_value *array_obj)
+enum bt_value_array_append_element_status
+bt_value_array_append_empty_map_element(struct bt_value *array_obj)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *map_obj = NULL;
 
        map_obj = bt_value_map_create();
@@ -1005,8 +1014,8 @@ enum bt_value_status bt_value_array_append_empty_map_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_set_element_by_index(
-               struct bt_value *array_obj, uint64_t index,
+enum bt_value_array_set_element_by_index_status
+bt_value_array_set_element_by_index(struct bt_value *array_obj, uint64_t index,
                struct bt_value *element_obj)
 {
        struct bt_value_array *typed_array_obj =
@@ -1024,7 +1033,7 @@ enum bt_value_status bt_value_array_set_element_by_index(
        BT_LOGT("Set array value's element: array-value-addr=%p, "
                "index=%" PRIu64 ", element-value-addr=%p",
                array_obj, index, element_obj);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
 uint64_t bt_value_map_get_size(const struct bt_value *map_obj)
@@ -1059,9 +1068,9 @@ bt_bool bt_value_map_has_entry(const struct bt_value *map_obj, const char *key)
                GUINT_TO_POINTER(g_quark_from_string(key)));
 }
 
-enum bt_value_status bt_value_map_insert_entry(
-               struct bt_value *map_obj,
-               const char *key, struct bt_value *element_obj)
+enum bt_value_map_insert_entry_status bt_value_map_insert_entry(
+               struct bt_value *map_obj, const char *key,
+               struct bt_value *element_obj)
 {
        BT_ASSERT_PRE_NON_NULL(map_obj, "Map value object");
        BT_ASSERT_PRE_NON_NULL(key, "Key");
@@ -1074,13 +1083,13 @@ enum bt_value_status bt_value_map_insert_entry(
        BT_LOGT("Inserted value into map value: map-value-addr=%p, "
                "key=\"%s\", element-value-addr=%p",
                map_obj, key, element_obj);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
-enum bt_value_status bt_value_map_insert_bool_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_bool_entry(
                struct bt_value *map_obj, const char *key, bt_bool val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *bool_obj = NULL;
 
        bool_obj = bt_value_bool_create_init(val);
@@ -1090,10 +1099,11 @@ enum bt_value_status bt_value_map_insert_bool_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_unsigned_integer_entry(
-               struct bt_value *map_obj, const char *key, uint64_t val)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_unsigned_integer_entry(struct bt_value *map_obj,
+               const char *key, uint64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_unsigned_integer_create_init(val);
@@ -1103,10 +1113,11 @@ enum bt_value_status bt_value_map_insert_unsigned_integer_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_signed_integer_entry(
-               struct bt_value *map_obj, const char *key, int64_t val)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_signed_integer_entry(struct bt_value *map_obj,
+               const char *key, int64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_signed_integer_create_init(val);
@@ -1116,10 +1127,10 @@ enum bt_value_status bt_value_map_insert_signed_integer_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_real_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_real_entry(
                struct bt_value *map_obj, const char *key, double val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *real_obj = NULL;
 
        real_obj = bt_value_real_create_init(val);
@@ -1129,11 +1140,11 @@ enum bt_value_status bt_value_map_insert_real_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_string_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_string_entry(
                struct bt_value *map_obj, const char *key,
                const char *val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *string_obj = NULL;
 
        string_obj = bt_value_string_create_init(val);
@@ -1143,10 +1154,11 @@ enum bt_value_status bt_value_map_insert_string_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_empty_array_entry(
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_empty_array_entry(
                struct bt_value *map_obj, const char *key)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *array_obj = NULL;
 
        array_obj = bt_value_array_create();
@@ -1156,10 +1168,10 @@ enum bt_value_status bt_value_map_insert_empty_array_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_empty_map_entry(
-               struct bt_value *map_obj, const char *key)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_empty_map_entry(struct bt_value *map_obj, const char *key)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *empty_map_obj = NULL;
 
        empty_map_obj = bt_value_map_create();
@@ -1169,10 +1181,11 @@ enum bt_value_status bt_value_map_insert_empty_map_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
-               bt_value_map_foreach_entry_func func, void *data)
+enum bt_value_map_foreach_entry_status bt_value_map_foreach_entry(
+               struct bt_value *map_obj, bt_value_map_foreach_entry_func func,
+               void *data)
 {
-       enum bt_value_status ret = BT_VALUE_STATUS_OK;
+       enum bt_value_map_foreach_entry_status ret = BT_FUNC_STATUS_OK;
        gpointer key, element_obj;
        GHashTableIter iter;
        struct bt_value_map *typed_map_obj = BT_VALUE_TO_MAP(map_obj);
@@ -1189,7 +1202,7 @@ enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
                        BT_LOGT("User canceled the loop: key=\"%s\", "
                                "value-addr=%p, data=%p",
                                key_str, element_obj, data);
-                       ret = BT_VALUE_STATUS_CANCELED;
+                       ret = BT_FUNC_STATUS_CANCELED;
                        break;
                }
        }
@@ -1197,17 +1210,17 @@ enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
        return ret;
 }
 
-enum bt_value_status bt_value_map_foreach_entry_const(
+enum bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
                const struct bt_value *map_obj,
                bt_value_map_foreach_entry_const_func func, void *data)
 {
-       return bt_value_map_foreach_entry((void *) map_obj,
+       return (int) bt_value_map_foreach_entry((void *) map_obj,
                (bt_value_map_foreach_entry_func) func, data);
 }
 
 struct extend_map_element_data {
        struct bt_value *extended_obj;
-       enum bt_value_status status;
+       int status;
 };
 
 static
@@ -1220,9 +1233,9 @@ bt_bool extend_map_element(const char *key,
 
        /* Copy object which is to replace the current one */
        extend_data->status = bt_value_copy(extension_obj_elem,
-                                           &extension_obj_elem_copy);
+               &extension_obj_elem_copy);
        if (extend_data->status) {
-               BT_LOGE("Cannot copy map element: addr=%p",
+               BT_LIB_LOGE_APPEND_CAUSE("Cannot copy map element: %!+v",
                        extension_obj_elem);
                goto error;
        }
@@ -1234,8 +1247,9 @@ bt_bool extend_map_element(const char *key,
                extend_data->extended_obj, key,
                (void *) extension_obj_elem_copy);
        if (extend_data->status) {
-               BT_LOGE("Cannot replace value in extended value: key=\"%s\", "
-                       "extended-value-addr=%p, element-value-addr=%p",
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot replace value in extended value: key=\"%s\", "
+                       "%![extended-value-]+v, %![element-value-]+v",
                        key, extend_data->extended_obj,
                        extension_obj_elem_copy);
                goto error;
@@ -1244,7 +1258,7 @@ bt_bool extend_map_element(const char *key,
        goto end;
 
 error:
-       BT_ASSERT(extend_data->status != BT_VALUE_STATUS_OK);
+       BT_ASSERT(extend_data->status != BT_FUNC_STATUS_OK);
        ret = BT_FALSE;
 
 end:
@@ -1252,14 +1266,14 @@ end:
        return ret;
 }
 
-enum bt_value_status bt_value_map_extend(
+enum bt_value_map_extend_status bt_value_map_extend(
                const struct bt_value *base_map_obj,
                const struct bt_value *extension_obj,
                struct bt_value **extended_map_obj)
 {
        struct extend_map_element_data extend_data = {
                .extended_obj = NULL,
-               .status = BT_VALUE_STATUS_OK,
+               .status = BT_FUNC_STATUS_OK,
        };
 
        BT_ASSERT_PRE_NON_NULL(base_map_obj, "Base value object");
@@ -1275,7 +1289,8 @@ enum bt_value_status bt_value_map_extend(
        /* Create copy of base map object to start with */
        extend_data.status = bt_value_copy(base_map_obj, extended_map_obj);
        if (extend_data.status) {
-               BT_LOGE("Cannot copy base value: base-value-addr=%p",
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot copy base value: %![base-value-]+v",
                        base_map_obj);
                goto error;
        }
@@ -1290,14 +1305,16 @@ enum bt_value_status bt_value_map_extend(
 
        if (bt_value_map_foreach_entry_const(extension_obj, extend_map_element,
                        &extend_data)) {
-               BT_LOGE("Cannot iterate on the extension object's elements: "
-                       "extension-value-addr=%p", extension_obj);
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Cannot iterate on the extension object's elements: "
+                       "%![extension-value-]+v", extension_obj);
                goto error;
        }
 
        if (extend_data.status) {
-               BT_LOGE("Failed to successfully iterate on the extension object's elements: "
-                       "extension-value-addr=%p", extension_obj);
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to successfully iterate on the extension object's elements: "
+                       "%![extension-value-]+v", extension_obj);
                goto error;
        }
 
@@ -1313,10 +1330,10 @@ end:
        return extend_data.status;
 }
 
-enum bt_value_status bt_value_copy(const struct bt_value *object,
+enum bt_value_copy_status bt_value_copy(const struct bt_value *object,
                struct bt_value **copy_obj)
 {
-       enum bt_value_status status = BT_VALUE_STATUS_OK;
+       enum bt_value_copy_status status = BT_FUNC_STATUS_OK;
 
        BT_ASSERT_PRE_NON_NULL(object, "Value object");
        BT_ASSERT_PRE_NON_NULL(copy_obj, "Value object copy (output)");
@@ -1326,9 +1343,9 @@ enum bt_value_status bt_value_copy(const struct bt_value *object,
                BT_LOGD("Copied value object: copy-value-addr=%p",
                        copy_obj);
        } else {
-               status = BT_VALUE_STATUS_NOMEM;
+               status = BT_FUNC_STATUS_MEMORY_ERROR;
                *copy_obj = NULL;
-               BT_LOGE_STR("Failed to copy value object.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to copy value object.");
        }
 
        return status;
This page took 0.033661 seconds and 4 git commands to generate.