Add ctf fs iterator initialization
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 30 Aug 2016 20:33:17 +0000 (16:33 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 18:09:05 +0000 (14:09 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/plugin/plugin-system.h
lib/plugin-system/component.c
plugins/ctf/fs/fs-internal.h
plugins/ctf/fs/fs.c

index 959feab84447742b43d681a105b3eb30848cdad9..0c3618c219b46b79dc1957ad750400cede5db1cd 100644 (file)
@@ -49,9 +49,9 @@ typedef void (*bt_plugin_exit_func)(void);
 /**
  * Component private data deallocation function type.
  *
- * @param data         Component private data
+ * @param component    Component instance
  */
-typedef void (*bt_component_destroy_cb)(void *data);
+typedef void (*bt_component_destroy_cb)(struct bt_component *component);
 
 /**
  * Component initialization function type.
index 859350798387da172dcfe80aaa163459d2a57595..b580bb5d0ae89acc2acd433ce23dab643dbe1f87 100644 (file)
@@ -66,7 +66,7 @@ void bt_component_destroy(struct bt_object *obj)
         * instance.
         */
        if (component->user_destroy) {
-               component->user_destroy(component->user_data);
+               component->user_destroy(component);
        }
 
        if (component->destroy) {
index 448fff2adeae1f6ee073a99eef4303290de377c4..d0a9f760649fc98a8ef6d39e91fc03513f447989 100644 (file)
 #define CTF_FS_COMPONENT_DESCRIPTION \
        "Component used to read a CTF trace located on a file system."
 
+struct ctf_fs_iterator {
+       int dummy;
+};
+
 struct ctf_fs_component_options {
        bool opt_dummy : 1;
 };
index 6f0a3c0a77271d994a97a0a1fea28b0575958859..cd58753aea240a5032a271e17cf57bf8900896e4 100644 (file)
@@ -27,6 +27,7 @@
  */
 
 #include <babeltrace/plugin/plugin-system.h>
+#include <babeltrace/plugin/notification/iterator.h>
 #include <glib.h>
 #include <assert.h>
 #include "fs-internal.h"
 static bool ctf_fs_debug;
 
 static
-struct ctf_fs_component *ctf_fs_create(struct bt_value *params)
+struct bt_notification *ctf_fs_iterator_get(
+               struct bt_notification_iterator *iterator)
 {
-       return g_new0(struct ctf_fs_component, 1);
+       return NULL;
 }
 
 static
-void ctf_fs_destroy(void *data)
+enum bt_notification_iterator_status ctf_fs_iterator_next(
+               struct bt_notification_iterator *iterator)
 {
-       g_free(data);
+       return BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED;
 }
 
-BT_HIDDEN
+static
+void ctf_fs_iterator_destroy_data(struct ctf_fs_iterator *ctf_it)
+{
+       g_free(ctf_it);
+}
+
+static
+void ctf_fs_iterator_destroy(struct bt_notification_iterator *it)
+{
+       void *data = bt_notification_iterator_get_private_data(it);
+
+       ctf_fs_iterator_destroy_data(data);
+}
+
+static
 enum bt_component_status ctf_fs_iterator_init(struct bt_component *source,
                struct bt_notification_iterator *it)
 {
        enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
+       struct ctf_fs_iterator *ctf_it;
 
        assert(source && it);
+       ctf_it = g_new0(struct ctf_fs_iterator, 1);
+       if (!ctf_it) {
+               ret = BT_COMPONENT_STATUS_NOMEM;
+               goto end;
+       }
+
+       ret = bt_notification_iterator_set_get_cb(it, ctf_fs_iterator_get);
+       if (ret) {
+               goto error;
+       }
+
+       ret = bt_notification_iterator_set_next_cb(it, ctf_fs_iterator_next);
+       if (ret) {
+               goto error;
+       }
+
+       ret = bt_notification_iterator_set_destroy_cb(it,
+                       ctf_fs_iterator_destroy);
+       if (ret) {
+               goto error;
+       }
+
+       ret = bt_notification_iterator_set_private_data(it, ctf_it);
+       if (ret) {
+               goto error;
+       }
+end:
        return ret;
+error:
+       (void) bt_notification_iterator_set_private_data(it, NULL);
+       ctf_fs_iterator_destroy_data(ctf_it);
+       return ret;
+}
+
+static
+struct ctf_fs_component *ctf_fs_create(struct bt_value *params)
+{
+       return g_new0(struct ctf_fs_component, 1);
+}
+
+static
+void ctf_fs_destroy_data(struct ctf_fs_component *component)
+{
+       g_free(component);
+}
+
+static
+void ctf_fs_destroy(struct bt_component *component)
+{
+       void *data = bt_component_get_private_data(component);
+
+       ctf_fs_destroy_data(data);
 }
 
 BT_HIDDEN
@@ -89,6 +158,6 @@ end:
        return ret;
 error:
        (void) bt_component_set_private_data(source, NULL);
-        ctf_fs_destroy(ctf_fs);
+        ctf_fs_destroy_data(ctf_fs);
        return ret;
 }
This page took 0.028336 seconds and 4 git commands to generate.