Split notification iterator API into base and specialized functions
[babeltrace.git] / lib / graph / iterator.c
CommitLineData
47e5a032
JG
1/*
2 * iterator.c
3 *
4 * Babeltrace Notification Iterator
5 *
6 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3230ee6b 7 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
47e5a032
JG
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
5af447e5
PP
28#define BT_LOG_TAG "NOTIF-ITER"
29#include <babeltrace/lib-logging-internal.h>
30
3d9990ac 31#include <babeltrace/compiler-internal.h>
b8a06801 32#include <babeltrace/ref.h>
2ec84d26
PP
33#include <babeltrace/ctf-ir/fields.h>
34#include <babeltrace/ctf-ir/field-types.h>
35#include <babeltrace/ctf-ir/field-types-internal.h>
3230ee6b
PP
36#include <babeltrace/ctf-ir/event-internal.h>
37#include <babeltrace/ctf-ir/packet-internal.h>
38#include <babeltrace/ctf-ir/stream-internal.h>
73d5c1ad 39#include <babeltrace/graph/connection.h>
bd14d768 40#include <babeltrace/graph/connection-internal.h>
b2e0c907
PP
41#include <babeltrace/graph/component.h>
42#include <babeltrace/graph/component-source-internal.h>
43#include <babeltrace/graph/component-class-internal.h>
fa054faf 44#include <babeltrace/graph/notification.h>
b2e0c907
PP
45#include <babeltrace/graph/notification-iterator.h>
46#include <babeltrace/graph/notification-iterator-internal.h>
e7fa96c3 47#include <babeltrace/graph/notification-internal.h>
3230ee6b
PP
48#include <babeltrace/graph/notification-event.h>
49#include <babeltrace/graph/notification-event-internal.h>
50#include <babeltrace/graph/notification-packet.h>
51#include <babeltrace/graph/notification-packet-internal.h>
52#include <babeltrace/graph/notification-stream.h>
53#include <babeltrace/graph/notification-stream-internal.h>
2ec84d26 54#include <babeltrace/graph/notification-discarded-elements-internal.h>
3230ee6b 55#include <babeltrace/graph/port.h>
c55a9f58 56#include <babeltrace/types.h>
fa054faf 57#include <stdint.h>
2ec84d26 58#include <inttypes.h>
0fbb9a9f 59#include <stdlib.h>
3230ee6b 60
2ec84d26
PP
61struct discarded_elements_state {
62 struct bt_ctf_clock_value *cur_begin;
63 uint64_t cur_count;
64};
65
3230ee6b
PP
66struct stream_state {
67 struct bt_ctf_stream *stream; /* owned by this */
68 struct bt_ctf_packet *cur_packet; /* owned by this */
2ec84d26
PP
69 struct discarded_elements_state discarded_packets_state;
70 struct discarded_elements_state discarded_events_state;
c55a9f58 71 bt_bool is_ended;
3230ee6b
PP
72};
73
74enum action_type {
75 ACTION_TYPE_PUSH_NOTIF,
76 ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM,
77 ACTION_TYPE_ADD_STREAM_STATE,
78 ACTION_TYPE_SET_STREAM_STATE_IS_ENDED,
79 ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET,
2ec84d26
PP
80 ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS,
81 ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS,
3230ee6b
PP
82};
83
84struct action {
85 enum action_type type;
86 union {
87 /* ACTION_TYPE_PUSH_NOTIF */
88 struct {
89 struct bt_notification *notif; /* owned by this */
90 } push_notif;
91
92 /* ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM */
93 struct {
94 struct bt_ctf_stream *stream; /* owned by this */
95 struct bt_component *component; /* owned by this */
96 struct bt_port *port; /* owned by this */
97 } map_port_to_comp_in_stream;
98
99 /* ACTION_TYPE_ADD_STREAM_STATE */
100 struct {
101 struct bt_ctf_stream *stream; /* owned by this */
102 struct stream_state *stream_state; /* owned by this */
103 } add_stream_state;
104
105 /* ACTION_TYPE_SET_STREAM_STATE_IS_ENDED */
106 struct {
107 struct stream_state *stream_state; /* weak */
108 } set_stream_state_is_ended;
109
110 /* ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET */
111 struct {
112 struct stream_state *stream_state; /* weak */
113 struct bt_ctf_packet *packet; /* owned by this */
114 } set_stream_state_cur_packet;
2ec84d26
PP
115
116 /* ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS */
117 /* ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS */
118 struct {
119 struct stream_state *stream_state; /* weak */
120 struct bt_ctf_clock_value *cur_begin; /* owned by this */
121 uint64_t cur_count;
122 } update_stream_state_discarded_elements;
3230ee6b
PP
123 } payload;
124};
125
126static
127void stream_destroy_listener(struct bt_ctf_stream *stream, void *data)
128{
90157d89 129 struct bt_notification_iterator_private_connection *iterator = data;
3230ee6b
PP
130
131 /* Remove associated stream state */
132 g_hash_table_remove(iterator->stream_states, stream);
133}
134
135static
136void destroy_stream_state(struct stream_state *stream_state)
137{
138 if (!stream_state) {
139 return;
140 }
141
5af447e5
PP
142 BT_LOGV("Destroying stream state: stream-state-addr=%p", stream_state);
143 BT_LOGV_STR("Putting stream state's current packet.");
3230ee6b 144 bt_put(stream_state->cur_packet);
5af447e5 145 BT_LOGV_STR("Putting stream state's stream.");
3230ee6b 146 bt_put(stream_state->stream);
2ec84d26
PP
147 bt_put(stream_state->discarded_packets_state.cur_begin);
148 bt_put(stream_state->discarded_events_state.cur_begin);
3230ee6b
PP
149 g_free(stream_state);
150}
151
152static
153void destroy_action(struct action *action)
154{
155 assert(action);
156
157 switch (action->type) {
158 case ACTION_TYPE_PUSH_NOTIF:
159 BT_PUT(action->payload.push_notif.notif);
160 break;
161 case ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM:
162 BT_PUT(action->payload.map_port_to_comp_in_stream.stream);
163 BT_PUT(action->payload.map_port_to_comp_in_stream.component);
164 BT_PUT(action->payload.map_port_to_comp_in_stream.port);
165 break;
166 case ACTION_TYPE_ADD_STREAM_STATE:
167 BT_PUT(action->payload.add_stream_state.stream);
168 destroy_stream_state(
169 action->payload.add_stream_state.stream_state);
170 action->payload.add_stream_state.stream_state = NULL;
171 break;
172 case ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET:
173 BT_PUT(action->payload.set_stream_state_cur_packet.packet);
174 break;
175 case ACTION_TYPE_SET_STREAM_STATE_IS_ENDED:
176 break;
2ec84d26
PP
177 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS:
178 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS:
179 BT_PUT(action->payload.update_stream_state_discarded_elements.cur_begin);
180 break;
3230ee6b 181 default:
2ec84d26 182 BT_LOGF("Unexpected action's type: type=%d", action->type);
0fbb9a9f 183 abort();
3230ee6b
PP
184 }
185}
186
187static
90157d89 188void add_action(struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
189 struct action *action)
190{
191 g_array_append_val(iterator->actions, *action);
192}
193
194static
90157d89 195void clear_actions(struct bt_notification_iterator_private_connection *iterator)
3230ee6b
PP
196{
197 size_t i;
198
199 for (i = 0; i < iterator->actions->len; i++) {
200 struct action *action = &g_array_index(iterator->actions,
201 struct action, i);
202
203 destroy_action(action);
204 }
205
206 g_array_set_size(iterator->actions, 0);
207}
208
5af447e5
PP
209static inline
210const char *action_type_string(enum action_type type)
211{
212 switch (type) {
213 case ACTION_TYPE_PUSH_NOTIF:
214 return "ACTION_TYPE_PUSH_NOTIF";
215 case ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM:
216 return "ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM";
217 case ACTION_TYPE_ADD_STREAM_STATE:
218 return "ACTION_TYPE_ADD_STREAM_STATE";
219 case ACTION_TYPE_SET_STREAM_STATE_IS_ENDED:
220 return "ACTION_TYPE_SET_STREAM_STATE_IS_ENDED";
221 case ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET:
222 return "ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET";
2ec84d26
PP
223 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS:
224 return "ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS";
225 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS:
226 return "ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS";
5af447e5
PP
227 default:
228 return "(unknown)";
229 }
230}
231
3230ee6b 232static
90157d89 233void apply_actions(struct bt_notification_iterator_private_connection *iterator)
3230ee6b
PP
234{
235 size_t i;
236
5af447e5
PP
237 BT_LOGV("Applying notification's iterator current actions: "
238 "count=%u", iterator->actions->len);
239
3230ee6b
PP
240 for (i = 0; i < iterator->actions->len; i++) {
241 struct action *action = &g_array_index(iterator->actions,
242 struct action, i);
243
5af447e5
PP
244 BT_LOGV("Applying action: index=%zu, type=%s",
245 i, action_type_string(action->type));
246
3230ee6b
PP
247 switch (action->type) {
248 case ACTION_TYPE_PUSH_NOTIF:
249 /* Move notification to queue */
250 g_queue_push_head(iterator->queue,
251 action->payload.push_notif.notif);
252 bt_notification_freeze(
253 action->payload.push_notif.notif);
254 action->payload.push_notif.notif = NULL;
255 break;
256 case ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM:
257 bt_ctf_stream_map_component_to_port(
258 action->payload.map_port_to_comp_in_stream.stream,
259 action->payload.map_port_to_comp_in_stream.component,
260 action->payload.map_port_to_comp_in_stream.port);
261 break;
262 case ACTION_TYPE_ADD_STREAM_STATE:
263 /* Move stream state to hash table */
264 g_hash_table_insert(iterator->stream_states,
265 action->payload.add_stream_state.stream,
266 action->payload.add_stream_state.stream_state);
267
268 action->payload.add_stream_state.stream_state = NULL;
269 break;
270 case ACTION_TYPE_SET_STREAM_STATE_IS_ENDED:
271 /*
272 * We know that this stream is ended. We need to
273 * remember this as long as the stream exists to
274 * enforce that the same stream does not end
275 * twice.
276 *
277 * Here we add a destroy listener to the stream
278 * which we put after (becomes weak as the hash
279 * table key). If we were the last object to own
280 * this stream, the destroy listener is called
281 * when we call bt_put() which removes this
282 * stream state completely. This is important
283 * because the memory used by this stream object
284 * could be reused for another stream, and they
285 * must have different states.
286 */
287 bt_ctf_stream_add_destroy_listener(
288 action->payload.set_stream_state_is_ended.stream_state->stream,
289 stream_destroy_listener, iterator);
c55a9f58 290 action->payload.set_stream_state_is_ended.stream_state->is_ended = BT_TRUE;
3230ee6b
PP
291 BT_PUT(action->payload.set_stream_state_is_ended.stream_state->stream);
292 break;
293 case ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET:
294 /* Move packet to stream state's current packet */
295 BT_MOVE(action->payload.set_stream_state_cur_packet.stream_state->cur_packet,
296 action->payload.set_stream_state_cur_packet.packet);
297 break;
2ec84d26
PP
298 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS:
299 case ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS:
300 {
301 struct discarded_elements_state *state;
302
303 if (action->type == ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS) {
304 state = &action->payload.update_stream_state_discarded_elements.stream_state->discarded_packets_state;
305 } else {
306 state = &action->payload.update_stream_state_discarded_elements.stream_state->discarded_events_state;
307 }
308
309 BT_MOVE(state->cur_begin,
310 action->payload.update_stream_state_discarded_elements.cur_begin);
311 state->cur_count = action->payload.update_stream_state_discarded_elements.cur_count;
312 break;
313 }
3230ee6b 314 default:
2ec84d26
PP
315 BT_LOGF("Unexpected action's type: type=%d",
316 action->type);
0fbb9a9f 317 abort();
3230ee6b
PP
318 }
319 }
320
321 clear_actions(iterator);
322}
323
324static
325struct stream_state *create_stream_state(struct bt_ctf_stream *stream)
326{
327 struct stream_state *stream_state = g_new0(struct stream_state, 1);
328
329 if (!stream_state) {
5af447e5 330 BT_LOGE_STR("Failed to allocate one stream state.");
3230ee6b
PP
331 goto end;
332 }
333
126215b4
MD
334 /*
335 * The packet index is a monotonic counter which may not start
336 * at 0 at the beginning of the stream. We therefore need to
337 * have an internal object initial state of -1ULL to distinguish
338 * between initial state and having seen a packet with
339 * seqnum = 0.
340 */
341 stream_state->discarded_packets_state.cur_count = -1ULL;
342
3230ee6b
PP
343 /*
344 * We keep a reference to the stream until we know it's ended
345 * because we need to be able to create an automatic "stream
346 * end" notification when the user's "next" method returns
347 * BT_NOTIFICATION_ITERATOR_STATUS_END.
348 *
349 * We put this reference when the stream is marked as ended.
350 */
351 stream_state->stream = bt_get(stream);
5af447e5
PP
352 BT_LOGV("Created stream state: stream-addr=%p, stream-name=\"%s\", "
353 "stream-state-addr=%p",
354 stream, bt_ctf_stream_get_name(stream), stream_state);
3230ee6b
PP
355
356end:
357 return stream_state;
358}
47e5a032
JG
359
360static
90157d89 361void bt_private_connection_notification_iterator_destroy(struct bt_object *obj)
47e5a032 362{
90157d89 363 struct bt_notification_iterator_private_connection *iterator;
8738a040 364
b8a06801 365 assert(obj);
d3eb6e8f 366
bd14d768
PP
367 /*
368 * The notification iterator's reference count is 0 if we're
369 * here. Increment it to avoid a double-destroy (possibly
370 * infinitely recursive). This could happen for example if the
371 * notification iterator's finalization function does bt_get()
372 * (or anything that causes bt_get() to be called) on itself
373 * (ref. count goes from 0 to 1), and then bt_put(): the
374 * reference count would go from 1 to 0 again and this function
375 * would be called again.
376 */
377 obj->ref_count.count++;
90157d89 378 iterator = (void *) container_of(obj, struct bt_notification_iterator, base);
5af447e5
PP
379 BT_LOGD("Destroying notification iterator object: addr=%p",
380 iterator);
90157d89 381 bt_private_connection_notification_iterator_finalize(iterator);
d3eb6e8f 382
3230ee6b
PP
383 if (iterator->queue) {
384 struct bt_notification *notif;
385
5af447e5
PP
386 BT_LOGD("Putting notifications in queue.");
387
3230ee6b
PP
388 while ((notif = g_queue_pop_tail(iterator->queue))) {
389 bt_put(notif);
390 }
391
392 g_queue_free(iterator->queue);
393 }
394
395 if (iterator->stream_states) {
396 /*
397 * Remove our destroy listener from each stream which
398 * has a state in this iterator. Otherwise the destroy
399 * listener would be called with an invalid/other
400 * notification iterator object.
401 */
402 GHashTableIter ht_iter;
403 gpointer stream_gptr, stream_state_gptr;
404
405 g_hash_table_iter_init(&ht_iter, iterator->stream_states);
406
407 while (g_hash_table_iter_next(&ht_iter, &stream_gptr, &stream_state_gptr)) {
408 assert(stream_gptr);
5af447e5
PP
409
410 BT_LOGD_STR("Removing stream's destroy listener for notification iterator.");
3230ee6b
PP
411 bt_ctf_stream_remove_destroy_listener(
412 (void *) stream_gptr, stream_destroy_listener,
413 iterator);
414 }
415
416 g_hash_table_destroy(iterator->stream_states);
417 }
418
419 if (iterator->actions) {
420 g_array_free(iterator->actions, TRUE);
421 }
422
bd14d768
PP
423 if (iterator->connection) {
424 /*
425 * Remove ourself from the originating connection so
426 * that it does not try to finalize a dangling pointer
427 * later.
428 */
429 bt_connection_remove_iterator(iterator->connection, iterator);
430 }
431
5af447e5 432 BT_LOGD_STR("Putting current notification.");
3230ee6b 433 bt_put(iterator->current_notification);
8738a040 434 g_free(iterator);
47e5a032
JG
435}
436
bd14d768 437BT_HIDDEN
90157d89
PP
438void bt_private_connection_notification_iterator_finalize(
439 struct bt_notification_iterator_private_connection *iterator)
bd14d768
PP
440{
441 struct bt_component_class *comp_class = NULL;
442 bt_component_class_notification_iterator_finalize_method
443 finalize_method = NULL;
444
445 assert(iterator);
446
447 switch (iterator->state) {
90157d89 448 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_NON_INITIALIZED:
088d4023
PP
449 /* Skip user finalization if user initialization failed */
450 BT_LOGD("Not finalizing non-initialized notification iterator: "
451 "addr=%p", iterator);
452 return;
90157d89
PP
453 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED:
454 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED:
bd14d768 455 /* Already finalized */
5af447e5
PP
456 BT_LOGD("Not finalizing notification iterator: already finalized: "
457 "addr=%p", iterator);
bd14d768
PP
458 return;
459 default:
460 break;
461 }
462
5af447e5
PP
463 BT_LOGD("Finalizing notification iterator: addr=%p", iterator);
464
90157d89 465 if (iterator->state == BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_ENDED) {
5af447e5 466 BT_LOGD("Updating notification iterator's state: "
90157d89
PP
467 "new-state=BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED");
468 iterator->state = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED;
df14f8af 469 } else {
5af447e5 470 BT_LOGD("Updating notification iterator's state: "
90157d89
PP
471 "new-state=BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED");
472 iterator->state = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED;
df14f8af
MD
473 }
474
bd14d768
PP
475 assert(iterator->upstream_component);
476 comp_class = iterator->upstream_component->class;
477
478 /* Call user-defined destroy method */
479 switch (comp_class->type) {
480 case BT_COMPONENT_CLASS_TYPE_SOURCE:
481 {
482 struct bt_component_class_source *source_class;
483
484 source_class = container_of(comp_class, struct bt_component_class_source, parent);
485 finalize_method = source_class->methods.iterator.finalize;
486 break;
487 }
488 case BT_COMPONENT_CLASS_TYPE_FILTER:
489 {
490 struct bt_component_class_filter *filter_class;
491
492 filter_class = container_of(comp_class, struct bt_component_class_filter, parent);
493 finalize_method = filter_class->methods.iterator.finalize;
494 break;
495 }
496 default:
497 /* Unreachable */
0fbb9a9f 498 abort();
bd14d768
PP
499 }
500
501 if (finalize_method) {
5af447e5
PP
502 BT_LOGD("Calling user's finalization method: addr=%p",
503 iterator);
bd14d768 504 finalize_method(
90157d89 505 bt_private_connection_private_notification_iterator_from_notification_iterator(iterator));
bd14d768
PP
506 }
507
bd14d768
PP
508 iterator->upstream_component = NULL;
509 iterator->upstream_port = NULL;
5af447e5 510 BT_LOGD("Finalized notification iterator: addr=%p", iterator);
bd14d768
PP
511}
512
513BT_HIDDEN
90157d89
PP
514void bt_private_connection_notification_iterator_set_connection(
515 struct bt_notification_iterator_private_connection *iterator,
bd14d768
PP
516 struct bt_connection *connection)
517{
518 assert(iterator);
519 iterator->connection = connection;
5af447e5
PP
520 BT_LOGV("Set notification iterator's connection: "
521 "iter-addr=%p, conn-addr=%p", iterator, connection);
bd14d768
PP
522}
523
fa054faf
PP
524static
525int create_subscription_mask_from_notification_types(
90157d89 526 struct bt_notification_iterator_private_connection *iterator,
fa054faf
PP
527 const enum bt_notification_type *notif_types)
528{
529 const enum bt_notification_type *notif_type;
530 int ret = 0;
531
532 assert(notif_types);
533 iterator->subscription_mask = 0;
534
535 for (notif_type = notif_types;
536 *notif_type != BT_NOTIFICATION_TYPE_SENTINEL;
537 notif_type++) {
538 switch (*notif_type) {
539 case BT_NOTIFICATION_TYPE_ALL:
540 iterator->subscription_mask |=
90157d89
PP
541 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_EVENT |
542 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_INACTIVITY |
543 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_BEGIN |
544 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_END |
545 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_BEGIN |
546 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_END |
547 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_EVENTS |
548 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_PACKETS;
fa054faf
PP
549 break;
550 case BT_NOTIFICATION_TYPE_EVENT:
90157d89 551 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_EVENT;
fa054faf
PP
552 break;
553 case BT_NOTIFICATION_TYPE_INACTIVITY:
90157d89 554 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_INACTIVITY;
fa054faf
PP
555 break;
556 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
90157d89 557 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_BEGIN;
fa054faf
PP
558 break;
559 case BT_NOTIFICATION_TYPE_STREAM_END:
90157d89 560 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_END;
fa054faf
PP
561 break;
562 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
90157d89 563 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_BEGIN;
fa054faf
PP
564 break;
565 case BT_NOTIFICATION_TYPE_PACKET_END:
90157d89 566 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_END;
fa054faf 567 break;
2ec84d26 568 case BT_NOTIFICATION_TYPE_DISCARDED_EVENTS:
90157d89 569 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_EVENTS;
2ec84d26
PP
570 break;
571 case BT_NOTIFICATION_TYPE_DISCARDED_PACKETS:
90157d89 572 iterator->subscription_mask |= BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_PACKETS;
2ec84d26 573 break;
fa054faf
PP
574 default:
575 ret = -1;
576 goto end;
577 }
5af447e5
PP
578
579 BT_LOGV("Added notification type to subscription mask: "
580 "type=%s, mask=%x",
581 bt_notification_type_string(*notif_type),
582 iterator->subscription_mask);
fa054faf
PP
583 }
584
585end:
586 return ret;
587}
588
90157d89
PP
589static
590void init_notification_iterator(struct bt_notification_iterator *iterator,
591 enum bt_notification_iterator_type type,
592 bt_object_release_func destroy)
593{
594 bt_object_init(iterator, destroy);
595 iterator->type = type;
596}
597
47e5a032 598BT_HIDDEN
90157d89 599enum bt_connection_status bt_private_connection_notification_iterator_create(
3230ee6b 600 struct bt_component *upstream_comp,
fa054faf 601 struct bt_port *upstream_port,
bd14d768 602 const enum bt_notification_type *notification_types,
73d5c1ad 603 struct bt_connection *connection,
90157d89 604 struct bt_notification_iterator_private_connection **user_iterator)
47e5a032 605{
73d5c1ad 606 enum bt_connection_status status = BT_CONNECTION_STATUS_OK;
d3e4dcd8 607 enum bt_component_class_type type;
90157d89 608 struct bt_notification_iterator_private_connection *iterator = NULL;
47e5a032 609
3230ee6b
PP
610 assert(upstream_comp);
611 assert(upstream_port);
fa054faf 612 assert(notification_types);
3230ee6b 613 assert(bt_port_is_connected(upstream_port));
73d5c1ad 614 assert(user_iterator);
5af447e5
PP
615 BT_LOGD("Creating notification iterator: "
616 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
617 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
618 "conn-addr=%p",
619 upstream_comp, bt_component_get_name(upstream_comp),
620 upstream_port, bt_port_get_name(upstream_port),
621 connection);
3230ee6b 622 type = bt_component_get_class_type(upstream_comp);
ef2f7566
PP
623 assert(type == BT_COMPONENT_CLASS_TYPE_SOURCE ||
624 type == BT_COMPONENT_CLASS_TYPE_FILTER);
90157d89 625 iterator = g_new0(struct bt_notification_iterator_private_connection, 1);
47e5a032 626 if (!iterator) {
5af447e5 627 BT_LOGE_STR("Failed to allocate one notification iterator.");
73d5c1ad
PP
628 status = BT_CONNECTION_STATUS_NOMEM;
629 goto end;
47e5a032
JG
630 }
631
90157d89
PP
632 init_notification_iterator((void *) iterator,
633 BT_NOTIFICATION_ITERATOR_TYPE_PRIVATE_CONNECTION,
634 bt_private_connection_notification_iterator_destroy);
3230ee6b 635
fa054faf
PP
636 if (create_subscription_mask_from_notification_types(iterator,
637 notification_types)) {
5af447e5 638 BT_LOGW_STR("Cannot create subscription mask from notification types.");
73d5c1ad
PP
639 status = BT_CONNECTION_STATUS_INVALID;
640 goto end;
fa054faf
PP
641 }
642
3230ee6b
PP
643 iterator->stream_states = g_hash_table_new_full(g_direct_hash,
644 g_direct_equal, NULL, (GDestroyNotify) destroy_stream_state);
645 if (!iterator->stream_states) {
5af447e5 646 BT_LOGE_STR("Failed to allocate a GHashTable.");
73d5c1ad
PP
647 status = BT_CONNECTION_STATUS_NOMEM;
648 goto end;
3230ee6b
PP
649 }
650
651 iterator->queue = g_queue_new();
652 if (!iterator->queue) {
5af447e5 653 BT_LOGE_STR("Failed to allocate a GQueue.");
73d5c1ad
PP
654 status = BT_CONNECTION_STATUS_NOMEM;
655 goto end;
3230ee6b
PP
656 }
657
658 iterator->actions = g_array_new(FALSE, FALSE, sizeof(struct action));
659 if (!iterator->actions) {
5af447e5 660 BT_LOGE_STR("Failed to allocate a GArray.");
73d5c1ad
PP
661 status = BT_CONNECTION_STATUS_NOMEM;
662 goto end;
3230ee6b
PP
663 }
664
bd14d768
PP
665 iterator->upstream_component = upstream_comp;
666 iterator->upstream_port = upstream_port;
667 iterator->connection = connection;
90157d89 668 iterator->state = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_NON_INITIALIZED;
5af447e5
PP
669 BT_LOGD("Created notification iterator: "
670 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
671 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
672 "conn-addr=%p, iter-addr=%p",
673 upstream_comp, bt_component_get_name(upstream_comp),
674 upstream_port, bt_port_get_name(upstream_port),
675 connection, iterator);
1a6a376a
PP
676
677 /* Move reference to user */
678 *user_iterator = iterator;
679 iterator = NULL;
3230ee6b 680
47e5a032 681end:
73d5c1ad
PP
682 bt_put(iterator);
683 return status;
47e5a032
JG
684}
685
90157d89
PP
686void *bt_private_connection_private_notification_iterator_get_user_data(
687 struct bt_private_connection_private_notification_iterator *private_iterator)
ea8d3e58 688{
90157d89
PP
689 struct bt_notification_iterator_private_connection *iterator =
690 bt_private_connection_notification_iterator_from_private(private_iterator);
890882ef 691
ea8d3e58
JG
692 return iterator ? iterator->user_data : NULL;
693}
694
695enum bt_notification_iterator_status
90157d89
PP
696bt_private_connection_private_notification_iterator_set_user_data(
697 struct bt_private_connection_private_notification_iterator *private_iterator,
890882ef 698 void *data)
ea8d3e58
JG
699{
700 enum bt_notification_iterator_status ret =
701 BT_NOTIFICATION_ITERATOR_STATUS_OK;
90157d89
PP
702 struct bt_notification_iterator_private_connection *iterator =
703 bt_private_connection_notification_iterator_from_private(private_iterator);
ea8d3e58 704
d3eb6e8f 705 if (!iterator) {
5af447e5 706 BT_LOGW_STR("Invalid parameter: notification iterator is NULL.");
fe8ad2b6 707 ret = BT_NOTIFICATION_ITERATOR_STATUS_INVALID;
ea8d3e58
JG
708 goto end;
709 }
710
711 iterator->user_data = data;
5af447e5
PP
712 BT_LOGV("Set notification iterator's user data: "
713 "iter-addr=%p, user-data-addr=%p", iterator, data);
714
8738a040
JG
715end:
716 return ret;
717}
413bc2c4 718
53d45b87
JG
719struct bt_notification *bt_notification_iterator_get_notification(
720 struct bt_notification_iterator *iterator)
721{
41a2b7ae 722 struct bt_notification *notification = NULL;
d3eb6e8f 723
41a2b7ae 724 if (!iterator) {
5af447e5 725 BT_LOGW_STR("Invalid parameter: notification iterator is NULL.");
41a2b7ae 726 goto end;
d3eb6e8f 727 }
d3eb6e8f 728
90157d89
PP
729 switch (iterator->type) {
730 case BT_NOTIFICATION_ITERATOR_TYPE_PRIVATE_CONNECTION:
731 {
732 struct bt_notification_iterator_private_connection *priv_conn_iter =
733 (void *) iterator;
734
735 notification = bt_get(priv_conn_iter->current_notification);
736 break;
737 }
738 default:
739 BT_LOGF("Unknown notification iterator type: addr=%p, type=%d",
740 iterator, iterator->type);
741 abort();
742 }
d3eb6e8f 743
41a2b7ae
PP
744end:
745 return notification;
53d45b87
JG
746}
747
fa054faf 748static
90157d89 749enum bt_private_connection_notification_iterator_notif_type
fa054faf
PP
750bt_notification_iterator_notif_type_from_notif_type(
751 enum bt_notification_type notif_type)
752{
90157d89 753 enum bt_private_connection_notification_iterator_notif_type iter_notif_type;
fa054faf
PP
754
755 switch (notif_type) {
756 case BT_NOTIFICATION_TYPE_EVENT:
90157d89 757 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_EVENT;
fa054faf
PP
758 break;
759 case BT_NOTIFICATION_TYPE_INACTIVITY:
90157d89 760 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_INACTIVITY;
fa054faf
PP
761 break;
762 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
90157d89 763 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_BEGIN;
fa054faf
PP
764 break;
765 case BT_NOTIFICATION_TYPE_STREAM_END:
90157d89 766 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_END;
fa054faf
PP
767 break;
768 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
90157d89 769 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_BEGIN;
fa054faf
PP
770 break;
771 case BT_NOTIFICATION_TYPE_PACKET_END:
90157d89 772 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_END;
fa054faf 773 break;
2ec84d26 774 case BT_NOTIFICATION_TYPE_DISCARDED_EVENTS:
90157d89 775 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_EVENTS;
2ec84d26
PP
776 break;
777 case BT_NOTIFICATION_TYPE_DISCARDED_PACKETS:
90157d89 778 iter_notif_type = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_PACKETS;
2ec84d26 779 break;
fa054faf 780 default:
0fbb9a9f 781 abort();
fa054faf
PP
782 }
783
784 return iter_notif_type;
785}
786
3230ee6b 787static
90157d89
PP
788bt_bool validate_notification(
789 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
790 struct bt_notification *notif,
791 struct bt_ctf_stream *notif_stream,
792 struct bt_ctf_packet *notif_packet)
793{
c55a9f58 794 bt_bool is_valid = BT_TRUE;
3230ee6b
PP
795 struct stream_state *stream_state;
796 struct bt_port *stream_comp_cur_port;
797
798 assert(notif_stream);
799 stream_comp_cur_port =
800 bt_ctf_stream_port_for_component(notif_stream,
801 iterator->upstream_component);
802 if (!stream_comp_cur_port) {
803 /*
804 * This is the first time this notification iterator
805 * bumps into this stream. Add an action to map the
806 * iterator's upstream component to the iterator's
807 * upstream port in this stream.
808 */
809 struct action action = {
810 .type = ACTION_TYPE_MAP_PORT_TO_COMP_IN_STREAM,
811 .payload.map_port_to_comp_in_stream = {
812 .stream = bt_get(notif_stream),
813 .component = bt_get(iterator->upstream_component),
814 .port = bt_get(iterator->upstream_port),
815 },
816 };
817
818 add_action(iterator, &action);
819 } else {
820 if (stream_comp_cur_port != iterator->upstream_port) {
821 /*
822 * It looks like two different ports of the same
823 * component are emitting notifications which
824 * have references to the same stream. This is
825 * bad: the API guarantees that it can never
826 * happen.
827 */
5af447e5
PP
828 BT_LOGW("Two different ports of the same component are emitting notifications which refer to the same stream: "
829 "stream-addr=%p, stream-name=\"%s\", "
830 "stream-comp-cur-port-addr=%p, "
831 "stream-comp-cur-port-name=%p, "
832 "iter-upstream-port-addr=%p, "
833 "iter-upstream-port-name=%s",
834 notif_stream,
835 bt_ctf_stream_get_name(notif_stream),
836 stream_comp_cur_port,
837 bt_port_get_name(stream_comp_cur_port),
838 iterator->upstream_port,
839 bt_port_get_name(iterator->upstream_port));
c55a9f58 840 is_valid = BT_FALSE;
3230ee6b
PP
841 goto end;
842 }
843
844 }
845
846 stream_state = g_hash_table_lookup(iterator->stream_states,
847 notif_stream);
848 if (stream_state) {
5af447e5
PP
849 BT_LOGV("Stream state already exists: "
850 "stream-addr=%p, stream-name=\"%s\", "
851 "stream-state-addr=%p",
852 notif_stream,
853 bt_ctf_stream_get_name(notif_stream), stream_state);
854
3230ee6b
PP
855 if (stream_state->is_ended) {
856 /*
857 * There's a new notification which has a
858 * reference to a stream which, from this
859 * iterator's point of view, is ended ("end of
860 * stream" notification was returned). This is
861 * bad: the API guarantees that it can never
862 * happen.
863 */
5af447e5
PP
864 BT_LOGW("Stream is already ended: "
865 "stream-addr=%p, stream-name=\"%s\"",
866 notif_stream,
867 bt_ctf_stream_get_name(notif_stream));
c55a9f58 868 is_valid = BT_FALSE;
3230ee6b
PP
869 goto end;
870 }
871
872 switch (notif->type) {
873 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
874 /*
875 * We already have a stream state, which means
876 * we already returned a "stream begin"
877 * notification: this is an invalid duplicate.
878 */
5af447e5
PP
879 BT_LOGW("Duplicate stream beginning notification: "
880 "stream-addr=%p, stream-name=\"%s\"",
881 notif_stream,
882 bt_ctf_stream_get_name(notif_stream));
c55a9f58 883 is_valid = BT_FALSE;
3230ee6b
PP
884 goto end;
885 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
886 if (notif_packet == stream_state->cur_packet) {
887 /* Duplicate "packet begin" notification */
5af447e5
PP
888 BT_LOGW("Duplicate stream beginning notification: "
889 "stream-addr=%p, stream-name=\"%s\", "
890 "packet-addr=%p",
891 notif_stream,
892 bt_ctf_stream_get_name(notif_stream),
893 notif_packet);
c55a9f58 894 is_valid = BT_FALSE;
3230ee6b
PP
895 goto end;
896 }
897 break;
898 default:
899 break;
900 }
901 }
902
903end:
904 return is_valid;
905}
906
fa054faf 907static
90157d89
PP
908bt_bool is_subscribed_to_notification_type(
909 struct bt_notification_iterator_private_connection *iterator,
fa054faf
PP
910 enum bt_notification_type notif_type)
911{
912 uint32_t iter_notif_type =
913 (uint32_t) bt_notification_iterator_notif_type_from_notif_type(
914 notif_type);
915
c55a9f58 916 return (iter_notif_type & iterator->subscription_mask) ? BT_TRUE : BT_FALSE;
fa054faf
PP
917}
918
3230ee6b 919static
90157d89
PP
920void add_action_push_notif(
921 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
922 struct bt_notification *notif)
923{
924 struct action action = {
925 .type = ACTION_TYPE_PUSH_NOTIF,
3230ee6b
PP
926 };
927
928 assert(notif);
fa054faf
PP
929
930 if (!is_subscribed_to_notification_type(iterator, notif->type)) {
931 return;
932 }
933
934 action.payload.push_notif.notif = bt_get(notif);
3230ee6b 935 add_action(iterator, &action);
5af447e5 936 BT_LOGV("Added \"push notification\" action: notif-addr=%p", notif);
3230ee6b
PP
937}
938
939static
940int add_action_push_notif_stream_begin(
90157d89 941 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
942 struct bt_ctf_stream *stream)
943{
944 int ret = 0;
945 struct bt_notification *stream_begin_notif = NULL;
946
fa054faf
PP
947 if (!is_subscribed_to_notification_type(iterator,
948 BT_NOTIFICATION_TYPE_STREAM_BEGIN)) {
5af447e5
PP
949 BT_LOGV("Not adding \"push stream beginning notification\" action: "
950 "notification iterator is not subscribed: addr=%p",
951 iterator);
fa054faf
PP
952 goto end;
953 }
954
3230ee6b
PP
955 assert(stream);
956 stream_begin_notif = bt_notification_stream_begin_create(stream);
957 if (!stream_begin_notif) {
5af447e5 958 BT_LOGE_STR("Cannot create stream beginning notification.");
3230ee6b
PP
959 goto error;
960 }
961
962 add_action_push_notif(iterator, stream_begin_notif);
5af447e5
PP
963 BT_LOGV("Added \"push stream beginning notification\" action: "
964 "stream-addr=%p, stream-name=\"%s\"",
965 stream, bt_ctf_stream_get_name(stream));
3230ee6b
PP
966 goto end;
967
968error:
969 ret = -1;
970
971end:
972 bt_put(stream_begin_notif);
973 return ret;
974}
975
976static
977int add_action_push_notif_stream_end(
90157d89 978 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
979 struct bt_ctf_stream *stream)
980{
981 int ret = 0;
982 struct bt_notification *stream_end_notif = NULL;
983
fa054faf
PP
984 if (!is_subscribed_to_notification_type(iterator,
985 BT_NOTIFICATION_TYPE_STREAM_END)) {
5af447e5
PP
986 BT_LOGV("Not adding \"push stream end notification\" action: "
987 "notification iterator is not subscribed: addr=%p",
988 iterator);
fa054faf
PP
989 goto end;
990 }
991
3230ee6b
PP
992 assert(stream);
993 stream_end_notif = bt_notification_stream_end_create(stream);
994 if (!stream_end_notif) {
5af447e5 995 BT_LOGE_STR("Cannot create stream end notification.");
3230ee6b
PP
996 goto error;
997 }
998
999 add_action_push_notif(iterator, stream_end_notif);
5af447e5
PP
1000 BT_LOGV("Added \"push stream end notification\" action: "
1001 "stream-addr=%p, stream-name=\"%s\"",
1002 stream, bt_ctf_stream_get_name(stream));
3230ee6b
PP
1003 goto end;
1004
1005error:
1006 ret = -1;
1007
1008end:
1009 bt_put(stream_end_notif);
1010 return ret;
1011}
1012
1013static
1014int add_action_push_notif_packet_begin(
90157d89 1015 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1016 struct bt_ctf_packet *packet)
1017{
1018 int ret = 0;
1019 struct bt_notification *packet_begin_notif = NULL;
1020
fa054faf
PP
1021 if (!is_subscribed_to_notification_type(iterator,
1022 BT_NOTIFICATION_TYPE_PACKET_BEGIN)) {
5af447e5
PP
1023 BT_LOGV("Not adding \"push packet beginning notification\" action: "
1024 "notification iterator is not subscribed: addr=%p",
1025 iterator);
fa054faf
PP
1026 goto end;
1027 }
1028
3230ee6b
PP
1029 assert(packet);
1030 packet_begin_notif = bt_notification_packet_begin_create(packet);
1031 if (!packet_begin_notif) {
5af447e5 1032 BT_LOGE_STR("Cannot create packet beginning notification.");
3230ee6b
PP
1033 goto error;
1034 }
1035
1036 add_action_push_notif(iterator, packet_begin_notif);
5af447e5
PP
1037 BT_LOGV("Added \"push packet beginning notification\" action: "
1038 "packet-addr=%p", packet);
3230ee6b
PP
1039 goto end;
1040
1041error:
1042 ret = -1;
1043
1044end:
1045 bt_put(packet_begin_notif);
1046 return ret;
1047}
1048
1049static
1050int add_action_push_notif_packet_end(
90157d89 1051 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1052 struct bt_ctf_packet *packet)
1053{
1054 int ret = 0;
1055 struct bt_notification *packet_end_notif = NULL;
1056
fa054faf
PP
1057 if (!is_subscribed_to_notification_type(iterator,
1058 BT_NOTIFICATION_TYPE_PACKET_END)) {
5af447e5
PP
1059 BT_LOGV("Not adding \"push packet end notification\" action: "
1060 "notification iterator is not subscribed: addr=%p",
1061 iterator);
fa054faf
PP
1062 goto end;
1063 }
1064
3230ee6b
PP
1065 assert(packet);
1066 packet_end_notif = bt_notification_packet_end_create(packet);
1067 if (!packet_end_notif) {
5af447e5 1068 BT_LOGE_STR("Cannot create packet end notification.");
3230ee6b
PP
1069 goto error;
1070 }
1071
1072 add_action_push_notif(iterator, packet_end_notif);
5af447e5
PP
1073 BT_LOGV("Added \"push packet end notification\" action: "
1074 "packet-addr=%p", packet);
3230ee6b
PP
1075 goto end;
1076
1077error:
1078 ret = -1;
1079
1080end:
1081 bt_put(packet_end_notif);
1082 return ret;
1083}
1084
1085static
1086void add_action_set_stream_state_is_ended(
90157d89 1087 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1088 struct stream_state *stream_state)
1089{
1090 struct action action = {
1091 .type = ACTION_TYPE_SET_STREAM_STATE_IS_ENDED,
1092 .payload.set_stream_state_is_ended = {
1093 .stream_state = stream_state,
1094 },
1095 };
1096
1097 assert(stream_state);
1098 add_action(iterator, &action);
5af447e5
PP
1099 BT_LOGV("Added \"set stream state's ended\" action: "
1100 "stream-state-addr=%p", stream_state);
3230ee6b
PP
1101}
1102
1103static
1104void add_action_set_stream_state_cur_packet(
90157d89 1105 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1106 struct stream_state *stream_state,
1107 struct bt_ctf_packet *packet)
1108{
1109 struct action action = {
1110 .type = ACTION_TYPE_SET_STREAM_STATE_CUR_PACKET,
1111 .payload.set_stream_state_cur_packet = {
1112 .stream_state = stream_state,
1113 .packet = bt_get(packet),
1114 },
1115 };
1116
1117 assert(stream_state);
1118 add_action(iterator, &action);
5af447e5
PP
1119 BT_LOGV("Added \"set stream state's current packet\" action: "
1120 "stream-state-addr=%p, packet-addr=%p",
1121 stream_state, packet);
3230ee6b
PP
1122}
1123
2ec84d26
PP
1124static
1125void add_action_update_stream_state_discarded_elements(
90157d89 1126 struct bt_notification_iterator_private_connection *iterator,
2ec84d26
PP
1127 enum action_type type,
1128 struct stream_state *stream_state,
1129 struct bt_ctf_clock_value *cur_begin,
1130 uint64_t cur_count)
1131{
1132 struct action action = {
1133 .type = type,
1134 .payload.update_stream_state_discarded_elements = {
1135 .stream_state = stream_state,
1136 .cur_begin = bt_get(cur_begin),
1137 .cur_count = cur_count,
1138 },
1139 };
1140
1141 assert(stream_state);
1142 assert(type == ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS ||
1143 type == ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS);
1144 add_action(iterator, &action);
1145 if (type == ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS) {
1146 BT_LOGV("Added \"update stream state's discarded packets\" action: "
1147 "stream-state-addr=%p, cur-begin-addr=%p, cur-count=%" PRIu64,
1148 stream_state, cur_begin, cur_count);
1149 } else if (type == ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS) {
1150 BT_LOGV("Added \"update stream state's discarded events\" action: "
1151 "stream-state-addr=%p, cur-begin-addr=%p, cur-count=%" PRIu64,
1152 stream_state, cur_begin, cur_count);
1153 }
1154}
1155
3230ee6b 1156static
90157d89
PP
1157int ensure_stream_state_exists(
1158 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1159 struct bt_notification *stream_begin_notif,
1160 struct bt_ctf_stream *notif_stream,
2c212c05 1161 struct stream_state **_stream_state)
3230ee6b
PP
1162{
1163 int ret = 0;
2c212c05 1164 struct stream_state *stream_state = NULL;
3230ee6b
PP
1165
1166 if (!notif_stream) {
1167 /*
1168 * The notification does not reference any stream: no
1169 * need to get or create a stream state.
1170 */
1171 goto end;
1172 }
1173
2c212c05 1174 stream_state = g_hash_table_lookup(iterator->stream_states,
3230ee6b 1175 notif_stream);
2c212c05 1176 if (!stream_state) {
3230ee6b
PP
1177 /*
1178 * This iterator did not bump into this stream yet:
1179 * create a stream state and a "stream begin"
1180 * notification.
1181 */
1182 struct action action = {
1183 .type = ACTION_TYPE_ADD_STREAM_STATE,
1184 .payload.add_stream_state = {
1185 .stream = bt_get(notif_stream),
1186 .stream_state = NULL,
1187 },
1188 };
1189
2c212c05 1190 stream_state = create_stream_state(notif_stream);
3230ee6b 1191 if (!stream_state) {
5af447e5 1192 BT_LOGE_STR("Cannot create stream state.");
3230ee6b
PP
1193 goto error;
1194 }
1195
2c212c05 1196 action.payload.add_stream_state.stream_state = stream_state;
3230ee6b
PP
1197 add_action(iterator, &action);
1198
1199 if (stream_begin_notif) {
1200 add_action_push_notif(iterator, stream_begin_notif);
1201 } else {
1202 ret = add_action_push_notif_stream_begin(iterator,
1203 notif_stream);
1204 if (ret) {
5af447e5 1205 BT_LOGE_STR("Cannot add \"push stream beginning notification\" action.");
3230ee6b
PP
1206 goto error;
1207 }
1208 }
1209 }
3230ee6b
PP
1210 goto end;
1211
1212error:
2c212c05
MD
1213 destroy_stream_state(stream_state);
1214 stream_state = NULL;
3230ee6b
PP
1215 ret = -1;
1216
1217end:
2c212c05 1218 *_stream_state = stream_state;
3230ee6b
PP
1219 return ret;
1220}
1221
2ec84d26
PP
1222static
1223struct bt_ctf_field *get_struct_field_uint(struct bt_ctf_field *struct_field,
1224 const char *field_name)
1225{
1226 struct bt_ctf_field *field = NULL;
1227 struct bt_ctf_field_type *ft = NULL;
1228
1229 field = bt_ctf_field_structure_get_field_by_name(struct_field,
1230 field_name);
1231 if (!field) {
1232 BT_LOGV_STR("`%s` field does not exist.");
1233 goto end;
1234 }
1235
1236 if (!bt_ctf_field_is_integer(field)) {
1237 BT_LOGV("Skipping `%s` field because its type is not an integer field type: "
1238 "field-addr=%p, ft-addr=%p, ft-id=%s", field_name,
1239 field, ft, bt_ctf_field_type_id_string(
1240 bt_ctf_field_type_get_type_id(ft)));
1241 BT_PUT(field);
1242 goto end;
1243 }
1244
1245 ft = bt_ctf_field_get_type(field);
1246 assert(ft);
1247
1248 if (bt_ctf_field_type_integer_is_signed(ft)) {
1249 BT_LOGV("Skipping `%s` integer field because its type is signed: "
1250 "field-addr=%p, ft-addr=%p", field_name, field, ft);
1251 BT_PUT(field);
1252 goto end;
1253 }
1254
1255end:
1256 bt_put(ft);
1257 return field;
1258}
1259
1260static
1261uint64_t get_packet_context_events_discarded(struct bt_ctf_packet *packet)
1262{
1263 struct bt_ctf_field *packet_context = NULL;
1264 struct bt_ctf_field *field = NULL;
1265 uint64_t retval = -1ULL;
1266 int ret;
1267
1268 packet_context = bt_ctf_packet_get_context(packet);
1269 if (!packet_context) {
1270 goto end;
1271 }
1272
1273 field = get_struct_field_uint(packet_context, "events_discarded");
1274 if (!field) {
1275 BT_LOGV("`events_discarded` field does not exist in packet's context field: "
1276 "packet-addr=%p, packet-context-field-addr=%p",
1277 packet, packet_context);
1278 goto end;
1279 }
1280
1281 assert(bt_ctf_field_is_integer(field));
1282 ret = bt_ctf_field_unsigned_integer_get_value(field, &retval);
1283 if (ret) {
1284 BT_LOGV("Cannot get raw value of packet's context field's `events_discarded` integer field: "
1285 "packet-addr=%p, field-addr=%p",
1286 packet, field);
1287 retval = -1ULL;
1288 goto end;
1289 }
1290
1291end:
1292 bt_put(packet_context);
1293 bt_put(field);
1294 return retval;
1295}
1296
1297static
126215b4 1298uint64_t get_packet_context_packet_seq_num(struct bt_ctf_packet *packet)
2ec84d26 1299{
126215b4 1300 struct bt_ctf_field *packet_context = NULL;
2ec84d26
PP
1301 struct bt_ctf_field *field = NULL;
1302 uint64_t retval = -1ULL;
1303 int ret;
1304
126215b4
MD
1305 packet_context = bt_ctf_packet_get_context(packet);
1306 if (!packet_context) {
2ec84d26
PP
1307 goto end;
1308 }
1309
126215b4 1310 field = get_struct_field_uint(packet_context, "packet_seq_num");
2ec84d26 1311 if (!field) {
126215b4
MD
1312 BT_LOGV("`packet_seq_num` field does not exist in packet's context field: "
1313 "packet-addr=%p, packet-context-field-addr=%p",
1314 packet, packet_context);
2ec84d26
PP
1315 goto end;
1316 }
1317
1318 assert(bt_ctf_field_is_integer(field));
1319 ret = bt_ctf_field_unsigned_integer_get_value(field, &retval);
1320 if (ret) {
126215b4 1321 BT_LOGV("Cannot get raw value of packet's context field's `packet_seq_num` integer field: "
2ec84d26
PP
1322 "packet-addr=%p, field-addr=%p",
1323 packet, field);
1324 retval = -1ULL;
1325 goto end;
1326 }
1327
1328end:
126215b4 1329 bt_put(packet_context);
2ec84d26
PP
1330 bt_put(field);
1331 return retval;
1332}
1333
1334static
90157d89
PP
1335int handle_discarded_packets(
1336 struct bt_notification_iterator_private_connection *iterator,
2ec84d26
PP
1337 struct bt_ctf_packet *packet,
1338 struct bt_ctf_clock_value *ts_begin,
1339 struct bt_ctf_clock_value *ts_end,
1340 struct stream_state *stream_state)
1341{
1342 struct bt_notification *notif = NULL;
1343 uint64_t diff;
126215b4 1344 uint64_t prev_count, next_count;
2ec84d26
PP
1345 int ret = 0;
1346
126215b4 1347 next_count = get_packet_context_packet_seq_num(packet);
2ec84d26 1348 if (next_count == -1ULL) {
126215b4
MD
1349 /*
1350 * Stream does not have seqnum field, skip discarded
1351 * packets feature.
1352 */
2ec84d26
PP
1353 goto end;
1354 }
126215b4 1355 prev_count = stream_state->discarded_packets_state.cur_count;
2ec84d26 1356
126215b4
MD
1357 if (prev_count != -1ULL) {
1358 if (next_count < prev_count) {
1359 BT_LOGW("Current value of packet's context field's `packet_seq_num` field is lesser than the previous value for the same stream: "
1360 "not updating the stream state's current value: "
1361 "packet-addr=%p, prev-count=%" PRIu64 ", "
1362 "cur-count=%" PRIu64,
1363 packet, prev_count, next_count);
1364 goto end;
1365 }
1366 if (next_count == prev_count) {
1367 BT_LOGW("Current value of packet's context field's `packet_seq_num` field is equal to the previous value for the same stream: "
1368 "not updating the stream state's current value: "
1369 "packet-addr=%p, prev-count=%" PRIu64 ", "
1370 "cur-count=%" PRIu64,
1371 packet, prev_count, next_count);
2ec84d26
PP
1372 goto end;
1373 }
1374
126215b4
MD
1375 diff = next_count - prev_count;
1376 if (diff > 1) {
1377 /*
1378 * Add a discarded packets notification. The packets
1379 * are considered to be lost between the state's last time
1380 * and the current packet's beginning time.
1381 * The counter is expected to monotonically increase of
1382 * 1 for each packet. Therefore, the number of missing
1383 * packets is 'diff - 1'.
1384 */
1385 notif = bt_notification_discarded_elements_create(
1386 BT_NOTIFICATION_TYPE_DISCARDED_PACKETS,
1387 stream_state->stream,
1388 stream_state->discarded_packets_state.cur_begin,
1389 ts_begin, diff - 1);
1390 if (!notif) {
1391 BT_LOGE_STR("Cannot create discarded packets notification.");
1392 ret = -1;
1393 goto end;
1394 }
1395
1396 add_action_push_notif(iterator, notif);
1397 }
2ec84d26
PP
1398 }
1399
2ec84d26
PP
1400 add_action_update_stream_state_discarded_elements(iterator,
1401 ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_PACKETS,
1402 stream_state, ts_end, next_count);
1403
1404end:
1405 bt_put(notif);
1406 return ret;
1407}
1408
1409static
90157d89
PP
1410int handle_discarded_events(
1411 struct bt_notification_iterator_private_connection *iterator,
2ec84d26
PP
1412 struct bt_ctf_packet *packet,
1413 struct bt_ctf_clock_value *ts_begin,
1414 struct bt_ctf_clock_value *ts_end,
1415 struct stream_state *stream_state)
1416{
1417 struct bt_notification *notif = NULL;
1418 uint64_t diff;
1419 uint64_t next_count;
1420 int ret = 0;
1421
1422 next_count = get_packet_context_events_discarded(packet);
1423 if (next_count == -1ULL) {
1424 next_count = stream_state->discarded_events_state.cur_count;
1425 goto update_state;
1426 }
1427
1428 if (next_count < stream_state->discarded_events_state.cur_count) {
1429 BT_LOGW("Current value of packet's context field's `events_discarded` field is lesser than the previous value for the same stream: "
1430 "not updating the stream state's current value: "
1431 "packet-addr=%p, prev-count=%" PRIu64 ", "
1432 "cur-count=%" PRIu64,
1433 packet, stream_state->discarded_events_state.cur_count,
1434 next_count);
1435 goto end;
1436 }
1437
1438 diff = next_count - stream_state->discarded_events_state.cur_count;
1439 if (diff > 0) {
1440 /*
1441 * Add a discarded events notification. The events are
1442 * considered to be lost betweem the state's last time
1443 * and the current packet's end time.
1444 */
1445 notif = bt_notification_discarded_elements_create(
1446 BT_NOTIFICATION_TYPE_DISCARDED_EVENTS,
1447 stream_state->stream,
1448 stream_state->discarded_events_state.cur_begin,
1449 ts_end, diff);
1450 if (!notif) {
1451 BT_LOGE_STR("Cannot create discarded events notification.");
1452 ret = -1;
1453 goto end;
1454 }
1455
1456 add_action_push_notif(iterator, notif);
1457 }
1458
1459update_state:
1460 add_action_update_stream_state_discarded_elements(iterator,
1461 ACTION_TYPE_UPDATE_STREAM_STATE_DISCARDED_EVENTS,
1462 stream_state, ts_end, next_count);
1463
1464end:
1465 bt_put(notif);
1466 return ret;
1467}
1468
1469static
1470int get_field_clock_value(struct bt_ctf_field *root_field,
1471 const char *field_name,
1472 struct bt_ctf_clock_value **user_clock_val)
1473{
1474 struct bt_ctf_field *field;
1475 struct bt_ctf_field_type *ft = NULL;
1476 struct bt_ctf_clock_class *clock_class = NULL;
1477 struct bt_ctf_clock_value *clock_value = NULL;
1478 uint64_t val;
1479 int ret = 0;
1480
1481 field = get_struct_field_uint(root_field, field_name);
1482 if (!field) {
1483 /* Not an error: skip this */
1484 goto end;
1485 }
1486
1487 ft = bt_ctf_field_get_type(field);
1488 assert(ft);
1489 clock_class = bt_ctf_field_type_integer_get_mapped_clock_class(ft);
1490 if (!clock_class) {
1491 BT_LOGW("Integer field type has no mapped clock class but it's expected to have one: "
1492 "ft-addr=%p", ft);
1493 ret = -1;
1494 goto end;
1495 }
1496
1497 ret = bt_ctf_field_unsigned_integer_get_value(field, &val);
1498 if (ret) {
1499 BT_LOGW("Cannot get integer field's raw value: "
1500 "field-addr=%p", field);
1501 ret = -1;
1502 goto end;
1503 }
1504
1505 clock_value = bt_ctf_clock_value_create(clock_class, val);
1506 if (!clock_value) {
1507 BT_LOGE_STR("Cannot create clock value from clock class.");
1508 ret = -1;
1509 goto end;
1510 }
1511
1512 /* Move clock value to user */
1513 *user_clock_val = clock_value;
1514 clock_value = NULL;
1515
1516end:
1517 bt_put(field);
1518 bt_put(ft);
1519 bt_put(clock_class);
1520 bt_put(clock_value);
1521 return ret;
1522}
1523
1524static
1525int get_ts_begin_ts_end_from_packet(struct bt_ctf_packet *packet,
1526 struct bt_ctf_clock_value **user_ts_begin,
1527 struct bt_ctf_clock_value **user_ts_end)
1528{
1529 struct bt_ctf_field *packet_context = NULL;
1530 struct bt_ctf_clock_value *ts_begin = NULL;
1531 struct bt_ctf_clock_value *ts_end = NULL;
1532 int ret = 0;
1533
1534 packet_context = bt_ctf_packet_get_context(packet);
1535 if (!packet_context) {
1536 goto end;
1537 }
1538
1539 ret = get_field_clock_value(packet_context, "timestamp_begin",
1540 &ts_begin);
1541 if (ret) {
1542 BT_LOGW("Cannot create clock value for packet context's `timestamp_begin` field: "
1543 "packet-addr=%p, packet-context-field-addr=%p",
1544 packet, packet_context);
1545 goto end;
1546 }
1547
1548 ret = get_field_clock_value(packet_context, "timestamp_end",
1549 &ts_end);
1550 if (ret) {
1551 BT_LOGW("Cannot create clock value for packet context's `timestamp_begin` field: "
1552 "packet-addr=%p, packet-context-field-addr=%p",
1553 packet, packet_context);
1554 goto end;
1555 }
1556
1557 /* Move clock values to user */
1558 *user_ts_begin = ts_begin;
1559 ts_begin = NULL;
1560 *user_ts_end = ts_end;
1561 ts_end = NULL;
1562
1563end:
1564 bt_put(packet_context);
1565 bt_put(ts_begin);
1566 bt_put(ts_end);
1567 return ret;
1568}
1569
1570static
90157d89
PP
1571int handle_discarded_elements(
1572 struct bt_notification_iterator_private_connection *iterator,
2ec84d26
PP
1573 struct bt_ctf_packet *packet, struct stream_state *stream_state)
1574{
1575 struct bt_ctf_clock_value *ts_begin = NULL;
1576 struct bt_ctf_clock_value *ts_end = NULL;
1577 int ret;
1578
1579 ret = get_ts_begin_ts_end_from_packet(packet, &ts_begin, &ts_end);
1580 if (ret) {
1581 BT_LOGW("Cannot get packet's beginning or end clock values: "
1582 "packet-addr=%p, ret=%d", packet, ret);
1583 ret = -1;
1584 goto end;
1585 }
1586
1587 ret = handle_discarded_packets(iterator, packet, ts_begin, ts_end,
1588 stream_state);
1589 if (ret) {
1590 BT_LOGW("Cannot handle discarded packets for packet: "
1591 "packet-addr=%p, ret=%d", packet, ret);
1592 ret = -1;
1593 goto end;
1594 }
1595
1596 ret = handle_discarded_events(iterator, packet, ts_begin, ts_end,
1597 stream_state);
1598 if (ret) {
1599 BT_LOGW("Cannot handle discarded events for packet: "
1600 "packet-addr=%p, ret=%d", packet, ret);
1601 ret = -1;
1602 goto end;
1603 }
1604
1605end:
1606 bt_put(ts_begin);
1607 bt_put(ts_end);
1608 return ret;
1609}
1610
3230ee6b 1611static
90157d89
PP
1612int handle_packet_switch(
1613 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1614 struct bt_notification *packet_begin_notif,
1615 struct bt_ctf_packet *new_packet,
1616 struct stream_state *stream_state)
1617{
1618 int ret = 0;
1619
1620 if (stream_state->cur_packet == new_packet) {
1621 goto end;
1622 }
1623
5af447e5
PP
1624 BT_LOGV("Handling packet switch: "
1625 "cur-packet-addr=%p, new-packet-addr=%p",
1626 stream_state->cur_packet, new_packet);
1627
3230ee6b
PP
1628 if (stream_state->cur_packet) {
1629 /* End of the current packet */
1630 ret = add_action_push_notif_packet_end(iterator,
1631 stream_state->cur_packet);
1632 if (ret) {
5af447e5 1633 BT_LOGE_STR("Cannot add \"push packet end notification\" action.");
3230ee6b
PP
1634 goto error;
1635 }
1636 }
1637
2ec84d26 1638 /*
126215b4
MD
1639 * Check the new packet's context fields for discarded packets
1640 * and events to emit those automatic notifications.
2ec84d26
PP
1641 */
1642 ret = handle_discarded_elements(iterator, new_packet, stream_state);
1643 if (ret) {
1644 BT_LOGE_STR("Cannot handle discarded elements for new packet.");
1645 goto error;
1646 }
1647
3230ee6b
PP
1648 /* Beginning of the new packet */
1649 if (packet_begin_notif) {
1650 add_action_push_notif(iterator, packet_begin_notif);
1651 } else if (new_packet) {
1652 ret = add_action_push_notif_packet_begin(iterator,
1653 new_packet);
1654 if (ret) {
5af447e5 1655 BT_LOGE_STR("Cannot add \"push packet beginning notification\" action.");
3230ee6b
PP
1656 goto error;
1657 }
1658 }
1659
1660 add_action_set_stream_state_cur_packet(iterator, stream_state,
1661 new_packet);
1662 goto end;
1663
1664error:
1665 ret = -1;
1666
1667end:
1668 return ret;
1669}
1670
1671static
1672int handle_notif_stream_begin(
90157d89 1673 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1674 struct bt_notification *notif,
1675 struct bt_ctf_stream *notif_stream)
1676{
1677 int ret = 0;
1678 struct stream_state *stream_state;
1679
1680 assert(notif->type == BT_NOTIFICATION_TYPE_STREAM_BEGIN);
1681 assert(notif_stream);
1682 ret = ensure_stream_state_exists(iterator, notif, notif_stream,
1683 &stream_state);
1684 if (ret) {
5af447e5 1685 BT_LOGE_STR("Cannot ensure that stream state exists.");
3230ee6b
PP
1686 goto error;
1687 }
1688
1689 goto end;
1690
1691error:
1692 ret = -1;
1693
1694end:
1695 return ret;
1696}
1697
1698static
1699int handle_notif_stream_end(
90157d89 1700 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1701 struct bt_notification *notif,
1702 struct bt_ctf_stream *notif_stream)
1703{
1704 int ret = 0;
1705 struct stream_state *stream_state;
1706
1707 assert(notif->type == BT_NOTIFICATION_TYPE_STREAM_END);
1708 assert(notif_stream);
1709 ret = ensure_stream_state_exists(iterator, NULL, notif_stream,
1710 &stream_state);
1711 if (ret) {
5af447e5 1712 BT_LOGE_STR("Cannot ensure that stream state exists.");
3230ee6b
PP
1713 goto error;
1714 }
1715
1716 ret = handle_packet_switch(iterator, NULL, NULL, stream_state);
1717 if (ret) {
5af447e5 1718 BT_LOGE_STR("Cannot handle packet switch.");
3230ee6b
PP
1719 goto error;
1720 }
1721
1722 add_action_push_notif(iterator, notif);
1723 add_action_set_stream_state_is_ended(iterator, stream_state);
1724 goto end;
1725
1726error:
1727 ret = -1;
1728
1729end:
1730 return ret;
1731}
1732
2ec84d26
PP
1733static
1734int handle_notif_discarded_elements(
90157d89 1735 struct bt_notification_iterator_private_connection *iterator,
2ec84d26
PP
1736 struct bt_notification *notif,
1737 struct bt_ctf_stream *notif_stream)
1738{
1739 int ret = 0;
1740 struct stream_state *stream_state;
1741
1742 assert(notif->type == BT_NOTIFICATION_TYPE_DISCARDED_EVENTS ||
1743 notif->type == BT_NOTIFICATION_TYPE_DISCARDED_PACKETS);
1744 assert(notif_stream);
1745 ret = ensure_stream_state_exists(iterator, NULL, notif_stream,
1746 &stream_state);
1747 if (ret) {
1748 BT_LOGE_STR("Cannot ensure that stream state exists.");
1749 goto error;
1750 }
1751
1752 add_action_push_notif(iterator, notif);
1753 goto end;
1754
1755error:
1756 ret = -1;
1757
1758end:
1759 return ret;
1760}
1761
3230ee6b
PP
1762static
1763int handle_notif_packet_begin(
90157d89 1764 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1765 struct bt_notification *notif,
1766 struct bt_ctf_stream *notif_stream,
1767 struct bt_ctf_packet *notif_packet)
1768{
1769 int ret = 0;
1770 struct stream_state *stream_state;
1771
1772 assert(notif->type == BT_NOTIFICATION_TYPE_PACKET_BEGIN);
1773 assert(notif_packet);
1774 ret = ensure_stream_state_exists(iterator, NULL, notif_stream,
1775 &stream_state);
1776 if (ret) {
5af447e5 1777 BT_LOGE_STR("Cannot ensure that stream state exists.");
3230ee6b
PP
1778 goto error;
1779 }
1780
1781 ret = handle_packet_switch(iterator, notif, notif_packet, stream_state);
1782 if (ret) {
5af447e5 1783 BT_LOGE_STR("Cannot handle packet switch.");
3230ee6b
PP
1784 goto error;
1785 }
1786
1787 goto end;
1788
1789error:
1790 ret = -1;
1791
1792end:
1793 return ret;
1794}
1795
1796static
1797int handle_notif_packet_end(
90157d89 1798 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1799 struct bt_notification *notif,
1800 struct bt_ctf_stream *notif_stream,
1801 struct bt_ctf_packet *notif_packet)
1802{
1803 int ret = 0;
1804 struct stream_state *stream_state;
1805
1806 assert(notif->type == BT_NOTIFICATION_TYPE_PACKET_END);
1807 assert(notif_packet);
1808 ret = ensure_stream_state_exists(iterator, NULL, notif_stream,
1809 &stream_state);
1810 if (ret) {
5af447e5 1811 BT_LOGE_STR("Cannot ensure that stream state exists.");
3230ee6b
PP
1812 goto error;
1813 }
1814
1815 ret = handle_packet_switch(iterator, NULL, notif_packet, stream_state);
1816 if (ret) {
5af447e5 1817 BT_LOGE_STR("Cannot handle packet switch.");
3230ee6b
PP
1818 goto error;
1819 }
1820
1821 /* End of the current packet */
1822 add_action_push_notif(iterator, notif);
1823 add_action_set_stream_state_cur_packet(iterator, stream_state, NULL);
1824 goto end;
1825
1826error:
1827 ret = -1;
1828
1829end:
1830 return ret;
1831}
1832
1833static
1834int handle_notif_event(
90157d89 1835 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1836 struct bt_notification *notif,
1837 struct bt_ctf_stream *notif_stream,
1838 struct bt_ctf_packet *notif_packet)
1839{
1840 int ret = 0;
1841 struct stream_state *stream_state;
1842
1843 assert(notif->type == BT_NOTIFICATION_TYPE_EVENT);
1844 assert(notif_packet);
1845 ret = ensure_stream_state_exists(iterator, NULL, notif_stream,
1846 &stream_state);
1847 if (ret) {
5af447e5 1848 BT_LOGE_STR("Cannot ensure that stream state exists.");
3230ee6b
PP
1849 goto error;
1850 }
1851
1852 ret = handle_packet_switch(iterator, NULL, notif_packet, stream_state);
1853 if (ret) {
5af447e5 1854 BT_LOGE_STR("Cannot handle packet switch.");
3230ee6b
PP
1855 goto error;
1856 }
1857
1858 add_action_push_notif(iterator, notif);
1859 goto end;
1860
1861error:
1862 ret = -1;
1863
1864end:
1865 return ret;
1866}
1867
1868static
1869int enqueue_notification_and_automatic(
90157d89 1870 struct bt_notification_iterator_private_connection *iterator,
3230ee6b
PP
1871 struct bt_notification *notif)
1872{
1873 int ret = 0;
1874 struct bt_ctf_event *notif_event = NULL;
1875 struct bt_ctf_stream *notif_stream = NULL;
1876 struct bt_ctf_packet *notif_packet = NULL;
1877
1878 assert(notif);
1879
5af447e5
PP
1880 BT_LOGV("Enqueuing user notification and automatic notifications: "
1881 "iter-addr=%p, notif-addr=%p", iterator, notif);
1882
fa054faf
PP
1883 // TODO: Skip most of this if the iterator is only subscribed
1884 // to event/inactivity notifications.
1885
3230ee6b
PP
1886 /* Get the stream and packet referred by the notification */
1887 switch (notif->type) {
1888 case BT_NOTIFICATION_TYPE_EVENT:
1889 notif_event = bt_notification_event_borrow_event(notif);
1890 assert(notif_event);
1891 notif_packet = bt_ctf_event_borrow_packet(notif_event);
1892 assert(notif_packet);
1893 break;
1894 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
1895 notif_stream =
1896 bt_notification_stream_begin_borrow_stream(notif);
1897 assert(notif_stream);
1898 break;
1899 case BT_NOTIFICATION_TYPE_STREAM_END:
1900 notif_stream = bt_notification_stream_end_borrow_stream(notif);
1901 assert(notif_stream);
1902 break;
1903 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
1904 notif_packet =
1905 bt_notification_packet_begin_borrow_packet(notif);
1906 assert(notif_packet);
1907 break;
1908 case BT_NOTIFICATION_TYPE_PACKET_END:
1909 notif_packet = bt_notification_packet_end_borrow_packet(notif);
1910 assert(notif_packet);
1911 break;
1912 case BT_NOTIFICATION_TYPE_INACTIVITY:
1913 /* Always valid */
7cdc2bab 1914 goto handle_notif;
3230ee6b
PP
1915 default:
1916 /*
1917 * Invalid type of notification. Only the notification
1918 * types above are allowed to be returned by a user
1919 * component.
1920 */
2ec84d26
PP
1921 BT_LOGF("Unexpected notification type at this point: "
1922 "notif-addr=%p, notif-type=%s", notif,
1923 bt_notification_type_string(notif->type));
1924 abort();
3230ee6b
PP
1925 }
1926
1927 if (notif_packet) {
1928 notif_stream = bt_ctf_packet_borrow_stream(notif_packet);
1929 assert(notif_stream);
1930 }
1931
1932 if (!notif_stream) {
1933 /*
1934 * The notification has no reference to a stream: it
1935 * cannot cause the creation of automatic notifications.
1936 */
5af447e5 1937 BT_LOGV_STR("Notification has no reference to any stream: skipping automatic notification generation.");
3230ee6b
PP
1938 goto end;
1939 }
1940
1941 if (!validate_notification(iterator, notif, notif_stream,
1942 notif_packet)) {
5af447e5 1943 BT_LOGW_STR("Invalid notification.");
3230ee6b
PP
1944 goto error;
1945 }
1946
7cdc2bab 1947handle_notif:
3230ee6b
PP
1948 switch (notif->type) {
1949 case BT_NOTIFICATION_TYPE_EVENT:
1950 ret = handle_notif_event(iterator, notif, notif_stream,
1951 notif_packet);
1952 break;
1953 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
1954 ret = handle_notif_stream_begin(iterator, notif, notif_stream);
1955 break;
1956 case BT_NOTIFICATION_TYPE_STREAM_END:
1957 ret = handle_notif_stream_end(iterator, notif, notif_stream);
1958 break;
1959 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
1960 ret = handle_notif_packet_begin(iterator, notif, notif_stream,
1961 notif_packet);
1962 break;
1963 case BT_NOTIFICATION_TYPE_PACKET_END:
1964 ret = handle_notif_packet_end(iterator, notif, notif_stream,
1965 notif_packet);
1966 break;
2ec84d26
PP
1967 case BT_NOTIFICATION_TYPE_DISCARDED_EVENTS:
1968 case BT_NOTIFICATION_TYPE_DISCARDED_PACKETS:
1969 ret = handle_notif_discarded_elements(iterator, notif,
1970 notif_stream);
1971 break;
7cdc2bab
MD
1972 case BT_NOTIFICATION_TYPE_INACTIVITY:
1973 add_action_push_notif(iterator, notif);
1974 break;
3230ee6b
PP
1975 default:
1976 break;
1977 }
1978
1979 if (ret) {
5af447e5 1980 BT_LOGW_STR("Failed to handle notification for automatic notification generation.");
3230ee6b
PP
1981 goto error;
1982 }
1983
1984 apply_actions(iterator);
5af447e5
PP
1985 BT_LOGV("Enqueued user notification and automatic notifications: "
1986 "iter-addr=%p, notif-addr=%p", iterator, notif);
3230ee6b
PP
1987 goto end;
1988
1989error:
1990 ret = -1;
1991
1992end:
1993 return ret;
1994}
1995
1996static
90157d89 1997int handle_end(struct bt_notification_iterator_private_connection *iterator)
3230ee6b
PP
1998{
1999 GHashTableIter stream_state_iter;
2000 gpointer stream_gptr, stream_state_gptr;
2001 int ret = 0;
2002
5af447e5
PP
2003 BT_LOGV("Handling end of iteration: addr=%p", iterator);
2004
3230ee6b
PP
2005 /*
2006 * Emit a "stream end" notification for each non-ended stream
2007 * known by this iterator and mark them as ended.
2008 */
2009 g_hash_table_iter_init(&stream_state_iter, iterator->stream_states);
2010
2011 while (g_hash_table_iter_next(&stream_state_iter, &stream_gptr,
2012 &stream_state_gptr)) {
2013 struct stream_state *stream_state = stream_state_gptr;
2014
2015 assert(stream_state_gptr);
2016
2017 if (stream_state->is_ended) {
2018 continue;
2019 }
2020
2021 ret = handle_packet_switch(iterator, NULL, NULL, stream_state);
2022 if (ret) {
5af447e5 2023 BT_LOGE_STR("Cannot handle packet switch.");
3230ee6b
PP
2024 goto error;
2025 }
2026
2027 ret = add_action_push_notif_stream_end(iterator, stream_gptr);
2028 if (ret) {
5af447e5 2029 BT_LOGE_STR("Cannot add \"push stream end notification\" action.");
3230ee6b
PP
2030 goto error;
2031 }
2032
2033 add_action_set_stream_state_is_ended(iterator, stream_state);
2034 }
2035
2036 apply_actions(iterator);
5af447e5 2037 BT_LOGV("Handled end of iteration: addr=%p", iterator);
3230ee6b
PP
2038 goto end;
2039
2040error:
2041 ret = -1;
2042
2043end:
2044 return ret;
2045}
2046
2047static
2048enum bt_notification_iterator_status ensure_queue_has_notifications(
90157d89 2049 struct bt_notification_iterator_private_connection *iterator)
53d45b87 2050{
90157d89
PP
2051 struct bt_private_connection_private_notification_iterator *priv_iterator =
2052 bt_private_connection_private_notification_iterator_from_notification_iterator(iterator);
d3eb6e8f 2053 bt_component_class_notification_iterator_next_method next_method = NULL;
90157d89 2054 struct bt_notification_iterator_next_method_return next_return = {
fe8ad2b6
PP
2055 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
2056 .notification = NULL,
2057 };
3230ee6b
PP
2058 enum bt_notification_iterator_status status =
2059 BT_NOTIFICATION_ITERATOR_STATUS_OK;
2060 int ret;
41a2b7ae 2061
3230ee6b 2062 assert(iterator);
5af447e5 2063 BT_LOGD("Ensuring that notification iterator's queue has at least one notification: "
8f9d7550
PP
2064 "iter-addr=%p, queue-size=%u, iter-state=%s",
2065 iterator, iterator->queue->length,
90157d89 2066 bt_private_connection_notification_iterator_state_string(iterator->state));
3230ee6b
PP
2067
2068 if (iterator->queue->length > 0) {
8f9d7550
PP
2069 /*
2070 * We already have enough. Even if this notification
2071 * iterator is finalized, its user can still flush its
2072 * current queue's content by calling its "next" method
2073 * since this content is local and has no impact on what
2074 * used to be the iterator's upstream component.
2075 */
5af447e5 2076 BT_LOGD_STR("Queue already has at least one notification.");
3230ee6b
PP
2077 goto end;
2078 }
2079
bd14d768 2080 switch (iterator->state) {
90157d89
PP
2081 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED:
2082 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED:
5af447e5 2083 BT_LOGD_STR("Notification iterator's \"next\" called, but it is finalized.");
bd14d768
PP
2084 status = BT_NOTIFICATION_ITERATOR_STATUS_CANCELED;
2085 goto end;
90157d89 2086 case BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_ENDED:
5af447e5 2087 BT_LOGD_STR("Notification iterator is ended.");
3230ee6b 2088 status = BT_NOTIFICATION_ITERATOR_STATUS_END;
41a2b7ae 2089 goto end;
bd14d768
PP
2090 default:
2091 break;
41a2b7ae 2092 }
d3eb6e8f 2093
3230ee6b
PP
2094 assert(iterator->upstream_component);
2095 assert(iterator->upstream_component->class);
d3eb6e8f 2096
3230ee6b
PP
2097 /* Pick the appropriate "next" method */
2098 switch (iterator->upstream_component->class->type) {
d3eb6e8f
PP
2099 case BT_COMPONENT_CLASS_TYPE_SOURCE:
2100 {
2101 struct bt_component_class_source *source_class =
3230ee6b 2102 container_of(iterator->upstream_component->class,
d3eb6e8f
PP
2103 struct bt_component_class_source, parent);
2104
2105 assert(source_class->methods.iterator.next);
2106 next_method = source_class->methods.iterator.next;
2107 break;
2108 }
2109 case BT_COMPONENT_CLASS_TYPE_FILTER:
2110 {
2111 struct bt_component_class_filter *filter_class =
3230ee6b 2112 container_of(iterator->upstream_component->class,
d3eb6e8f
PP
2113 struct bt_component_class_filter, parent);
2114
2115 assert(filter_class->methods.iterator.next);
2116 next_method = filter_class->methods.iterator.next;
2117 break;
2118 }
2119 default:
0fbb9a9f 2120 abort();
d3eb6e8f
PP
2121 }
2122
3230ee6b
PP
2123 /*
2124 * Call the user's "next" method to get the next notification
fa054faf 2125 * and status.
3230ee6b 2126 */
d3eb6e8f 2127 assert(next_method);
3230ee6b 2128
fa054faf 2129 while (iterator->queue->length == 0) {
5af447e5 2130 BT_LOGD_STR("Calling user's \"next\" method.");
fa054faf 2131 next_return = next_method(priv_iterator);
5af447e5
PP
2132 BT_LOGD("User method returned: status=%s",
2133 bt_notification_iterator_status_string(next_return.status));
fa054faf 2134 if (next_return.status < 0) {
5af447e5 2135 BT_LOGW_STR("User method failed.");
fa054faf 2136 status = next_return.status;
3230ee6b
PP
2137 goto end;
2138 }
2139
90157d89
PP
2140 if (iterator->state == BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED ||
2141 iterator->state == BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED) {
8cf27cc5
PP
2142 /*
2143 * The user's "next" method, somehow, cancelled
2144 * its own notification iterator. This can
2145 * happen, for example, when the user's method
2146 * removes the port on which there's the
2147 * connection from which the iterator was
2148 * created. In this case, said connection is
2149 * ended, and all its notification iterators are
2150 * finalized.
2151 *
2152 * Only bt_put() the returned notification if
2153 * the status is
2154 * BT_NOTIFICATION_ITERATOR_STATUS_OK because
2155 * otherwise this field could be garbage.
2156 */
2157 if (next_return.status ==
2158 BT_NOTIFICATION_ITERATOR_STATUS_OK) {
2159 bt_put(next_return.notification);
2160 }
2161
2162 status = BT_NOTIFICATION_ITERATOR_STATUS_CANCELED;
2163 goto end;
2164 }
2165
fa054faf
PP
2166 switch (next_return.status) {
2167 case BT_NOTIFICATION_ITERATOR_STATUS_END:
2168 ret = handle_end(iterator);
2169 if (ret) {
5af447e5 2170 BT_LOGW_STR("Cannot handle end of iteration.");
fa054faf
PP
2171 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
2172 goto end;
2173 }
3230ee6b 2174
8f9d7550 2175 assert(iterator->state ==
90157d89
PP
2176 BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_ACTIVE);
2177 iterator->state = BT_PRIVATE_CONNECTION_NOTIFICATION_ITERATOR_STATE_ENDED;
bd14d768 2178
8f9d7550
PP
2179 if (iterator->queue->length == 0) {
2180 status = BT_NOTIFICATION_ITERATOR_STATUS_END;
bd14d768 2181 }
5af447e5
PP
2182
2183 BT_LOGD("Set new status: status=%s",
2184 bt_notification_iterator_status_string(status));
3230ee6b 2185 goto end;
fa054faf
PP
2186 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
2187 status = BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
2188 goto end;
2189 case BT_NOTIFICATION_ITERATOR_STATUS_OK:
2190 if (!next_return.notification) {
5af447e5 2191 BT_LOGW_STR("User method returned BT_NOTIFICATION_ITERATOR_STATUS_OK, but notification is NULL.");
fa054faf
PP
2192 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
2193 goto end;
2194 }
2195
2ec84d26
PP
2196 /*
2197 * Ignore some notifications which are always
2198 * automatically generated by the notification
2199 * iterator to make sure they have valid values.
2200 */
2201 switch (next_return.notification->type) {
2202 case BT_NOTIFICATION_TYPE_DISCARDED_PACKETS:
2203 case BT_NOTIFICATION_TYPE_DISCARDED_EVENTS:
2204 BT_LOGV("Ignoring discarded elements notification returned by notification iterator's \"next\" method: "
2205 "notif-type=%s",
2206 bt_notification_type_string(next_return.notification->type));
2207 BT_PUT(next_return.notification);
2208 continue;
2209 default:
2210 break;
2211 }
2212
fa054faf
PP
2213 /*
2214 * We know the notification is valid. Before we
2215 * push it to the head of the queue, push the
2216 * appropriate automatic notifications if any.
2217 */
2218 ret = enqueue_notification_and_automatic(iterator,
2219 next_return.notification);
2220 BT_PUT(next_return.notification);
2221 if (ret) {
5af447e5 2222 BT_LOGW("Cannot enqueue notification and automatic notifications.");
fa054faf
PP
2223 status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
2224 goto end;
2225 }
2226 break;
2227 default:
2228 /* Unknown non-error status */
0fbb9a9f 2229 abort();
3230ee6b 2230 }
41a2b7ae
PP
2231 }
2232
2233end:
3230ee6b
PP
2234 return status;
2235}
2236
2237enum bt_notification_iterator_status
2238bt_notification_iterator_next(struct bt_notification_iterator *iterator)
2239{
2240 enum bt_notification_iterator_status status;
2241
2242 if (!iterator) {
5af447e5 2243 BT_LOGW_STR("Invalid parameter: notification iterator is NULL.");
3230ee6b
PP
2244 status = BT_NOTIFICATION_ITERATOR_STATUS_INVALID;
2245 goto end;
2246 }
2247
5af447e5
PP
2248 BT_LOGD("Notification iterator's \"next\": iter-addr=%p", iterator);
2249
90157d89
PP
2250 switch (iterator->type) {
2251 case BT_NOTIFICATION_ITERATOR_TYPE_PRIVATE_CONNECTION:
2252 {
2253 struct bt_notification_iterator_private_connection *priv_conn_iter =
2254 (void *) iterator;
3230ee6b 2255
90157d89
PP
2256 /*
2257 * Make sure that the iterator's queue contains at least
2258 * one notification.
2259 */
2260 status = ensure_queue_has_notifications(priv_conn_iter);
2261 if (status != BT_NOTIFICATION_ITERATOR_STATUS_OK) {
2262 goto end;
2263 }
2264
2265 /*
2266 * Move the notification at the tail of the queue to the
2267 * iterator's current notification.
2268 */
2269 assert(priv_conn_iter->queue->length > 0);
2270 bt_put(priv_conn_iter->current_notification);
2271 priv_conn_iter->current_notification =
2272 g_queue_pop_tail(priv_conn_iter->queue);
2273 assert(priv_conn_iter->current_notification);
2274 break;
2275 }
2276 default:
2277 BT_LOGF("Unknown notification iterator type: addr=%p, type=%d",
2278 iterator, iterator->type);
2279 abort();
2280 }
3230ee6b
PP
2281
2282end:
2283 return status;
53d45b87
JG
2284}
2285
90157d89 2286struct bt_component *bt_private_connection_notification_iterator_get_component(
413bc2c4
JG
2287 struct bt_notification_iterator *iterator)
2288{
90157d89
PP
2289 struct bt_component *comp = NULL;
2290 struct bt_notification_iterator_private_connection *iter_priv_conn;
2291
2292 if (!iterator) {
2293 BT_LOGW_STR("Invalid parameter: notification iterator is NULL.");
2294 goto end;
2295 }
2296
2297 if (iterator->type != BT_NOTIFICATION_ITERATOR_TYPE_PRIVATE_CONNECTION) {
2298 BT_LOGW_STR("Invalid parameter: notification iterator was not created from a private connection.");
2299 goto end;
2300 }
2301
2302 iter_priv_conn = (void *) iterator;
2303 comp = bt_get(iter_priv_conn->upstream_component);
2304
2305end:
2306 return comp;
413bc2c4
JG
2307}
2308
91457551 2309struct bt_private_component *
90157d89
PP
2310bt_private_connection_private_notification_iterator_get_private_component(
2311 struct bt_private_connection_private_notification_iterator *private_iterator)
91457551
PP
2312{
2313 return bt_private_component_from_component(
90157d89
PP
2314 bt_private_connection_notification_iterator_get_component(
2315 (void *) bt_private_connection_notification_iterator_from_private(private_iterator)));
91457551 2316}
This page took 0.136711 seconds and 4 git commands to generate.