2 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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
24 #define BT_LOG_OUTPUT_LEVEL (trimmer_comp->log_level)
25 #define BT_LOG_TAG "PLUGIN/FLT.UTILS.TRIMMER"
26 #include "logging/comp-logging.h"
28 #include "compat/utc.h"
29 #include "compat/time.h"
30 #include <babeltrace2/babeltrace.h>
31 #include "common/common.h"
32 #include "common/assert.h"
37 #include "compat/glib.h"
38 #include "plugins/common/param-validation/param-validation.h"
42 #define NS_PER_S INT64_C(1000000000)
44 static const char * const in_port_name
= "in";
47 unsigned int hour
, minute
, second
, ns
;
50 struct trimmer_bound
{
52 * Nanoseconds from origin, valid if `is_set` is set and
53 * `is_infinite` is false.
55 int64_t ns_from_origin
;
57 /* True if this bound's full time (`ns_from_origin`) is set */
61 * True if this bound represents the infinity (negative or
62 * positive depending on which bound it is). If this is true,
63 * then we don't care about `ns_from_origin` above.
68 * This bound's time without the date; this time is used to set
69 * `ns_from_origin` once we know the date.
71 struct trimmer_time time
;
75 struct trimmer_bound begin
, end
;
77 bt_logging_level log_level
;
78 bt_self_component
*self_comp
;
79 bt_self_component_filter
*self_comp_filter
;
82 enum trimmer_iterator_state
{
84 * Find the first message's date and set the bounds's times
87 TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN
,
90 * Initially seek to the trimming range's beginning time.
92 TRIMMER_ITERATOR_STATE_SEEK_INITIALLY
,
95 * Fill the output message queue for as long as received input
96 * messages are within the trimming time range.
98 TRIMMER_ITERATOR_STATE_TRIM
,
100 /* Flush the remaining messages in the output message queue */
101 TRIMMER_ITERATOR_STATE_ENDING
,
103 /* Trimming operation and message iterator is ended */
104 TRIMMER_ITERATOR_STATE_ENDED
,
107 struct trimmer_iterator
{
109 struct trimmer_comp
*trimmer_comp
;
112 bt_self_message_iterator
*self_msg_iter
;
114 enum trimmer_iterator_state state
;
117 bt_message_iterator
*upstream_iter
;
118 struct trimmer_bound begin
, end
;
121 * Queue of `const bt_message *` (owned by the queue).
123 * This is where the trimming operation pushes the messages to
124 * output by this message iterator.
126 GQueue
*output_messages
;
129 * Hash table of `bt_stream *` (weak) to
130 * `struct trimmer_iterator_stream_state *` (owned by the HT).
132 GHashTable
*stream_states
;
135 struct trimmer_iterator_stream_state
{
137 const bt_stream
*stream
;
139 /* Have we seen a message with clock_snapshot going through this stream? */
140 bool seen_clock_snapshot
;
142 /* Owned by this (`NULL` initially and between packets) */
143 const bt_packet
*cur_packet
;
147 void destroy_trimmer_comp(struct trimmer_comp
*trimmer_comp
)
149 BT_ASSERT(trimmer_comp
);
150 g_free(trimmer_comp
);
154 struct trimmer_comp
*create_trimmer_comp(void)
156 return g_new0(struct trimmer_comp
, 1);
160 void trimmer_finalize(bt_self_component_filter
*self_comp
)
162 struct trimmer_comp
*trimmer_comp
=
163 bt_self_component_get_data(
164 bt_self_component_filter_as_self_component(self_comp
));
167 destroy_trimmer_comp(trimmer_comp
);
172 * Compile regex in `pattern`, and try to match `string`. If there's a match,
173 * return true and set `*match_info` to the list of matches. The list of
174 * matches must be freed by the caller. If there's no match, return false and
175 * set `*match_info` to NULL;
178 bool compile_and_match(const char *pattern
, const char *string
, GMatchInfo
**match_info
) {
179 bool matches
= false;
180 GError
*regex_error
= NULL
;
183 regex
= g_regex_new(pattern
, 0, 0, ®ex_error
);
188 matches
= g_regex_match(regex
, string
, 0, match_info
);
191 * g_regex_match allocates `*match_info` even if it returns
192 * FALSE. If there's no match, we have no use for it, so free
193 * it immediatly and don't return it to the caller.
195 g_match_info_free(*match_info
);
199 g_regex_unref(regex
);
204 g_error_free(regex_error
);
211 * Convert the captured text in match number `match_num` in `match_info`
212 * to an unsigned integer.
215 guint64
match_to_uint(const GMatchInfo
*match_info
, gint match_num
) {
216 gchar
*text
, *endptr
;
219 text
= g_match_info_fetch(match_info
, match_num
);
223 * Because the input is carefully sanitized with regexes by the caller,
224 * we assume that g_ascii_strtoull cannot fail.
227 result
= g_ascii_strtoull(text
, &endptr
, 10);
228 BT_ASSERT(endptr
> text
);
229 BT_ASSERT(errno
== 0);
237 * When parsing the nanoseconds part, .512 means .512000000, not .000000512.
238 * This function is like match_to_uint, but multiplies the parsed number to get
239 * the expected result.
242 guint64
match_to_uint_ns(const GMatchInfo
*match_info
, gint match_num
) {
245 gint start_pos
, end_pos
, power
;
246 static int pow10
[] = {
247 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000,
250 nanoseconds
= match_to_uint(match_info
, match_num
);
252 /* Multiply by 10 as many times as there are omitted digits. */
253 ret
= g_match_info_fetch_pos(match_info
, match_num
, &start_pos
, &end_pos
);
256 power
= 9 - (end_pos
- start_pos
);
257 BT_ASSERT(power
>= 0 && power
<= 8);
259 nanoseconds
*= pow10
[power
];
265 * Sets the time (in ns from origin) of a trimmer bound from date and
268 * Returns a negative value if anything goes wrong.
271 int set_bound_ns_from_origin(struct trimmer_bound
*bound
,
272 unsigned int year
, unsigned int month
, unsigned int day
,
273 unsigned int hour
, unsigned int minute
, unsigned int second
,
274 unsigned int ns
, bool is_gmt
)
284 .tm_year
= year
- 1900,
289 result
= bt_timegm(&tm
);
291 result
= mktime(&tm
);
300 bound
->ns_from_origin
= (int64_t) result
;
301 bound
->ns_from_origin
*= NS_PER_S
;
302 bound
->ns_from_origin
+= ns
;
303 bound
->is_set
= true;
310 * Parses a timestamp, figuring out its format.
312 * Returns a negative value if anything goes wrong.
316 * YYYY-MM-DD hh:mm[:ss[.ns]]
320 * TODO: Check overflows.
323 int set_bound_from_str(struct trimmer_comp
*trimmer_comp
,
324 const char *str
, struct trimmer_bound
*bound
, bool is_gmt
)
326 /* Matches YYYY-MM-DD */
327 #define DATE_RE "([0-9]{4})-([0-9]{2})-([0-9]{2})"
329 /* Matches HH:MM[:SS[.NS]] */
330 #define TIME_RE "([0-9]{2}):([0-9]{2})(?::([0-9]{2})(?:\\.([0-9]{1,9}))?)?"
332 /* Matches [-]SS[.NS] */
333 #define S_NS_RE "^(-?)([0-9]+)(?:\\.([0-9]{1,9}))?$"
335 GMatchInfo
*match_info
;
338 /* Try `YYYY-MM-DD hh:mm[:ss[.ns]]` format */
339 if (compile_and_match("^" DATE_RE
" " TIME_RE
"$", str
, &match_info
)) {
340 unsigned int year
= 0, month
= 0, day
= 0, hours
= 0, minutes
= 0, seconds
= 0, nanoseconds
= 0;
341 gint match_count
= g_match_info_get_match_count(match_info
);
343 BT_ASSERT(match_count
>= 6 && match_count
<= 8);
345 year
= match_to_uint(match_info
, 1);
346 month
= match_to_uint(match_info
, 2);
347 day
= match_to_uint(match_info
, 3);
348 hours
= match_to_uint(match_info
, 4);
349 minutes
= match_to_uint(match_info
, 5);
351 if (match_count
>= 7) {
352 seconds
= match_to_uint(match_info
, 6);
355 if (match_count
>= 8) {
356 nanoseconds
= match_to_uint_ns(match_info
, 7);
359 set_bound_ns_from_origin(bound
, year
, month
, day
, hours
, minutes
, seconds
, nanoseconds
, is_gmt
);
364 if (compile_and_match("^" DATE_RE
"$", str
, &match_info
)) {
365 unsigned int year
= 0, month
= 0, day
= 0;
367 BT_ASSERT(g_match_info_get_match_count(match_info
) == 4);
369 year
= match_to_uint(match_info
, 1);
370 month
= match_to_uint(match_info
, 2);
371 day
= match_to_uint(match_info
, 3);
373 set_bound_ns_from_origin(bound
, year
, month
, day
, 0, 0, 0, 0, is_gmt
);
378 /* Try `hh:mm[:ss[.ns]]` format */
379 if (compile_and_match("^" TIME_RE
"$", str
, &match_info
)) {
380 gint match_count
= g_match_info_get_match_count(match_info
);
381 BT_ASSERT(match_count
>= 3 && match_count
<= 5);
382 bound
->time
.hour
= match_to_uint(match_info
, 1);
383 bound
->time
.minute
= match_to_uint(match_info
, 2);
385 if (match_count
>= 4) {
386 bound
->time
.second
= match_to_uint(match_info
, 3);
389 if (match_count
>= 5) {
390 bound
->time
.ns
= match_to_uint_ns(match_info
, 4);
396 /* Try `[-]s[.ns]` format */
397 if (compile_and_match("^" S_NS_RE
"$", str
, &match_info
)) {
398 gboolean is_neg
, fetch_pos_ret
;
399 gint start_pos
, end_pos
, match_count
;
400 guint64 seconds
, nanoseconds
= 0;
402 match_count
= g_match_info_get_match_count(match_info
);
403 BT_ASSERT(match_count
>= 3 && match_count
<= 4);
405 /* Check for presence of negation sign. */
406 fetch_pos_ret
= g_match_info_fetch_pos(match_info
, 1, &start_pos
, &end_pos
);
407 BT_ASSERT(fetch_pos_ret
);
408 is_neg
= (end_pos
- start_pos
) > 0;
410 seconds
= match_to_uint(match_info
, 2);
412 if (match_count
>= 4) {
413 nanoseconds
= match_to_uint_ns(match_info
, 3);
416 bound
->ns_from_origin
= seconds
* NS_PER_S
+ nanoseconds
;
419 bound
->ns_from_origin
= -bound
->ns_from_origin
;
422 bound
->is_set
= true;
427 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
428 "Invalid date/time format: param=\"%s\"", str
);
432 g_match_info_free(match_info
);
438 * Sets a trimmer bound's properties from a parameter string/integer
441 * Returns a negative value if anything goes wrong.
444 int set_bound_from_param(struct trimmer_comp
*trimmer_comp
,
445 const char *param_name
, const bt_value
*param
,
446 struct trimmer_bound
*bound
, bool is_gmt
)
452 if (bt_value_is_signed_integer(param
)) {
453 int64_t value
= bt_value_integer_signed_get(param
);
456 * Just convert it to a temporary string to handle
457 * everything the same way.
459 sprintf(tmp_arg
, "%" PRId64
, value
);
462 BT_ASSERT(bt_value_is_string(param
));
463 arg
= bt_value_string_get(param
);
466 ret
= set_bound_from_str(trimmer_comp
, arg
, bound
, is_gmt
);
472 int validate_trimmer_bounds(struct trimmer_comp
*trimmer_comp
,
473 struct trimmer_bound
*begin
, struct trimmer_bound
*end
)
477 BT_ASSERT(begin
->is_set
);
478 BT_ASSERT(end
->is_set
);
480 if (!begin
->is_infinite
&& !end
->is_infinite
&&
481 begin
->ns_from_origin
> end
->ns_from_origin
) {
482 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
483 "Trimming time range's beginning time is greater than end time: "
484 "begin-ns-from-origin=%" PRId64
", "
485 "end-ns-from-origin=%" PRId64
,
486 begin
->ns_from_origin
,
487 end
->ns_from_origin
);
492 if (!begin
->is_infinite
&& begin
->ns_from_origin
== INT64_MIN
) {
493 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
494 "Invalid trimming time range's beginning time: "
495 "ns-from-origin=%" PRId64
,
496 begin
->ns_from_origin
);
501 if (!end
->is_infinite
&& end
->ns_from_origin
== INT64_MIN
) {
502 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
503 "Invalid trimming time range's end time: "
504 "ns-from-origin=%" PRId64
,
505 end
->ns_from_origin
);
515 enum bt_param_validation_status
validate_bound_type(
516 const bt_value
*value
,
517 struct bt_param_validation_context
*context
)
519 enum bt_param_validation_status status
= BT_PARAM_VALIDATION_STATUS_OK
;
521 if (!bt_value_is_signed_integer(value
) &&
522 !bt_value_is_string(value
)) {
523 status
= bt_param_validation_error(context
,
524 "unexpected type: expected-types=[%s, %s], actual-type=%s",
525 bt_common_value_type_string(BT_VALUE_TYPE_SIGNED_INTEGER
),
526 bt_common_value_type_string(BT_VALUE_TYPE_STRING
),
527 bt_common_value_type_string(bt_value_get_type(value
)));
534 struct bt_param_validation_map_value_entry_descr trimmer_params
[] = {
535 { "gmt", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL
, { .type
= BT_VALUE_TYPE_BOOL
} },
536 { "begin", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL
, { .validation_func
= validate_bound_type
} },
537 { "end", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL
, { .validation_func
= validate_bound_type
} },
538 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END
542 bt_component_class_initialize_method_status
init_trimmer_comp_from_params(
543 struct trimmer_comp
*trimmer_comp
,
544 const bt_value
*params
)
546 const bt_value
*value
;
547 bt_component_class_initialize_method_status status
;
548 enum bt_param_validation_status validation_status
;
549 gchar
*validate_error
= NULL
;
551 validation_status
= bt_param_validation_validate(params
,
552 trimmer_params
, &validate_error
);
553 if (validation_status
== BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR
) {
554 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
556 } else if (validation_status
== BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR
) {
557 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR
;
558 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
, "%s",
564 value
= bt_value_map_borrow_entry_value_const(params
, "gmt");
566 trimmer_comp
->is_gmt
= (bool) bt_value_bool_get(value
);
569 value
= bt_value_map_borrow_entry_value_const(params
, "begin");
571 if (set_bound_from_param(trimmer_comp
, "begin", value
,
572 &trimmer_comp
->begin
, trimmer_comp
->is_gmt
)) {
573 /* set_bound_from_param() logs errors */
574 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR
;
578 trimmer_comp
->begin
.is_infinite
= true;
579 trimmer_comp
->begin
.is_set
= true;
582 value
= bt_value_map_borrow_entry_value_const(params
, "end");
584 if (set_bound_from_param(trimmer_comp
, "end", value
,
585 &trimmer_comp
->end
, trimmer_comp
->is_gmt
)) {
586 /* set_bound_from_param() logs errors */
587 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR
;
591 trimmer_comp
->end
.is_infinite
= true;
592 trimmer_comp
->end
.is_set
= true;
595 if (trimmer_comp
->begin
.is_set
&& trimmer_comp
->end
.is_set
) {
596 /* validate_trimmer_bounds() logs errors */
597 if (validate_trimmer_bounds(trimmer_comp
,
598 &trimmer_comp
->begin
, &trimmer_comp
->end
)) {
599 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR
;
604 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK
;
607 g_free(validate_error
);
612 bt_component_class_initialize_method_status
trimmer_init(
613 bt_self_component_filter
*self_comp_flt
,
614 bt_self_component_filter_configuration
*config
,
615 const bt_value
*params
, void *init_data
)
617 bt_component_class_initialize_method_status status
;
618 bt_self_component_add_port_status add_port_status
;
619 struct trimmer_comp
*trimmer_comp
= create_trimmer_comp();
620 bt_self_component
*self_comp
=
621 bt_self_component_filter_as_self_component(self_comp_flt
);
624 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
628 trimmer_comp
->log_level
= bt_component_get_logging_level(
629 bt_self_component_as_component(self_comp
));
630 trimmer_comp
->self_comp
= self_comp
;
631 trimmer_comp
->self_comp_filter
= self_comp_flt
;
633 add_port_status
= bt_self_component_filter_add_input_port(
634 self_comp_flt
, in_port_name
, NULL
, NULL
);
635 if (add_port_status
!= BT_SELF_COMPONENT_ADD_PORT_STATUS_OK
) {
636 status
= (int) add_port_status
;
640 add_port_status
= bt_self_component_filter_add_output_port(
641 self_comp_flt
, "out", NULL
, NULL
);
642 if (add_port_status
!= BT_SELF_COMPONENT_ADD_PORT_STATUS_OK
) {
643 status
= (int) add_port_status
;
647 status
= init_trimmer_comp_from_params(trimmer_comp
, params
);
648 if (status
!= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK
) {
652 bt_self_component_set_data(self_comp
, trimmer_comp
);
654 status
= BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK
;
659 destroy_trimmer_comp(trimmer_comp
);
667 void destroy_trimmer_iterator(struct trimmer_iterator
*trimmer_it
)
673 bt_message_iterator_put_ref(
674 trimmer_it
->upstream_iter
);
676 if (trimmer_it
->output_messages
) {
677 g_queue_free(trimmer_it
->output_messages
);
680 if (trimmer_it
->stream_states
) {
681 g_hash_table_destroy(trimmer_it
->stream_states
);
690 void destroy_trimmer_iterator_stream_state(
691 struct trimmer_iterator_stream_state
*sstate
)
694 BT_PACKET_PUT_REF_AND_RESET(sstate
->cur_packet
);
699 bt_message_iterator_class_initialize_method_status
trimmer_msg_iter_init(
700 bt_self_message_iterator
*self_msg_iter
,
701 bt_self_message_iterator_configuration
*config
,
702 bt_self_component
*self_comp
,
703 bt_self_component_port_output
*port
)
705 bt_message_iterator_class_initialize_method_status status
;
706 bt_message_iterator_create_from_message_iterator_status
708 struct trimmer_iterator
*trimmer_it
;
710 trimmer_it
= g_new0(struct trimmer_iterator
, 1);
712 status
= BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
716 trimmer_it
->trimmer_comp
= bt_self_component_get_data(self_comp
);
717 BT_ASSERT(trimmer_it
->trimmer_comp
);
719 if (trimmer_it
->trimmer_comp
->begin
.is_set
&&
720 trimmer_it
->trimmer_comp
->end
.is_set
) {
722 * Both trimming time range's bounds are set, so skip
724 * `TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN`
727 trimmer_it
->state
= TRIMMER_ITERATOR_STATE_SEEK_INITIALLY
;
730 trimmer_it
->begin
= trimmer_it
->trimmer_comp
->begin
;
731 trimmer_it
->end
= trimmer_it
->trimmer_comp
->end
;
733 bt_message_iterator_create_from_message_iterator(
735 bt_self_component_filter_borrow_input_port_by_name(
736 trimmer_it
->trimmer_comp
->self_comp_filter
, in_port_name
),
737 &trimmer_it
->upstream_iter
);
738 if (msg_iter_status
!= BT_MESSAGE_ITERATOR_CREATE_FROM_MESSAGE_ITERATOR_STATUS_OK
) {
739 status
= (int) msg_iter_status
;
743 trimmer_it
->output_messages
= g_queue_new();
744 if (!trimmer_it
->output_messages
) {
745 status
= BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
749 trimmer_it
->stream_states
= g_hash_table_new_full(g_direct_hash
,
750 g_direct_equal
, NULL
,
751 (GDestroyNotify
) destroy_trimmer_iterator_stream_state
);
752 if (!trimmer_it
->stream_states
) {
753 status
= BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR
;
758 * The trimmer requires upstream messages to have times, so it can
759 * always seek forward.
761 bt_self_message_iterator_configuration_set_can_seek_forward(
764 trimmer_it
->self_msg_iter
= self_msg_iter
;
765 bt_self_message_iterator_set_data(self_msg_iter
, trimmer_it
);
767 status
= BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK
;
771 destroy_trimmer_iterator(trimmer_it
);
778 int get_msg_ns_from_origin(const bt_message
*msg
, int64_t *ns_from_origin
,
779 bool *has_clock_snapshot
)
781 const bt_clock_class
*clock_class
= NULL
;
782 const bt_clock_snapshot
*clock_snapshot
= NULL
;
786 BT_ASSERT_DBG(ns_from_origin
);
787 BT_ASSERT_DBG(has_clock_snapshot
);
789 switch (bt_message_get_type(msg
)) {
790 case BT_MESSAGE_TYPE_EVENT
:
792 bt_message_event_borrow_stream_class_default_clock_class_const(
794 if (G_UNLIKELY(!clock_class
)) {
798 clock_snapshot
= bt_message_event_borrow_default_clock_snapshot_const(
801 case BT_MESSAGE_TYPE_PACKET_BEGINNING
:
803 bt_message_packet_beginning_borrow_stream_class_default_clock_class_const(
805 if (G_UNLIKELY(!clock_class
)) {
809 clock_snapshot
= bt_message_packet_beginning_borrow_default_clock_snapshot_const(
812 case BT_MESSAGE_TYPE_PACKET_END
:
814 bt_message_packet_end_borrow_stream_class_default_clock_class_const(
816 if (G_UNLIKELY(!clock_class
)) {
820 clock_snapshot
= bt_message_packet_end_borrow_default_clock_snapshot_const(
823 case BT_MESSAGE_TYPE_STREAM_BEGINNING
:
825 enum bt_message_stream_clock_snapshot_state cs_state
;
828 bt_message_stream_beginning_borrow_stream_class_default_clock_class_const(msg
);
829 if (G_UNLIKELY(!clock_class
)) {
833 cs_state
= bt_message_stream_beginning_borrow_default_clock_snapshot_const(msg
, &clock_snapshot
);
834 if (cs_state
!= BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN
) {
835 goto no_clock_snapshot
;
840 case BT_MESSAGE_TYPE_STREAM_END
:
842 enum bt_message_stream_clock_snapshot_state cs_state
;
845 bt_message_stream_end_borrow_stream_class_default_clock_class_const(msg
);
846 if (G_UNLIKELY(!clock_class
)) {
850 cs_state
= bt_message_stream_end_borrow_default_clock_snapshot_const(msg
, &clock_snapshot
);
851 if (cs_state
!= BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN
) {
852 goto no_clock_snapshot
;
857 case BT_MESSAGE_TYPE_DISCARDED_EVENTS
:
859 bt_message_discarded_events_borrow_stream_class_default_clock_class_const(
861 if (G_UNLIKELY(!clock_class
)) {
865 clock_snapshot
= bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
868 case BT_MESSAGE_TYPE_DISCARDED_PACKETS
:
870 bt_message_discarded_packets_borrow_stream_class_default_clock_class_const(
872 if (G_UNLIKELY(!clock_class
)) {
876 clock_snapshot
= bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
879 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY
:
881 bt_message_message_iterator_inactivity_borrow_default_clock_snapshot_const(
885 goto no_clock_snapshot
;
888 ret
= bt_clock_snapshot_get_ns_from_origin(clock_snapshot
,
890 if (G_UNLIKELY(ret
)) {
894 *has_clock_snapshot
= true;
898 *has_clock_snapshot
= false;
909 void put_messages(bt_message_array_const msgs
, uint64_t count
)
913 for (i
= 0; i
< count
; i
++) {
914 BT_MESSAGE_PUT_REF_AND_RESET(msgs
[i
]);
919 int set_trimmer_iterator_bound(struct trimmer_iterator
*trimmer_it
,
920 struct trimmer_bound
*bound
, int64_t ns_from_origin
,
923 struct trimmer_comp
*trimmer_comp
= trimmer_it
->trimmer_comp
;
926 time_t time_seconds
= (time_t) (ns_from_origin
/ NS_PER_S
);
929 BT_ASSERT(!bound
->is_set
);
932 /* We only need to extract the date from this time */
934 res
= bt_gmtime_r(&time_seconds
, &tm
);
936 res
= bt_localtime_r(&time_seconds
, &tm
);
940 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(trimmer_comp
->self_comp
,
941 "Cannot convert timestamp to date and time",
942 ": ts=%" PRId64
, (int64_t) time_seconds
);
947 ret
= set_bound_ns_from_origin(bound
, tm
.tm_year
+ 1900, tm
.tm_mon
+ 1,
948 tm
.tm_mday
, bound
->time
.hour
, bound
->time
.minute
,
949 bound
->time
.second
, bound
->time
.ns
, is_gmt
);
956 bt_message_iterator_class_next_method_status
957 state_set_trimmer_iterator_bounds(
958 struct trimmer_iterator
*trimmer_it
)
960 bt_message_iterator_next_status upstream_iter_status
=
961 BT_MESSAGE_ITERATOR_NEXT_STATUS_OK
;
962 struct trimmer_comp
*trimmer_comp
= trimmer_it
->trimmer_comp
;
963 bt_message_array_const msgs
;
965 int64_t ns_from_origin
= INT64_MIN
;
969 BT_ASSERT(!trimmer_it
->begin
.is_set
||
970 !trimmer_it
->end
.is_set
);
973 upstream_iter_status
=
974 bt_message_iterator_next(
975 trimmer_it
->upstream_iter
, &msgs
, &count
);
976 if (upstream_iter_status
!= BT_MESSAGE_ITERATOR_NEXT_STATUS_OK
) {
980 for (i
= 0; i
< count
; i
++) {
981 const bt_message
*msg
= msgs
[i
];
982 bool has_ns_from_origin
;
983 ret
= get_msg_ns_from_origin(msg
, &ns_from_origin
,
984 &has_ns_from_origin
);
989 if (!has_ns_from_origin
) {
993 BT_ASSERT_DBG(ns_from_origin
!= INT64_MIN
&&
994 ns_from_origin
!= INT64_MAX
);
995 put_messages(msgs
, count
);
999 put_messages(msgs
, count
);
1003 if (!trimmer_it
->begin
.is_set
) {
1004 BT_ASSERT(!trimmer_it
->begin
.is_infinite
);
1005 ret
= set_trimmer_iterator_bound(trimmer_it
, &trimmer_it
->begin
,
1006 ns_from_origin
, trimmer_comp
->is_gmt
);
1012 if (!trimmer_it
->end
.is_set
) {
1013 BT_ASSERT(!trimmer_it
->end
.is_infinite
);
1014 ret
= set_trimmer_iterator_bound(trimmer_it
, &trimmer_it
->end
,
1015 ns_from_origin
, trimmer_comp
->is_gmt
);
1021 ret
= validate_trimmer_bounds(trimmer_it
->trimmer_comp
,
1022 &trimmer_it
->begin
, &trimmer_it
->end
);
1030 put_messages(msgs
, count
);
1031 upstream_iter_status
= BT_MESSAGE_ITERATOR_NEXT_STATUS_ERROR
;
1034 return (int) upstream_iter_status
;
1038 bt_message_iterator_class_next_method_status
state_seek_initially(
1039 struct trimmer_iterator
*trimmer_it
)
1041 struct trimmer_comp
*trimmer_comp
= trimmer_it
->trimmer_comp
;
1042 bt_message_iterator_class_next_method_status status
;
1044 BT_ASSERT(trimmer_it
->begin
.is_set
);
1046 if (trimmer_it
->begin
.is_infinite
) {
1049 status
= (int) bt_message_iterator_can_seek_beginning(
1050 trimmer_it
->upstream_iter
, &can_seek
);
1051 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1053 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1054 "Cannot make upstream message iterator initially seek its beginning.");
1061 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1062 "Cannot make upstream message iterator initially seek its beginning.");
1063 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1067 status
= (int) bt_message_iterator_seek_beginning(
1068 trimmer_it
->upstream_iter
);
1072 status
= (int) bt_message_iterator_can_seek_ns_from_origin(
1073 trimmer_it
->upstream_iter
, trimmer_it
->begin
.ns_from_origin
,
1076 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1078 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1079 "Cannot make upstream message iterator initially seek: seek-ns-from-origin=%" PRId64
,
1080 trimmer_it
->begin
.ns_from_origin
);
1087 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1088 "Cannot make upstream message iterator initially seek: seek-ns-from-origin=%" PRId64
,
1089 trimmer_it
->begin
.ns_from_origin
);
1090 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1094 status
= (int) bt_message_iterator_seek_ns_from_origin(
1095 trimmer_it
->upstream_iter
, trimmer_it
->begin
.ns_from_origin
);
1098 if (status
== BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1099 trimmer_it
->state
= TRIMMER_ITERATOR_STATE_TRIM
;
1107 void push_message(struct trimmer_iterator
*trimmer_it
, const bt_message
*msg
)
1109 g_queue_push_head(trimmer_it
->output_messages
, (void *) msg
);
1113 const bt_message
*pop_message(struct trimmer_iterator
*trimmer_it
)
1115 return g_queue_pop_tail(trimmer_it
->output_messages
);
1119 int clock_raw_value_from_ns_from_origin(const bt_clock_class
*clock_class
,
1120 int64_t ns_from_origin
, uint64_t *raw_value
)
1123 int64_t cc_offset_s
;
1124 uint64_t cc_offset_cycles
;
1127 bt_clock_class_get_offset(clock_class
, &cc_offset_s
, &cc_offset_cycles
);
1128 cc_freq
= bt_clock_class_get_frequency(clock_class
);
1129 return bt_common_clock_value_from_ns_from_origin(cc_offset_s
,
1130 cc_offset_cycles
, cc_freq
, ns_from_origin
, raw_value
);
1134 bt_message_iterator_class_next_method_status
1135 end_stream(struct trimmer_iterator
*trimmer_it
,
1136 struct trimmer_iterator_stream_state
*sstate
)
1138 bt_message_iterator_class_next_method_status status
=
1139 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1140 /* Initialize to silence maybe-uninitialized warning. */
1141 uint64_t raw_value
= 0;
1142 bt_message
*msg
= NULL
;
1144 BT_ASSERT(!trimmer_it
->end
.is_infinite
);
1145 BT_ASSERT(sstate
->stream
);
1148 * If we haven't seen a message with a clock snapshot, we don't know if the trimmer's end bound is within
1149 * the clock's range, so it wouldn't be safe to try to convert ns_from_origin to a clock value.
1151 * Also, it would be a bit of a lie to generate a stream end message with the end bound as its
1152 * clock snapshot, because we don't really know if the stream existed at that time. If we have
1153 * seen a message with a clock snapshot and the stream is cut short by another message with a
1154 * clock snapshot, then we are sure that the the end bound time is not below the clock range,
1155 * and we know the stream was active at that time (and that we cut it short).
1157 if (sstate
->seen_clock_snapshot
) {
1158 const bt_clock_class
*clock_class
;
1161 clock_class
= bt_stream_class_borrow_default_clock_class_const(
1162 bt_stream_borrow_class_const(sstate
->stream
));
1163 BT_ASSERT(clock_class
);
1164 ret
= clock_raw_value_from_ns_from_origin(clock_class
,
1165 trimmer_it
->end
.ns_from_origin
, &raw_value
);
1167 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1172 if (sstate
->cur_packet
) {
1174 * Create and push a packet end message, making its time
1175 * the trimming range's end time.
1177 * We know that we must have seen a clock snapshot, the one in
1178 * the packet beginning message, since trimmer currently
1179 * requires packet messages to have clock snapshots (see comment
1180 * in create_stream_state_entry).
1182 BT_ASSERT(sstate
->seen_clock_snapshot
);
1184 msg
= bt_message_packet_end_create_with_default_clock_snapshot(
1185 trimmer_it
->self_msg_iter
, sstate
->cur_packet
,
1188 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR
;
1192 push_message(trimmer_it
, msg
);
1194 BT_PACKET_PUT_REF_AND_RESET(sstate
->cur_packet
);
1197 /* Create and push a stream end message. */
1198 msg
= bt_message_stream_end_create(trimmer_it
->self_msg_iter
,
1201 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR
;
1205 if (sstate
->seen_clock_snapshot
) {
1206 bt_message_stream_end_set_default_clock_snapshot(msg
, raw_value
);
1209 push_message(trimmer_it
, msg
);
1213 * Just to make sure that we don't use this stream state again
1214 * in the future without an obvious error.
1216 sstate
->stream
= NULL
;
1219 bt_message_put_ref(msg
);
1224 bt_message_iterator_class_next_method_status
end_iterator_streams(
1225 struct trimmer_iterator
*trimmer_it
)
1227 bt_message_iterator_class_next_method_status status
=
1228 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1229 GHashTableIter iter
;
1230 gpointer key
, sstate
;
1232 if (trimmer_it
->end
.is_infinite
) {
1234 * An infinite trimming range's end time guarantees that
1235 * we received (and pushed) all the appropriate end
1242 * End each stream and then remove them from the hash table of
1243 * stream states to release unneeded references.
1245 g_hash_table_iter_init(&iter
, trimmer_it
->stream_states
);
1247 while (g_hash_table_iter_next(&iter
, &key
, &sstate
)) {
1248 status
= end_stream(trimmer_it
, sstate
);
1255 g_hash_table_remove_all(trimmer_it
->stream_states
);
1262 bt_message_iterator_class_next_method_status
1263 create_stream_state_entry(
1264 struct trimmer_iterator
*trimmer_it
,
1265 const struct bt_stream
*stream
,
1266 struct trimmer_iterator_stream_state
**stream_state
)
1268 struct trimmer_comp
*trimmer_comp
= trimmer_it
->trimmer_comp
;
1269 bt_message_iterator_class_next_method_status status
;
1270 struct trimmer_iterator_stream_state
*sstate
;
1271 const bt_stream_class
*sc
;
1273 BT_ASSERT(!bt_g_hash_table_contains(trimmer_it
->stream_states
, stream
));
1276 * Validate right now that the stream's class
1277 * has a registered default clock class so that
1278 * an existing stream state guarantees existing
1279 * default clock snapshots for its associated
1282 * Also check that clock snapshots are always
1285 sc
= bt_stream_borrow_class_const(stream
);
1286 if (!bt_stream_class_borrow_default_clock_class_const(sc
)) {
1287 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1288 "Unsupported stream: stream class does "
1289 "not have a default clock class: "
1291 "stream-id=%" PRIu64
", "
1292 "stream-name=\"%s\"",
1293 stream
, bt_stream_get_id(stream
),
1294 bt_stream_get_name(stream
));
1295 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1300 * Temporary: make sure packet beginning, packet
1301 * end, discarded events, and discarded packets
1302 * messages have default clock snapshots until
1303 * the support for not having them is
1306 if (!bt_stream_class_packets_have_beginning_default_clock_snapshot(
1308 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1309 "Unsupported stream: packets have no beginning clock snapshot: "
1311 "stream-id=%" PRIu64
", "
1312 "stream-name=\"%s\"",
1313 stream
, bt_stream_get_id(stream
),
1314 bt_stream_get_name(stream
));
1315 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1319 if (!bt_stream_class_packets_have_end_default_clock_snapshot(
1321 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1322 "Unsupported stream: packets have no end clock snapshot: "
1324 "stream-id=%" PRIu64
", "
1325 "stream-name=\"%s\"",
1326 stream
, bt_stream_get_id(stream
),
1327 bt_stream_get_name(stream
));
1328 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1332 if (bt_stream_class_supports_discarded_events(sc
) &&
1333 !bt_stream_class_discarded_events_have_default_clock_snapshots(sc
)) {
1334 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1335 "Unsupported stream: discarded events have no clock snapshots: "
1337 "stream-id=%" PRIu64
", "
1338 "stream-name=\"%s\"",
1339 stream
, bt_stream_get_id(stream
),
1340 bt_stream_get_name(stream
));
1341 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1345 if (bt_stream_class_supports_discarded_packets(sc
) &&
1346 !bt_stream_class_discarded_packets_have_default_clock_snapshots(sc
)) {
1347 BT_COMP_LOGE_APPEND_CAUSE(trimmer_comp
->self_comp
,
1348 "Unsupported stream: discarded packets "
1349 "have no clock snapshots: "
1351 "stream-id=%" PRIu64
", "
1352 "stream-name=\"%s\"",
1353 stream
, bt_stream_get_id(stream
),
1354 bt_stream_get_name(stream
));
1355 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1359 sstate
= g_new0(struct trimmer_iterator_stream_state
, 1);
1361 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR
;
1365 sstate
->stream
= stream
;
1367 g_hash_table_insert(trimmer_it
->stream_states
, (void *) stream
, sstate
);
1369 *stream_state
= sstate
;
1371 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1378 struct trimmer_iterator_stream_state
*get_stream_state_entry(
1379 struct trimmer_iterator
*trimmer_it
,
1380 const struct bt_stream
*stream
)
1382 struct trimmer_iterator_stream_state
*sstate
;
1384 BT_ASSERT_DBG(stream
);
1385 sstate
= g_hash_table_lookup(trimmer_it
->stream_states
, stream
);
1386 BT_ASSERT_DBG(sstate
);
1392 * Handles a message which is associated to a given stream state. This
1393 * _could_ make the iterator's output message queue grow; this could
1394 * also consume the message without pushing anything to this queue, only
1395 * modifying the stream state.
1397 * This function consumes the `msg` reference, _whatever the outcome_.
1399 * If non-NULL, `ns_from_origin` is the message's time, as given by
1400 * get_msg_ns_from_origin(). If NULL, the message doesn't have a time.
1402 * This function sets `reached_end` if handling this message made the
1403 * iterator reach the end of the trimming range. Note that the output
1404 * message queue could contain messages even if this function sets
1408 bt_message_iterator_class_next_method_status
1409 handle_message_with_stream(
1410 struct trimmer_iterator
*trimmer_it
, const bt_message
*msg
,
1411 const struct bt_stream
*stream
, const int64_t *ns_from_origin
,
1414 bt_message_iterator_class_next_method_status status
=
1415 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1416 bt_message_type msg_type
= bt_message_get_type(msg
);
1418 struct trimmer_iterator_stream_state
*sstate
= NULL
;
1421 * Retrieve the stream's state - except if the message is stream
1422 * beginning, in which case we don't know about about this stream yet.
1424 if (msg_type
!= BT_MESSAGE_TYPE_STREAM_BEGINNING
) {
1425 sstate
= get_stream_state_entry(trimmer_it
, stream
);
1429 case BT_MESSAGE_TYPE_EVENT
:
1431 * Event messages always have a clock snapshot if the stream
1432 * class has a clock class. And we know it has, otherwise we
1433 * couldn't be using the trimmer component.
1435 BT_ASSERT_DBG(ns_from_origin
);
1437 if (G_UNLIKELY(!trimmer_it
->end
.is_infinite
&&
1438 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1439 status
= end_iterator_streams(trimmer_it
);
1440 *reached_end
= true;
1444 sstate
->seen_clock_snapshot
= true;
1446 push_message(trimmer_it
, msg
);
1450 case BT_MESSAGE_TYPE_PACKET_BEGINNING
:
1452 * Packet beginning messages won't have a clock snapshot if
1453 * stream_class->packets_have_beginning_default_clock_snapshot
1454 * is false. But for now, assume they always do.
1456 BT_ASSERT(ns_from_origin
);
1457 BT_ASSERT(!sstate
->cur_packet
);
1459 if (G_UNLIKELY(!trimmer_it
->end
.is_infinite
&&
1460 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1461 status
= end_iterator_streams(trimmer_it
);
1462 *reached_end
= true;
1466 sstate
->cur_packet
=
1467 bt_message_packet_beginning_borrow_packet_const(msg
);
1468 bt_packet_get_ref(sstate
->cur_packet
);
1470 sstate
->seen_clock_snapshot
= true;
1472 push_message(trimmer_it
, msg
);
1476 case BT_MESSAGE_TYPE_PACKET_END
:
1478 * Packet end messages won't have a clock snapshot if
1479 * stream_class->packets_have_end_default_clock_snapshot
1480 * is false. But for now, assume they always do.
1482 BT_ASSERT(ns_from_origin
);
1483 BT_ASSERT(sstate
->cur_packet
);
1485 if (G_UNLIKELY(!trimmer_it
->end
.is_infinite
&&
1486 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1487 status
= end_iterator_streams(trimmer_it
);
1488 *reached_end
= true;
1492 BT_PACKET_PUT_REF_AND_RESET(sstate
->cur_packet
);
1494 sstate
->seen_clock_snapshot
= true;
1496 push_message(trimmer_it
, msg
);
1500 case BT_MESSAGE_TYPE_DISCARDED_EVENTS
:
1501 case BT_MESSAGE_TYPE_DISCARDED_PACKETS
:
1504 * `ns_from_origin` is the message's time range's
1505 * beginning time here.
1507 int64_t end_ns_from_origin
;
1508 const bt_clock_snapshot
*end_cs
;
1510 BT_ASSERT(ns_from_origin
);
1512 sstate
->seen_clock_snapshot
= true;
1514 if (bt_message_get_type(msg
) ==
1515 BT_MESSAGE_TYPE_DISCARDED_EVENTS
) {
1517 * Safe to ignore the return value because we
1518 * know there's a default clock and it's always
1521 end_cs
= bt_message_discarded_events_borrow_end_default_clock_snapshot_const(
1525 * Safe to ignore the return value because we
1526 * know there's a default clock and it's always
1529 end_cs
= bt_message_discarded_packets_borrow_end_default_clock_snapshot_const(
1533 if (bt_clock_snapshot_get_ns_from_origin(end_cs
,
1534 &end_ns_from_origin
)) {
1535 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1539 if (!trimmer_it
->end
.is_infinite
&&
1540 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
) {
1541 status
= end_iterator_streams(trimmer_it
);
1542 *reached_end
= true;
1546 if (!trimmer_it
->end
.is_infinite
&&
1547 end_ns_from_origin
> trimmer_it
->end
.ns_from_origin
) {
1549 * This message's end time is outside the
1550 * trimming time range: replace it with a new
1551 * message having an end time equal to the
1552 * trimming time range's end and without a
1555 const bt_clock_class
*clock_class
=
1556 bt_clock_snapshot_borrow_clock_class_const(
1558 const bt_clock_snapshot
*begin_cs
;
1559 bt_message
*new_msg
;
1560 uint64_t end_raw_value
;
1562 ret
= clock_raw_value_from_ns_from_origin(clock_class
,
1563 trimmer_it
->end
.ns_from_origin
, &end_raw_value
);
1565 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1569 if (msg_type
== BT_MESSAGE_TYPE_DISCARDED_EVENTS
) {
1570 begin_cs
= bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
1572 new_msg
= bt_message_discarded_events_create_with_default_clock_snapshots(
1573 trimmer_it
->self_msg_iter
,
1575 bt_clock_snapshot_get_value(begin_cs
),
1578 begin_cs
= bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
1580 new_msg
= bt_message_discarded_packets_create_with_default_clock_snapshots(
1581 trimmer_it
->self_msg_iter
,
1583 bt_clock_snapshot_get_value(begin_cs
),
1588 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR
;
1592 /* Replace the original message */
1593 BT_MESSAGE_MOVE_REF(msg
, new_msg
);
1596 push_message(trimmer_it
, msg
);
1601 case BT_MESSAGE_TYPE_STREAM_BEGINNING
:
1603 * If this message has a time and this time is greater than the
1604 * trimmer's end bound, it triggers the end of the trim window.
1606 if (G_UNLIKELY(ns_from_origin
&& !trimmer_it
->end
.is_infinite
&&
1607 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1608 status
= end_iterator_streams(trimmer_it
);
1609 *reached_end
= true;
1613 /* Learn about this stream. */
1614 status
= create_stream_state_entry(trimmer_it
, stream
, &sstate
);
1615 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1619 if (ns_from_origin
) {
1620 sstate
->seen_clock_snapshot
= true;
1623 push_message(trimmer_it
, msg
);
1626 case BT_MESSAGE_TYPE_STREAM_END
:
1631 * If this message has a time and this time is greater than the
1632 * trimmer's end bound, it triggers the end of the trim window.
1634 if (G_UNLIKELY(ns_from_origin
&& !trimmer_it
->end
.is_infinite
&&
1635 *ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1636 status
= end_iterator_streams(trimmer_it
);
1637 *reached_end
= true;
1642 * Either the stream end message's time is within the trimmer's
1643 * bounds, or it doesn't have a time. In both cases, pass
1644 * the message unmodified.
1646 push_message(trimmer_it
, msg
);
1649 /* Forget about this stream. */
1650 removed
= g_hash_table_remove(trimmer_it
->stream_states
, sstate
->stream
);
1659 /* We release the message's reference whatever the outcome */
1660 bt_message_put_ref(msg
);
1665 * Handles an input message. This _could_ make the iterator's output
1666 * message queue grow; this could also consume the message without
1667 * pushing anything to this queue, only modifying the stream state.
1669 * This function consumes the `msg` reference, _whatever the outcome_.
1671 * This function sets `reached_end` if handling this message made the
1672 * iterator reach the end of the trimming range. Note that the output
1673 * message queue could contain messages even if this function sets
1677 bt_message_iterator_class_next_method_status
handle_message(
1678 struct trimmer_iterator
*trimmer_it
, const bt_message
*msg
,
1681 bt_message_iterator_class_next_method_status status
;
1682 const bt_stream
*stream
= NULL
;
1683 int64_t ns_from_origin
= INT64_MIN
;
1684 bool has_ns_from_origin
= false;
1687 /* Find message's associated stream */
1688 switch (bt_message_get_type(msg
)) {
1689 case BT_MESSAGE_TYPE_EVENT
:
1690 stream
= bt_event_borrow_stream_const(
1691 bt_message_event_borrow_event_const(msg
));
1693 case BT_MESSAGE_TYPE_PACKET_BEGINNING
:
1694 stream
= bt_packet_borrow_stream_const(
1695 bt_message_packet_beginning_borrow_packet_const(msg
));
1697 case BT_MESSAGE_TYPE_PACKET_END
:
1698 stream
= bt_packet_borrow_stream_const(
1699 bt_message_packet_end_borrow_packet_const(msg
));
1701 case BT_MESSAGE_TYPE_DISCARDED_EVENTS
:
1702 stream
= bt_message_discarded_events_borrow_stream_const(msg
);
1704 case BT_MESSAGE_TYPE_DISCARDED_PACKETS
:
1705 stream
= bt_message_discarded_packets_borrow_stream_const(msg
);
1707 case BT_MESSAGE_TYPE_STREAM_BEGINNING
:
1708 stream
= bt_message_stream_beginning_borrow_stream_const(msg
);
1710 case BT_MESSAGE_TYPE_STREAM_END
:
1711 stream
= bt_message_stream_end_borrow_stream_const(msg
);
1717 /* Retrieve the message's time */
1718 ret
= get_msg_ns_from_origin(msg
, &ns_from_origin
, &has_ns_from_origin
);
1719 if (G_UNLIKELY(ret
)) {
1720 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR
;
1724 if (G_LIKELY(stream
)) {
1725 /* Message associated to a stream */
1726 status
= handle_message_with_stream(trimmer_it
, msg
,
1727 stream
, has_ns_from_origin
? &ns_from_origin
: NULL
, reached_end
);
1730 * handle_message_with_stream_state() unconditionally
1736 * Message not associated to a stream (message iterator
1739 if (G_UNLIKELY(ns_from_origin
> trimmer_it
->end
.ns_from_origin
)) {
1740 BT_MESSAGE_PUT_REF_AND_RESET(msg
);
1741 status
= end_iterator_streams(trimmer_it
);
1742 *reached_end
= true;
1744 push_message(trimmer_it
, msg
);
1745 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1751 /* We release the message's reference whatever the outcome */
1752 bt_message_put_ref(msg
);
1757 void fill_message_array_from_output_messages(
1758 struct trimmer_iterator
*trimmer_it
,
1759 bt_message_array_const msgs
, uint64_t capacity
, uint64_t *count
)
1764 * Move auto-seek messages to the output array (which is this
1765 * iterator's base message array).
1767 while (capacity
> 0 && !g_queue_is_empty(trimmer_it
->output_messages
)) {
1768 msgs
[*count
] = pop_message(trimmer_it
);
1773 BT_ASSERT_DBG(*count
> 0);
1777 bt_message_iterator_class_next_method_status
state_ending(
1778 struct trimmer_iterator
*trimmer_it
,
1779 bt_message_array_const msgs
, uint64_t capacity
,
1782 bt_message_iterator_class_next_method_status status
=
1783 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1785 if (g_queue_is_empty(trimmer_it
->output_messages
)) {
1786 trimmer_it
->state
= TRIMMER_ITERATOR_STATE_ENDED
;
1787 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END
;
1791 fill_message_array_from_output_messages(trimmer_it
, msgs
,
1799 bt_message_iterator_class_next_method_status
1800 state_trim(struct trimmer_iterator
*trimmer_it
,
1801 bt_message_array_const msgs
, uint64_t capacity
,
1804 bt_message_iterator_class_next_method_status status
=
1805 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1806 bt_message_array_const my_msgs
;
1809 bool reached_end
= false;
1811 while (g_queue_is_empty(trimmer_it
->output_messages
)) {
1812 status
= (int) bt_message_iterator_next(
1813 trimmer_it
->upstream_iter
, &my_msgs
, &my_count
);
1814 if (G_UNLIKELY(status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
)) {
1815 if (status
== BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END
) {
1816 status
= end_iterator_streams(trimmer_it
);
1817 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1822 TRIMMER_ITERATOR_STATE_ENDING
;
1823 status
= state_ending(trimmer_it
, msgs
,
1830 BT_ASSERT_DBG(my_count
> 0);
1832 for (i
= 0; i
< my_count
; i
++) {
1833 status
= handle_message(trimmer_it
, my_msgs
[i
],
1837 * handle_message() unconditionally consumes the
1838 * message reference.
1842 if (G_UNLIKELY(status
!=
1843 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
)) {
1844 put_messages(my_msgs
, my_count
);
1848 if (G_UNLIKELY(reached_end
)) {
1850 * This message's time was passed the
1851 * trimming time range's end time: we
1852 * are done. Their might still be
1853 * messages in the output message queue,
1854 * so move to the "ending" state and
1855 * apply it immediately since
1856 * state_trim() is called within the
1859 put_messages(my_msgs
, my_count
);
1861 TRIMMER_ITERATOR_STATE_ENDING
;
1862 status
= state_ending(trimmer_it
, msgs
,
1870 * There's at least one message in the output message queue:
1871 * move the messages to the output message array.
1873 BT_ASSERT_DBG(!g_queue_is_empty(trimmer_it
->output_messages
));
1874 fill_message_array_from_output_messages(trimmer_it
, msgs
,
1882 bt_message_iterator_class_next_method_status
trimmer_msg_iter_next(
1883 bt_self_message_iterator
*self_msg_iter
,
1884 bt_message_array_const msgs
, uint64_t capacity
,
1887 struct trimmer_iterator
*trimmer_it
=
1888 bt_self_message_iterator_get_data(self_msg_iter
);
1889 bt_message_iterator_class_next_method_status status
=
1890 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
;
1892 BT_ASSERT_DBG(trimmer_it
);
1894 if (G_LIKELY(trimmer_it
->state
== TRIMMER_ITERATOR_STATE_TRIM
)) {
1895 status
= state_trim(trimmer_it
, msgs
, capacity
, count
);
1896 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1900 switch (trimmer_it
->state
) {
1901 case TRIMMER_ITERATOR_STATE_SET_BOUNDS_NS_FROM_ORIGIN
:
1902 status
= state_set_trimmer_iterator_bounds(trimmer_it
);
1903 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1907 status
= state_seek_initially(trimmer_it
);
1908 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1912 status
= state_trim(trimmer_it
, msgs
, capacity
, count
);
1913 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1918 case TRIMMER_ITERATOR_STATE_SEEK_INITIALLY
:
1919 status
= state_seek_initially(trimmer_it
);
1920 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1924 status
= state_trim(trimmer_it
, msgs
, capacity
, count
);
1925 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1930 case TRIMMER_ITERATOR_STATE_ENDING
:
1931 status
= state_ending(trimmer_it
, msgs
, capacity
,
1933 if (status
!= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK
) {
1938 case TRIMMER_ITERATOR_STATE_ENDED
:
1939 status
= BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END
;
1951 void trimmer_msg_iter_finalize(bt_self_message_iterator
*self_msg_iter
)
1953 struct trimmer_iterator
*trimmer_it
=
1954 bt_self_message_iterator_get_data(self_msg_iter
);
1956 BT_ASSERT(trimmer_it
);
1957 destroy_trimmer_iterator(trimmer_it
);