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