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