Fix: flt.utils.muxer: Potential memory leak
[babeltrace.git] / plugins / utils / muxer / muxer.c
index 2e52f3d70925b4377582be7d3299b7cfeee2136a..47d790b3d9a14e59387e7d611c984077680d608e 100644 (file)
 #include <babeltrace/babeltrace-internal.h>
 #include <babeltrace/compat/uuid-internal.h>
 #include <babeltrace/babeltrace.h>
-#include <babeltrace/values-internal.h>
+#include <babeltrace/value-internal.h>
 #include <babeltrace/graph/component-internal.h>
-#include <babeltrace/graph/notification-iterator-internal.h>
+#include <babeltrace/graph/message-iterator-internal.h>
 #include <babeltrace/graph/connection-internal.h>
 #include <plugins-common.h>
 #include <glib.h>
 #include <stdbool.h>
 #include <inttypes.h>
 #include <babeltrace/assert-internal.h>
+#include <babeltrace/common-internal.h>
 #include <stdlib.h>
 #include <string.h>
 
+#include "muxer.h"
+
 #define ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME       "assume-absolute-clock-classes"
 
 struct muxer_comp {
-       /*
-        * Array of struct
-        * bt_private_connection_private_notification_iterator *
-        * (weak refs)
-        */
-       GPtrArray *muxer_notif_iters;
-
        /* Weak ref */
-       struct bt_private_component *priv_comp;
+       bt_self_component_filter *self_comp;
+
        unsigned int next_port_num;
        size_t available_input_ports;
-       bool initializing_muxer_notif_iter;
+       bool initializing_muxer_msg_iter;
        bool assume_absolute_clock_classes;
 };
 
-struct muxer_upstream_notif_iter {
+struct muxer_upstream_msg_iter {
        /* Owned by this, NULL if ended */
-       struct bt_notification_iterator *notif_iter;
+       bt_self_component_port_input_message_iterator *msg_iter;
 
-       /* Contains `struct bt_notification *`, owned by this */
-       GQueue *notifs;
+       /* Contains `const bt_message *`, owned by this */
+       GQueue *msgs;
 };
 
-enum muxer_notif_iter_clock_class_expectation {
-       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_ANY = 0,
-       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE,
-       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID,
-       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID,
+enum muxer_msg_iter_clock_class_expectation {
+       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY = 0,
+       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE,
+       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE,
+       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID,
+       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID,
 };
 
-struct muxer_notif_iter {
+struct muxer_msg_iter {
        /*
-        * Array of struct muxer_upstream_notif_iter * (owned by this).
+        * Array of struct muxer_upstream_msg_iter * (owned by this).
         *
         * NOTE: This array is searched in linearly to find the youngest
-        * current notification. Keep this until benchmarks confirm that
+        * current message. Keep this until benchmarks confirm that
         * another data structure is faster than this for our typical
         * use cases.
         */
-       GPtrArray *muxer_upstream_notif_iters;
+       GPtrArray *active_muxer_upstream_msg_iters;
 
        /*
-        * List of "recently" connected input ports (weak) to
-        * handle by this muxer notification iterator.
-        * muxer_port_connected() adds entries to this list, and the
-        * entries are removed when a notification iterator is created
-        * on the port's connection and put into
-        * muxer_upstream_notif_iters above by
-        * muxer_notif_iter_handle_newly_connected_ports().
+        * Array of struct muxer_upstream_msg_iter * (owned by this).
+        *
+        * We move ended message iterators from
+        * `active_muxer_upstream_msg_iters` to this array so as to be
+        * able to restore them when seeking.
         */
-       GList *newly_connected_priv_ports;
+       GPtrArray *ended_muxer_upstream_msg_iters;
 
-       /* Last time returned in a notification */
+       /* Last time returned in a message */
        int64_t last_returned_ts_ns;
 
        /* Clock class expectation state */
-       enum muxer_notif_iter_clock_class_expectation clock_class_expectation;
+       enum muxer_msg_iter_clock_class_expectation clock_class_expectation;
 
        /*
         * Expected clock class UUID, only valid when
         * clock_class_expectation is
-        * MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID.
+        * MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID.
         */
        unsigned char expected_clock_class_uuid[BABELTRACE_UUID_LEN];
 };
 
 static
-void destroy_muxer_upstream_notif_iter(
-               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
+void empty_message_queue(struct muxer_upstream_msg_iter *upstream_msg_iter)
 {
-       if (!muxer_upstream_notif_iter) {
-               return;
-       }
+       const bt_message *msg;
 
-       BT_LOGD("Destroying muxer's upstream notification iterator wrapper: "
-               "addr=%p, notif-iter-addr=%p, queue-len=%u",
-               muxer_upstream_notif_iter,
-               muxer_upstream_notif_iter->notif_iter,
-               muxer_upstream_notif_iter->notifs->length);
-       bt_put(muxer_upstream_notif_iter->notif_iter);
-
-       if (muxer_upstream_notif_iter->notifs) {
-               struct bt_notification *notif;
+       while ((msg = g_queue_pop_head(upstream_msg_iter->msgs))) {
+               bt_message_put_ref(msg);
+       }
+}
 
-               while ((notif = g_queue_pop_head(
-                               muxer_upstream_notif_iter->notifs))) {
-                       bt_put(notif);
-               }
+static
+void destroy_muxer_upstream_msg_iter(
+               struct muxer_upstream_msg_iter *muxer_upstream_msg_iter)
+{
+       if (!muxer_upstream_msg_iter) {
+               return;
+       }
 
-               g_queue_free(muxer_upstream_notif_iter->notifs);
+       BT_LOGD("Destroying muxer's upstream message iterator wrapper: "
+               "addr=%p, msg-iter-addr=%p, queue-len=%u",
+               muxer_upstream_msg_iter,
+               muxer_upstream_msg_iter->msg_iter,
+               muxer_upstream_msg_iter->msgs->length);
+       bt_self_component_port_input_message_iterator_put_ref(
+               muxer_upstream_msg_iter->msg_iter);
+
+       if (muxer_upstream_msg_iter->msgs) {
+               empty_message_queue(muxer_upstream_msg_iter);
+               g_queue_free(muxer_upstream_msg_iter->msgs);
        }
 
-       g_free(muxer_upstream_notif_iter);
+       g_free(muxer_upstream_msg_iter);
 }
 
 static
-struct muxer_upstream_notif_iter *muxer_notif_iter_add_upstream_notif_iter(
-               struct muxer_notif_iter *muxer_notif_iter,
-               struct bt_notification_iterator *notif_iter,
-               struct bt_private_port *priv_port)
+struct muxer_upstream_msg_iter *muxer_msg_iter_add_upstream_msg_iter(
+               struct muxer_msg_iter *muxer_msg_iter,
+               bt_self_component_port_input_message_iterator *self_msg_iter)
 {
-       struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
-               g_new0(struct muxer_upstream_notif_iter, 1);
+       struct muxer_upstream_msg_iter *muxer_upstream_msg_iter =
+               g_new0(struct muxer_upstream_msg_iter, 1);
 
-       if (!muxer_upstream_notif_iter) {
-               BT_LOGE_STR("Failed to allocate one muxer's upstream notification iterator wrapper.");
-               goto end;
+       if (!muxer_upstream_msg_iter) {
+               BT_LOGE_STR("Failed to allocate one muxer's upstream message iterator wrapper.");
+               goto error;
        }
 
-       muxer_upstream_notif_iter->notif_iter = bt_get(notif_iter);
-       muxer_upstream_notif_iter->notifs = g_queue_new();
-       if (!muxer_upstream_notif_iter->notifs) {
+       muxer_upstream_msg_iter->msg_iter = self_msg_iter;
+       bt_self_component_port_input_message_iterator_get_ref(muxer_upstream_msg_iter->msg_iter);
+       muxer_upstream_msg_iter->msgs = g_queue_new();
+       if (!muxer_upstream_msg_iter->msgs) {
                BT_LOGE_STR("Failed to allocate a GQueue.");
-
-               goto end;
+               goto error;
        }
 
-       g_ptr_array_add(muxer_notif_iter->muxer_upstream_notif_iters,
-               muxer_upstream_notif_iter);
-       BT_LOGD("Added muxer's upstream notification iterator wrapper: "
-               "addr=%p, muxer-notif-iter-addr=%p, notif-iter-addr=%p",
-               muxer_upstream_notif_iter, muxer_notif_iter,
-               notif_iter);
+       g_ptr_array_add(muxer_msg_iter->active_muxer_upstream_msg_iters,
+               muxer_upstream_msg_iter);
+       BT_LOGD("Added muxer's upstream message iterator wrapper: "
+               "addr=%p, muxer-msg-iter-addr=%p, msg-iter-addr=%p",
+               muxer_upstream_msg_iter, muxer_msg_iter,
+               self_msg_iter);
+
+       goto end;
+
+error:
+       g_free(muxer_upstream_msg_iter);
+       muxer_upstream_msg_iter = NULL;
 
 end:
-       return muxer_upstream_notif_iter;
+       return muxer_upstream_msg_iter;
 }
 
 static
-enum bt_component_status ensure_available_input_port(
-               struct bt_private_component *priv_comp)
+bt_self_component_status add_available_input_port(
+               bt_self_component_filter *self_comp)
 {
-       struct muxer_comp *muxer_comp =
-               bt_private_component_get_user_data(priv_comp);
-       enum bt_component_status status = BT_COMPONENT_STATUS_OK;
+       struct muxer_comp *muxer_comp = bt_self_component_get_data(
+               bt_self_component_filter_as_self_component(self_comp));
+       bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
        GString *port_name = NULL;
 
        BT_ASSERT(muxer_comp);
-
-       if (muxer_comp->available_input_ports >= 1) {
-               goto end;
-       }
-
        port_name = g_string_new("in");
        if (!port_name) {
                BT_LOGE_STR("Failed to allocate a GString.");
-               status = BT_COMPONENT_STATUS_NOMEM;
+               status = BT_SELF_COMPONENT_STATUS_NOMEM;
                goto end;
        }
 
        g_string_append_printf(port_name, "%u", muxer_comp->next_port_num);
-       status = bt_private_component_filter_add_input_private_port(
-               priv_comp, port_name->str, NULL, NULL);
-       if (status != BT_COMPONENT_STATUS_OK) {
+       status = bt_self_component_filter_add_input_port(
+               self_comp, port_name->str, NULL, NULL);
+       if (status != BT_SELF_COMPONENT_STATUS_OK) {
                BT_LOGE("Cannot add input port to muxer component: "
                        "port-name=\"%s\", comp-addr=%p, status=%s",
-                       port_name->str, priv_comp,
-                       bt_component_status_string(status));
+                       port_name->str, self_comp,
+                       bt_self_component_status_string(status));
                goto end;
        }
 
@@ -206,7 +207,8 @@ enum bt_component_status ensure_available_input_port(
        muxer_comp->next_port_num++;
        BT_LOGD("Added one input port to muxer component: "
                "port-name=\"%s\", comp-addr=%p",
-               port_name->str, priv_comp);
+               port_name->str, self_comp);
+
 end:
        if (port_name) {
                g_string_free(port_name, TRUE);
@@ -216,11 +218,11 @@ end:
 }
 
 static
-enum bt_component_status create_output_port(
-               struct bt_private_component *priv_comp)
+bt_self_component_status create_output_port(
+               bt_self_component_filter *self_comp)
 {
-       return bt_private_component_filter_add_output_private_port(
-               priv_comp, "out", NULL, NULL);
+       return bt_self_component_filter_add_output_port(
+               self_comp, "out", NULL, NULL);
 }
 
 static
@@ -230,22 +232,13 @@ void destroy_muxer_comp(struct muxer_comp *muxer_comp)
                return;
        }
 
-       BT_LOGD("Destroying muxer component: muxer-comp-addr=%p, "
-               "muxer-notif-iter-count=%u", muxer_comp,
-               muxer_comp->muxer_notif_iters ?
-                       muxer_comp->muxer_notif_iters->len : 0);
-
-       if (muxer_comp->muxer_notif_iters) {
-               g_ptr_array_free(muxer_comp->muxer_notif_iters, TRUE);
-       }
-
        g_free(muxer_comp);
 }
 
 static
-struct bt_value *get_default_params(void)
+bt_value *get_default_params(void)
 {
-       struct bt_value *params;
+       bt_value *params;
        int ret;
 
        params = bt_value_map_create();
@@ -254,7 +247,7 @@ struct bt_value *get_default_params(void)
                goto error;
        }
 
-       ret = bt_value_map_insert_bool(params,
+       ret = bt_value_map_insert_bool_entry(params,
                ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, false);
        if (ret) {
                BT_LOGE_STR("Cannot add boolean value to map value object.");
@@ -264,18 +257,19 @@ struct bt_value *get_default_params(void)
        goto end;
 
 error:
-       BT_PUT(params);
+       BT_VALUE_PUT_REF_AND_RESET(params);
 
 end:
        return params;
 }
 
 static
-int configure_muxer_comp(struct muxer_comp *muxer_comp, struct bt_value *params)
+int configure_muxer_comp(struct muxer_comp *muxer_comp,
+               const bt_value *params)
 {
-       struct bt_value *default_params = NULL;
-       struct bt_value *real_params = NULL;
-       struct bt_value *assume_absolute_clock_classes = NULL;
+       bt_value *default_params = NULL;
+       bt_value *real_params = NULL;
+       const bt_value *assume_absolute_clock_classes = NULL;
        int ret = 0;
        bt_bool bool_val;
 
@@ -286,8 +280,8 @@ int configure_muxer_comp(struct muxer_comp *muxer_comp, struct bt_value *params)
                goto error;
        }
 
-       real_params = bt_value_map_extend(default_params, params);
-       if (!real_params) {
+       ret = bt_value_map_extend(default_params, params, &real_params);
+       if (ret) {
                BT_LOGE("Cannot extend default parameters map value: "
                        "muxer-comp-addr=%p, def-params-addr=%p, "
                        "params-addr=%p", muxer_comp, default_params,
@@ -295,20 +289,19 @@ int configure_muxer_comp(struct muxer_comp *muxer_comp, struct bt_value *params)
                goto error;
        }
 
-       assume_absolute_clock_classes = bt_value_map_borrow(real_params,
-               ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME);
+       assume_absolute_clock_classes = bt_value_map_borrow_entry_value(real_params,
+                                                                       ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME);
        if (assume_absolute_clock_classes &&
                        !bt_value_is_bool(assume_absolute_clock_classes)) {
                BT_LOGE("Expecting a boolean value for the `%s` parameter: "
                        "muxer-comp-addr=%p, value-type=%s",
                        ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, muxer_comp,
-                       bt_value_type_string(
+                       bt_common_value_type_string(
                                bt_value_get_type(assume_absolute_clock_classes)));
                goto error;
        }
 
-       ret = bt_value_bool_get(assume_absolute_clock_classes, &bool_val);
-       BT_ASSERT(ret == 0);
+       bool_val = bt_value_bool_get(assume_absolute_clock_classes);
        muxer_comp->assume_absolute_clock_classes = (bool) bool_val;
        BT_LOGD("Configured muxer component: muxer-comp-addr=%p, "
                "assume-absolute-clock-classes=%d",
@@ -319,22 +312,22 @@ error:
        ret = -1;
 
 end:
-       bt_put(default_params);
-       bt_put(real_params);
+       bt_value_put_ref(default_params);
+       bt_value_put_ref(real_params);
        return ret;
 }
 
 BT_HIDDEN
-enum bt_component_status muxer_init(
-               struct bt_private_component *priv_comp,
-               struct bt_value *params, void *init_data)
+bt_self_component_status muxer_init(
+               bt_self_component_filter *self_comp,
+               const bt_value *params, void *init_data)
 {
        int ret;
-       enum bt_component_status status = BT_COMPONENT_STATUS_OK;
+       bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
        struct muxer_comp *muxer_comp = g_new0(struct muxer_comp, 1);
 
        BT_LOGD("Initializing muxer component: "
-               "comp-addr=%p, params-addr=%p", priv_comp, params);
+               "comp-addr=%p, params-addr=%p", self_comp, params);
 
        if (!muxer_comp) {
                BT_LOGE_STR("Failed to allocate one muxer component.");
@@ -349,46 +342,42 @@ enum bt_component_status muxer_init(
                goto error;
        }
 
-       muxer_comp->muxer_notif_iters = g_ptr_array_new();
-       if (!muxer_comp->muxer_notif_iters) {
-               BT_LOGE_STR("Failed to allocate a GPtrArray.");
-               goto error;
-       }
-
-       muxer_comp->priv_comp = priv_comp;
-       ret = bt_private_component_set_user_data(priv_comp, muxer_comp);
-       BT_ASSERT(ret == 0);
-       status = ensure_available_input_port(priv_comp);
-       if (status != BT_COMPONENT_STATUS_OK) {
+       muxer_comp->self_comp = self_comp;
+       bt_self_component_set_data(
+               bt_self_component_filter_as_self_component(self_comp),
+               muxer_comp);
+       status = add_available_input_port(self_comp);
+       if (status != BT_SELF_COMPONENT_STATUS_OK) {
                BT_LOGE("Cannot ensure that at least one muxer component's input port is available: "
                        "muxer-comp-addr=%p, status=%s",
                        muxer_comp,
-                       bt_component_status_string(status));
+                       bt_self_component_status_string(status));
                goto error;
        }
 
-       status = create_output_port(priv_comp);
+       status = create_output_port(self_comp);
        if (status) {
                BT_LOGE("Cannot create muxer component's output port: "
                        "muxer-comp-addr=%p, status=%s",
                        muxer_comp,
-                       bt_component_status_string(status));
+                       bt_self_component_status_string(status));
                goto error;
        }
 
        BT_LOGD("Initialized muxer component: "
                "comp-addr=%p, params-addr=%p, muxer-comp-addr=%p",
-               priv_comp, params, muxer_comp);
+               self_comp, params, muxer_comp);
 
        goto end;
 
 error:
        destroy_muxer_comp(muxer_comp);
-       ret = bt_private_component_set_user_data(priv_comp, NULL);
-       BT_ASSERT(ret == 0);
+       bt_self_component_set_data(
+               bt_self_component_filter_as_self_component(self_comp),
+               NULL);
 
-       if (status == BT_COMPONENT_STATUS_OK) {
-               status = BT_COMPONENT_STATUS_ERROR;
+       if (status == BT_SELF_COMPONENT_STATUS_OK) {
+               status = BT_SELF_COMPONENT_STATUS_ERROR;
        }
 
 end:
@@ -396,117 +385,112 @@ end:
 }
 
 BT_HIDDEN
-void muxer_finalize(struct bt_private_component *priv_comp)
+void muxer_finalize(bt_self_component_filter *self_comp)
 {
-       struct muxer_comp *muxer_comp =
-               bt_private_component_get_user_data(priv_comp);
+       struct muxer_comp *muxer_comp = bt_self_component_get_data(
+               bt_self_component_filter_as_self_component(self_comp));
 
        BT_LOGD("Finalizing muxer component: comp-addr=%p",
-               priv_comp);
+               self_comp);
        destroy_muxer_comp(muxer_comp);
 }
 
 static
-struct bt_notification_iterator *create_notif_iter_on_input_port(
-               struct bt_private_port *priv_port, int *ret)
+bt_self_component_port_input_message_iterator *
+create_msg_iter_on_input_port(bt_self_component_port_input *self_port)
 {
-       struct bt_port *port = bt_port_borrow_from_private(priv_port);
-       struct bt_notification_iterator *notif_iter = NULL;
-       struct bt_private_connection *priv_conn = NULL;
-       enum bt_connection_status conn_status;
+       const bt_port *port = bt_self_component_port_as_port(
+               bt_self_component_port_input_as_self_component_port(
+                       self_port));
+       bt_self_component_port_input_message_iterator *msg_iter =
+               NULL;
 
-       BT_ASSERT(ret);
-       *ret = 0;
        BT_ASSERT(port);
        BT_ASSERT(bt_port_is_connected(port));
-       priv_conn = bt_private_port_get_private_connection(priv_port);
-       BT_ASSERT(priv_conn);
 
        // TODO: Advance the iterator to >= the time of the latest
-       //       returned notification by the muxer notification
+       //       returned message by the muxer message
        //       iterator which creates it.
-       conn_status = bt_private_connection_create_notification_iterator(
-               priv_conn, &notif_iter);
-       if (conn_status != BT_CONNECTION_STATUS_OK) {
-               BT_LOGE("Cannot create upstream notification iterator on input port's connection: "
-                       "port-addr=%p, port-name=\"%s\", conn-addr=%p, "
-                       "status=%s",
-                       port, bt_port_get_name(port), priv_conn,
-                       bt_connection_status_string(conn_status));
-               *ret = -1;
+       msg_iter = bt_self_component_port_input_message_iterator_create(
+               self_port);
+       if (!msg_iter) {
+               BT_LOGE("Cannot create upstream message iterator on input port: "
+                       "port-addr=%p, port-name=\"%s\"",
+                       port, bt_port_get_name(port));
                goto end;
        }
 
-       BT_LOGD("Created upstream notification iterator on input port's connection: "
-               "port-addr=%p, port-name=\"%s\", conn-addr=%p, "
-               "notif-iter-addr=%p",
-               port, bt_port_get_name(port), priv_conn, notif_iter);
+       BT_LOGD("Created upstream message iterator on input port: "
+               "port-addr=%p, port-name=\"%s\", msg-iter-addr=%p",
+               port, bt_port_get_name(port), msg_iter);
 
 end:
-       bt_put(priv_conn);
-       return notif_iter;
+       return msg_iter;
 }
 
 static
-enum bt_notification_iterator_status muxer_upstream_notif_iter_next(
-               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
+bt_self_message_iterator_status muxer_upstream_msg_iter_next(
+               struct muxer_upstream_msg_iter *muxer_upstream_msg_iter,
+               bool *is_ended)
 {
-       enum bt_notification_iterator_status status;
-       bt_notification_array notifs;
+       bt_self_message_iterator_status status;
+       bt_message_iterator_status input_port_iter_status;
+       bt_message_array_const msgs;
        uint64_t i;
        uint64_t count;
 
-       BT_LOGV("Calling upstream notification iterator's \"next\" method: "
-               "muxer-upstream-notif-iter-wrap-addr=%p, notif-iter-addr=%p",
-               muxer_upstream_notif_iter,
-               muxer_upstream_notif_iter->notif_iter);
-       status = bt_private_connection_notification_iterator_next(
-               muxer_upstream_notif_iter->notif_iter, &notifs, &count);
-       BT_LOGV("Upstream notification iterator's \"next\" method returned: "
-               "status=%s", bt_notification_iterator_status_string(status));
-
-       switch (status) {
-       case BT_NOTIFICATION_ITERATOR_STATUS_OK:
+       BT_LOGV("Calling upstream message iterator's \"next\" method: "
+               "muxer-upstream-msg-iter-wrap-addr=%p, msg-iter-addr=%p",
+               muxer_upstream_msg_iter,
+               muxer_upstream_msg_iter->msg_iter);
+       input_port_iter_status = bt_self_component_port_input_message_iterator_next(
+               muxer_upstream_msg_iter->msg_iter, &msgs, &count);
+       BT_LOGV("Upstream message iterator's \"next\" method returned: "
+               "status=%s", bt_message_iterator_status_string(input_port_iter_status));
+
+       switch (input_port_iter_status) {
+       case BT_MESSAGE_ITERATOR_STATUS_OK:
                /*
-                * Notification iterator's current notification is
+                * Message iterator's current message is
                 * valid: it must be considered for muxing operations.
                 */
-               BT_LOGV_STR("Validated upstream notification iterator wrapper.");
+               BT_LOGV_STR("Validated upstream message iterator wrapper.");
                BT_ASSERT(count > 0);
 
-               /* Move notifications to our queue */
+               /* Move messages to our queue */
                for (i = 0; i < count; i++) {
                        /*
                         * Push to tail in order; other side
-                        * (muxer_notif_iter_do_next_one()) consumes
+                        * (muxer_msg_iter_do_next_one()) consumes
                         * from the head first.
                         */
-                       g_queue_push_tail(muxer_upstream_notif_iter->notifs,
-                               notifs[i]);
+                       g_queue_push_tail(muxer_upstream_msg_iter->msgs,
+                               (void *) msgs[i]);
                }
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
                break;
-       case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
+       case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
                /*
-                * Notification iterator's current notification is not
+                * Message iterator's current message is not
                 * valid anymore. Return
-                * BT_NOTIFICATION_ITERATOR_STATUS_AGAIN immediately.
+                * BT_MESSAGE_ITERATOR_STATUS_AGAIN immediately.
                 */
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_AGAIN;
                break;
-       case BT_NOTIFICATION_ITERATOR_STATUS_END:       /* Fall-through. */
-       case BT_NOTIFICATION_ITERATOR_STATUS_CANCELED:
+       case BT_MESSAGE_ITERATOR_STATUS_END:    /* Fall-through. */
                /*
-                * Notification iterator reached the end: release it. It
+                * Message iterator reached the end: release it. It
                 * won't be considered again to find the youngest
-                * notification.
+                * message.
                 */
-               BT_PUT(muxer_upstream_notif_iter->notif_iter);
-               status = BT_NOTIFICATION_ITERATOR_STATUS_OK;
+               *is_ended = true;
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
                break;
        default:
                /* Error or unsupported status code */
                BT_LOGE("Error or unsupported status code: "
-                       "status-code=%d", status);
-               status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+                       "status-code=%d", input_port_iter_status);
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
                break;
        }
 
@@ -514,196 +498,174 @@ enum bt_notification_iterator_status muxer_upstream_notif_iter_next(
 }
 
 static
-int muxer_notif_iter_handle_newly_connected_ports(
-               struct muxer_notif_iter *muxer_notif_iter)
+int get_msg_ts_ns(struct muxer_comp *muxer_comp,
+               struct muxer_msg_iter *muxer_msg_iter,
+               const bt_message *msg, int64_t last_returned_ts_ns,
+               int64_t *ts_ns)
 {
+       const bt_clock_snapshot *clock_snapshot = NULL;
        int ret = 0;
+       bt_clock_snapshot_state cs_state = BT_CLOCK_SNAPSHOT_STATE_KNOWN;
+       bt_message_stream_activity_clock_snapshot_state sa_cs_state;
 
-       BT_LOGV("Handling newly connected ports: "
-               "muxer-notif-iter-addr=%p", muxer_notif_iter);
-
-       /*
-        * Here we create one upstream notification iterator for each
-        * newly connected port. We do NOT perform an initial "next" on
-        * those new upstream notification iterators: they are
-        * invalidated, to be validated later. The list of newly
-        * connected ports to handle here is updated by
-        * muxer_port_connected().
-        */
-       while (true) {
-               GList *node = muxer_notif_iter->newly_connected_priv_ports;
-               struct bt_private_port *priv_port;
-               struct bt_port *port;
-               struct bt_notification_iterator *upstream_notif_iter = NULL;
-               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter;
-
-               if (!node) {
-                       break;
-               }
+       BT_ASSERT(msg);
+       BT_ASSERT(ts_ns);
+       BT_LOGV("Getting message's timestamp: "
+               "muxer-msg-iter-addr=%p, msg-addr=%p, "
+               "last-returned-ts=%" PRId64,
+               muxer_msg_iter, msg, last_returned_ts_ns);
 
-               priv_port = node->data;
-               port = bt_port_borrow_from_private(priv_port);
-               BT_ASSERT(port);
+       if (unlikely(muxer_msg_iter->clock_class_expectation ==
+                       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE)) {
+               *ts_ns = last_returned_ts_ns;
+               goto end;
+       }
 
-               if (!bt_port_is_connected(port)) {
-                       /*
-                        * Looks like this port is not connected
-                        * anymore: we can't create an upstream
-                        * notification iterator on its (non-existing)
-                        * connection in this case.
-                        */
-                       goto remove_node;
+       switch (bt_message_get_type(msg)) {
+       case BT_MESSAGE_TYPE_EVENT:
+               BT_ASSERT(bt_message_event_borrow_stream_class_default_clock_class_const(
+                               msg));
+               cs_state = bt_message_event_borrow_default_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               break;
+       case BT_MESSAGE_TYPE_PACKET_BEGINNING:
+               BT_ASSERT(bt_message_packet_beginning_borrow_stream_class_default_clock_class_const(
+                               msg));
+               cs_state = bt_message_packet_beginning_borrow_default_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               break;
+       case BT_MESSAGE_TYPE_PACKET_END:
+               BT_ASSERT(bt_message_packet_end_borrow_stream_class_default_clock_class_const(
+                               msg));
+               cs_state = bt_message_packet_end_borrow_default_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               break;
+       case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
+               BT_ASSERT(bt_message_discarded_events_borrow_stream_class_default_clock_class_const(
+                               msg));
+               cs_state = bt_message_discarded_events_borrow_default_beginning_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               break;
+       case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
+               BT_ASSERT(bt_message_discarded_packets_borrow_stream_class_default_clock_class_const(
+                               msg));
+               cs_state = bt_message_discarded_packets_borrow_default_beginning_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               break;
+       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
+               BT_ASSERT(bt_message_stream_activity_beginning_borrow_stream_class_default_clock_class_const(
+                               msg));
+               sa_cs_state = bt_message_stream_activity_beginning_borrow_default_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               if (sa_cs_state != BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                       goto no_clock_snapshot;
                }
 
-               upstream_notif_iter = create_notif_iter_on_input_port(priv_port,
-                       &ret);
-               if (ret) {
-                       /* create_notif_iter_on_input_port() logs errors */
-                       BT_ASSERT(!upstream_notif_iter);
-                       goto error;
+               break;
+       case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
+               BT_ASSERT(bt_message_stream_activity_end_borrow_stream_class_default_clock_class_const(
+                               msg));
+               sa_cs_state = bt_message_stream_activity_end_borrow_default_clock_snapshot_const(
+                       msg, &clock_snapshot);
+               if (sa_cs_state != BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                       goto no_clock_snapshot;
                }
 
-               muxer_upstream_notif_iter =
-                       muxer_notif_iter_add_upstream_notif_iter(
-                               muxer_notif_iter, upstream_notif_iter,
-                               priv_port);
-               BT_PUT(upstream_notif_iter);
-               if (!muxer_upstream_notif_iter) {
-                       /*
-                        * muxer_notif_iter_add_upstream_notif_iter()
-                        * logs errors.
-                        */
-                       goto error;
-               }
+               break;
+       case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
+               cs_state =
+                       bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
+                               msg, &clock_snapshot);
+               break;
+       default:
+               /* All the other messages have a higher priority */
+               BT_LOGV_STR("Message has no timestamp: using the last returned timestamp.");
+               *ts_ns = last_returned_ts_ns;
+               goto end;
+       }
 
-remove_node:
-               bt_put(upstream_notif_iter);
-               muxer_notif_iter->newly_connected_priv_ports =
-                       g_list_delete_link(
-                               muxer_notif_iter->newly_connected_priv_ports,
-                               node);
+       BT_ASSERT(cs_state == BT_CLOCK_SNAPSHOT_STATE_KNOWN);
+       ret = bt_clock_snapshot_get_ns_from_origin(clock_snapshot, ts_ns);
+       if (ret) {
+               BT_LOGE("Cannot get nanoseconds from Epoch of clock snapshot: "
+                       "clock-snapshot-addr=%p", clock_snapshot);
+               goto error;
        }
 
        goto end;
 
+no_clock_snapshot:
+       BT_LOGV_STR("Message's default clock snapshot is missing: "
+               "using the last returned timestamp.");
+       *ts_ns = last_returned_ts_ns;
+       goto end;
+
 error:
-       if (ret >= 0) {
-               ret = -1;
-       }
+       ret = -1;
 
 end:
+       if (ret == 0) {
+               BT_LOGV("Found message's timestamp: "
+                       "muxer-msg-iter-addr=%p, msg-addr=%p, "
+                       "last-returned-ts=%" PRId64 ", ts=%" PRId64,
+                       muxer_msg_iter, msg, last_returned_ts_ns,
+                       *ts_ns);
+       }
+
        return ret;
 }
 
-static
-int get_notif_ts_ns(struct muxer_comp *muxer_comp,
-               struct muxer_notif_iter *muxer_notif_iter,
-               struct bt_notification *notif, int64_t last_returned_ts_ns,
-               int64_t *ts_ns)
+static inline
+int validate_clock_class(struct muxer_msg_iter *muxer_msg_iter,
+               struct muxer_comp *muxer_comp,
+               const bt_clock_class *clock_class)
 {
-       struct bt_clock_class_priority_map *cc_prio_map = NULL;
-       struct bt_clock_class *clock_class = NULL;
-       struct bt_clock_value *clock_value = NULL;
-       struct bt_event *event = NULL;
        int ret = 0;
        const unsigned char *cc_uuid;
        const char *cc_name;
 
-       BT_ASSERT(notif);
-       BT_ASSERT(ts_ns);
-
-       BT_LOGV("Getting notification's timestamp: "
-               "muxer-notif-iter-addr=%p, notif-addr=%p, "
-               "last-returned-ts=%" PRId64,
-               muxer_notif_iter, notif, last_returned_ts_ns);
-
-       switch (bt_notification_get_type(notif)) {
-       case BT_NOTIFICATION_TYPE_EVENT:
-               cc_prio_map =
-                       bt_notification_event_borrow_clock_class_priority_map(
-                               notif);
-               break;
-
-       case BT_NOTIFICATION_TYPE_INACTIVITY:
-               cc_prio_map =
-                       bt_notification_inactivity_borrow_clock_class_priority_map(
-                               notif);
-               break;
-       default:
-               /* All the other notifications have a higher priority */
-               BT_LOGV_STR("Notification has no timestamp: using the last returned timestamp.");
-               *ts_ns = last_returned_ts_ns;
-               goto end;
-       }
-
-       if (!cc_prio_map) {
-               BT_LOGE("Cannot get notification's clock class priority map: "
-                       "notif-addr=%p", notif);
-               goto error;
-       }
-
-       /*
-        * If the clock class priority map is empty, then we consider
-        * that this notification has no time. In this case it's always
-        * the youngest.
-        */
-       if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) == 0) {
-               BT_LOGV_STR("Notification's clock class priority map contains 0 clock classes: "
-                       "using the last returned timestamp.");
-               *ts_ns = last_returned_ts_ns;
-               goto end;
-       }
-
-       clock_class =
-               bt_clock_class_priority_map_borrow_highest_priority_clock_class(
-                       cc_prio_map);
-       if (!clock_class) {
-               BT_LOGE("Cannot get the clock class with the highest priority from clock class priority map: "
-                       "cc-prio-map-addr=%p", cc_prio_map);
-               goto error;
-       }
-
+       BT_ASSERT(clock_class);
        cc_uuid = bt_clock_class_get_uuid(clock_class);
        cc_name = bt_clock_class_get_name(clock_class);
 
-       if (muxer_notif_iter->clock_class_expectation ==
-                       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_ANY) {
+       if (muxer_msg_iter->clock_class_expectation ==
+                       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY) {
                /*
                 * This is the first clock class that this muxer
-                * notification iterator encounters. Its properties
+                * message iterator encounters. Its properties
                 * determine what to expect for the whole lifetime of
                 * the iterator without a true
                 * `assume-absolute-clock-classes` parameter.
                 */
-               if (bt_clock_class_is_absolute(clock_class)) {
+               if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
                        /* Expect absolute clock classes */
-                       muxer_notif_iter->clock_class_expectation =
-                               MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE;
+                       muxer_msg_iter->clock_class_expectation =
+                               MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE;
                } else {
                        if (cc_uuid) {
                                /*
                                 * Expect non-absolute clock classes
                                 * with a specific UUID.
                                 */
-                               muxer_notif_iter->clock_class_expectation =
-                                       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID;
-                               memcpy(muxer_notif_iter->expected_clock_class_uuid,
+                               muxer_msg_iter->clock_class_expectation =
+                                       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID;
+                               memcpy(muxer_msg_iter->expected_clock_class_uuid,
                                        cc_uuid, BABELTRACE_UUID_LEN);
                        } else {
                                /*
                                 * Expect non-absolute clock classes
                                 * with no UUID.
                                 */
-                               muxer_notif_iter->clock_class_expectation =
-                                       MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID;
+                               muxer_msg_iter->clock_class_expectation =
+                                       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID;
                        }
                }
        }
 
        if (!muxer_comp->assume_absolute_clock_classes) {
-               switch (muxer_notif_iter->clock_class_expectation) {
-               case MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE:
-                       if (!bt_clock_class_is_absolute(clock_class)) {
+               switch (muxer_msg_iter->clock_class_expectation) {
+               case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE:
+                       if (!bt_clock_class_origin_is_unix_epoch(clock_class)) {
                                BT_LOGE("Expecting an absolute clock class, "
                                        "but got a non-absolute one: "
                                        "clock-class-addr=%p, clock-class-name=\"%s\"",
@@ -711,8 +673,8 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                                goto error;
                        }
                        break;
-               case MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID:
-                       if (bt_clock_class_is_absolute(clock_class)) {
+               case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID:
+                       if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
                                BT_LOGE("Expecting a non-absolute clock class with no UUID, "
                                        "but got an absolute one: "
                                        "clock-class-addr=%p, clock-class-name=\"%s\"",
@@ -745,8 +707,8 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                                goto error;
                        }
                        break;
-               case MUXER_NOTIF_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID:
-                       if (bt_clock_class_is_absolute(clock_class)) {
+               case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID:
+                       if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
                                BT_LOGE("Expecting a non-absolute clock class with a specific UUID, "
                                        "but got an absolute one: "
                                        "clock-class-addr=%p, clock-class-name=\"%s\"",
@@ -762,7 +724,7 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                                goto error;
                        }
 
-                       if (memcmp(muxer_notif_iter->expected_clock_class_uuid,
+                       if (memcmp(muxer_msg_iter->expected_clock_class_uuid,
                                        cc_uuid, BABELTRACE_UUID_LEN) != 0) {
                                BT_LOGE("Expecting a non-absolute clock class with a specific UUID, "
                                        "but got one with different UUID: "
@@ -770,22 +732,22 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                                        "expected-uuid=\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\", "
                                        "uuid=\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\"",
                                        clock_class, cc_name,
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[0],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[1],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[2],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[3],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[4],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[5],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[6],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[7],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[8],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[9],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[10],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[11],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[12],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[13],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[14],
-                                       (unsigned int) muxer_notif_iter->expected_clock_class_uuid[15],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[0],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[1],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[2],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[3],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[4],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[5],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[6],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[7],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[8],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[9],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[10],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[11],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[12],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[13],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[14],
+                                       (unsigned int) muxer_msg_iter->expected_clock_class_uuid[15],
                                        (unsigned int) cc_uuid[0],
                                        (unsigned int) cc_uuid[1],
                                        (unsigned int) cc_uuid[2],
@@ -805,135 +767,188 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                                goto error;
                        }
                        break;
+               case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE:
+                       BT_LOGE("Expecting no clock class, but got one: "
+                               "clock-class-addr=%p, clock-class-name=\"%s\"",
+                               clock_class, cc_name);
+                       goto error;
                default:
                        /* Unexpected */
                        BT_LOGF("Unexpected clock class expectation: "
                                "expectation-code=%d",
-                               muxer_notif_iter->clock_class_expectation);
+                               muxer_msg_iter->clock_class_expectation);
                        abort();
                }
        }
 
-       switch (bt_notification_get_type(notif)) {
-       case BT_NOTIFICATION_TYPE_EVENT:
-               event = bt_notification_event_borrow_event(notif);
-               BT_ASSERT(event);
-               clock_value = bt_event_borrow_clock_value(event,
-                       clock_class);
-               break;
-       case BT_NOTIFICATION_TYPE_INACTIVITY:
-               clock_value = bt_notification_inactivity_borrow_clock_value(
-                       notif, clock_class);
-               break;
-       default:
-               BT_LOGF("Unexpected notification type at this point: "
-                       "type=%d", bt_notification_get_type(notif));
-               abort();
-       }
-
-       if (!clock_value) {
-               BT_LOGE("Cannot get notification's clock value for clock class: "
-                       "clock-class-addr=%p, clock-class-name=\"%s\"",
-                       clock_class, cc_name);
-               goto error;
-       }
-
-       ret = bt_clock_value_get_value_ns_from_epoch(clock_value, ts_ns);
-       if (ret) {
-               BT_LOGE("Cannot get nanoseconds from Epoch of clock value: "
-                       "clock-value-addr=%p", clock_value);
-               goto error;
-       }
-
        goto end;
 
 error:
        ret = -1;
 
 end:
-       if (ret == 0) {
-               BT_LOGV("Found notification's timestamp: "
-                       "muxer-notif-iter-addr=%p, notif-addr=%p, "
-                       "last-returned-ts=%" PRId64 ", ts=%" PRId64,
-                       muxer_notif_iter, notif, last_returned_ts_ns,
-                       *ts_ns);
+       return ret;
+}
+
+static inline
+int validate_new_stream_clock_class(struct muxer_msg_iter *muxer_msg_iter,
+               struct muxer_comp *muxer_comp, const bt_stream *stream)
+{
+       int ret = 0;
+       const bt_stream_class *stream_class =
+               bt_stream_borrow_class_const(stream);
+       const bt_clock_class *clock_class =
+               bt_stream_class_borrow_default_clock_class_const(stream_class);
+
+       if (!clock_class) {
+               if (muxer_msg_iter->clock_class_expectation ==
+                       MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY) {
+                       /* Expect no clock class */
+                       muxer_msg_iter->clock_class_expectation =
+                               MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE;
+               } else {
+                       BT_LOGE("Expecting stream class with a default clock class: "
+                               "stream-class-addr=%p, stream-class-name=\"%s\", "
+                               "stream-class-id=%" PRIu64,
+                               stream_class, bt_stream_class_get_name(stream_class),
+                               bt_stream_class_get_id(stream_class));
+                       ret = -1;
+               }
+
+               goto end;
+       }
+
+       if (!bt_stream_class_default_clock_is_always_known(stream_class)) {
+               BT_LOGE("Stream's default clock is not always known: "
+                       "stream-class-addr=%p, stream-class-name=\"%s\", "
+                       "stream-class-id=%" PRIu64,
+                       stream_class, bt_stream_class_get_name(stream_class),
+                       bt_stream_class_get_id(stream_class));
+               ret = -1;
+               goto end;
        }
 
+       ret = validate_clock_class(muxer_msg_iter, muxer_comp, clock_class);
+
+end:
        return ret;
 }
 
 /*
- * This function finds the youngest available notification amongst the
- * non-ended upstream notification iterators and returns the upstream
- * notification iterator which has it, or
- * BT_NOTIFICATION_ITERATOR_STATUS_END if there's no available
- * notification.
+ * This function finds the youngest available message amongst the
+ * non-ended upstream message iterators and returns the upstream
+ * message iterator which has it, or
+ * BT_MESSAGE_ITERATOR_STATUS_END if there's no available
+ * message.
  *
  * This function does NOT:
  *
- * * Update any upstream notification iterator.
- * * Check for newly connected ports.
- * * Check the upstream notification iterators to retry.
+ * * Update any upstream message iterator.
+ * * Check the upstream message iterators to retry.
  *
- * On sucess, this function sets *muxer_upstream_notif_iter to the
- * upstream notification iterator of which the current notification is
+ * On sucess, this function sets *muxer_upstream_msg_iter to the
+ * upstream message iterator of which the current message is
  * the youngest, and sets *ts_ns to its time.
  */
 static
-enum bt_notification_iterator_status
-muxer_notif_iter_youngest_upstream_notif_iter(
+bt_self_message_iterator_status
+muxer_msg_iter_youngest_upstream_msg_iter(
                struct muxer_comp *muxer_comp,
-               struct muxer_notif_iter *muxer_notif_iter,
-               struct muxer_upstream_notif_iter **muxer_upstream_notif_iter,
+               struct muxer_msg_iter *muxer_msg_iter,
+               struct muxer_upstream_msg_iter **muxer_upstream_msg_iter,
                int64_t *ts_ns)
 {
        size_t i;
        int ret;
        int64_t youngest_ts_ns = INT64_MAX;
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
 
        BT_ASSERT(muxer_comp);
-       BT_ASSERT(muxer_notif_iter);
-       BT_ASSERT(muxer_upstream_notif_iter);
-       *muxer_upstream_notif_iter = NULL;
-
-       for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters->len; i++) {
-               struct bt_notification *notif;
-               struct muxer_upstream_notif_iter *cur_muxer_upstream_notif_iter =
-                       g_ptr_array_index(muxer_notif_iter->muxer_upstream_notif_iters, i);
-               int64_t notif_ts_ns;
-
-               if (!cur_muxer_upstream_notif_iter->notif_iter) {
-                       /* This upstream notification iterator is ended */
-                       BT_LOGV("Skipping ended upstream notification iterator: "
-                               "muxer-upstream-notif-iter-wrap-addr=%p",
-                               cur_muxer_upstream_notif_iter);
+       BT_ASSERT(muxer_msg_iter);
+       BT_ASSERT(muxer_upstream_msg_iter);
+       *muxer_upstream_msg_iter = NULL;
+
+       for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
+                       i++) {
+               const bt_message *msg;
+               struct muxer_upstream_msg_iter *cur_muxer_upstream_msg_iter =
+                       g_ptr_array_index(
+                               muxer_msg_iter->active_muxer_upstream_msg_iters,
+                               i);
+               int64_t msg_ts_ns;
+
+               if (!cur_muxer_upstream_msg_iter->msg_iter) {
+                       /* This upstream message iterator is ended */
+                       BT_LOGV("Skipping ended upstream message iterator: "
+                               "muxer-upstream-msg-iter-wrap-addr=%p",
+                               cur_muxer_upstream_msg_iter);
                        continue;
                }
 
-               BT_ASSERT(cur_muxer_upstream_notif_iter->notifs->length > 0);
-               notif = g_queue_peek_head(cur_muxer_upstream_notif_iter->notifs);
-               BT_ASSERT(notif);
-               ret = get_notif_ts_ns(muxer_comp, muxer_notif_iter, notif,
-                       muxer_notif_iter->last_returned_ts_ns, &notif_ts_ns);
+               BT_ASSERT(cur_muxer_upstream_msg_iter->msgs->length > 0);
+               msg = g_queue_peek_head(cur_muxer_upstream_msg_iter->msgs);
+               BT_ASSERT(msg);
+
+               if (unlikely(bt_message_get_type(msg) ==
+                               BT_MESSAGE_TYPE_STREAM_BEGINNING)) {
+                       ret = validate_new_stream_clock_class(
+                               muxer_msg_iter, muxer_comp,
+                               bt_message_stream_beginning_borrow_stream_const(
+                                       msg));
+                       if (ret) {
+                               /*
+                                * validate_new_stream_clock_class() logs
+                                * errors.
+                                */
+                               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
+                               goto end;
+                       }
+               } else if (unlikely(bt_message_get_type(msg) ==
+                               BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY)) {
+                       const bt_clock_snapshot *cs;
+                       bt_clock_snapshot_state cs_state;
+
+                       cs_state = bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
+                               msg, &cs);
+
+                       if (cs_state != BT_CLOCK_SNAPSHOT_STATE_KNOWN) {
+                               BT_LOGE("Message iterator inactivity message's "
+                                       "default clock snapshot is unknown: "
+                                       "msg-addr=%p",
+                                       msg);
+                               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
+                               goto end;
+                       }
+
+                       ret = validate_clock_class(muxer_msg_iter, muxer_comp,
+                               bt_clock_snapshot_borrow_clock_class_const(cs));
+                       if (ret) {
+                               /* validate_clock_class() logs errors */
+                               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
+                               goto end;
+                       }
+               }
+
+               ret = get_msg_ts_ns(muxer_comp, muxer_msg_iter, msg,
+                       muxer_msg_iter->last_returned_ts_ns, &msg_ts_ns);
                if (ret) {
-                       /* get_notif_ts_ns() logs errors */
-                       *muxer_upstream_notif_iter = NULL;
-                       status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+                       /* get_msg_ts_ns() logs errors */
+                       *muxer_upstream_msg_iter = NULL;
+                       status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
                        goto end;
                }
 
-               if (notif_ts_ns <= youngest_ts_ns) {
-                       *muxer_upstream_notif_iter =
-                               cur_muxer_upstream_notif_iter;
-                       youngest_ts_ns = notif_ts_ns;
+               if (msg_ts_ns <= youngest_ts_ns) {
+                       *muxer_upstream_msg_iter =
+                               cur_muxer_upstream_msg_iter;
+                       youngest_ts_ns = msg_ts_ns;
                        *ts_ns = youngest_ts_ns;
                }
        }
 
-       if (!*muxer_upstream_notif_iter) {
-               status = BT_NOTIFICATION_ITERATOR_STATUS_END;
+       if (!*muxer_upstream_msg_iter) {
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_END;
                *ts_ns = INT64_MIN;
        }
 
@@ -942,84 +957,93 @@ end:
 }
 
 static
-enum bt_notification_iterator_status validate_muxer_upstream_notif_iter(
-       struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
+bt_self_message_iterator_status validate_muxer_upstream_msg_iter(
+       struct muxer_upstream_msg_iter *muxer_upstream_msg_iter,
+       bool *is_ended)
 {
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
 
-       BT_LOGV("Validating muxer's upstream notification iterator wrapper: "
-               "muxer-upstream-notif-iter-wrap-addr=%p",
-               muxer_upstream_notif_iter);
+       BT_LOGV("Validating muxer's upstream message iterator wrapper: "
+               "muxer-upstream-msg-iter-wrap-addr=%p",
+               muxer_upstream_msg_iter);
 
-       if (muxer_upstream_notif_iter->notifs->length > 0 ||
-                       !muxer_upstream_notif_iter->notif_iter) {
+       if (muxer_upstream_msg_iter->msgs->length > 0 ||
+                       !muxer_upstream_msg_iter->msg_iter) {
                BT_LOGV("Already valid or not considered: "
-                       "queue-len=%u, upstream-notif-iter-addr=%p",
-                       muxer_upstream_notif_iter->notifs->length,
-                       muxer_upstream_notif_iter->notif_iter);
+                       "queue-len=%u, upstream-msg-iter-addr=%p",
+                       muxer_upstream_msg_iter->msgs->length,
+                       muxer_upstream_msg_iter->msg_iter);
                goto end;
        }
 
-       /* muxer_upstream_notif_iter_next() logs details/errors */
-       status = muxer_upstream_notif_iter_next(muxer_upstream_notif_iter);
+       /* muxer_upstream_msg_iter_next() logs details/errors */
+       status = muxer_upstream_msg_iter_next(muxer_upstream_msg_iter,
+               is_ended);
 
 end:
        return status;
 }
 
 static
-enum bt_notification_iterator_status validate_muxer_upstream_notif_iters(
-               struct muxer_notif_iter *muxer_notif_iter)
+bt_self_message_iterator_status validate_muxer_upstream_msg_iters(
+               struct muxer_msg_iter *muxer_msg_iter)
 {
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
        size_t i;
 
-       BT_LOGV("Validating muxer's upstream notification iterator wrappers: "
-               "muxer-notif-iter-addr=%p", muxer_notif_iter);
+       BT_LOGV("Validating muxer's upstream message iterator wrappers: "
+               "muxer-msg-iter-addr=%p", muxer_msg_iter);
 
-       for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters->len; i++) {
-               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
+       for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
+                       i++) {
+               bool is_ended = false;
+               struct muxer_upstream_msg_iter *muxer_upstream_msg_iter =
                        g_ptr_array_index(
-                               muxer_notif_iter->muxer_upstream_notif_iters,
+                               muxer_msg_iter->active_muxer_upstream_msg_iters,
                                i);
 
-               status = validate_muxer_upstream_notif_iter(
-                       muxer_upstream_notif_iter);
-               if (status != BT_NOTIFICATION_ITERATOR_STATUS_OK) {
+               status = validate_muxer_upstream_msg_iter(
+                       muxer_upstream_msg_iter, &is_ended);
+               if (status != BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
                        if (status < 0) {
-                               BT_LOGE("Cannot validate muxer's upstream notification iterator wrapper: "
-                                       "muxer-notif-iter-addr=%p, "
-                                       "muxer-upstream-notif-iter-wrap-addr=%p",
-                                       muxer_notif_iter,
-                                       muxer_upstream_notif_iter);
+                               BT_LOGE("Cannot validate muxer's upstream message iterator wrapper: "
+                                       "muxer-msg-iter-addr=%p, "
+                                       "muxer-upstream-msg-iter-wrap-addr=%p",
+                                       muxer_msg_iter,
+                                       muxer_upstream_msg_iter);
                        } else {
-                               BT_LOGV("Cannot validate muxer's upstream notification iterator wrapper: "
-                                       "muxer-notif-iter-addr=%p, "
-                                       "muxer-upstream-notif-iter-wrap-addr=%p",
-                                       muxer_notif_iter,
-                                       muxer_upstream_notif_iter);
+                               BT_LOGV("Cannot validate muxer's upstream message iterator wrapper: "
+                                       "muxer-msg-iter-addr=%p, "
+                                       "muxer-upstream-msg-iter-wrap-addr=%p",
+                                       muxer_msg_iter,
+                                       muxer_upstream_msg_iter);
                        }
 
                        goto end;
                }
 
                /*
-                * Remove this muxer upstream notification iterator
-                * if it's ended or canceled.
+                * Move this muxer upstream message iterator to the
+                * array of ended iterators if it's ended.
                 */
-               if (!muxer_upstream_notif_iter->notif_iter) {
+               if (unlikely(is_ended)) {
+                       BT_LOGV("Muxer's upstream message iterator wrapper: ended or canceled: "
+                               "muxer-msg-iter-addr=%p, "
+                               "muxer-upstream-msg-iter-wrap-addr=%p",
+                               muxer_msg_iter, muxer_upstream_msg_iter);
+                       g_ptr_array_add(
+                               muxer_msg_iter->ended_muxer_upstream_msg_iters,
+                               muxer_upstream_msg_iter);
+                       muxer_msg_iter->active_muxer_upstream_msg_iters->pdata[i] = NULL;
+
                        /*
                         * Use g_ptr_array_remove_fast() because the
                         * order of those elements is not important.
                         */
-                       BT_LOGV("Removing muxer's upstream notification iterator wrapper: ended or canceled: "
-                               "muxer-notif-iter-addr=%p, "
-                               "muxer-upstream-notif-iter-wrap-addr=%p",
-                               muxer_notif_iter, muxer_upstream_notif_iter);
                        g_ptr_array_remove_index_fast(
-                               muxer_notif_iter->muxer_upstream_notif_iters,
+                               muxer_msg_iter->active_muxer_upstream_msg_iters,
                                i);
                        i--;
                }
@@ -1030,225 +1054,193 @@ end:
 }
 
 static inline
-enum bt_notification_iterator_status muxer_notif_iter_do_next_one(
+bt_self_message_iterator_status muxer_msg_iter_do_next_one(
                struct muxer_comp *muxer_comp,
-               struct muxer_notif_iter *muxer_notif_iter,
-               struct bt_notification **notif)
+               struct muxer_msg_iter *muxer_msg_iter,
+               const bt_message **msg)
 {
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
-       struct muxer_upstream_notif_iter *muxer_upstream_notif_iter = NULL;
+       bt_self_message_iterator_status status;
+       struct muxer_upstream_msg_iter *muxer_upstream_msg_iter = NULL;
        int64_t next_return_ts;
 
-       while (true) {
-               int ret = muxer_notif_iter_handle_newly_connected_ports(
-                       muxer_notif_iter);
-
-               if (ret) {
-                       BT_LOGE("Cannot handle newly connected input ports for muxer's notification iterator: "
-                               "muxer-comp-addr=%p, muxer-notif-iter-addr=%p, "
-                               "ret=%d",
-                               muxer_comp, muxer_notif_iter, ret);
-                       status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
-                       goto end;
-               }
-
-               status = validate_muxer_upstream_notif_iters(muxer_notif_iter);
-               if (status != BT_NOTIFICATION_ITERATOR_STATUS_OK) {
-                       /* validate_muxer_upstream_notif_iters() logs details */
-                       goto end;
-               }
-
-               /*
-                * At this point, we know that all the existing upstream
-                * notification iterators are valid. However the
-                * operations to validate them (during
-                * validate_muxer_upstream_notif_iters()) may have
-                * connected new ports. If no ports were connected
-                * during this operation, exit the loop.
-                */
-               if (!muxer_notif_iter->newly_connected_priv_ports) {
-                       BT_LOGV("Not breaking this loop: muxer's notification iterator still has newly connected input ports to handle: "
-                               "muxer-comp-addr=%p", muxer_comp);
-                       break;
-               }
+       status = validate_muxer_upstream_msg_iters(muxer_msg_iter);
+       if (status != BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
+               /* validate_muxer_upstream_msg_iters() logs details */
+               goto end;
        }
 
-       BT_ASSERT(!muxer_notif_iter->newly_connected_priv_ports);
-
        /*
         * At this point we know that all the existing upstream
-        * notification iterators are valid. We can find the one,
-        * amongst those, of which the current notification is the
+        * message iterators are valid. We can find the one,
+        * amongst those, of which the current message is the
         * youngest.
         */
-       status = muxer_notif_iter_youngest_upstream_notif_iter(muxer_comp,
-                       muxer_notif_iter, &muxer_upstream_notif_iter,
+       status = muxer_msg_iter_youngest_upstream_msg_iter(muxer_comp,
+                       muxer_msg_iter, &muxer_upstream_msg_iter,
                        &next_return_ts);
-       if (status < 0 || status == BT_NOTIFICATION_ITERATOR_STATUS_END ||
-                       status == BT_NOTIFICATION_ITERATOR_STATUS_CANCELED) {
+       if (status < 0 || status == BT_SELF_MESSAGE_ITERATOR_STATUS_END) {
                if (status < 0) {
-                       BT_LOGE("Cannot find the youngest upstream notification iterator wrapper: "
+                       BT_LOGE("Cannot find the youngest upstream message iterator wrapper: "
                                "status=%s",
-                               bt_notification_iterator_status_string(status));
+                               bt_common_self_message_iterator_status_string(status));
                } else {
-                       BT_LOGV("Cannot find the youngest upstream notification iterator wrapper: "
+                       BT_LOGV("Cannot find the youngest upstream message iterator wrapper: "
                                "status=%s",
-                               bt_notification_iterator_status_string(status));
+                               bt_common_self_message_iterator_status_string(status));
                }
 
                goto end;
        }
 
-       if (next_return_ts < muxer_notif_iter->last_returned_ts_ns) {
-               BT_LOGE("Youngest upstream notification iterator wrapper's timestamp is less than muxer's notification iterator's last returned timestamp: "
-                       "muxer-notif-iter-addr=%p, ts=%" PRId64 ", "
+       if (next_return_ts < muxer_msg_iter->last_returned_ts_ns) {
+               BT_LOGE("Youngest upstream message iterator wrapper's timestamp is less than muxer's message iterator's last returned timestamp: "
+                       "muxer-msg-iter-addr=%p, ts=%" PRId64 ", "
                        "last-returned-ts=%" PRId64,
-                       muxer_notif_iter, next_return_ts,
-                       muxer_notif_iter->last_returned_ts_ns);
-               status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+                       muxer_msg_iter, next_return_ts,
+                       muxer_msg_iter->last_returned_ts_ns);
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
                goto end;
        }
 
-       BT_LOGV("Found youngest upstream notification iterator wrapper: "
-               "muxer-notif-iter-addr=%p, "
-               "muxer-upstream-notif-iter-wrap-addr=%p, "
+       BT_LOGV("Found youngest upstream message iterator wrapper: "
+               "muxer-msg-iter-addr=%p, "
+               "muxer-upstream-msg-iter-wrap-addr=%p, "
                "ts=%" PRId64,
-               muxer_notif_iter, muxer_upstream_notif_iter, next_return_ts);
-       BT_ASSERT(status == BT_NOTIFICATION_ITERATOR_STATUS_OK);
-       BT_ASSERT(muxer_upstream_notif_iter);
+               muxer_msg_iter, muxer_upstream_msg_iter, next_return_ts);
+       BT_ASSERT(status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK);
+       BT_ASSERT(muxer_upstream_msg_iter);
 
        /*
         * Consume from the queue's head: other side
-        * (muxer_upstream_notif_iter_next()) writes to the tail.
+        * (muxer_upstream_msg_iter_next()) writes to the tail.
         */
-       *notif = g_queue_pop_head(muxer_upstream_notif_iter->notifs);
-       BT_ASSERT(*notif);
-       muxer_notif_iter->last_returned_ts_ns = next_return_ts;
+       *msg = g_queue_pop_head(muxer_upstream_msg_iter->msgs);
+       BT_ASSERT(*msg);
+       muxer_msg_iter->last_returned_ts_ns = next_return_ts;
 
 end:
        return status;
 }
 
 static
-enum bt_notification_iterator_status muxer_notif_iter_do_next(
+bt_self_message_iterator_status muxer_msg_iter_do_next(
                struct muxer_comp *muxer_comp,
-               struct muxer_notif_iter *muxer_notif_iter,
-               bt_notification_array notifs, uint64_t capacity,
+               struct muxer_msg_iter *muxer_msg_iter,
+               bt_message_array_const msgs, uint64_t capacity,
                uint64_t *count)
 {
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
        uint64_t i = 0;
 
-       while (i < capacity && status == BT_NOTIFICATION_ITERATOR_STATUS_OK) {
-               status = muxer_notif_iter_do_next_one(muxer_comp,
-                       muxer_notif_iter, &notifs[i]);
-               if (status == BT_NOTIFICATION_ITERATOR_STATUS_OK) {
+       while (i < capacity && status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
+               status = muxer_msg_iter_do_next_one(muxer_comp,
+                       muxer_msg_iter, &msgs[i]);
+               if (status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
                        i++;
                }
        }
 
        if (i > 0) {
                /*
-                * Even if muxer_notif_iter_do_next_one() returned
+                * Even if muxer_msg_iter_do_next_one() returned
                 * something else than
-                * BT_NOTIFICATION_ITERATOR_STATUS_OK, we accumulated
-                * notification objects in the output notification
+                * BT_MESSAGE_ITERATOR_STATUS_OK, we accumulated
+                * message objects in the output message
                 * array, so we need to return
-                * BT_NOTIFICATION_ITERATOR_STATUS_OK so that they are
+                * BT_MESSAGE_ITERATOR_STATUS_OK so that they are
                 * transfered to downstream. This other status occurs
-                * again the next time muxer_notif_iter_do_next() is
+                * again the next time muxer_msg_iter_do_next() is
                 * called, possibly without any accumulated
-                * notification, in which case we'll return it.
+                * message, in which case we'll return it.
                 */
                *count = i;
-               status = BT_NOTIFICATION_ITERATOR_STATUS_OK;
+               status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
        }
 
        return status;
 }
 
 static
-void destroy_muxer_notif_iter(struct muxer_notif_iter *muxer_notif_iter)
+void destroy_muxer_msg_iter(struct muxer_msg_iter *muxer_msg_iter)
 {
-       if (!muxer_notif_iter) {
+       if (!muxer_msg_iter) {
                return;
        }
 
-       BT_LOGD("Destroying muxer component's notification iterator: "
-               "muxer-notif-iter-addr=%p", muxer_notif_iter);
+       BT_LOGD("Destroying muxer component's message iterator: "
+               "muxer-msg-iter-addr=%p", muxer_msg_iter);
+
+       if (muxer_msg_iter->active_muxer_upstream_msg_iters) {
+               BT_LOGD_STR("Destroying muxer's active upstream message iterator wrappers.");
+               g_ptr_array_free(
+                       muxer_msg_iter->active_muxer_upstream_msg_iters, TRUE);
+       }
 
-       if (muxer_notif_iter->muxer_upstream_notif_iters) {
-               BT_LOGD_STR("Destroying muxer's upstream notification iterator wrappers.");
+       if (muxer_msg_iter->ended_muxer_upstream_msg_iters) {
+               BT_LOGD_STR("Destroying muxer's ended upstream message iterator wrappers.");
                g_ptr_array_free(
-                       muxer_notif_iter->muxer_upstream_notif_iters, TRUE);
+                       muxer_msg_iter->ended_muxer_upstream_msg_iters, TRUE);
        }
 
-       g_list_free(muxer_notif_iter->newly_connected_priv_ports);
-       g_free(muxer_notif_iter);
+       g_free(muxer_msg_iter);
 }
 
 static
-int muxer_notif_iter_init_newly_connected_ports(struct muxer_comp *muxer_comp,
-               struct muxer_notif_iter *muxer_notif_iter)
+int muxer_msg_iter_init_upstream_iterators(struct muxer_comp *muxer_comp,
+               struct muxer_msg_iter *muxer_msg_iter)
 {
-       struct bt_component *comp;
        int64_t count;
        int64_t i;
        int ret = 0;
 
-       /*
-        * Add the connected input ports to this muxer notification
-        * iterator's list of newly connected ports. They will be
-        * handled by muxer_notif_iter_handle_newly_connected_ports().
-        */
-       comp = bt_component_borrow_from_private(muxer_comp->priv_comp);
-       BT_ASSERT(comp);
-       count = bt_component_filter_get_input_port_count(comp);
+       count = bt_component_filter_get_input_port_count(
+               bt_self_component_filter_as_component_filter(
+                       muxer_comp->self_comp));
        if (count < 0) {
-               BT_LOGD("No input port to initialize for muxer component's notification iterator: "
-                       "muxer-comp-addr=%p, muxer-notif-iter-addr=%p",
-                       muxer_comp, muxer_notif_iter);
+               BT_LOGD("No input port to initialize for muxer component's message iterator: "
+                       "muxer-comp-addr=%p, muxer-msg-iter-addr=%p",
+                       muxer_comp, muxer_msg_iter);
                goto end;
        }
 
        for (i = 0; i < count; i++) {
-               struct bt_private_port *priv_port =
-                       bt_private_component_filter_get_input_private_port_by_index(
-                               muxer_comp->priv_comp, i);
-               struct bt_port *port;
-
-               BT_ASSERT(priv_port);
-               port = bt_port_borrow_from_private(priv_port);
+               bt_self_component_port_input_message_iterator *upstream_msg_iter;
+               struct muxer_upstream_msg_iter *muxer_upstream_msg_iter;
+               bt_self_component_port_input *self_port =
+                       bt_self_component_filter_borrow_input_port_by_index(
+                               muxer_comp->self_comp, i);
+               const bt_port *port;
+
+               BT_ASSERT(self_port);
+               port = bt_self_component_port_as_port(
+                       bt_self_component_port_input_as_self_component_port(
+                               self_port));
                BT_ASSERT(port);
 
                if (!bt_port_is_connected(port)) {
-                       BT_LOGD("Skipping input port: not connected: "
-                               "muxer-comp-addr=%p, port-addr=%p, port-name\"%s\"",
-                               muxer_comp, port, bt_port_get_name(port));
-                       bt_put(priv_port);
+                       /* Skip non-connected port */
                        continue;
                }
 
-               bt_put(priv_port);
-               muxer_notif_iter->newly_connected_priv_ports =
-                       g_list_append(
-                               muxer_notif_iter->newly_connected_priv_ports,
-                               priv_port);
-               if (!muxer_notif_iter->newly_connected_priv_ports) {
-                       BT_LOGE("Cannot append port to muxer's notification iterator list of newly connected input ports: "
-                               "port-addr=%p, port-name=\"%s\", "
-                               "muxer-notif-iter-addr=%p", port,
-                               bt_port_get_name(port), muxer_notif_iter);
+               upstream_msg_iter = create_msg_iter_on_input_port(self_port);
+               if (!upstream_msg_iter) {
+                       /* create_msg_iter_on_input_port() logs errors */
+                       BT_ASSERT(!upstream_msg_iter);
                        ret = -1;
                        goto end;
                }
 
-               BT_LOGD("Appended port to muxer's notification iterator list of newly connected input ports: "
-                       "port-addr=%p, port-name=\"%s\", "
-                       "muxer-notif-iter-addr=%p", port,
-                       bt_port_get_name(port), muxer_notif_iter);
+               muxer_upstream_msg_iter =
+                       muxer_msg_iter_add_upstream_msg_iter(
+                               muxer_msg_iter, upstream_msg_iter);
+               bt_self_component_port_input_message_iterator_put_ref(
+                       upstream_msg_iter);
+               if (!muxer_upstream_msg_iter) {
+                       /* muxer_msg_iter_add_upstream_msg_iter() logs errors */
+                       ret = -1;
+                       goto end;
+               }
        }
 
 end:
@@ -1256,279 +1248,276 @@ end:
 }
 
 BT_HIDDEN
-enum bt_notification_iterator_status muxer_notif_iter_init(
-               struct bt_private_connection_private_notification_iterator *priv_notif_iter,
-               struct bt_private_port *output_priv_port)
+bt_self_message_iterator_status muxer_msg_iter_init(
+               bt_self_message_iterator *self_msg_iter,
+               bt_self_component_filter *self_comp,
+               bt_self_component_port_output *port)
 {
        struct muxer_comp *muxer_comp = NULL;
-       struct muxer_notif_iter *muxer_notif_iter = NULL;
-       struct bt_private_component *priv_comp = NULL;
-       enum bt_notification_iterator_status status =
-               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       struct muxer_msg_iter *muxer_msg_iter = NULL;
+       bt_self_message_iterator_status status =
+               BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
        int ret;
 
-       priv_comp = bt_private_connection_private_notification_iterator_get_private_component(
-               priv_notif_iter);
-       BT_ASSERT(priv_comp);
-       muxer_comp = bt_private_component_get_user_data(priv_comp);
+       muxer_comp = bt_self_component_get_data(
+               bt_self_component_filter_as_self_component(self_comp));
        BT_ASSERT(muxer_comp);
-       BT_LOGD("Initializing muxer component's notification iterator: "
-               "comp-addr=%p, muxer-comp-addr=%p, notif-iter-addr=%p",
-               priv_comp, muxer_comp, priv_notif_iter);
+       BT_LOGD("Initializing muxer component's message iterator: "
+               "comp-addr=%p, muxer-comp-addr=%p, msg-iter-addr=%p",
+               self_comp, muxer_comp, self_msg_iter);
 
-       if (muxer_comp->initializing_muxer_notif_iter) {
+       if (muxer_comp->initializing_muxer_msg_iter) {
                /*
                 * Weird, unhandled situation detected: downstream
-                * creates a muxer notification iterator while creating
-                * another muxer notification iterator (same component).
+                * creates a muxer message iterator while creating
+                * another muxer message iterator (same component).
                 */
-               BT_LOGE("Recursive initialization of muxer component's notification iterator: "
-                       "comp-addr=%p, muxer-comp-addr=%p, notif-iter-addr=%p",
-                       priv_comp, muxer_comp, priv_notif_iter);
+               BT_LOGE("Recursive initialization of muxer component's message iterator: "
+                       "comp-addr=%p, muxer-comp-addr=%p, msg-iter-addr=%p",
+                       self_comp, muxer_comp, self_msg_iter);
                goto error;
        }
 
-       muxer_comp->initializing_muxer_notif_iter = true;
-       muxer_notif_iter = g_new0(struct muxer_notif_iter, 1);
-       if (!muxer_notif_iter) {
-               BT_LOGE_STR("Failed to allocate one muxer component's notification iterator.");
+       muxer_comp->initializing_muxer_msg_iter = true;
+       muxer_msg_iter = g_new0(struct muxer_msg_iter, 1);
+       if (!muxer_msg_iter) {
+               BT_LOGE_STR("Failed to allocate one muxer component's message iterator.");
                goto error;
        }
 
-       muxer_notif_iter->last_returned_ts_ns = INT64_MIN;
-       muxer_notif_iter->muxer_upstream_notif_iters =
+       muxer_msg_iter->last_returned_ts_ns = INT64_MIN;
+       muxer_msg_iter->active_muxer_upstream_msg_iters =
                g_ptr_array_new_with_free_func(
-                       (GDestroyNotify) destroy_muxer_upstream_notif_iter);
-       if (!muxer_notif_iter->muxer_upstream_notif_iters) {
+                       (GDestroyNotify) destroy_muxer_upstream_msg_iter);
+       if (!muxer_msg_iter->active_muxer_upstream_msg_iters) {
                BT_LOGE_STR("Failed to allocate a GPtrArray.");
                goto error;
        }
 
-       /*
-        * Add the muxer notification iterator to the component's array
-        * of muxer notification iterators here because
-        * muxer_notif_iter_init_newly_connected_ports() can cause
-        * muxer_port_connected() to be called, which adds the newly
-        * connected port to each muxer notification iterator's list of
-        * newly connected ports.
-        */
-       g_ptr_array_add(muxer_comp->muxer_notif_iters, muxer_notif_iter);
-       ret = muxer_notif_iter_init_newly_connected_ports(muxer_comp,
-               muxer_notif_iter);
+       muxer_msg_iter->ended_muxer_upstream_msg_iters =
+               g_ptr_array_new_with_free_func(
+                       (GDestroyNotify) destroy_muxer_upstream_msg_iter);
+       if (!muxer_msg_iter->ended_muxer_upstream_msg_iters) {
+               BT_LOGE_STR("Failed to allocate a GPtrArray.");
+               goto error;
+       }
+
+       ret = muxer_msg_iter_init_upstream_iterators(muxer_comp,
+               muxer_msg_iter);
        if (ret) {
-               BT_LOGE("Cannot initialize newly connected input ports for muxer component's notification iterator: "
+               BT_LOGE("Cannot initialize connected input ports for muxer component's message iterator: "
                        "comp-addr=%p, muxer-comp-addr=%p, "
-                       "muxer-notif-iter-addr=%p, notif-iter-addr=%p, ret=%d",
-                       priv_comp, muxer_comp, muxer_notif_iter,
-                       priv_notif_iter, ret);
+                       "muxer-msg-iter-addr=%p, msg-iter-addr=%p, ret=%d",
+                       self_comp, muxer_comp, muxer_msg_iter,
+                       self_msg_iter, ret);
                goto error;
        }
 
-       ret = bt_private_connection_private_notification_iterator_set_user_data(priv_notif_iter,
-               muxer_notif_iter);
-       BT_ASSERT(ret == 0);
-       BT_LOGD("Initialized muxer component's notification iterator: "
-               "comp-addr=%p, muxer-comp-addr=%p, muxer-notif-iter-addr=%p, "
-               "notif-iter-addr=%p",
-               priv_comp, muxer_comp, muxer_notif_iter, priv_notif_iter);
+       bt_self_message_iterator_set_data(self_msg_iter, muxer_msg_iter);
+       BT_LOGD("Initialized muxer component's message iterator: "
+               "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
+               "msg-iter-addr=%p",
+               self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
        goto end;
 
 error:
-       if (g_ptr_array_index(muxer_comp->muxer_notif_iters,
-                       muxer_comp->muxer_notif_iters->len - 1) == muxer_notif_iter) {
-               g_ptr_array_remove_index(muxer_comp->muxer_notif_iters,
-                       muxer_comp->muxer_notif_iters->len - 1);
-       }
-
-       destroy_muxer_notif_iter(muxer_notif_iter);
-       ret = bt_private_connection_private_notification_iterator_set_user_data(priv_notif_iter,
-               NULL);
-       BT_ASSERT(ret == 0);
-       status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+       destroy_muxer_msg_iter(muxer_msg_iter);
+       bt_self_message_iterator_set_data(self_msg_iter, NULL);
+       status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
 
 end:
-       muxer_comp->initializing_muxer_notif_iter = false;
-       bt_put(priv_comp);
+       muxer_comp->initializing_muxer_msg_iter = false;
        return status;
 }
 
 BT_HIDDEN
-void muxer_notif_iter_finalize(
-               struct bt_private_connection_private_notification_iterator *priv_notif_iter)
+void muxer_msg_iter_finalize(bt_self_message_iterator *self_msg_iter)
 {
-       struct muxer_notif_iter *muxer_notif_iter =
-               bt_private_connection_private_notification_iterator_get_user_data(priv_notif_iter);
-       struct bt_private_component *priv_comp = NULL;
+       struct muxer_msg_iter *muxer_msg_iter =
+               bt_self_message_iterator_get_data(self_msg_iter);
+       bt_self_component *self_comp = NULL;
        struct muxer_comp *muxer_comp = NULL;
 
-       priv_comp = bt_private_connection_private_notification_iterator_get_private_component(
-               priv_notif_iter);
-       BT_ASSERT(priv_comp);
-       muxer_comp = bt_private_component_get_user_data(priv_comp);
-       BT_LOGD("Finalizing muxer component's notification iterator: "
-               "comp-addr=%p, muxer-comp-addr=%p, muxer-notif-iter-addr=%p, "
-               "notif-iter-addr=%p",
-               priv_comp, muxer_comp, muxer_notif_iter, priv_notif_iter);
-
-       if (muxer_comp) {
-               (void) g_ptr_array_remove_fast(muxer_comp->muxer_notif_iters,
-                       muxer_notif_iter);
-               destroy_muxer_notif_iter(muxer_notif_iter);
+       self_comp = bt_self_message_iterator_borrow_component(
+               self_msg_iter);
+       BT_ASSERT(self_comp);
+       muxer_comp = bt_self_component_get_data(self_comp);
+       BT_LOGD("Finalizing muxer component's message iterator: "
+               "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
+               "msg-iter-addr=%p",
+               self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
+
+       if (muxer_msg_iter) {
+               destroy_muxer_msg_iter(muxer_msg_iter);
        }
-
-       bt_put(priv_comp);
 }
 
 BT_HIDDEN
-enum bt_notification_iterator_status muxer_notif_iter_next(
-               struct bt_private_connection_private_notification_iterator *priv_notif_iter,
-               bt_notification_array notifs, uint64_t capacity,
+bt_self_message_iterator_status muxer_msg_iter_next(
+               bt_self_message_iterator *self_msg_iter,
+               bt_message_array_const msgs, uint64_t capacity,
                uint64_t *count)
 {
-       enum bt_notification_iterator_status status;
-       struct muxer_notif_iter *muxer_notif_iter =
-               bt_private_connection_private_notification_iterator_get_user_data(priv_notif_iter);
-       struct bt_private_component *priv_comp = NULL;
+       bt_self_message_iterator_status status;
+       struct muxer_msg_iter *muxer_msg_iter =
+               bt_self_message_iterator_get_data(self_msg_iter);
+       bt_self_component *self_comp = NULL;
        struct muxer_comp *muxer_comp = NULL;
 
-       BT_ASSERT(muxer_notif_iter);
-       priv_comp = bt_private_connection_private_notification_iterator_get_private_component(
-               priv_notif_iter);
-       BT_ASSERT(priv_comp);
-       muxer_comp = bt_private_component_get_user_data(priv_comp);
+       BT_ASSERT(muxer_msg_iter);
+       self_comp = bt_self_message_iterator_borrow_component(
+               self_msg_iter);
+       BT_ASSERT(self_comp);
+       muxer_comp = bt_self_component_get_data(self_comp);
        BT_ASSERT(muxer_comp);
-       BT_LOGV("Muxer component's notification iterator's \"next\" method called: "
-               "comp-addr=%p, muxer-comp-addr=%p, muxer-notif-iter-addr=%p, "
-               "notif-iter-addr=%p",
-               priv_comp, muxer_comp, muxer_notif_iter, priv_notif_iter);
+       BT_LOGV("Muxer component's message iterator's \"next\" method called: "
+               "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
+               "msg-iter-addr=%p",
+               self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
 
-       status = muxer_notif_iter_do_next(muxer_comp, muxer_notif_iter,
-               notifs, capacity, count);
+       status = muxer_msg_iter_do_next(muxer_comp, muxer_msg_iter,
+               msgs, capacity, count);
        if (status < 0) {
-               BT_LOGE("Cannot get next notification: "
-                       "comp-addr=%p, muxer-comp-addr=%p, muxer-notif-iter-addr=%p, "
-                       "notif-iter-addr=%p, status=%s",
-                       priv_comp, muxer_comp, muxer_notif_iter, priv_notif_iter,
-                       bt_notification_iterator_status_string(status));
+               BT_LOGE("Cannot get next message: "
+                       "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
+                       "msg-iter-addr=%p, status=%s",
+                       self_comp, muxer_comp, muxer_msg_iter, self_msg_iter,
+                       bt_common_self_message_iterator_status_string(status));
        } else {
-               BT_LOGV("Returning from muxer component's notification iterator's \"next\" method: "
+               BT_LOGV("Returning from muxer component's message iterator's \"next\" method: "
                        "status=%s",
-                       bt_notification_iterator_status_string(status));
+                       bt_common_self_message_iterator_status_string(status));
        }
 
-       bt_put(priv_comp);
        return status;
 }
 
 BT_HIDDEN
-enum bt_component_status muxer_port_connected(
-               struct bt_private_component *priv_comp,
-               struct bt_private_port *self_private_port,
-               struct bt_port *other_port)
+bt_self_component_status muxer_input_port_connected(
+               bt_self_component_filter *self_comp,
+               bt_self_component_port_input *self_port,
+               const bt_port_output *other_port)
 {
-       enum bt_component_status status = BT_COMPONENT_STATUS_OK;
-       struct bt_port *self_port =
-               bt_port_borrow_from_private(self_private_port);
-       struct muxer_comp *muxer_comp =
-               bt_private_component_get_user_data(priv_comp);
-       size_t i;
-       int ret;
+       bt_self_component_status status;
 
-       BT_ASSERT(self_port);
-       BT_ASSERT(muxer_comp);
-       BT_LOGD("Port connected: "
-               "comp-addr=%p, muxer-comp-addr=%p, "
-               "port-addr=%p, port-name=\"%s\", "
-               "other-port-addr=%p, other-port-name=\"%s\"",
-               priv_comp, muxer_comp, self_port, bt_port_get_name(self_port),
-               other_port, bt_port_get_name(other_port));
-
-       if (bt_port_get_type(self_port) == BT_PORT_TYPE_OUTPUT) {
+       status = add_available_input_port(self_comp);
+       if (status) {
+               /*
+                * Only way to report an error later since this
+                * method does not return anything.
+                */
+               BT_LOGE("Cannot add one muxer component's input port: "
+                       "status=%s",
+                       bt_self_component_status_string(status));
                goto end;
        }
 
-       for (i = 0; i < muxer_comp->muxer_notif_iters->len; i++) {
-               struct muxer_notif_iter *muxer_notif_iter =
-                       g_ptr_array_index(muxer_comp->muxer_notif_iters, i);
+end:
+       return status;
+}
+
+static inline
+bt_bool muxer_upstream_msg_iters_can_all_seek_beginning(
+               GPtrArray *muxer_upstream_msg_iters)
+{
+       uint64_t i;
+       bt_bool ret = BT_TRUE;
 
-               /*
-                * Add this port to the list of newly connected ports
-                * for this muxer notification iterator. We append at
-                * the end of this list while
-                * muxer_notif_iter_handle_newly_connected_ports()
-                * removes the nodes from the beginning.
-                */
-               muxer_notif_iter->newly_connected_priv_ports =
-                       g_list_append(
-                               muxer_notif_iter->newly_connected_priv_ports,
-                               self_private_port);
-               if (!muxer_notif_iter->newly_connected_priv_ports) {
-                       BT_LOGE("Cannot append port to muxer's notification iterator list of newly connected input ports: "
-                               "port-addr=%p, port-name=\"%s\", "
-                               "muxer-notif-iter-addr=%p", self_port,
-                               bt_port_get_name(self_port), muxer_notif_iter);
-                       status = BT_COMPONENT_STATUS_ERROR;
+       for (i = 0; i < muxer_upstream_msg_iters->len; i++) {
+               struct muxer_upstream_msg_iter *upstream_msg_iter =
+                       muxer_upstream_msg_iters->pdata[i];
+
+               if (!bt_self_component_port_input_message_iterator_can_seek_beginning(
+                               upstream_msg_iter->msg_iter)) {
+                       ret = BT_FALSE;
                        goto end;
                }
+       }
+
+end:
+       return ret;
+}
 
-               BT_LOGD("Appended port to muxer's notification iterator list of newly connected input ports: "
-                       "port-addr=%p, port-name=\"%s\", "
-                       "muxer-notif-iter-addr=%p", self_port,
-                       bt_port_get_name(self_port), muxer_notif_iter);
+BT_HIDDEN
+bt_bool muxer_msg_iter_can_seek_beginning(
+               bt_self_message_iterator *self_msg_iter)
+{
+       struct muxer_msg_iter *muxer_msg_iter =
+               bt_self_message_iterator_get_data(self_msg_iter);
+       bt_bool ret = BT_TRUE;
+
+       if (!muxer_upstream_msg_iters_can_all_seek_beginning(
+                       muxer_msg_iter->active_muxer_upstream_msg_iters)) {
+               ret = BT_FALSE;
+               goto end;
        }
 
-       /* One less available input port */
-       muxer_comp->available_input_ports--;
-       ret = ensure_available_input_port(priv_comp);
-       if (ret) {
-               /*
-                * Only way to report an error later since this
-                * method does not return anything.
-                */
-               BT_LOGE("Cannot ensure that at least one muxer component's input port is available: "
-                       "muxer-comp-addr=%p, status=%s",
-                       muxer_comp, bt_component_status_string(ret));
-               status = BT_COMPONENT_STATUS_ERROR;
+       if (!muxer_upstream_msg_iters_can_all_seek_beginning(
+                       muxer_msg_iter->ended_muxer_upstream_msg_iters)) {
+               ret = BT_FALSE;
                goto end;
        }
 
 end:
-       return status;
+       return ret;
 }
 
 BT_HIDDEN
-void muxer_port_disconnected(struct bt_private_component *priv_comp,
-               struct bt_private_port *priv_port)
+bt_self_message_iterator_status muxer_msg_iter_seek_beginning(
+               bt_self_message_iterator *self_msg_iter)
 {
-       struct bt_port *port = bt_port_borrow_from_private(priv_port);
-       struct muxer_comp *muxer_comp =
-               bt_private_component_get_user_data(priv_comp);
+       struct muxer_msg_iter *muxer_msg_iter =
+               bt_self_message_iterator_get_data(self_msg_iter);
+       bt_message_iterator_status status = BT_MESSAGE_ITERATOR_STATUS_OK;
+       uint64_t i;
 
-       BT_ASSERT(port);
-       BT_ASSERT(muxer_comp);
-       BT_LOGD("Port disconnected: "
-               "comp-addr=%p, muxer-comp-addr=%p, port-addr=%p, "
-               "port-name=\"%s\"", priv_comp, muxer_comp,
-               port, bt_port_get_name(port));
+       /* Seek all ended upstream iterators first */
+       for (i = 0; i < muxer_msg_iter->ended_muxer_upstream_msg_iters->len;
+                       i++) {
+               struct muxer_upstream_msg_iter *upstream_msg_iter =
+                       muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i];
 
-       /*
-        * There's nothing special to do when a port is disconnected
-        * because this component deals with upstream notification
-        * iterators which were already created thanks to connected
-        * ports. The fact that the port is disconnected does not cancel
-        * the upstream notification iterators created using its
-        * connection: they still exist, even if the connection is dead.
-        * The only way to remove an upstream notification iterator is
-        * for its "next" operation to return
-        * BT_NOTIFICATION_ITERATOR_STATUS_END.
-        */
-       if (bt_port_get_type(port) == BT_PORT_TYPE_INPUT) {
-               /* One more available input port */
-               muxer_comp->available_input_ports++;
-               BT_LOGD("Leaving disconnected input port available for future connections: "
-                       "comp-addr=%p, muxer-comp-addr=%p, port-addr=%p, "
-                       "port-name=\"%s\", avail-input-port-count=%zu",
-                       priv_comp, muxer_comp, port, bt_port_get_name(port),
-                       muxer_comp->available_input_ports);
+               status = bt_self_component_port_input_message_iterator_seek_beginning(
+                       upstream_msg_iter->msg_iter);
+               if (status != BT_MESSAGE_ITERATOR_STATUS_OK) {
+                       goto end;
+               }
+
+               empty_message_queue(upstream_msg_iter);
        }
+
+       /* Seek all previously active upstream iterators */
+       for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
+                       i++) {
+               struct muxer_upstream_msg_iter *upstream_msg_iter =
+                       muxer_msg_iter->active_muxer_upstream_msg_iters->pdata[i];
+
+               status = bt_self_component_port_input_message_iterator_seek_beginning(
+                       upstream_msg_iter->msg_iter);
+               if (status != BT_MESSAGE_ITERATOR_STATUS_OK) {
+                       goto end;
+               }
+
+               empty_message_queue(upstream_msg_iter);
+       }
+
+       /* Make them all active */
+       for (i = 0; i < muxer_msg_iter->ended_muxer_upstream_msg_iters->len;
+                       i++) {
+               struct muxer_upstream_msg_iter *upstream_msg_iter =
+                       muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i];
+
+               g_ptr_array_add(muxer_msg_iter->active_muxer_upstream_msg_iters,
+                       upstream_msg_iter);
+               muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i] = NULL;
+       }
+
+       g_ptr_array_remove_range(muxer_msg_iter->ended_muxer_upstream_msg_iters,
+               0, muxer_msg_iter->ended_muxer_upstream_msg_iters->len);
+       muxer_msg_iter->last_returned_ts_ns = INT64_MIN;
+       muxer_msg_iter->clock_class_expectation =
+               MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY;
+
+end:
+       return (bt_self_message_iterator_status) status;
 }
This page took 0.064907 seconds and 4 git commands to generate.