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