From c70ed3599679734051ff07ec8073896ffe489de5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 22 Feb 2017 10:04:52 -0500 Subject: [PATCH] Use graph facilities in writer component class MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- plugins/writer/writer.c | 35 +++++++++++++++++++++++++++++++---- plugins/writer/writer.h | 1 + 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/plugins/writer/writer.c b/plugins/writer/writer.c index 8e470376..1c8faab1 100644 --- a/plugins/writer/writer.c +++ b/plugins/writer/writer.c @@ -30,6 +30,8 @@ #include #include #include +#include +#include #include #include #include @@ -39,10 +41,12 @@ #include #include #include "writer.h" +#include static void destroy_writer_component_data(struct writer_component *writer_component) { + bt_put(writer_component->input_iterator); g_hash_table_destroy(writer_component->stream_map); g_hash_table_destroy(writer_component->stream_class_map); g_hash_table_destroy(writer_component->trace_map); @@ -180,6 +184,29 @@ end: return ret; } +static +enum bt_component_status writer_component_new_connection( + struct bt_port *own_port, struct bt_connection *connection) +{ + enum bt_component_status ret = BT_COMPONENT_STATUS_OK; + struct bt_component *component; + struct writer_component *writer; + + component = bt_port_get_component(own_port); + assert(component); + writer = bt_component_get_private_data(component); + assert(writer); + assert(!writer->input_iterator); + writer->input_iterator = bt_connection_create_notification_iterator( + connection); + + if (!writer->input_iterator) { + ret = BT_COMPONENT_STATUS_ERROR; + } + bt_put(component); + return ret; +} + static enum bt_component_status run(struct bt_component *component) { @@ -189,10 +216,8 @@ enum bt_component_status run(struct bt_component *component) struct writer_component *writer_component = bt_component_get_private_data(component); - ret = bt_component_sink_get_input_iterator(component, 0, &it); - if (ret != BT_COMPONENT_STATUS_OK) { - goto end; - } + it = writer_component->input_iterator; + assert(it); notification = bt_notification_iterator_get_notification(it); if (!notification) { @@ -268,5 +293,7 @@ BT_PLUGIN_AUTHOR("Jérémie Galarneau"); BT_PLUGIN_LICENSE("MIT"); BT_PLUGIN_SINK_COMPONENT_CLASS(writer, run); BT_PLUGIN_SINK_COMPONENT_CLASS_INIT_METHOD(writer, writer_component_init); +BT_PLUGIN_SINK_COMPONENT_CLASS_NEW_CONNECTION_METHOD(writer, + writer_component_new_connection); BT_PLUGIN_SINK_COMPONENT_CLASS_DESTROY_METHOD(writer, destroy_writer_component); BT_PLUGIN_SINK_COMPONENT_CLASS_DESCRIPTION(writer, "Formats CTF-IR to CTF."); diff --git a/plugins/writer/writer.h b/plugins/writer/writer.h index 21aae601..12e2b65f 100644 --- a/plugins/writer/writer.h +++ b/plugins/writer/writer.h @@ -44,6 +44,7 @@ struct writer_component { /* Map between reader and writer stream class. */ GHashTable *stream_class_map; FILE *err; + struct bt_notification_iterator *input_iterator; }; BT_HIDDEN -- 2.34.1