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