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