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