lib: strictly type function return status enumerations
[babeltrace.git] / src / plugins / ctf / lttng-live / lttng-live.h
index dc49bfb3e5af9213ade919d7baf07e5ff6f3d19f..62e1e752205bcb60b226a5e9c7589ec31741e4a8 100644 (file)
@@ -64,6 +64,9 @@ enum lttng_live_stream_state {
 
 /* Iterator over a live stream. */
 struct lttng_live_stream_iterator {
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+
        /* Owned by this. */
        bt_stream *stream;
 
@@ -119,6 +122,9 @@ struct lttng_live_stream_iterator {
 };
 
 struct lttng_live_metadata {
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+
        /* Weak reference. */
        struct lttng_live_trace *trace;
 
@@ -130,6 +136,9 @@ struct lttng_live_metadata {
 };
 
 struct lttng_live_trace {
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+
        /* Back reference to session. */
        struct lttng_live_session *session;
 
@@ -154,6 +163,9 @@ struct lttng_live_trace {
 };
 
 struct lttng_live_session {
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+
        /* Weak reference. */
        struct lttng_live_msg_iter *lttng_live_msg_iter;
 
@@ -184,8 +196,10 @@ enum session_not_found_action {
  * A component instance is an iterator on a single session.
  */
 struct lttng_live_component {
+       bt_logging_level log_level;
+
        /* Weak reference. */
-       bt_self_component_source *self_comp;
+       bt_self_component *self_comp;
 
        struct {
                GString *url;
@@ -202,6 +216,9 @@ struct lttng_live_component {
 };
 
 struct lttng_live_msg_iter {
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
+
        /* Weak reference. */
        struct lttng_live_component *lttng_live_comp;
 
@@ -240,11 +257,11 @@ enum lttng_live_iterator_status {
        LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED = -4,
 };
 
-bt_self_component_status lttng_live_component_init(
+bt_component_class_init_method_status lttng_live_component_init(
                bt_self_component_source *self_comp,
                const bt_value *params, void *init_method_data);
 
-bt_query_status lttng_live_query(
+bt_component_class_query_method_status lttng_live_query(
                bt_self_component_class_source *comp_class,
                const bt_query_executor *query_exec,
                const char *object, const bt_value *params,
@@ -253,12 +270,12 @@ bt_query_status lttng_live_query(
 
 void lttng_live_component_finalize(bt_self_component_source *component);
 
-bt_self_message_iterator_status lttng_live_msg_iter_next(
+bt_component_class_message_iterator_next_method_status lttng_live_msg_iter_next(
                bt_self_message_iterator *iterator,
                bt_message_array_const msgs, uint64_t capacity,
                uint64_t *count);
 
-bt_self_message_iterator_status lttng_live_msg_iter_init(
+bt_component_class_message_iterator_init_method_status lttng_live_msg_iter_init(
                bt_self_message_iterator *self_msg_it,
                bt_self_component_source *self_comp,
                bt_self_component_port_output *self_port);
This page took 0.025066 seconds and 4 git commands to generate.