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