Fix compiler -Wall warnings (mostly incompatible enumerations)
[babeltrace.git] / src / plugins / utils / trimmer / trimmer.c
1 /*
2 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
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
24 #define BT_COMP_LOG_SELF_COMP (trimmer_comp->self_comp)
25 #define BT_LOG_OUTPUT_LEVEL (trimmer_comp->log_level)
26 #define BT_LOG_TAG "PLUGIN/FLT.UTILS.TRIMMER"
27 #include "plugins/comp-logging.h"
28
29 #include "compat/utc.h"
30 #include "compat/time.h"
31 #include <babeltrace2/babeltrace.h>
32 #include "common/common.h"
33 #include "common/assert.h"
34 #include <stdint.h>
35 #include <inttypes.h>
36 #include <glib.h>
37
38 #include "trimmer.h"
39
40 #define NS_PER_S INT64_C(1000000000)
41
42 static const char * const in_port_name = "in";
43
44 struct trimmer_time {
45 unsigned int hour, minute, second, ns;
46 };
47
48 struct trimmer_bound {
49 /*
50 * Nanoseconds from origin, valid if `is_set` is set and
51 * `is_infinite` is false.
52 */
53 int64_t ns_from_origin;
54
55 /* True if this bound's full time (`ns_from_origin`) is set */
56 bool is_set;
57
58 /*
59 * True if this bound represents the infinity (negative or
60 * positive depending on which bound it is). If this is true,
61 * then we don't care about `ns_from_origin` above.
62 */
63 bool is_infinite;
64
65 /*
66 * This bound's time without the date; this time is used to set
67 * `ns_from_origin` once we know the date.
68 */
69 struct trimmer_time time;
70 };
71
72 struct trimmer_comp {
73 struct trimmer_bound begin, end;
74 bool is_gmt;
75 bt_logging_level log_level;
76 bt_self_component *self_comp;
77 };
78
79 enum trimmer_iterator_state {
80 /*
81 * Find the first message's date and set the bounds's times
82 * accordingly.
83 */
84 TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN,
85
86 /*
87 * Initially seek to the trimming range's beginning time.
88 */
89 TRIMMER_ITERATOR_STATE_SEEK_INITIALLY,
90
91 /*
92 * Fill the output message queue for as long as received input
93 * messages are within the trimming time range.
94 */
95 TRIMMER_ITERATOR_STATE_TRIM,
96
97 /* Flush the remaining messages in the output message queue */
98 TRIMMER_ITERATOR_STATE_ENDING,
99
100 /* Trimming operation and message iterator is ended */
101 TRIMMER_ITERATOR_STATE_ENDED,
102 };
103
104 struct trimmer_iterator {
105 /* Weak */
106 struct trimmer_comp *trimmer_comp;
107
108 /* Weak */
109 bt_self_message_iterator *self_msg_iter;
110
111 enum trimmer_iterator_state state;
112
113 /* Owned by this */
114 bt_self_component_port_input_message_iterator *upstream_iter;
115 struct trimmer_bound begin, end;
116
117 /*
118 * Queue of `const bt_message *` (owned by the queue).
119 *
120 * This is where the trimming operation pushes the messages to
121 * output by this message iterator.
122 */
123 GQueue *output_messages;
124
125 /*
126 * Hash table of `bt_stream *` (weak) to
127 * `struct trimmer_iterator_stream_state *` (owned by the HT).
128 */
129 GHashTable *stream_states;
130 };
131
132 struct trimmer_iterator_stream_state {
133 /*
134 * True if the last pushed message for this stream was a stream
135 * activity end message.
136 */
137 bool last_msg_is_stream_activity_end;
138
139 /*
140 * Time to use for a generated stream end activity message when
141 * ending the stream.
142 */
143 int64_t stream_act_end_ns_from_origin;
144
145 /* Weak */
146 const bt_stream *stream;
147
148 /* Owned by this (`NULL` initially and between packets) */
149 const bt_packet *cur_packet;
150 };
151
152 static
153 void destroy_trimmer_comp(struct trimmer_comp *trimmer_comp)
154 {
155 BT_ASSERT(trimmer_comp);
156 g_free(trimmer_comp);
157 }
158
159 static
160 struct trimmer_comp *create_trimmer_comp(void)
161 {
162 return g_new0(struct trimmer_comp, 1);
163 }
164
165 BT_HIDDEN
166 void trimmer_finalize(bt_self_component_filter *self_comp)
167 {
168 struct trimmer_comp *trimmer_comp =
169 bt_self_component_get_data(
170 bt_self_component_filter_as_self_component(self_comp));
171
172 if (trimmer_comp) {
173 destroy_trimmer_comp(trimmer_comp);
174 }
175 }
176
177 /*
178 * Sets the time (in ns from origin) of a trimmer bound from date and
179 * time components.
180 *
181 * Returns a negative value if anything goes wrong.
182 */
183 static
184 int set_bound_ns_from_origin(struct trimmer_bound *bound,
185 unsigned int year, unsigned int month, unsigned int day,
186 unsigned int hour, unsigned int minute, unsigned int second,
187 unsigned int ns, bool is_gmt)
188 {
189 int ret = 0;
190 time_t result;
191 struct tm tm = {
192 .tm_sec = second,
193 .tm_min = minute,
194 .tm_hour = hour,
195 .tm_mday = day,
196 .tm_mon = month - 1,
197 .tm_year = year - 1900,
198 .tm_isdst = -1,
199 };
200
201 if (is_gmt) {
202 result = bt_timegm(&tm);
203 } else {
204 result = mktime(&tm);
205 }
206
207 if (result < 0) {
208 ret = -1;
209 goto end;
210 }
211
212 BT_ASSERT(bound);
213 bound->ns_from_origin = (int64_t) result;
214 bound->ns_from_origin *= NS_PER_S;
215 bound->ns_from_origin += ns;
216 bound->is_set = true;
217
218 end:
219 return ret;
220 }
221
222 /*
223 * Parses a timestamp, figuring out its format.
224 *
225 * Returns a negative value if anything goes wrong.
226 *
227 * Expected formats:
228 *
229 * YYYY-MM-DD hh:mm[:ss[.ns]]
230 * [hh:mm:]ss[.ns]
231 * [-]s[.ns]
232 *
233 * TODO: Check overflows.
234 */
235 static
236 int set_bound_from_str(struct trimmer_comp *trimmer_comp,
237 const char *str, struct trimmer_bound *bound, bool is_gmt)
238 {
239 int ret = 0;
240 int s_ret;
241 unsigned int year, month, day, hour, minute, second, ns;
242 char dummy;
243
244 /* Try `YYYY-MM-DD hh:mm:ss.ns` format */
245 s_ret = sscanf(str, "%u-%u-%u %u:%u:%u.%u%c", &year, &month, &day,
246 &hour, &minute, &second, &ns, &dummy);
247 if (s_ret == 7) {
248 ret = set_bound_ns_from_origin(bound, year, month, day,
249 hour, minute, second, ns, is_gmt);
250 goto end;
251 }
252
253 /* Try `YYYY-MM-DD hh:mm:ss` format */
254 s_ret = sscanf(str, "%u-%u-%u %u:%u:%u%c", &year, &month, &day,
255 &hour, &minute, &second, &dummy);
256 if (s_ret == 6) {
257 ret = set_bound_ns_from_origin(bound, year, month, day,
258 hour, minute, second, 0, is_gmt);
259 goto end;
260 }
261
262 /* Try `YYYY-MM-DD hh:mm` format */
263 s_ret = sscanf(str, "%u-%u-%u %u:%u%c", &year, &month, &day,
264 &hour, &minute, &dummy);
265 if (s_ret == 5) {
266 ret = set_bound_ns_from_origin(bound, year, month, day,
267 hour, minute, 0, 0, is_gmt);
268 goto end;
269 }
270
271 /* Try `YYYY-MM-DD` format */
272 s_ret = sscanf(str, "%u-%u-%u%c", &year, &month, &day, &dummy);
273 if (s_ret == 3) {
274 ret = set_bound_ns_from_origin(bound, year, month, day,
275 0, 0, 0, 0, is_gmt);
276 goto end;
277 }
278
279 /* Try `hh:mm:ss.ns` format */
280 s_ret = sscanf(str, "%u:%u:%u.%u%c", &hour, &minute, &second, &ns,
281 &dummy);
282 if (s_ret == 4) {
283 bound->time.hour = hour;
284 bound->time.minute = minute;
285 bound->time.second = second;
286 bound->time.ns = ns;
287 goto end;
288 }
289
290 /* Try `hh:mm:ss` format */
291 s_ret = sscanf(str, "%u:%u:%u%c", &hour, &minute, &second, &dummy);
292 if (s_ret == 3) {
293 bound->time.hour = hour;
294 bound->time.minute = minute;
295 bound->time.second = second;
296 bound->time.ns = 0;
297 goto end;
298 }
299
300 /* Try `-s.ns` format */
301 s_ret = sscanf(str, "-%u.%u%c", &second, &ns, &dummy);
302 if (s_ret == 2) {
303 bound->ns_from_origin = -((int64_t) second) * NS_PER_S;
304 bound->ns_from_origin -= (int64_t) ns;
305 bound->is_set = true;
306 goto end;
307 }
308
309 /* Try `s.ns` format */
310 s_ret = sscanf(str, "%u.%u%c", &second, &ns, &dummy);
311 if (s_ret == 2) {
312 bound->ns_from_origin = ((int64_t) second) * NS_PER_S;
313 bound->ns_from_origin += (int64_t) ns;
314 bound->is_set = true;
315 goto end;
316 }
317
318 /* Try `-s` format */
319 s_ret = sscanf(str, "-%u%c", &second, &dummy);
320 if (s_ret == 1) {
321 bound->ns_from_origin = -((int64_t) second) * NS_PER_S;
322 bound->is_set = true;
323 goto end;
324 }
325
326 /* Try `s` format */
327 s_ret = sscanf(str, "%u%c", &second, &dummy);
328 if (s_ret == 1) {
329 bound->ns_from_origin = (int64_t) second * NS_PER_S;
330 bound->is_set = true;
331 goto end;
332 }
333
334 BT_COMP_LOGE("Invalid date/time format: param=\"%s\"", str);
335 ret = -1;
336
337 end:
338 return ret;
339 }
340
341 /*
342 * Sets a trimmer bound's properties from a parameter string/integer
343 * value.
344 *
345 * Returns a negative value if anything goes wrong.
346 */
347 static
348 int set_bound_from_param(struct trimmer_comp *trimmer_comp,
349 const char *param_name, const bt_value *param,
350 struct trimmer_bound *bound, bool is_gmt)
351 {
352 int ret;
353 const char *arg;
354 char tmp_arg[64];
355
356 if (bt_value_is_signed_integer(param)) {
357 int64_t value = bt_value_signed_integer_get(param);
358
359 /*
360 * Just convert it to a temporary string to handle
361 * everything the same way.
362 */
363 sprintf(tmp_arg, "%" PRId64, value);
364 arg = tmp_arg;
365 } else if (bt_value_is_string(param)) {
366 arg = bt_value_string_get(param);
367 } else {
368 BT_COMP_LOGE("`%s` parameter must be an integer or a string value.",
369 param_name);
370 ret = -1;
371 goto end;
372 }
373
374 ret = set_bound_from_str(trimmer_comp, arg, bound, is_gmt);
375
376 end:
377 return ret;
378 }
379
380 static
381 int validate_trimmer_bounds(struct trimmer_comp *trimmer_comp,
382 struct trimmer_bound *begin, struct trimmer_bound *end)
383 {
384 int ret = 0;
385
386 BT_ASSERT(begin->is_set);
387 BT_ASSERT(end->is_set);
388
389 if (!begin->is_infinite && !end->is_infinite &&
390 begin->ns_from_origin > end->ns_from_origin) {
391 BT_COMP_LOGE("Trimming time range's beginning time is greater than end time: "
392 "begin-ns-from-origin=%" PRId64 ", "
393 "end-ns-from-origin=%" PRId64,
394 begin->ns_from_origin,
395 end->ns_from_origin);
396 ret = -1;
397 goto end;
398 }
399
400 if (!begin->is_infinite && begin->ns_from_origin == INT64_MIN) {
401 BT_COMP_LOGE("Invalid trimming time range's beginning time: "
402 "ns-from-origin=%" PRId64,
403 begin->ns_from_origin);
404 ret = -1;
405 goto end;
406 }
407
408 if (!end->is_infinite && end->ns_from_origin == INT64_MIN) {
409 BT_COMP_LOGE("Invalid trimming time range's end time: "
410 "ns-from-origin=%" PRId64,
411 end->ns_from_origin);
412 ret = -1;
413 goto end;
414 }
415
416 end:
417 return ret;
418 }
419
420 static
421 int init_trimmer_comp_from_params(struct trimmer_comp *trimmer_comp,
422 const bt_value *params)
423 {
424 const bt_value *value;
425 int ret = 0;
426
427 BT_ASSERT(params);
428 value = bt_value_map_borrow_entry_value_const(params, "gmt");
429 if (value) {
430 trimmer_comp->is_gmt = (bool) bt_value_bool_get(value);
431 }
432
433 value = bt_value_map_borrow_entry_value_const(params, "begin");
434 if (value) {
435 if (set_bound_from_param(trimmer_comp, "begin", value,
436 &trimmer_comp->begin, trimmer_comp->is_gmt)) {
437 /* set_bound_from_param() logs errors */
438 ret = -1;
439 goto end;
440 }
441 } else {
442 trimmer_comp->begin.is_infinite = true;
443 trimmer_comp->begin.is_set = true;
444 }
445
446 value = bt_value_map_borrow_entry_value_const(params, "end");
447 if (value) {
448 if (set_bound_from_param(trimmer_comp, "end", value,
449 &trimmer_comp->end, trimmer_comp->is_gmt)) {
450 /* set_bound_from_param() logs errors */
451 ret = -1;
452 goto end;
453 }
454 } else {
455 trimmer_comp->end.is_infinite = true;
456 trimmer_comp->end.is_set = true;
457 }
458
459 end:
460 if (trimmer_comp->begin.is_set && trimmer_comp->end.is_set) {
461 /* validate_trimmer_bounds() logs errors */
462 ret = validate_trimmer_bounds(trimmer_comp,
463 &trimmer_comp->begin, &trimmer_comp->end);
464 }
465
466 return ret;
467 }
468
469 bt_component_class_init_method_status trimmer_init(
470 bt_self_component_filter *self_comp_flt,
471 const bt_value *params, void *init_data)
472 {
473 int ret;
474 bt_component_class_init_method_status status =
475 BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
476 bt_self_component_add_port_status add_port_status;
477 struct trimmer_comp *trimmer_comp = create_trimmer_comp();
478 bt_self_component *self_comp =
479 bt_self_component_filter_as_self_component(self_comp_flt);
480 if (!trimmer_comp) {
481 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
482 goto error;
483 }
484
485 trimmer_comp->log_level = bt_component_get_logging_level(
486 bt_self_component_as_component(self_comp));
487 trimmer_comp->self_comp = self_comp;
488 add_port_status = bt_self_component_filter_add_input_port(
489 self_comp_flt, in_port_name, NULL, NULL);
490 switch (add_port_status) {
491 case BT_SELF_COMPONENT_ADD_PORT_STATUS_ERROR:
492 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
493 goto error;
494 case BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR:
495 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
496 goto error;
497 default:
498 break;
499 }
500
501 add_port_status = bt_self_component_filter_add_output_port(
502 self_comp_flt, "out", NULL, NULL);
503 switch (add_port_status) {
504 case BT_SELF_COMPONENT_ADD_PORT_STATUS_ERROR:
505 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
506 goto error;
507 case BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR:
508 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
509 goto error;
510 default:
511 break;
512 }
513
514 ret = init_trimmer_comp_from_params(trimmer_comp, params);
515 if (ret) {
516 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
517 goto error;
518 }
519
520 bt_self_component_set_data(self_comp, trimmer_comp);
521 goto end;
522
523 error:
524 if (status == BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK) {
525 status = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
526 }
527
528 if (trimmer_comp) {
529 destroy_trimmer_comp(trimmer_comp);
530 }
531
532 end:
533 return status;
534 }
535
536 static
537 void destroy_trimmer_iterator(struct trimmer_iterator *trimmer_it)
538 {
539 BT_ASSERT(trimmer_it);
540 bt_self_component_port_input_message_iterator_put_ref(
541 trimmer_it->upstream_iter);
542
543 if (trimmer_it->output_messages) {
544 g_queue_free(trimmer_it->output_messages);
545 }
546
547 if (trimmer_it->stream_states) {
548 g_hash_table_destroy(trimmer_it->stream_states);
549 }
550
551 g_free(trimmer_it);
552 }
553
554 static
555 void destroy_trimmer_iterator_stream_state(
556 struct trimmer_iterator_stream_state *sstate)
557 {
558 BT_ASSERT(sstate);
559 BT_PACKET_PUT_REF_AND_RESET(sstate->cur_packet);
560 g_free(sstate);
561 }
562
563 BT_HIDDEN
564 bt_component_class_message_iterator_init_method_status trimmer_msg_iter_init(
565 bt_self_message_iterator *self_msg_iter,
566 bt_self_component_filter *self_comp,
567 bt_self_component_port_output *port)
568 {
569 bt_component_class_message_iterator_init_method_status status =
570 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_OK;
571 struct trimmer_iterator *trimmer_it;
572
573 trimmer_it = g_new0(struct trimmer_iterator, 1);
574 if (!trimmer_it) {
575 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_MEMORY_ERROR;
576 goto end;
577 }
578
579 trimmer_it->trimmer_comp = bt_self_component_get_data(
580 bt_self_component_filter_as_self_component(self_comp));
581 BT_ASSERT(trimmer_it->trimmer_comp);
582
583 if (trimmer_it->trimmer_comp->begin.is_set &&
584 trimmer_it->trimmer_comp->end.is_set) {
585 /*
586 * Both trimming time range's bounds are set, so skip
587 * the
588 * `TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN`
589 * phase.
590 */
591 trimmer_it->state = TRIMMER_ITERATOR_STATE_SEEK_INITIALLY;
592 }
593
594 trimmer_it->begin = trimmer_it->trimmer_comp->begin;
595 trimmer_it->end = trimmer_it->trimmer_comp->end;
596 trimmer_it->upstream_iter =
597 bt_self_component_port_input_message_iterator_create(
598 bt_self_component_filter_borrow_input_port_by_name(
599 self_comp, in_port_name));
600 if (!trimmer_it->upstream_iter) {
601 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_ERROR;
602 goto end;
603 }
604
605 trimmer_it->output_messages = g_queue_new();
606 if (!trimmer_it->output_messages) {
607 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_MEMORY_ERROR;
608 goto end;
609 }
610
611 trimmer_it->stream_states = g_hash_table_new_full(g_direct_hash,
612 g_direct_equal, NULL,
613 (GDestroyNotify) destroy_trimmer_iterator_stream_state);
614 if (!trimmer_it->stream_states) {
615 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_MEMORY_ERROR;
616 goto end;
617 }
618
619 trimmer_it->self_msg_iter = self_msg_iter;
620 bt_self_message_iterator_set_data(self_msg_iter, trimmer_it);
621
622 end:
623 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INIT_METHOD_STATUS_OK && trimmer_it) {
624 destroy_trimmer_iterator(trimmer_it);
625 }
626
627 return status;
628 }
629
630 static inline
631 int get_msg_ns_from_origin(const bt_message *msg, int64_t *ns_from_origin,
632 bool *skip)
633 {
634 const bt_clock_class *clock_class = NULL;
635 const bt_clock_snapshot *clock_snapshot = NULL;
636 bt_message_stream_activity_clock_snapshot_state sa_cs_state;
637 int ret = 0;
638
639 BT_ASSERT(msg);
640 BT_ASSERT(ns_from_origin);
641 BT_ASSERT(skip);
642
643 switch (bt_message_get_type(msg)) {
644 case BT_MESSAGE_TYPE_EVENT:
645 clock_class =
646 bt_message_event_borrow_stream_class_default_clock_class_const(
647 msg);
648 if (G_UNLIKELY(!clock_class)) {
649 goto error;
650 }
651
652 clock_snapshot = bt_message_event_borrow_default_clock_snapshot_const(
653 msg);
654 break;
655 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
656 clock_class =
657 bt_message_packet_beginning_borrow_stream_class_default_clock_class_const(
658 msg);
659 if (G_UNLIKELY(!clock_class)) {
660 goto error;
661 }
662
663 clock_snapshot = bt_message_packet_beginning_borrow_default_clock_snapshot_const(
664 msg);
665 break;
666 case BT_MESSAGE_TYPE_PACKET_END:
667 clock_class =
668 bt_message_packet_end_borrow_stream_class_default_clock_class_const(
669 msg);
670 if (G_UNLIKELY(!clock_class)) {
671 goto error;
672 }
673
674 clock_snapshot = bt_message_packet_end_borrow_default_clock_snapshot_const(
675 msg);
676 break;
677 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
678 clock_class =
679 bt_message_discarded_events_borrow_stream_class_default_clock_class_const(
680 msg);
681 if (G_UNLIKELY(!clock_class)) {
682 goto error;
683 }
684
685 clock_snapshot = bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
686 msg);
687 break;
688 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
689 clock_class =
690 bt_message_discarded_packets_borrow_stream_class_default_clock_class_const(
691 msg);
692 if (G_UNLIKELY(!clock_class)) {
693 goto error;
694 }
695
696 clock_snapshot = bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
697 msg);
698 break;
699 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
700 clock_class =
701 bt_message_stream_activity_beginning_borrow_stream_class_default_clock_class_const(
702 msg);
703 if (G_UNLIKELY(!clock_class)) {
704 goto error;
705 }
706
707 sa_cs_state = bt_message_stream_activity_beginning_borrow_default_clock_snapshot_const(
708 msg, &clock_snapshot);
709 if (sa_cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN ||
710 sa_cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE) {
711 /* Lowest possible time to always include them */
712 *ns_from_origin = INT64_MIN;
713 goto no_clock_snapshot;
714 }
715
716 break;
717 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
718 clock_class =
719 bt_message_stream_activity_end_borrow_stream_class_default_clock_class_const(
720 msg);
721 if (G_UNLIKELY(!clock_class)) {
722 goto error;
723 }
724
725 sa_cs_state = bt_message_stream_activity_end_borrow_default_clock_snapshot_const(
726 msg, &clock_snapshot);
727 if (sa_cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_UNKNOWN) {
728 /* Lowest time to always include it */
729 *ns_from_origin = INT64_MIN;
730 goto no_clock_snapshot;
731 } else if (sa_cs_state == BT_MESSAGE_STREAM_ACTIVITY_CLOCK_SNAPSHOT_STATE_INFINITE) {
732 /* Greatest time to always exclude it */
733 *ns_from_origin = INT64_MAX;
734 goto no_clock_snapshot;
735 }
736
737 break;
738 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
739 clock_snapshot =
740 bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
741 msg);
742 break;
743 default:
744 goto no_clock_snapshot;
745 }
746
747 ret = bt_clock_snapshot_get_ns_from_origin(clock_snapshot,
748 ns_from_origin);
749 if (G_UNLIKELY(ret)) {
750 goto error;
751 }
752
753 goto end;
754
755 no_clock_snapshot:
756 *skip = true;
757 goto end;
758
759 error:
760 ret = -1;
761
762 end:
763 return ret;
764 }
765
766 static inline
767 void put_messages(bt_message_array_const msgs, uint64_t count)
768 {
769 uint64_t i;
770
771 for (i = 0; i < count; i++) {
772 BT_MESSAGE_PUT_REF_AND_RESET(msgs[i]);
773 }
774 }
775
776 static inline
777 int set_trimmer_iterator_bound(struct trimmer_iterator *trimmer_it,
778 struct trimmer_bound *bound, int64_t ns_from_origin,
779 bool is_gmt)
780 {
781 struct trimmer_comp *trimmer_comp = trimmer_it->trimmer_comp;
782 struct tm tm;
783 time_t time_seconds = (time_t) (ns_from_origin / NS_PER_S);
784 int ret = 0;
785
786 BT_ASSERT(!bound->is_set);
787 errno = 0;
788
789 /* We only need to extract the date from this time */
790 if (is_gmt) {
791 bt_gmtime_r(&time_seconds, &tm);
792 } else {
793 bt_localtime_r(&time_seconds, &tm);
794 }
795
796 if (errno) {
797 BT_COMP_LOGE_ERRNO("Cannot convert timestamp to date and time",
798 "ts=%" PRId64, (int64_t) time_seconds);
799 ret = -1;
800 goto end;
801 }
802
803 ret = set_bound_ns_from_origin(bound, tm.tm_year + 1900, tm.tm_mon + 1,
804 tm.tm_mday, bound->time.hour, bound->time.minute,
805 bound->time.second, bound->time.ns, is_gmt);
806
807 end:
808 return ret;
809 }
810
811 static
812 bt_component_class_message_iterator_next_method_status
813 state_set_trimmer_iterator_bounds(
814 struct trimmer_iterator *trimmer_it)
815 {
816 bt_message_iterator_next_status upstream_iter_status =
817 BT_MESSAGE_ITERATOR_NEXT_STATUS_OK;
818 struct trimmer_comp *trimmer_comp = trimmer_it->trimmer_comp;
819 bt_message_array_const msgs;
820 uint64_t count = 0;
821 int64_t ns_from_origin = INT64_MIN;
822 uint64_t i;
823 int ret;
824
825 BT_ASSERT(!trimmer_it->begin.is_set ||
826 !trimmer_it->end.is_set);
827
828 while (true) {
829 upstream_iter_status =
830 bt_self_component_port_input_message_iterator_next(
831 trimmer_it->upstream_iter, &msgs, &count);
832 if (upstream_iter_status != BT_MESSAGE_ITERATOR_NEXT_STATUS_OK) {
833 goto end;
834 }
835
836 for (i = 0; i < count; i++) {
837 const bt_message *msg = msgs[i];
838 bool skip = false;
839 int ret;
840
841 ret = get_msg_ns_from_origin(msg, &ns_from_origin,
842 &skip);
843 if (ret) {
844 goto error;
845 }
846
847 if (skip) {
848 continue;
849 }
850
851 BT_ASSERT(ns_from_origin != INT64_MIN &&
852 ns_from_origin != INT64_MAX);
853 put_messages(msgs, count);
854 goto found;
855 }
856
857 put_messages(msgs, count);
858 }
859
860 found:
861 if (!trimmer_it->begin.is_set) {
862 BT_ASSERT(!trimmer_it->begin.is_infinite);
863 ret = set_trimmer_iterator_bound(trimmer_it, &trimmer_it->begin,
864 ns_from_origin, trimmer_comp->is_gmt);
865 if (ret) {
866 goto error;
867 }
868 }
869
870 if (!trimmer_it->end.is_set) {
871 BT_ASSERT(!trimmer_it->end.is_infinite);
872 ret = set_trimmer_iterator_bound(trimmer_it, &trimmer_it->end,
873 ns_from_origin, trimmer_comp->is_gmt);
874 if (ret) {
875 goto error;
876 }
877 }
878
879 ret = validate_trimmer_bounds(trimmer_it->trimmer_comp,
880 &trimmer_it->begin, &trimmer_it->end);
881 if (ret) {
882 goto error;
883 }
884
885 goto end;
886
887 error:
888 put_messages(msgs, count);
889 upstream_iter_status = BT_MESSAGE_ITERATOR_NEXT_STATUS_ERROR;
890
891 end:
892 return (int) upstream_iter_status;
893 }
894
895 static
896 bt_component_class_message_iterator_next_method_status state_seek_initially(
897 struct trimmer_iterator *trimmer_it)
898 {
899 struct trimmer_comp *trimmer_comp = trimmer_it->trimmer_comp;
900 bt_component_class_message_iterator_next_method_status status =
901 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
902
903 BT_ASSERT(trimmer_it->begin.is_set);
904
905 if (trimmer_it->begin.is_infinite) {
906 if (!bt_self_component_port_input_message_iterator_can_seek_beginning(
907 trimmer_it->upstream_iter)) {
908 BT_COMP_LOGE_STR("Cannot make upstream message iterator initially seek its beginning.");
909 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
910 goto end;
911 }
912
913 status = (int) bt_self_component_port_input_message_iterator_seek_beginning(
914 trimmer_it->upstream_iter);
915 } else {
916 if (!bt_self_component_port_input_message_iterator_can_seek_ns_from_origin(
917 trimmer_it->upstream_iter,
918 trimmer_it->begin.ns_from_origin)) {
919 BT_COMP_LOGE("Cannot make upstream message iterator initially seek: "
920 "seek-ns-from-origin=%" PRId64,
921 trimmer_it->begin.ns_from_origin);
922 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
923 goto end;
924 }
925
926 status = (int) bt_self_component_port_input_message_iterator_seek_ns_from_origin(
927 trimmer_it->upstream_iter, trimmer_it->begin.ns_from_origin);
928 }
929
930 if (status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
931 trimmer_it->state = TRIMMER_ITERATOR_STATE_TRIM;
932 }
933
934 end:
935 return status;
936 }
937
938 static inline
939 void push_message(struct trimmer_iterator *trimmer_it, const bt_message *msg)
940 {
941 g_queue_push_head(trimmer_it->output_messages, (void *) msg);
942 }
943
944 static inline
945 const bt_message *pop_message(struct trimmer_iterator *trimmer_it)
946 {
947 return g_queue_pop_tail(trimmer_it->output_messages);
948 }
949
950 static inline
951 int clock_raw_value_from_ns_from_origin(const bt_clock_class *clock_class,
952 int64_t ns_from_origin, uint64_t *raw_value)
953 {
954
955 int64_t cc_offset_s;
956 uint64_t cc_offset_cycles;
957 uint64_t cc_freq;
958
959 bt_clock_class_get_offset(clock_class, &cc_offset_s, &cc_offset_cycles);
960 cc_freq = bt_clock_class_get_frequency(clock_class);
961 return bt_common_clock_value_from_ns_from_origin(cc_offset_s,
962 cc_offset_cycles, cc_freq, ns_from_origin, raw_value);
963 }
964
965 static inline
966 bt_component_class_message_iterator_next_method_status
967 end_stream(struct trimmer_iterator *trimmer_it,
968 struct trimmer_iterator_stream_state *sstate)
969 {
970 bt_component_class_message_iterator_next_method_status status =
971 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
972 uint64_t raw_value;
973 const bt_clock_class *clock_class;
974 int ret;
975 bt_message *msg = NULL;
976
977 BT_ASSERT(!trimmer_it->end.is_infinite);
978
979 if (!sstate->stream) {
980 goto end;
981 }
982
983 if (sstate->cur_packet) {
984 /*
985 * The last message could not have been a stream
986 * activity end message if we have a current packet.
987 */
988 BT_ASSERT(!sstate->last_msg_is_stream_activity_end);
989
990 /*
991 * Create and push a packet end message, making its time
992 * the trimming range's end time.
993 */
994 clock_class = bt_stream_class_borrow_default_clock_class_const(
995 bt_stream_borrow_class_const(sstate->stream));
996 BT_ASSERT(clock_class);
997 ret = clock_raw_value_from_ns_from_origin(clock_class,
998 trimmer_it->end.ns_from_origin, &raw_value);
999 if (ret) {
1000 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1001 goto end;
1002 }
1003
1004 msg = bt_message_packet_end_create_with_default_clock_snapshot(
1005 trimmer_it->self_msg_iter, sstate->cur_packet,
1006 raw_value);
1007 if (!msg) {
1008 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
1009 goto end;
1010 }
1011
1012 push_message(trimmer_it, msg);
1013 msg = NULL;
1014 BT_PACKET_PUT_REF_AND_RESET(sstate->cur_packet);
1015
1016 /*
1017 * Because we generated a packet end message, set the
1018 * stream activity end message's time to use to the
1019 * trimming range's end time (this packet end message's
1020 * time).
1021 */
1022 sstate->stream_act_end_ns_from_origin =
1023 trimmer_it->end.ns_from_origin;
1024 }
1025
1026 if (!sstate->last_msg_is_stream_activity_end) {
1027 /* Create and push a stream activity end message */
1028 msg = bt_message_stream_activity_end_create(
1029 trimmer_it->self_msg_iter, sstate->stream);
1030 if (!msg) {
1031 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
1032 goto end;
1033 }
1034
1035 clock_class = bt_stream_class_borrow_default_clock_class_const(
1036 bt_stream_borrow_class_const(sstate->stream));
1037 BT_ASSERT(clock_class);
1038
1039 if (sstate->stream_act_end_ns_from_origin == INT64_MIN) {
1040 /*
1041 * We received at least what is necessary to
1042 * have a stream state (stream beginning and
1043 * stream activity beginning messages), but
1044 * nothing else: use the trimmer range's end
1045 * time.
1046 */
1047 sstate->stream_act_end_ns_from_origin =
1048 trimmer_it->end.ns_from_origin;
1049 }
1050
1051 ret = clock_raw_value_from_ns_from_origin(clock_class,
1052 sstate->stream_act_end_ns_from_origin, &raw_value);
1053 if (ret) {
1054 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1055 goto end;
1056 }
1057
1058 bt_message_stream_activity_end_set_default_clock_snapshot(
1059 msg, raw_value);
1060 push_message(trimmer_it, msg);
1061 msg = NULL;
1062 }
1063
1064 /* Create and push a stream end message */
1065 msg = bt_message_stream_end_create(trimmer_it->self_msg_iter,
1066 sstate->stream);
1067 if (!msg) {
1068 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
1069 goto end;
1070 }
1071
1072 push_message(trimmer_it, msg);
1073 msg = NULL;
1074
1075 /*
1076 * Just to make sure that we don't use this stream state again
1077 * in the future without an obvious error.
1078 */
1079 sstate->stream = NULL;
1080
1081 end:
1082 bt_message_put_ref(msg);
1083 return status;
1084 }
1085
1086 static inline
1087 bt_component_class_message_iterator_next_method_status end_iterator_streams(
1088 struct trimmer_iterator *trimmer_it)
1089 {
1090 bt_component_class_message_iterator_next_method_status status =
1091 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1092 GHashTableIter iter;
1093 gpointer key, sstate;
1094
1095 if (trimmer_it->end.is_infinite) {
1096 /*
1097 * An infinite trimming range's end time guarantees that
1098 * we received (and pushed) all the appropriate end
1099 * messages.
1100 */
1101 goto remove_all;
1102 }
1103
1104 /*
1105 * End each stream and then remove them from the hash table of
1106 * stream states to release unneeded references.
1107 */
1108 g_hash_table_iter_init(&iter, trimmer_it->stream_states);
1109
1110 while (g_hash_table_iter_next(&iter, &key, &sstate)) {
1111 status = end_stream(trimmer_it, sstate);
1112 if (status) {
1113 goto end;
1114 }
1115 }
1116
1117 remove_all:
1118 g_hash_table_remove_all(trimmer_it->stream_states);
1119
1120 end:
1121 return status;
1122 }
1123
1124 /*
1125 * Handles a message which is associated to a given stream state. This
1126 * _could_ make the iterator's output message queue grow; this could
1127 * also consume the message without pushing anything to this queue, only
1128 * modifying the stream state.
1129 *
1130 * This function consumes the `msg` reference, _whatever the outcome_.
1131 *
1132 * `ns_from_origin` is the message's time, as given by
1133 * get_msg_ns_from_origin().
1134 *
1135 * This function sets `reached_end` if handling this message made the
1136 * iterator reach the end of the trimming range. Note that the output
1137 * message queue could contain messages even if this function sets
1138 * `reached_end`.
1139 */
1140 static inline
1141 bt_component_class_message_iterator_next_method_status
1142 handle_message_with_stream_state(
1143 struct trimmer_iterator *trimmer_it, const bt_message *msg,
1144 struct trimmer_iterator_stream_state *sstate,
1145 int64_t ns_from_origin, bool *reached_end)
1146 {
1147 bt_component_class_message_iterator_next_method_status status =
1148 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1149 bt_message_type msg_type = bt_message_get_type(msg);
1150 int ret;
1151
1152 switch (msg_type) {
1153 case BT_MESSAGE_TYPE_EVENT:
1154 if (G_UNLIKELY(!trimmer_it->end.is_infinite &&
1155 ns_from_origin > trimmer_it->end.ns_from_origin)) {
1156 status = end_iterator_streams(trimmer_it);
1157 *reached_end = true;
1158 break;
1159 }
1160
1161 BT_ASSERT(sstate->cur_packet);
1162 push_message(trimmer_it, msg);
1163 msg = NULL;
1164 break;
1165 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
1166 if (G_UNLIKELY(!trimmer_it->end.is_infinite &&
1167 ns_from_origin > trimmer_it->end.ns_from_origin)) {
1168 status = end_iterator_streams(trimmer_it);
1169 *reached_end = true;
1170 break;
1171 }
1172
1173 BT_ASSERT(!sstate->cur_packet);
1174 sstate->cur_packet =
1175 bt_message_packet_beginning_borrow_packet_const(msg);
1176 bt_packet_get_ref(sstate->cur_packet);
1177 push_message(trimmer_it, msg);
1178 msg = NULL;
1179 break;
1180 case BT_MESSAGE_TYPE_PACKET_END:
1181 sstate->stream_act_end_ns_from_origin = ns_from_origin;
1182
1183 if (G_UNLIKELY(!trimmer_it->end.is_infinite &&
1184 ns_from_origin > trimmer_it->end.ns_from_origin)) {
1185 status = end_iterator_streams(trimmer_it);
1186 *reached_end = true;
1187 break;
1188 }
1189
1190 BT_ASSERT(sstate->cur_packet);
1191 BT_PACKET_PUT_REF_AND_RESET(sstate->cur_packet);
1192 push_message(trimmer_it, msg);
1193 msg = NULL;
1194 break;
1195 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1196 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1197 {
1198 /*
1199 * `ns_from_origin` is the message's time range's
1200 * beginning time here.
1201 */
1202 int64_t end_ns_from_origin;
1203 const bt_clock_snapshot *end_cs;
1204
1205 if (bt_message_get_type(msg) ==
1206 BT_MESSAGE_TYPE_DISCARDED_EVENTS) {
1207 /*
1208 * Safe to ignore the return value because we
1209 * know there's a default clock and it's always
1210 * known.
1211 */
1212 end_cs = bt_message_discarded_events_borrow_end_default_clock_snapshot_const(
1213 msg);
1214 } else {
1215 /*
1216 * Safe to ignore the return value because we
1217 * know there's a default clock and it's always
1218 * known.
1219 */
1220 end_cs = bt_message_discarded_packets_borrow_end_default_clock_snapshot_const(
1221 msg);
1222 }
1223
1224 if (bt_clock_snapshot_get_ns_from_origin(end_cs,
1225 &end_ns_from_origin)) {
1226 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1227 goto end;
1228 }
1229
1230 sstate->stream_act_end_ns_from_origin = end_ns_from_origin;
1231
1232 if (!trimmer_it->end.is_infinite &&
1233 ns_from_origin > trimmer_it->end.ns_from_origin) {
1234 status = end_iterator_streams(trimmer_it);
1235 *reached_end = true;
1236 break;
1237 }
1238
1239 if (!trimmer_it->end.is_infinite &&
1240 end_ns_from_origin > trimmer_it->end.ns_from_origin) {
1241 /*
1242 * This message's end time is outside the
1243 * trimming time range: replace it with a new
1244 * message having an end time equal to the
1245 * trimming time range's end and without a
1246 * count.
1247 */
1248 const bt_clock_class *clock_class =
1249 bt_clock_snapshot_borrow_clock_class_const(
1250 end_cs);
1251 const bt_clock_snapshot *begin_cs;
1252 bt_message *new_msg;
1253 uint64_t end_raw_value;
1254
1255 ret = clock_raw_value_from_ns_from_origin(clock_class,
1256 trimmer_it->end.ns_from_origin, &end_raw_value);
1257 if (ret) {
1258 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1259 goto end;
1260 }
1261
1262 if (msg_type == BT_MESSAGE_TYPE_DISCARDED_EVENTS) {
1263 begin_cs = bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
1264 msg);
1265 new_msg = bt_message_discarded_events_create_with_default_clock_snapshots(
1266 trimmer_it->self_msg_iter,
1267 sstate->stream,
1268 bt_clock_snapshot_get_value(begin_cs),
1269 end_raw_value);
1270 } else {
1271 begin_cs = bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
1272 msg);
1273 new_msg = bt_message_discarded_packets_create_with_default_clock_snapshots(
1274 trimmer_it->self_msg_iter,
1275 sstate->stream,
1276 bt_clock_snapshot_get_value(begin_cs),
1277 end_raw_value);
1278 }
1279
1280 if (!new_msg) {
1281 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
1282 goto end;
1283 }
1284
1285 /* Replace the original message */
1286 BT_MESSAGE_MOVE_REF(msg, new_msg);
1287 }
1288
1289 push_message(trimmer_it, msg);
1290 msg = NULL;
1291 break;
1292 }
1293 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
1294 if (!trimmer_it->end.is_infinite &&
1295 ns_from_origin > trimmer_it->end.ns_from_origin) {
1296 /*
1297 * This only happens when the message's time is
1298 * known and is greater than the trimming
1299 * range's end time. Unknown and -inf times are
1300 * always less than
1301 * `trimmer_it->end.ns_from_origin`.
1302 */
1303 status = end_iterator_streams(trimmer_it);
1304 *reached_end = true;
1305 break;
1306 }
1307
1308 push_message(trimmer_it, msg);
1309 msg = NULL;
1310 break;
1311 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
1312 if (trimmer_it->end.is_infinite) {
1313 push_message(trimmer_it, msg);
1314 msg = NULL;
1315 break;
1316 }
1317
1318 if (ns_from_origin == INT64_MIN) {
1319 /* Unknown: consider it to be in the trimmer window. */
1320 push_message(trimmer_it, msg);
1321 msg = NULL;
1322 sstate->last_msg_is_stream_activity_end = true;
1323 } else if (ns_from_origin == INT64_MAX) {
1324 /* Infinite: use trimming range's end time */
1325 sstate->stream_act_end_ns_from_origin =
1326 trimmer_it->end.ns_from_origin;
1327 } else {
1328 /* Known: check if outside of trimming range */
1329 if (ns_from_origin > trimmer_it->end.ns_from_origin) {
1330 sstate->stream_act_end_ns_from_origin =
1331 trimmer_it->end.ns_from_origin;
1332 status = end_iterator_streams(trimmer_it);
1333 *reached_end = true;
1334 break;
1335 }
1336
1337 push_message(trimmer_it, msg);
1338 msg = NULL;
1339 sstate->last_msg_is_stream_activity_end = true;
1340 sstate->stream_act_end_ns_from_origin = ns_from_origin;
1341 }
1342
1343 break;
1344 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
1345 push_message(trimmer_it, msg);
1346 msg = NULL;
1347 break;
1348 case BT_MESSAGE_TYPE_STREAM_END:
1349 /*
1350 * This is the end of a stream: end this
1351 * stream if its stream activity end message
1352 * time is not the trimming range's end time
1353 * (which means the final stream activity end
1354 * message had an infinite time). end_stream()
1355 * will generate its own stream end message.
1356 */
1357 if (trimmer_it->end.is_infinite) {
1358 push_message(trimmer_it, msg);
1359 msg = NULL;
1360
1361 /* We won't need this stream state again */
1362 g_hash_table_remove(trimmer_it->stream_states, sstate->stream);
1363 } else if (sstate->stream_act_end_ns_from_origin <
1364 trimmer_it->end.ns_from_origin) {
1365 status = end_stream(trimmer_it, sstate);
1366 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1367 goto end;
1368 }
1369
1370 /* We won't need this stream state again */
1371 g_hash_table_remove(trimmer_it->stream_states, sstate->stream);
1372 }
1373 break;
1374 default:
1375 break;
1376 }
1377
1378 end:
1379 /* We release the message's reference whatever the outcome */
1380 bt_message_put_ref(msg);
1381 return BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1382 }
1383
1384 /*
1385 * Handles an input message. This _could_ make the iterator's output
1386 * message queue grow; this could also consume the message without
1387 * pushing anything to this queue, only modifying the stream state.
1388 *
1389 * This function consumes the `msg` reference, _whatever the outcome_.
1390 *
1391 * This function sets `reached_end` if handling this message made the
1392 * iterator reach the end of the trimming range. Note that the output
1393 * message queue could contain messages even if this function sets
1394 * `reached_end`.
1395 */
1396 static inline
1397 bt_component_class_message_iterator_next_method_status handle_message(
1398 struct trimmer_iterator *trimmer_it, const bt_message *msg,
1399 bool *reached_end)
1400 {
1401 bt_component_class_message_iterator_next_method_status status;
1402 const bt_stream *stream = NULL;
1403 int64_t ns_from_origin = INT64_MIN;
1404 bool skip;
1405 int ret;
1406 struct trimmer_iterator_stream_state *sstate = NULL;
1407 struct trimmer_comp *trimmer_comp = trimmer_it->trimmer_comp;
1408
1409 /* Find message's associated stream */
1410 switch (bt_message_get_type(msg)) {
1411 case BT_MESSAGE_TYPE_EVENT:
1412 stream = bt_event_borrow_stream_const(
1413 bt_message_event_borrow_event_const(msg));
1414 break;
1415 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
1416 stream = bt_packet_borrow_stream_const(
1417 bt_message_packet_beginning_borrow_packet_const(msg));
1418 break;
1419 case BT_MESSAGE_TYPE_PACKET_END:
1420 stream = bt_packet_borrow_stream_const(
1421 bt_message_packet_end_borrow_packet_const(msg));
1422 break;
1423 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1424 stream = bt_message_discarded_events_borrow_stream_const(msg);
1425 break;
1426 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1427 stream = bt_message_discarded_packets_borrow_stream_const(msg);
1428 break;
1429 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
1430 stream = bt_message_stream_activity_beginning_borrow_stream_const(msg);
1431 break;
1432 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
1433 stream = bt_message_stream_activity_end_borrow_stream_const(msg);
1434 break;
1435 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
1436 stream = bt_message_stream_beginning_borrow_stream_const(msg);
1437 break;
1438 case BT_MESSAGE_TYPE_STREAM_END:
1439 stream = bt_message_stream_end_borrow_stream_const(msg);
1440 break;
1441 default:
1442 break;
1443 }
1444
1445 if (G_LIKELY(stream)) {
1446 /* Find stream state */
1447 sstate = g_hash_table_lookup(trimmer_it->stream_states,
1448 stream);
1449 if (G_UNLIKELY(!sstate)) {
1450 /* No stream state yet: create one now */
1451 const bt_stream_class *sc;
1452
1453 /*
1454 * Validate right now that the stream's class
1455 * has a registered default clock class so that
1456 * an existing stream state guarantees existing
1457 * default clock snapshots for its associated
1458 * messages.
1459 *
1460 * Also check that clock snapshots are always
1461 * known.
1462 */
1463 sc = bt_stream_borrow_class_const(stream);
1464 if (!bt_stream_class_borrow_default_clock_class_const(sc)) {
1465 BT_COMP_LOGE("Unsupported stream: stream class does "
1466 "not have a default clock class: "
1467 "stream-addr=%p, "
1468 "stream-id=%" PRIu64 ", "
1469 "stream-name=\"%s\"",
1470 stream, bt_stream_get_id(stream),
1471 bt_stream_get_name(stream));
1472 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1473 goto end;
1474 }
1475
1476 /*
1477 * Temporary: make sure packet beginning, packet
1478 * end, discarded events, and discarded packets
1479 * messages have default clock snapshots until
1480 * the support for not having them is
1481 * implemented.
1482 */
1483 if (!bt_stream_class_packets_have_beginning_default_clock_snapshot(
1484 sc)) {
1485 BT_COMP_LOGE("Unsupported stream: packets have "
1486 "no beginning clock snapshot: "
1487 "stream-addr=%p, "
1488 "stream-id=%" PRIu64 ", "
1489 "stream-name=\"%s\"",
1490 stream, bt_stream_get_id(stream),
1491 bt_stream_get_name(stream));
1492 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1493 goto end;
1494 }
1495
1496 if (!bt_stream_class_packets_have_end_default_clock_snapshot(
1497 sc)) {
1498 BT_COMP_LOGE("Unsupported stream: packets have "
1499 "no end clock snapshot: "
1500 "stream-addr=%p, "
1501 "stream-id=%" PRIu64 ", "
1502 "stream-name=\"%s\"",
1503 stream, bt_stream_get_id(stream),
1504 bt_stream_get_name(stream));
1505 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1506 goto end;
1507 }
1508
1509 if (bt_stream_class_supports_discarded_events(sc) &&
1510 !bt_stream_class_discarded_events_have_default_clock_snapshots(sc)) {
1511 BT_COMP_LOGE("Unsupported stream: discarded events "
1512 "have no clock snapshots: "
1513 "stream-addr=%p, "
1514 "stream-id=%" PRIu64 ", "
1515 "stream-name=\"%s\"",
1516 stream, bt_stream_get_id(stream),
1517 bt_stream_get_name(stream));
1518 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1519 goto end;
1520 }
1521
1522 if (bt_stream_class_supports_discarded_packets(sc) &&
1523 !bt_stream_class_discarded_packets_have_default_clock_snapshots(sc)) {
1524 BT_COMP_LOGE("Unsupported stream: discarded packets "
1525 "have no clock snapshots: "
1526 "stream-addr=%p, "
1527 "stream-id=%" PRIu64 ", "
1528 "stream-name=\"%s\"",
1529 stream, bt_stream_get_id(stream),
1530 bt_stream_get_name(stream));
1531 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1532 goto end;
1533 }
1534
1535 sstate = g_new0(struct trimmer_iterator_stream_state,
1536 1);
1537 if (!sstate) {
1538 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR;
1539 goto end;
1540 }
1541
1542 sstate->stream = stream;
1543 sstate->stream_act_end_ns_from_origin = INT64_MIN;
1544 g_hash_table_insert(trimmer_it->stream_states,
1545 (void *) stream, sstate);
1546 }
1547 }
1548
1549 /* Retrieve the message's time */
1550 ret = get_msg_ns_from_origin(msg, &ns_from_origin, &skip);
1551 if (G_UNLIKELY(ret)) {
1552 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR;
1553 goto end;
1554 }
1555
1556 if (G_LIKELY(sstate)) {
1557 /* Message associated to a stream */
1558 status = handle_message_with_stream_state(trimmer_it, msg,
1559 sstate, ns_from_origin, reached_end);
1560
1561 /*
1562 * handle_message_with_stream_state() unconditionally
1563 * consumes `msg`.
1564 */
1565 msg = NULL;
1566 } else {
1567 /*
1568 * Message not associated to a stream (message iterator
1569 * inactivity).
1570 */
1571 if (G_UNLIKELY(ns_from_origin > trimmer_it->end.ns_from_origin)) {
1572 BT_MESSAGE_PUT_REF_AND_RESET(msg);
1573 status = end_iterator_streams(trimmer_it);
1574 *reached_end = true;
1575 } else {
1576 push_message(trimmer_it, msg);
1577 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1578 msg = NULL;
1579 }
1580 }
1581
1582 end:
1583 /* We release the message's reference whatever the outcome */
1584 bt_message_put_ref(msg);
1585 return status;
1586 }
1587
1588 static inline
1589 void fill_message_array_from_output_messages(
1590 struct trimmer_iterator *trimmer_it,
1591 bt_message_array_const msgs, uint64_t capacity, uint64_t *count)
1592 {
1593 *count = 0;
1594
1595 /*
1596 * Move auto-seek messages to the output array (which is this
1597 * iterator's base message array).
1598 */
1599 while (capacity > 0 && !g_queue_is_empty(trimmer_it->output_messages)) {
1600 msgs[*count] = pop_message(trimmer_it);
1601 capacity--;
1602 (*count)++;
1603 }
1604
1605 BT_ASSERT(*count > 0);
1606 }
1607
1608 static inline
1609 bt_component_class_message_iterator_next_method_status state_ending(
1610 struct trimmer_iterator *trimmer_it,
1611 bt_message_array_const msgs, uint64_t capacity,
1612 uint64_t *count)
1613 {
1614 bt_component_class_message_iterator_next_method_status status =
1615 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1616
1617 if (g_queue_is_empty(trimmer_it->output_messages)) {
1618 trimmer_it->state = TRIMMER_ITERATOR_STATE_ENDED;
1619 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
1620 goto end;
1621 }
1622
1623 fill_message_array_from_output_messages(trimmer_it, msgs,
1624 capacity, count);
1625
1626 end:
1627 return status;
1628 }
1629
1630 static inline
1631 bt_component_class_message_iterator_next_method_status
1632 state_trim(struct trimmer_iterator *trimmer_it,
1633 bt_message_array_const msgs, uint64_t capacity,
1634 uint64_t *count)
1635 {
1636 bt_component_class_message_iterator_next_method_status status =
1637 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1638 bt_message_array_const my_msgs;
1639 uint64_t my_count;
1640 uint64_t i;
1641 bool reached_end = false;
1642
1643 while (g_queue_is_empty(trimmer_it->output_messages)) {
1644 status = (int) bt_self_component_port_input_message_iterator_next(
1645 trimmer_it->upstream_iter, &my_msgs, &my_count);
1646 if (G_UNLIKELY(status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK)) {
1647 if (status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END) {
1648 status = end_iterator_streams(trimmer_it);
1649 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1650 goto end;
1651 }
1652
1653 trimmer_it->state =
1654 TRIMMER_ITERATOR_STATE_ENDING;
1655 status = state_ending(trimmer_it, msgs,
1656 capacity, count);
1657 }
1658
1659 goto end;
1660 }
1661
1662 BT_ASSERT(my_count > 0);
1663
1664 for (i = 0; i < my_count; i++) {
1665 status = handle_message(trimmer_it, my_msgs[i],
1666 &reached_end);
1667
1668 /*
1669 * handle_message() unconditionally consumes the
1670 * message reference.
1671 */
1672 my_msgs[i] = NULL;
1673
1674 if (G_UNLIKELY(status !=
1675 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK)) {
1676 put_messages(my_msgs, my_count);
1677 goto end;
1678 }
1679
1680 if (G_UNLIKELY(reached_end)) {
1681 /*
1682 * This message's time was passed the
1683 * trimming time range's end time: we
1684 * are done. Their might still be
1685 * messages in the output message queue,
1686 * so move to the "ending" state and
1687 * apply it immediately since
1688 * state_trim() is called within the
1689 * "next" method.
1690 */
1691 put_messages(my_msgs, my_count);
1692 trimmer_it->state =
1693 TRIMMER_ITERATOR_STATE_ENDING;
1694 status = state_ending(trimmer_it, msgs,
1695 capacity, count);
1696 goto end;
1697 }
1698 }
1699 }
1700
1701 /*
1702 * There's at least one message in the output message queue:
1703 * move the messages to the output message array.
1704 */
1705 BT_ASSERT(!g_queue_is_empty(trimmer_it->output_messages));
1706 fill_message_array_from_output_messages(trimmer_it, msgs,
1707 capacity, count);
1708
1709 end:
1710 return status;
1711 }
1712
1713 BT_HIDDEN
1714 bt_component_class_message_iterator_next_method_status trimmer_msg_iter_next(
1715 bt_self_message_iterator *self_msg_iter,
1716 bt_message_array_const msgs, uint64_t capacity,
1717 uint64_t *count)
1718 {
1719 struct trimmer_iterator *trimmer_it =
1720 bt_self_message_iterator_get_data(self_msg_iter);
1721 bt_component_class_message_iterator_next_method_status status =
1722 BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK;
1723
1724 BT_ASSERT(trimmer_it);
1725
1726 if (G_LIKELY(trimmer_it->state == TRIMMER_ITERATOR_STATE_TRIM)) {
1727 status = state_trim(trimmer_it, msgs, capacity, count);
1728 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1729 goto end;
1730 }
1731 } else {
1732 switch (trimmer_it->state) {
1733 case TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN:
1734 status = state_set_trimmer_iterator_bounds(trimmer_it);
1735 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1736 goto end;
1737 }
1738
1739 status = state_seek_initially(trimmer_it);
1740 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1741 goto end;
1742 }
1743
1744 status = state_trim(trimmer_it, msgs, capacity, count);
1745 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1746 goto end;
1747 }
1748
1749 break;
1750 case TRIMMER_ITERATOR_STATE_SEEK_INITIALLY:
1751 status = state_seek_initially(trimmer_it);
1752 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1753 goto end;
1754 }
1755
1756 status = state_trim(trimmer_it, msgs, capacity, count);
1757 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1758 goto end;
1759 }
1760
1761 break;
1762 case TRIMMER_ITERATOR_STATE_ENDING:
1763 status = state_ending(trimmer_it, msgs, capacity,
1764 count);
1765 if (status != BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) {
1766 goto end;
1767 }
1768
1769 break;
1770 case TRIMMER_ITERATOR_STATE_ENDED:
1771 status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END;
1772 break;
1773 default:
1774 abort();
1775 }
1776 }
1777
1778 end:
1779 return status;
1780 }
1781
1782 BT_HIDDEN
1783 void trimmer_msg_iter_finalize(bt_self_message_iterator *self_msg_iter)
1784 {
1785 struct trimmer_iterator *trimmer_it =
1786 bt_self_message_iterator_get_data(self_msg_iter);
1787
1788 BT_ASSERT(trimmer_it);
1789 destroy_trimmer_iterator(trimmer_it);
1790 }
This page took 0.094937 seconds and 5 git commands to generate.