Use graph facilities in writer component class
[babeltrace.git] / plugins / writer / writer.c
index 4b36757fb628cba75b0647c2a380facdfd1ab6fc..1c8faab12478d4e3137d2c32322f58af62f427f4 100644 (file)
 #include <babeltrace/plugin/plugin-dev.h>
 #include <babeltrace/component/component.h>
 #include <babeltrace/component/component-sink.h>
+#include <babeltrace/component/component-port.h>
+#include <babeltrace/component/component-connection.h>
 #include <babeltrace/component/notification/notification.h>
 #include <babeltrace/component/notification/iterator.h>
 #include <babeltrace/component/notification/event.h>
 #include <babeltrace/component/notification/packet.h>
+#include <plugins-common.h>
 #include <stdio.h>
 #include <stdbool.h>
 #include <glib.h>
 #include "writer.h"
+#include <assert.h>
 
 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);
@@ -179,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)
 {
@@ -188,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) {
@@ -214,14 +240,13 @@ end:
 static
 enum bt_component_status writer_component_init(
        struct bt_component *component, struct bt_value *params,
-       void *init_method_data)
+       UNUSED_VAR void *init_method_data)
 {
        enum bt_component_status ret;
        enum bt_value_status value_ret;
        struct writer_component *writer_component = create_writer_component();
        struct bt_value *value = NULL;
        const char *path;
-       (void) init_method_data;
 
        if (!writer_component) {
                ret = BT_COMPONENT_STATUS_NOMEM;
@@ -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.");
This page took 0.025971 seconds and 4 git commands to generate.