src.ctf.fs: rename ctf_fs_ds_file_destroy to ~ctf_fs_ds_file
[babeltrace.git] / src / plugins / ctf / fs-src / fs.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2015-2017 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Babeltrace CTF file system Reader Component
8 */
9
10 #include <glib.h>
11 #include <inttypes.h>
12
13 #include <babeltrace2/babeltrace.h>
14
15 #include "common/assert.h"
16 #include "common/common.h"
17 #include "common/uuid.h"
18 #include "cpp-common/bt2s/make-unique.hpp"
19
20 #include "plugins/common/param-validation/param-validation.h"
21
22 #include "../common/src/metadata/tsdl/ctf-meta-configure-ir-trace.hpp"
23 #include "../common/src/msg-iter/msg-iter.hpp"
24 #include "data-stream-file.hpp"
25 #include "file.hpp"
26 #include "fs.hpp"
27 #include "metadata.hpp"
28 #include "query.hpp"
29
30 struct tracer_info
31 {
32 const char *name;
33 int64_t major;
34 int64_t minor;
35 int64_t patch;
36 };
37
38 static void ctf_fs_msg_iter_data_destroy(struct ctf_fs_msg_iter_data *msg_iter_data)
39 {
40 if (!msg_iter_data) {
41 return;
42 }
43
44 if (msg_iter_data->msg_iter) {
45 ctf_msg_iter_destroy(msg_iter_data->msg_iter);
46 }
47
48 if (msg_iter_data->msg_iter_medops_data) {
49 ctf_fs_ds_group_medops_data_destroy(msg_iter_data->msg_iter_medops_data);
50 }
51
52 delete msg_iter_data;
53 }
54
55 static bt_message_iterator_class_next_method_status
56 ctf_fs_iterator_next_one(struct ctf_fs_msg_iter_data *msg_iter_data, const bt_message **out_msg)
57 {
58 bt_message_iterator_class_next_method_status status;
59 enum ctf_msg_iter_status msg_iter_status;
60
61 msg_iter_status = ctf_msg_iter_get_next_message(msg_iter_data->msg_iter, out_msg);
62
63 switch (msg_iter_status) {
64 case CTF_MSG_ITER_STATUS_OK:
65 /* Cool, message has been written to *out_msg. */
66 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
67 break;
68
69 case CTF_MSG_ITER_STATUS_EOF:
70 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END;
71 break;
72
73 case CTF_MSG_ITER_STATUS_AGAIN:
74 /*
75 * Should not make it this far as this is
76 * medium-specific; there is nothing for the user to do
77 * and it should have been handled upstream.
78 */
79 bt_common_abort();
80
81 case CTF_MSG_ITER_STATUS_ERROR:
82 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
83 "Failed to get next message from CTF message iterator.");
84 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
85 break;
86
87 case CTF_MSG_ITER_STATUS_MEMORY_ERROR:
88 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
89 "Failed to get next message from CTF message iterator.");
90 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
91 break;
92
93 default:
94 bt_common_abort();
95 }
96
97 return status;
98 }
99
100 bt_message_iterator_class_next_method_status
101 ctf_fs_iterator_next(bt_self_message_iterator *iterator, bt_message_array_const msgs,
102 uint64_t capacity, uint64_t *count)
103 {
104 try {
105 bt_message_iterator_class_next_method_status status;
106 struct ctf_fs_msg_iter_data *msg_iter_data =
107 (struct ctf_fs_msg_iter_data *) bt_self_message_iterator_get_data(iterator);
108 uint64_t i = 0;
109
110 if (G_UNLIKELY(msg_iter_data->next_saved_error)) {
111 /*
112 * Last time we were called, we hit an error but had some
113 * messages to deliver, so we stashed the error here. Return
114 * it now.
115 */
116 BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(msg_iter_data->next_saved_error);
117 status = msg_iter_data->next_saved_status;
118 goto end;
119 }
120
121 do {
122 status = ctf_fs_iterator_next_one(msg_iter_data, &msgs[i]);
123 if (status == BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK) {
124 i++;
125 }
126 } while (i < capacity && status == BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK);
127
128 if (i > 0) {
129 /*
130 * Even if ctf_fs_iterator_next_one() returned something
131 * else than BT_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK, we
132 * accumulated message objects in the output
133 * message array, so we need to return
134 * BT_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK so that they are
135 * transferred to downstream. This other status occurs
136 * again the next time muxer_msg_iter_do_next() is
137 * called, possibly without any accumulated
138 * message, in which case we'll return it.
139 */
140 if (status < 0) {
141 /*
142 * Save this error for the next _next call. Assume that
143 * this component always appends error causes when
144 * returning an error status code, which will cause the
145 * current thread error to be non-NULL.
146 */
147 msg_iter_data->next_saved_error = bt_current_thread_take_error();
148 BT_ASSERT(msg_iter_data->next_saved_error);
149 msg_iter_data->next_saved_status = status;
150 }
151
152 *count = i;
153 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
154 }
155
156 end:
157 return status;
158 return status;
159 } catch (const std::bad_alloc&) {
160 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
161 } catch (const bt2::Error&) {
162 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
163 }
164 }
165
166 bt_message_iterator_class_seek_beginning_method_status
167 ctf_fs_iterator_seek_beginning(bt_self_message_iterator *it)
168 {
169 try {
170 struct ctf_fs_msg_iter_data *msg_iter_data =
171 (struct ctf_fs_msg_iter_data *) bt_self_message_iterator_get_data(it);
172
173 BT_ASSERT(msg_iter_data);
174
175 ctf_msg_iter_reset(msg_iter_data->msg_iter);
176 ctf_fs_ds_group_medops_data_reset(msg_iter_data->msg_iter_medops_data);
177
178 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_OK;
179 } catch (const std::bad_alloc&) {
180 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_MEMORY_ERROR;
181 } catch (const bt2::Error&) {
182 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_ERROR;
183 }
184 }
185
186 void ctf_fs_iterator_finalize(bt_self_message_iterator *it)
187 {
188 ctf_fs_msg_iter_data_destroy(
189 (struct ctf_fs_msg_iter_data *) bt_self_message_iterator_get_data(it));
190 }
191
192 static bt_message_iterator_class_initialize_method_status
193 ctf_msg_iter_medium_status_to_msg_iter_initialize_status(enum ctf_msg_iter_medium_status status)
194 {
195 switch (status) {
196 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
197 case CTF_MSG_ITER_MEDIUM_STATUS_AGAIN:
198 case CTF_MSG_ITER_MEDIUM_STATUS_ERROR:
199 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
200 case CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR:
201 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
202 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
203 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
204 }
205
206 bt_common_abort();
207 }
208
209 bt_message_iterator_class_initialize_method_status
210 ctf_fs_iterator_init(bt_self_message_iterator *self_msg_iter,
211 bt_self_message_iterator_configuration *config,
212 bt_self_component_port_output *self_port)
213 {
214 try {
215 struct ctf_fs_port_data *port_data;
216 bt_message_iterator_class_initialize_method_status status;
217 enum ctf_msg_iter_medium_status medium_status;
218
219 port_data = (struct ctf_fs_port_data *) bt_self_component_port_get_data(
220 bt_self_component_port_output_as_self_component_port(self_port));
221 BT_ASSERT(port_data);
222
223 ctf_fs_msg_iter_data *msg_iter_data = new ctf_fs_msg_iter_data {self_msg_iter};
224 msg_iter_data->ds_file_group = port_data->ds_file_group;
225
226 medium_status = ctf_fs_ds_group_medops_data_create(msg_iter_data->ds_file_group,
227 self_msg_iter, msg_iter_data->logger,
228 &msg_iter_data->msg_iter_medops_data);
229 BT_ASSERT(medium_status == CTF_MSG_ITER_MEDIUM_STATUS_OK ||
230 medium_status == CTF_MSG_ITER_MEDIUM_STATUS_ERROR ||
231 medium_status == CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR);
232 if (medium_status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
233 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
234 "Failed to create ctf_fs_ds_group_medops");
235 status = ctf_msg_iter_medium_status_to_msg_iter_initialize_status(medium_status);
236 goto error;
237 }
238
239 msg_iter_data->msg_iter = ctf_msg_iter_create(
240 msg_iter_data->ds_file_group->ctf_fs_trace->metadata->tc,
241 bt_common_get_page_size(static_cast<int>(msg_iter_data->logger.level())) * 8,
242 ctf_fs_ds_group_medops, msg_iter_data->msg_iter_medops_data, self_msg_iter,
243 msg_iter_data->logger);
244 if (!msg_iter_data->msg_iter) {
245 BT_CPPLOGE_APPEND_CAUSE_SPEC(msg_iter_data->logger,
246 "Cannot create a CTF message iterator.");
247 status = BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
248 goto error;
249 }
250
251 /*
252 * This iterator can seek forward if its stream class has a default
253 * clock class.
254 */
255 if (msg_iter_data->ds_file_group->sc->default_clock_class) {
256 bt_self_message_iterator_configuration_set_can_seek_forward(config, true);
257 }
258
259 bt_self_message_iterator_set_data(self_msg_iter, msg_iter_data);
260 msg_iter_data = NULL;
261
262 status = BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
263 goto end;
264
265 error:
266 bt_self_message_iterator_set_data(self_msg_iter, NULL);
267
268 end:
269 ctf_fs_msg_iter_data_destroy(msg_iter_data);
270 return status;
271 } catch (const std::bad_alloc&) {
272 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
273 } catch (const bt2::Error&) {
274 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
275 }
276 }
277
278 static void ctf_fs_trace_destroy(struct ctf_fs_trace *ctf_fs_trace)
279 {
280 if (!ctf_fs_trace) {
281 return;
282 }
283
284 BT_TRACE_PUT_REF_AND_RESET(ctf_fs_trace->trace);
285
286 if (ctf_fs_trace->path) {
287 g_string_free(ctf_fs_trace->path, TRUE);
288 }
289
290 if (ctf_fs_trace->metadata) {
291 ctf_fs_metadata_fini(ctf_fs_trace->metadata);
292 delete ctf_fs_trace->metadata;
293 }
294
295 delete ctf_fs_trace;
296 }
297
298 void ctf_fs_trace_deleter::operator()(ctf_fs_trace * const trace) noexcept
299 {
300 ctf_fs_trace_destroy(trace);
301 }
302
303 void ctf_fs_destroy(struct ctf_fs_component *ctf_fs)
304 {
305 if (!ctf_fs) {
306 return;
307 }
308
309 delete ctf_fs;
310 }
311
312 void ctf_fs_component_deleter::operator()(ctf_fs_component *comp)
313 {
314 ctf_fs_destroy(comp);
315 }
316
317 ctf_fs_component::UP ctf_fs_component_create(const bt2c::Logger& parentLogger)
318 {
319 return ctf_fs_component::UP {new ctf_fs_component {parentLogger}};
320 }
321
322 void ctf_fs_finalize(bt_self_component_source *component)
323 {
324 ctf_fs_destroy((struct ctf_fs_component *) bt_self_component_get_data(
325 bt_self_component_source_as_self_component(component)));
326 }
327
328 bt2c::GCharUP ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group)
329 {
330 GString *name = g_string_new(NULL);
331
332 /*
333 * The unique port name is generated by concatenating unique identifiers
334 * for:
335 *
336 * - the trace
337 * - the stream class
338 * - the stream
339 */
340
341 /* For the trace, use the uuid if present, else the path. */
342 if (ds_file_group->ctf_fs_trace->metadata->tc->is_uuid_set) {
343 char uuid_str[BT_UUID_STR_LEN + 1];
344
345 bt_uuid_to_str(ds_file_group->ctf_fs_trace->metadata->tc->uuid, uuid_str);
346 g_string_assign(name, uuid_str);
347 } else {
348 g_string_assign(name, ds_file_group->ctf_fs_trace->path->str);
349 }
350
351 /*
352 * For the stream class, use the id if present. We can omit this field
353 * otherwise, as there will only be a single stream class.
354 */
355 if (ds_file_group->sc->id != UINT64_C(-1)) {
356 g_string_append_printf(name, " | %" PRIu64, ds_file_group->sc->id);
357 }
358
359 /* For the stream, use the id if present, else, use the path. */
360 if (ds_file_group->stream_id != UINT64_C(-1)) {
361 g_string_append_printf(name, " | %" PRIu64, ds_file_group->stream_id);
362 } else {
363 BT_ASSERT(ds_file_group->ds_file_infos.size() == 1);
364 const auto& ds_file_info = *ds_file_group->ds_file_infos[0];
365 g_string_append_printf(name, " | %s", ds_file_info.path.c_str());
366 }
367
368 return bt2c::GCharUP {g_string_free(name, FALSE)};
369 }
370
371 static int create_one_port_for_trace(struct ctf_fs_component *ctf_fs,
372 struct ctf_fs_ds_file_group *ds_file_group,
373 bt_self_component_source *self_comp_src)
374 {
375 int ret = 0;
376 ctf_fs_port_data::UP port_data;
377
378 bt2c::GCharUP port_name = ctf_fs_make_port_name(ds_file_group);
379 if (!port_name) {
380 goto error;
381 }
382
383 BT_CPPLOGI_SPEC(ctf_fs->logger, "Creating one port named `{}`", port_name.get());
384
385 /* Create output port for this file */
386 port_data = bt2s::make_unique<ctf_fs_port_data>();
387 port_data->ctf_fs = ctf_fs;
388 port_data->ds_file_group = ds_file_group;
389 ret = bt_self_component_source_add_output_port(self_comp_src, port_name.get(), port_data.get(),
390 NULL);
391 if (ret) {
392 goto error;
393 }
394
395 ctf_fs->port_data.emplace_back(std::move(port_data));
396 goto end;
397
398 error:
399 ret = -1;
400
401 end:
402 return ret;
403 }
404
405 static int create_ports_for_trace(struct ctf_fs_component *ctf_fs,
406 struct ctf_fs_trace *ctf_fs_trace,
407 bt_self_component_source *self_comp_src)
408 {
409 int ret = 0;
410
411 /* Create one output port for each stream file group */
412 for (const auto& ds_file_group : ctf_fs_trace->ds_file_groups) {
413 ret = create_one_port_for_trace(ctf_fs, ds_file_group.get(), self_comp_src);
414 if (ret) {
415 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Cannot create output port.");
416 goto end;
417 }
418 }
419
420 end:
421 return ret;
422 }
423
424 /*
425 * Insert ds_file_info in ds_file_group's list of ds_file_infos at the right
426 * place to keep it sorted.
427 */
428
429 static void ds_file_group_insert_ds_file_info_sorted(struct ctf_fs_ds_file_group *ds_file_group,
430 ctf_fs_ds_file_info::UP ds_file_info)
431 {
432 /* Find the spot where to insert this ds_file_info. */
433 auto it = ds_file_group->ds_file_infos.begin();
434
435 for (; it != ds_file_group->ds_file_infos.end(); ++it) {
436 const ctf_fs_ds_file_info& other_ds_file_info = **it;
437
438 if (ds_file_info->begin_ns < other_ds_file_info.begin_ns) {
439 break;
440 }
441 }
442
443 ds_file_group->ds_file_infos.insert(it, std::move(ds_file_info));
444 }
445
446 static bool ds_index_entries_equal(const struct ctf_fs_ds_index_entry *left,
447 const struct ctf_fs_ds_index_entry *right)
448 {
449 if (left->packetSize != right->packetSize) {
450 return false;
451 }
452
453 if (left->timestamp_begin != right->timestamp_begin) {
454 return false;
455 }
456
457 if (left->timestamp_end != right->timestamp_end) {
458 return false;
459 }
460
461 if (left->packet_seq_num != right->packet_seq_num) {
462 return false;
463 }
464
465 return true;
466 }
467
468 /*
469 * Insert `entry` into `index`, without duplication.
470 *
471 * The entry is inserted only if there isn't an identical entry already.
472 *
473 * In any case, the ownership of `entry` is transferred to this function. So if
474 * the entry is not inserted, it is freed.
475 */
476
477 static void ds_index_insert_ds_index_entry_sorted(struct ctf_fs_ds_index *index,
478 ctf_fs_ds_index_entry::UP entry)
479 {
480 /* Find the spot where to insert this index entry. */
481 auto otherEntry = index->entries.begin();
482 for (; otherEntry != index->entries.end(); ++otherEntry) {
483 if (entry->timestamp_begin_ns <= (*otherEntry)->timestamp_begin_ns) {
484 break;
485 }
486 }
487
488 /*
489 * Insert the entry only if a duplicate doesn't already exist.
490 *
491 * There can be duplicate packets if reading multiple overlapping
492 * snapshots of the same trace. We then want the index to contain
493 * a reference to only one copy of that packet.
494 */
495 if (otherEntry == index->entries.end() ||
496 !ds_index_entries_equal(entry.get(), otherEntry->get())) {
497 index->entries.insert(otherEntry, std::move(entry));
498 }
499 }
500
501 static void merge_ctf_fs_ds_indexes(struct ctf_fs_ds_index *dest, ctf_fs_ds_index::UP src)
502 {
503 for (auto& entry : src->entries) {
504 ds_index_insert_ds_index_entry_sorted(dest, std::move(entry));
505 }
506 }
507
508 static int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace, const char *path)
509 {
510 int64_t stream_instance_id = -1;
511 int64_t begin_ns = -1;
512 struct ctf_fs_ds_file_group *ds_file_group = NULL;
513 ctf_fs_ds_file_group::UP new_ds_file_group;
514 int ret;
515 struct ctf_fs_ds_file *ds_file = NULL;
516 ctf_fs_ds_file_info::UP ds_file_info;
517 ctf_fs_ds_index::UP index;
518 struct ctf_msg_iter *msg_iter = NULL;
519 struct ctf_stream_class *sc = NULL;
520 struct ctf_msg_iter_packet_properties props;
521
522 /*
523 * Create a temporary ds_file to read some properties about the data
524 * stream file.
525 */
526 ds_file =
527 ctf_fs_ds_file_create(ctf_fs_trace, bt2::Stream::Shared {}, path, ctf_fs_trace->logger);
528 if (!ds_file) {
529 goto error;
530 }
531
532 /* Create a temporary iterator to read the ds_file. */
533 msg_iter = ctf_msg_iter_create(
534 ctf_fs_trace->metadata->tc,
535 bt_common_get_page_size(static_cast<int>(ctf_fs_trace->logger.level())) * 8,
536 ctf_fs_ds_file_medops, ds_file, nullptr, ctf_fs_trace->logger);
537 if (!msg_iter) {
538 BT_CPPLOGE_STR_SPEC(ctf_fs_trace->logger, "Cannot create a CTF message iterator.");
539 goto error;
540 }
541
542 ctf_msg_iter_set_dry_run(msg_iter, true);
543
544 ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
545 if (ret) {
546 BT_CPPLOGE_APPEND_CAUSE_SPEC(
547 ctf_fs_trace->logger,
548 "Cannot get stream file's first packet's header and context fields (`{}`).", path);
549 goto error;
550 }
551
552 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props.stream_class_id);
553 BT_ASSERT(sc);
554 stream_instance_id = props.data_stream_id;
555
556 if (props.snapshots.beginning_clock != UINT64_C(-1)) {
557 BT_ASSERT(sc->default_clock_class);
558 ret = bt_util_clock_cycles_to_ns_from_origin(
559 props.snapshots.beginning_clock, sc->default_clock_class->frequency,
560 sc->default_clock_class->offset_seconds, sc->default_clock_class->offset_cycles,
561 &begin_ns);
562 if (ret) {
563 BT_CPPLOGE_APPEND_CAUSE_SPEC(
564 ctf_fs_trace->logger,
565 "Cannot convert clock cycles to nanoseconds from origin (`{}`).", path);
566 goto error;
567 }
568 }
569
570 ds_file_info = ctf_fs_ds_file_info_create(path, begin_ns);
571 if (!ds_file_info) {
572 goto error;
573 }
574
575 index = ctf_fs_ds_file_build_index(ds_file, ds_file_info.get(), msg_iter);
576 if (!index) {
577 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Failed to index CTF stream file \'{}\'",
578 ds_file->file->path);
579 goto error;
580 }
581
582 if (begin_ns == -1) {
583 /*
584 * No beginning timestamp to sort the stream files
585 * within a stream file group, so consider that this
586 * file must be the only one within its group.
587 */
588 stream_instance_id = -1;
589 }
590
591 if (stream_instance_id == -1) {
592 /*
593 * No stream instance ID or no beginning timestamp:
594 * create a unique stream file group for this stream
595 * file because, even if there's a stream instance ID,
596 * there's no timestamp to order the file within its
597 * group.
598 */
599 new_ds_file_group =
600 ctf_fs_ds_file_group_create(ctf_fs_trace, sc, UINT64_C(-1), std::move(index));
601
602 if (!new_ds_file_group) {
603 goto error;
604 }
605
606 ds_file_group_insert_ds_file_info_sorted(new_ds_file_group.get(), std::move(ds_file_info));
607 ctf_fs_trace->ds_file_groups.emplace_back(std::move(new_ds_file_group));
608 goto end;
609 }
610
611 BT_ASSERT(stream_instance_id != -1);
612 BT_ASSERT(begin_ns != -1);
613
614 /* Find an existing stream file group with this ID */
615 for (const auto& candidate : ctf_fs_trace->ds_file_groups) {
616 if (candidate->sc == sc && candidate->stream_id == stream_instance_id) {
617 ds_file_group = candidate.get();
618 break;
619 }
620 }
621
622 if (!ds_file_group) {
623 new_ds_file_group =
624 ctf_fs_ds_file_group_create(ctf_fs_trace, sc, stream_instance_id, std::move(index));
625 if (!new_ds_file_group) {
626 goto error;
627 }
628
629 ds_file_group = new_ds_file_group.get();
630 ctf_fs_trace->ds_file_groups.emplace_back(std::move(new_ds_file_group));
631 } else {
632 merge_ctf_fs_ds_indexes(ds_file_group->index.get(), std::move(index));
633 }
634
635 ds_file_group_insert_ds_file_info_sorted(ds_file_group, std::move(ds_file_info));
636
637 goto end;
638
639 error:
640 ret = -1;
641
642 end:
643 delete ds_file;
644
645 if (msg_iter) {
646 ctf_msg_iter_destroy(msg_iter);
647 }
648
649 return ret;
650 }
651
652 static int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
653 {
654 int ret = 0;
655 const char *basename;
656 GError *error = NULL;
657 GDir *dir = NULL;
658
659 /* Check each file in the path directory, except specific ones */
660 dir = g_dir_open(ctf_fs_trace->path->str, 0, &error);
661 if (!dir) {
662 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
663 "Cannot open directory `{}`: {} (code {})",
664 ctf_fs_trace->path->str, error->message, error->code);
665 goto error;
666 }
667
668 while ((basename = g_dir_read_name(dir))) {
669 if (strcmp(basename, CTF_FS_METADATA_FILENAME) == 0) {
670 /* Ignore the metadata stream. */
671 BT_CPPLOGI_SPEC(ctf_fs_trace->logger,
672 "Ignoring metadata file `{}" G_DIR_SEPARATOR_S "{}`",
673 ctf_fs_trace->path->str, basename);
674 continue;
675 }
676
677 if (basename[0] == '.') {
678 BT_CPPLOGI_SPEC(ctf_fs_trace->logger,
679 "Ignoring hidden file `{}" G_DIR_SEPARATOR_S "{}`",
680 ctf_fs_trace->path->str, basename);
681 continue;
682 }
683
684 /* Create the file. */
685 const auto file = ctf_fs_file_create(ctf_fs_trace->logger);
686 if (!file) {
687 BT_CPPLOGE_APPEND_CAUSE_SPEC(
688 ctf_fs_trace->logger,
689 "Cannot create stream file object for file `{}" G_DIR_SEPARATOR_S "{}`",
690 ctf_fs_trace->path->str, basename);
691 goto error;
692 }
693
694 /* Create full path string. */
695 file->path = fmt::format("{}" G_DIR_SEPARATOR_S "{}", ctf_fs_trace->path->str, basename);
696
697 if (!g_file_test(file->path.c_str(), G_FILE_TEST_IS_REGULAR)) {
698 BT_CPPLOGI_SPEC(ctf_fs_trace->logger, "Ignoring non-regular file `{}`", file->path);
699 continue;
700 }
701
702 ret = ctf_fs_file_open(file.get(), "rb");
703 if (ret) {
704 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Cannot open stream file `{}`",
705 file->path);
706 goto error;
707 }
708
709 if (file->size == 0) {
710 /* Skip empty stream. */
711 BT_CPPLOGI_SPEC(ctf_fs_trace->logger, "Ignoring empty file `{}`", file->path);
712 continue;
713 }
714
715 ret = add_ds_file_to_ds_file_group(ctf_fs_trace, file->path.c_str());
716 if (ret) {
717 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
718 "Cannot add stream file `{}` to stream file group",
719 file->path);
720 goto error;
721 }
722 }
723
724 goto end;
725
726 error:
727 ret = -1;
728
729 end:
730 if (dir) {
731 g_dir_close(dir);
732 dir = NULL;
733 }
734
735 if (error) {
736 g_error_free(error);
737 }
738
739 return ret;
740 }
741
742 static int set_trace_name(bt_trace *trace, const char *name_suffix, const bt2c::Logger& logger)
743 {
744 int ret = 0;
745 const bt_value *val;
746 GString *name;
747
748 name = g_string_new(NULL);
749 if (!name) {
750 BT_CPPLOGE_STR_SPEC(logger, "Failed to allocate a GString.");
751 ret = -1;
752 goto end;
753 }
754
755 /*
756 * Check if we have a trace environment string value named `hostname`.
757 * If so, use it as the trace name's prefix.
758 */
759 val = bt_trace_borrow_environment_entry_value_by_name_const(trace, "hostname");
760 if (val && bt_value_is_string(val)) {
761 g_string_append(name, bt_value_string_get(val));
762
763 if (name_suffix) {
764 g_string_append_c(name, G_DIR_SEPARATOR);
765 }
766 }
767
768 if (name_suffix) {
769 g_string_append(name, name_suffix);
770 }
771
772 ret = bt_trace_set_name(trace, name->str);
773 if (ret) {
774 goto end;
775 }
776
777 goto end;
778
779 end:
780 if (name) {
781 g_string_free(name, TRUE);
782 }
783
784 return ret;
785 }
786
787 static ctf_fs_trace::UP ctf_fs_trace_create(const char *path, const char *name,
788 const ctf::src::ClkClsCfg& clkClsCfg,
789 bt_self_component *selfComp,
790 const bt2c::Logger& parentLogger)
791 {
792 int ret;
793
794 ctf_fs_trace::UP ctf_fs_trace {new struct ctf_fs_trace(parentLogger)};
795 ctf_fs_trace->path = g_string_new(path);
796 if (!ctf_fs_trace->path) {
797 goto error;
798 }
799
800 ctf_fs_trace->metadata = new ctf_fs_metadata;
801 ctf_fs_metadata_init(ctf_fs_trace->metadata);
802
803 ret = ctf_fs_metadata_set_trace_class(selfComp, ctf_fs_trace.get(), clkClsCfg);
804 if (ret) {
805 goto error;
806 }
807
808 if (ctf_fs_trace->metadata->trace_class) {
809 ctf_fs_trace->trace = bt_trace_create(ctf_fs_trace->metadata->trace_class);
810 if (!ctf_fs_trace->trace) {
811 goto error;
812 }
813 }
814
815 if (ctf_fs_trace->trace) {
816 ret = ctf_trace_class_configure_ir_trace(ctf_fs_trace->metadata->tc, ctf_fs_trace->trace);
817 if (ret) {
818 goto error;
819 }
820
821 ret = set_trace_name(ctf_fs_trace->trace, name, ctf_fs_trace->logger);
822 if (ret) {
823 goto error;
824 }
825 }
826
827 ret = create_ds_file_groups(ctf_fs_trace.get());
828 if (ret) {
829 goto error;
830 }
831
832 goto end;
833
834 error:
835 ctf_fs_trace.reset();
836
837 end:
838 return ctf_fs_trace;
839 }
840
841 static int path_is_ctf_trace(const char *path)
842 {
843 GString *metadata_path = g_string_new(NULL);
844 int ret = 0;
845
846 if (!metadata_path) {
847 ret = -1;
848 goto end;
849 }
850
851 g_string_printf(metadata_path, "%s" G_DIR_SEPARATOR_S "%s", path, CTF_FS_METADATA_FILENAME);
852
853 if (g_file_test(metadata_path->str, G_FILE_TEST_IS_REGULAR)) {
854 ret = 1;
855 goto end;
856 }
857
858 end:
859 g_string_free(metadata_path, TRUE);
860 return ret;
861 }
862
863 /* Helper for ctf_fs_component_create_ctf_fs_trace, to handle a single path. */
864
865 static int ctf_fs_component_create_ctf_fs_trace_one_path(struct ctf_fs_component *ctf_fs,
866 const char *path_param,
867 const char *trace_name,
868 std::vector<ctf_fs_trace::UP>& traces,
869 bt_self_component *selfComp)
870 {
871 ctf_fs_trace::UP ctf_fs_trace;
872 int ret;
873 GString *norm_path;
874
875 norm_path = bt_common_normalize_path(path_param, NULL);
876 if (!norm_path) {
877 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to normalize path: `{}`.", path_param);
878 goto error;
879 }
880
881 ret = path_is_ctf_trace(norm_path->str);
882 if (ret < 0) {
883 BT_CPPLOGE_APPEND_CAUSE_SPEC(
884 ctf_fs->logger, "Failed to check if path is a CTF trace: path={}", norm_path->str);
885 goto error;
886 } else if (ret == 0) {
887 BT_CPPLOGE_APPEND_CAUSE_SPEC(
888 ctf_fs->logger, "Path is not a CTF trace (does not contain a metadata file): `{}`.",
889 norm_path->str);
890 goto error;
891 }
892
893 // FIXME: Remove or ifdef for __MINGW32__
894 if (strcmp(norm_path->str, "/") == 0) {
895 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Opening a trace in `/` is not supported.");
896 ret = -1;
897 goto end;
898 }
899
900 ctf_fs_trace = ctf_fs_trace_create(norm_path->str, trace_name, ctf_fs->clkClsCfg, selfComp,
901 ctf_fs->logger);
902 if (!ctf_fs_trace) {
903 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Cannot create trace for `{}`.",
904 norm_path->str);
905 goto error;
906 }
907
908 traces.emplace_back(std::move(ctf_fs_trace));
909
910 ret = 0;
911 goto end;
912
913 error:
914 ret = -1;
915
916 end:
917 if (norm_path) {
918 g_string_free(norm_path, TRUE);
919 }
920
921 return ret;
922 }
923
924 /*
925 * Count the number of stream and event classes defined by this trace's metadata.
926 *
927 * This is used to determine which metadata is the "latest", out of multiple
928 * traces sharing the same UUID. It is assumed that amongst all these metadatas,
929 * a bigger metadata is a superset of a smaller metadata. Therefore, it is
930 * enough to just count the classes.
931 */
932
933 static unsigned int metadata_count_stream_and_event_classes(struct ctf_fs_trace *trace)
934 {
935 unsigned int num = trace->metadata->tc->stream_classes->len;
936 guint i;
937
938 for (i = 0; i < trace->metadata->tc->stream_classes->len; i++) {
939 struct ctf_stream_class *sc =
940 (struct ctf_stream_class *) trace->metadata->tc->stream_classes->pdata[i];
941 num += sc->event_classes->len;
942 }
943
944 return num;
945 }
946
947 /*
948 * Merge the src ds_file_group into dest. This consists of merging their
949 * ds_file_infos, making sure to keep the result sorted.
950 */
951
952 static void merge_ctf_fs_ds_file_groups(struct ctf_fs_ds_file_group *dest,
953 ctf_fs_ds_file_group::UP src)
954 {
955 for (auto& ds_file_info : src->ds_file_infos) {
956 ds_file_group_insert_ds_file_info_sorted(dest, std::move(ds_file_info));
957 }
958
959 /* Merge both indexes. */
960 merge_ctf_fs_ds_indexes(dest->index.get(), std::move(src->index));
961 }
962
963 /* Merge src_trace's data stream file groups into dest_trace's. */
964
965 static int merge_matching_ctf_fs_ds_file_groups(struct ctf_fs_trace *dest_trace,
966 ctf_fs_trace::UP src_trace)
967 {
968 std::vector<ctf_fs_ds_file_group::UP>& dest = dest_trace->ds_file_groups;
969 std::vector<ctf_fs_ds_file_group::UP>& src = src_trace->ds_file_groups;
970 int ret = 0;
971
972 /*
973 * Save the initial length of dest: we only want to check against the
974 * original elements in the inner loop.
975 */
976 size_t dest_len = dest.size();
977
978 for (auto& src_group : src) {
979 struct ctf_fs_ds_file_group *dest_group = NULL;
980
981 /* A stream instance without ID can't match a stream in the other trace. */
982 if (src_group->stream_id != -1) {
983 /* Let's search for a matching ds_file_group in the destination. */
984 for (size_t d_i = 0; d_i < dest_len; ++d_i) {
985 ctf_fs_ds_file_group *candidate_dest = dest[d_i].get();
986
987 /* Can't match a stream instance without ID. */
988 if (candidate_dest->stream_id == -1) {
989 continue;
990 }
991
992 /*
993 * If the two groups have the same stream instance id
994 * and belong to the same stream class (stream instance
995 * ids are per-stream class), they represent the same
996 * stream instance.
997 */
998 if (candidate_dest->stream_id != src_group->stream_id ||
999 candidate_dest->sc->id != src_group->sc->id) {
1000 continue;
1001 }
1002
1003 dest_group = candidate_dest;
1004 break;
1005 }
1006 }
1007
1008 /*
1009 * Didn't find a friend in dest to merge our src_group into?
1010 * Create a new empty one. This can happen if a stream was
1011 * active in the source trace chunk but not in the destination
1012 * trace chunk.
1013 */
1014 if (!dest_group) {
1015 struct ctf_stream_class *sc;
1016
1017 sc = ctf_trace_class_borrow_stream_class_by_id(dest_trace->metadata->tc,
1018 src_group->sc->id);
1019 BT_ASSERT(sc);
1020
1021 auto index = ctf_fs_ds_index_create();
1022 if (!index) {
1023 ret = -1;
1024 goto end;
1025 }
1026
1027 auto new_dest_group =
1028 ctf_fs_ds_file_group_create(dest_trace, sc, src_group->stream_id, std::move(index));
1029
1030 if (!new_dest_group) {
1031 ret = -1;
1032 goto end;
1033 }
1034
1035 dest_group = new_dest_group.get();
1036 dest_trace->ds_file_groups.emplace_back(std::move(new_dest_group));
1037 }
1038
1039 BT_ASSERT(dest_group);
1040 merge_ctf_fs_ds_file_groups(dest_group, std::move(src_group));
1041 }
1042
1043 end:
1044 return ret;
1045 }
1046
1047 /*
1048 * Collapse the given traces, which must all share the same UUID, in a single
1049 * one.
1050 *
1051 * The trace with the most expansive metadata is chosen and all other traces
1052 * are merged into that one. On return, the elements of `traces` are nullptr
1053 * and the merged trace is placed in `out_trace`.
1054 */
1055
1056 static int merge_ctf_fs_traces(std::vector<ctf_fs_trace::UP> traces, ctf_fs_trace::UP& out_trace)
1057 {
1058 unsigned int winner_count;
1059 struct ctf_fs_trace *winner;
1060 guint i, winner_i;
1061 int ret = 0;
1062
1063 BT_ASSERT(traces.size() >= 2);
1064
1065 winner_count = metadata_count_stream_and_event_classes(traces[0].get());
1066 winner = traces[0].get();
1067 winner_i = 0;
1068
1069 /* Find the trace with the largest metadata. */
1070 for (i = 1; i < traces.size(); i++) {
1071 ctf_fs_trace *candidate = traces[i].get();
1072 unsigned int candidate_count;
1073
1074 /* A bit of sanity check. */
1075 BT_ASSERT(bt_uuid_compare(winner->metadata->tc->uuid, candidate->metadata->tc->uuid) == 0);
1076
1077 candidate_count = metadata_count_stream_and_event_classes(candidate);
1078
1079 if (candidate_count > winner_count) {
1080 winner_count = candidate_count;
1081 winner = candidate;
1082 winner_i = i;
1083 }
1084 }
1085
1086 /* Merge all the other traces in the winning trace. */
1087 for (ctf_fs_trace::UP& trace : traces) {
1088 /* Don't merge the winner into itself. */
1089 if (trace.get() == winner) {
1090 continue;
1091 }
1092
1093 /* Merge trace's data stream file groups into winner's. */
1094 ret = merge_matching_ctf_fs_ds_file_groups(winner, std::move(trace));
1095 if (ret) {
1096 goto end;
1097 }
1098 }
1099
1100 /*
1101 * Move the winner out of the array, into `*out_trace`.
1102 */
1103 out_trace = std::move(traces[winner_i]);
1104
1105 end:
1106 return ret;
1107 }
1108
1109 enum target_event
1110 {
1111 FIRST_EVENT,
1112 LAST_EVENT,
1113 };
1114
1115 static int decode_clock_snapshot_after_event(struct ctf_fs_trace *ctf_fs_trace,
1116 struct ctf_clock_class *default_cc,
1117 struct ctf_fs_ds_index_entry *index_entry,
1118 enum target_event target_event, uint64_t *cs,
1119 int64_t *ts_ns)
1120 {
1121 enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK;
1122 struct ctf_fs_ds_file *ds_file = NULL;
1123 struct ctf_msg_iter *msg_iter = NULL;
1124 int ret = 0;
1125
1126 BT_ASSERT(ctf_fs_trace);
1127 BT_ASSERT(index_entry);
1128 BT_ASSERT(index_entry->path);
1129
1130 ds_file = ctf_fs_ds_file_create(ctf_fs_trace, bt2::Stream::Shared {}, index_entry->path,
1131 ctf_fs_trace->logger);
1132 if (!ds_file) {
1133 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger, "Failed to create a ctf_fs_ds_file");
1134 ret = -1;
1135 goto end;
1136 }
1137
1138 BT_ASSERT(ctf_fs_trace->metadata);
1139 BT_ASSERT(ctf_fs_trace->metadata->tc);
1140
1141 msg_iter = ctf_msg_iter_create(
1142 ctf_fs_trace->metadata->tc,
1143 bt_common_get_page_size(static_cast<int>(ctf_fs_trace->logger.level())) * 8,
1144 ctf_fs_ds_file_medops, ds_file, NULL, ctf_fs_trace->logger);
1145 if (!msg_iter) {
1146 /* ctf_msg_iter_create() logs errors. */
1147 ret = -1;
1148 goto end;
1149 }
1150
1151 /*
1152 * Turn on dry run mode to prevent the creation and usage of Babeltrace
1153 * library objects (bt_field, bt_message_*, etc.).
1154 */
1155 ctf_msg_iter_set_dry_run(msg_iter, true);
1156
1157 /* Seek to the beginning of the target packet. */
1158 iter_status = ctf_msg_iter_seek(msg_iter, index_entry->offset.bytes());
1159 if (iter_status) {
1160 /* ctf_msg_iter_seek() logs errors. */
1161 ret = -1;
1162 goto end;
1163 }
1164
1165 switch (target_event) {
1166 case FIRST_EVENT:
1167 /*
1168 * Start to decode the packet until we reach the end of
1169 * the first event. To extract the first event's clock
1170 * snapshot.
1171 */
1172 iter_status = ctf_msg_iter_curr_packet_first_event_clock_snapshot(msg_iter, cs);
1173 break;
1174 case LAST_EVENT:
1175 /* Decode the packet to extract the last event's clock snapshot. */
1176 iter_status = ctf_msg_iter_curr_packet_last_event_clock_snapshot(msg_iter, cs);
1177 break;
1178 default:
1179 bt_common_abort();
1180 }
1181 if (iter_status) {
1182 ret = -1;
1183 goto end;
1184 }
1185
1186 /* Convert clock snapshot to timestamp. */
1187 ret = bt_util_clock_cycles_to_ns_from_origin(
1188 *cs, default_cc->frequency, default_cc->offset_seconds, default_cc->offset_cycles, ts_ns);
1189 if (ret) {
1190 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1191 "Failed to convert clock snapshot to timestamp");
1192 goto end;
1193 }
1194
1195 end:
1196 delete ds_file;
1197
1198 if (msg_iter) {
1199 ctf_msg_iter_destroy(msg_iter);
1200 }
1201
1202 return ret;
1203 }
1204
1205 static int decode_packet_first_event_timestamp(struct ctf_fs_trace *ctf_fs_trace,
1206 struct ctf_clock_class *default_cc,
1207 struct ctf_fs_ds_index_entry *index_entry,
1208 uint64_t *cs, int64_t *ts_ns)
1209 {
1210 return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, index_entry, FIRST_EVENT, cs,
1211 ts_ns);
1212 }
1213
1214 static int decode_packet_last_event_timestamp(struct ctf_fs_trace *ctf_fs_trace,
1215 struct ctf_clock_class *default_cc,
1216 struct ctf_fs_ds_index_entry *index_entry,
1217 uint64_t *cs, int64_t *ts_ns)
1218 {
1219 return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, index_entry, LAST_EVENT, cs,
1220 ts_ns);
1221 }
1222
1223 /*
1224 * Fix up packet index entries for lttng's "event-after-packet" bug.
1225 * Some buggy lttng tracer versions may emit events with a timestamp that is
1226 * larger (after) than the timestamp_end of the their packets.
1227 *
1228 * To fix up this erroneous data we do the following:
1229 * 1. If it's not the stream file's last packet: set the packet index entry's
1230 * end time to the next packet's beginning time.
1231 * 2. If it's the stream file's last packet, set the packet index entry's end
1232 * time to the packet's last event's time, if any, or to the packet's
1233 * beginning time otherwise.
1234 *
1235 * Known buggy tracer versions:
1236 * - before lttng-ust 2.11.0
1237 * - before lttng-module 2.11.0
1238 * - before lttng-module 2.10.10
1239 * - before lttng-module 2.9.13
1240 */
1241 static int fix_index_lttng_event_after_packet_bug(struct ctf_fs_trace *trace)
1242 {
1243 int ret = 0;
1244
1245 for (const auto& ds_file_group : trace->ds_file_groups) {
1246 struct ctf_clock_class *default_cc;
1247
1248 BT_ASSERT(ds_file_group);
1249 const auto index = ds_file_group->index.get();
1250
1251 BT_ASSERT(index);
1252 BT_ASSERT(!index->entries.empty());
1253
1254 /*
1255 * Iterate over all entries but the last one. The last one is
1256 * fixed differently after.
1257 */
1258 for (size_t entry_i = 0; entry_i < index->entries.size() - 1; ++entry_i) {
1259 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_i].get();
1260 ctf_fs_ds_index_entry *next_entry = index->entries[entry_i + 1].get();
1261
1262 /*
1263 * 1. Set the current index entry `end` timestamp to
1264 * the next index entry `begin` timestamp.
1265 */
1266 curr_entry->timestamp_end = next_entry->timestamp_begin;
1267 curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns;
1268 }
1269
1270 /*
1271 * 2. Fix the last entry by decoding the last event of the last
1272 * packet.
1273 */
1274 const auto last_entry = index->entries.back().get();
1275 BT_ASSERT(last_entry);
1276
1277 BT_ASSERT(ds_file_group->sc->default_clock_class);
1278 default_cc = ds_file_group->sc->default_clock_class;
1279
1280 /*
1281 * Decode packet to read the timestamp of the last event of the
1282 * entry.
1283 */
1284 ret = decode_packet_last_event_timestamp(trace, default_cc, last_entry,
1285 &last_entry->timestamp_end,
1286 &last_entry->timestamp_end_ns);
1287 if (ret) {
1288 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1289 trace->logger,
1290 "Failed to decode stream's last packet to get its last event's clock snapshot.");
1291 goto end;
1292 }
1293 }
1294
1295 end:
1296 return ret;
1297 }
1298
1299 /*
1300 * Fix up packet index entries for barectf's "event-before-packet" bug.
1301 * Some buggy barectf tracer versions may emit events with a timestamp that is
1302 * less than the timestamp_begin of the their packets.
1303 *
1304 * To fix up this erroneous data we do the following:
1305 * 1. Starting at the second index entry, set the timestamp_begin of the
1306 * current entry to the timestamp of the first event of the packet.
1307 * 2. Set the previous entry's timestamp_end to the timestamp_begin of the
1308 * current packet.
1309 *
1310 * Known buggy tracer versions:
1311 * - before barectf 2.3.1
1312 */
1313 static int fix_index_barectf_event_before_packet_bug(struct ctf_fs_trace *trace)
1314 {
1315 int ret = 0;
1316
1317 for (const auto& ds_file_group : trace->ds_file_groups) {
1318 struct ctf_clock_class *default_cc;
1319 const auto index = ds_file_group->index.get();
1320
1321 BT_ASSERT(index);
1322 BT_ASSERT(!index->entries.empty());
1323
1324 BT_ASSERT(ds_file_group->sc->default_clock_class);
1325 default_cc = ds_file_group->sc->default_clock_class;
1326
1327 /*
1328 * 1. Iterate over the index, starting from the second entry
1329 * (index = 1).
1330 */
1331 for (size_t entry_i = 1; entry_i < index->entries.size(); ++entry_i) {
1332 ctf_fs_ds_index_entry *prev_entry = index->entries[entry_i - 1].get();
1333 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_i].get();
1334 /*
1335 * 2. Set the current entry `begin` timestamp to the
1336 * timestamp of the first event of the current packet.
1337 */
1338 ret = decode_packet_first_event_timestamp(trace, default_cc, curr_entry,
1339 &curr_entry->timestamp_begin,
1340 &curr_entry->timestamp_begin_ns);
1341 if (ret) {
1342 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1343 "Failed to decode first event's clock snapshot");
1344 goto end;
1345 }
1346
1347 /*
1348 * 3. Set the previous entry `end` timestamp to the
1349 * timestamp of the first event of the current packet.
1350 */
1351 prev_entry->timestamp_end = curr_entry->timestamp_begin;
1352 prev_entry->timestamp_end_ns = curr_entry->timestamp_begin_ns;
1353 }
1354 }
1355 end:
1356 return ret;
1357 }
1358
1359 /*
1360 * When using the lttng-crash feature it's likely that the last packets of each
1361 * stream have their timestamp_end set to zero. This is caused by the fact that
1362 * the tracer crashed and was not able to properly close the packets.
1363 *
1364 * To fix up this erroneous data we do the following:
1365 * For each index entry, if the entry's timestamp_end is 0 and the
1366 * timestamp_begin is not 0:
1367 * - If it's the stream file's last packet: set the packet index entry's end
1368 * time to the packet's last event's time, if any, or to the packet's
1369 * beginning time otherwise.
1370 * - If it's not the stream file's last packet: set the packet index
1371 * entry's end time to the next packet's beginning time.
1372 *
1373 * Affected versions:
1374 * - All current and future lttng-ust and lttng-modules versions.
1375 */
1376 static int fix_index_lttng_crash_quirk(struct ctf_fs_trace *trace)
1377 {
1378 int ret = 0;
1379
1380 for (const auto& ds_file_group : trace->ds_file_groups) {
1381 struct ctf_clock_class *default_cc;
1382
1383 BT_ASSERT(ds_file_group);
1384 const auto index = ds_file_group->index.get();
1385
1386 BT_ASSERT(ds_file_group->sc->default_clock_class);
1387 default_cc = ds_file_group->sc->default_clock_class;
1388
1389 BT_ASSERT(index);
1390 BT_ASSERT(!index->entries.empty());
1391
1392 const auto last_entry = index->entries.back().get();
1393 BT_ASSERT(last_entry);
1394
1395 /* 1. Fix the last entry first. */
1396 if (last_entry->timestamp_end == 0 && last_entry->timestamp_begin != 0) {
1397 /*
1398 * Decode packet to read the timestamp of the
1399 * last event of the stream file.
1400 */
1401 ret = decode_packet_last_event_timestamp(trace, default_cc, last_entry,
1402 &last_entry->timestamp_end,
1403 &last_entry->timestamp_end_ns);
1404 if (ret) {
1405 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1406 "Failed to decode last event's clock snapshot");
1407 goto end;
1408 }
1409 }
1410
1411 /* Iterate over all entries but the last one. */
1412 for (size_t entry_idx = 0; entry_idx < index->entries.size() - 1; ++entry_idx) {
1413 ctf_fs_ds_index_entry *curr_entry = index->entries[entry_idx].get();
1414 ctf_fs_ds_index_entry *next_entry = index->entries[entry_idx + 1].get();
1415
1416 if (curr_entry->timestamp_end == 0 && curr_entry->timestamp_begin != 0) {
1417 /*
1418 * 2. Set the current index entry `end` timestamp to
1419 * the next index entry `begin` timestamp.
1420 */
1421 curr_entry->timestamp_end = next_entry->timestamp_begin;
1422 curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns;
1423 }
1424 }
1425 }
1426
1427 end:
1428 return ret;
1429 }
1430
1431 /*
1432 * Extract the tracer information necessary to compare versions.
1433 * Returns 0 on success, and -1 if the extraction is not successful because the
1434 * necessary fields are absents in the trace metadata.
1435 */
1436 static int extract_tracer_info(struct ctf_fs_trace *trace, struct tracer_info *current_tracer_info)
1437 {
1438 int ret = 0;
1439 struct ctf_trace_class_env_entry *entry;
1440
1441 /* Clear the current_tracer_info struct */
1442 memset(current_tracer_info, 0, sizeof(*current_tracer_info));
1443
1444 /*
1445 * To compare 2 tracer versions, at least the tracer name and it's
1446 * major version are needed. If one of these is missing, consider it an
1447 * extraction failure.
1448 */
1449 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_name");
1450 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_STR) {
1451 goto missing_bare_minimum;
1452 }
1453
1454 /* Set tracer name. */
1455 current_tracer_info->name = entry->value.str->str;
1456
1457 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_major");
1458 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1459 goto missing_bare_minimum;
1460 }
1461
1462 /* Set major version number. */
1463 current_tracer_info->major = entry->value.i;
1464
1465 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_minor");
1466 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1467 goto end;
1468 }
1469
1470 /* Set minor version number. */
1471 current_tracer_info->minor = entry->value.i;
1472
1473 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_patch");
1474 if (!entry) {
1475 /*
1476 * If `tracer_patch` doesn't exist `tracer_patchlevel` might.
1477 * For example, `lttng-modules` uses entry name
1478 * `tracer_patchlevel`.
1479 */
1480 entry = ctf_trace_class_borrow_env_entry_by_name(trace->metadata->tc, "tracer_patchlevel");
1481 }
1482
1483 if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) {
1484 goto end;
1485 }
1486
1487 /* Set patch version number. */
1488 current_tracer_info->patch = entry->value.i;
1489
1490 goto end;
1491
1492 missing_bare_minimum:
1493 ret = -1;
1494 end:
1495 return ret;
1496 }
1497
1498 static bool is_tracer_affected_by_lttng_event_after_packet_bug(struct tracer_info *curr_tracer_info)
1499 {
1500 bool is_affected = false;
1501
1502 if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) {
1503 if (curr_tracer_info->major < 2) {
1504 is_affected = true;
1505 } else if (curr_tracer_info->major == 2) {
1506 /* fixed in lttng-ust 2.11.0 */
1507 if (curr_tracer_info->minor < 11) {
1508 is_affected = true;
1509 }
1510 }
1511 } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) {
1512 if (curr_tracer_info->major < 2) {
1513 is_affected = true;
1514 } else if (curr_tracer_info->major == 2) {
1515 /* fixed in lttng-modules 2.11.0 */
1516 if (curr_tracer_info->minor == 10) {
1517 /* fixed in lttng-modules 2.10.10 */
1518 if (curr_tracer_info->patch < 10) {
1519 is_affected = true;
1520 }
1521 } else if (curr_tracer_info->minor == 9) {
1522 /* fixed in lttng-modules 2.9.13 */
1523 if (curr_tracer_info->patch < 13) {
1524 is_affected = true;
1525 }
1526 } else if (curr_tracer_info->minor < 9) {
1527 is_affected = true;
1528 }
1529 }
1530 }
1531
1532 return is_affected;
1533 }
1534
1535 static bool
1536 is_tracer_affected_by_barectf_event_before_packet_bug(struct tracer_info *curr_tracer_info)
1537 {
1538 bool is_affected = false;
1539
1540 if (strcmp(curr_tracer_info->name, "barectf") == 0) {
1541 if (curr_tracer_info->major < 2) {
1542 is_affected = true;
1543 } else if (curr_tracer_info->major == 2) {
1544 if (curr_tracer_info->minor < 3) {
1545 is_affected = true;
1546 } else if (curr_tracer_info->minor == 3) {
1547 /* fixed in barectf 2.3.1 */
1548 if (curr_tracer_info->patch < 1) {
1549 is_affected = true;
1550 }
1551 }
1552 }
1553 }
1554
1555 return is_affected;
1556 }
1557
1558 static bool is_tracer_affected_by_lttng_crash_quirk(struct tracer_info *curr_tracer_info)
1559 {
1560 bool is_affected = false;
1561
1562 /* All LTTng tracer may be affected by this lttng crash quirk. */
1563 if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) {
1564 is_affected = true;
1565 } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) {
1566 is_affected = true;
1567 }
1568
1569 return is_affected;
1570 }
1571
1572 /*
1573 * Looks for trace produced by known buggy tracers and fix up the index
1574 * produced earlier.
1575 */
1576 static int fix_packet_index_tracer_bugs(ctf_fs_trace *trace)
1577 {
1578 int ret = 0;
1579 struct tracer_info current_tracer_info;
1580
1581 ret = extract_tracer_info(trace, &current_tracer_info);
1582 if (ret) {
1583 /*
1584 * A trace may not have all the necessary environment
1585 * entries to do the tracer version comparison.
1586 * At least, the tracer name and major version number
1587 * are needed. Failing to extract these entries is not
1588 * an error.
1589 */
1590 ret = 0;
1591 BT_CPPLOGI_STR_SPEC(
1592 trace->logger,
1593 "Cannot extract tracer information necessary to compare with buggy versions.");
1594 goto end;
1595 }
1596
1597 /* Check if the trace may be affected by old tracer bugs. */
1598 if (is_tracer_affected_by_lttng_event_after_packet_bug(&current_tracer_info)) {
1599 BT_CPPLOGI_STR_SPEC(
1600 trace->logger,
1601 "Trace may be affected by LTTng tracer packet timestamp bug. Fixing up.");
1602 ret = fix_index_lttng_event_after_packet_bug(trace);
1603 if (ret) {
1604 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1605 "Failed to fix LTTng event-after-packet bug.");
1606 goto end;
1607 }
1608 trace->metadata->tc->quirks.lttng_event_after_packet = true;
1609 }
1610
1611 if (is_tracer_affected_by_barectf_event_before_packet_bug(&current_tracer_info)) {
1612 BT_CPPLOGI_STR_SPEC(
1613 trace->logger,
1614 "Trace may be affected by barectf tracer packet timestamp bug. Fixing up.");
1615 ret = fix_index_barectf_event_before_packet_bug(trace);
1616 if (ret) {
1617 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1618 "Failed to fix barectf event-before-packet bug.");
1619 goto end;
1620 }
1621 trace->metadata->tc->quirks.barectf_event_before_packet = true;
1622 }
1623
1624 if (is_tracer_affected_by_lttng_crash_quirk(&current_tracer_info)) {
1625 ret = fix_index_lttng_crash_quirk(trace);
1626 if (ret) {
1627 BT_CPPLOGE_APPEND_CAUSE_SPEC(trace->logger,
1628 "Failed to fix lttng-crash timestamp quirks.");
1629 goto end;
1630 }
1631 trace->metadata->tc->quirks.lttng_crash = true;
1632 }
1633
1634 end:
1635 return ret;
1636 }
1637
1638 static bool compare_ds_file_groups_by_first_path(const ctf_fs_ds_file_group::UP& ds_file_group_a,
1639 const ctf_fs_ds_file_group::UP& ds_file_group_b)
1640 {
1641 BT_ASSERT(!ds_file_group_a->ds_file_infos.empty());
1642 BT_ASSERT(!ds_file_group_b->ds_file_infos.empty());
1643
1644 const auto& first_ds_file_info_a = *ds_file_group_a->ds_file_infos[0];
1645 const auto& first_ds_file_info_b = *ds_file_group_b->ds_file_infos[0];
1646
1647 return first_ds_file_info_a.path < first_ds_file_info_b.path;
1648 }
1649
1650 static gint compare_strings(gconstpointer p_a, gconstpointer p_b)
1651 {
1652 const char *a = *((const char **) p_a);
1653 const char *b = *((const char **) p_b);
1654
1655 return strcmp(a, b);
1656 }
1657
1658 int ctf_fs_component_create_ctf_fs_trace(struct ctf_fs_component *ctf_fs,
1659 const bt_value *paths_value,
1660 const bt_value *trace_name_value,
1661 bt_self_component *selfComp)
1662 {
1663 int ret = 0;
1664 uint64_t i;
1665 GPtrArray *paths = NULL;
1666 std::vector<ctf_fs_trace::UP> traces;
1667 const char *trace_name;
1668
1669 BT_ASSERT(bt_value_get_type(paths_value) == BT_VALUE_TYPE_ARRAY);
1670 BT_ASSERT(!bt_value_array_is_empty(paths_value));
1671
1672 paths = g_ptr_array_new_with_free_func(g_free);
1673 if (!paths) {
1674 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to allocate a GPtrArray.");
1675 goto error;
1676 }
1677
1678 trace_name = trace_name_value ? bt_value_string_get(trace_name_value) : NULL;
1679
1680 /*
1681 * Create a sorted array of the paths, to make the execution of this
1682 * component deterministic.
1683 */
1684 for (i = 0; i < bt_value_array_get_length(paths_value); i++) {
1685 const bt_value *path_value = bt_value_array_borrow_element_by_index_const(paths_value, i);
1686 const char *input = bt_value_string_get(path_value);
1687 gchar *input_copy;
1688
1689 input_copy = g_strdup(input);
1690 if (!input_copy) {
1691 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to copy a string.");
1692 goto error;
1693 }
1694
1695 g_ptr_array_add(paths, input_copy);
1696 }
1697
1698 g_ptr_array_sort(paths, compare_strings);
1699
1700 /* Create a separate ctf_fs_trace object for each path. */
1701 for (i = 0; i < paths->len; i++) {
1702 const char *path = (const char *) g_ptr_array_index(paths, i);
1703
1704 ret = ctf_fs_component_create_ctf_fs_trace_one_path(ctf_fs, path, trace_name, traces,
1705 selfComp);
1706 if (ret) {
1707 goto end;
1708 }
1709 }
1710
1711 if (traces.size() > 1) {
1712 ctf_fs_trace *first_trace = traces[0].get();
1713 const uint8_t *first_trace_uuid = first_trace->metadata->tc->uuid;
1714
1715 /*
1716 * We have more than one trace, they must all share the same
1717 * UUID, verify that.
1718 */
1719 for (i = 0; i < traces.size(); i++) {
1720 ctf_fs_trace *this_trace = traces[i].get();
1721 const uint8_t *this_trace_uuid = this_trace->metadata->tc->uuid;
1722
1723 if (!this_trace->metadata->tc->is_uuid_set) {
1724 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1725 ctf_fs->logger,
1726 "Multiple traces given, but a trace does not have a UUID: path={}",
1727 this_trace->path->str);
1728 goto error;
1729 }
1730
1731 if (bt_uuid_compare(first_trace_uuid, this_trace_uuid) != 0) {
1732 char first_trace_uuid_str[BT_UUID_STR_LEN + 1];
1733 char this_trace_uuid_str[BT_UUID_STR_LEN + 1];
1734
1735 bt_uuid_to_str(first_trace_uuid, first_trace_uuid_str);
1736 bt_uuid_to_str(this_trace_uuid, this_trace_uuid_str);
1737
1738 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger,
1739 "Multiple traces given, but UUIDs don't match: "
1740 "first-trace-uuid={}, first-trace-path={}, "
1741 "trace-uuid={}, trace-path={}",
1742 first_trace_uuid_str, first_trace->path->str,
1743 this_trace_uuid_str, this_trace->path->str);
1744 goto error;
1745 }
1746 }
1747
1748 ret = merge_ctf_fs_traces(std::move(traces), ctf_fs->trace);
1749 if (ret) {
1750 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger,
1751 "Failed to merge traces with the same UUID.");
1752 goto error;
1753 }
1754 } else {
1755 /* Just one trace, it may or may not have a UUID, both are fine. */
1756 ctf_fs->trace = std::move(traces[0]);
1757 }
1758
1759 ret = fix_packet_index_tracer_bugs(ctf_fs->trace.get());
1760 if (ret) {
1761 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "Failed to fix packet index tracer bugs.");
1762 }
1763
1764 /*
1765 * Sort data stream file groups by first data stream file info
1766 * path to get a deterministic order. This order influences the
1767 * order of the output ports. It also influences the order of
1768 * the automatic stream IDs if the trace's packet headers do not
1769 * contain a `stream_instance_id` field, in which case the data
1770 * stream file to stream ID association is always the same,
1771 * whatever the build and the system.
1772 *
1773 * Having a deterministic order here can help debugging and
1774 * testing.
1775 */
1776 std::sort(ctf_fs->trace->ds_file_groups.begin(), ctf_fs->trace->ds_file_groups.end(),
1777 compare_ds_file_groups_by_first_path);
1778 goto end;
1779 error:
1780 ret = -1;
1781
1782 end:
1783 if (paths) {
1784 g_ptr_array_free(paths, TRUE);
1785 }
1786
1787 return ret;
1788 }
1789
1790 static GString *get_stream_instance_unique_name(struct ctf_fs_ds_file_group *ds_file_group)
1791 {
1792 GString *name;
1793 struct ctf_fs_ds_file_info *ds_file_info;
1794
1795 name = g_string_new(NULL);
1796 if (!name) {
1797 goto end;
1798 }
1799
1800 /*
1801 * If there's more than one stream file in the stream file
1802 * group, the first (earliest) stream file's path is used as
1803 * the stream's unique name.
1804 */
1805 BT_ASSERT(!ds_file_group->ds_file_infos.empty());
1806 ds_file_info = ds_file_group->ds_file_infos[0].get();
1807 g_string_assign(name, ds_file_info->path.c_str());
1808
1809 end:
1810 return name;
1811 }
1812
1813 /* Create the IR stream objects for ctf_fs_trace. */
1814
1815 static int create_streams_for_trace(struct ctf_fs_trace *ctf_fs_trace)
1816 {
1817 int ret;
1818 GString *name = NULL;
1819
1820 for (const auto& ds_file_group : ctf_fs_trace->ds_file_groups) {
1821 name = get_stream_instance_unique_name(ds_file_group.get());
1822
1823 if (!name) {
1824 goto error;
1825 }
1826
1827 BT_ASSERT(ds_file_group->sc->ir_sc);
1828 BT_ASSERT(ctf_fs_trace->trace);
1829
1830 bt_stream *stream;
1831
1832 if (ds_file_group->stream_id == UINT64_C(-1)) {
1833 /* No stream ID: use 0 */
1834 stream = bt_stream_create_with_id(ds_file_group->sc->ir_sc, ctf_fs_trace->trace,
1835 ctf_fs_trace->next_stream_id);
1836 ctf_fs_trace->next_stream_id++;
1837 } else {
1838 /* Specific stream ID */
1839 stream = bt_stream_create_with_id(ds_file_group->sc->ir_sc, ctf_fs_trace->trace,
1840 (uint64_t) ds_file_group->stream_id);
1841 }
1842
1843 if (!stream) {
1844 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1845 "Cannot create stream for DS file group: "
1846 "addr={}, stream-name=\"{}\"",
1847 fmt::ptr(ds_file_group), name->str);
1848 goto error;
1849 }
1850
1851 ds_file_group->stream = bt2::Stream::Shared::createWithoutRef(stream);
1852
1853 ret = bt_stream_set_name(ds_file_group->stream->libObjPtr(), name->str);
1854 if (ret) {
1855 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs_trace->logger,
1856 "Cannot set stream's name: "
1857 "addr={}, stream-name=\"{}\"",
1858 fmt::ptr(ds_file_group->stream->libObjPtr()), name->str);
1859 goto error;
1860 }
1861
1862 g_string_free(name, TRUE);
1863 name = NULL;
1864 }
1865
1866 ret = 0;
1867 goto end;
1868
1869 error:
1870 ret = -1;
1871
1872 end:
1873
1874 if (name) {
1875 g_string_free(name, TRUE);
1876 }
1877 return ret;
1878 }
1879
1880 static const bt_param_validation_value_descr inputs_elem_descr =
1881 bt_param_validation_value_descr::makeString();
1882
1883 static bt_param_validation_map_value_entry_descr fs_params_entries_descr[] = {
1884 {"inputs", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_MANDATORY,
1885 bt_param_validation_value_descr::makeArray(1, BT_PARAM_VALIDATION_INFINITE,
1886 inputs_elem_descr)},
1887 {"trace-name", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1888 bt_param_validation_value_descr::makeString()},
1889 {"clock-class-offset-s", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1890 bt_param_validation_value_descr::makeSignedInteger()},
1891 {"clock-class-offset-ns", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1892 bt_param_validation_value_descr::makeSignedInteger()},
1893 {"force-clock-class-origin-unix-epoch", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1894 bt_param_validation_value_descr::makeBool()},
1895 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END};
1896
1897 bool read_src_fs_parameters(const bt_value *params, const bt_value **inputs,
1898 const bt_value **trace_name, struct ctf_fs_component *ctf_fs)
1899 {
1900 bool ret;
1901 const bt_value *value;
1902 enum bt_param_validation_status validate_value_status;
1903 gchar *error = NULL;
1904
1905 validate_value_status = bt_param_validation_validate(params, fs_params_entries_descr, &error);
1906 if (validate_value_status != BT_PARAM_VALIDATION_STATUS_OK) {
1907 BT_CPPLOGE_APPEND_CAUSE_SPEC(ctf_fs->logger, "{}", error);
1908 ret = false;
1909 goto end;
1910 }
1911
1912 /* inputs parameter */
1913 *inputs = bt_value_map_borrow_entry_value_const(params, "inputs");
1914
1915 /* clock-class-offset-s parameter */
1916 value = bt_value_map_borrow_entry_value_const(params, "clock-class-offset-s");
1917 if (value) {
1918 ctf_fs->clkClsCfg.offsetSec = bt_value_integer_signed_get(value);
1919 }
1920
1921 /* clock-class-offset-ns parameter */
1922 value = bt_value_map_borrow_entry_value_const(params, "clock-class-offset-ns");
1923 if (value) {
1924 ctf_fs->clkClsCfg.offsetNanoSec = bt_value_integer_signed_get(value);
1925 }
1926
1927 /* force-clock-class-origin-unix-epoch parameter */
1928 value = bt_value_map_borrow_entry_value_const(params, "force-clock-class-origin-unix-epoch");
1929 if (value) {
1930 ctf_fs->clkClsCfg.forceOriginIsUnixEpoch = bt_value_bool_get(value);
1931 }
1932
1933 /* trace-name parameter */
1934 *trace_name = bt_value_map_borrow_entry_value_const(params, "trace-name");
1935
1936 ret = true;
1937
1938 end:
1939 g_free(error);
1940 return ret;
1941 }
1942
1943 static ctf_fs_component::UP ctf_fs_create(const bt_value *params,
1944 bt_self_component_source *self_comp_src)
1945 {
1946 const bt_value *inputs_value;
1947 const bt_value *trace_name_value;
1948 bt_self_component *self_comp = bt_self_component_source_as_self_component(self_comp_src);
1949
1950 ctf_fs_component::UP ctf_fs = ctf_fs_component_create(
1951 bt2c::Logger {bt2::SelfSourceComponent {self_comp_src}, "PLUGIN/SRC.CTF.FS/COMP"});
1952 if (!ctf_fs) {
1953 return nullptr;
1954 }
1955
1956 if (!read_src_fs_parameters(params, &inputs_value, &trace_name_value, ctf_fs.get())) {
1957 return nullptr;
1958 }
1959
1960 if (ctf_fs_component_create_ctf_fs_trace(ctf_fs.get(), inputs_value, trace_name_value,
1961 self_comp)) {
1962 return nullptr;
1963 }
1964
1965 if (create_streams_for_trace(ctf_fs->trace.get())) {
1966 return nullptr;
1967 }
1968
1969 if (create_ports_for_trace(ctf_fs.get(), ctf_fs->trace.get(), self_comp_src)) {
1970 return nullptr;
1971 }
1972
1973 return ctf_fs;
1974 }
1975
1976 bt_component_class_initialize_method_status ctf_fs_init(bt_self_component_source *self_comp_src,
1977 bt_self_component_source_configuration *,
1978 const bt_value *params, void *)
1979 {
1980 try {
1981 bt_component_class_initialize_method_status ret =
1982 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
1983
1984 ctf_fs_component::UP ctf_fs = ctf_fs_create(params, self_comp_src);
1985 if (!ctf_fs) {
1986 ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1987 }
1988
1989 bt_self_component_set_data(bt_self_component_source_as_self_component(self_comp_src),
1990 ctf_fs.release());
1991 return ret;
1992 } catch (const std::bad_alloc&) {
1993 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1994 } catch (const bt2::Error&) {
1995 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1996 }
1997 }
1998
1999 bt_component_class_query_method_status ctf_fs_query(bt_self_component_class_source *comp_class_src,
2000 bt_private_query_executor *priv_query_exec,
2001 const char *object, const bt_value *params,
2002 __attribute__((unused)) void *method_data,
2003 const bt_value **result)
2004 {
2005 try {
2006 bt2c::Logger logger {bt2::SelfComponentClass {comp_class_src},
2007 bt2::PrivateQueryExecutor {priv_query_exec},
2008 "PLUGIN/SRC.CTF.FS/QUERY"};
2009 bt2::ConstMapValue paramsObj(params);
2010 bt2::Value::Shared resultObj;
2011
2012 if (strcmp(object, "metadata-info") == 0) {
2013 resultObj = metadata_info_query(paramsObj, logger);
2014 } else if (strcmp(object, "babeltrace.trace-infos") == 0) {
2015 resultObj = trace_infos_query(paramsObj, logger);
2016 } else if (!strcmp(object, "babeltrace.support-info")) {
2017 resultObj = support_info_query(paramsObj, logger);
2018 } else {
2019 BT_CPPLOGE_SPEC(logger, "Unknown query object `{}`", object);
2020 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT;
2021 }
2022
2023 *result = resultObj.release().libObjPtr();
2024
2025 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK;
2026 } catch (const std::bad_alloc&) {
2027 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR;
2028 } catch (const bt2::Error&) {
2029 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR;
2030 }
2031 }
This page took 0.072355 seconds and 4 git commands to generate.