ir: do not automatically generate a UUID in bt_ctf_clock_class_create()
[babeltrace.git] / 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
23#include <babeltrace/babeltrace-internal.h>
24#include <babeltrace/ctf-ir/clock-class.h>
25#include <babeltrace/ctf-ir/event.h>
26#include <babeltrace/graph/clock-class-priority-map.h>
27#include <babeltrace/graph/component-filter.h>
28#include <babeltrace/graph/component.h>
29#include <babeltrace/graph/notification-event.h>
30#include <babeltrace/graph/notification-inactivity.h>
31#include <babeltrace/graph/notification-iterator.h>
32#include <babeltrace/graph/notification.h>
33#include <babeltrace/graph/port.h>
34#include <babeltrace/graph/private-component-filter.h>
35#include <babeltrace/graph/private-component.h>
36#include <babeltrace/graph/private-component.h>
37#include <babeltrace/graph/private-connection.h>
38#include <babeltrace/graph/private-notification-iterator.h>
39#include <babeltrace/graph/private-port.h>
73d5c1ad 40#include <babeltrace/graph/connection.h>
958f7d11
PP
41#include <plugins-common.h>
42#include <glib.h>
c55a9f58 43#include <stdbool.h>
958f7d11 44#include <assert.h>
0fbb9a9f 45#include <stdlib.h>
958f7d11 46
c3acd5f3 47#define ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME "assume-absolute-clock-classes"
65ee897d 48
958f7d11
PP
49struct muxer_comp {
50 /* Array of struct bt_private_notification_iterator * (weak refs) */
51 GPtrArray *muxer_notif_iters;
52
53 /* Weak ref */
54 struct bt_private_component *priv_comp;
55 unsigned int next_port_num;
56 size_t available_input_ports;
57 bool error;
a09c6b95 58 bool initializing_muxer_notif_iter;
65ee897d 59 bool ignore_absolute;
958f7d11
PP
60};
61
62struct muxer_upstream_notif_iter {
ab11110e 63 /* Owned by this, NULL if ended */
958f7d11
PP
64 struct bt_notification_iterator *notif_iter;
65
089717de
PP
66 /*
67 * This flag is true if the upstream notification iterator's
68 * current notification must be considered for the multiplexing
69 * operations. If the upstream iterator returns
70 * BT_NOTIFICATION_ITERATOR_STATUS_AGAIN, then this object
71 * is considered invalid, because its current notification is
72 * still the previous one, but we already took it into account.
73 *
74 * The value of this flag is not important if notif_iter above
75 * is NULL (which means the upstream iterator is finished).
76 */
77 bool is_valid;
958f7d11
PP
78};
79
958f7d11 80struct muxer_notif_iter {
ab11110e
PP
81 /*
82 * Array of struct muxer_upstream_notif_iter * (owned by this).
83 *
84 * NOTE: This array is searched in linearly to find the youngest
85 * current notification. Keep this until benchmarks confirm that
86 * another data structure is faster than this for our typical
87 * use cases.
88 */
958f7d11
PP
89 GPtrArray *muxer_upstream_notif_iters;
90
ab11110e 91 /*
06a2cb0d 92 * List of "recently" connected input ports (weak) to
ab11110e
PP
93 * handle by this muxer notification iterator.
94 * muxer_port_connected() adds entries to this list, and the
95 * entries are removed when a notification iterator is created
96 * on the port's connection and put into
97 * muxer_upstream_notif_iters above by
98 * muxer_notif_iter_handle_newly_connected_ports().
99 */
100 GList *newly_connected_priv_ports;
958f7d11
PP
101
102 /* Next thing to return by the "next" method */
103 struct bt_notification_iterator_next_return next_next_return;
958f7d11
PP
104
105 /* Last time returned in a notification */
106 int64_t last_returned_ts_ns;
107};
108
ab11110e
PP
109static
110void destroy_muxer_upstream_notif_iter(
111 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
112{
113 if (!muxer_upstream_notif_iter) {
114 return;
115 }
116
117 bt_put(muxer_upstream_notif_iter->notif_iter);
ab11110e
PP
118 g_free(muxer_upstream_notif_iter);
119}
120
958f7d11
PP
121static
122struct muxer_upstream_notif_iter *muxer_notif_iter_add_upstream_notif_iter(
123 struct muxer_notif_iter *muxer_notif_iter,
124 struct bt_notification_iterator *notif_iter,
125 struct bt_private_port *priv_port)
126{
127 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
128 g_new0(struct muxer_upstream_notif_iter, 1);
129
130 if (!muxer_upstream_notif_iter) {
131 goto end;
132 }
133
134 muxer_upstream_notif_iter->notif_iter = bt_get(notif_iter);
089717de 135 muxer_upstream_notif_iter->is_valid = false;
958f7d11
PP
136 g_ptr_array_add(muxer_notif_iter->muxer_upstream_notif_iters,
137 muxer_upstream_notif_iter);
138
139end:
140 return muxer_upstream_notif_iter;
141}
142
958f7d11 143static
147337a3
PP
144enum bt_component_status ensure_available_input_port(
145 struct bt_private_component *priv_comp)
958f7d11
PP
146{
147 struct muxer_comp *muxer_comp =
148 bt_private_component_get_user_data(priv_comp);
147337a3 149 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
958f7d11 150 GString *port_name = NULL;
958f7d11
PP
151
152 assert(muxer_comp);
153
154 if (muxer_comp->available_input_ports >= 1) {
155 goto end;
156 }
157
158 port_name = g_string_new("in");
159 if (!port_name) {
147337a3 160 status = BT_COMPONENT_STATUS_NOMEM;
958f7d11
PP
161 goto end;
162 }
163
164 g_string_append_printf(port_name, "%u", muxer_comp->next_port_num);
147337a3
PP
165 status = bt_private_component_filter_add_input_private_port(
166 priv_comp, port_name->str, NULL, NULL);
167 if (status != BT_COMPONENT_STATUS_OK) {
958f7d11
PP
168 goto end;
169 }
170
171 muxer_comp->available_input_ports++;
172 muxer_comp->next_port_num++;
173
174end:
175 if (port_name) {
176 g_string_free(port_name, TRUE);
177 }
178
147337a3 179 return status;
958f7d11
PP
180}
181
958f7d11 182static
147337a3
PP
183enum bt_component_status create_output_port(
184 struct bt_private_component *priv_comp)
958f7d11 185{
147337a3
PP
186 return bt_private_component_filter_add_output_private_port(
187 priv_comp, "out", NULL, NULL);
958f7d11
PP
188}
189
190static
191void destroy_muxer_comp(struct muxer_comp *muxer_comp)
192{
193 if (!muxer_comp) {
194 return;
195 }
196
197 if (muxer_comp->muxer_notif_iters) {
198 g_ptr_array_free(muxer_comp->muxer_notif_iters, TRUE);
199 }
200
201 g_free(muxer_comp);
202}
203
65ee897d
PP
204static
205struct bt_value *get_default_params(void)
206{
207 struct bt_value *params;
208 int ret;
209
210 params = bt_value_map_create();
211 if (!params) {
212 goto error;
213 }
214
c3acd5f3
JG
215 ret = bt_value_map_insert_bool(params,
216 ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, false);
65ee897d
PP
217 if (ret) {
218 goto error;
219 }
220
221 goto end;
222
223error:
224 BT_PUT(params);
225
226end:
227 return params;
228}
229
230static
231int configure_muxer_comp(struct muxer_comp *muxer_comp, struct bt_value *params)
232{
233 struct bt_value *default_params = NULL;
234 struct bt_value *real_params = NULL;
235 struct bt_value *ignore_absolute = NULL;
236 int ret = 0;
c55a9f58 237 bt_bool bool_val;
65ee897d
PP
238
239 default_params = get_default_params();
240 if (!default_params) {
241 goto error;
242 }
243
244 real_params = bt_value_map_extend(default_params, params);
245 if (!real_params) {
246 goto error;
247 }
248
249 ignore_absolute = bt_value_map_get(real_params,
c3acd5f3 250 ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME);
65ee897d
PP
251 if (!bt_value_is_bool(ignore_absolute)) {
252 goto error;
253 }
254
c55a9f58 255 if (bt_value_bool_get(ignore_absolute, &bool_val)) {
65ee897d
PP
256 goto error;
257 }
258
c55a9f58
PP
259 muxer_comp->ignore_absolute = (bool) bool_val;
260
65ee897d
PP
261 goto end;
262
263error:
264 ret = -1;
265
266end:
267 bt_put(default_params);
268 bt_put(real_params);
269 bt_put(ignore_absolute);
270 return ret;
271}
272
958f7d11
PP
273BT_HIDDEN
274enum bt_component_status muxer_init(
275 struct bt_private_component *priv_comp,
276 struct bt_value *params, void *init_data)
277{
278 int ret;
279 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
280 struct muxer_comp *muxer_comp = g_new0(struct muxer_comp, 1);
281
282 if (!muxer_comp) {
283 goto error;
284 }
285
65ee897d
PP
286 ret = configure_muxer_comp(muxer_comp, params);
287 if (ret) {
288 goto error;
289 }
290
958f7d11
PP
291 muxer_comp->muxer_notif_iters = g_ptr_array_new();
292 if (!muxer_comp->muxer_notif_iters) {
293 goto error;
294 }
295
296 muxer_comp->priv_comp = priv_comp;
297 ret = bt_private_component_set_user_data(priv_comp, muxer_comp);
298 assert(ret == 0);
147337a3
PP
299 status = ensure_available_input_port(priv_comp);
300 if (status != BT_COMPONENT_STATUS_OK) {
958f7d11
PP
301 goto error;
302 }
303
304 ret = create_output_port(priv_comp);
305 if (ret) {
306 goto error;
307 }
308
309 goto end;
310
311error:
312 destroy_muxer_comp(muxer_comp);
313 ret = bt_private_component_set_user_data(priv_comp, NULL);
314 assert(ret == 0);
147337a3
PP
315
316 if (status == BT_COMPONENT_STATUS_OK) {
317 status = BT_COMPONENT_STATUS_ERROR;
318 }
958f7d11
PP
319
320end:
321 return status;
322}
323
324BT_HIDDEN
325void muxer_finalize(struct bt_private_component *priv_comp)
326{
327 struct muxer_comp *muxer_comp =
328 bt_private_component_get_user_data(priv_comp);
329
330 destroy_muxer_comp(muxer_comp);
331}
332
333static
334struct bt_notification_iterator *create_notif_iter_on_input_port(
335 struct bt_private_port *priv_port, int *ret)
336{
337 struct bt_port *port = bt_port_from_private_port(priv_port);
338 struct bt_notification_iterator *notif_iter = NULL;
339 struct bt_private_connection *priv_conn = NULL;
73d5c1ad 340 enum bt_connection_status conn_status;
958f7d11
PP
341
342 assert(ret);
343 *ret = 0;
344 assert(port);
345
346 assert(bt_port_is_connected(port));
347 priv_conn = bt_private_port_get_private_connection(priv_port);
348 if (!priv_conn) {
349 *ret = -1;
350 goto end;
351 }
352
ab11110e
PP
353 // TODO: Advance the iterator to >= the time of the latest
354 // returned notification by the muxer notification
355 // iterator which creates it.
73d5c1ad
PP
356 conn_status = bt_private_connection_create_notification_iterator(
357 priv_conn, NULL, &notif_iter);
358 if (conn_status != BT_CONNECTION_STATUS_OK) {
958f7d11
PP
359 *ret = -1;
360 goto end;
361 }
362
363end:
364 bt_put(port);
365 bt_put(priv_conn);
366 return notif_iter;
367}
368
ab11110e 369static
089717de 370enum bt_notification_iterator_status muxer_upstream_notif_iter_next(
ab11110e
PP
371 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
372{
089717de 373 enum bt_notification_iterator_status status;
ab11110e 374
089717de 375 status = bt_notification_iterator_next(
ab11110e
PP
376 muxer_upstream_notif_iter->notif_iter);
377
089717de 378 switch (status) {
ab11110e 379 case BT_NOTIFICATION_ITERATOR_STATUS_OK:
089717de
PP
380 /*
381 * Notification iterator's current notification is valid:
382 * it must be considered for muxing operations.
383 */
384 muxer_upstream_notif_iter->is_valid = true;
ab11110e
PP
385 break;
386 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
089717de
PP
387 /*
388 * Notification iterator's current notification is not
389 * valid anymore. Return
390 * BT_NOTIFICATION_ITERATOR_STATUS_AGAIN
391 * immediately.
392 */
393 muxer_upstream_notif_iter->is_valid = false;
ab11110e 394 break;
beed0223
MD
395 case BT_NOTIFICATION_ITERATOR_STATUS_END: /* Fall-through. */
396 case BT_NOTIFICATION_ITERATOR_STATUS_CANCELED:
ab11110e
PP
397 /*
398 * Notification iterator reached the end: release it. It
399 * won't be considered again to find the youngest
400 * notification.
401 */
402 BT_PUT(muxer_upstream_notif_iter->notif_iter);
089717de
PP
403 muxer_upstream_notif_iter->is_valid = false;
404 status = BT_NOTIFICATION_ITERATOR_STATUS_OK;
405 break;
ab11110e
PP
406 default:
407 /* Error or unsupported status code */
089717de
PP
408 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
409 break;
ab11110e
PP
410 }
411
089717de 412 return status;
ab11110e
PP
413}
414
415static
089717de 416int muxer_notif_iter_handle_newly_connected_ports(
ab11110e
PP
417 struct muxer_notif_iter *muxer_notif_iter)
418{
ab11110e
PP
419 int ret = 0;
420
ab11110e
PP
421 /*
422 * Here we create one upstream notification iterator for each
089717de
PP
423 * newly connected port. We do not perform an initial "next" on
424 * those new upstream notification iterators: they are
425 * invalidated, to be validated later. The list of newly
426 * connected ports to handle here is updated by
427 * muxer_port_connected().
ab11110e
PP
428 */
429 while (true) {
430 GList *node = muxer_notif_iter->newly_connected_priv_ports;
431 struct bt_private_port *priv_port;
432 struct bt_port *port;
433 struct bt_notification_iterator *upstream_notif_iter = NULL;
434 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter;
435
436 if (!node) {
437 break;
438 }
439
440 priv_port = node->data;
441 port = bt_port_from_private_port(priv_port);
442 assert(port);
443
444 if (!bt_port_is_connected(port)) {
445 /*
446 * Looks like this port is not connected
447 * anymore: we can't create an upstream
089717de
PP
448 * notification iterator on its (non-existing)
449 * connection in this case.
ab11110e
PP
450 */
451 goto remove_node;
452 }
453
454 BT_PUT(port);
455 upstream_notif_iter = create_notif_iter_on_input_port(priv_port,
456 &ret);
457 if (ret) {
458 assert(!upstream_notif_iter);
ab11110e
PP
459 goto error;
460 }
461
462 muxer_upstream_notif_iter =
463 muxer_notif_iter_add_upstream_notif_iter(
464 muxer_notif_iter, upstream_notif_iter,
465 priv_port);
ab11110e
PP
466 BT_PUT(upstream_notif_iter);
467 if (!muxer_upstream_notif_iter) {
468 goto error;
469 }
470
ab11110e
PP
471remove_node:
472 bt_put(upstream_notif_iter);
473 bt_put(port);
ab11110e
PP
474 muxer_notif_iter->newly_connected_priv_ports =
475 g_list_delete_link(
476 muxer_notif_iter->newly_connected_priv_ports,
477 node);
478 }
479
480 goto end;
481
482error:
089717de 483 if (ret >= 0) {
ab11110e
PP
484 ret = -1;
485 }
486
487end:
ab11110e
PP
488 return ret;
489}
490
958f7d11
PP
491static
492int get_notif_ts_ns(struct muxer_comp *muxer_comp,
493 struct bt_notification *notif, int64_t last_returned_ts_ns,
494 int64_t *ts_ns)
495{
496 struct bt_clock_class_priority_map *cc_prio_map = NULL;
497 struct bt_ctf_clock_class *clock_class = NULL;
498 struct bt_ctf_clock_value *clock_value = NULL;
499 struct bt_ctf_event *event = NULL;
500 int ret = 0;
501
502 assert(notif);
503 assert(ts_ns);
504
505 switch (bt_notification_get_type(notif)) {
506 case BT_NOTIFICATION_TYPE_EVENT:
507 cc_prio_map =
508 bt_notification_event_get_clock_class_priority_map(
509 notif);
510 break;
511
512 case BT_NOTIFICATION_TYPE_INACTIVITY:
513 cc_prio_map =
a09c6b95 514 bt_notification_inactivity_get_clock_class_priority_map(
958f7d11
PP
515 notif);
516 break;
517 default:
089717de 518 /* All the other notifications have a higher priority */
958f7d11
PP
519 *ts_ns = last_returned_ts_ns;
520 goto end;
521 }
522
523 if (!cc_prio_map) {
524 goto error;
525 }
526
527 /*
528 * If the clock class priority map is empty, then we consider
529 * that this notification has no time. In this case it's always
530 * the youngest.
531 */
532 if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) == 0) {
533 *ts_ns = last_returned_ts_ns;
534 goto end;
535 }
536
537 clock_class =
538 bt_clock_class_priority_map_get_highest_priority_clock_class(
539 cc_prio_map);
540 if (!clock_class) {
541 goto error;
542 }
543
65ee897d
PP
544 if (!muxer_comp->ignore_absolute &&
545 !bt_ctf_clock_class_is_absolute(clock_class)) {
958f7d11
PP
546 goto error;
547 }
548
549 switch (bt_notification_get_type(notif)) {
550 case BT_NOTIFICATION_TYPE_EVENT:
551 event = bt_notification_event_get_event(notif);
ab11110e 552 assert(event);
958f7d11
PP
553 clock_value = bt_ctf_event_get_clock_value(event,
554 clock_class);
555 break;
556 case BT_NOTIFICATION_TYPE_INACTIVITY:
557 clock_value = bt_notification_inactivity_get_clock_value(
558 notif, clock_class);
559 break;
560 default:
0fbb9a9f 561 abort();
958f7d11
PP
562 }
563
564 if (!clock_value) {
565 goto error;
566 }
567
568 ret = bt_ctf_clock_value_get_value_ns_from_epoch(clock_value, ts_ns);
569 if (ret) {
570 goto error;
571 }
572
573 goto end;
574
575error:
576 ret = -1;
577
578end:
579 bt_put(cc_prio_map);
580 bt_put(event);
581 bt_put(clock_class);
582 bt_put(clock_value);
583 return ret;
584}
585
ab11110e
PP
586/*
587 * This function finds the youngest available notification amongst the
588 * non-ended upstream notification iterators and returns the upstream
589 * notification iterator which has it, or
590 * BT_NOTIFICATION_ITERATOR_STATUS_END if there's no available
591 * notification.
592 *
593 * This function does NOT:
594 *
595 * * Update any upstream notification iterator.
596 * * Check for newly connected ports.
597 * * Check the upstream notification iterators to retry.
598 *
599 * On sucess, this function sets *muxer_upstream_notif_iter to the
600 * upstream notification iterator of which the current notification is
601 * the youngest, and sets *ts_ns to its time.
602 */
958f7d11
PP
603static
604enum bt_notification_iterator_status
605muxer_notif_iter_youngest_upstream_notif_iter(
606 struct muxer_comp *muxer_comp,
607 struct muxer_notif_iter *muxer_notif_iter,
608 struct muxer_upstream_notif_iter **muxer_upstream_notif_iter,
609 int64_t *ts_ns)
610{
611 size_t i;
612 int ret;
613 int64_t youngest_ts_ns = INT64_MAX;
614 enum bt_notification_iterator_status status =
615 BT_NOTIFICATION_ITERATOR_STATUS_OK;
616
617 assert(muxer_comp);
618 assert(muxer_notif_iter);
619 assert(muxer_upstream_notif_iter);
620 *muxer_upstream_notif_iter = NULL;
621
622 for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters->len; i++) {
623 struct bt_notification *notif;
624 struct muxer_upstream_notif_iter *cur_muxer_upstream_notif_iter =
625 g_ptr_array_index(muxer_notif_iter->muxer_upstream_notif_iters, i);
626 int64_t notif_ts_ns;
627
628 if (!cur_muxer_upstream_notif_iter->notif_iter) {
ab11110e 629 /* This upstream notification iterator is ended */
958f7d11
PP
630 continue;
631 }
632
089717de 633 assert(cur_muxer_upstream_notif_iter->is_valid);
958f7d11
PP
634 notif = bt_notification_iterator_get_notification(
635 cur_muxer_upstream_notif_iter->notif_iter);
636 assert(notif);
637 ret = get_notif_ts_ns(muxer_comp, notif,
638 muxer_notif_iter->last_returned_ts_ns, &notif_ts_ns);
639 bt_put(notif);
640 if (ret) {
641 *muxer_upstream_notif_iter = NULL;
642 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
643 goto end;
644 }
645
646 if (notif_ts_ns <= youngest_ts_ns) {
647 *muxer_upstream_notif_iter =
648 cur_muxer_upstream_notif_iter;
649 youngest_ts_ns = notif_ts_ns;
650 *ts_ns = youngest_ts_ns;
651 }
652 }
653
654 if (!*muxer_upstream_notif_iter) {
655 status = BT_NOTIFICATION_ITERATOR_STATUS_END;
656 *ts_ns = INT64_MIN;
657 }
658
659end:
660 return status;
661}
662
663static
089717de
PP
664enum bt_notification_iterator_status validate_muxer_upstream_notif_iter(
665 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter)
958f7d11 666{
089717de
PP
667 enum bt_notification_iterator_status status =
668 BT_NOTIFICATION_ITERATOR_STATUS_OK;
958f7d11 669
089717de
PP
670 if (muxer_upstream_notif_iter->is_valid ||
671 !muxer_upstream_notif_iter->notif_iter) {
ab11110e
PP
672 goto end;
673 }
674
089717de
PP
675 status = muxer_upstream_notif_iter_next(muxer_upstream_notif_iter);
676
677end:
678 return status;
679}
680
681static
682enum bt_notification_iterator_status validate_muxer_upstream_notif_iters(
683 struct muxer_notif_iter *muxer_notif_iter)
684{
685 enum bt_notification_iterator_status status =
686 BT_NOTIFICATION_ITERATOR_STATUS_OK;
687 size_t i;
688
689 for (i = 0; i < muxer_notif_iter->muxer_upstream_notif_iters->len; i++) {
690 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter =
691 g_ptr_array_index(
692 muxer_notif_iter->muxer_upstream_notif_iters,
693 i);
694
695 status = validate_muxer_upstream_notif_iter(
696 muxer_upstream_notif_iter);
697 if (status != BT_NOTIFICATION_ITERATOR_STATUS_OK) {
698 goto end;
699 }
744ba28b
PP
700
701 /*
702 * Remove this muxer upstream notification iterator
703 * if it's ended or canceled.
704 */
705 if (!muxer_upstream_notif_iter->notif_iter) {
706 /*
707 * Use g_ptr_array_remove_fast() because the
708 * order of those elements is not important.
709 */
710 g_ptr_array_remove_index_fast(
711 muxer_notif_iter->muxer_upstream_notif_iters,
712 i);
713 i--;
714 }
089717de
PP
715 }
716
717end:
718 return status;
719}
720
721static
722struct bt_notification_iterator_next_return muxer_notif_iter_do_next(
723 struct muxer_comp *muxer_comp,
724 struct muxer_notif_iter *muxer_notif_iter)
725{
726 struct muxer_upstream_notif_iter *muxer_upstream_notif_iter = NULL;
727 struct bt_notification_iterator_next_return next_return = {
728 .notification = NULL,
729 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
730 };
731 int64_t next_return_ts;
732
733 while (true) {
734 int ret = muxer_notif_iter_handle_newly_connected_ports(
735 muxer_notif_iter);
736
737 if (ret) {
738 next_return.status =
739 BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
740 goto end;
741 }
742
743 next_return.status =
744 validate_muxer_upstream_notif_iters(muxer_notif_iter);
745 if (next_return.status != BT_NOTIFICATION_ITERATOR_STATUS_OK) {
746 goto end;
747 }
ab11110e 748
958f7d11 749 /*
089717de
PP
750 * At this point, we know that all the existing upstream
751 * notification iterators are valid. However the
752 * operations to validate them (during
753 * validate_muxer_upstream_notif_iters()) may have
754 * connected new ports. If no ports were connected
755 * during this operation, exit the loop.
958f7d11 756 */
089717de
PP
757 if (!muxer_notif_iter->newly_connected_priv_ports) {
758 break;
759 }
958f7d11
PP
760 }
761
089717de
PP
762 assert(!muxer_notif_iter->newly_connected_priv_ports);
763
958f7d11 764 /*
089717de
PP
765 * At this point we know that all the existing upstream
766 * notification iterators are valid. We can find the one,
767 * amongst those, of which the current notification is the
768 * youngest.
958f7d11 769 */
089717de 770 next_return.status =
958f7d11
PP
771 muxer_notif_iter_youngest_upstream_notif_iter(muxer_comp,
772 muxer_notif_iter, &muxer_upstream_notif_iter,
089717de
PP
773 &next_return_ts);
774 if (next_return.status < 0 ||
beed0223
MD
775 next_return.status == BT_NOTIFICATION_ITERATOR_STATUS_END ||
776 next_return.status == BT_NOTIFICATION_ITERATOR_STATUS_CANCELED) {
958f7d11
PP
777 goto end;
778 }
779
089717de
PP
780 if (next_return_ts < muxer_notif_iter->last_returned_ts_ns) {
781 next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
958f7d11
PP
782 goto end;
783 }
784
089717de
PP
785 assert(next_return.status == BT_NOTIFICATION_ITERATOR_STATUS_OK);
786 assert(muxer_upstream_notif_iter);
787 next_return.notification = bt_notification_iterator_get_notification(
788 muxer_upstream_notif_iter->notif_iter);
789 assert(next_return.notification);
958f7d11
PP
790
791 /*
089717de
PP
792 * We invalidate the upstream notification iterator so that, the
793 * next time this function is called,
794 * validate_muxer_upstream_notif_iters() will make it valid.
958f7d11 795 */
089717de
PP
796 muxer_upstream_notif_iter->is_valid = false;
797 muxer_notif_iter->last_returned_ts_ns = next_return_ts;
958f7d11
PP
798
799end:
089717de 800 return next_return;
958f7d11
PP
801}
802
803static
ab11110e
PP
804void destroy_muxer_notif_iter(struct muxer_notif_iter *muxer_notif_iter)
805{
ab11110e
PP
806 if (!muxer_notif_iter) {
807 return;
808 }
809
810 if (muxer_notif_iter->muxer_upstream_notif_iters) {
811 g_ptr_array_free(
812 muxer_notif_iter->muxer_upstream_notif_iters, TRUE);
813 }
814
ab11110e
PP
815 g_list_free(muxer_notif_iter->newly_connected_priv_ports);
816 g_free(muxer_notif_iter);
817}
818
819static
820int muxer_notif_iter_init_newly_connected_ports(struct muxer_comp *muxer_comp,
958f7d11
PP
821 struct muxer_notif_iter *muxer_notif_iter)
822{
ab11110e 823 struct bt_component *comp;
544d0515
PP
824 int64_t count;
825 int64_t i;
ab11110e 826 int ret = 0;
958f7d11 827
ab11110e
PP
828 /*
829 * Add the connected input ports to this muxer notification
830 * iterator's list of newly connected ports. They will be
831 * handled by muxer_notif_iter_handle_newly_connected_ports().
832 */
958f7d11
PP
833 comp = bt_component_from_private_component(muxer_comp->priv_comp);
834 assert(comp);
544d0515
PP
835 count = bt_component_filter_get_input_port_count(comp);
836 if (count < 0) {
ab11110e
PP
837 goto end;
838 }
958f7d11
PP
839
840 for (i = 0; i < count; i++) {
841 struct bt_private_port *priv_port =
9ac68eb1 842 bt_private_component_filter_get_input_private_port_by_index(
958f7d11
PP
843 muxer_comp->priv_comp, i);
844 struct bt_port *port;
958f7d11
PP
845
846 assert(priv_port);
958f7d11 847 port = bt_port_from_private_port(priv_port);
ab11110e 848 assert(port);
958f7d11
PP
849
850 if (!bt_port_is_connected(port)) {
958f7d11 851 bt_put(priv_port);
ab11110e 852 bt_put(port);
958f7d11
PP
853 continue;
854 }
855
856 bt_put(port);
06a2cb0d 857 bt_put(priv_port);
ab11110e
PP
858 muxer_notif_iter->newly_connected_priv_ports =
859 g_list_append(
860 muxer_notif_iter->newly_connected_priv_ports,
958f7d11 861 priv_port);
ab11110e 862 if (!muxer_notif_iter->newly_connected_priv_ports) {
ab11110e
PP
863 ret = -1;
864 goto end;
958f7d11 865 }
958f7d11
PP
866 }
867
868end:
869 bt_put(comp);
870 return ret;
871}
872
958f7d11
PP
873BT_HIDDEN
874enum bt_notification_iterator_status muxer_notif_iter_init(
875 struct bt_private_notification_iterator *priv_notif_iter,
876 struct bt_private_port *output_priv_port)
877{
878 struct muxer_comp *muxer_comp = NULL;
879 struct muxer_notif_iter *muxer_notif_iter = NULL;
880 struct bt_private_component *priv_comp = NULL;
881 enum bt_notification_iterator_status status =
882 BT_NOTIFICATION_ITERATOR_STATUS_OK;
883 int ret;
884
885 priv_comp = bt_private_notification_iterator_get_private_component(
886 priv_notif_iter);
887 assert(priv_comp);
888 muxer_comp = bt_private_component_get_user_data(priv_comp);
889 assert(muxer_comp);
a09c6b95
PP
890
891 if (muxer_comp->initializing_muxer_notif_iter) {
892 /*
089717de
PP
893 * Weird, unhandled situation detected: downstream
894 * creates a muxer notification iterator while creating
895 * another muxer notification iterator (same component).
a09c6b95 896 */
958f7d11
PP
897 goto error;
898 }
899
a09c6b95
PP
900 muxer_comp->initializing_muxer_notif_iter = true;
901 muxer_notif_iter = g_new0(struct muxer_notif_iter, 1);
902 if (!muxer_notif_iter) {
ab11110e
PP
903 goto error;
904 }
905
958f7d11
PP
906 muxer_notif_iter->last_returned_ts_ns = INT64_MIN;
907 muxer_notif_iter->muxer_upstream_notif_iters =
908 g_ptr_array_new_with_free_func(
909 (GDestroyNotify) destroy_muxer_upstream_notif_iter);
910 if (!muxer_notif_iter->muxer_upstream_notif_iters) {
911 goto error;
912 }
913
a09c6b95
PP
914 /*
915 * Add the muxer notification iterator to the component's array
916 * of muxer notification iterators here because
917 * muxer_notif_iter_init_newly_connected_ports() can cause
918 * muxer_port_connected() to be called, which adds the newly
919 * connected port to each muxer notification iterator's list of
920 * newly connected ports.
921 */
922 g_ptr_array_add(muxer_comp->muxer_notif_iters, muxer_notif_iter);
923 ret = muxer_notif_iter_init_newly_connected_ports(muxer_comp,
924 muxer_notif_iter);
925 if (ret) {
926 goto error;
927 }
928
958f7d11
PP
929 ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
930 muxer_notif_iter);
931 assert(ret == 0);
958f7d11
PP
932 goto end;
933
934error:
a09c6b95
PP
935 if (g_ptr_array_index(muxer_comp->muxer_notif_iters,
936 muxer_comp->muxer_notif_iters->len - 1) == muxer_notif_iter) {
937 g_ptr_array_remove_index(muxer_comp->muxer_notif_iters,
938 muxer_comp->muxer_notif_iters->len - 1);
939 }
940
958f7d11
PP
941 destroy_muxer_notif_iter(muxer_notif_iter);
942 ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
943 NULL);
944 assert(ret == 0);
945 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
946
947end:
a09c6b95 948 muxer_comp->initializing_muxer_notif_iter = false;
958f7d11
PP
949 bt_put(priv_comp);
950 return status;
951}
952
953BT_HIDDEN
954void muxer_notif_iter_finalize(
955 struct bt_private_notification_iterator *priv_notif_iter)
956{
957 struct muxer_notif_iter *muxer_notif_iter =
958 bt_private_notification_iterator_get_user_data(priv_notif_iter);
959 struct bt_private_component *priv_comp = NULL;
960 struct muxer_comp *muxer_comp = NULL;
961
962 priv_comp = bt_private_notification_iterator_get_private_component(
963 priv_notif_iter);
964 assert(priv_comp);
965 muxer_comp = bt_private_component_get_user_data(priv_comp);
966
967 if (muxer_comp) {
968 (void) g_ptr_array_remove_fast(muxer_comp->muxer_notif_iters,
969 muxer_notif_iter);
970 destroy_muxer_notif_iter(muxer_notif_iter);
971 }
972
973 bt_put(priv_comp);
974}
975
976BT_HIDDEN
977struct bt_notification_iterator_next_return muxer_notif_iter_next(
978 struct bt_private_notification_iterator *priv_notif_iter)
979{
089717de 980 struct bt_notification_iterator_next_return next_ret;
958f7d11
PP
981 struct muxer_notif_iter *muxer_notif_iter =
982 bt_private_notification_iterator_get_user_data(priv_notif_iter);
983 struct bt_private_component *priv_comp = NULL;
984 struct muxer_comp *muxer_comp = NULL;
958f7d11
PP
985
986 assert(muxer_notif_iter);
987 priv_comp = bt_private_notification_iterator_get_private_component(
988 priv_notif_iter);
989 assert(priv_comp);
990 muxer_comp = bt_private_component_get_user_data(priv_comp);
991 assert(muxer_comp);
992
993 /* Are we in an error state set elsewhere? */
994 if (unlikely(muxer_comp->error)) {
089717de
PP
995 next_ret.notification = NULL;
996 next_ret.status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
997 goto end;
958f7d11
PP
998 }
999
089717de 1000 next_ret = muxer_notif_iter_do_next(muxer_comp, muxer_notif_iter);
958f7d11
PP
1001
1002end:
1003 bt_put(priv_comp);
1004 return next_ret;
1005}
1006
1007BT_HIDDEN
1008void muxer_port_connected(
1009 struct bt_private_component *priv_comp,
1010 struct bt_private_port *self_private_port,
1011 struct bt_port *other_port)
1012{
1013 struct bt_port *self_port =
1014 bt_port_from_private_port(self_private_port);
1015 struct muxer_comp *muxer_comp =
1016 bt_private_component_get_user_data(priv_comp);
1017 size_t i;
06a2cb0d 1018 int ret;
958f7d11
PP
1019
1020 assert(self_port);
1021 assert(muxer_comp);
1022
06a2cb0d
PP
1023 if (bt_port_get_type(self_port) == BT_PORT_TYPE_OUTPUT) {
1024 goto end;
958f7d11
PP
1025 }
1026
1027 for (i = 0; i < muxer_comp->muxer_notif_iters->len; i++) {
1028 struct muxer_notif_iter *muxer_notif_iter =
1029 g_ptr_array_index(muxer_comp->muxer_notif_iters, i);
1030
1031 /*
ab11110e
PP
1032 * Add this port to the list of newly connected ports
1033 * for this muxer notification iterator. We append at
1034 * the end of this list while
1035 * muxer_notif_iter_handle_newly_connected_ports()
1036 * removes the nodes from the beginning.
1037 *
1038 * The list node owns the private port.
958f7d11 1039 */
ab11110e
PP
1040 muxer_notif_iter->newly_connected_priv_ports =
1041 g_list_append(
1042 muxer_notif_iter->newly_connected_priv_ports,
06a2cb0d 1043 self_private_port);
ab11110e 1044 if (!muxer_notif_iter->newly_connected_priv_ports) {
089717de 1045 /* Put reference taken by bt_get() above */
958f7d11
PP
1046 muxer_comp->error = true;
1047 goto end;
1048 }
1049 }
1050
06a2cb0d
PP
1051 /* One less available input port */
1052 muxer_comp->available_input_ports--;
1053 ret = ensure_available_input_port(priv_comp);
1054 if (ret) {
1055 /*
1056 * Only way to report an error later since this
1057 * method does not return anything.
1058 */
1059 muxer_comp->error = true;
1060 goto end;
1061 }
1062
958f7d11
PP
1063end:
1064 bt_put(self_port);
1065}
1066
1067BT_HIDDEN
1068void muxer_port_disconnected(struct bt_private_component *priv_comp,
1069 struct bt_private_port *priv_port)
1070{
1071 struct bt_port *port = bt_port_from_private_port(priv_port);
1072 struct muxer_comp *muxer_comp =
1073 bt_private_component_get_user_data(priv_comp);
1074
1075 assert(port);
1076 assert(muxer_comp);
1077
ab11110e
PP
1078 /*
1079 * There's nothing special to do when a port is disconnected
1080 * because this component deals with upstream notification
1081 * iterators which were already created thanks to connected
1082 * ports. The fact that the port is disconnected does not cancel
1083 * the upstream notification iterators created using its
089717de
PP
1084 * connection: they still exist, even if the connection is dead.
1085 * The only way to remove an upstream notification iterator is
1086 * for its "next" operation to return
1087 * BT_NOTIFICATION_ITERATOR_STATUS_END.
ab11110e 1088 */
958f7d11
PP
1089 if (bt_port_get_type(port) == BT_PORT_TYPE_INPUT) {
1090 /* One more available input port */
1091 muxer_comp->available_input_ports++;
1092 }
1093
1094 bt_put(port);
1095}
This page took 0.07366 seconds and 4 git commands to generate.