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