X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Flib%2Ftrace-ir%2Ftrace.c;h=184fc0705f2dd6ea125aad2e73fb23a5748a1cb5;hp=ce76ce5e92d70d8e3c2e47384d923f1851b7a296;hb=727170fcc3f4002562f42deeac27c985fa69f57f;hpb=cd03c43c9c60177a6b0cb2496a784bfefca9740f diff --git a/src/lib/trace-ir/trace.c b/src/lib/trace-ir/trace.c index ce76ce5e..184fc070 100644 --- a/src/lib/trace-ir/trace.c +++ b/src/lib/trace-ir/trace.c @@ -25,6 +25,7 @@ #include "lib/logging.h" #include "lib/assert-pre.h" +#include "lib/assert-post.h" #include #include #include @@ -55,6 +56,7 @@ #include "trace-class.h" #include "trace.h" #include "utils.h" +#include "lib/value.h" #include "lib/func-status.h" struct bt_trace_destruction_listener_elem { @@ -62,8 +64,8 @@ struct bt_trace_destruction_listener_elem { void *data; }; -#define BT_ASSERT_PRE_TRACE_HOT(_trace) \ - BT_ASSERT_PRE_HOT((_trace), "Trace", ": %!+t", (_trace)) +#define BT_ASSERT_PRE_DEV_TRACE_HOT(_trace) \ + BT_ASSERT_PRE_DEV_HOT((_trace), "Trace", ": %!+t", (_trace)) static void destroy_trace(struct bt_object *obj) @@ -71,6 +73,7 @@ void destroy_trace(struct bt_object *obj) struct bt_trace *trace = (void *) obj; BT_LIB_LOGD("Destroying trace object: %!+t", trace); + BT_OBJECT_PUT_REF_AND_RESET(trace->user_attributes); /* * Call destruction listener functions so that everything else @@ -106,7 +109,7 @@ void destroy_trace(struct bt_object *obj) * The destruction listener should not have kept a * reference to the trace. */ - BT_ASSERT_PRE(trace->base.ref_count == 1, "Destruction listener kept a reference to the trace being destroyed: %![trace-]+t", trace); + BT_ASSERT_POST(trace->base.ref_count == 1, "Destruction listener kept a reference to the trace being destroyed: %![trace-]+t", trace); } g_array_free(trace->destruction_listeners, TRUE); trace->destruction_listeners = NULL; @@ -153,6 +156,13 @@ struct bt_trace *bt_trace_create(struct bt_trace_class *tc) } bt_object_init_shared(&trace->base, destroy_trace); + trace->user_attributes = bt_value_map_create(); + if (!trace->user_attributes) { + BT_LIB_LOGE_APPEND_CAUSE( + "Failed to create a map value object."); + goto error; + } + trace->streams = g_ptr_array_new_with_free_func( (GDestroyNotify) bt_object_try_spec_release); if (!trace->streams) { @@ -187,7 +197,7 @@ struct bt_trace *bt_trace_create(struct bt_trace_class *tc) } trace->class = tc; - bt_object_get_no_null_check(trace->class); + bt_object_get_ref_no_null_check(trace->class); BT_LIB_LOGD("Created trace object: %!+t", trace); goto end; @@ -200,7 +210,7 @@ end: const char *bt_trace_get_name(const struct bt_trace *trace) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); return trace->name.value; } @@ -209,7 +219,7 @@ enum bt_trace_set_name_status bt_trace_set_name(struct bt_trace *trace, { BT_ASSERT_PRE_NON_NULL(trace, "Trace"); BT_ASSERT_PRE_NON_NULL(name, "Name"); - BT_ASSERT_PRE_TRACE_HOT(trace); + BT_ASSERT_PRE_DEV_TRACE_HOT(trace); g_string_assign(trace->name.str, name); trace->name.value = trace->name.str->str; BT_LIB_LOGD("Set trace's name: %!+t", trace); @@ -218,7 +228,7 @@ enum bt_trace_set_name_status bt_trace_set_name(struct bt_trace *trace, bt_uuid bt_trace_get_uuid(const struct bt_trace *trace) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); return trace->uuid.value; } @@ -226,8 +236,8 @@ void bt_trace_set_uuid(struct bt_trace *trace, bt_uuid uuid) { BT_ASSERT_PRE_NON_NULL(trace, "Trace"); BT_ASSERT_PRE_NON_NULL(uuid, "UUID"); - BT_ASSERT_PRE_TRACE_HOT(trace); - memcpy(trace->uuid.uuid, uuid, BABELTRACE_UUID_LEN); + BT_ASSERT_PRE_DEV_TRACE_HOT(trace); + bt_uuid_copy(trace->uuid.uuid, uuid); trace->uuid.value = trace->uuid.uuid; BT_LIB_LOGD("Set trace's UUID: %!+t", trace); } @@ -239,7 +249,7 @@ bool trace_has_environment_entry(const struct bt_trace *trace, const char *name) BT_ASSERT(trace); return bt_attributes_borrow_field_value_by_name( - trace->environment, name) != NULL; + trace->environment, name); } static @@ -305,7 +315,7 @@ bt_trace_set_environment_entry_integer( struct bt_value *value_obj; BT_ASSERT_PRE_NON_NULL(trace, "Trace"); BT_ASSERT_PRE_NON_NULL(name, "Name"); - value_obj = bt_value_signed_integer_create_init(value); + value_obj = bt_value_integer_signed_create_init(value); if (!value_obj) { BT_LIB_LOGE_APPEND_CAUSE( "Cannot create an integer value object."); @@ -325,7 +335,7 @@ uint64_t bt_trace_get_environment_entry_count(const struct bt_trace *trace) { int64_t ret; - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); ret = bt_attributes_get_count(trace->environment); BT_ASSERT(ret >= 0); return (uint64_t) ret; @@ -335,10 +345,10 @@ void bt_trace_borrow_environment_entry_by_index_const( const struct bt_trace *trace, uint64_t index, const char **name, const struct bt_value **value) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); - BT_ASSERT_PRE_NON_NULL(name, "Name"); - BT_ASSERT_PRE_NON_NULL(value, "Value"); - BT_ASSERT_PRE_VALID_INDEX(index, + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(name, "Name"); + BT_ASSERT_PRE_DEV_NON_NULL(value, "Value"); + BT_ASSERT_PRE_DEV_VALID_INDEX(index, bt_attributes_get_count(trace->environment)); *value = bt_attributes_borrow_field_value(trace->environment, index); BT_ASSERT(*value); @@ -349,23 +359,23 @@ void bt_trace_borrow_environment_entry_by_index_const( const struct bt_value *bt_trace_borrow_environment_entry_value_by_name_const( const struct bt_trace *trace, const char *name) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); - BT_ASSERT_PRE_NON_NULL(name, "Name"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(name, "Name"); return bt_attributes_borrow_field_value_by_name(trace->environment, name); } uint64_t bt_trace_get_stream_count(const struct bt_trace *trace) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); return (uint64_t) trace->streams->len; } struct bt_stream *bt_trace_borrow_stream_by_index( struct bt_trace *trace, uint64_t index) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); - BT_ASSERT_PRE_VALID_INDEX(index, trace->streams->len); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_VALID_INDEX(index, trace->streams->len); return g_ptr_array_index(trace->streams, index); } @@ -381,7 +391,7 @@ struct bt_stream *bt_trace_borrow_stream_by_id(struct bt_trace *trace, struct bt_stream *stream = NULL; uint64_t i; - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); for (i = 0; i < trace->streams->len; i++) { struct bt_stream *stream_candidate = @@ -406,7 +416,7 @@ const struct bt_stream *bt_trace_borrow_stream_by_id_const( enum bt_trace_add_listener_status bt_trace_add_destruction_listener( const struct bt_trace *c_trace, bt_trace_destruction_listener_func listener, - void *data, uint64_t *listener_id) + void *data, bt_listener_id *listener_id) { struct bt_trace *trace = (void *) c_trace; uint64_t i; @@ -444,18 +454,17 @@ enum bt_trace_add_listener_status bt_trace_add_destruction_listener( return BT_FUNC_STATUS_OK; } -BT_ASSERT_PRE_FUNC static bool has_listener_id(const struct bt_trace *trace, uint64_t listener_id) { BT_ASSERT(listener_id < trace->destruction_listeners->len); return (&g_array_index(trace->destruction_listeners, struct bt_trace_destruction_listener_elem, - listener_id))->func != NULL; + listener_id))->func; } enum bt_trace_remove_listener_status bt_trace_remove_destruction_listener( - const struct bt_trace *c_trace, uint64_t listener_id) + const struct bt_trace *c_trace, bt_listener_id listener_id) { struct bt_trace *trace = (void *) c_trace; struct bt_trace_destruction_listener_elem *elem; @@ -483,6 +492,9 @@ void _bt_trace_freeze(const struct bt_trace *trace) BT_ASSERT(trace); BT_LIB_LOGD("Freezing trace's class: %!+T", trace->class); bt_trace_class_freeze(trace->class); + BT_LIB_LOGD("Freezing trace's user attributes: %!+v", + trace->user_attributes); + bt_value_freeze(trace->user_attributes); BT_LIB_LOGD("Freezing trace: %!+t", trace); ((struct bt_trace *) trace)->frozen = true; } @@ -526,7 +538,7 @@ uint64_t bt_trace_get_automatic_stream_id(const struct bt_trace *trace, struct bt_trace_class *bt_trace_borrow_class(struct bt_trace *trace) { - BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); return trace->class; } @@ -536,6 +548,32 @@ const struct bt_trace_class *bt_trace_borrow_class_const( return bt_trace_borrow_class((void *) trace); } +const struct bt_value *bt_trace_borrow_user_attributes_const( + const struct bt_trace *trace) +{ + BT_ASSERT_PRE_DEV_NON_NULL(trace, "Trace"); + return trace->user_attributes; +} + +struct bt_value *bt_trace_borrow_user_attributes(struct bt_trace *trace) +{ + return (void *) bt_trace_borrow_user_attributes_const((void *) trace); +} + +void bt_trace_set_user_attributes( + struct bt_trace *trace, + const struct bt_value *user_attributes) +{ + BT_ASSERT_PRE_NON_NULL(trace, "Trace"); + BT_ASSERT_PRE_NON_NULL(user_attributes, "User attributes"); + BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP, + "User attributes object is not a map value object."); + BT_ASSERT_PRE_DEV_TRACE_HOT(trace); + bt_object_put_ref_no_null_check(trace->user_attributes); + trace->user_attributes = (void *) user_attributes; + bt_object_get_ref_no_null_check(trace->user_attributes); +} + void bt_trace_get_ref(const struct bt_trace *trace) { bt_object_get_ref(trace);