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