X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fctf-writer%2Fevent.c;h=ea29dcf1cf9be2a1222f962345eef0abb0d64eff;hb=98b15851a941e7342b8bb19e265cdc3a40fabfb8;hp=a470687678eab5a9a84e49dd387a951f410b9ea5;hpb=ef267d12284b855bc52ee429a5dc12da1d1e3b95;p=babeltrace.git diff --git a/src/ctf-writer/event.c b/src/ctf-writer/event.c index a4706876..ea29dcf1 100644 --- a/src/ctf-writer/event.c +++ b/src/ctf-writer/event.c @@ -26,13 +26,13 @@ #include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include #include "common/assert.h" #include "compat/compiler.h" @@ -72,14 +72,14 @@ int bt_ctf_event_common_validate_types_for_create( struct bt_ctf_private_value *environment = NULL; stream_class = bt_ctf_event_class_common_borrow_stream_class(event_class); - BT_ASSERT(stream_class); + BT_ASSERT_DBG(stream_class); trace = bt_ctf_stream_class_common_borrow_trace(stream_class); if (trace) { BT_LOGD_STR("Event class is part of a trace."); packet_header_type = bt_ctf_trace_common_borrow_packet_header_field_type(trace); trace_valid = trace->valid; - BT_ASSERT(trace_valid); + BT_ASSERT_DBG(trace_valid); environment = trace->environment; } @@ -219,7 +219,7 @@ int _bt_ctf_event_common_validate(struct bt_ctf_event_common *event) int ret = 0; struct bt_ctf_stream_class_common *stream_class; - BT_ASSERT(event); + BT_ASSERT_DBG(event); if (event->header_field) { ret = bt_ctf_field_common_validate_recursive( event->header_field->field); @@ -237,7 +237,7 @@ int _bt_ctf_event_common_validate(struct bt_ctf_event_common *event) * We should not have been able to create the event without associating * the event class to a stream class. */ - BT_ASSERT(stream_class); + BT_ASSERT_DBG(stream_class); if (stream_class->event_context_field_type) { ret = bt_ctf_field_common_validate_recursive( @@ -276,7 +276,7 @@ BT_HIDDEN void _bt_ctf_event_common_set_is_frozen(struct bt_ctf_event_common *event, bool is_frozen) { - BT_ASSERT(event); + BT_ASSERT_DBG(event); BT_LOGD("Freezing event: addr=%p, " "event-class-name=\"%s\", event-class-id=%" PRId64, event, bt_ctf_event_class_common_get_name(event->class), @@ -348,7 +348,7 @@ int bt_ctf_event_common_initialize(struct bt_ctf_event_common *event, event_class); /* The event class was frozen when added to its stream class */ - BT_ASSERT(event_class->frozen); + BT_ASSERT_DBG(event_class->frozen); trace = bt_ctf_stream_class_common_borrow_trace(stream_class); if (must_be_in_trace) { @@ -535,9 +535,10 @@ int map_clock_classes_func(struct bt_ctf_stream_class_common *stream_class, } static -void destroy_event_header_field(struct bt_ctf_field_wrapper *field_wrapper) +void destroy_event_header_field(struct bt_ctf_field_wrapper *field_wrapper, + struct bt_ctf_stream_class *stream_class) { - BT_ASSERT(field_wrapper); + BT_ASSERT_DBG(field_wrapper); bt_ctf_object_put_ref(field_wrapper->field); bt_ctf_field_wrapper_destroy(field_wrapper); } @@ -567,7 +568,7 @@ error: bt_ctf_object_put_ref(field); if (field_wrapper) { - destroy_event_header_field(field_wrapper); + destroy_event_header_field(field_wrapper, stream_class); field_wrapper = NULL; } @@ -579,7 +580,7 @@ static void release_event_header_field(struct bt_ctf_field_wrapper *field_wrapper, struct bt_ctf_event_common *event_common) { - BT_ASSERT(field_wrapper); + BT_ASSERT_DBG(field_wrapper); BT_CTF_OBJECT_PUT_REF_AND_RESET(field_wrapper->field); bt_ctf_field_wrapper_destroy(field_wrapper); } @@ -647,7 +648,7 @@ struct bt_ctf_event_class *bt_ctf_event_get_class(struct bt_ctf_event *event) BT_HIDDEN struct bt_ctf_stream *bt_ctf_event_borrow_stream(struct bt_ctf_event *event) { - BT_ASSERT(event); + BT_ASSERT_DBG(event); return (struct bt_ctf_stream *) bt_ctf_object_borrow_parent(&BT_CTF_TO_COMMON(event)->base); } @@ -716,8 +717,8 @@ int bt_ctf_event_serialize(struct bt_ctf_event *event, { int ret = 0; - BT_ASSERT(event); - BT_ASSERT(ctfser); + BT_ASSERT_DBG(event); + BT_ASSERT_DBG(ctfser); BT_LOGT_STR("Serializing event's context field."); if (event->common.context_field) {