lib: remove stream activity messages
[babeltrace.git] / src / plugins / utils / muxer / muxer.c
CommitLineData
958f7d11
PP
1/*
2 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
5b6473ec 23#define BT_COMP_LOG_SELF_COMP (muxer_comp->self_comp)
87ec3926 24#define BT_LOG_OUTPUT_LEVEL (muxer_comp->log_level)
350ad6c1 25#define BT_LOG_TAG "PLUGIN/FLT.UTILS.MUXER"
5b6473ec 26#include "plugins/comp-logging.h"
fed72692 27
91d81473 28#include "common/macros.h"
578e048b 29#include "compat/uuid.h"
3fadfbc0 30#include <babeltrace2/babeltrace.h>
958f7d11 31#include <glib.h>
c55a9f58 32#include <stdbool.h>
fed72692 33#include <inttypes.h>
578e048b
MJ
34#include "common/assert.h"
35#include "common/common.h"
0fbb9a9f 36#include <stdlib.h>
282c8cd0 37#include <string.h>
958f7d11 38
fdf0b89e
FD
39#include "muxer.h"
40
c3acd5f3 41#define ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME "assume-absolute-clock-classes"
65ee897d 42
958f7d11 43struct muxer_comp {
5b6473ec
PP
44 /* Weak refs */
45 bt_self_component_filter *self_comp_flt;
46 bt_self_component *self_comp;
d94d92ac 47
958f7d11
PP
48 unsigned int next_port_num;
49 size_t available_input_ports;
d6e69534 50 bool initializing_muxer_msg_iter;
282c8cd0 51 bool assume_absolute_clock_classes;
87ec3926 52 bt_logging_level log_level;
958f7d11
PP
53};
54
d6e69534 55struct muxer_upstream_msg_iter {
87ec3926
PP
56 struct muxer_comp *muxer_comp;
57
ab11110e 58 /* Owned by this, NULL if ended */
d6e69534 59 bt_self_component_port_input_message_iterator *msg_iter;
958f7d11 60
d6e69534
PP
61 /* Contains `const bt_message *`, owned by this */
62 GQueue *msgs;
958f7d11
PP
63};
64
d6e69534
PP
65enum muxer_msg_iter_clock_class_expectation {
66 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY = 0,
60f3d027 67 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE,
d6e69534
PP
68 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE,
69 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID,
70 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID,
282c8cd0
PP
71};
72
d6e69534 73struct muxer_msg_iter {
87ec3926
PP
74 struct muxer_comp *muxer_comp;
75
ab11110e 76 /*
d6e69534 77 * Array of struct muxer_upstream_msg_iter * (owned by this).
ab11110e
PP
78 *
79 * NOTE: This array is searched in linearly to find the youngest
d6e69534 80 * current message. Keep this until benchmarks confirm that
ab11110e
PP
81 * another data structure is faster than this for our typical
82 * use cases.
83 */
54bdc1f7
PP
84 GPtrArray *active_muxer_upstream_msg_iters;
85
86 /*
87 * Array of struct muxer_upstream_msg_iter * (owned by this).
88 *
89 * We move ended message iterators from
90 * `active_muxer_upstream_msg_iters` to this array so as to be
91 * able to restore them when seeking.
92 */
93 GPtrArray *ended_muxer_upstream_msg_iters;
958f7d11 94
d6e69534 95 /* Last time returned in a message */
958f7d11 96 int64_t last_returned_ts_ns;
282c8cd0
PP
97
98 /* Clock class expectation state */
d6e69534 99 enum muxer_msg_iter_clock_class_expectation clock_class_expectation;
282c8cd0
PP
100
101 /*
102 * Expected clock class UUID, only valid when
103 * clock_class_expectation is
d6e69534 104 * MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID.
282c8cd0
PP
105 */
106 unsigned char expected_clock_class_uuid[BABELTRACE_UUID_LEN];
958f7d11
PP
107};
108
54bdc1f7
PP
109static
110void empty_message_queue(struct muxer_upstream_msg_iter *upstream_msg_iter)
111{
112 const bt_message *msg;
113
114 while ((msg = g_queue_pop_head(upstream_msg_iter->msgs))) {
115 bt_message_put_ref(msg);
116 }
117}
118
ab11110e 119static
d6e69534
PP
120void destroy_muxer_upstream_msg_iter(
121 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter)
ab11110e 122{
87ec3926
PP
123 struct muxer_comp *muxer_comp;
124
d6e69534 125 if (!muxer_upstream_msg_iter) {
ab11110e
PP
126 return;
127 }
128
87ec3926 129 muxer_comp = muxer_upstream_msg_iter->muxer_comp;
5b6473ec 130 BT_COMP_LOGD("Destroying muxer's upstream message iterator wrapper: "
d6e69534
PP
131 "addr=%p, msg-iter-addr=%p, queue-len=%u",
132 muxer_upstream_msg_iter,
133 muxer_upstream_msg_iter->msg_iter,
134 muxer_upstream_msg_iter->msgs->length);
54bdc1f7
PP
135 bt_self_component_port_input_message_iterator_put_ref(
136 muxer_upstream_msg_iter->msg_iter);
d4393e08 137
d6e69534 138 if (muxer_upstream_msg_iter->msgs) {
54bdc1f7 139 empty_message_queue(muxer_upstream_msg_iter);
d6e69534 140 g_queue_free(muxer_upstream_msg_iter->msgs);
d4393e08
PP
141 }
142
d6e69534 143 g_free(muxer_upstream_msg_iter);
ab11110e
PP
144}
145
958f7d11 146static
c61018b9 147int muxer_msg_iter_add_upstream_msg_iter(struct muxer_msg_iter *muxer_msg_iter,
d6e69534 148 bt_self_component_port_input_message_iterator *self_msg_iter)
958f7d11 149{
c61018b9 150 int ret = 0;
d6e69534
PP
151 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter =
152 g_new0(struct muxer_upstream_msg_iter, 1);
87ec3926 153 struct muxer_comp *muxer_comp = muxer_msg_iter->muxer_comp;
958f7d11 154
d6e69534 155 if (!muxer_upstream_msg_iter) {
5b6473ec 156 BT_COMP_LOGE_STR("Failed to allocate one muxer's upstream message iterator wrapper.");
6c20f4a0 157 goto error;
958f7d11
PP
158 }
159
87ec3926 160 muxer_upstream_msg_iter->muxer_comp = muxer_comp;
d6e69534
PP
161 muxer_upstream_msg_iter->msg_iter = self_msg_iter;
162 bt_self_component_port_input_message_iterator_get_ref(muxer_upstream_msg_iter->msg_iter);
163 muxer_upstream_msg_iter->msgs = g_queue_new();
164 if (!muxer_upstream_msg_iter->msgs) {
5b6473ec 165 BT_COMP_LOGE_STR("Failed to allocate a GQueue.");
6c20f4a0 166 goto error;
d4393e08
PP
167 }
168
54bdc1f7 169 g_ptr_array_add(muxer_msg_iter->active_muxer_upstream_msg_iters,
d6e69534 170 muxer_upstream_msg_iter);
5b6473ec 171 BT_COMP_LOGD("Added muxer's upstream message iterator wrapper: "
d6e69534
PP
172 "addr=%p, muxer-msg-iter-addr=%p, msg-iter-addr=%p",
173 muxer_upstream_msg_iter, muxer_msg_iter,
174 self_msg_iter);
958f7d11 175
6c20f4a0
FD
176 goto end;
177
178error:
179 g_free(muxer_upstream_msg_iter);
c61018b9 180 ret = -1;
6c20f4a0 181
958f7d11 182end:
c61018b9 183 return ret;
958f7d11
PP
184}
185
958f7d11 186static
d24d5663 187bt_self_component_add_port_status add_available_input_port(
b19ff26f 188 bt_self_component_filter *self_comp)
958f7d11 189{
d94d92ac 190 struct muxer_comp *muxer_comp = bt_self_component_get_data(
707b7d35 191 bt_self_component_filter_as_self_component(self_comp));
d24d5663
PP
192 bt_self_component_add_port_status status =
193 BT_SELF_COMPONENT_ADD_PORT_STATUS_OK;
958f7d11 194 GString *port_name = NULL;
958f7d11 195
f6ccaed9 196 BT_ASSERT(muxer_comp);
958f7d11
PP
197 port_name = g_string_new("in");
198 if (!port_name) {
5b6473ec 199 BT_COMP_LOGE_STR("Failed to allocate a GString.");
d24d5663 200 status = BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR;
958f7d11
PP
201 goto end;
202 }
203
204 g_string_append_printf(port_name, "%u", muxer_comp->next_port_num);
d94d92ac
PP
205 status = bt_self_component_filter_add_input_port(
206 self_comp, port_name->str, NULL, NULL);
d24d5663 207 if (status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
5b6473ec 208 BT_COMP_LOGE("Cannot add input port to muxer component: "
fed72692 209 "port-name=\"%s\", comp-addr=%p, status=%s",
d94d92ac 210 port_name->str, self_comp,
d24d5663 211 bt_common_func_status_string(status));
958f7d11
PP
212 goto end;
213 }
214
215 muxer_comp->available_input_ports++;
216 muxer_comp->next_port_num++;
5b6473ec 217 BT_COMP_LOGI("Added one input port to muxer component: "
fed72692 218 "port-name=\"%s\", comp-addr=%p",
d94d92ac 219 port_name->str, self_comp);
5badd463 220
958f7d11
PP
221end:
222 if (port_name) {
223 g_string_free(port_name, TRUE);
224 }
225
147337a3 226 return status;
958f7d11
PP
227}
228
958f7d11 229static
d24d5663 230bt_self_component_add_port_status create_output_port(
b19ff26f 231 bt_self_component_filter *self_comp)
958f7d11 232{
d94d92ac
PP
233 return bt_self_component_filter_add_output_port(
234 self_comp, "out", NULL, NULL);
958f7d11
PP
235}
236
237static
238void destroy_muxer_comp(struct muxer_comp *muxer_comp)
239{
240 if (!muxer_comp) {
241 return;
242 }
243
958f7d11
PP
244 g_free(muxer_comp);
245}
246
65ee897d 247static
87ec3926 248bt_value *get_default_params(struct muxer_comp *muxer_comp)
65ee897d 249{
b19ff26f 250 bt_value *params;
65ee897d
PP
251 int ret;
252
05e21286 253 params = bt_value_map_create();
65ee897d 254 if (!params) {
5b6473ec 255 BT_COMP_LOGE_STR("Cannot create a map value object.");
65ee897d
PP
256 goto error;
257 }
258
05e21286 259 ret = bt_value_map_insert_bool_entry(params,
c3acd5f3 260 ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, false);
65ee897d 261 if (ret) {
5b6473ec 262 BT_COMP_LOGE_STR("Cannot add boolean value to map value object.");
65ee897d
PP
263 goto error;
264 }
265
266 goto end;
267
268error:
c5b9b441 269 BT_VALUE_PUT_REF_AND_RESET(params);
65ee897d
PP
270
271end:
272 return params;
273}
274
275static
05e21286 276int configure_muxer_comp(struct muxer_comp *muxer_comp,
b19ff26f 277 const bt_value *params)
65ee897d 278{
b19ff26f
PP
279 bt_value *default_params = NULL;
280 bt_value *real_params = NULL;
281 const bt_value *assume_absolute_clock_classes = NULL;
65ee897d 282 int ret = 0;
c55a9f58 283 bt_bool bool_val;
65ee897d 284
87ec3926 285 default_params = get_default_params(muxer_comp);
65ee897d 286 if (!default_params) {
5b6473ec 287 BT_COMP_LOGE("Cannot get default parameters: "
fed72692 288 "muxer-comp-addr=%p", muxer_comp);
65ee897d
PP
289 goto error;
290 }
291
35294e83 292 ret = bt_value_map_extend(default_params, params, &real_params);
601b0d3c 293 if (ret) {
5b6473ec 294 BT_COMP_LOGE("Cannot extend default parameters map value: "
fed72692
PP
295 "muxer-comp-addr=%p, def-params-addr=%p, "
296 "params-addr=%p", muxer_comp, default_params,
297 params);
65ee897d
PP
298 goto error;
299 }
300
05e21286
PP
301 assume_absolute_clock_classes = bt_value_map_borrow_entry_value(real_params,
302 ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME);
f6ccaed9
PP
303 if (assume_absolute_clock_classes &&
304 !bt_value_is_bool(assume_absolute_clock_classes)) {
5b6473ec 305 BT_COMP_LOGE("Expecting a boolean value for the `%s` parameter: "
fed72692
PP
306 "muxer-comp-addr=%p, value-type=%s",
307 ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, muxer_comp,
da91b29a 308 bt_common_value_type_string(
fed72692 309 bt_value_get_type(assume_absolute_clock_classes)));
65ee897d
PP
310 goto error;
311 }
312
601b0d3c 313 bool_val = bt_value_bool_get(assume_absolute_clock_classes);
282c8cd0 314 muxer_comp->assume_absolute_clock_classes = (bool) bool_val;
5b6473ec 315 BT_COMP_LOGI("Configured muxer component: muxer-comp-addr=%p, "
fed72692
PP
316 "assume-absolute-clock-classes=%d",
317 muxer_comp, muxer_comp->assume_absolute_clock_classes);
65ee897d
PP
318 goto end;
319
320error:
321 ret = -1;
322
323end:
c5b9b441
PP
324 bt_value_put_ref(default_params);
325 bt_value_put_ref(real_params);
65ee897d
PP
326 return ret;
327}
328
958f7d11 329BT_HIDDEN
d24d5663 330bt_component_class_init_method_status muxer_init(
5b6473ec 331 bt_self_component_filter *self_comp_flt,
fdf0b89e 332 const bt_value *params, void *init_data)
958f7d11
PP
333{
334 int ret;
d24d5663
PP
335 bt_component_class_init_method_status status =
336 BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
337 bt_self_component_add_port_status add_port_status;
5b6473ec
PP
338 bt_self_component *self_comp =
339 bt_self_component_filter_as_self_component(self_comp_flt);
958f7d11 340 struct muxer_comp *muxer_comp = g_new0(struct muxer_comp, 1);
87ec3926 341 bt_logging_level log_level = bt_component_get_logging_level(
5b6473ec 342 bt_self_component_as_component(self_comp));
958f7d11 343
5b6473ec 344 BT_COMP_LOG_CUR_LVL(BT_LOG_INFO, log_level, self_comp,
87ec3926 345 "Initializing muxer component: "
d94d92ac 346 "comp-addr=%p, params-addr=%p", self_comp, params);
fed72692 347
958f7d11 348 if (!muxer_comp) {
5b6473ec 349 BT_COMP_LOG_CUR_LVL(BT_LOG_ERROR, log_level, self_comp,
87ec3926 350 "Failed to allocate one muxer component.");
958f7d11
PP
351 goto error;
352 }
353
87ec3926 354 muxer_comp->log_level = log_level;
5b6473ec
PP
355 muxer_comp->self_comp = self_comp;
356 muxer_comp->self_comp_flt = self_comp_flt;
65ee897d
PP
357 ret = configure_muxer_comp(muxer_comp, params);
358 if (ret) {
5b6473ec 359 BT_COMP_LOGE("Cannot configure muxer component: "
fed72692
PP
360 "muxer-comp-addr=%p, params-addr=%p",
361 muxer_comp, params);
65ee897d
PP
362 goto error;
363 }
364
5b6473ec 365 bt_self_component_set_data(self_comp, muxer_comp);
d24d5663
PP
366 add_port_status = add_available_input_port(self_comp_flt);
367 if (add_port_status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
5b6473ec 368 BT_COMP_LOGE("Cannot ensure that at least one muxer component's input port is available: "
fed72692
PP
369 "muxer-comp-addr=%p, status=%s",
370 muxer_comp,
d24d5663
PP
371 bt_common_func_status_string(add_port_status));
372 if (add_port_status ==
373 BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR) {
374 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
375 } else {
376 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
377 }
378
958f7d11
PP
379 goto error;
380 }
381
d24d5663
PP
382 add_port_status = create_output_port(self_comp_flt);
383 if (add_port_status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
5b6473ec 384 BT_COMP_LOGE("Cannot create muxer component's output port: "
fed72692
PP
385 "muxer-comp-addr=%p, status=%s",
386 muxer_comp,
d24d5663
PP
387 bt_common_func_status_string(add_port_status));
388 if (add_port_status ==
389 BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR) {
390 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
391 } else {
392 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
393 }
394
958f7d11
PP
395 goto error;
396 }
397
5b6473ec 398 BT_COMP_LOGI("Initialized muxer component: "
fed72692 399 "comp-addr=%p, params-addr=%p, muxer-comp-addr=%p",
d94d92ac 400 self_comp, params, muxer_comp);
fed72692 401
958f7d11
PP
402 goto end;
403
404error:
405 destroy_muxer_comp(muxer_comp);
5b6473ec 406 bt_self_component_set_data(self_comp, NULL);
147337a3 407
d24d5663
PP
408 if (status == BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK) {
409 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
147337a3 410 }
958f7d11
PP
411
412end:
413 return status;
414}
415
416BT_HIDDEN
b19ff26f 417void muxer_finalize(bt_self_component_filter *self_comp)
958f7d11 418{
d94d92ac 419 struct muxer_comp *muxer_comp = bt_self_component_get_data(
707b7d35 420 bt_self_component_filter_as_self_component(self_comp));
958f7d11 421
5b6473ec 422 BT_COMP_LOGI("Finalizing muxer component: comp-addr=%p",
d94d92ac 423 self_comp);
958f7d11
PP
424 destroy_muxer_comp(muxer_comp);
425}
426
427static
d6e69534 428bt_self_component_port_input_message_iterator *
87ec3926
PP
429create_msg_iter_on_input_port(struct muxer_comp *muxer_comp,
430 bt_self_component_port_input *self_port)
958f7d11 431{
b19ff26f 432 const bt_port *port = bt_self_component_port_as_port(
707b7d35 433 bt_self_component_port_input_as_self_component_port(
d94d92ac 434 self_port));
d6e69534 435 bt_self_component_port_input_message_iterator *msg_iter =
d94d92ac 436 NULL;
958f7d11 437
f6ccaed9
PP
438 BT_ASSERT(port);
439 BT_ASSERT(bt_port_is_connected(port));
958f7d11 440
ab11110e 441 // TODO: Advance the iterator to >= the time of the latest
d6e69534 442 // returned message by the muxer message
ab11110e 443 // iterator which creates it.
d6e69534 444 msg_iter = bt_self_component_port_input_message_iterator_create(
d94d92ac 445 self_port);
d6e69534 446 if (!msg_iter) {
5b6473ec 447 BT_COMP_LOGE("Cannot create upstream message iterator on input port: "
d94d92ac
PP
448 "port-addr=%p, port-name=\"%s\"",
449 port, bt_port_get_name(port));
958f7d11
PP
450 goto end;
451 }
452
5b6473ec 453 BT_COMP_LOGI("Created upstream message iterator on input port: "
d6e69534
PP
454 "port-addr=%p, port-name=\"%s\", msg-iter-addr=%p",
455 port, bt_port_get_name(port), msg_iter);
fed72692 456
958f7d11 457end:
d6e69534 458 return msg_iter;
958f7d11
PP
459}
460
ab11110e 461static
d24d5663 462bt_component_class_message_iterator_next_method_status muxer_upstream_msg_iter_next(
54bdc1f7
PP
463 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter,
464 bool *is_ended)
ab11110e 465{
87ec3926
PP
466 struct muxer_comp *muxer_comp =
467 muxer_upstream_msg_iter->muxer_comp;
d24d5663
PP
468 bt_component_class_message_iterator_next_method_status status;
469 bt_message_iterator_next_status input_port_iter_status;
d6e69534 470 bt_message_array_const msgs;
d4393e08
PP
471 uint64_t i;
472 uint64_t count;
ab11110e 473
5b6473ec 474 BT_COMP_LOGD("Calling upstream message iterator's \"next\" method: "
d6e69534
PP
475 "muxer-upstream-msg-iter-wrap-addr=%p, msg-iter-addr=%p",
476 muxer_upstream_msg_iter,
477 muxer_upstream_msg_iter->msg_iter);
fdf0b89e 478 input_port_iter_status = bt_self_component_port_input_message_iterator_next(
d6e69534 479 muxer_upstream_msg_iter->msg_iter, &msgs, &count);
5b6473ec 480 BT_COMP_LOGD("Upstream message iterator's \"next\" method returned: "
d24d5663
PP
481 "status=%s",
482 bt_common_func_status_string(input_port_iter_status));
ab11110e 483
fdf0b89e 484 switch (input_port_iter_status) {
d24d5663 485 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK:
089717de 486 /*
d6e69534 487 * Message iterator's current message is
d4393e08 488 * valid: it must be considered for muxing operations.
089717de 489 */
5b6473ec 490 BT_COMP_LOGD_STR("Validated upstream message iterator wrapper.");
d4393e08
PP
491 BT_ASSERT(count > 0);
492
d6e69534 493 /* Move messages to our queue */
d4393e08
PP
494 for (i = 0; i < count; i++) {
495 /*
496 * Push to tail in order; other side
d6e69534 497 * (muxer_msg_iter_do_next_one()) consumes
d4393e08
PP
498 * from the head first.
499 */
d6e69534
PP
500 g_queue_push_tail(muxer_upstream_msg_iter->msgs,
501 (void *) msgs[i]);
d4393e08 502 }
d24d5663 503 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
ab11110e 504 break;
d24d5663 505 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN:
089717de 506 /*
d6e69534 507 * Message iterator's current message is not
089717de 508 * valid anymore. Return
d24d5663 509 * BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN immediately.
089717de 510 */
d24d5663 511 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_AGAIN;
ab11110e 512 break;
d24d5663 513 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END: /* Fall-through. */
ab11110e 514 /*
d6e69534 515 * Message iterator reached the end: release it. It
ab11110e 516 * won't be considered again to find the youngest
d6e69534 517 * message.
ab11110e 518 */
54bdc1f7 519 *is_ended = true;
d24d5663 520 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
089717de 521 break;
ab11110e
PP
522 default:
523 /* Error or unsupported status code */
5b6473ec 524 BT_COMP_LOGE("Error or unsupported status code: "
fdf0b89e 525 "status-code=%d", input_port_iter_status);
d24d5663 526 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
089717de 527 break;
ab11110e
PP
528 }
529
089717de 530 return status;
ab11110e
PP
531}
532
958f7d11 533static
d6e69534
PP
534int get_msg_ts_ns(struct muxer_comp *muxer_comp,
535 struct muxer_msg_iter *muxer_msg_iter,
536 const bt_message *msg, int64_t last_returned_ts_ns,
958f7d11
PP
537 int64_t *ts_ns)
538{
605e1019 539 const bt_clock_snapshot *clock_snapshot = NULL;
958f7d11 540 int ret = 0;
649934d2
PP
541 const bt_stream_class *stream_class = NULL;
542 bt_message_type msg_type;
958f7d11 543
d6e69534 544 BT_ASSERT(msg);
f6ccaed9 545 BT_ASSERT(ts_ns);
5b6473ec 546 BT_COMP_LOGD("Getting message's timestamp: "
d6e69534 547 "muxer-msg-iter-addr=%p, msg-addr=%p, "
fed72692 548 "last-returned-ts=%" PRId64,
d6e69534 549 muxer_msg_iter, msg, last_returned_ts_ns);
fed72692 550
91d81473 551 if (G_UNLIKELY(muxer_msg_iter->clock_class_expectation ==
60f3d027
PP
552 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE)) {
553 *ts_ns = last_returned_ts_ns;
554 goto end;
555 }
556
649934d2
PP
557 msg_type = bt_message_get_type(msg);
558
91d81473 559 if (G_UNLIKELY(msg_type == BT_MESSAGE_TYPE_PACKET_BEGINNING)) {
649934d2
PP
560 stream_class = bt_stream_borrow_class_const(
561 bt_packet_borrow_stream_const(
562 bt_message_packet_beginning_borrow_packet_const(
563 msg)));
91d81473 564 } else if (G_UNLIKELY(msg_type == BT_MESSAGE_TYPE_PACKET_END)) {
649934d2
PP
565 stream_class = bt_stream_borrow_class_const(
566 bt_packet_borrow_stream_const(
567 bt_message_packet_end_borrow_packet_const(
568 msg)));
91d81473 569 } else if (G_UNLIKELY(msg_type == BT_MESSAGE_TYPE_DISCARDED_EVENTS)) {
2e90378a
PP
570 stream_class = bt_stream_borrow_class_const(
571 bt_message_discarded_events_borrow_stream_const(msg));
91d81473 572 } else if (G_UNLIKELY(msg_type == BT_MESSAGE_TYPE_DISCARDED_PACKETS)) {
2e90378a
PP
573 stream_class = bt_stream_borrow_class_const(
574 bt_message_discarded_packets_borrow_stream_const(msg));
649934d2
PP
575 }
576
577 switch (msg_type) {
d6e69534 578 case BT_MESSAGE_TYPE_EVENT:
60f3d027
PP
579 BT_ASSERT(bt_message_event_borrow_stream_class_default_clock_class_const(
580 msg));
0cbc2c33
PP
581 clock_snapshot = bt_message_event_borrow_default_clock_snapshot_const(
582 msg);
958f7d11 583 break;
5366eb53 584 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
9b24b6aa 585 if (bt_stream_class_packets_have_beginning_default_clock_snapshot(
649934d2
PP
586 stream_class)) {
587 clock_snapshot = bt_message_packet_beginning_borrow_default_clock_snapshot_const(
588 msg);
589 } else {
590 goto no_clock_snapshot;
591 }
592
5366eb53
PP
593 break;
594 case BT_MESSAGE_TYPE_PACKET_END:
9b24b6aa 595 if (bt_stream_class_packets_have_end_default_clock_snapshot(
649934d2
PP
596 stream_class)) {
597 clock_snapshot = bt_message_packet_end_borrow_default_clock_snapshot_const(
598 msg);
599 } else {
600 goto no_clock_snapshot;
601 }
602
5366eb53
PP
603 break;
604 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
2e90378a
PP
605 if (bt_stream_class_discarded_events_have_default_clock_snapshots(
606 stream_class)) {
9b24b6aa 607 clock_snapshot = bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
2e90378a
PP
608 msg);
609 } else {
610 goto no_clock_snapshot;
611 }
612
5366eb53
PP
613 break;
614 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
2e90378a
PP
615 if (bt_stream_class_discarded_packets_have_default_clock_snapshots(
616 stream_class)) {
9b24b6aa 617 clock_snapshot = bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
2e90378a
PP
618 msg);
619 } else {
620 goto no_clock_snapshot;
621 }
622
5366eb53 623 break;
b9fd9cbb 624 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
0cbc2c33
PP
625 clock_snapshot = bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
626 msg);
958f7d11
PP
627 break;
628 default:
d6e69534 629 /* All the other messages have a higher priority */
5b6473ec 630 BT_COMP_LOGD_STR("Message has no timestamp: using the last returned timestamp.");
958f7d11
PP
631 *ts_ns = last_returned_ts_ns;
632 goto end;
633 }
634
60f3d027
PP
635 ret = bt_clock_snapshot_get_ns_from_origin(clock_snapshot, ts_ns);
636 if (ret) {
5b6473ec 637 BT_COMP_LOGE("Cannot get nanoseconds from Epoch of clock snapshot: "
60f3d027
PP
638 "clock-snapshot-addr=%p", clock_snapshot);
639 goto error;
640 }
641
642 goto end;
643
644no_clock_snapshot:
5b6473ec 645 BT_COMP_LOGD_STR("Message's default clock snapshot is missing: "
60f3d027
PP
646 "using the last returned timestamp.");
647 *ts_ns = last_returned_ts_ns;
648 goto end;
649
650error:
651 ret = -1;
652
653end:
654 if (ret == 0) {
5b6473ec 655 BT_COMP_LOGD("Found message's timestamp: "
60f3d027
PP
656 "muxer-msg-iter-addr=%p, msg-addr=%p, "
657 "last-returned-ts=%" PRId64 ", ts=%" PRId64,
658 muxer_msg_iter, msg, last_returned_ts_ns,
659 *ts_ns);
44c440bc
PP
660 }
661
60f3d027
PP
662 return ret;
663}
664
665static inline
666int validate_clock_class(struct muxer_msg_iter *muxer_msg_iter,
667 struct muxer_comp *muxer_comp,
668 const bt_clock_class *clock_class)
669{
670 int ret = 0;
671 const unsigned char *cc_uuid;
672 const char *cc_name;
673
e22b45d0 674 BT_ASSERT(clock_class);
50842bdc
PP
675 cc_uuid = bt_clock_class_get_uuid(clock_class);
676 cc_name = bt_clock_class_get_name(clock_class);
282c8cd0 677
d6e69534
PP
678 if (muxer_msg_iter->clock_class_expectation ==
679 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY) {
282c8cd0
PP
680 /*
681 * This is the first clock class that this muxer
d6e69534 682 * message iterator encounters. Its properties
282c8cd0
PP
683 * determine what to expect for the whole lifetime of
684 * the iterator without a true
685 * `assume-absolute-clock-classes` parameter.
686 */
5552377a 687 if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
282c8cd0 688 /* Expect absolute clock classes */
d6e69534
PP
689 muxer_msg_iter->clock_class_expectation =
690 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE;
282c8cd0
PP
691 } else {
692 if (cc_uuid) {
693 /*
694 * Expect non-absolute clock classes
695 * with a specific UUID.
696 */
d6e69534
PP
697 muxer_msg_iter->clock_class_expectation =
698 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID;
699 memcpy(muxer_msg_iter->expected_clock_class_uuid,
282c8cd0
PP
700 cc_uuid, BABELTRACE_UUID_LEN);
701 } else {
702 /*
703 * Expect non-absolute clock classes
704 * with no UUID.
705 */
d6e69534
PP
706 muxer_msg_iter->clock_class_expectation =
707 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID;
282c8cd0
PP
708 }
709 }
710 }
711
712 if (!muxer_comp->assume_absolute_clock_classes) {
d6e69534
PP
713 switch (muxer_msg_iter->clock_class_expectation) {
714 case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ABSOLUTE:
5552377a 715 if (!bt_clock_class_origin_is_unix_epoch(clock_class)) {
5b6473ec 716 BT_COMP_LOGE("Expecting an absolute clock class, "
fed72692
PP
717 "but got a non-absolute one: "
718 "clock-class-addr=%p, clock-class-name=\"%s\"",
719 clock_class, cc_name);
282c8cd0
PP
720 goto error;
721 }
722 break;
d6e69534 723 case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_NO_UUID:
5552377a 724 if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
5b6473ec 725 BT_COMP_LOGE("Expecting a non-absolute clock class with no UUID, "
fed72692
PP
726 "but got an absolute one: "
727 "clock-class-addr=%p, clock-class-name=\"%s\"",
728 clock_class, cc_name);
282c8cd0
PP
729 goto error;
730 }
731
732 if (cc_uuid) {
5b6473ec 733 BT_COMP_LOGE("Expecting a non-absolute clock class with no UUID, "
fed72692
PP
734 "but got one with a UUID: "
735 "clock-class-addr=%p, clock-class-name=\"%s\", "
736 "uuid=\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\"",
737 clock_class, cc_name,
738 (unsigned int) cc_uuid[0],
739 (unsigned int) cc_uuid[1],
740 (unsigned int) cc_uuid[2],
741 (unsigned int) cc_uuid[3],
742 (unsigned int) cc_uuid[4],
743 (unsigned int) cc_uuid[5],
744 (unsigned int) cc_uuid[6],
745 (unsigned int) cc_uuid[7],
746 (unsigned int) cc_uuid[8],
747 (unsigned int) cc_uuid[9],
748 (unsigned int) cc_uuid[10],
749 (unsigned int) cc_uuid[11],
750 (unsigned int) cc_uuid[12],
751 (unsigned int) cc_uuid[13],
752 (unsigned int) cc_uuid[14],
753 (unsigned int) cc_uuid[15]);
282c8cd0
PP
754 goto error;
755 }
756 break;
d6e69534 757 case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NOT_ABS_SPEC_UUID:
5552377a 758 if (bt_clock_class_origin_is_unix_epoch(clock_class)) {
5b6473ec 759 BT_COMP_LOGE("Expecting a non-absolute clock class with a specific UUID, "
fed72692
PP
760 "but got an absolute one: "
761 "clock-class-addr=%p, clock-class-name=\"%s\"",
762 clock_class, cc_name);
282c8cd0
PP
763 goto error;
764 }
765
766 if (!cc_uuid) {
5b6473ec 767 BT_COMP_LOGE("Expecting a non-absolute clock class with a specific UUID, "
fed72692
PP
768 "but got one with no UUID: "
769 "clock-class-addr=%p, clock-class-name=\"%s\"",
770 clock_class, cc_name);
282c8cd0
PP
771 goto error;
772 }
773
d6e69534 774 if (memcmp(muxer_msg_iter->expected_clock_class_uuid,
282c8cd0 775 cc_uuid, BABELTRACE_UUID_LEN) != 0) {
5b6473ec 776 BT_COMP_LOGE("Expecting a non-absolute clock class with a specific UUID, "
fed72692
PP
777 "but got one with different UUID: "
778 "clock-class-addr=%p, clock-class-name=\"%s\", "
779 "expected-uuid=\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\", "
780 "uuid=\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\"",
781 clock_class, cc_name,
d6e69534
PP
782 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[0],
783 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[1],
784 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[2],
785 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[3],
786 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[4],
787 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[5],
788 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[6],
789 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[7],
790 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[8],
791 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[9],
792 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[10],
793 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[11],
794 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[12],
795 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[13],
796 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[14],
797 (unsigned int) muxer_msg_iter->expected_clock_class_uuid[15],
fed72692
PP
798 (unsigned int) cc_uuid[0],
799 (unsigned int) cc_uuid[1],
800 (unsigned int) cc_uuid[2],
801 (unsigned int) cc_uuid[3],
802 (unsigned int) cc_uuid[4],
803 (unsigned int) cc_uuid[5],
804 (unsigned int) cc_uuid[6],
805 (unsigned int) cc_uuid[7],
806 (unsigned int) cc_uuid[8],
807 (unsigned int) cc_uuid[9],
808 (unsigned int) cc_uuid[10],
809 (unsigned int) cc_uuid[11],
810 (unsigned int) cc_uuid[12],
811 (unsigned int) cc_uuid[13],
812 (unsigned int) cc_uuid[14],
813 (unsigned int) cc_uuid[15]);
282c8cd0
PP
814 goto error;
815 }
816 break;
60f3d027 817 case MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE:
5b6473ec 818 BT_COMP_LOGE("Expecting no clock class, but got one: "
60f3d027
PP
819 "clock-class-addr=%p, clock-class-name=\"%s\"",
820 clock_class, cc_name);
821 goto error;
282c8cd0
PP
822 default:
823 /* Unexpected */
5b6473ec 824 BT_COMP_LOGF("Unexpected clock class expectation: "
fed72692 825 "expectation-code=%d",
d6e69534 826 muxer_msg_iter->clock_class_expectation);
282c8cd0
PP
827 abort();
828 }
958f7d11
PP
829 }
830
4c0f1c8c
PP
831 goto end;
832
958f7d11
PP
833error:
834 ret = -1;
835
836end:
60f3d027
PP
837 return ret;
838}
839
840static inline
841int validate_new_stream_clock_class(struct muxer_msg_iter *muxer_msg_iter,
842 struct muxer_comp *muxer_comp, const bt_stream *stream)
843{
844 int ret = 0;
845 const bt_stream_class *stream_class =
846 bt_stream_borrow_class_const(stream);
847 const bt_clock_class *clock_class =
848 bt_stream_class_borrow_default_clock_class_const(stream_class);
849
850 if (!clock_class) {
851 if (muxer_msg_iter->clock_class_expectation ==
852 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY) {
853 /* Expect no clock class */
854 muxer_msg_iter->clock_class_expectation =
855 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_NONE;
856 } else {
5b6473ec 857 BT_COMP_LOGE("Expecting stream class with a default clock class: "
60f3d027
PP
858 "stream-class-addr=%p, stream-class-name=\"%s\", "
859 "stream-class-id=%" PRIu64,
860 stream_class, bt_stream_class_get_name(stream_class),
861 bt_stream_class_get_id(stream_class));
862 ret = -1;
863 }
864
865 goto end;
fed72692
PP
866 }
867
60f3d027
PP
868 ret = validate_clock_class(muxer_msg_iter, muxer_comp, clock_class);
869
870end:
958f7d11
PP
871 return ret;
872}
873
ab11110e 874/*
d6e69534
PP
875 * This function finds the youngest available message amongst the
876 * non-ended upstream message iterators and returns the upstream
877 * message iterator which has it, or
878 * BT_MESSAGE_ITERATOR_STATUS_END if there's no available
879 * message.
ab11110e
PP
880 *
881 * This function does NOT:
882 *
d6e69534 883 * * Update any upstream message iterator.
d6e69534 884 * * Check the upstream message iterators to retry.
ab11110e 885 *
d6e69534
PP
886 * On sucess, this function sets *muxer_upstream_msg_iter to the
887 * upstream message iterator of which the current message is
ab11110e
PP
888 * the youngest, and sets *ts_ns to its time.
889 */
958f7d11 890static
d24d5663 891bt_component_class_message_iterator_next_method_status
d6e69534 892muxer_msg_iter_youngest_upstream_msg_iter(
958f7d11 893 struct muxer_comp *muxer_comp,
d6e69534
PP
894 struct muxer_msg_iter *muxer_msg_iter,
895 struct muxer_upstream_msg_iter **muxer_upstream_msg_iter,
958f7d11
PP
896 int64_t *ts_ns)
897{
898 size_t i;
899 int ret;
900 int64_t youngest_ts_ns = INT64_MAX;
d24d5663
PP
901 bt_component_class_message_iterator_next_method_status status =
902 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
958f7d11 903
f6ccaed9 904 BT_ASSERT(muxer_comp);
d6e69534
PP
905 BT_ASSERT(muxer_msg_iter);
906 BT_ASSERT(muxer_upstream_msg_iter);
907 *muxer_upstream_msg_iter = NULL;
908
54bdc1f7
PP
909 for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
910 i++) {
d6e69534
PP
911 const bt_message *msg;
912 struct muxer_upstream_msg_iter *cur_muxer_upstream_msg_iter =
54bdc1f7
PP
913 g_ptr_array_index(
914 muxer_msg_iter->active_muxer_upstream_msg_iters,
915 i);
d6e69534
PP
916 int64_t msg_ts_ns;
917
918 if (!cur_muxer_upstream_msg_iter->msg_iter) {
919 /* This upstream message iterator is ended */
ef267d12 920 BT_COMP_LOGT("Skipping ended upstream message iterator: "
d6e69534
PP
921 "muxer-upstream-msg-iter-wrap-addr=%p",
922 cur_muxer_upstream_msg_iter);
958f7d11
PP
923 continue;
924 }
925
d6e69534
PP
926 BT_ASSERT(cur_muxer_upstream_msg_iter->msgs->length > 0);
927 msg = g_queue_peek_head(cur_muxer_upstream_msg_iter->msgs);
928 BT_ASSERT(msg);
60f3d027 929
91d81473 930 if (G_UNLIKELY(bt_message_get_type(msg) ==
60f3d027
PP
931 BT_MESSAGE_TYPE_STREAM_BEGINNING)) {
932 ret = validate_new_stream_clock_class(
933 muxer_msg_iter, muxer_comp,
934 bt_message_stream_beginning_borrow_stream_const(
935 msg));
936 if (ret) {
937 /*
938 * validate_new_stream_clock_class() logs
939 * errors.
940 */
d24d5663 941 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
60f3d027
PP
942 goto end;
943 }
91d81473 944 } else if (G_UNLIKELY(bt_message_get_type(msg) ==
60f3d027
PP
945 BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY)) {
946 const bt_clock_snapshot *cs;
60f3d027 947
0cbc2c33
PP
948 cs = bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
949 msg);
60f3d027
PP
950 ret = validate_clock_class(muxer_msg_iter, muxer_comp,
951 bt_clock_snapshot_borrow_clock_class_const(cs));
952 if (ret) {
953 /* validate_clock_class() logs errors */
d24d5663 954 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
60f3d027
PP
955 goto end;
956 }
957 }
958
d6e69534
PP
959 ret = get_msg_ts_ns(muxer_comp, muxer_msg_iter, msg,
960 muxer_msg_iter->last_returned_ts_ns, &msg_ts_ns);
958f7d11 961 if (ret) {
d6e69534
PP
962 /* get_msg_ts_ns() logs errors */
963 *muxer_upstream_msg_iter = NULL;
d24d5663 964 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
958f7d11
PP
965 goto end;
966 }
967
d6e69534
PP
968 if (msg_ts_ns <= youngest_ts_ns) {
969 *muxer_upstream_msg_iter =
970 cur_muxer_upstream_msg_iter;
971 youngest_ts_ns = msg_ts_ns;
958f7d11
PP
972 *ts_ns = youngest_ts_ns;
973 }
974 }
975
d6e69534 976 if (!*muxer_upstream_msg_iter) {
d24d5663 977 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
958f7d11
PP
978 *ts_ns = INT64_MIN;
979 }
980
981end:
982 return status;
983}
984
985static
d24d5663
PP
986bt_component_class_message_iterator_next_method_status
987validate_muxer_upstream_msg_iter(
54bdc1f7
PP
988 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter,
989 bool *is_ended)
958f7d11 990{
87ec3926
PP
991 struct muxer_comp *muxer_comp =
992 muxer_upstream_msg_iter->muxer_comp;
d24d5663
PP
993 bt_component_class_message_iterator_next_method_status status =
994 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
958f7d11 995
5b6473ec 996 BT_COMP_LOGD("Validating muxer's upstream message iterator wrapper: "
d6e69534
PP
997 "muxer-upstream-msg-iter-wrap-addr=%p",
998 muxer_upstream_msg_iter);
fed72692 999
d6e69534
PP
1000 if (muxer_upstream_msg_iter->msgs->length > 0 ||
1001 !muxer_upstream_msg_iter->msg_iter) {
5b6473ec 1002 BT_COMP_LOGD("Already valid or not considered: "
d6e69534
PP
1003 "queue-len=%u, upstream-msg-iter-addr=%p",
1004 muxer_upstream_msg_iter->msgs->length,
1005 muxer_upstream_msg_iter->msg_iter);
ab11110e
PP
1006 goto end;
1007 }
1008
d6e69534 1009 /* muxer_upstream_msg_iter_next() logs details/errors */
54bdc1f7
PP
1010 status = muxer_upstream_msg_iter_next(muxer_upstream_msg_iter,
1011 is_ended);
089717de
PP
1012
1013end:
1014 return status;
1015}
1016
1017static
d24d5663
PP
1018bt_component_class_message_iterator_next_method_status
1019validate_muxer_upstream_msg_iters(
d6e69534 1020 struct muxer_msg_iter *muxer_msg_iter)
089717de 1021{
87ec3926 1022 struct muxer_comp *muxer_comp = muxer_msg_iter->muxer_comp;
d24d5663
PP
1023 bt_component_class_message_iterator_next_method_status status =
1024 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
089717de
PP
1025 size_t i;
1026
5b6473ec 1027 BT_COMP_LOGD("Validating muxer's upstream message iterator wrappers: "
d6e69534 1028 "muxer-msg-iter-addr=%p", muxer_msg_iter);
fed72692 1029
54bdc1f7
PP
1030 for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
1031 i++) {
6bf2abbd 1032 bool is_ended = false;
d6e69534 1033 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter =
089717de 1034 g_ptr_array_index(
54bdc1f7 1035 muxer_msg_iter->active_muxer_upstream_msg_iters,
089717de
PP
1036 i);
1037
d6e69534 1038 status = validate_muxer_upstream_msg_iter(
54bdc1f7 1039 muxer_upstream_msg_iter, &is_ended);
d24d5663 1040 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
fed72692 1041 if (status < 0) {
5b6473ec 1042 BT_COMP_LOGE("Cannot validate muxer's upstream message iterator wrapper: "
d6e69534
PP
1043 "muxer-msg-iter-addr=%p, "
1044 "muxer-upstream-msg-iter-wrap-addr=%p",
1045 muxer_msg_iter,
1046 muxer_upstream_msg_iter);
fed72692 1047 } else {
5b6473ec 1048 BT_COMP_LOGD("Cannot validate muxer's upstream message iterator wrapper: "
d6e69534
PP
1049 "muxer-msg-iter-addr=%p, "
1050 "muxer-upstream-msg-iter-wrap-addr=%p",
1051 muxer_msg_iter,
1052 muxer_upstream_msg_iter);
fed72692
PP
1053 }
1054
089717de
PP
1055 goto end;
1056 }
744ba28b
PP
1057
1058 /*
54bdc1f7
PP
1059 * Move this muxer upstream message iterator to the
1060 * array of ended iterators if it's ended.
744ba28b 1061 */
91d81473 1062 if (G_UNLIKELY(is_ended)) {
5b6473ec 1063 BT_COMP_LOGD("Muxer's upstream message iterator wrapper: ended or canceled: "
54bdc1f7
PP
1064 "muxer-msg-iter-addr=%p, "
1065 "muxer-upstream-msg-iter-wrap-addr=%p",
1066 muxer_msg_iter, muxer_upstream_msg_iter);
1067 g_ptr_array_add(
1068 muxer_msg_iter->ended_muxer_upstream_msg_iters,
1069 muxer_upstream_msg_iter);
1070 muxer_msg_iter->active_muxer_upstream_msg_iters->pdata[i] = NULL;
1071
744ba28b
PP
1072 /*
1073 * Use g_ptr_array_remove_fast() because the
1074 * order of those elements is not important.
1075 */
1076 g_ptr_array_remove_index_fast(
54bdc1f7 1077 muxer_msg_iter->active_muxer_upstream_msg_iters,
744ba28b
PP
1078 i);
1079 i--;
1080 }
089717de
PP
1081 }
1082
1083end:
1084 return status;
1085}
1086
d4393e08 1087static inline
d24d5663 1088bt_component_class_message_iterator_next_method_status muxer_msg_iter_do_next_one(
089717de 1089 struct muxer_comp *muxer_comp,
d6e69534
PP
1090 struct muxer_msg_iter *muxer_msg_iter,
1091 const bt_message **msg)
089717de 1092{
d24d5663 1093 bt_component_class_message_iterator_next_method_status status;
d6e69534 1094 struct muxer_upstream_msg_iter *muxer_upstream_msg_iter = NULL;
089717de
PP
1095 int64_t next_return_ts;
1096
5badd463 1097 status = validate_muxer_upstream_msg_iters(muxer_msg_iter);
d24d5663 1098 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
5badd463
PP
1099 /* validate_muxer_upstream_msg_iters() logs details */
1100 goto end;
958f7d11
PP
1101 }
1102
1103 /*
089717de 1104 * At this point we know that all the existing upstream
d6e69534
PP
1105 * message iterators are valid. We can find the one,
1106 * amongst those, of which the current message is the
089717de 1107 * youngest.
958f7d11 1108 */
d6e69534
PP
1109 status = muxer_msg_iter_youngest_upstream_msg_iter(muxer_comp,
1110 muxer_msg_iter, &muxer_upstream_msg_iter,
089717de 1111 &next_return_ts);
d24d5663 1112 if (status < 0 || status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END) {
d4393e08 1113 if (status < 0) {
5b6473ec 1114 BT_COMP_LOGE("Cannot find the youngest upstream message iterator wrapper: "
fed72692 1115 "status=%s",
d24d5663 1116 bt_common_func_status_string(status));
fed72692 1117 } else {
5b6473ec 1118 BT_COMP_LOGD("Cannot find the youngest upstream message iterator wrapper: "
fed72692 1119 "status=%s",
d24d5663 1120 bt_common_func_status_string(status));
fed72692
PP
1121 }
1122
958f7d11
PP
1123 goto end;
1124 }
1125
d6e69534 1126 if (next_return_ts < muxer_msg_iter->last_returned_ts_ns) {
5b6473ec 1127 BT_COMP_LOGE("Youngest upstream message iterator wrapper's timestamp is less than muxer's message iterator's last returned timestamp: "
d6e69534 1128 "muxer-msg-iter-addr=%p, ts=%" PRId64 ", "
fed72692 1129 "last-returned-ts=%" PRId64,
d6e69534
PP
1130 muxer_msg_iter, next_return_ts,
1131 muxer_msg_iter->last_returned_ts_ns);
d24d5663 1132 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
958f7d11
PP
1133 goto end;
1134 }
1135
5b6473ec 1136 BT_COMP_LOGD("Found youngest upstream message iterator wrapper: "
d6e69534
PP
1137 "muxer-msg-iter-addr=%p, "
1138 "muxer-upstream-msg-iter-wrap-addr=%p, "
fed72692 1139 "ts=%" PRId64,
d6e69534 1140 muxer_msg_iter, muxer_upstream_msg_iter, next_return_ts);
d24d5663 1141 BT_ASSERT(status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK);
d6e69534 1142 BT_ASSERT(muxer_upstream_msg_iter);
958f7d11
PP
1143
1144 /*
d4393e08 1145 * Consume from the queue's head: other side
d6e69534 1146 * (muxer_upstream_msg_iter_next()) writes to the tail.
958f7d11 1147 */
d6e69534
PP
1148 *msg = g_queue_pop_head(muxer_upstream_msg_iter->msgs);
1149 BT_ASSERT(*msg);
1150 muxer_msg_iter->last_returned_ts_ns = next_return_ts;
958f7d11
PP
1151
1152end:
d4393e08
PP
1153 return status;
1154}
1155
1156static
d24d5663 1157bt_component_class_message_iterator_next_method_status muxer_msg_iter_do_next(
d4393e08 1158 struct muxer_comp *muxer_comp,
d6e69534
PP
1159 struct muxer_msg_iter *muxer_msg_iter,
1160 bt_message_array_const msgs, uint64_t capacity,
d4393e08
PP
1161 uint64_t *count)
1162{
d24d5663
PP
1163 bt_component_class_message_iterator_next_method_status status =
1164 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
d4393e08
PP
1165 uint64_t i = 0;
1166
d24d5663 1167 while (i < capacity && status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
d6e69534
PP
1168 status = muxer_msg_iter_do_next_one(muxer_comp,
1169 muxer_msg_iter, &msgs[i]);
d24d5663 1170 if (status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
d4393e08
PP
1171 i++;
1172 }
1173 }
1174
1175 if (i > 0) {
1176 /*
d6e69534 1177 * Even if muxer_msg_iter_do_next_one() returned
d4393e08 1178 * something else than
d6e69534
PP
1179 * BT_MESSAGE_ITERATOR_STATUS_OK, we accumulated
1180 * message objects in the output message
d4393e08 1181 * array, so we need to return
d6e69534 1182 * BT_MESSAGE_ITERATOR_STATUS_OK so that they are
d4393e08 1183 * transfered to downstream. This other status occurs
d6e69534 1184 * again the next time muxer_msg_iter_do_next() is
d4393e08 1185 * called, possibly without any accumulated
d6e69534 1186 * message, in which case we'll return it.
d4393e08
PP
1187 */
1188 *count = i;
d24d5663 1189 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
d4393e08
PP
1190 }
1191
1192 return status;
958f7d11
PP
1193}
1194
1195static
d6e69534 1196void destroy_muxer_msg_iter(struct muxer_msg_iter *muxer_msg_iter)
ab11110e 1197{
87ec3926
PP
1198 struct muxer_comp *muxer_comp;
1199
d6e69534 1200 if (!muxer_msg_iter) {
ab11110e
PP
1201 return;
1202 }
1203
87ec3926 1204 muxer_comp = muxer_msg_iter->muxer_comp;
5b6473ec 1205 BT_COMP_LOGD("Destroying muxer component's message iterator: "
d6e69534 1206 "muxer-msg-iter-addr=%p", muxer_msg_iter);
fed72692 1207
54bdc1f7 1208 if (muxer_msg_iter->active_muxer_upstream_msg_iters) {
5b6473ec 1209 BT_COMP_LOGD_STR("Destroying muxer's active upstream message iterator wrappers.");
54bdc1f7
PP
1210 g_ptr_array_free(
1211 muxer_msg_iter->active_muxer_upstream_msg_iters, TRUE);
1212 }
1213
1214 if (muxer_msg_iter->ended_muxer_upstream_msg_iters) {
5b6473ec 1215 BT_COMP_LOGD_STR("Destroying muxer's ended upstream message iterator wrappers.");
ab11110e 1216 g_ptr_array_free(
54bdc1f7 1217 muxer_msg_iter->ended_muxer_upstream_msg_iters, TRUE);
ab11110e
PP
1218 }
1219
d6e69534 1220 g_free(muxer_msg_iter);
ab11110e
PP
1221}
1222
1223static
5badd463 1224int muxer_msg_iter_init_upstream_iterators(struct muxer_comp *muxer_comp,
d6e69534 1225 struct muxer_msg_iter *muxer_msg_iter)
958f7d11 1226{
544d0515
PP
1227 int64_t count;
1228 int64_t i;
ab11110e 1229 int ret = 0;
958f7d11 1230
d94d92ac 1231 count = bt_component_filter_get_input_port_count(
707b7d35 1232 bt_self_component_filter_as_component_filter(
5b6473ec 1233 muxer_comp->self_comp_flt));
544d0515 1234 if (count < 0) {
5b6473ec 1235 BT_COMP_LOGD("No input port to initialize for muxer component's message iterator: "
d6e69534
PP
1236 "muxer-comp-addr=%p, muxer-msg-iter-addr=%p",
1237 muxer_comp, muxer_msg_iter);
ab11110e
PP
1238 goto end;
1239 }
958f7d11
PP
1240
1241 for (i = 0; i < count; i++) {
5badd463 1242 bt_self_component_port_input_message_iterator *upstream_msg_iter;
b19ff26f 1243 bt_self_component_port_input *self_port =
d94d92ac 1244 bt_self_component_filter_borrow_input_port_by_index(
5b6473ec 1245 muxer_comp->self_comp_flt, i);
b19ff26f 1246 const bt_port *port;
958f7d11 1247
d94d92ac 1248 BT_ASSERT(self_port);
707b7d35
PP
1249 port = bt_self_component_port_as_port(
1250 bt_self_component_port_input_as_self_component_port(
d94d92ac 1251 self_port));
f6ccaed9 1252 BT_ASSERT(port);
958f7d11
PP
1253
1254 if (!bt_port_is_connected(port)) {
5badd463 1255 /* Skip non-connected port */
958f7d11
PP
1256 continue;
1257 }
1258
87ec3926
PP
1259 upstream_msg_iter = create_msg_iter_on_input_port(muxer_comp,
1260 self_port);
5badd463
PP
1261 if (!upstream_msg_iter) {
1262 /* create_msg_iter_on_input_port() logs errors */
1263 BT_ASSERT(!upstream_msg_iter);
ab11110e
PP
1264 ret = -1;
1265 goto end;
958f7d11 1266 }
fed72692 1267
c61018b9
FD
1268 ret = muxer_msg_iter_add_upstream_msg_iter(muxer_msg_iter,
1269 upstream_msg_iter);
5badd463
PP
1270 bt_self_component_port_input_message_iterator_put_ref(
1271 upstream_msg_iter);
c61018b9 1272 if (ret) {
5badd463 1273 /* muxer_msg_iter_add_upstream_msg_iter() logs errors */
5badd463
PP
1274 goto end;
1275 }
958f7d11
PP
1276 }
1277
1278end:
958f7d11
PP
1279 return ret;
1280}
1281
958f7d11 1282BT_HIDDEN
d24d5663 1283bt_component_class_message_iterator_init_method_status muxer_msg_iter_init(
d6e69534 1284 bt_self_message_iterator *self_msg_iter,
b19ff26f
PP
1285 bt_self_component_filter *self_comp,
1286 bt_self_component_port_output *port)
958f7d11
PP
1287{
1288 struct muxer_comp *muxer_comp = NULL;
d6e69534 1289 struct muxer_msg_iter *muxer_msg_iter = NULL;
d24d5663
PP
1290 bt_component_class_message_iterator_init_method_status status =
1291 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_OK;
958f7d11
PP
1292 int ret;
1293
d94d92ac 1294 muxer_comp = bt_self_component_get_data(
707b7d35 1295 bt_self_component_filter_as_self_component(self_comp));
f6ccaed9 1296 BT_ASSERT(muxer_comp);
5b6473ec 1297 BT_COMP_LOGD("Initializing muxer component's message iterator: "
d6e69534
PP
1298 "comp-addr=%p, muxer-comp-addr=%p, msg-iter-addr=%p",
1299 self_comp, muxer_comp, self_msg_iter);
a09c6b95 1300
d6e69534 1301 if (muxer_comp->initializing_muxer_msg_iter) {
a09c6b95 1302 /*
089717de 1303 * Weird, unhandled situation detected: downstream
d6e69534
PP
1304 * creates a muxer message iterator while creating
1305 * another muxer message iterator (same component).
a09c6b95 1306 */
5b6473ec 1307 BT_COMP_LOGE("Recursive initialization of muxer component's message iterator: "
d6e69534
PP
1308 "comp-addr=%p, muxer-comp-addr=%p, msg-iter-addr=%p",
1309 self_comp, muxer_comp, self_msg_iter);
958f7d11
PP
1310 goto error;
1311 }
1312
d6e69534
PP
1313 muxer_comp->initializing_muxer_msg_iter = true;
1314 muxer_msg_iter = g_new0(struct muxer_msg_iter, 1);
1315 if (!muxer_msg_iter) {
5b6473ec 1316 BT_COMP_LOGE_STR("Failed to allocate one muxer component's message iterator.");
ab11110e
PP
1317 goto error;
1318 }
1319
87ec3926 1320 muxer_msg_iter->muxer_comp = muxer_comp;
d6e69534 1321 muxer_msg_iter->last_returned_ts_ns = INT64_MIN;
54bdc1f7 1322 muxer_msg_iter->active_muxer_upstream_msg_iters =
958f7d11 1323 g_ptr_array_new_with_free_func(
d6e69534 1324 (GDestroyNotify) destroy_muxer_upstream_msg_iter);
54bdc1f7 1325 if (!muxer_msg_iter->active_muxer_upstream_msg_iters) {
5b6473ec 1326 BT_COMP_LOGE_STR("Failed to allocate a GPtrArray.");
54bdc1f7
PP
1327 goto error;
1328 }
1329
1330 muxer_msg_iter->ended_muxer_upstream_msg_iters =
1331 g_ptr_array_new_with_free_func(
1332 (GDestroyNotify) destroy_muxer_upstream_msg_iter);
1333 if (!muxer_msg_iter->ended_muxer_upstream_msg_iters) {
5b6473ec 1334 BT_COMP_LOGE_STR("Failed to allocate a GPtrArray.");
958f7d11
PP
1335 goto error;
1336 }
1337
5badd463 1338 ret = muxer_msg_iter_init_upstream_iterators(muxer_comp,
d6e69534 1339 muxer_msg_iter);
a09c6b95 1340 if (ret) {
5b6473ec 1341 BT_COMP_LOGE("Cannot initialize connected input ports for muxer component's message iterator: "
fed72692 1342 "comp-addr=%p, muxer-comp-addr=%p, "
d6e69534
PP
1343 "muxer-msg-iter-addr=%p, msg-iter-addr=%p, ret=%d",
1344 self_comp, muxer_comp, muxer_msg_iter,
1345 self_msg_iter, ret);
a09c6b95
PP
1346 goto error;
1347 }
1348
5badd463 1349 bt_self_message_iterator_set_data(self_msg_iter, muxer_msg_iter);
5b6473ec 1350 BT_COMP_LOGD("Initialized muxer component's message iterator: "
d6e69534
PP
1351 "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
1352 "msg-iter-addr=%p",
1353 self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
958f7d11
PP
1354 goto end;
1355
1356error:
d6e69534 1357 destroy_muxer_msg_iter(muxer_msg_iter);
5badd463 1358 bt_self_message_iterator_set_data(self_msg_iter, NULL);
d24d5663 1359 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_ERROR;
958f7d11
PP
1360
1361end:
d6e69534 1362 muxer_comp->initializing_muxer_msg_iter = false;
958f7d11
PP
1363 return status;
1364}
1365
1366BT_HIDDEN
54bdc1f7 1367void muxer_msg_iter_finalize(bt_self_message_iterator *self_msg_iter)
958f7d11 1368{
d6e69534
PP
1369 struct muxer_msg_iter *muxer_msg_iter =
1370 bt_self_message_iterator_get_data(self_msg_iter);
b19ff26f 1371 bt_self_component *self_comp = NULL;
958f7d11
PP
1372 struct muxer_comp *muxer_comp = NULL;
1373
d6e69534
PP
1374 self_comp = bt_self_message_iterator_borrow_component(
1375 self_msg_iter);
d94d92ac
PP
1376 BT_ASSERT(self_comp);
1377 muxer_comp = bt_self_component_get_data(self_comp);
5b6473ec 1378 BT_COMP_LOGD("Finalizing muxer component's message iterator: "
d6e69534
PP
1379 "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
1380 "msg-iter-addr=%p",
1381 self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
958f7d11 1382
5badd463 1383 if (muxer_msg_iter) {
d6e69534 1384 destroy_muxer_msg_iter(muxer_msg_iter);
958f7d11 1385 }
958f7d11
PP
1386}
1387
1388BT_HIDDEN
d24d5663 1389bt_component_class_message_iterator_next_method_status muxer_msg_iter_next(
d6e69534
PP
1390 bt_self_message_iterator *self_msg_iter,
1391 bt_message_array_const msgs, uint64_t capacity,
d4393e08 1392 uint64_t *count)
958f7d11 1393{
d24d5663 1394 bt_component_class_message_iterator_next_method_status status;
d6e69534
PP
1395 struct muxer_msg_iter *muxer_msg_iter =
1396 bt_self_message_iterator_get_data(self_msg_iter);
b19ff26f 1397 bt_self_component *self_comp = NULL;
958f7d11 1398 struct muxer_comp *muxer_comp = NULL;
958f7d11 1399
d6e69534
PP
1400 BT_ASSERT(muxer_msg_iter);
1401 self_comp = bt_self_message_iterator_borrow_component(
1402 self_msg_iter);
d94d92ac
PP
1403 BT_ASSERT(self_comp);
1404 muxer_comp = bt_self_component_get_data(self_comp);
f6ccaed9 1405 BT_ASSERT(muxer_comp);
ef267d12 1406 BT_COMP_LOGT("Muxer component's message iterator's \"next\" method called: "
d6e69534
PP
1407 "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
1408 "msg-iter-addr=%p",
1409 self_comp, muxer_comp, muxer_msg_iter, self_msg_iter);
fed72692 1410
d6e69534
PP
1411 status = muxer_msg_iter_do_next(muxer_comp, muxer_msg_iter,
1412 msgs, capacity, count);
d4393e08 1413 if (status < 0) {
5b6473ec 1414 BT_COMP_LOGE("Cannot get next message: "
d6e69534
PP
1415 "comp-addr=%p, muxer-comp-addr=%p, muxer-msg-iter-addr=%p, "
1416 "msg-iter-addr=%p, status=%s",
1417 self_comp, muxer_comp, muxer_msg_iter, self_msg_iter,
d24d5663 1418 bt_common_func_status_string(status));
fed72692 1419 } else {
ef267d12 1420 BT_COMP_LOGT("Returning from muxer component's message iterator's \"next\" method: "
d4393e08 1421 "status=%s",
d24d5663 1422 bt_common_func_status_string(status));
fed72692 1423 }
958f7d11 1424
d4393e08 1425 return status;
958f7d11
PP
1426}
1427
1428BT_HIDDEN
d24d5663 1429bt_component_class_port_connected_method_status muxer_input_port_connected(
b19ff26f
PP
1430 bt_self_component_filter *self_comp,
1431 bt_self_component_port_input *self_port,
1432 const bt_port_output *other_port)
958f7d11 1433{
d24d5663
PP
1434 bt_component_class_port_connected_method_status status =
1435 BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_OK;
1436 bt_self_component_add_port_status add_port_status;
87ec3926
PP
1437 struct muxer_comp *muxer_comp = bt_self_component_get_data(
1438 bt_self_component_filter_as_self_component(self_comp));
958f7d11 1439
d24d5663
PP
1440 add_port_status = add_available_input_port(self_comp);
1441 if (add_port_status) {
5b6473ec 1442 BT_COMP_LOGE("Cannot add one muxer component's input port: "
5badd463 1443 "status=%s",
d24d5663
PP
1444 bt_common_func_status_string(status));
1445
1446 if (add_port_status ==
1447 BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR) {
1448 status = BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_MEMORY_ERROR;
1449 } else {
1450 status = BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR;
1451 }
1452
06a2cb0d
PP
1453 goto end;
1454 }
1455
958f7d11 1456end:
bf55043c 1457 return status;
958f7d11 1458}
b5443165 1459
54bdc1f7
PP
1460static inline
1461bt_bool muxer_upstream_msg_iters_can_all_seek_beginning(
1462 GPtrArray *muxer_upstream_msg_iters)
b5443165 1463{
b5443165
PP
1464 uint64_t i;
1465 bt_bool ret = BT_TRUE;
1466
54bdc1f7 1467 for (i = 0; i < muxer_upstream_msg_iters->len; i++) {
b5443165 1468 struct muxer_upstream_msg_iter *upstream_msg_iter =
54bdc1f7 1469 muxer_upstream_msg_iters->pdata[i];
b5443165
PP
1470
1471 if (!bt_self_component_port_input_message_iterator_can_seek_beginning(
1472 upstream_msg_iter->msg_iter)) {
1473 ret = BT_FALSE;
1474 goto end;
1475 }
1476 }
1477
1478end:
1479 return ret;
1480}
1481
54bdc1f7
PP
1482BT_HIDDEN
1483bt_bool muxer_msg_iter_can_seek_beginning(
1484 bt_self_message_iterator *self_msg_iter)
1485{
1486 struct muxer_msg_iter *muxer_msg_iter =
1487 bt_self_message_iterator_get_data(self_msg_iter);
1488 bt_bool ret = BT_TRUE;
1489
1490 if (!muxer_upstream_msg_iters_can_all_seek_beginning(
1491 muxer_msg_iter->active_muxer_upstream_msg_iters)) {
1492 ret = BT_FALSE;
1493 goto end;
1494 }
1495
1496 if (!muxer_upstream_msg_iters_can_all_seek_beginning(
1497 muxer_msg_iter->ended_muxer_upstream_msg_iters)) {
1498 ret = BT_FALSE;
1499 goto end;
1500 }
1501
1502end:
1503 return ret;
1504}
1505
b5443165 1506BT_HIDDEN
d24d5663 1507bt_component_class_message_iterator_seek_beginning_method_status muxer_msg_iter_seek_beginning(
b5443165
PP
1508 bt_self_message_iterator *self_msg_iter)
1509{
1510 struct muxer_msg_iter *muxer_msg_iter =
1511 bt_self_message_iterator_get_data(self_msg_iter);
d24d5663
PP
1512 bt_component_class_message_iterator_seek_beginning_method_status status =
1513 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_SEEK_BEGINNING_METHOD_STATUS_OK;
1514 bt_message_iterator_seek_beginning_status seek_beg_status;
b5443165
PP
1515 uint64_t i;
1516
54bdc1f7
PP
1517 /* Seek all ended upstream iterators first */
1518 for (i = 0; i < muxer_msg_iter->ended_muxer_upstream_msg_iters->len;
1519 i++) {
b5443165 1520 struct muxer_upstream_msg_iter *upstream_msg_iter =
54bdc1f7 1521 muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i];
b5443165 1522
d24d5663 1523 seek_beg_status = bt_self_component_port_input_message_iterator_seek_beginning(
b5443165 1524 upstream_msg_iter->msg_iter);
d24d5663
PP
1525 if (seek_beg_status != BT_MESSAGE_ITERATOR_SEEK_BEGINNING_STATUS_OK) {
1526 status = (int) seek_beg_status;
b5443165
PP
1527 goto end;
1528 }
54bdc1f7
PP
1529
1530 empty_message_queue(upstream_msg_iter);
1531 }
1532
1533 /* Seek all previously active upstream iterators */
1534 for (i = 0; i < muxer_msg_iter->active_muxer_upstream_msg_iters->len;
1535 i++) {
1536 struct muxer_upstream_msg_iter *upstream_msg_iter =
1537 muxer_msg_iter->active_muxer_upstream_msg_iters->pdata[i];
1538
d24d5663 1539 seek_beg_status = bt_self_component_port_input_message_iterator_seek_beginning(
54bdc1f7 1540 upstream_msg_iter->msg_iter);
d24d5663
PP
1541 if (seek_beg_status != BT_MESSAGE_ITERATOR_SEEK_BEGINNING_STATUS_OK) {
1542 status = (int) seek_beg_status;
54bdc1f7
PP
1543 goto end;
1544 }
1545
1546 empty_message_queue(upstream_msg_iter);
1547 }
1548
1549 /* Make them all active */
1550 for (i = 0; i < muxer_msg_iter->ended_muxer_upstream_msg_iters->len;
1551 i++) {
1552 struct muxer_upstream_msg_iter *upstream_msg_iter =
1553 muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i];
1554
1555 g_ptr_array_add(muxer_msg_iter->active_muxer_upstream_msg_iters,
1556 upstream_msg_iter);
1557 muxer_msg_iter->ended_muxer_upstream_msg_iters->pdata[i] = NULL;
b5443165
PP
1558 }
1559
54bdc1f7
PP
1560 g_ptr_array_remove_range(muxer_msg_iter->ended_muxer_upstream_msg_iters,
1561 0, muxer_msg_iter->ended_muxer_upstream_msg_iters->len);
b5443165 1562 muxer_msg_iter->last_returned_ts_ns = INT64_MIN;
54bdc1f7
PP
1563 muxer_msg_iter->clock_class_expectation =
1564 MUXER_MSG_ITER_CLOCK_CLASS_EXPECTATION_ANY;
b5443165
PP
1565
1566end:
d24d5663 1567 return status;
b5443165 1568}
This page took 0.135366 seconds and 4 git commands to generate.