lib: strictly type function return status enumerations
[babeltrace.git] / src / plugins / ctf / fs-src / fs.h
index 33e1f5685d701367bddbcd9d5fc54ece59acecf9..b52e179617ee0c7b547637dca91ae306b2c03748 100644 (file)
@@ -29,7 +29,7 @@
  */
 
 #include <stdbool.h>
-#include "common/babeltrace.h"
+#include "common/macros.h"
 #include <babeltrace2/babeltrace.h>
 #include "data-stream-file.h"
 #include "metadata.h"
@@ -39,6 +39,11 @@ BT_HIDDEN
 extern bool ctf_fs_debug;
 
 struct ctf_fs_file {
+       bt_logging_level log_level;
+
+       /* Weak */
+       bt_self_component *self_comp;
+
        /* Owned by this */
        GString *path;
 
@@ -67,8 +72,13 @@ struct ctf_fs_metadata {
 };
 
 struct ctf_fs_component {
+       bt_logging_level log_level;
+
        /* Weak, guaranteed to exist */
-       bt_self_component_source *self_comp;
+       bt_self_component_source *self_comp_src;
+
+       /* Weak */
+       bt_self_component *self_comp;
 
        /* Array of struct ctf_fs_port_data *, owned by this */
        GPtrArray *port_data;
@@ -80,6 +90,11 @@ struct ctf_fs_component {
 };
 
 struct ctf_fs_trace {
+       bt_logging_level log_level;
+
+       /* Weak */
+       bt_self_component *self_comp;
+
        /* Owned by this */
        struct ctf_fs_metadata *metadata;
 
@@ -168,6 +183,11 @@ struct ctf_fs_port_data {
 };
 
 struct ctf_fs_msg_iter_data {
+       bt_logging_level log_level;
+
+       /* Weak */
+       bt_self_component *self_comp;
+
        /* Weak */
        bt_self_message_iterator *pc_msg_iter;
 
@@ -185,7 +205,7 @@ struct ctf_fs_msg_iter_data {
 };
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_init(
+bt_component_class_init_method_status ctf_fs_init(
                bt_self_component_source *source,
                const bt_value *params, void *init_method_data);
 
@@ -193,14 +213,15 @@ BT_HIDDEN
 void ctf_fs_finalize(bt_self_component_source *component);
 
 BT_HIDDEN
-bt_query_status ctf_fs_query(
+bt_component_class_query_method_status ctf_fs_query(
                bt_self_component_class_source *comp_class,
                const bt_query_executor *query_exec,
                const char *object, const bt_value *params,
+               bt_logging_level log_level,
                const bt_value **result);
 
 BT_HIDDEN
-bt_self_message_iterator_status ctf_fs_iterator_init(
+bt_component_class_message_iterator_init_method_status ctf_fs_iterator_init(
                bt_self_message_iterator *self_msg_iter,
                bt_self_component_source *self_comp,
                bt_self_component_port_output *self_port);
@@ -209,19 +230,20 @@ BT_HIDDEN
 void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
 
 BT_HIDDEN
-bt_self_message_iterator_status ctf_fs_iterator_next(
+bt_component_class_message_iterator_next_method_status ctf_fs_iterator_next(
                bt_self_message_iterator *iterator,
                bt_message_array_const msgs, uint64_t capacity,
                uint64_t *count);
 
 BT_HIDDEN
-bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
+bt_component_class_message_iterator_seek_beginning_method_status ctf_fs_iterator_seek_beginning(
                bt_self_message_iterator *message_iterator);
 
 /* Create and initialize a new, empty ctf_fs_component. */
 
 BT_HIDDEN
-struct ctf_fs_component *ctf_fs_component_create(void);
+struct ctf_fs_component *ctf_fs_component_create(bt_logging_level log_level,
+               bt_self_component *self_comp);
 
 /*
  * Search recursively under all paths in `paths_value` (an array of strings),
This page took 0.026187 seconds and 4 git commands to generate.