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