X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fgraph%2Fconnection.c;h=6552b5f2264ea4030a47bee31b1bb3c75241b481;hb=43c59509042845f8d42c3e99ec74d45fa2dc0908;hp=4fa97a40f7fb012fc1aed5ab8ff8c8653da43a7d;hpb=51375aa95adf2f601f74a5a1f1665ca685584388;p=babeltrace.git diff --git a/src/lib/graph/connection.c b/src/lib/graph/connection.c index 4fa97a40..6552b5f2 100644 --- a/src/lib/graph/connection.c +++ b/src/lib/graph/connection.c @@ -27,9 +27,10 @@ #include "common/assert.h" #include "lib/assert-pre.h" #include "lib/assert-post.h" -#include +#include #include "lib/object.h" #include "compat/compiler.h" +#include #include #include @@ -50,8 +51,7 @@ void destroy_connection(struct bt_object *obj) /* * Make sure that each message iterator which was created for * this connection is finalized before we destroy it. Once a - * message iterator is finalized, all its method return NULL or - * the BT_MESSAGE_ITERATOR_STATUS_CANCELED status. + * message iterator is finalized, you cannot use it. * * Because connections are destroyed before components within a * graph, this ensures that message iterators are always @@ -126,7 +126,7 @@ struct bt_connection *bt_connection_create(struct bt_graph *graph, graph, upstream_port, downstream_port); connection = g_new0(struct bt_connection, 1); if (!connection) { - BT_LOGE_STR("Failed to allocate one connection."); + BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one connection."); goto end; } @@ -136,7 +136,7 @@ struct bt_connection *bt_connection_create(struct bt_graph *graph, parent_is_owner); connection->iterators = g_ptr_array_new(); if (!connection->iterators) { - BT_LOGE_STR("Failed to allocate a GPtrArray."); + BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray."); BT_OBJECT_PUT_REF_AND_RESET(connection); goto end; } @@ -205,12 +205,12 @@ void bt_connection_end(struct bt_connection *conn, bool try_remove_from_graph) * which is on graph destruction. */ for (i = 0; i < conn->iterators->len; i++) { - struct bt_self_component_port_input_message_iterator *iterator = + struct bt_message_iterator *iterator = g_ptr_array_index(conn->iterators, i); BT_LIB_LOGD("Finalizing message iterator created by " "this ended connection: %![iter-]+i", iterator); - bt_self_component_port_input_message_iterator_try_finalize( + bt_message_iterator_try_finalize( iterator); /* @@ -218,7 +218,7 @@ void bt_connection_end(struct bt_connection *conn, bool try_remove_from_graph) * from this connection's iterators on destruction * because this connection won't exist anymore. */ - bt_self_component_port_input_message_iterator_set_connection( + bt_message_iterator_set_connection( iterator, NULL); } @@ -232,20 +232,20 @@ void bt_connection_end(struct bt_connection *conn, bool try_remove_from_graph) const struct bt_port_output *bt_connection_borrow_upstream_port_const( const struct bt_connection *connection) { - BT_ASSERT_PRE_NON_NULL(connection, "Connection"); + BT_ASSERT_PRE_DEV_NON_NULL(connection, "Connection"); return (void *) connection->upstream_port; } const struct bt_port_input *bt_connection_borrow_downstream_port_const( const struct bt_connection *connection) { - BT_ASSERT_PRE_NON_NULL(connection, "Connection"); + BT_ASSERT_PRE_DEV_NON_NULL(connection, "Connection"); return (void *) connection->downstream_port; } BT_HIDDEN void bt_connection_remove_iterator(struct bt_connection *conn, - struct bt_self_component_port_input_message_iterator *iterator) + struct bt_message_iterator *iterator) { g_ptr_array_remove(conn->iterators, iterator); BT_LIB_LOGD("Removed message iterator from connection: "