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