src.ctf.fs: use BT_COMP_LOG*() instead of BT_LOG*()
[babeltrace.git] / src / plugins / ctf / fs-src / fs.h
index 7ab98adc4e2f328979885a62d6bd11572b97dc47..8819f018775dd443b442e553a426d4ea24ff1098 100644 (file)
@@ -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;
 
@@ -222,7 +242,8 @@ bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
 /* 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.024916 seconds and 4 git commands to generate.