Add utils.muxer component class
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 6 Apr 2017 20:30:33 +0000 (16:30 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sun, 28 May 2017 16:57:41 +0000 (12:57 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
configure.ac
plugins/muxer/Makefile.am [deleted file]
plugins/muxer/muxer.c [deleted file]
plugins/muxer/muxer.h [deleted file]
plugins/utils/Makefile.am
plugins/utils/muxer/Makefile.am [new file with mode: 0644]
plugins/utils/muxer/muxer.c [new file with mode: 0644]
plugins/utils/muxer/muxer.h [new file with mode: 0644]
plugins/utils/plugin.c

index 753a7778b4582847de56bc8ab2e3273a226697d1..aea0b968d02e6ca41da00a12a696143c0b0503fe 100644 (file)
@@ -497,13 +497,13 @@ AC_CONFIG_FILES([
        plugins/ctf/common/notif-iter/Makefile
        plugins/ctf/fs/Makefile
        plugins/ctf/lttng-live/Makefile
-       plugins/muxer/Makefile
        plugins/text/Makefile
        plugins/text/pretty/Makefile
        plugins/writer/Makefile
        plugins/utils/Makefile
        plugins/utils/dummy/Makefile
        plugins/utils/trimmer/Makefile
+       plugins/utils/muxer/Makefile
        python-plugin-provider/Makefile
        plugins/libctfcopytrace/Makefile
        plugins/debug-info/Makefile
diff --git a/plugins/muxer/Makefile.am b/plugins/muxer/Makefile.am
deleted file mode 100644 (file)
index 156e375..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/plugins
-
-SUBDIRS = .
-
-plugindir = "$(PLUGINSDIR)"
-plugin_LTLIBRARIES = libbabeltrace-plugin-muxer.la
-
-libbabeltrace_plugin_muxer_la_SOURCES = \
-       muxer.c \
-       muxer.h
-
-libbabeltrace_plugin_muxer_la_LDFLAGS = \
-       -version-info $(BABELTRACE_LIBRARY_VERSION)
-
-libbabeltrace_plugin_muxer_la_LIBADD = \
-       $(top_builddir)/lib/libbabeltrace.la
diff --git a/plugins/muxer/muxer.c b/plugins/muxer/muxer.c
deleted file mode 100644 (file)
index 5ce38d8..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * muxer.c
- *
- * Babeltrace Trace Muxer
- *
- * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include <babeltrace/plugin/plugin-dev.h>
-#include <babeltrace/graph/component.h>
-#include <babeltrace/graph/component-filter.h>
-#include <babeltrace/graph/notification.h>
-#include <babeltrace/graph/notification-iterator.h>
-#include <babeltrace/graph/notification-event.h>
-#include <plugins-common.h>
-#include "muxer.h"
-
-static
-void destroy_muxer_data(struct muxer *muxer)
-{
-       g_free(muxer);
-}
-
-static
-struct muxer *create_muxer(void)
-{
-       struct muxer *muxer;
-
-       muxer = g_new0(struct muxer, 1);
-       if (!muxer) {
-               goto end;
-       }
-end:
-       return muxer;
-}
-
-static
-void finalize_muxer(struct bt_private_component *component)
-{
-       void *data = bt_private_component_get_user_data(component);
-
-       destroy_muxer_data(data);
-}
-
-enum bt_component_status muxer_component_init(
-       struct bt_private_component *component, struct bt_value *params,
-       UNUSED_VAR void *init_method_data)
-{
-       enum bt_component_status ret;
-       struct muxer *muxer = create_muxer();
-
-       if (!muxer) {
-               ret = BT_COMPONENT_STATUS_NOMEM;
-               goto end;
-       }
-
-       ret = bt_private_component_set_user_data(component, muxer);
-       if (ret != BT_COMPONENT_STATUS_OK) {
-               goto error;
-       }
-end:
-       return ret;
-error:
-       destroy_muxer_data(muxer);
-       return ret;
-}
-
-static
-struct bt_notification_iterator_next_return muxer_iterator_next(
-               struct bt_private_notification_iterator *iterator)
-{
-       struct bt_notification_iterator_next_return ret = {
-               .status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR,
-       };
-
-       return ret;
-}
-
-/* Initialize plug-in entry points. */
-BT_PLUGIN(muxer);
-BT_PLUGIN_DESCRIPTION("Babeltrace Trace Muxer Plug-In.");
-BT_PLUGIN_AUTHOR("Jérémie Galarneau");
-BT_PLUGIN_LICENSE("MIT");
-BT_PLUGIN_FILTER_COMPONENT_CLASS(muxer, muxer_iterator_next);
-BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION(muxer,
-       "Time-correlate multiple traces.");
-BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD(muxer, muxer_component_init);
-BT_PLUGIN_FILTER_COMPONENT_CLASS_FINALIZE_METHOD(muxer, finalize_muxer);
diff --git a/plugins/muxer/muxer.h b/plugins/muxer/muxer.h
deleted file mode 100644 (file)
index 7bf8910..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef BABELTRACE_PLUGIN_MUXER_H
-#define BABELTRACE_PLUGIN_MUXER_H
-
-/*
- * BabelTrace - Trace Muxer Plug-in
- *
- * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include <stdbool.h>
-#include <babeltrace/babeltrace-internal.h>
-
-struct muxer {
-       GHashTable *trace_clocks;
-};
-
-#endif /* BABELTRACE_PLUGIN_MUXER_H */
index b4d0573985563b9651c27b9ddb3358436845ec9f..7cc7c842745dde0accb6359c5ea1eff493a9bd5b 100644 (file)
@@ -1,6 +1,6 @@
 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/plugins
 
-SUBDIRS = dummy trimmer .
+SUBDIRS = dummy trimmer muxer .
 
 plugindir = "$(PLUGINSDIR)"
 plugin_LTLIBRARIES = libbabeltrace-plugin-utils.la
@@ -11,4 +11,5 @@ libbabeltrace_plugin_utils_la_LDFLAGS = \
 libbabeltrace_plugin_utils_la_LIBADD = \
        $(top_builddir)/lib/libbabeltrace.la \
        dummy/libbabeltrace-plugin-dummy-cc.la \
-       trimmer/libbabeltrace-plugin-trimmer.la
+       trimmer/libbabeltrace-plugin-trimmer.la \
+       muxer/libbabeltrace-plugin-muxer.la
diff --git a/plugins/utils/muxer/Makefile.am b/plugins/utils/muxer/Makefile.am
new file mode 100644 (file)
index 0000000..f69d46a
--- /dev/null
@@ -0,0 +1,4 @@
+AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/plugins
+
+noinst_LTLIBRARIES = libbabeltrace-plugin-muxer.la
+libbabeltrace_plugin_muxer_la_SOURCES = muxer.c muxer.h
diff --git a/plugins/utils/muxer/muxer.c b/plugins/utils/muxer/muxer.c
new file mode 100644 (file)
index 0000000..265d653
--- /dev/null
@@ -0,0 +1,993 @@
+/*
+ * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/ctf-ir/clock-class.h>
+#include <babeltrace/ctf-ir/event.h>
+#include <babeltrace/graph/clock-class-priority-map.h>
+#include <babeltrace/graph/component-filter.h>
+#include <babeltrace/graph/component.h>
+#include <babeltrace/graph/notification-event.h>
+#include <babeltrace/graph/notification-inactivity.h>
+#include <babeltrace/graph/notification-iterator.h>
+#include <babeltrace/graph/notification.h>
+#include <babeltrace/graph/port.h>
+#include <babeltrace/graph/private-component-filter.h>
+#include <babeltrace/graph/private-component.h>
+#include <babeltrace/graph/private-component.h>
+#include <babeltrace/graph/private-connection.h>
+#include <babeltrace/graph/private-notification-iterator.h>
+#include <babeltrace/graph/private-port.h>
+#include <plugins-common.h>
+#include <glib.h>
+#include <assert.h>
+
+struct muxer_comp {
+       /* Array of struct bt_private_notification_iterator * (weak refs) */
+       GPtrArray *muxer_notif_iters;
+
+       /* Weak ref */
+       struct bt_private_component *priv_comp;
+       unsigned int next_port_num;
+       size_t available_input_ports;
+       bool error;
+};
+
+struct muxer_upstream_notif_iter {
+       /* Owned by this */
+       struct bt_notification_iterator *notif_iter;
+
+       /* Owned by this*/
+       struct bt_private_port *priv_port;
+};
+
+
+struct muxer_notif_iter {
+       /* Array of struct muxer_upstream_notif_iter * (owned by this) */
+       GPtrArray *muxer_upstream_notif_iters;
+
+       /* Array of struct muxer_upstream_notif_iter * (weak refs) */
+       GPtrArray *muxer_upstream_notif_iters_retry;
+
+       /* Next thing to return by the "next" method */
+       struct bt_notification_iterator_next_return next_next_return;
+       int64_t next_next_return_ts_ns;
+
+       /* Last time returned in a notification */
+       int64_t last_returned_ts_ns;
+};
+
+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_notif_iter *muxer_upstream_notif_iter =
+               g_new0(struct muxer_upstream_notif_iter, 1);
+
+       if (!muxer_upstream_notif_iter) {
+               goto end;
+       }
+
+       muxer_upstream_notif_iter->notif_iter = bt_get(notif_iter);
+       muxer_upstream_notif_iter->priv_port = bt_get(priv_port);
+       g_ptr_array_add(muxer_notif_iter->muxer_upstream_notif_iters,
+               muxer_upstream_notif_iter);
+
+end:
+       return muxer_upstream_notif_iter;
+}
+
+static inline
+bool muxer_notif_iter_has_upstream_notif_iter_to_retry(
+               struct muxer_notif_iter *muxer_notif_iter)
+{
+       assert(muxer_notif_iter);
+       return muxer_notif_iter->muxer_upstream_notif_iters_retry->len > 0;
+}
+
+static
+void muxer_notif_iter_add_upstream_notif_iter_to_retry(
+               struct muxer_notif_iter *muxer_notif_iter,
+               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
+{
+       assert(muxer_notif_iter);
+       assert(muxer_upstream_notif_iter);
+       g_ptr_array_add(muxer_notif_iter->muxer_upstream_notif_iters_retry,
+               muxer_upstream_notif_iter);
+}
+
+static
+void destroy_muxer_upstream_notif_iter(
+               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
+{
+       if (!muxer_upstream_notif_iter) {
+               return;
+       }
+
+       bt_put(muxer_upstream_notif_iter->notif_iter);
+       bt_put(muxer_upstream_notif_iter->priv_port);
+       g_free(muxer_upstream_notif_iter);
+}
+
+static
+bool muxer_notif_iter_has_upstream_notif_iter_on_port(
+               struct muxer_notif_iter *muxer_notif_iter,
+               struct bt_private_port *priv_port)
+{
+       size_t i;
+       bool exists = false;
+
+       for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters->len; i++) {
+               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
+                       g_ptr_array_index(
+                               muxer_notif_iter->muxer_upstream_notif_iters, i);
+
+               if (muxer_upstream_notif_iter->priv_port == priv_port) {
+                       exists = true;
+                       goto end;
+               }
+       }
+
+end:
+       return exists;
+}
+
+static
+int ensure_available_input_port(struct bt_private_component *priv_comp)
+{
+       struct muxer_comp *muxer_comp =
+               bt_private_component_get_user_data(priv_comp);
+       int ret = 0;
+       GString *port_name = NULL;
+       void *priv_port = NULL;
+
+       assert(muxer_comp);
+
+       if (muxer_comp->available_input_ports >= 1) {
+               goto end;
+       }
+
+       port_name = g_string_new("in");
+       if (!port_name) {
+               ret = -1;
+               goto end;
+       }
+
+       g_string_append_printf(port_name, "%u", muxer_comp->next_port_num);
+       priv_port = bt_private_component_filter_add_input_private_port(
+               priv_comp, port_name->str);
+       if (!priv_port) {
+               ret = -1;
+               goto end;
+       }
+
+       muxer_comp->available_input_ports++;
+       muxer_comp->next_port_num++;
+
+end:
+       if (port_name) {
+               g_string_free(port_name, TRUE);
+       }
+
+       BT_PUT(priv_port);
+       return ret;
+}
+
+static
+int remove_default_ports(struct bt_private_component *priv_comp)
+{
+       struct bt_private_port *priv_port;
+       int ret = 0;
+
+       priv_port = bt_private_component_filter_get_default_input_private_port(
+               priv_comp);
+       if (priv_port) {
+               ret = bt_private_port_remove_from_component(priv_port);
+               if (ret) {
+                       goto end;
+               }
+       }
+
+       bt_put(priv_port);
+       priv_port = bt_private_component_filter_get_default_output_private_port(
+               priv_comp);
+       if (priv_port) {
+               ret = bt_private_port_remove_from_component(priv_port);
+               if (ret) {
+                       goto end;
+               }
+       }
+
+end:
+       bt_put(priv_port);
+       return ret;
+}
+
+static
+int create_output_port(struct bt_private_component *priv_comp)
+{
+       void *priv_port;
+       int ret = 0;
+
+       priv_port = bt_private_component_filter_add_output_private_port(
+               priv_comp, "out");
+       if (!priv_port) {
+               ret = -1;
+       }
+
+       bt_put(priv_port);
+       return ret;
+}
+
+static
+void destroy_muxer_comp(struct muxer_comp *muxer_comp)
+{
+       if (!muxer_comp) {
+               return;
+       }
+
+       if (muxer_comp->muxer_notif_iters) {
+               g_ptr_array_free(muxer_comp->muxer_notif_iters, TRUE);
+       }
+
+       g_free(muxer_comp);
+}
+
+BT_HIDDEN
+enum bt_component_status muxer_init(
+               struct bt_private_component *priv_comp,
+               struct bt_value *params, void *init_data)
+{
+       int ret;
+       enum bt_component_status status = BT_COMPONENT_STATUS_OK;
+       struct muxer_comp *muxer_comp = g_new0(struct muxer_comp, 1);
+
+       if (!muxer_comp) {
+               goto error;
+       }
+
+       muxer_comp->muxer_notif_iters = g_ptr_array_new();
+       if (!muxer_comp->muxer_notif_iters) {
+               goto error;
+       }
+
+       muxer_comp->priv_comp = priv_comp;
+       ret = bt_private_component_set_user_data(priv_comp, muxer_comp);
+       assert(ret == 0);
+       ret = remove_default_ports(priv_comp);
+       if (ret) {
+               goto error;
+       }
+
+       ret = ensure_available_input_port(priv_comp);
+       if (ret) {
+               goto error;
+       }
+
+       ret = create_output_port(priv_comp);
+       if (ret) {
+               goto error;
+       }
+
+       goto end;
+
+error:
+       destroy_muxer_comp(muxer_comp);
+       ret = bt_private_component_set_user_data(priv_comp, NULL);
+       assert(ret == 0);
+       status = BT_COMPONENT_STATUS_ERROR;
+
+end:
+       return status;
+}
+
+BT_HIDDEN
+void muxer_finalize(struct bt_private_component *priv_comp)
+{
+       struct muxer_comp *muxer_comp =
+               bt_private_component_get_user_data(priv_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)
+{
+       struct bt_port *port = bt_port_from_private_port(priv_port);
+       struct bt_notification_iterator *notif_iter = NULL;
+       struct bt_private_connection *priv_conn = NULL;
+
+       assert(ret);
+       *ret = 0;
+       assert(port);
+
+       assert(bt_port_is_connected(port));
+       priv_conn = bt_private_port_get_private_connection(priv_port);
+       if (!priv_conn) {
+               *ret = -1;
+               goto end;
+       }
+
+       notif_iter = bt_private_connection_create_notification_iterator(
+               priv_conn);
+       if (!notif_iter) {
+               *ret = -1;
+               goto end;
+       }
+
+end:
+       bt_put(port);
+       bt_put(priv_conn);
+       return notif_iter;
+}
+
+static
+int get_notif_ts_ns(struct muxer_comp *muxer_comp,
+               struct bt_notification *notif, int64_t last_returned_ts_ns,
+               int64_t *ts_ns)
+{
+       struct bt_clock_class_priority_map *cc_prio_map = NULL;
+       struct bt_ctf_clock_class *clock_class = NULL;
+       struct bt_ctf_clock_value *clock_value = NULL;
+       struct bt_ctf_event *event = NULL;
+       int ret = 0;
+
+       assert(notif);
+       assert(ts_ns);
+
+       switch (bt_notification_get_type(notif)) {
+       case BT_NOTIFICATION_TYPE_EVENT:
+               cc_prio_map =
+                       bt_notification_event_get_clock_class_priority_map(
+                               notif);
+               break;
+
+       case BT_NOTIFICATION_TYPE_INACTIVITY:
+               cc_prio_map =
+                       bt_notification_event_get_clock_class_priority_map(
+                               notif);
+               break;
+       default:
+               /*
+                * All the other notifications have a higher
+                * priority.
+                */
+               *ts_ns = last_returned_ts_ns;
+               goto end;
+       }
+
+       if (!cc_prio_map) {
+               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) {
+               *ts_ns = last_returned_ts_ns;
+               goto end;
+       }
+
+       clock_class =
+               bt_clock_class_priority_map_get_highest_priority_clock_class(
+                       cc_prio_map);
+       if (!clock_class) {
+               goto error;
+       }
+
+       if (!bt_ctf_clock_class_get_is_absolute(clock_class)) {
+               goto error;
+       }
+
+       switch (bt_notification_get_type(notif)) {
+       case BT_NOTIFICATION_TYPE_EVENT:
+               event = bt_notification_event_get_event(notif);
+               if (!event) {
+                       goto error;
+               }
+
+               clock_value = bt_ctf_event_get_clock_value(event,
+                       clock_class);
+               break;
+       case BT_NOTIFICATION_TYPE_INACTIVITY:
+               clock_value = bt_notification_inactivity_get_clock_value(
+                       notif, clock_class);
+               break;
+       default:
+               assert(false);
+       }
+
+       if (!clock_value) {
+               goto error;
+       }
+
+       ret = bt_ctf_clock_value_get_value_ns_from_epoch(clock_value, ts_ns);
+       if (ret) {
+               goto error;
+       }
+
+       goto end;
+
+error:
+       ret = -1;
+
+end:
+       bt_put(cc_prio_map);
+       bt_put(event);
+       bt_put(clock_class);
+       bt_put(clock_value);
+       return ret;
+}
+
+static
+enum bt_notification_iterator_status
+muxer_notif_iter_youngest_upstream_notif_iter(
+               struct muxer_comp *muxer_comp,
+               struct muxer_notif_iter *muxer_notif_iter,
+               struct muxer_upstream_notif_iter **muxer_upstream_notif_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;
+
+       assert(muxer_comp);
+       assert(muxer_notif_iter);
+       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 done */
+                       continue;
+               }
+
+               notif = bt_notification_iterator_get_notification(
+                       cur_muxer_upstream_notif_iter->notif_iter);
+               assert(notif);
+               ret = get_notif_ts_ns(muxer_comp, notif,
+                       muxer_notif_iter->last_returned_ts_ns, &notif_ts_ns);
+               bt_put(notif);
+               if (ret) {
+                       *muxer_upstream_notif_iter = NULL;
+                       status = BT_NOTIFICATION_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;
+                       *ts_ns = youngest_ts_ns;
+               }
+       }
+
+       if (!*muxer_upstream_notif_iter) {
+               status = BT_NOTIFICATION_ITERATOR_STATUS_END;
+               *ts_ns = INT64_MIN;
+       }
+
+end:
+       return status;
+}
+
+static
+int muxer_notif_iter_set_next_next_return(struct muxer_comp *muxer_comp,
+               struct muxer_notif_iter *muxer_notif_iter)
+{
+       struct muxer_upstream_notif_iter *muxer_upstream_notif_iter;
+       struct bt_notification *notif = NULL;
+       enum bt_notification_iterator_status notif_iter_status;
+       int ret = 0;
+
+       if (muxer_notif_iter_has_upstream_notif_iter_to_retry(muxer_notif_iter)) {
+               /*
+                * At least one upstream notification iterator to retry:
+                * try again later.
+                */
+               muxer_notif_iter->next_next_return.status =
+                       BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
+               BT_PUT(muxer_notif_iter->next_next_return.notification);
+               goto end;
+       }
+
+       /*
+        * Pick the current youngest notification and advance this
+        * upstream notification iterator.
+        */
+       notif_iter_status =
+               muxer_notif_iter_youngest_upstream_notif_iter(muxer_comp,
+                       muxer_notif_iter, &muxer_upstream_notif_iter,
+                       &muxer_notif_iter->next_next_return_ts_ns);
+       if (notif_iter_status == BT_NOTIFICATION_ITERATOR_STATUS_END) {
+               /* No more active upstream notification iterator */
+               muxer_notif_iter->next_next_return.status =
+                       BT_NOTIFICATION_ITERATOR_STATUS_END;
+               BT_PUT(muxer_notif_iter->next_next_return.notification);
+               goto end;
+       }
+
+       if (notif_iter_status < 0) {
+               ret = -1;
+               goto end;
+       }
+
+       assert(muxer_upstream_notif_iter);
+       notif = bt_notification_iterator_get_notification(
+               muxer_upstream_notif_iter->notif_iter);
+       assert(notif);
+       muxer_notif_iter->next_next_return.status =
+               BT_NOTIFICATION_ITERATOR_STATUS_OK;
+       BT_MOVE(muxer_notif_iter->next_next_return.notification, notif);
+       notif_iter_status = bt_notification_iterator_next(
+               muxer_upstream_notif_iter->notif_iter);
+       if (notif_iter_status < 0) {
+               ret = -1;
+               goto end;
+       }
+
+       if (notif_iter_status == BT_NOTIFICATION_ITERATOR_STATUS_END) {
+               /* This upstream notification iterator is done */
+               BT_PUT(muxer_upstream_notif_iter->notif_iter);
+               goto ensure_monotonic;
+       }
+
+       assert(notif_iter_status == BT_NOTIFICATION_ITERATOR_STATUS_OK ||
+               notif_iter_status == BT_NOTIFICATION_ITERATOR_STATUS_AGAIN);
+
+       if (notif_iter_status == BT_NOTIFICATION_ITERATOR_STATUS_AGAIN) {
+               muxer_notif_iter_add_upstream_notif_iter_to_retry(
+                       muxer_notif_iter, muxer_upstream_notif_iter);
+       }
+
+ensure_monotonic:
+       /*
+        * Here we have the next "next" return value. It won't change
+        * until it is returned by the next call to our "next" method.
+        * If its time is less than the time of the last notification
+        * that our "next" method returned, then fail because the
+        * muxer's output wouldn't be monotonic.
+        */
+       if (muxer_notif_iter->next_next_return_ts_ns <
+                       muxer_notif_iter->last_returned_ts_ns) {
+               ret = -1;
+               goto end;
+       }
+
+       /*
+        * We are now sure that the next "next" return value will not
+        * change until it is returned by this muxer notification
+        * iterator. It is now safe to set the last returned time
+        * to this one.
+        */
+       muxer_notif_iter->last_returned_ts_ns =
+               muxer_notif_iter->next_next_return_ts_ns;
+
+end:
+       return ret;
+}
+
+static
+int muxer_notif_iter_update_upstream_notif_iters(struct muxer_comp *muxer_comp,
+               struct muxer_notif_iter *muxer_notif_iter)
+{
+       struct bt_component *comp = NULL;
+       int ret = 0;
+       uint64_t count;
+       size_t i;
+
+       comp = bt_component_from_private_component(muxer_comp->priv_comp);
+       assert(comp);
+       ret = bt_component_filter_get_input_port_count(comp, &count);
+       assert(ret == 0);
+
+       for (i = 0; i < count; i++) {
+               struct bt_private_port *priv_port =
+                       bt_private_component_filter_get_input_private_port_at_index(
+                               muxer_comp->priv_comp, i);
+               struct bt_port *port;
+               struct bt_notification_iterator *upstream_notif_iter;
+               enum bt_notification_iterator_status next_status;
+               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter;
+
+               assert(priv_port);
+
+               if (muxer_notif_iter_has_upstream_notif_iter_on_port(
+                               muxer_notif_iter, priv_port)) {
+                       bt_put(priv_port);
+                       continue;
+               }
+
+               port = bt_port_from_private_port(priv_port);
+
+               if (!bt_port_is_connected(port)) {
+                       bt_put(port);
+                       bt_put(priv_port);
+                       continue;
+               }
+
+               bt_put(port);
+               upstream_notif_iter = create_notif_iter_on_input_port(priv_port,
+                       &ret);
+               if (ret) {
+                       assert(!upstream_notif_iter);
+                       bt_put(priv_port);
+                       goto error;
+               }
+
+               next_status = bt_notification_iterator_next(
+                       upstream_notif_iter);
+               if (next_status < 0) {
+                       bt_put(priv_port);
+                       bt_put(upstream_notif_iter);
+                       ret = next_status;
+                       goto error;
+               }
+
+               if (next_status == BT_NOTIFICATION_ITERATOR_STATUS_END) {
+                       /* Already the end: do not even keep it */
+                       bt_put(priv_port);
+                       bt_put(upstream_notif_iter);
+                       continue;
+               }
+
+               assert(next_status == BT_NOTIFICATION_ITERATOR_STATUS_OK ||
+                       next_status == BT_NOTIFICATION_ITERATOR_STATUS_AGAIN);
+               muxer_upstream_notif_iter =
+                       muxer_notif_iter_add_upstream_notif_iter(
+                               muxer_notif_iter, upstream_notif_iter,
+                               priv_port);
+               if (!muxer_upstream_notif_iter) {
+                       bt_put(priv_port);
+                       bt_put(upstream_notif_iter);
+                       goto error;
+               }
+
+               if (next_status == BT_NOTIFICATION_ITERATOR_STATUS_AGAIN) {
+                       muxer_notif_iter_add_upstream_notif_iter_to_retry(
+                               muxer_notif_iter, muxer_upstream_notif_iter);
+               }
+
+               bt_put(priv_port);
+               bt_put(upstream_notif_iter);
+       }
+
+       goto end;
+
+error:
+       if (ret >= 0) {
+               ret = -1;
+       }
+
+end:
+       bt_put(comp);
+       return ret;
+}
+
+static
+void destroy_muxer_notif_iter(struct muxer_notif_iter *muxer_notif_iter)
+{
+       if (!muxer_notif_iter) {
+               return;
+       }
+
+       if (muxer_notif_iter->muxer_upstream_notif_iters) {
+               g_ptr_array_free(
+                       muxer_notif_iter->muxer_upstream_notif_iters, TRUE);
+       }
+
+       if (muxer_notif_iter->muxer_upstream_notif_iters_retry) {
+               g_ptr_array_free(
+                       muxer_notif_iter->muxer_upstream_notif_iters_retry,
+                       TRUE);
+       }
+
+       g_free(muxer_notif_iter);
+}
+
+BT_HIDDEN
+enum bt_notification_iterator_status muxer_notif_iter_init(
+               struct bt_private_notification_iterator *priv_notif_iter,
+               struct bt_private_port *output_priv_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;
+       int ret;
+
+       priv_comp = bt_private_notification_iterator_get_private_component(
+               priv_notif_iter);
+       assert(priv_comp);
+       muxer_comp = bt_private_component_get_user_data(priv_comp);
+       assert(muxer_comp);
+       muxer_notif_iter = g_new0(struct muxer_notif_iter, 1);
+       if (!muxer_notif_iter) {
+               goto error;
+       }
+
+       muxer_notif_iter->last_returned_ts_ns = INT64_MIN;
+       muxer_notif_iter->muxer_upstream_notif_iters =
+               g_ptr_array_new_with_free_func(
+                       (GDestroyNotify) destroy_muxer_upstream_notif_iter);
+       if (!muxer_notif_iter->muxer_upstream_notif_iters) {
+               goto error;
+       }
+
+       muxer_notif_iter->muxer_upstream_notif_iters_retry = g_ptr_array_new();
+       if (!muxer_notif_iter->muxer_upstream_notif_iters_retry) {
+               goto error;
+       }
+
+       /*
+        * Initial upstream notification iterator update: this creates
+        * one upstream notification iterator for each connected port
+        * without an upstream notification iterator (for this muxer
+        * notification iterator).
+        *
+        * At this point the next "next" return value is not set yet.
+        */
+       ret = muxer_notif_iter_update_upstream_notif_iters(muxer_comp,
+               muxer_notif_iter);
+       if (ret) {
+               goto error;
+       }
+
+       /*
+        * Set the initial "next" return value.
+        */
+       ret = muxer_notif_iter_set_next_next_return(muxer_comp,
+               muxer_notif_iter);
+       if (ret) {
+               goto error;
+       }
+
+       ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
+               muxer_notif_iter);
+       assert(ret == 0);
+       g_ptr_array_add(muxer_comp->muxer_notif_iters, muxer_notif_iter);
+       goto end;
+
+error:
+       destroy_muxer_notif_iter(muxer_notif_iter);
+       ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
+               NULL);
+       assert(ret == 0);
+       status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+
+end:
+       bt_put(priv_comp);
+       return status;
+}
+
+BT_HIDDEN
+void muxer_notif_iter_finalize(
+               struct bt_private_notification_iterator *priv_notif_iter)
+{
+       struct muxer_notif_iter *muxer_notif_iter =
+               bt_private_notification_iterator_get_user_data(priv_notif_iter);
+       struct bt_private_component *priv_comp = NULL;
+       struct muxer_comp *muxer_comp = NULL;
+
+       priv_comp = bt_private_notification_iterator_get_private_component(
+               priv_notif_iter);
+       assert(priv_comp);
+       muxer_comp = bt_private_component_get_user_data(priv_comp);
+
+       if (muxer_comp) {
+               (void) g_ptr_array_remove_fast(muxer_comp->muxer_notif_iters,
+                       muxer_notif_iter);
+               destroy_muxer_notif_iter(muxer_notif_iter);
+       }
+
+       bt_put(priv_comp);
+}
+
+BT_HIDDEN
+struct bt_notification_iterator_next_return muxer_notif_iter_next(
+               struct bt_private_notification_iterator *priv_notif_iter)
+{
+       struct bt_notification_iterator_next_return next_ret = {
+               .notification = NULL,
+       };
+       struct muxer_notif_iter *muxer_notif_iter =
+               bt_private_notification_iterator_get_user_data(priv_notif_iter);
+       struct bt_private_component *priv_comp = NULL;
+       struct muxer_comp *muxer_comp = NULL;
+       size_t i;
+       int ret;
+
+       assert(muxer_notif_iter);
+       priv_comp = bt_private_notification_iterator_get_private_component(
+               priv_notif_iter);
+       assert(priv_comp);
+       muxer_comp = bt_private_component_get_user_data(priv_comp);
+       assert(muxer_comp);
+
+       /* Are we in an error state set elsewhere? */
+       if (unlikely(muxer_comp->error)) {
+               goto error;
+       }
+
+       /*
+        * If we have upstream notification iterators to retry, retry
+        * them now. Each one we find which now has a notification or
+        * is in "end" state, we set it to NULL in this array. Then
+        * we remove all the NULL values from this array.
+        */
+       for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters_retry->len; i++) {
+               struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
+                       g_ptr_array_index(muxer_notif_iter->muxer_upstream_notif_iters_retry, i);
+               enum bt_notification_iterator_status status;
+
+               assert(muxer_upstream_notif_iter->notif_iter);
+               status = bt_notification_iterator_next(
+                       muxer_upstream_notif_iter->notif_iter);
+               if (status < 0) {
+                       /*
+                        * Technically we have a next "next" return
+                        * value which is ready for this call, but we're
+                        * failing within this call, so discard this
+                        * buffer.
+                        */
+                       goto error;
+               }
+
+               if (status == BT_NOTIFICATION_ITERATOR_STATUS_END) {
+                       /*
+                        * This upstream notification iterator is done.
+                        * Set it to NULL so that it's removed later.
+                        */
+                       g_ptr_array_index(muxer_notif_iter->muxer_upstream_notif_iters_retry,
+                               i) = NULL;
+                       BT_PUT(muxer_upstream_notif_iter->notif_iter);
+                       continue;
+               }
+
+               assert(status == BT_NOTIFICATION_ITERATOR_STATUS_OK ||
+                       status == BT_NOTIFICATION_ITERATOR_STATUS_AGAIN);
+
+               if (status == BT_NOTIFICATION_ITERATOR_STATUS_OK) {
+                       /*
+                        * This upstream notification iterator now has.
+                        * a notification. Remove it from this array.
+                        */
+                       g_ptr_array_index(muxer_notif_iter->muxer_upstream_notif_iters_retry,
+                               i) = NULL;
+                       continue;
+               }
+       }
+
+       /*
+        * Remove NULL values from the array of upstream notification
+        * iterators to retry.
+        */
+       while (g_ptr_array_remove_fast(
+               muxer_notif_iter->muxer_upstream_notif_iters_retry, NULL));
+
+       /* Take our next "next" next return value */
+       next_ret = muxer_notif_iter->next_next_return;
+       muxer_notif_iter->next_next_return.status =
+               BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+       muxer_notif_iter->next_next_return.notification = NULL;
+
+       /* Set the next "next" return value */
+       ret = muxer_notif_iter_set_next_next_return(muxer_comp,
+               muxer_notif_iter);
+       if (ret) {
+               goto error;
+       }
+
+       goto end;
+
+error:
+       BT_PUT(next_ret.notification);
+       next_ret.status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
+
+end:
+       bt_put(priv_comp);
+       return next_ret;
+}
+
+BT_HIDDEN
+void muxer_port_connected(
+               struct bt_private_component *priv_comp,
+               struct bt_private_port *self_private_port,
+               struct bt_port *other_port)
+{
+       struct bt_port *self_port =
+               bt_port_from_private_port(self_private_port);
+       struct muxer_comp *muxer_comp =
+               bt_private_component_get_user_data(priv_comp);
+       size_t i;
+       int ret;
+
+       assert(self_port);
+       assert(muxer_comp);
+
+       if (bt_port_get_type(self_port) == BT_PORT_TYPE_INPUT) {
+               int ret;
+
+               /* One less available input port */
+               muxer_comp->available_input_ports--;
+               ret = ensure_available_input_port(priv_comp);
+               if (ret) {
+                       muxer_comp->error = true;
+                       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);
+
+               /*
+                * Here we update the list of upstream notification
+                * iterators, but we do NOT call
+                * muxer_notif_iter_set_next_next_return() because we
+                * already have a next "next" return value at this point
+                * (right after the muxer notification iterator
+                * initialization, and always after).
+                */
+               ret = muxer_notif_iter_update_upstream_notif_iters(muxer_comp,
+                       muxer_notif_iter);
+               if (ret) {
+                       muxer_comp->error = true;
+                       goto end;
+               }
+       }
+
+end:
+       bt_put(self_port);
+}
+
+BT_HIDDEN
+void muxer_port_disconnected(struct bt_private_component *priv_comp,
+               struct bt_private_port *priv_port)
+{
+       struct bt_port *port = bt_port_from_private_port(priv_port);
+       struct muxer_comp *muxer_comp =
+               bt_private_component_get_user_data(priv_comp);
+
+       assert(port);
+       assert(muxer_comp);
+
+       if (bt_port_get_type(port) == BT_PORT_TYPE_INPUT) {
+               /* One more available input port */
+               muxer_comp->available_input_ports++;
+       }
+
+       bt_put(port);
+}
diff --git a/plugins/utils/muxer/muxer.h b/plugins/utils/muxer/muxer.h
new file mode 100644 (file)
index 0000000..be11ba4
--- /dev/null
@@ -0,0 +1,62 @@
+#ifndef BABELTRACE_PLUGINS_UTILS_MUXER_H
+#define BABELTRACE_PLUGINS_UTILS_MUXER_H
+
+/*
+ * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <babeltrace/babeltrace-internal.h>
+
+BT_HIDDEN
+enum bt_component_status muxer_init(
+               struct bt_private_component *priv_comp,
+               struct bt_value *params, void *init_data);
+
+BT_HIDDEN
+void muxer_finalize(
+               struct bt_private_component *priv_comp);
+
+BT_HIDDEN
+enum bt_notification_iterator_status muxer_notif_iter_init(
+               struct bt_private_notification_iterator *priv_notif_iter,
+               struct bt_private_port *priv_port);
+
+BT_HIDDEN
+void muxer_notif_iter_finalize(
+               struct bt_private_notification_iterator *priv_notif_iter);
+
+BT_HIDDEN
+struct bt_notification_iterator_next_return muxer_notif_iter_next(
+               struct bt_private_notification_iterator *priv_notif_iter);
+
+BT_HIDDEN
+void muxer_port_connected(
+               struct bt_private_component *priv_comp,
+               struct bt_private_port *self_private_port,
+               struct bt_port *other_port);
+
+BT_HIDDEN
+void muxer_port_disconnected(
+               struct bt_private_component *priv_comp,
+               struct bt_private_port *priv_port);
+
+#endif /* BABELTRACE_PLUGINS_UTILS_MUXER_H */
index 6dd7c85293e6d80ad473d06aced432dd8758e266..3f596299e8833784690b0a055dd64b711b5feb34 100644 (file)
 #include "dummy/dummy.h"
 #include "trimmer/trimmer.h"
 #include "trimmer/iterator.h"
+#include "muxer/muxer.h"
 
 BT_PLUGIN(utils);
-BT_PLUGIN_DESCRIPTION("Utilities.");
-BT_PLUGIN_AUTHOR("Philippe Proulx");
+BT_PLUGIN_DESCRIPTION("Graph utilities");
+BT_PLUGIN_AUTHOR("Julien Desfossez, Philippe Proulx");
 BT_PLUGIN_LICENSE("MIT");
 
 /* dummy sink */
@@ -37,17 +38,32 @@ BT_PLUGIN_SINK_COMPONENT_CLASS_FINALIZE_METHOD(dummy, dummy_finalize);
 BT_PLUGIN_SINK_COMPONENT_CLASS_PORT_CONNECTED_METHOD(dummy,
        dummy_port_connected);
 BT_PLUGIN_SINK_COMPONENT_CLASS_DESCRIPTION(dummy,
-    "Dummy sink component class: does absolutely nothing!");
+       "Dummy sink component class: does absolutely nothing!");
 
 /* trimmer filter */
 BT_PLUGIN_FILTER_COMPONENT_CLASS(trimmer, trimmer_iterator_next);
 BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION(trimmer,
-    "Ensure that trace notifications outside of a given range are filtered-out.");
+       "Ensure that trace notifications outside of a given range are filtered-out.");
 BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD(trimmer, trimmer_component_init);
 BT_PLUGIN_FILTER_COMPONENT_CLASS_FINALIZE_METHOD(trimmer, finalize_trimmer);
 BT_PLUGIN_FILTER_COMPONENT_CLASS_NOTIFICATION_ITERATOR_INIT_METHOD(trimmer,
-    trimmer_iterator_init);
+       trimmer_iterator_init);
 BT_PLUGIN_FILTER_COMPONENT_CLASS_NOTIFICATION_ITERATOR_FINALIZE_METHOD(trimmer,
-    trimmer_iterator_finalize);
+       trimmer_iterator_finalize);
 BT_PLUGIN_FILTER_COMPONENT_CLASS_NOTIFICATION_ITERATOR_SEEK_TIME_METHOD(trimmer,
-    trimmer_iterator_seek_time);
+       trimmer_iterator_seek_time);
+
+/* muxer filter */
+BT_PLUGIN_FILTER_COMPONENT_CLASS(muxer, muxer_notif_iter_next);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION(muxer,
+       "Notification multiplexer");
+BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD(muxer, muxer_init);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_FINALIZE_METHOD(muxer, muxer_finalize);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_PORT_DISCONNECTED_METHOD(muxer,
+       muxer_port_disconnected);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_PORT_CONNECTED_METHOD(muxer,
+       muxer_port_connected);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_NOTIFICATION_ITERATOR_INIT_METHOD(muxer,
+       muxer_notif_iter_init);
+BT_PLUGIN_FILTER_COMPONENT_CLASS_NOTIFICATION_ITERATOR_FINALIZE_METHOD(muxer,
+       muxer_notif_iter_finalize);
This page took 0.038778 seconds and 4 git commands to generate.