bt2: message_iterator.py: packet beginning/end messages have a single CS
[babeltrace.git] / src / lib / graph / iterator.c
CommitLineData
47e5a032 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
47e5a032 3 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
47e5a032
JG
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
d6e69534 24#define BT_LOG_TAG "MSG-ITER"
578e048b 25#include "lib/lib-logging.h"
5af447e5 26
578e048b
MJ
27#include "compat/compiler.h"
28#include "lib/trace-ir/clock-class.h"
29#include "lib/trace-ir/clock-snapshot.h"
3fadfbc0
MJ
30#include <babeltrace2/trace-ir/field.h>
31#include <babeltrace2/trace-ir/event-const.h>
578e048b 32#include "lib/trace-ir/event.h"
3fadfbc0 33#include <babeltrace2/trace-ir/packet-const.h>
578e048b
MJ
34#include "lib/trace-ir/packet.h"
35#include "lib/trace-ir/stream.h"
3fadfbc0 36#include <babeltrace2/graph/connection-const.h>
3fadfbc0 37#include <babeltrace2/graph/component-const.h>
3fadfbc0 38#include <babeltrace2/graph/component-sink-const.h>
3fadfbc0
MJ
39#include <babeltrace2/graph/message-const.h>
40#include <babeltrace2/graph/message-iterator-const.h>
3fadfbc0
MJ
41#include <babeltrace2/graph/self-component-port-input-message-iterator.h>
42#include <babeltrace2/graph/port-output-message-iterator.h>
3fadfbc0 43#include <babeltrace2/graph/message-event-const.h>
3fadfbc0
MJ
44#include <babeltrace2/graph/message-packet-beginning-const.h>
45#include <babeltrace2/graph/message-packet-end-const.h>
3fadfbc0
MJ
46#include <babeltrace2/graph/message-stream-beginning-const.h>
47#include <babeltrace2/graph/message-stream-end-const.h>
3fadfbc0
MJ
48#include <babeltrace2/graph/port-const.h>
49#include <babeltrace2/graph/graph.h>
50#include <babeltrace2/graph/graph-const.h>
3fadfbc0 51#include <babeltrace2/types.h>
578e048b
MJ
52#include "common/assert.h"
53#include "lib/assert-pre.h"
fa054faf 54#include <stdint.h>
2ec84d26 55#include <inttypes.h>
0fbb9a9f 56#include <stdlib.h>
3230ee6b 57
578e048b
MJ
58#include "component-class.h"
59#include "component-class-sink-colander.h"
60#include "component.h"
61#include "component-sink.h"
62#include "component-source.h"
63#include "connection.h"
64#include "graph.h"
65#include "message/discarded-items.h"
66#include "message/event.h"
67#include "message/iterator.h"
68#include "message/message.h"
69#include "message/message-iterator-inactivity.h"
70#include "message/stream.h"
71#include "message/packet.h"
72#include "message/stream-activity.h"
73
d4393e08
PP
74/*
75 * TODO: Use graph's state (number of active iterators, etc.) and
76 * possibly system specifications to make a better guess than this.
77 */
d6e69534 78#define MSG_BATCH_SIZE 15
d4393e08 79
7474e7d3
PP
80#define BT_ASSERT_PRE_ITER_HAS_STATE_TO_SEEK(_iter) \
81 BT_ASSERT_PRE((_iter)->state == BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE || \
82 (_iter)->state == BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ENDED || \
83 (_iter)->state == BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_LAST_SEEKING_RETURNED_AGAIN || \
84 (_iter)->state == BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_LAST_SEEKING_RETURNED_ERROR, \
85 "Message iterator is in the wrong state: %!+i", _iter)
47e5a032 86
d0fea130 87static inline
003e713f 88void set_self_comp_port_input_msg_iterator_state(
d0fea130
PP
89 struct bt_self_component_port_input_message_iterator *iterator,
90 enum bt_self_component_port_input_message_iterator_state state)
91{
92 BT_ASSERT(iterator);
7474e7d3 93 BT_LIB_LOGD("Updating message iterator's state: new-state=%s",
d0fea130
PP
94 bt_self_component_port_input_message_iterator_state_string(state));
95 iterator->state = state;
96}
97
8ed535b5 98static
d6e69534 99void destroy_base_message_iterator(struct bt_object *obj)
8ed535b5 100{
d6e69534 101 struct bt_message_iterator *iterator = (void *) obj;
d4393e08
PP
102
103 BT_ASSERT(iterator);
104
d6e69534
PP
105 if (iterator->msgs) {
106 g_ptr_array_free(iterator->msgs, TRUE);
107 iterator->msgs = NULL;
d4393e08
PP
108 }
109
110 g_free(iterator);
8ed535b5
PP
111}
112
47e5a032 113static
d6e69534 114void bt_self_component_port_input_message_iterator_destroy(struct bt_object *obj)
47e5a032 115{
d6e69534 116 struct bt_self_component_port_input_message_iterator *iterator;
8738a040 117
f6ccaed9 118 BT_ASSERT(obj);
d3eb6e8f 119
bd14d768 120 /*
d6e69534 121 * The message iterator's reference count is 0 if we're
bd14d768
PP
122 * here. Increment it to avoid a double-destroy (possibly
123 * infinitely recursive). This could happen for example if the
d6e69534 124 * message iterator's finalization function does
d94d92ac
PP
125 * bt_object_get_ref() (or anything that causes
126 * bt_object_get_ref() to be called) on itself (ref. count goes
127 * from 0 to 1), and then bt_object_put_ref(): the reference
128 * count would go from 1 to 0 again and this function would be
129 * called again.
bd14d768 130 */
3fea54f6 131 obj->ref_count++;
07245ac2 132 iterator = (void *) obj;
d6e69534 133 BT_LIB_LOGD("Destroying self component input port message iterator object: "
d94d92ac 134 "%!+i", iterator);
d0fea130 135 bt_self_component_port_input_message_iterator_try_finalize(iterator);
d3eb6e8f 136
bd14d768
PP
137 if (iterator->connection) {
138 /*
139 * Remove ourself from the originating connection so
140 * that it does not try to finalize a dangling pointer
141 * later.
142 */
143 bt_connection_remove_iterator(iterator->connection, iterator);
d94d92ac 144 iterator->connection = NULL;
bd14d768
PP
145 }
146
7474e7d3 147 if (iterator->auto_seek_msgs) {
5b9e151d
PP
148 while (!g_queue_is_empty(iterator->auto_seek_msgs)) {
149 bt_object_put_no_null_check(
150 g_queue_pop_tail(iterator->auto_seek_msgs));
7474e7d3
PP
151 }
152
5b9e151d 153 g_queue_free(iterator->auto_seek_msgs);
7474e7d3
PP
154 iterator->auto_seek_msgs = NULL;
155 }
156
d6e69534 157 destroy_base_message_iterator(obj);
47e5a032
JG
158}
159
bd14d768 160BT_HIDDEN
d0fea130 161void bt_self_component_port_input_message_iterator_try_finalize(
d6e69534 162 struct bt_self_component_port_input_message_iterator *iterator)
bd14d768 163{
d94d92ac
PP
164 typedef void (*method_t)(void *);
165
bd14d768 166 struct bt_component_class *comp_class = NULL;
d94d92ac 167 method_t method = NULL;
bd14d768 168
f6ccaed9 169 BT_ASSERT(iterator);
bd14d768
PP
170
171 switch (iterator->state) {
d6e69534 172 case BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_NON_INITIALIZED:
088d4023 173 /* Skip user finalization if user initialization failed */
d6e69534 174 BT_LIB_LOGD("Not finalizing non-initialized message iterator: "
d94d92ac 175 "%!+i", iterator);
d0fea130 176 goto end;
d6e69534 177 case BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_FINALIZED:
bd14d768 178 /* Already finalized */
d6e69534 179 BT_LIB_LOGD("Not finalizing message iterator: already finalized: "
d94d92ac 180 "%!+i", iterator);
d0fea130
PP
181 goto end;
182 case BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_FINALIZING:
183 /* Already finalized */
184 BT_LIB_LOGF("Message iterator is already being finalized: "
185 "%!+i", iterator);
186 abort();
bd14d768
PP
187 default:
188 break;
189 }
190
d6e69534 191 BT_LIB_LOGD("Finalizing message iterator: %!+i", iterator);
d0fea130
PP
192 set_self_comp_port_input_msg_iterator_state(iterator,
193 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_FINALIZING);
f6ccaed9 194 BT_ASSERT(iterator->upstream_component);
bd14d768
PP
195 comp_class = iterator->upstream_component->class;
196
197 /* Call user-defined destroy method */
198 switch (comp_class->type) {
199 case BT_COMPONENT_CLASS_TYPE_SOURCE:
200 {
d94d92ac
PP
201 struct bt_component_class_source *src_comp_cls =
202 (void *) comp_class;
bd14d768 203
d6e69534 204 method = (method_t) src_comp_cls->methods.msg_iter_finalize;
bd14d768
PP
205 break;
206 }
207 case BT_COMPONENT_CLASS_TYPE_FILTER:
208 {
d94d92ac
PP
209 struct bt_component_class_filter *flt_comp_cls =
210 (void *) comp_class;
bd14d768 211
d6e69534 212 method = (method_t) flt_comp_cls->methods.msg_iter_finalize;
bd14d768
PP
213 break;
214 }
215 default:
216 /* Unreachable */
0fbb9a9f 217 abort();
bd14d768
PP
218 }
219
d94d92ac
PP
220 if (method) {
221 BT_LIB_LOGD("Calling user's finalization method: %!+i",
5af447e5 222 iterator);
d94d92ac 223 method(iterator);
bd14d768
PP
224 }
225
bd14d768
PP
226 iterator->upstream_component = NULL;
227 iterator->upstream_port = NULL;
d0fea130
PP
228 set_self_comp_port_input_msg_iterator_state(iterator,
229 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_FINALIZED);
d6e69534 230 BT_LIB_LOGD("Finalized message iterator: %!+i", iterator);
d0fea130
PP
231
232end:
233 return;
bd14d768
PP
234}
235
236BT_HIDDEN
d6e69534
PP
237void bt_self_component_port_input_message_iterator_set_connection(
238 struct bt_self_component_port_input_message_iterator *iterator,
bd14d768
PP
239 struct bt_connection *connection)
240{
f6ccaed9 241 BT_ASSERT(iterator);
bd14d768 242 iterator->connection = connection;
d6e69534 243 BT_LIB_LOGV("Set message iterator's connection: "
d94d92ac 244 "%![iter-]+i, %![conn-]+x", iterator, connection);
bd14d768
PP
245}
246
90157d89 247static
d6e69534
PP
248int init_message_iterator(struct bt_message_iterator *iterator,
249 enum bt_message_iterator_type type,
90157d89
PP
250 bt_object_release_func destroy)
251{
d4393e08
PP
252 int ret = 0;
253
3fea54f6 254 bt_object_init_shared(&iterator->base, destroy);
90157d89 255 iterator->type = type;
d6e69534
PP
256 iterator->msgs = g_ptr_array_new();
257 if (!iterator->msgs) {
d4393e08
PP
258 BT_LOGE_STR("Failed to allocate a GPtrArray.");
259 ret = -1;
260 goto end;
261 }
262
d6e69534 263 g_ptr_array_set_size(iterator->msgs, MSG_BATCH_SIZE);
d4393e08
PP
264
265end:
266 return ret;
90157d89
PP
267}
268
7474e7d3
PP
269static
270bt_bool can_seek_ns_from_origin_true(
271 struct bt_self_component_port_input_message_iterator *iterator,
272 int64_t ns_from_origin)
273{
274 return BT_TRUE;
275}
276
277static
278bt_bool can_seek_beginning_true(
279 struct bt_self_component_port_input_message_iterator *iterator)
280{
281 return BT_TRUE;
282}
283
d94d92ac 284static
d6e69534
PP
285struct bt_self_component_port_input_message_iterator *
286bt_self_component_port_input_message_iterator_create_initial(
3230ee6b 287 struct bt_component *upstream_comp,
d94d92ac 288 struct bt_port *upstream_port)
47e5a032 289{
d4393e08 290 int ret;
d6e69534 291 struct bt_self_component_port_input_message_iterator *iterator = NULL;
47e5a032 292
f6ccaed9
PP
293 BT_ASSERT(upstream_comp);
294 BT_ASSERT(upstream_port);
f6ccaed9 295 BT_ASSERT(bt_port_is_connected(upstream_port));
d6e69534 296 BT_LIB_LOGD("Creating initial message iterator on self component input port: "
d94d92ac
PP
297 "%![up-comp-]+c, %![up-port-]+p", upstream_comp, upstream_port);
298 BT_ASSERT(bt_component_get_class_type(upstream_comp) ==
299 BT_COMPONENT_CLASS_TYPE_SOURCE ||
300 bt_component_get_class_type(upstream_comp) ==
301 BT_COMPONENT_CLASS_TYPE_FILTER);
302 iterator = g_new0(
d6e69534 303 struct bt_self_component_port_input_message_iterator, 1);
47e5a032 304 if (!iterator) {
d94d92ac 305 BT_LOGE_STR("Failed to allocate one self component input port "
d6e69534 306 "message iterator.");
73d5c1ad 307 goto end;
47e5a032
JG
308 }
309
d6e69534
PP
310 ret = init_message_iterator((void *) iterator,
311 BT_MESSAGE_ITERATOR_TYPE_SELF_COMPONENT_PORT_INPUT,
312 bt_self_component_port_input_message_iterator_destroy);
d4393e08 313 if (ret) {
d6e69534 314 /* init_message_iterator() logs errors */
d94d92ac 315 BT_OBJECT_PUT_REF_AND_RESET(iterator);
d4393e08
PP
316 goto end;
317 }
3230ee6b 318
5b9e151d 319 iterator->auto_seek_msgs = g_queue_new();
7474e7d3 320 if (!iterator->auto_seek_msgs) {
5b9e151d 321 BT_LOGE_STR("Failed to allocate a GQueue.");
7474e7d3 322 ret = -1;
73d5c1ad 323 goto end;
3230ee6b
PP
324 }
325
bd14d768
PP
326 iterator->upstream_component = upstream_comp;
327 iterator->upstream_port = upstream_port;
d94d92ac 328 iterator->connection = iterator->upstream_port->connection;
5c563278 329 iterator->graph = bt_component_borrow_graph(upstream_comp);
d0fea130
PP
330 set_self_comp_port_input_msg_iterator_state(iterator,
331 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_NON_INITIALIZED);
7474e7d3
PP
332
333 switch (iterator->upstream_component->class->type) {
334 case BT_COMPONENT_CLASS_TYPE_SOURCE:
335 {
336 struct bt_component_class_source *src_comp_cls =
337 (void *) iterator->upstream_component->class;
338
339 iterator->methods.next =
340 (bt_self_component_port_input_message_iterator_next_method)
341 src_comp_cls->methods.msg_iter_next;
342 iterator->methods.seek_ns_from_origin =
343 (bt_self_component_port_input_message_iterator_seek_ns_from_origin_method)
344 src_comp_cls->methods.msg_iter_seek_ns_from_origin;
345 iterator->methods.seek_beginning =
346 (bt_self_component_port_input_message_iterator_seek_beginning_method)
347 src_comp_cls->methods.msg_iter_seek_beginning;
348 iterator->methods.can_seek_ns_from_origin =
349 (bt_self_component_port_input_message_iterator_can_seek_ns_from_origin_method)
350 src_comp_cls->methods.msg_iter_can_seek_ns_from_origin;
351 iterator->methods.can_seek_beginning =
352 (bt_self_component_port_input_message_iterator_can_seek_beginning_method)
353 src_comp_cls->methods.msg_iter_can_seek_beginning;
354 break;
355 }
356 case BT_COMPONENT_CLASS_TYPE_FILTER:
357 {
358 struct bt_component_class_filter *flt_comp_cls =
359 (void *) iterator->upstream_component->class;
360
361 iterator->methods.next =
362 (bt_self_component_port_input_message_iterator_next_method)
363 flt_comp_cls->methods.msg_iter_next;
364 iterator->methods.seek_ns_from_origin =
365 (bt_self_component_port_input_message_iterator_seek_ns_from_origin_method)
366 flt_comp_cls->methods.msg_iter_seek_ns_from_origin;
367 iterator->methods.seek_beginning =
368 (bt_self_component_port_input_message_iterator_seek_beginning_method)
369 flt_comp_cls->methods.msg_iter_seek_beginning;
370 iterator->methods.can_seek_ns_from_origin =
371 (bt_self_component_port_input_message_iterator_can_seek_ns_from_origin_method)
372 flt_comp_cls->methods.msg_iter_can_seek_ns_from_origin;
373 iterator->methods.can_seek_beginning =
374 (bt_self_component_port_input_message_iterator_can_seek_beginning_method)
375 flt_comp_cls->methods.msg_iter_can_seek_beginning;
376 break;
377 }
378 default:
379 abort();
380 }
381
382 if (iterator->methods.seek_ns_from_origin &&
383 !iterator->methods.can_seek_ns_from_origin) {
384 iterator->methods.can_seek_ns_from_origin =
385 (bt_self_component_port_input_message_iterator_can_seek_ns_from_origin_method)
386 can_seek_ns_from_origin_true;
387 }
388
389 if (iterator->methods.seek_beginning &&
390 !iterator->methods.can_seek_beginning) {
391 iterator->methods.can_seek_beginning =
392 (bt_self_component_port_input_message_iterator_seek_beginning_method)
393 can_seek_beginning_true;
394 }
395
d6e69534 396 BT_LIB_LOGD("Created initial message iterator on self component input port: "
d94d92ac
PP
397 "%![up-port-]+p, %![up-comp-]+c, %![iter-]+i",
398 upstream_port, upstream_comp, iterator);
3230ee6b 399
47e5a032 400end:
d94d92ac 401 return iterator;
47e5a032
JG
402}
403
d6e69534
PP
404struct bt_self_component_port_input_message_iterator *
405bt_self_component_port_input_message_iterator_create(
d94d92ac 406 struct bt_self_component_port_input *self_port)
ea8d3e58 407{
d6e69534 408 typedef enum bt_self_message_iterator_status (*init_method_t)(
d94d92ac
PP
409 void *, void *, void *);
410
411 init_method_t init_method = NULL;
d6e69534 412 struct bt_self_component_port_input_message_iterator *iterator =
d94d92ac
PP
413 NULL;
414 struct bt_port *port = (void *) self_port;
415 struct bt_port *upstream_port;
416 struct bt_component *comp;
417 struct bt_component *upstream_comp;
418 struct bt_component_class *upstream_comp_cls;
419
420 BT_ASSERT_PRE_NON_NULL(port, "Port");
0d72b8c3 421 comp = bt_port_borrow_component_inline(port);
d94d92ac
PP
422 BT_ASSERT_PRE(bt_port_is_connected(port),
423 "Port is not connected: %![port-]+p", port);
424 BT_ASSERT_PRE(comp, "Port is not part of a component: %![port-]+p",
425 port);
426 BT_ASSERT_PRE(!bt_component_graph_is_canceled(comp),
427 "Port's component's graph is canceled: "
428 "%![port-]+p, %![comp-]+c", port, comp);
429 BT_ASSERT(port->connection);
430 upstream_port = port->connection->upstream_port;
431 BT_ASSERT(upstream_port);
0d72b8c3 432 upstream_comp = bt_port_borrow_component_inline(upstream_port);
d94d92ac 433 BT_ASSERT(upstream_comp);
5badd463
PP
434 BT_ASSERT_PRE(
435 bt_component_borrow_graph(upstream_comp)->config_state !=
436 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
437 "Graph is not configured: %!+g",
438 bt_component_borrow_graph(upstream_comp));
d94d92ac
PP
439 upstream_comp_cls = upstream_comp->class;
440 BT_ASSERT(upstream_comp->class->type ==
441 BT_COMPONENT_CLASS_TYPE_SOURCE ||
442 upstream_comp->class->type ==
443 BT_COMPONENT_CLASS_TYPE_FILTER);
d6e69534 444 iterator = bt_self_component_port_input_message_iterator_create_initial(
d94d92ac
PP
445 upstream_comp, upstream_port);
446 if (!iterator) {
447 BT_LOGW_STR("Cannot create self component input port "
d6e69534 448 "message iterator.");
d94d92ac
PP
449 goto end;
450 }
890882ef 451
d94d92ac
PP
452 switch (upstream_comp_cls->type) {
453 case BT_COMPONENT_CLASS_TYPE_SOURCE:
454 {
455 struct bt_component_class_source *src_comp_cls =
456 (void *) upstream_comp_cls;
457
458 init_method =
d6e69534 459 (init_method_t) src_comp_cls->methods.msg_iter_init;
d94d92ac
PP
460 break;
461 }
462 case BT_COMPONENT_CLASS_TYPE_FILTER:
463 {
464 struct bt_component_class_filter *flt_comp_cls =
465 (void *) upstream_comp_cls;
466
467 init_method =
d6e69534 468 (init_method_t) flt_comp_cls->methods.msg_iter_init;
d94d92ac
PP
469 break;
470 }
471 default:
472 /* Unreachable */
473 abort();
474 }
475
476 if (init_method) {
477 int iter_status;
478
479 BT_LIB_LOGD("Calling user's initialization method: %!+i", iterator);
480 iter_status = init_method(iterator, upstream_comp,
481 upstream_port);
482 BT_LOGD("User method returned: status=%s",
d6e69534
PP
483 bt_message_iterator_status_string(iter_status));
484 if (iter_status != BT_MESSAGE_ITERATOR_STATUS_OK) {
d94d92ac 485 BT_LOGW_STR("Initialization method failed.");
d0fea130 486 BT_OBJECT_PUT_REF_AND_RESET(iterator);
d94d92ac
PP
487 goto end;
488 }
489 }
490
d0fea130
PP
491 set_self_comp_port_input_msg_iterator_state(iterator,
492 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE);
d94d92ac 493 g_ptr_array_add(port->connection->iterators, iterator);
d6e69534 494 BT_LIB_LOGD("Created message iterator on self component input port: "
d94d92ac
PP
495 "%![up-port-]+p, %![up-comp-]+c, %![iter-]+i",
496 upstream_port, upstream_comp, iterator);
497
498end:
499 return iterator;
ea8d3e58
JG
500}
501
d6e69534
PP
502void *bt_self_message_iterator_get_data(
503 const struct bt_self_message_iterator *self_iterator)
ea8d3e58 504{
d6e69534 505 struct bt_self_component_port_input_message_iterator *iterator =
d94d92ac 506 (void *) self_iterator;
ea8d3e58 507
d6e69534 508 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
d94d92ac 509 return iterator->user_data;
8738a040 510}
413bc2c4 511
d6e69534
PP
512void bt_self_message_iterator_set_data(
513 struct bt_self_message_iterator *self_iterator, void *data)
5c563278 514{
d6e69534 515 struct bt_self_component_port_input_message_iterator *iterator =
d94d92ac 516 (void *) self_iterator;
5c563278 517
d6e69534 518 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
d94d92ac 519 iterator->user_data = data;
d6e69534 520 BT_LIB_LOGV("Set message iterator's user data: "
d94d92ac 521 "%!+i, user-data-addr=%p", iterator, data);
5c563278
PP
522}
523
d6e69534
PP
524enum bt_message_iterator_status
525bt_self_component_port_input_message_iterator_next(
526 struct bt_self_component_port_input_message_iterator *iterator,
527 bt_message_array_const *msgs, uint64_t *user_count)
3230ee6b 528{
d6e69534 529 int status = BT_MESSAGE_ITERATOR_STATUS_OK;
d94d92ac 530
d6e69534
PP
531 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
532 BT_ASSERT_PRE_NON_NULL(msgs, "Message array (output)");
533 BT_ASSERT_PRE_NON_NULL(user_count, "Message count (output)");
f42867e2 534 BT_ASSERT_PRE(iterator->state ==
d6e69534
PP
535 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE,
536 "Message iterator's \"next\" called, but "
7474e7d3 537 "message iterator is in the wrong state: %!+i", iterator);
f42867e2
PP
538 BT_ASSERT(iterator->upstream_component);
539 BT_ASSERT(iterator->upstream_component->class);
5badd463
PP
540 BT_ASSERT_PRE(
541 bt_component_borrow_graph(iterator->upstream_component)->config_state !=
542 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
4725a201
PP
543 "Graph is not configured: %!+g",
544 bt_component_borrow_graph(iterator->upstream_component));
d94d92ac 545 BT_LIB_LOGD("Getting next self component input port "
d6e69534 546 "message iterator's messages: %!+i", iterator);
d3eb6e8f 547
3230ee6b 548 /*
d6e69534 549 * Call the user's "next" method to get the next messages
fa054faf 550 * and status.
3230ee6b 551 */
7474e7d3 552 BT_ASSERT(iterator->methods.next);
f42867e2 553 BT_LOGD_STR("Calling user's \"next\" method.");
7474e7d3
PP
554 status = iterator->methods.next(iterator,
555 (void *) iterator->base.msgs->pdata, MSG_BATCH_SIZE,
556 user_count);
f42867e2 557 BT_LOGD("User method returned: status=%s",
d6e69534 558 bt_message_iterator_status_string(status));
d4393e08 559 if (status < 0) {
f42867e2 560 BT_LOGW_STR("User method failed.");
f42867e2
PP
561 goto end;
562 }
3230ee6b 563
d0fea130
PP
564 /*
565 * There is no way that this iterator could have been finalized
566 * during its "next" method, as the only way to do this is to
567 * put the last iterator's reference, and this can only be done
568 * by its downstream owner.
7474e7d3
PP
569 *
570 * For the same reason, there is no way that this iterator could
571 * have seeked (cannot seek a self message iterator).
d0fea130
PP
572 */
573 BT_ASSERT(iterator->state ==
574 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE);
8cf27cc5 575
d4393e08 576 switch (status) {
d6e69534 577 case BT_MESSAGE_ITERATOR_STATUS_OK:
7474e7d3
PP
578 BT_ASSERT_PRE(*user_count <= MSG_BATCH_SIZE,
579 "Invalid returned message count: greater than "
580 "batch size: count=%" PRIu64 ", batch-size=%u",
581 *user_count, MSG_BATCH_SIZE);
d6e69534 582 *msgs = (void *) iterator->base.msgs->pdata;
d4393e08 583 break;
d6e69534 584 case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
d4393e08 585 goto end;
d6e69534 586 case BT_MESSAGE_ITERATOR_STATUS_END:
d0fea130
PP
587 set_self_comp_port_input_msg_iterator_state(iterator,
588 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ENDED);
f42867e2 589 goto end;
f42867e2
PP
590 default:
591 /* Unknown non-error status */
592 abort();
41a2b7ae
PP
593 }
594
595end:
3230ee6b
PP
596 return status;
597}
598
d0fea130 599enum bt_message_iterator_status bt_port_output_message_iterator_next(
d6e69534
PP
600 struct bt_port_output_message_iterator *iterator,
601 bt_message_array_const *msgs_to_user,
d4393e08 602 uint64_t *count_to_user)
3230ee6b 603{
d6e69534 604 enum bt_message_iterator_status status;
07245ac2 605 enum bt_graph_status graph_status;
3230ee6b 606
d6e69534
PP
607 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
608 BT_ASSERT_PRE_NON_NULL(msgs_to_user, "Message array (output)");
609 BT_ASSERT_PRE_NON_NULL(count_to_user, "Message count (output)");
610 BT_LIB_LOGD("Getting next output port message iterator's messages: "
07245ac2 611 "%!+i", iterator);
d94d92ac
PP
612 graph_status = bt_graph_consume_sink_no_check(iterator->graph,
613 iterator->colander);
07245ac2
PP
614 switch (graph_status) {
615 case BT_GRAPH_STATUS_CANCELED:
07245ac2 616 case BT_GRAPH_STATUS_AGAIN:
07245ac2 617 case BT_GRAPH_STATUS_END:
07245ac2 618 case BT_GRAPH_STATUS_NOMEM:
d94d92ac 619 status = (int) graph_status;
07245ac2
PP
620 break;
621 case BT_GRAPH_STATUS_OK:
d6e69534 622 status = BT_MESSAGE_ITERATOR_STATUS_OK;
d4393e08
PP
623
624 /*
d6e69534 625 * On success, the colander sink moves the messages
d4393e08 626 * to this iterator's array and sets this iterator's
d6e69534 627 * message count: move them to the user.
d4393e08 628 */
d6e69534 629 *msgs_to_user = (void *) iterator->base.msgs->pdata;
d94d92ac 630 *count_to_user = iterator->count;
90157d89 631 break;
90157d89 632 default:
07245ac2 633 /* Other errors */
d6e69534 634 status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
90157d89 635 }
3230ee6b 636
3230ee6b 637 return status;
53d45b87
JG
638}
639
7474e7d3
PP
640struct bt_component *
641bt_self_component_port_input_message_iterator_borrow_component(
d6e69534 642 struct bt_self_component_port_input_message_iterator *iterator)
d94d92ac 643{
d6e69534 644 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
d94d92ac
PP
645 return iterator->upstream_component;
646}
647
7474e7d3
PP
648const struct bt_component *
649bt_self_component_port_input_message_iterator_borrow_component_const(
650 const struct bt_self_component_port_input_message_iterator *iterator)
651{
652 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
653 return iterator->upstream_component;
654}
655
d6e69534
PP
656struct bt_self_component *bt_self_message_iterator_borrow_component(
657 struct bt_self_message_iterator *self_iterator)
413bc2c4 658{
d6e69534 659 struct bt_self_component_port_input_message_iterator *iterator =
d94d92ac 660 (void *) self_iterator;
90157d89 661
d6e69534 662 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
d94d92ac 663 return (void *) iterator->upstream_component;
413bc2c4
JG
664}
665
d6e69534
PP
666struct bt_self_port_output *bt_self_message_iterator_borrow_port(
667 struct bt_self_message_iterator *self_iterator)
91457551 668{
d6e69534 669 struct bt_self_component_port_input_message_iterator *iterator =
d94d92ac
PP
670 (void *) self_iterator;
671
d6e69534 672 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
d94d92ac 673 return (void *) iterator->upstream_port;
91457551 674}
8ed535b5
PP
675
676static
d6e69534 677void bt_port_output_message_iterator_destroy(struct bt_object *obj)
8ed535b5 678{
d6e69534 679 struct bt_port_output_message_iterator *iterator = (void *) obj;
8ed535b5 680
d6e69534 681 BT_LIB_LOGD("Destroying output port message iterator object: %!+i",
8ed535b5
PP
682 iterator);
683 BT_LOGD_STR("Putting graph.");
d94d92ac 684 BT_OBJECT_PUT_REF_AND_RESET(iterator->graph);
8ed535b5 685 BT_LOGD_STR("Putting colander sink component.");
d94d92ac 686 BT_OBJECT_PUT_REF_AND_RESET(iterator->colander);
d6e69534 687 destroy_base_message_iterator(obj);
8ed535b5
PP
688}
689
d6e69534 690struct bt_port_output_message_iterator *
7474e7d3 691bt_port_output_message_iterator_create(struct bt_graph *graph,
0d72b8c3 692 const struct bt_port_output *output_port)
8ed535b5 693{
d6e69534 694 struct bt_port_output_message_iterator *iterator = NULL;
d94d92ac 695 struct bt_component_class_sink *colander_comp_cls = NULL;
8ed535b5 696 struct bt_component *output_port_comp = NULL;
d94d92ac 697 struct bt_component_sink *colander_comp;
8ed535b5 698 enum bt_graph_status graph_status;
d94d92ac 699 struct bt_port_input *colander_in_port = NULL;
8ed535b5 700 struct bt_component_class_sink_colander_data colander_data;
d4393e08 701 int ret;
8ed535b5 702
d94d92ac 703 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
f42867e2 704 BT_ASSERT_PRE_NON_NULL(output_port, "Output port");
0d72b8c3
PP
705 output_port_comp = bt_port_borrow_component_inline(
706 (const void *) output_port);
f42867e2
PP
707 BT_ASSERT_PRE(output_port_comp,
708 "Output port has no component: %!+p", output_port);
d94d92ac
PP
709 BT_ASSERT_PRE(bt_component_borrow_graph(output_port_comp) ==
710 (void *) graph,
711 "Output port is not part of graph: %![graph-]+g, %![port-]+p",
712 graph, output_port);
2bcba397
PP
713 BT_ASSERT_PRE(!graph->has_sink,
714 "Graph already has a sink component: %![graph-]+g");
8ed535b5 715
d6e69534
PP
716 /* Create message iterator */
717 BT_LIB_LOGD("Creating message iterator on output port: "
d94d92ac 718 "%![port-]+p, %![comp-]+c", output_port, output_port_comp);
d6e69534 719 iterator = g_new0(struct bt_port_output_message_iterator, 1);
8ed535b5 720 if (!iterator) {
d6e69534 721 BT_LOGE_STR("Failed to allocate one output port message iterator.");
8ed535b5
PP
722 goto error;
723 }
724
d6e69534
PP
725 ret = init_message_iterator((void *) iterator,
726 BT_MESSAGE_ITERATOR_TYPE_PORT_OUTPUT,
727 bt_port_output_message_iterator_destroy);
d4393e08 728 if (ret) {
d6e69534 729 /* init_message_iterator() logs errors */
65300d60 730 BT_OBJECT_PUT_REF_AND_RESET(iterator);
d4393e08
PP
731 goto end;
732 }
8ed535b5
PP
733
734 /* Create colander component */
735 colander_comp_cls = bt_component_class_sink_colander_get();
736 if (!colander_comp_cls) {
737 BT_LOGW("Cannot get colander sink component class.");
738 goto error;
739 }
740
398454ed
PP
741 iterator->graph = graph;
742 bt_object_get_no_null_check(iterator->graph);
d6e69534 743 colander_data.msgs = (void *) iterator->base.msgs->pdata;
d4393e08 744 colander_data.count_addr = &iterator->count;
5fd91d88
PP
745
746 /* Hope that nobody uses this very unique name */
d94d92ac 747 graph_status =
0d72b8c3 748 bt_graph_add_sink_component_with_init_method_data(
5fd91d88
PP
749 (void *) graph, colander_comp_cls,
750 "colander-36ac3409-b1a8-4d60-ab1f-4fdf341a8fb1",
0d72b8c3 751 NULL, &colander_data, (void *) &iterator->colander);
8ed535b5 752 if (graph_status != BT_GRAPH_STATUS_OK) {
d94d92ac
PP
753 BT_LIB_LOGW("Cannot add colander sink component to graph: "
754 "%1[graph-]+g, status=%s", graph,
8ed535b5
PP
755 bt_graph_status_string(graph_status));
756 goto error;
757 }
758
759 /*
760 * Connect provided output port to the colander component's
761 * input port.
762 */
0d72b8c3
PP
763 colander_in_port =
764 (void *) bt_component_sink_borrow_input_port_by_index_const(
765 (void *) iterator->colander, 0);
f6ccaed9 766 BT_ASSERT(colander_in_port);
0d72b8c3 767 graph_status = bt_graph_connect_ports(graph,
8ed535b5
PP
768 output_port, colander_in_port, NULL);
769 if (graph_status != BT_GRAPH_STATUS_OK) {
d94d92ac
PP
770 BT_LIB_LOGW("Cannot add colander sink component to graph: "
771 "%![graph-]+g, %![comp-]+c, status=%s", graph,
772 iterator->colander,
8ed535b5
PP
773 bt_graph_status_string(graph_status));
774 goto error;
775 }
776
777 /*
778 * At this point everything went fine. Make the graph
d6e69534 779 * nonconsumable forever so that only this message iterator
8ed535b5 780 * can consume (thanks to bt_graph_consume_sink_no_check()).
d6e69534
PP
781 * This avoids leaking the message created by the colander
782 * sink and moved to the message iterator's message
07245ac2 783 * member.
8ed535b5 784 */
d94d92ac 785 bt_graph_set_can_consume(iterator->graph, false);
5badd463 786
36d1acad
SM
787 /* Also set the graph as being configured. */
788 graph_status = bt_graph_configure(graph);
789 if (graph_status != BT_GRAPH_STATUS_OK) {
790 BT_LIB_LOGW("Cannot configure graph after having added colander: "
791 "%![graph-]+g, status=%s", graph,
792 bt_graph_status_string(graph_status));
793 goto error;
794 }
8ed535b5
PP
795 goto end;
796
797error:
798 if (iterator && iterator->graph && iterator->colander) {
799 int ret;
800
801 /* Remove created colander component from graph if any */
802 colander_comp = iterator->colander;
65300d60 803 BT_OBJECT_PUT_REF_AND_RESET(iterator->colander);
8ed535b5
PP
804
805 /*
806 * At this point the colander component's reference
807 * count is 0 because iterator->colander was the only
808 * owner. We also know that it is not connected because
809 * this is the last operation before this function
810 * succeeds.
811 *
812 * Since we honor the preconditions here,
813 * bt_graph_remove_unconnected_component() always
814 * succeeds.
815 */
816 ret = bt_graph_remove_unconnected_component(iterator->graph,
d94d92ac 817 (void *) colander_comp);
f6ccaed9 818 BT_ASSERT(ret == 0);
8ed535b5
PP
819 }
820
65300d60 821 BT_OBJECT_PUT_REF_AND_RESET(iterator);
8ed535b5
PP
822
823end:
65300d60 824 bt_object_put_ref(colander_comp_cls);
8ed535b5
PP
825 return (void *) iterator;
826}
c5b9b441 827
7474e7d3
PP
828bt_bool bt_self_component_port_input_message_iterator_can_seek_ns_from_origin(
829 struct bt_self_component_port_input_message_iterator *iterator,
830 int64_t ns_from_origin)
831{
832 bt_bool can = BT_FALSE;
833
834 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
835 BT_ASSERT_PRE_ITER_HAS_STATE_TO_SEEK(iterator);
5badd463
PP
836 BT_ASSERT_PRE(
837 bt_component_borrow_graph(iterator->upstream_component)->config_state !=
838 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
7474e7d3
PP
839 "Graph is not configured: %!+g",
840 bt_component_borrow_graph(iterator->upstream_component));
841
842 if (iterator->methods.can_seek_ns_from_origin) {
843 can = iterator->methods.can_seek_ns_from_origin(iterator,
844 ns_from_origin);
845 goto end;
846 }
847
848 /*
849 * Automatic seeking fall back: if we can seek to the beginning,
850 * then we can automatically seek to any message.
851 */
852 if (iterator->methods.can_seek_beginning) {
853 can = iterator->methods.can_seek_beginning(iterator);
854 }
855
856end:
857 return can;
858}
859
860bt_bool bt_self_component_port_input_message_iterator_can_seek_beginning(
861 struct bt_self_component_port_input_message_iterator *iterator)
862{
863 bt_bool can = BT_FALSE;
864
865 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
866 BT_ASSERT_PRE_ITER_HAS_STATE_TO_SEEK(iterator);
5badd463
PP
867 BT_ASSERT_PRE(
868 bt_component_borrow_graph(iterator->upstream_component)->config_state !=
869 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
7474e7d3
PP
870 "Graph is not configured: %!+g",
871 bt_component_borrow_graph(iterator->upstream_component));
872
873 if (iterator->methods.can_seek_beginning) {
874 can = iterator->methods.can_seek_beginning(iterator);
875 }
876
877 return can;
878}
879
880static inline
003e713f 881void set_iterator_state_after_seeking(
7474e7d3
PP
882 struct bt_self_component_port_input_message_iterator *iterator,
883 enum bt_message_iterator_status status)
884{
885 enum bt_self_component_port_input_message_iterator_state new_state = 0;
886
887 /* Set iterator's state depending on seeking status */
888 switch (status) {
889 case BT_MESSAGE_ITERATOR_STATUS_OK:
890 new_state = BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE;
891 break;
892 case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
893 new_state = BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_LAST_SEEKING_RETURNED_AGAIN;
894 break;
895 case BT_MESSAGE_ITERATOR_STATUS_ERROR:
896 case BT_MESSAGE_ITERATOR_STATUS_NOMEM:
897 new_state = BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_LAST_SEEKING_RETURNED_ERROR;
898 break;
899 case BT_MESSAGE_ITERATOR_STATUS_END:
900 new_state = BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ENDED;
901 break;
902 default:
903 abort();
904 }
905
906 set_self_comp_port_input_msg_iterator_state(iterator, new_state);
907}
908
7474e7d3
PP
909enum bt_message_iterator_status
910bt_self_component_port_input_message_iterator_seek_beginning(
911 struct bt_self_component_port_input_message_iterator *iterator)
912{
913 int status;
914
915 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
916 BT_ASSERT_PRE_ITER_HAS_STATE_TO_SEEK(iterator);
5badd463
PP
917 BT_ASSERT_PRE(
918 bt_component_borrow_graph(iterator->upstream_component)->config_state !=
919 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
7474e7d3
PP
920 "Graph is not configured: %!+g",
921 bt_component_borrow_graph(iterator->upstream_component));
922 BT_ASSERT_PRE(
923 bt_self_component_port_input_message_iterator_can_seek_beginning(
924 iterator),
925 "Message iterator cannot seek beginning: %!+i", iterator);
926 BT_LIB_LOGD("Calling user's \"seek beginning\" method: %!+i", iterator);
927 set_self_comp_port_input_msg_iterator_state(iterator,
928 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_SEEKING);
929 status = iterator->methods.seek_beginning(iterator);
930 BT_LOGD("User method returned: status=%s",
931 bt_message_iterator_status_string(status));
932 BT_ASSERT_PRE(status == BT_MESSAGE_ITERATOR_STATUS_OK ||
933 status == BT_MESSAGE_ITERATOR_STATUS_ERROR ||
934 status == BT_MESSAGE_ITERATOR_STATUS_NOMEM ||
935 status == BT_MESSAGE_ITERATOR_STATUS_AGAIN,
936 "Unexpected status: %![iter-]+i, status=%s",
bd1a54fe 937 iterator, bt_common_self_message_iterator_status_string(status));
7474e7d3
PP
938 set_iterator_state_after_seeking(iterator, status);
939 return status;
940}
941
942static inline
5b9e151d
PP
943enum bt_message_iterator_status auto_seek_handle_message(
944 struct bt_self_component_port_input_message_iterator *iterator,
945 int64_t ns_from_origin, const struct bt_message *msg,
946 bool *got_first)
7474e7d3 947{
5b9e151d
PP
948 enum bt_message_iterator_status status = BT_MESSAGE_ITERATOR_STATUS_OK;
949 int64_t msg_ns_from_origin;
7474e7d3 950 const struct bt_clock_snapshot *clk_snapshot = NULL;
5b9e151d
PP
951 int ret;
952
953 BT_ASSERT(msg);
954 BT_ASSERT(got_first);
7474e7d3
PP
955
956 switch (msg->type) {
957 case BT_MESSAGE_TYPE_EVENT:
958 {
959 const struct bt_message_event *event_msg =
960 (const void *) msg;
961
2c091c04 962 clk_snapshot = event_msg->default_cs;
7474e7d3 963 BT_ASSERT_PRE(clk_snapshot,
c7072d5a
PP
964 "Event message has no default clock snapshot: %!+n",
965 event_msg);
7474e7d3
PP
966 break;
967 }
b9fd9cbb 968 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
7474e7d3 969 {
b9fd9cbb 970 const struct bt_message_message_iterator_inactivity *inactivity_msg =
7474e7d3
PP
971 (const void *) msg;
972
7474e7d3 973 clk_snapshot = inactivity_msg->default_cs;
16663a5e 974 BT_ASSERT(clk_snapshot);
7474e7d3
PP
975 break;
976 }
16663a5e
PP
977 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
978 case BT_MESSAGE_TYPE_PACKET_END:
c7072d5a
PP
979 {
980 const struct bt_message_packet *packet_msg =
981 (const void *) msg;
982
983 clk_snapshot = packet_msg->default_cs;
984 BT_ASSERT_PRE(clk_snapshot,
985 "Packet message has no default clock snapshot: %!+n",
986 packet_msg);
987 break;
988 }
16663a5e
PP
989 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
990 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
7474e7d3 991 {
5b9e151d
PP
992 struct bt_message_discarded_items *msg_disc_items =
993 (void *) msg;
994
995 BT_ASSERT_PRE(msg_disc_items->default_begin_cs &&
996 msg_disc_items->default_end_cs,
997 "Discarded events/packets message has no default clock snapshots: %!+n",
998 msg_disc_items);
999 ret = bt_clock_snapshot_get_ns_from_origin(
1000 msg_disc_items->default_begin_cs,
1001 &msg_ns_from_origin);
1002 if (ret) {
1003 status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
1004 goto end;
1005 }
7474e7d3 1006
5b9e151d
PP
1007 if (msg_ns_from_origin >= ns_from_origin) {
1008 *got_first = true;
1009 goto push_msg;
1010 }
1011
1012 ret = bt_clock_snapshot_get_ns_from_origin(
1013 msg_disc_items->default_end_cs,
1014 &msg_ns_from_origin);
1015 if (ret) {
1016 status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
1017 goto end;
1018 }
1019
1020 if (msg_ns_from_origin >= ns_from_origin) {
1021 /*
1022 * The discarded items message's beginning time
1023 * is before the requested seeking time, but its
1024 * end time is after. Modify the message so as
1025 * to set its beginning time to the requested
1026 * seeking time, and make its item count unknown
1027 * as we don't know if items were really
1028 * discarded within the new time range.
1029 */
1030 uint64_t new_begin_raw_value;
1031
1032 ret = bt_clock_class_clock_value_from_ns_from_origin(
1033 msg_disc_items->default_end_cs->clock_class,
1034 ns_from_origin, &new_begin_raw_value);
1035 if (ret) {
1036 status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
1037 goto end;
1038 }
1039
1040 bt_clock_snapshot_set_raw_value(
1041 msg_disc_items->default_begin_cs,
1042 new_begin_raw_value);
1043 msg_disc_items->count.base.avail =
1044 BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE;
1045
1046 /*
1047 * It is safe to push it because its beginning
1048 * time is exactly the requested seeking time.
1049 */
1050 goto push_msg;
1051 } else {
1052 goto skip_msg;
1053 }
7474e7d3 1054 }
16663a5e 1055 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
7474e7d3 1056 {
16663a5e 1057 const struct bt_message_stream_activity *stream_act_msg =
7474e7d3
PP
1058 (const void *) msg;
1059
16663a5e
PP
1060 switch (stream_act_msg->default_cs_state) {
1061 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN:
1062 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE:
1063 /*
1064 * -inf is always less than any requested time,
1065 * and we can't assume any specific time for an
1066 * unknown clock snapshot, so skip this.
1067 */
5b9e151d 1068 goto skip_msg;
16663a5e
PP
1069 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN:
1070 clk_snapshot = stream_act_msg->default_cs;
1071 BT_ASSERT(clk_snapshot);
1072 break;
1073 default:
1074 abort();
1075 }
1076
7474e7d3
PP
1077 break;
1078 }
16663a5e
PP
1079 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
1080 {
1081 const struct bt_message_stream_activity *stream_act_msg =
1082 (const void *) msg;
1083
1084 switch (stream_act_msg->default_cs_state) {
1085 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN:
1086 /*
1087 * We can't assume any specific time for an
1088 * unknown clock snapshot, so skip this.
1089 */
5b9e151d 1090 goto skip_msg;
16663a5e
PP
1091 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE:
1092 /*
1093 * +inf is always greater than any requested
1094 * time.
1095 */
5b9e151d
PP
1096 *got_first = true;
1097 goto push_msg;
16663a5e
PP
1098 case BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_KNOWN:
1099 clk_snapshot = stream_act_msg->default_cs;
1100 BT_ASSERT(clk_snapshot);
1101 break;
1102 default:
1103 abort();
1104 }
1105
1106 break;
1107 }
1108 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
1109 case BT_MESSAGE_TYPE_STREAM_END:
1110 /* Ignore */
5b9e151d 1111 goto skip_msg;
7474e7d3
PP
1112 default:
1113 abort();
1114 }
1115
5b9e151d
PP
1116 BT_ASSERT(clk_snapshot);
1117 ret = bt_clock_snapshot_get_ns_from_origin(clk_snapshot,
1118 &msg_ns_from_origin);
1119 if (ret) {
1120 status = BT_MESSAGE_ITERATOR_STATUS_ERROR;
7474e7d3
PP
1121 goto end;
1122 }
1123
5b9e151d
PP
1124 if (msg_ns_from_origin >= ns_from_origin) {
1125 *got_first = true;
1126 goto push_msg;
1127 }
1128
1129skip_msg:
1130 bt_object_put_no_null_check(msg);
04c0cec6 1131 msg = NULL;
5b9e151d
PP
1132 goto end;
1133
1134push_msg:
1135 g_queue_push_head(iterator->auto_seek_msgs, (void *) msg);
1136 msg = NULL;
7474e7d3
PP
1137
1138end:
5b9e151d
PP
1139 BT_ASSERT(!msg || status != BT_MESSAGE_ITERATOR_STATUS_OK);
1140 return status;
7474e7d3
PP
1141}
1142
1143static
1144enum bt_message_iterator_status find_message_ge_ns_from_origin(
1145 struct bt_self_component_port_input_message_iterator *iterator,
1146 int64_t ns_from_origin)
1147{
1148 int status;
1149 enum bt_self_component_port_input_message_iterator_state init_state =
1150 iterator->state;
1151 const struct bt_message *messages[MSG_BATCH_SIZE];
1152 uint64_t user_count = 0;
1153 uint64_t i;
5b9e151d 1154 bool got_first = false;
7474e7d3
PP
1155
1156 BT_ASSERT(iterator);
1157 memset(&messages[0], 0, sizeof(messages[0]) * MSG_BATCH_SIZE);
1158
1159 /*
1160 * Make this iterator temporarily active (not seeking) to call
1161 * the "next" method.
1162 */
1163 set_self_comp_port_input_msg_iterator_state(iterator,
1164 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE);
1165
1166 BT_ASSERT(iterator->methods.next);
1167
e0dade92 1168 while (!got_first) {
7474e7d3
PP
1169 /*
1170 * Call the user's "next" method to get the next
1171 * messages and status.
1172 */
1173 BT_LOGD_STR("Calling user's \"next\" method.");
1174 status = iterator->methods.next(iterator,
1175 &messages[0], MSG_BATCH_SIZE, &user_count);
1176 BT_LOGD("User method returned: status=%s",
1177 bt_message_iterator_status_string(status));
1178
7474e7d3
PP
1179 /*
1180 * The user's "next" method must not do any action which
1181 * would change the iterator's state.
1182 */
1183 BT_ASSERT(iterator->state ==
1184 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_ACTIVE);
7474e7d3
PP
1185
1186 switch (status) {
1187 case BT_MESSAGE_ITERATOR_STATUS_OK:
1188 BT_ASSERT_PRE(user_count <= MSG_BATCH_SIZE,
1189 "Invalid returned message count: greater than "
1190 "batch size: count=%" PRIu64 ", batch-size=%u",
1191 user_count, MSG_BATCH_SIZE);
1192 break;
1193 case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
1194 case BT_MESSAGE_ITERATOR_STATUS_ERROR:
1195 case BT_MESSAGE_ITERATOR_STATUS_NOMEM:
1196 case BT_MESSAGE_ITERATOR_STATUS_END:
1197 goto end;
1198 default:
1199 abort();
1200 }
1201
7474e7d3 1202 for (i = 0; i < user_count; i++) {
5b9e151d
PP
1203 if (got_first) {
1204 g_queue_push_head(iterator->auto_seek_msgs,
1205 (void *) messages[i]);
1206 messages[i] = NULL;
7474e7d3
PP
1207 continue;
1208 }
1209
5b9e151d
PP
1210 status = auto_seek_handle_message(iterator,
1211 ns_from_origin, messages[i], &got_first);
1212 if (status == BT_MESSAGE_ITERATOR_STATUS_OK) {
e0dade92 1213 /* Message was either pushed or moved */
5b9e151d
PP
1214 messages[i] = NULL;
1215 } else {
7474e7d3
PP
1216 goto end;
1217 }
7474e7d3
PP
1218 }
1219 }
1220
1221end:
1222 for (i = 0; i < user_count; i++) {
1223 if (messages[i]) {
1224 bt_object_put_no_null_check(messages[i]);
1225 }
1226 }
1227
1228 set_self_comp_port_input_msg_iterator_state(iterator, init_state);
1229 return status;
1230}
1231
1232static
1233enum bt_self_message_iterator_status post_auto_seek_next(
1234 struct bt_self_component_port_input_message_iterator *iterator,
1235 bt_message_array_const msgs, uint64_t capacity,
1236 uint64_t *count)
1237{
5b9e151d
PP
1238 BT_ASSERT(!g_queue_is_empty(iterator->auto_seek_msgs));
1239 *count = 0;
7474e7d3
PP
1240
1241 /*
1242 * Move auto-seek messages to the output array (which is this
5b9e151d 1243 * iterator's base message array).
7474e7d3 1244 */
5b9e151d
PP
1245 while (capacity > 0 && !g_queue_is_empty(iterator->auto_seek_msgs)) {
1246 msgs[*count] = g_queue_pop_tail(iterator->auto_seek_msgs);
1247 capacity--;
1248 (*count)++;
7474e7d3 1249 }
7474e7d3 1250
5b9e151d
PP
1251 BT_ASSERT(*count > 0);
1252
1253 if (g_queue_is_empty(iterator->auto_seek_msgs)) {
1254 /* No more auto-seek messages */
1255 switch (iterator->upstream_component->class->type) {
1256 case BT_COMPONENT_CLASS_TYPE_SOURCE:
1257 {
1258 struct bt_component_class_source *src_comp_cls =
1259 (void *) iterator->upstream_component->class;
1260
1261 iterator->methods.next =
1262 (bt_self_component_port_input_message_iterator_next_method)
1263 src_comp_cls->methods.msg_iter_next;
1264 break;
1265 }
1266 case BT_COMPONENT_CLASS_TYPE_FILTER:
1267 {
1268 struct bt_component_class_filter *flt_comp_cls =
1269 (void *) iterator->upstream_component->class;
1270
1271 iterator->methods.next =
1272 (bt_self_component_port_input_message_iterator_next_method)
1273 flt_comp_cls->methods.msg_iter_next;
1274 break;
1275 }
1276 default:
1277 abort();
1278 }
7474e7d3
PP
1279 }
1280
1281 return BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
1282}
1283
1284enum bt_message_iterator_status
1285bt_self_component_port_input_message_iterator_seek_ns_from_origin(
1286 struct bt_self_component_port_input_message_iterator *iterator,
1287 int64_t ns_from_origin)
1288{
1289 int status;
1290
1291 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
1292 BT_ASSERT_PRE_ITER_HAS_STATE_TO_SEEK(iterator);
5badd463
PP
1293 BT_ASSERT_PRE(
1294 bt_component_borrow_graph(iterator->upstream_component)->config_state !=
1295 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
7474e7d3
PP
1296 "Graph is not configured: %!+g",
1297 bt_component_borrow_graph(iterator->upstream_component));
1298 BT_ASSERT_PRE(
1299 bt_self_component_port_input_message_iterator_can_seek_ns_from_origin(
1300 iterator, ns_from_origin),
1301 "Message iterator cannot seek nanoseconds from origin: %!+i, "
1302 "ns-from-origin=%" PRId64, iterator, ns_from_origin);
1303 set_self_comp_port_input_msg_iterator_state(iterator,
1304 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_STATE_SEEKING);
1305
1306 if (iterator->methods.seek_ns_from_origin) {
1307 BT_LIB_LOGD("Calling user's \"seek nanoseconds from origin\" method: "
1308 "%![iter-]+i, ns=%" PRId64, iterator, ns_from_origin);
1309 status = iterator->methods.seek_ns_from_origin(iterator,
1310 ns_from_origin);
1311 BT_LOGD("User method returned: status=%s",
1312 bt_message_iterator_status_string(status));
1313 BT_ASSERT_PRE(status == BT_MESSAGE_ITERATOR_STATUS_OK ||
1314 status == BT_MESSAGE_ITERATOR_STATUS_ERROR ||
1315 status == BT_MESSAGE_ITERATOR_STATUS_NOMEM ||
1316 status == BT_MESSAGE_ITERATOR_STATUS_AGAIN,
1317 "Unexpected status: %![iter-]+i, status=%s",
1318 iterator,
bd1a54fe 1319 bt_common_self_message_iterator_status_string(status));
7474e7d3
PP
1320 } else {
1321 /* Start automatic seeking: seek beginning first */
1322 BT_ASSERT(iterator->methods.can_seek_beginning(iterator));
1323 BT_ASSERT(iterator->methods.seek_beginning);
1324 BT_LIB_LOGD("Calling user's \"seek beginning\" method: %!+i",
1325 iterator);
1326 status = iterator->methods.seek_beginning(iterator);
1327 BT_LOGD("User method returned: status=%s",
1328 bt_message_iterator_status_string(status));
1329 BT_ASSERT_PRE(status == BT_MESSAGE_ITERATOR_STATUS_OK ||
1330 status == BT_MESSAGE_ITERATOR_STATUS_ERROR ||
1331 status == BT_MESSAGE_ITERATOR_STATUS_NOMEM ||
1332 status == BT_MESSAGE_ITERATOR_STATUS_AGAIN,
1333 "Unexpected status: %![iter-]+i, status=%s",
1334 iterator,
bd1a54fe 1335 bt_common_self_message_iterator_status_string(status));
7474e7d3
PP
1336 switch (status) {
1337 case BT_MESSAGE_ITERATOR_STATUS_OK:
1338 break;
1339 case BT_MESSAGE_ITERATOR_STATUS_ERROR:
1340 case BT_MESSAGE_ITERATOR_STATUS_NOMEM:
1341 case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
1342 goto end;
1343 default:
1344 abort();
1345 }
1346
1347 /*
1348 * Find the first message which has a default clock
1349 * snapshot greater than or equal to the requested
5b9e151d
PP
1350 * seeking time, and move the received messages from
1351 * this point in the batch to this iterator's auto-seek
1352 * message queue.
7474e7d3 1353 */
5b9e151d
PP
1354 while (!g_queue_is_empty(iterator->auto_seek_msgs)) {
1355 bt_object_put_no_null_check(
1356 g_queue_pop_tail(iterator->auto_seek_msgs));
1357 }
1358
7474e7d3
PP
1359 status = find_message_ge_ns_from_origin(iterator,
1360 ns_from_origin);
1361 switch (status) {
1362 case BT_MESSAGE_ITERATOR_STATUS_OK:
5b9e151d 1363 case BT_MESSAGE_ITERATOR_STATUS_END:
7474e7d3 1364 /*
5b9e151d
PP
1365 * If there are messages in the auto-seek
1366 * message queue, replace the user's "next"
1367 * method with a custom, temporary "next" method
1368 * which returns them.
7474e7d3 1369 */
5b9e151d
PP
1370 if (!g_queue_is_empty(iterator->auto_seek_msgs)) {
1371 iterator->methods.next =
1372 (bt_self_component_port_input_message_iterator_next_method)
1373 post_auto_seek_next;
1374 }
1375
1376 /*
1377 * `BT_MESSAGE_ITERATOR_STATUS_END` becomes
1378 * `BT_MESSAGE_ITERATOR_STATUS_OK`: the next
1379 * time this iterator's "next" method is called,
1380 * it will return
1381 * `BT_MESSAGE_ITERATOR_STATUS_END`.
1382 */
1383 status = BT_MESSAGE_ITERATOR_STATUS_OK;
7474e7d3
PP
1384 break;
1385 case BT_MESSAGE_ITERATOR_STATUS_ERROR:
1386 case BT_MESSAGE_ITERATOR_STATUS_NOMEM:
1387 case BT_MESSAGE_ITERATOR_STATUS_AGAIN:
1388 goto end;
7474e7d3
PP
1389 default:
1390 abort();
1391 }
1392 }
1393
1394end:
1395 set_iterator_state_after_seeking(iterator, status);
7474e7d3
PP
1396 return status;
1397}
1398
1399static inline
1400bt_self_component_port_input_message_iterator *
1401borrow_output_port_message_iterator_upstream_iterator(
1402 struct bt_port_output_message_iterator *iterator)
1403{
1404 struct bt_component_class_sink_colander_priv_data *colander_data;
1405
1406 BT_ASSERT(iterator);
1407 colander_data = (void *) iterator->colander->parent.user_data;
1408 BT_ASSERT(colander_data);
1409 BT_ASSERT(colander_data->msg_iter);
1410 return colander_data->msg_iter;
1411}
1412
1413bt_bool bt_port_output_message_iterator_can_seek_ns_from_origin(
1414 struct bt_port_output_message_iterator *iterator,
1415 int64_t ns_from_origin)
1416{
1417 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
1418 return bt_self_component_port_input_message_iterator_can_seek_ns_from_origin(
1419 borrow_output_port_message_iterator_upstream_iterator(
1420 iterator), ns_from_origin);
1421}
1422
1423bt_bool bt_port_output_message_iterator_can_seek_beginning(
1424 struct bt_port_output_message_iterator *iterator)
1425{
1426 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
1427 return bt_self_component_port_input_message_iterator_can_seek_beginning(
1428 borrow_output_port_message_iterator_upstream_iterator(
1429 iterator));
1430}
1431
1432enum bt_message_iterator_status bt_port_output_message_iterator_seek_ns_from_origin(
1433 struct bt_port_output_message_iterator *iterator,
1434 int64_t ns_from_origin)
1435{
1436 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
1437 return bt_self_component_port_input_message_iterator_seek_ns_from_origin(
1438 borrow_output_port_message_iterator_upstream_iterator(iterator),
1439 ns_from_origin);
1440}
1441
1442enum bt_message_iterator_status bt_port_output_message_iterator_seek_beginning(
1443 struct bt_port_output_message_iterator *iterator)
1444{
1445 BT_ASSERT_PRE_NON_NULL(iterator, "Message iterator");
1446 return bt_self_component_port_input_message_iterator_seek_beginning(
1447 borrow_output_port_message_iterator_upstream_iterator(
1448 iterator));
1449}
1450
d6e69534
PP
1451void bt_port_output_message_iterator_get_ref(
1452 const struct bt_port_output_message_iterator *iterator)
c5b9b441
PP
1453{
1454 bt_object_get_ref(iterator);
1455}
1456
d6e69534
PP
1457void bt_port_output_message_iterator_put_ref(
1458 const struct bt_port_output_message_iterator *iterator)
c5b9b441
PP
1459{
1460 bt_object_put_ref(iterator);
1461}
1462
d6e69534
PP
1463void bt_self_component_port_input_message_iterator_get_ref(
1464 const struct bt_self_component_port_input_message_iterator *iterator)
c5b9b441
PP
1465{
1466 bt_object_get_ref(iterator);
1467}
1468
d6e69534
PP
1469void bt_self_component_port_input_message_iterator_put_ref(
1470 const struct bt_self_component_port_input_message_iterator *iterator)
c5b9b441
PP
1471{
1472 bt_object_put_ref(iterator);
1473}
This page took 0.123665 seconds and 4 git commands to generate.