ctf.fs source: add `get-metadata-info` query info action
[babeltrace.git] / plugins / ctf / fs / fs.h
index 35fbee90f839cb3278610eb0380483e9977fd361..936cfdd0184e3c9990615e2ec8c479b7ee63648d 100644 (file)
@@ -32,7 +32,6 @@
 #include <babeltrace/component/component.h>
 #include "data-stream.h"
 
-#define CTF_FS_COMPONENT_NAME "fs"
 #define CTF_FS_COMPONENT_DESCRIPTION \
        "Component used to read a CTF trace located on a file system."
 
@@ -108,6 +107,27 @@ struct ctf_fs_component {
 
 BT_HIDDEN
 enum bt_component_status ctf_fs_init(struct bt_component *source,
-               struct bt_value *params);
+               struct bt_value *params, void *init_method_data);
+
+BT_HIDDEN
+void ctf_fs_destroy(struct bt_component *component);
+
+BT_HIDDEN
+enum bt_notification_iterator_status ctf_fs_iterator_init(
+               struct bt_component *source,
+               struct bt_notification_iterator *it,
+               void *init_method_data);
+
+void ctf_fs_iterator_destroy(struct bt_notification_iterator *it);
+
+enum bt_notification_iterator_status ctf_fs_iterator_next(
+               struct bt_notification_iterator *iterator);
+
+struct bt_notification *ctf_fs_iterator_get(
+               struct bt_notification_iterator *iterator);
+
+BT_HIDDEN
+struct bt_value *ctf_fs_query_info(struct bt_component_class *comp_class,
+               const char *action, struct bt_value *params);
 
 #endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.025131 seconds and 4 git commands to generate.