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