tap-driver.sh: flush stdout after each test result
[babeltrace.git] / 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
3fadfbc0
MJ
28#include <babeltrace2/common-internal.h>
29#include <babeltrace2/babeltrace.h>
30#include <babeltrace2/compat/uuid-internal.h>
7d61fa8e 31#include <plugins-common.h>
ea0b4b9e 32#include <glib.h>
3fadfbc0 33#include <babeltrace2/assert-internal.h>
94cf822e 34#include <inttypes.h>
c55a9f58 35#include <stdbool.h>
56a1cced 36#include "fs.h"
413bc2c4 37#include "metadata.h"
94cf822e 38#include "data-stream-file.h"
e7a4393b 39#include "file.h"
1e649dff 40#include "../common/metadata/decoder.h"
d6e69534 41#include "../common/msg-iter/msg-iter.h"
a429c321 42#include "../common/utils/utils.h"
04c0ba87 43#include "query.h"
e7a4393b 44
55314f2a
JG
45#define BT_LOG_TAG "PLUGIN-CTF-FS-SRC"
46#include "logging.h"
ea0b4b9e 47
94cf822e 48static
d6e69534 49int msg_iter_data_set_current_ds_file(struct ctf_fs_msg_iter_data *msg_iter_data)
94cf822e
PP
50{
51 struct ctf_fs_ds_file_info *ds_file_info;
52 int ret = 0;
53
d6e69534
PP
54 BT_ASSERT(msg_iter_data->ds_file_info_index <
55 msg_iter_data->ds_file_group->ds_file_infos->len);
94cf822e 56 ds_file_info = g_ptr_array_index(
d6e69534
PP
57 msg_iter_data->ds_file_group->ds_file_infos,
58 msg_iter_data->ds_file_info_index);
59
60 ctf_fs_ds_file_destroy(msg_iter_data->ds_file);
61 msg_iter_data->ds_file = ctf_fs_ds_file_create(
62 msg_iter_data->ds_file_group->ctf_fs_trace,
63 msg_iter_data->pc_msg_iter,
64 msg_iter_data->msg_iter,
65 msg_iter_data->ds_file_group->stream,
97ade20b 66 ds_file_info->path->str);
d6e69534 67 if (!msg_iter_data->ds_file) {
94cf822e
PP
68 ret = -1;
69 }
70
71 return ret;
72}
73
74static
d6e69534
PP
75void ctf_fs_msg_iter_data_destroy(
76 struct ctf_fs_msg_iter_data *msg_iter_data)
94cf822e 77{
d6e69534 78 if (!msg_iter_data) {
94cf822e
PP
79 return;
80 }
81
d6e69534 82 ctf_fs_ds_file_destroy(msg_iter_data->ds_file);
6de92955 83
d6e69534
PP
84 if (msg_iter_data->msg_iter) {
85 bt_msg_iter_destroy(msg_iter_data->msg_iter);
6de92955
PP
86 }
87
d6e69534 88 g_free(msg_iter_data);
94cf822e
PP
89}
90
fc917f65
PP
91static
92void set_msg_iter_emits_stream_beginning_end_messages(
93 struct ctf_fs_msg_iter_data *msg_iter_data)
94{
95 bt_msg_iter_set_emit_stream_beginning_message(
96 msg_iter_data->ds_file->msg_iter,
97 msg_iter_data->ds_file_info_index == 0);
98 bt_msg_iter_set_emit_stream_end_message(
99 msg_iter_data->ds_file->msg_iter,
100 msg_iter_data->ds_file_info_index ==
101 msg_iter_data->ds_file_group->ds_file_infos->len - 1);
102}
103
d4393e08 104static
4cdfc5e8 105bt_self_message_iterator_status ctf_fs_iterator_next_one(
d6e69534 106 struct ctf_fs_msg_iter_data *msg_iter_data,
fc917f65 107 const bt_message **out_msg)
ea0b4b9e 108{
4cdfc5e8 109 bt_self_message_iterator_status status;
94cf822e 110
d6e69534 111 BT_ASSERT(msg_iter_data->ds_file);
f42867e2 112
fc917f65
PP
113 while (true) {
114 bt_message *msg;
115
116 status = ctf_fs_ds_file_next(msg_iter_data->ds_file, &msg);
117 switch (status) {
118 case BT_SELF_MESSAGE_ITERATOR_STATUS_OK:
119 *out_msg = msg;
120 msg = NULL;
f42867e2 121 goto end;
fc917f65
PP
122 case BT_SELF_MESSAGE_ITERATOR_STATUS_END:
123 {
124 int ret;
f42867e2 125
fc917f65
PP
126 if (msg_iter_data->ds_file_info_index ==
127 msg_iter_data->ds_file_group->ds_file_infos->len - 1) {
128 /* End of all group's stream files */
129 goto end;
130 }
131
132 msg_iter_data->ds_file_info_index++;
495490c5
PP
133 bt_msg_iter_reset_for_next_stream_file(
134 msg_iter_data->msg_iter);
fc917f65
PP
135 set_msg_iter_emits_stream_beginning_end_messages(
136 msg_iter_data);
94cf822e 137
94cf822e 138 /*
fc917f65
PP
139 * Open and start reading the next stream file
140 * within our stream file group.
94cf822e 141 */
fc917f65
PP
142 ret = msg_iter_data_set_current_ds_file(msg_iter_data);
143 if (ret) {
144 status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
145 goto end;
146 }
147
148 /* Continue the loop to get the next message */
149 break;
94cf822e 150 }
fc917f65 151 default:
94cf822e
PP
152 goto end;
153 }
94cf822e 154 }
d01e0f33 155
94cf822e 156end:
d4393e08
PP
157 return status;
158}
159
160BT_HIDDEN
4cdfc5e8 161bt_self_message_iterator_status ctf_fs_iterator_next(
d6e69534
PP
162 bt_self_message_iterator *iterator,
163 bt_message_array_const msgs, uint64_t capacity,
d4393e08
PP
164 uint64_t *count)
165{
4cdfc5e8 166 bt_self_message_iterator_status status =
d6e69534
PP
167 BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
168 struct ctf_fs_msg_iter_data *msg_iter_data =
169 bt_self_message_iterator_get_data(iterator);
d4393e08
PP
170 uint64_t i = 0;
171
d6e69534
PP
172 while (i < capacity && status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
173 status = ctf_fs_iterator_next_one(msg_iter_data, &msgs[i]);
174 if (status == BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
d4393e08
PP
175 i++;
176 }
177 }
178
179 if (i > 0) {
180 /*
181 * Even if ctf_fs_iterator_next_one() returned something
d6e69534
PP
182 * else than BT_SELF_MESSAGE_ITERATOR_STATUS_OK, we
183 * accumulated message objects in the output
184 * message array, so we need to return
185 * BT_SELF_MESSAGE_ITERATOR_STATUS_OK so that they are
d4393e08 186 * transfered to downstream. This other status occurs
d6e69534 187 * again the next time muxer_msg_iter_do_next() is
d4393e08 188 * called, possibly without any accumulated
d6e69534 189 * message, in which case we'll return it.
d4393e08
PP
190 */
191 *count = i;
d6e69534 192 status = BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
d4393e08
PP
193 }
194
195 return status;
ea0b4b9e 196}
bfd20a42 197
6a9bb5e9
PP
198static
199int ctf_fs_iterator_reset(struct ctf_fs_msg_iter_data *msg_iter_data)
200{
201 int ret;
202
203 msg_iter_data->ds_file_info_index = 0;
204 ret = msg_iter_data_set_current_ds_file(msg_iter_data);
205 if (ret) {
206 goto end;
207 }
208
209 bt_msg_iter_reset(msg_iter_data->msg_iter);
210 set_msg_iter_emits_stream_beginning_end_messages(msg_iter_data);
211
212end:
213 return ret;
214}
215
216BT_HIDDEN
217bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
218 bt_self_message_iterator *it)
219{
220 struct ctf_fs_msg_iter_data *msg_iter_data =
221 bt_self_message_iterator_get_data(it);
222 bt_self_message_iterator_status status =
223 BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
224
225 BT_ASSERT(msg_iter_data);
226 if (ctf_fs_iterator_reset(msg_iter_data)) {
227 status = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
228 }
229
230 return status;
231}
232
233BT_HIDDEN
d6e69534 234void ctf_fs_iterator_finalize(bt_self_message_iterator *it)
760051fa 235{
d6e69534
PP
236 ctf_fs_msg_iter_data_destroy(
237 bt_self_message_iterator_get_data(it));
760051fa
JG
238}
239
6a9bb5e9 240BT_HIDDEN
4cdfc5e8 241bt_self_message_iterator_status ctf_fs_iterator_init(
d6e69534 242 bt_self_message_iterator *self_msg_iter,
b19ff26f
PP
243 bt_self_component_source *self_comp,
244 bt_self_component_port_output *self_port)
4c1456f0 245{
4f1f88a6 246 struct ctf_fs_port_data *port_data;
d6e69534 247 struct ctf_fs_msg_iter_data *msg_iter_data = NULL;
4cdfc5e8 248 bt_self_message_iterator_status ret =
d6e69534 249 BT_SELF_MESSAGE_ITERATOR_STATUS_OK;
760051fa 250
d94d92ac 251 port_data = bt_self_component_port_get_data(
707b7d35 252 bt_self_component_port_output_as_self_component_port(
d94d92ac
PP
253 self_port));
254 BT_ASSERT(port_data);
d6e69534
PP
255 msg_iter_data = g_new0(struct ctf_fs_msg_iter_data, 1);
256 if (!msg_iter_data) {
257 ret = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
94cf822e
PP
258 goto error;
259 }
260
d6e69534
PP
261 msg_iter_data->pc_msg_iter = self_msg_iter;
262 msg_iter_data->msg_iter = bt_msg_iter_create(
44c440bc 263 port_data->ds_file_group->ctf_fs_trace->metadata->tc,
6de92955
PP
264 bt_common_get_page_size() * 8,
265 ctf_fs_ds_file_medops, NULL);
d6e69534
PP
266 if (!msg_iter_data->msg_iter) {
267 BT_LOGE_STR("Cannot create a CTF message iterator.");
268 ret = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
6de92955
PP
269 goto error;
270 }
271
d6e69534 272 msg_iter_data->ds_file_group = port_data->ds_file_group;
6a9bb5e9 273 if (ctf_fs_iterator_reset(msg_iter_data)) {
d6e69534 274 ret = BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR;
4f1f88a6 275 goto error;
760051fa
JG
276 }
277
d6e69534
PP
278 bt_self_message_iterator_set_data(self_msg_iter,
279 msg_iter_data);
280 if (ret != BT_SELF_MESSAGE_ITERATOR_STATUS_OK) {
4f1f88a6 281 goto error;
760051fa
JG
282 }
283
d6e69534 284 msg_iter_data = NULL;
4f1f88a6 285 goto end;
5b29e799 286
4f1f88a6 287error:
d6e69534 288 bt_self_message_iterator_set_data(self_msg_iter, NULL);
4f1f88a6 289
760051fa 290end:
d6e69534 291 ctf_fs_msg_iter_data_destroy(msg_iter_data);
760051fa
JG
292 return ret;
293}
294
f280892e 295BT_HIDDEN
1a9f7075 296void ctf_fs_destroy(struct ctf_fs_component *ctf_fs)
760051fa 297{
4f1f88a6 298 if (!ctf_fs) {
8fa760ba
JG
299 return;
300 }
4f1f88a6 301
1a9f7075
PP
302 if (ctf_fs->traces) {
303 g_ptr_array_free(ctf_fs->traces, TRUE);
56a1cced 304 }
4f1f88a6
PP
305
306 if (ctf_fs->port_data) {
307 g_ptr_array_free(ctf_fs->port_data, TRUE);
c14d7e26 308 }
760051fa 309
1a9f7075
PP
310 g_free(ctf_fs);
311}
312
f280892e
SM
313static
314void port_data_destroy(struct ctf_fs_port_data *port_data)
315{
316 if (!port_data) {
317 return;
318 }
319
320 g_free(port_data);
321}
322
323static
324void port_data_destroy_notifier(void *data) {
325 port_data_destroy(data);
326}
327
328static
97ade20b 329void ctf_fs_trace_destroy(struct ctf_fs_trace *ctf_fs_trace)
1a9f7075 330{
1a9f7075
PP
331 if (!ctf_fs_trace) {
332 return;
333 }
334
94cf822e
PP
335 if (ctf_fs_trace->ds_file_groups) {
336 g_ptr_array_free(ctf_fs_trace->ds_file_groups, TRUE);
337 }
338
c5b9b441 339 BT_TRACE_PUT_REF_AND_RESET(ctf_fs_trace->trace);
862ca4ed 340
1a9f7075
PP
341 if (ctf_fs_trace->path) {
342 g_string_free(ctf_fs_trace->path, TRUE);
4f1f88a6 343 }
760051fa 344
1a9f7075
PP
345 if (ctf_fs_trace->name) {
346 g_string_free(ctf_fs_trace->name, TRUE);
347 }
348
349 if (ctf_fs_trace->metadata) {
350 ctf_fs_metadata_fini(ctf_fs_trace->metadata);
351 g_free(ctf_fs_trace->metadata);
352 }
353
1a9f7075 354 g_free(ctf_fs_trace);
4c1456f0
JG
355}
356
97ade20b 357static
56a924f4 358void ctf_fs_trace_destroy_notifier(void *data)
97ade20b
JG
359{
360 struct ctf_fs_trace *trace = data;
361 ctf_fs_trace_destroy(trace);
362}
363
f280892e 364struct ctf_fs_component *ctf_fs_component_create(void)
a4792757 365{
f280892e 366 struct ctf_fs_component *ctf_fs;
a4792757 367
f280892e
SM
368 ctf_fs = g_new0(struct ctf_fs_component, 1);
369 if (!ctf_fs) {
370 goto error;
371 }
4f1f88a6 372
f280892e
SM
373 ctf_fs->port_data =
374 g_ptr_array_new_with_free_func(port_data_destroy_notifier);
375 if (!ctf_fs->port_data) {
376 goto error;
4f1f88a6
PP
377 }
378
f280892e
SM
379 ctf_fs->traces =
380 g_ptr_array_new_with_free_func(ctf_fs_trace_destroy_notifier);
381 if (!ctf_fs->traces) {
382 goto error;
383 }
384
385 goto end;
386
387error:
388 if (ctf_fs) {
389 ctf_fs_destroy(ctf_fs);
390 }
391
392end:
393 return ctf_fs;
394}
395
396void ctf_fs_finalize(bt_self_component_source *component)
397{
398 ctf_fs_destroy(bt_self_component_get_data(
399 bt_self_component_source_as_self_component(component)));
5b29e799
JG
400}
401
a38d7650 402gchar *ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group)
547eacf1 403{
a38d7650 404 GString *name = g_string_new(NULL);
547eacf1 405
a38d7650
SM
406 /*
407 * The unique port name is generated by concatenating unique identifiers
408 * for:
409 *
410 * - the trace
411 * - the stream class
412 * - the stream
413 */
414
415 /* For the trace, use the uuid if present, else the path. */
416 if (ds_file_group->ctf_fs_trace->metadata->tc->is_uuid_set) {
417 char uuid_str[BABELTRACE_UUID_STR_LEN];
418
419 bt_uuid_unparse(ds_file_group->ctf_fs_trace->metadata->tc->uuid, uuid_str);
420 g_string_assign(name, uuid_str);
421 } else {
422 g_string_assign(name, ds_file_group->ctf_fs_trace->path->str);
547eacf1
PP
423 }
424
425 /*
a38d7650
SM
426 * For the stream class, use the id if present. We can omit this field
427 * otherwise, as there will only be a single stream class.
547eacf1 428 */
a38d7650
SM
429 if (ds_file_group->sc->id != UINT64_C(-1)) {
430 g_string_append_printf(name, " | %" PRIu64, ds_file_group->sc->id);
431 }
547eacf1 432
a38d7650
SM
433 /* For the stream, use the id if present, else, use the path. */
434 if (ds_file_group->stream_id != UINT64_C(-1)) {
435 g_string_append_printf(name, " | %" PRIu64, ds_file_group->stream_id);
436 } else {
437 BT_ASSERT(ds_file_group->ds_file_infos->len == 1);
438 struct ctf_fs_ds_file_info *ds_file_info =
439 g_ptr_array_index(ds_file_group->ds_file_infos, 0);
440 g_string_append_printf(name, " | %s", ds_file_info->path->str);
441 }
442
443 return g_string_free(name, FALSE);
547eacf1
PP
444}
445
5b29e799 446static
55314f2a
JG
447int create_one_port_for_trace(struct ctf_fs_component *ctf_fs,
448 struct ctf_fs_trace *ctf_fs_trace,
94cf822e 449 struct ctf_fs_ds_file_group *ds_file_group)
5b29e799 450{
4f1f88a6 451 int ret = 0;
4f1f88a6 452 struct ctf_fs_port_data *port_data = NULL;
a38d7650 453 gchar *port_name;
4f1f88a6 454
a38d7650 455 port_name = ctf_fs_make_port_name(ds_file_group);
4f1f88a6
PP
456 if (!port_name) {
457 goto error;
458 }
459
a38d7650 460 BT_LOGD("Creating one port named `%s`", port_name);
4f1f88a6
PP
461
462 /* Create output port for this file */
4f1f88a6
PP
463 port_data = g_new0(struct ctf_fs_port_data, 1);
464 if (!port_data) {
465 goto error;
466 }
467
5c563278 468 port_data->ctf_fs = ctf_fs;
94cf822e 469 port_data->ds_file_group = ds_file_group;
d94d92ac 470 ret = bt_self_component_source_add_output_port(
a38d7650 471 ctf_fs->self_comp, port_name, port_data, NULL);
147337a3 472 if (ret) {
4f1f88a6
PP
473 goto error;
474 }
475
476 g_ptr_array_add(ctf_fs->port_data, port_data);
477 port_data = NULL;
478 goto end;
479
480error:
481 ret = -1;
482
483end:
484 if (port_name) {
a38d7650 485 g_free(port_name);
4f1f88a6
PP
486 }
487
4f1f88a6
PP
488 port_data_destroy(port_data);
489 return ret;
5b29e799
JG
490}
491
492static
55314f2a
JG
493int create_ports_for_trace(struct ctf_fs_component *ctf_fs,
494 struct ctf_fs_trace *ctf_fs_trace)
94cf822e
PP
495{
496 int ret = 0;
94cf822e
PP
497 size_t i;
498
499 /* Create one output port for each stream file group */
500 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
501 struct ctf_fs_ds_file_group *ds_file_group =
502 g_ptr_array_index(ctf_fs_trace->ds_file_groups, i);
503
55314f2a
JG
504 ret = create_one_port_for_trace(ctf_fs, ctf_fs_trace,
505 ds_file_group);
94cf822e 506 if (ret) {
55314f2a 507 BT_LOGE("Cannot create output port.");
94cf822e
PP
508 goto end;
509 }
510 }
511
512end:
513 return ret;
514}
515
94cf822e
PP
516static
517void ctf_fs_ds_file_info_destroy(struct ctf_fs_ds_file_info *ds_file_info)
518{
519 if (!ds_file_info) {
520 return;
521 }
522
523 if (ds_file_info->path) {
524 g_string_free(ds_file_info->path, TRUE);
525 }
526
527 g_free(ds_file_info);
528}
529
530static
531struct ctf_fs_ds_file_info *ctf_fs_ds_file_info_create(const char *path,
7ed5243a 532 int64_t begin_ns)
94cf822e
PP
533{
534 struct ctf_fs_ds_file_info *ds_file_info;
535
536 ds_file_info = g_new0(struct ctf_fs_ds_file_info, 1);
537 if (!ds_file_info) {
538 goto end;
539 }
540
541 ds_file_info->path = g_string_new(path);
542 if (!ds_file_info->path) {
543 ctf_fs_ds_file_info_destroy(ds_file_info);
544 ds_file_info = NULL;
545 goto end;
546 }
547
548 ds_file_info->begin_ns = begin_ns;
549
550end:
551 return ds_file_info;
552}
553
554static
555void ctf_fs_ds_file_group_destroy(struct ctf_fs_ds_file_group *ds_file_group)
556{
557 if (!ds_file_group) {
558 return;
559 }
560
561 if (ds_file_group->ds_file_infos) {
562 g_ptr_array_free(ds_file_group->ds_file_infos, TRUE);
563 }
564
7ed5243a
FD
565 if (ds_file_group->index) {
566 if (ds_file_group->index->entries) {
567 g_ptr_array_free(ds_file_group->index->entries, TRUE);
568 }
569 g_free(ds_file_group->index);
570 }
571
c5b9b441 572 bt_stream_put_ref(ds_file_group->stream);
94cf822e
PP
573 g_free(ds_file_group);
574}
575
576static
577struct ctf_fs_ds_file_group *ctf_fs_ds_file_group_create(
578 struct ctf_fs_trace *ctf_fs_trace,
60363f2f 579 struct ctf_stream_class *sc,
7ed5243a
FD
580 uint64_t stream_instance_id,
581 struct ctf_fs_ds_index *index)
94cf822e
PP
582{
583 struct ctf_fs_ds_file_group *ds_file_group;
584
94cf822e
PP
585 ds_file_group = g_new0(struct ctf_fs_ds_file_group, 1);
586 if (!ds_file_group) {
587 goto error;
588 }
589
590 ds_file_group->ds_file_infos = g_ptr_array_new_with_free_func(
591 (GDestroyNotify) ctf_fs_ds_file_info_destroy);
592 if (!ds_file_group->ds_file_infos) {
593 goto error;
594 }
595
7ed5243a
FD
596 ds_file_group->index = index;
597
547eacf1 598 ds_file_group->stream_id = stream_instance_id;
60363f2f
PP
599 BT_ASSERT(sc);
600 ds_file_group->sc = sc;
94cf822e 601 ds_file_group->ctf_fs_trace = ctf_fs_trace;
94cf822e
PP
602 goto end;
603
604error:
605 ctf_fs_ds_file_group_destroy(ds_file_group);
7ed5243a 606 ctf_fs_ds_index_destroy(index);
94cf822e
PP
607 ds_file_group = NULL;
608
609end:
610 return ds_file_group;
611}
612
8bf7105e
MJ
613/* Replace by g_ptr_array_insert when we depend on glib >= 2.40. */
614static
615void array_insert(GPtrArray *array, gpointer element, size_t pos)
616{
617 size_t original_array_len = array->len;
618
619 /* Allocate an unused element at the end of the array. */
620 g_ptr_array_add(array, NULL);
621
622 /* If we are not inserting at the end, move the elements by one. */
623 if (pos < original_array_len) {
624 memmove(&(array->pdata[pos + 1]),
625 &(array->pdata[pos]),
626 (original_array_len - pos) * sizeof(gpointer));
627 }
628
f897d50c 629 /* Insert the value. */
8bf7105e
MJ
630 array->pdata[pos] = element;
631}
632
41a65f30
SM
633/*
634 * Insert ds_file_info in ds_file_group's list of ds_file_infos at the right
635 * place to keep it sorted.
636 */
637
638static
639void ds_file_group_insert_ds_file_info_sorted(
640 struct ctf_fs_ds_file_group *ds_file_group,
641 struct ctf_fs_ds_file_info *ds_file_info)
642{
643 guint i;
644
645 /* Find the spot where to insert this ds_file_info. */
646 for (i = 0; i < ds_file_group->ds_file_infos->len; i++) {
647 struct ctf_fs_ds_file_info *other_ds_file_info =
648 g_ptr_array_index(ds_file_group->ds_file_infos, i);
649
650 if (ds_file_info->begin_ns < other_ds_file_info->begin_ns) {
651 break;
652 }
653 }
654
655 array_insert(ds_file_group->ds_file_infos, ds_file_info, i);
656}
657
7ed5243a
FD
658static
659void ds_file_group_insert_ds_index_entry_sorted(
660 struct ctf_fs_ds_file_group *ds_file_group,
661 struct ctf_fs_ds_index_entry *entry)
662{
663 guint i;
664
665 /* Find the spot where to insert this index entry. */
666 for (i = 0; i < ds_file_group->index->entries->len; i++) {
667 struct ctf_fs_ds_index_entry *other_entry = g_ptr_array_index(
668 ds_file_group->index->entries, i);
669
670 if (entry->timestamp_begin_ns < other_entry->timestamp_begin_ns) {
671 break;
672 }
673 }
674
675 array_insert(ds_file_group->index->entries, entry, i);
676}
677
41a65f30
SM
678/*
679 * Create a new ds_file_info using the provided path, begin_ns and index, then
680 * add it to ds_file_group's list of ds_file_infos.
681 */
682
94cf822e
PP
683static
684int ctf_fs_ds_file_group_add_ds_file_info(
685 struct ctf_fs_ds_file_group *ds_file_group,
7ed5243a 686 const char *path, int64_t begin_ns)
94cf822e
PP
687{
688 struct ctf_fs_ds_file_info *ds_file_info;
94cf822e
PP
689 int ret = 0;
690
7ed5243a 691 ds_file_info = ctf_fs_ds_file_info_create(path, begin_ns);
94cf822e
PP
692 if (!ds_file_info) {
693 goto error;
694 }
695
41a65f30 696 ds_file_group_insert_ds_file_info_sorted(ds_file_group, ds_file_info);
94cf822e 697
94cf822e
PP
698 ds_file_info = NULL;
699 goto end;
700
701error:
702 ctf_fs_ds_file_info_destroy(ds_file_info);
703 ret = -1;
94cf822e
PP
704end:
705 return ret;
706}
707
708static
709int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
e5be10ef 710 const char *path)
94cf822e 711{
44c440bc
PP
712 int64_t stream_instance_id = -1;
713 int64_t begin_ns = -1;
94cf822e
PP
714 struct ctf_fs_ds_file_group *ds_file_group = NULL;
715 bool add_group = false;
716 int ret;
717 size_t i;
6de92955 718 struct ctf_fs_ds_file *ds_file = NULL;
97ade20b 719 struct ctf_fs_ds_index *index = NULL;
d6e69534 720 struct bt_msg_iter *msg_iter = NULL;
44c440bc 721 struct ctf_stream_class *sc = NULL;
d6e69534 722 struct bt_msg_iter_packet_properties props;
94cf822e 723
d6e69534 724 msg_iter = bt_msg_iter_create(ctf_fs_trace->metadata->tc,
6de92955 725 bt_common_get_page_size() * 8, ctf_fs_ds_file_medops, NULL);
d6e69534
PP
726 if (!msg_iter) {
727 BT_LOGE_STR("Cannot create a CTF message iterator.");
6de92955
PP
728 goto error;
729 }
730
d6e69534 731 ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, msg_iter,
5c563278 732 NULL, path);
97ade20b
JG
733 if (!ds_file) {
734 goto error;
735 }
736
41693723 737 ret = bt_msg_iter_get_packet_properties(ds_file->msg_iter, &props);
94cf822e 738 if (ret) {
55314f2a 739 BT_LOGE("Cannot get stream file's first packet's header and context fields (`%s`).",
94cf822e
PP
740 path);
741 goto error;
742 }
743
44c440bc
PP
744 sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc,
745 props.stream_class_id);
746 BT_ASSERT(sc);
44c440bc
PP
747 stream_instance_id = props.data_stream_id;
748
749 if (props.snapshots.beginning_clock != UINT64_C(-1)) {
750 BT_ASSERT(sc->default_clock_class);
0f2d58c9
PP
751 ret = bt_util_clock_cycles_to_ns_from_origin(
752 props.snapshots.beginning_clock,
753 sc->default_clock_class->frequency,
754 sc->default_clock_class->offset_seconds,
755 sc->default_clock_class->offset_cycles, &begin_ns);
44c440bc
PP
756 if (ret) {
757 BT_LOGE("Cannot convert clock cycles to nanoseconds from origin (`%s`).",
758 path);
759 goto error;
760 }
94cf822e
PP
761 }
762
97ade20b
JG
763 index = ctf_fs_ds_file_build_index(ds_file);
764 if (!index) {
765 BT_LOGW("Failed to index CTF stream file \'%s\'",
766 ds_file->file->path->str);
767 }
768
44c440bc 769 if (begin_ns == -1) {
94cf822e
PP
770 /*
771 * No beggining timestamp to sort the stream files
772 * within a stream file group, so consider that this
773 * file must be the only one within its group.
774 */
44c440bc 775 stream_instance_id = -1;
94cf822e
PP
776 }
777
44c440bc 778 if (stream_instance_id == -1) {
94cf822e
PP
779 /*
780 * No stream instance ID or no beginning timestamp:
781 * create a unique stream file group for this stream
782 * file because, even if there's a stream instance ID,
783 * there's no timestamp to order the file within its
784 * group.
785 */
94cf822e 786 ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace,
7ed5243a
FD
787 sc, UINT64_C(-1), index);
788 /* Ownership of index is transferred. */
789 index = NULL;
790
94cf822e
PP
791 if (!ds_file_group) {
792 goto error;
793 }
794
795 ret = ctf_fs_ds_file_group_add_ds_file_info(ds_file_group,
7ed5243a 796 path, begin_ns);
94cf822e
PP
797 if (ret) {
798 goto error;
799 }
800
801 add_group = true;
802 goto end;
803 }
804
44c440bc
PP
805 BT_ASSERT(stream_instance_id != -1);
806 BT_ASSERT(begin_ns != -1);
94cf822e
PP
807
808 /* Find an existing stream file group with this ID */
809 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
94cf822e
PP
810 ds_file_group = g_ptr_array_index(
811 ctf_fs_trace->ds_file_groups, i);
94cf822e 812
60363f2f 813 if (ds_file_group->sc == sc &&
547eacf1
PP
814 ds_file_group->stream_id ==
815 stream_instance_id) {
94cf822e
PP
816 break;
817 }
818
819 ds_file_group = NULL;
820 }
821
822 if (!ds_file_group) {
823 ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace,
7ed5243a
FD
824 sc, stream_instance_id, index);
825 /* Ownership of index is transferred. */
826 index = NULL;
94cf822e
PP
827 if (!ds_file_group) {
828 goto error;
829 }
830
831 add_group = true;
832 }
833
547eacf1 834 ret = ctf_fs_ds_file_group_add_ds_file_info(ds_file_group, path,
7ed5243a 835 begin_ns);
94cf822e
PP
836 if (ret) {
837 goto error;
838 }
839
840 goto end;
841
842error:
843 ctf_fs_ds_file_group_destroy(ds_file_group);
90e1eb09 844 ds_file_group = NULL;
94cf822e
PP
845 ret = -1;
846
847end:
848 if (add_group && ds_file_group) {
849 g_ptr_array_add(ctf_fs_trace->ds_file_groups, ds_file_group);
850 }
547eacf1 851
97ade20b 852 ctf_fs_ds_file_destroy(ds_file);
6de92955 853
d6e69534
PP
854 if (msg_iter) {
855 bt_msg_iter_destroy(msg_iter);
6de92955
PP
856 }
857
97ade20b 858 ctf_fs_ds_index_destroy(index);
94cf822e
PP
859 return ret;
860}
861
862static
e5be10ef 863int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
e7a4393b
JG
864{
865 int ret = 0;
4f1f88a6 866 const char *basename;
e7a4393b 867 GError *error = NULL;
4f1f88a6 868 GDir *dir = NULL;
e7a4393b 869
94cf822e 870 /* Check each file in the path directory, except specific ones */
1a9f7075 871 dir = g_dir_open(ctf_fs_trace->path->str, 0, &error);
e7a4393b 872 if (!dir) {
55314f2a 873 BT_LOGE("Cannot open directory `%s`: %s (code %d)",
1a9f7075 874 ctf_fs_trace->path->str, error->message,
4f1f88a6 875 error->code);
e7a4393b
JG
876 goto error;
877 }
878
4f1f88a6 879 while ((basename = g_dir_read_name(dir))) {
94cf822e
PP
880 struct ctf_fs_file *file;
881
4f1f88a6 882 if (!strcmp(basename, CTF_FS_METADATA_FILENAME)) {
e7a4393b 883 /* Ignore the metadata stream. */
3743a302 884 BT_LOGD("Ignoring metadata file `%s" G_DIR_SEPARATOR_S "%s`",
1a9f7075 885 ctf_fs_trace->path->str, basename);
e7a4393b
JG
886 continue;
887 }
888
4f1f88a6 889 if (basename[0] == '.') {
3743a302 890 BT_LOGD("Ignoring hidden file `%s" G_DIR_SEPARATOR_S "%s`",
1a9f7075 891 ctf_fs_trace->path->str, basename);
e7a4393b
JG
892 continue;
893 }
894
895 /* Create the file. */
55314f2a 896 file = ctf_fs_file_create();
e7a4393b 897 if (!file) {
3743a302 898 BT_LOGE("Cannot create stream file object for file `%s" G_DIR_SEPARATOR_S "%s`",
1a9f7075 899 ctf_fs_trace->path->str, basename);
e7a4393b
JG
900 goto error;
901 }
902
903 /* Create full path string. */
3743a302 904 g_string_append_printf(file->path, "%s" G_DIR_SEPARATOR_S "%s",
1a9f7075 905 ctf_fs_trace->path->str, basename);
e7a4393b 906 if (!g_file_test(file->path->str, G_FILE_TEST_IS_REGULAR)) {
55314f2a 907 BT_LOGD("Ignoring non-regular file `%s`",
1a9f7075 908 file->path->str);
e7a4393b 909 ctf_fs_file_destroy(file);
4f1f88a6 910 file = NULL;
e7a4393b
JG
911 continue;
912 }
913
55314f2a 914 ret = ctf_fs_file_open(file, "rb");
4f1f88a6 915 if (ret) {
55314f2a 916 BT_LOGE("Cannot open stream file `%s`", file->path->str);
e7a4393b
JG
917 goto error;
918 }
919
9fa0891a
JG
920 if (file->size == 0) {
921 /* Skip empty stream. */
55314f2a 922 BT_LOGD("Ignoring empty file `%s`", file->path->str);
9fa0891a
JG
923 ctf_fs_file_destroy(file);
924 continue;
925 }
926
e5be10ef 927 ret = add_ds_file_to_ds_file_group(ctf_fs_trace,
94cf822e 928 file->path->str);
4f1f88a6 929 if (ret) {
89b08333 930 BT_LOGE("Cannot add stream file `%s` to stream file group",
1a9f7075 931 file->path->str);
94cf822e 932 ctf_fs_file_destroy(file);
e7a4393b
JG
933 goto error;
934 }
935
4f1f88a6 936 ctf_fs_file_destroy(file);
e7a4393b
JG
937 }
938
939 goto end;
4f1f88a6 940
e7a4393b
JG
941error:
942 ret = -1;
4f1f88a6 943
e7a4393b
JG
944end:
945 if (dir) {
946 g_dir_close(dir);
947 dir = NULL;
948 }
4f1f88a6 949
e7a4393b
JG
950 if (error) {
951 g_error_free(error);
952 }
5b29e799 953
91457551 954 return ret;
5b29e799
JG
955}
956
862ca4ed 957static
b19ff26f 958int set_trace_name(bt_trace *trace, const char *name_suffix)
862ca4ed
PP
959{
960 int ret = 0;
b19ff26f
PP
961 const bt_trace_class *tc = bt_trace_borrow_class_const(trace);
962 const bt_value *val;
862ca4ed
PP
963 GString *name;
964
965 name = g_string_new(NULL);
966 if (!name) {
967 BT_LOGE_STR("Failed to allocate a GString.");
968 ret = -1;
969 goto end;
970 }
971
972 /*
973 * Check if we have a trace environment string value named `hostname`.
974 * If so, use it as the trace name's prefix.
975 */
976 val = bt_trace_class_borrow_environment_entry_value_by_name_const(
977 tc, "hostname");
978 if (val && bt_value_is_string(val)) {
979 g_string_append(name, bt_value_string_get(val));
980
981 if (name_suffix) {
982 g_string_append_c(name, G_DIR_SEPARATOR);
983 }
984 }
985
986 if (name_suffix) {
987 g_string_append(name, name_suffix);
988 }
989
990 ret = bt_trace_set_name(trace, name->str);
991 if (ret) {
992 goto end;
993 }
994
995 goto end;
996
997end:
998 if (name) {
999 g_string_free(name, TRUE);
1000 }
1001
1002 return ret;
1003}
1004
f280892e 1005static
41693723
PP
1006struct ctf_fs_trace *ctf_fs_trace_create(bt_self_component_source *self_comp,
1007 const char *path, const char *name,
e5be10ef 1008 struct ctf_fs_metadata_config *metadata_config)
1a9f7075
PP
1009{
1010 struct ctf_fs_trace *ctf_fs_trace;
1011 int ret;
1012
1013 ctf_fs_trace = g_new0(struct ctf_fs_trace, 1);
1014 if (!ctf_fs_trace) {
1015 goto end;
1016 }
1017
1a9f7075
PP
1018 ctf_fs_trace->path = g_string_new(path);
1019 if (!ctf_fs_trace->path) {
1020 goto error;
1021 }
1022
1023 ctf_fs_trace->name = g_string_new(name);
1024 if (!ctf_fs_trace->name) {
1025 goto error;
1026 }
1027
1028 ctf_fs_trace->metadata = g_new0(struct ctf_fs_metadata, 1);
1029 if (!ctf_fs_trace->metadata) {
1030 goto error;
1031 }
1032
44c440bc 1033 ctf_fs_metadata_init(ctf_fs_trace->metadata);
94cf822e
PP
1034 ctf_fs_trace->ds_file_groups = g_ptr_array_new_with_free_func(
1035 (GDestroyNotify) ctf_fs_ds_file_group_destroy);
1036 if (!ctf_fs_trace->ds_file_groups) {
1037 goto error;
1038 }
1039
41693723
PP
1040 ret = ctf_fs_metadata_set_trace_class(self_comp,
1041 ctf_fs_trace, metadata_config);
862ca4ed
PP
1042 if (ret) {
1043 goto error;
1044 }
1045
41693723
PP
1046 if (ctf_fs_trace->metadata->trace_class) {
1047 ctf_fs_trace->trace =
1048 bt_trace_create(ctf_fs_trace->metadata->trace_class);
1049 if (!ctf_fs_trace->trace) {
1050 goto error;
1051 }
862ca4ed
PP
1052 }
1053
41693723
PP
1054 if (ctf_fs_trace->trace) {
1055 ret = set_trace_name(ctf_fs_trace->trace, name);
1056 if (ret) {
1057 goto error;
1058 }
1a9f7075
PP
1059 }
1060
e5be10ef 1061 ret = create_ds_file_groups(ctf_fs_trace);
94cf822e
PP
1062 if (ret) {
1063 goto error;
1064 }
1065
1a9f7075
PP
1066 goto end;
1067
1068error:
1069 ctf_fs_trace_destroy(ctf_fs_trace);
1070 ctf_fs_trace = NULL;
44c440bc 1071
1a9f7075
PP
1072end:
1073 return ctf_fs_trace;
1074}
1075
1076static
1077int path_is_ctf_trace(const char *path)
1078{
1079 GString *metadata_path = g_string_new(NULL);
1080 int ret = 0;
1081
1082 if (!metadata_path) {
1083 ret = -1;
1084 goto end;
1085 }
1086
3743a302 1087 g_string_printf(metadata_path, "%s" G_DIR_SEPARATOR_S "%s", path, CTF_FS_METADATA_FILENAME);
1a9f7075
PP
1088
1089 if (g_file_test(metadata_path->str, G_FILE_TEST_IS_REGULAR)) {
1090 ret = 1;
1091 goto end;
1092 }
1093
1094end:
1095 g_string_free(metadata_path, TRUE);
1096 return ret;
1097}
1098
1099static
55314f2a 1100int add_trace_path(GList **trace_paths, const char *path)
1a9f7075 1101{
4bd72b60 1102 GString *norm_path = NULL;
1a9f7075 1103 int ret = 0;
1a9f7075 1104
4bd72b60
PP
1105 norm_path = bt_common_normalize_path(path, NULL);
1106 if (!norm_path) {
55314f2a 1107 BT_LOGE("Failed to normalize path `%s`.", path);
1a9f7075
PP
1108 ret = -1;
1109 goto end;
1110 }
1111
3743a302 1112 // FIXME: Remove or ifdef for __MINGW32__
4bd72b60 1113 if (strcmp(norm_path->str, "/") == 0) {
55314f2a 1114 BT_LOGE("Opening a trace in `/` is not supported.");
1a9f7075
PP
1115 ret = -1;
1116 goto end;
1117 }
1118
4bd72b60 1119 *trace_paths = g_list_prepend(*trace_paths, norm_path);
f6ccaed9 1120 BT_ASSERT(*trace_paths);
4bd72b60 1121 norm_path = NULL;
1a9f7075
PP
1122
1123end:
4bd72b60
PP
1124 if (norm_path) {
1125 g_string_free(norm_path, TRUE);
1126 }
1127
1a9f7075
PP
1128 return ret;
1129}
1130
f280892e 1131static
55314f2a 1132int ctf_fs_find_traces(GList **trace_paths, const char *start_path)
1a9f7075
PP
1133{
1134 int ret;
1135 GError *error = NULL;
1136 GDir *dir = NULL;
1137 const char *basename = NULL;
1138
1139 /* Check if the starting path is a CTF trace itself */
1140 ret = path_is_ctf_trace(start_path);
1141 if (ret < 0) {
1142 goto end;
1143 }
1144
1145 if (ret) {
1146 /*
4bd72b60
PP
1147 * Stop recursion: a CTF trace cannot contain another
1148 * CTF trace.
1a9f7075 1149 */
55314f2a 1150 ret = add_trace_path(trace_paths, start_path);
1a9f7075
PP
1151 goto end;
1152 }
1153
1154 /* Look for subdirectories */
1155 if (!g_file_test(start_path, G_FILE_TEST_IS_DIR)) {
1156 /* Starting path is not a directory: end of recursion */
1157 goto end;
1158 }
1159
1160 dir = g_dir_open(start_path, 0, &error);
1161 if (!dir) {
1162 if (error->code == G_FILE_ERROR_ACCES) {
55314f2a 1163 BT_LOGD("Cannot open directory `%s`: %s (code %d): continuing",
1a9f7075
PP
1164 start_path, error->message, error->code);
1165 goto end;
1166 }
1167
55314f2a 1168 BT_LOGE("Cannot open directory `%s`: %s (code %d)",
1a9f7075
PP
1169 start_path, error->message, error->code);
1170 ret = -1;
1171 goto end;
1172 }
1173
1174 while ((basename = g_dir_read_name(dir))) {
1175 GString *sub_path = g_string_new(NULL);
1176
1177 if (!sub_path) {
1178 ret = -1;
1179 goto end;
1180 }
1181
3743a302 1182 g_string_printf(sub_path, "%s" G_DIR_SEPARATOR_S "%s", start_path, basename);
55314f2a 1183 ret = ctf_fs_find_traces(trace_paths, sub_path->str);
1a9f7075
PP
1184 g_string_free(sub_path, TRUE);
1185 if (ret) {
1186 goto end;
1187 }
1188 }
1189
1190end:
1191 if (dir) {
1192 g_dir_close(dir);
1193 }
1194
1195 if (error) {
1196 g_error_free(error);
1197 }
1198
1199 return ret;
1200}
1201
f280892e 1202static
55314f2a 1203GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path) {
1a9f7075 1204 GList *trace_names = NULL;
1a9f7075 1205 GList *node;
4bd72b60
PP
1206 const char *last_sep;
1207 size_t base_dist;
1a9f7075
PP
1208
1209 /*
4bd72b60
PP
1210 * At this point we know that all the trace paths are
1211 * normalized, and so is the base path. This means that
1212 * they are absolute and they don't end with a separator.
1213 * We can simply find the location of the last separator
1214 * in the base path, which gives us the name of the actual
1215 * directory to look into, and use this location as the
1216 * start of each trace name within each trace path.
1217 *
1218 * For example:
1219 *
1220 * Base path: /home/user/my-traces/some-trace
1221 * Trace paths:
1222 * - /home/user/my-traces/some-trace/host1/trace1
1223 * - /home/user/my-traces/some-trace/host1/trace2
1224 * - /home/user/my-traces/some-trace/host2/trace
1225 * - /home/user/my-traces/some-trace/other-trace
1226 *
1227 * In this case the trace names are:
1228 *
1229 * - some-trace/host1/trace1
1230 * - some-trace/host1/trace2
1231 * - some-trace/host2/trace
1232 * - some-trace/other-trace
1a9f7075 1233 */
4bd72b60 1234 last_sep = strrchr(base_path, G_DIR_SEPARATOR);
1a9f7075 1235
4bd72b60 1236 /* We know there's at least one separator */
f6ccaed9 1237 BT_ASSERT(last_sep);
1a9f7075 1238
4bd72b60
PP
1239 /* Distance to base */
1240 base_dist = last_sep - base_path + 1;
1a9f7075
PP
1241
1242 /* Create the trace names */
1243 for (node = trace_paths; node; node = g_list_next(node)) {
1244 GString *trace_name = g_string_new(NULL);
1245 GString *trace_path = node->data;
1246
f6ccaed9 1247 BT_ASSERT(trace_name);
4bd72b60 1248 g_string_assign(trace_name, &trace_path->str[base_dist]);
1a9f7075
PP
1249 trace_names = g_list_append(trace_names, trace_name);
1250 }
1251
1252 return trace_names;
1253}
1254
f280892e
SM
1255/* Helper for ctf_fs_component_create_ctf_fs_traces, to handle a single path/root. */
1256
1a9f7075 1257static
f280892e 1258int ctf_fs_component_create_ctf_fs_traces_one_root(bt_self_component_source *self_comp,
41693723 1259 struct ctf_fs_component *ctf_fs,
1a9f7075
PP
1260 const char *path_param)
1261{
1262 struct ctf_fs_trace *ctf_fs_trace = NULL;
1263 int ret = 0;
4bd72b60 1264 GString *norm_path = NULL;
1a9f7075
PP
1265 GList *trace_paths = NULL;
1266 GList *trace_names = NULL;
1267 GList *tp_node;
1268 GList *tn_node;
1269
4bd72b60
PP
1270 norm_path = bt_common_normalize_path(path_param, NULL);
1271 if (!norm_path) {
55314f2a 1272 BT_LOGE("Failed to normalize path: `%s`.",
4bd72b60
PP
1273 path_param);
1274 goto error;
1275 }
1276
55314f2a 1277 ret = ctf_fs_find_traces(&trace_paths, norm_path->str);
1a9f7075
PP
1278 if (ret) {
1279 goto error;
1280 }
1281
1282 if (!trace_paths) {
55314f2a 1283 BT_LOGE("No CTF traces recursively found in `%s`.",
1a9f7075
PP
1284 path_param);
1285 goto error;
1286 }
1287
55314f2a 1288 trace_names = ctf_fs_create_trace_names(trace_paths, norm_path->str);
1a9f7075 1289 if (!trace_names) {
55314f2a 1290 BT_LOGE("Cannot create trace names from trace paths.");
1a9f7075
PP
1291 goto error;
1292 }
1293
1294 for (tp_node = trace_paths, tn_node = trace_names; tp_node;
1295 tp_node = g_list_next(tp_node),
1296 tn_node = g_list_next(tn_node)) {
1297 GString *trace_path = tp_node->data;
1298 GString *trace_name = tn_node->data;
1299
41693723
PP
1300 ctf_fs_trace = ctf_fs_trace_create(self_comp,
1301 trace_path->str, trace_name->str,
1302 &ctf_fs->metadata_config);
1a9f7075 1303 if (!ctf_fs_trace) {
55314f2a 1304 BT_LOGE("Cannot create trace for `%s`.",
1a9f7075
PP
1305 trace_path->str);
1306 goto error;
1307 }
52c5fe74
PP
1308
1309 g_ptr_array_add(ctf_fs->traces, ctf_fs_trace);
1310 ctf_fs_trace = NULL;
1a9f7075
PP
1311 }
1312
1a9f7075
PP
1313 goto end;
1314
1315error:
1316 ret = -1;
1317 ctf_fs_trace_destroy(ctf_fs_trace);
1318
1319end:
1320 for (tp_node = trace_paths; tp_node; tp_node = g_list_next(tp_node)) {
1321 if (tp_node->data) {
1322 g_string_free(tp_node->data, TRUE);
1323 }
1324 }
1325
1326 for (tn_node = trace_names; tn_node; tn_node = g_list_next(tn_node)) {
1327 if (tn_node->data) {
1328 g_string_free(tn_node->data, TRUE);
1329 }
1330 }
1331
1332 if (trace_paths) {
1333 g_list_free(trace_paths);
1334 }
1335
1336 if (trace_names) {
1337 g_list_free(trace_names);
1338 }
1339
4bd72b60
PP
1340 if (norm_path) {
1341 g_string_free(norm_path, TRUE);
1342 }
1343
1a9f7075
PP
1344 return ret;
1345}
1346
41a65f30
SM
1347/* GCompareFunc to sort traces by UUID. */
1348
1349static
1350gint sort_traces_by_uuid(gconstpointer a, gconstpointer b)
1351{
1352 const struct ctf_fs_trace *trace_a = *((const struct ctf_fs_trace **) a);
1353 const struct ctf_fs_trace *trace_b = *((const struct ctf_fs_trace **) b);
1354
1355 bool trace_a_has_uuid = trace_a->metadata->tc->is_uuid_set;
1356 bool trace_b_has_uuid = trace_b->metadata->tc->is_uuid_set;
1357 gint ret;
1358
1359 /* Order traces without uuid first. */
1360 if (!trace_a_has_uuid && trace_b_has_uuid) {
1361 ret = -1;
1362 } else if (trace_a_has_uuid && !trace_b_has_uuid) {
1363 ret = 1;
1364 } else if (!trace_a_has_uuid && !trace_b_has_uuid) {
1365 ret = 0;
1366 } else {
1367 ret = bt_uuid_compare(trace_a->metadata->tc->uuid, trace_b->metadata->tc->uuid);
1368 }
1369
1370 return ret;
1371}
1372
1373/*
1374 * Count the number of stream and event classes defined by this trace's metadata.
1375 *
1376 * This is used to determine which metadata is the "latest", out of multiple
1377 * traces sharing the same UUID. It is assumed that amongst all these metadatas,
1378 * a bigger metadata is a superset of a smaller metadata. Therefore, it is
1379 * enough to just count the classes.
1380 */
1381
1382static
1383unsigned int metadata_count_stream_and_event_classes(struct ctf_fs_trace *trace)
1384{
1385 unsigned int num = trace->metadata->tc->stream_classes->len;
1386 guint i;
1387
1388 for (i = 0; i < trace->metadata->tc->stream_classes->len; i++) {
1389 struct ctf_stream_class *sc = trace->metadata->tc->stream_classes->pdata[i];
1390 num += sc->event_classes->len;
1391 }
1392
1393 return num;
1394}
1395
1396/*
1397 * Merge the src ds_file_group into dest. This consists of merging their
1398 * ds_file_infos, making sure to keep the result sorted.
1399 */
1400
1401static
1402void merge_ctf_fs_ds_file_groups(struct ctf_fs_ds_file_group *dest, struct ctf_fs_ds_file_group *src)
1403{
1404 guint i;
1405
1406 for (i = 0; i < src->ds_file_infos->len; i++) {
1407 struct ctf_fs_ds_file_info *ds_file_info =
1408 g_ptr_array_index(src->ds_file_infos, i);
1409
1410 /* Ownership of the ds_file_info is transferred to dest. */
1411 g_ptr_array_index(src->ds_file_infos, i) = NULL;
1412
1413 ds_file_group_insert_ds_file_info_sorted(dest, ds_file_info);
1414 }
41a65f30 1415
7ed5243a
FD
1416 /* Merge both indexes. */
1417 for (i = 0; i < src->index->entries->len; i++) {
1418 struct ctf_fs_ds_index_entry *entry = g_ptr_array_index(
1419 src->index->entries, i);
1420
1421 /*
1422 * Ownership of the ctf_fs_ds_index_entry is transferred to
1423 * dest.
1424 */
1425 g_ptr_array_index(src->index->entries, i) = NULL;
1426
1427 ds_file_group_insert_ds_index_entry_sorted(dest, entry);
1428 }
1429}
41a65f30
SM
1430/* Merge src_trace's data stream file groups into dest_trace's. */
1431
1432static
54ef52bd 1433int merge_matching_ctf_fs_ds_file_groups(
41a65f30
SM
1434 struct ctf_fs_trace *dest_trace,
1435 struct ctf_fs_trace *src_trace)
1436{
1437
1438 GPtrArray *dest = dest_trace->ds_file_groups;
1439 GPtrArray *src = src_trace->ds_file_groups;
1440 guint s_i;
54ef52bd 1441 int ret = 0;
41a65f30
SM
1442
1443 /*
1444 * Save the initial length of dest: we only want to check against the
1445 * original elements in the inner loop.
1446 */
1447 const guint dest_len = dest->len;
1448
1449 for (s_i = 0; s_i < src->len; s_i++) {
1450 struct ctf_fs_ds_file_group *src_group = g_ptr_array_index(src, s_i);
1451 struct ctf_fs_ds_file_group *dest_group = NULL;
1452
1453 /* A stream instance without ID can't match a stream in the other trace. */
1454 if (src_group->stream_id != -1) {
1455 guint d_i;
1456
1457 /* Let's search for a matching ds_file_group in the destination. */
1458 for (d_i = 0; d_i < dest_len; d_i++) {
1459 struct ctf_fs_ds_file_group *candidate_dest = g_ptr_array_index(dest, d_i);
1460
1461 /* Can't match a stream instance without ID. */
1462 if (candidate_dest->stream_id == -1) {
1463 continue;
1464 }
1465
1466 /*
1467 * If the two groups have the same stream instance id
1468 * and belong to the same stream class (stream instance
1469 * ids are per-stream class), they represent the same
1470 * stream instance.
1471 */
1472 if (candidate_dest->stream_id != src_group->stream_id ||
1473 candidate_dest->sc->id != src_group->sc->id) {
1474 continue;
1475 }
1476
1477 dest_group = candidate_dest;
1478 break;
1479 }
1480 }
1481
1482 /*
1483 * Didn't find a friend in dest to merge our src_group into?
7ed5243a
FD
1484 * Create a new empty one. This can happen if a stream was
1485 * active in the source trace chunk but not in the destination
1486 * trace chunk.
41a65f30
SM
1487 */
1488 if (!dest_group) {
1489 struct ctf_stream_class *sc;
7ed5243a 1490 struct ctf_fs_ds_index *index;
41a65f30
SM
1491
1492 sc = ctf_trace_class_borrow_stream_class_by_id(
1493 dest_trace->metadata->tc, src_group->sc->id);
1494 BT_ASSERT(sc);
1495
7ed5243a
FD
1496 index = ctf_fs_ds_index_create();
1497 if (!index) {
1498 ret = -1;
1499 goto end;
1500 }
1501
41a65f30 1502 dest_group = ctf_fs_ds_file_group_create(dest_trace, sc,
7ed5243a
FD
1503 src_group->stream_id, index);
1504 /* Ownership of index is transferred. */
1505 index = NULL;
54ef52bd
FD
1506 if (!dest_group) {
1507 ret = -1;
1508 goto end;
1509 }
41a65f30
SM
1510
1511 g_ptr_array_add(dest_trace->ds_file_groups, dest_group);
1512 }
1513
1514 BT_ASSERT(dest_group);
1515 merge_ctf_fs_ds_file_groups(dest_group, src_group);
1516 }
54ef52bd
FD
1517
1518end:
1519 return ret;
41a65f30
SM
1520}
1521
1522/*
1523 * Collapse the given traces, which must all share the same UUID, in a single
1524 * one.
1525 *
1526 * The trace with the most expansive metadata is chosen and all other traces
1527 * are merged into that one. The array slots of all the traces that get merged
1528 * in the chosen one are set to NULL, so only the slot of the chosen trace
1529 * remains non-NULL.
1530 */
1531
1532static
54ef52bd 1533int merge_ctf_fs_traces(struct ctf_fs_trace **traces, unsigned int num_traces)
41a65f30
SM
1534{
1535 unsigned int winner_count;
1536 struct ctf_fs_trace *winner;
1537 guint i;
54ef52bd 1538 int ret = 0;
41a65f30
SM
1539 char uuid_str[BABELTRACE_UUID_STR_LEN];
1540
1541 BT_ASSERT(num_traces >= 2);
1542
1543 winner_count = metadata_count_stream_and_event_classes(traces[0]);
1544 winner = traces[0];
1545
1546 /* Find the trace with the largest metadata. */
1547 for (i = 1; i < num_traces; i++) {
1548 struct ctf_fs_trace *candidate;
1549 unsigned int candidate_count;
1550
1551 candidate = traces[i];
1552
1553 /* A bit of sanity check. */
1554 BT_ASSERT(bt_uuid_compare(winner->metadata->tc->uuid, candidate->metadata->tc->uuid) == 0);
1555
1556 candidate_count = metadata_count_stream_and_event_classes(candidate);
1557
1558 if (candidate_count > winner_count) {
1559 winner_count = candidate_count;
1560 winner = candidate;
1561 }
1562 }
1563
1564 /* Merge all the other traces in the winning trace. */
1565 for (i = 0; i < num_traces; i++) {
1566 struct ctf_fs_trace *trace = traces[i];
1567
1568 /* Don't merge the winner into itself. */
1569 if (trace == winner) {
1570 continue;
1571 }
1572
1573 /* Merge trace's data stream file groups into winner's. */
54ef52bd
FD
1574 ret = merge_matching_ctf_fs_ds_file_groups(winner, trace);
1575 if (ret) {
1576 goto end;
1577 }
41a65f30
SM
1578
1579 /* Free the trace that got merged into winner, clear the slot in the array. */
1580 ctf_fs_trace_destroy(trace);
1581 traces[i] = NULL;
1582 }
1583
1584 /* Use the string representation of the UUID as the trace name. */
1585 bt_uuid_unparse(winner->metadata->tc->uuid, uuid_str);
1586 g_string_printf(winner->name, "%s", uuid_str);
54ef52bd
FD
1587
1588end:
1589 return ret;
41a65f30
SM
1590}
1591
1592/*
1593 * Merge all traces of `ctf_fs` that share the same UUID in a single trace.
1594 * Traces with no UUID are not merged.
1595 */
1596
1597static
54ef52bd 1598int merge_traces_with_same_uuid(struct ctf_fs_component *ctf_fs)
41a65f30
SM
1599{
1600 GPtrArray *traces = ctf_fs->traces;
1601 guint range_start_idx = 0;
1602 unsigned int num_traces = 0;
1603 guint i;
54ef52bd 1604 int ret = 0;
41a65f30
SM
1605
1606 /* Sort the traces by uuid, then collapse traces with the same uuid in a single one. */
1607 g_ptr_array_sort(traces, sort_traces_by_uuid);
1608
1609 /* Find ranges of consecutive traces that share the same UUID. */
1610 while (range_start_idx < traces->len) {
1611 guint range_len;
1612 struct ctf_fs_trace *range_start_trace = g_ptr_array_index(traces, range_start_idx);
1613
1614 /* Exclusive end of range. */
1615 guint range_end_exc_idx = range_start_idx + 1;
1616
1617 while (range_end_exc_idx < traces->len) {
1618 struct ctf_fs_trace *this_trace = g_ptr_array_index(traces, range_end_exc_idx);
1619
1620 if (!range_start_trace->metadata->tc->is_uuid_set ||
1621 (bt_uuid_compare(range_start_trace->metadata->tc->uuid, this_trace->metadata->tc->uuid) != 0)) {
1622 break;
1623 }
1624
1625 range_end_exc_idx++;
1626 }
1627
1628 /* If we have two or more traces with matching UUIDs, merge them. */
1629 range_len = range_end_exc_idx - range_start_idx;
1630 if (range_len > 1) {
1631 struct ctf_fs_trace **range_start = (struct ctf_fs_trace **) &traces->pdata[range_start_idx];
54ef52bd
FD
1632 ret = merge_ctf_fs_traces(range_start, range_len);
1633 if (ret) {
1634 goto end;
1635 }
41a65f30
SM
1636 }
1637
1638 num_traces++;
1639 range_start_idx = range_end_exc_idx;
1640 }
1641
1642 /* Clear any NULL slot (traces that got merged in another one) in the array. */
1643 for (i = 0; i < traces->len;) {
1644 if (g_ptr_array_index(traces, i) == NULL) {
1645 g_ptr_array_remove_index_fast(traces, i);
1646 } else {
1647 i++;
1648 }
1649 }
1650
1651 BT_ASSERT(num_traces == traces->len);
54ef52bd
FD
1652
1653end:
1654 return ret;
41a65f30
SM
1655}
1656
f280892e
SM
1657int ctf_fs_component_create_ctf_fs_traces(bt_self_component_source *self_comp,
1658 struct ctf_fs_component *ctf_fs,
1659 const bt_value *paths_value)
1660{
1661 int ret = 0;
1662 uint64_t i;
1663
1664 for (i = 0; i < bt_value_array_get_size(paths_value); i++) {
1665 const bt_value *path_value = bt_value_array_borrow_element_by_index_const(paths_value, i);
1666 const char *path = bt_value_string_get(path_value);
1667
1668 ret = ctf_fs_component_create_ctf_fs_traces_one_root(self_comp, ctf_fs, path);
1669 if (ret) {
1670 goto end;
1671 }
1672 }
1673
54ef52bd 1674 ret = merge_traces_with_same_uuid(ctf_fs);
41a65f30 1675
f280892e
SM
1676end:
1677 return ret;
1678}
1679
a38d7650
SM
1680static
1681GString *get_stream_instance_unique_name(
1682 struct ctf_fs_ds_file_group *ds_file_group)
1683{
1684 GString *name;
1685 struct ctf_fs_ds_file_info *ds_file_info;
1686
1687 name = g_string_new(NULL);
1688 if (!name) {
1689 goto end;
1690 }
1691
1692 /*
1693 * If there's more than one stream file in the stream file
1694 * group, the first (earliest) stream file's path is used as
1695 * the stream's unique name.
1696 */
1697 BT_ASSERT(ds_file_group->ds_file_infos->len > 0);
1698 ds_file_info = g_ptr_array_index(ds_file_group->ds_file_infos, 0);
1699 g_string_assign(name, ds_file_info->path->str);
1700
1701end:
1702 return name;
1703}
1704
f280892e
SM
1705/* Create the IR stream objects for ctf_fs_trace. */
1706
1707static
1708int create_streams_for_trace(struct ctf_fs_trace *ctf_fs_trace)
1709{
1710 int ret;
1711 GString *name = NULL;
1712 guint i;
1713
1714 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
1715 struct ctf_fs_ds_file_group *ds_file_group =
1716 g_ptr_array_index(ctf_fs_trace->ds_file_groups, i);
1717 name = get_stream_instance_unique_name(ds_file_group);
1718
1719 if (!name) {
1720 goto error;
1721 }
1722
1723 if (ds_file_group->sc->ir_sc) {
1724 BT_ASSERT(ctf_fs_trace->trace);
1725
1726 if (ds_file_group->stream_id == UINT64_C(-1)) {
1727 /* No stream ID: use 0 */
1728 ds_file_group->stream = bt_stream_create_with_id(
1729 ds_file_group->sc->ir_sc,
1730 ctf_fs_trace->trace,
1731 ctf_fs_trace->next_stream_id);
1732 ctf_fs_trace->next_stream_id++;
1733 } else {
1734 /* Specific stream ID */
1735 ds_file_group->stream = bt_stream_create_with_id(
1736 ds_file_group->sc->ir_sc,
1737 ctf_fs_trace->trace,
1738 (uint64_t) ds_file_group->stream_id);
1739 }
1740 } else {
1741 ds_file_group->stream = NULL;
1742 }
1743
1744 if (!ds_file_group->stream) {
1745 BT_LOGE("Cannot create stream for DS file group: "
1746 "addr=%p, stream-name=\"%s\"",
1747 ds_file_group, name->str);
1748 goto error;
1749 }
1750
1751 ret = bt_stream_set_name(ds_file_group->stream,
1752 name->str);
1753 if (ret) {
1754 BT_LOGE("Cannot set stream's name: "
1755 "addr=%p, stream-name=\"%s\"",
1756 ds_file_group->stream, name->str);
1757 goto error;
1758 }
1759
1760 g_string_free(name, TRUE);
1761 name = NULL;
1762 }
1763
1764 ret = 0;
1765 goto end;
1766
1767error:
1768 ret = -1;
1769
1770end:
1771
1772 if (name) {
1773 g_string_free(name, TRUE);
1774 }
1775 return ret;
1776}
1777
d907165c
SM
1778/*
1779 * Validate the "paths" parameter passed to this component. It must be
1780 * present, and it must be an array of strings.
1781 */
1782
1783static
f280892e
SM
1784bool validate_paths_parameter(const bt_value *paths)
1785{
1786 bool ret;
1787 bt_value_type type;
1788 uint64_t i;
1789
1790 if (!paths) {
1791 BT_LOGE("missing \"paths\" parameter");
1792 goto error;
1793 }
1794
1795 type = bt_value_get_type(paths);
1796 if (type != BT_VALUE_TYPE_ARRAY) {
1797 BT_LOGE("`paths` parameter: expecting array value: type=%s",
1798 bt_common_value_type_string(type));
1799 goto error;
1800 }
1801
1802 for (i = 0; i < bt_value_array_get_size(paths); i++) {
1803 const bt_value *elem;
1804
1805 elem = bt_value_array_borrow_element_by_index_const(paths, i);
1806 type = bt_value_get_type(elem);
1807 if (type != BT_VALUE_TYPE_STRING) {
1808 BT_LOGE("`paths` parameter: expecting string value: index=%" PRIu64 ", type=%s",
1809 i, bt_common_value_type_string(type));
1810 goto error;
1811 }
1812 }
1813
1814 ret = true;
1815 goto end;
1816
1817error:
1818 ret = false;
1819
1820end:
1821 return ret;
1822}
1823
d907165c
SM
1824bool read_src_fs_parameters(const bt_value *params,
1825 const bt_value **paths, struct ctf_fs_component *ctf_fs) {
1826 bool ret;
1827 const bt_value *value;
1828
1829 /* paths parameter */
1830 *paths = bt_value_map_borrow_entry_value_const(params, "paths");
1831 if (!validate_paths_parameter(*paths)) {
1832 goto error;
1833 }
1834
1835 /* clock-class-offset-s parameter */
1836 value = bt_value_map_borrow_entry_value_const(params,
1837 "clock-class-offset-s");
1838 if (value) {
fdd3a2da 1839 if (!bt_value_is_signed_integer(value)) {
d907165c
SM
1840 BT_LOGE("clock-class-offset-s must be an integer");
1841 goto error;
1842 }
1843 ctf_fs->metadata_config.clock_class_offset_s =
fdd3a2da 1844 bt_value_signed_integer_get(value);
d907165c
SM
1845 }
1846
1847 /* clock-class-offset-ns parameter */
1848 value = bt_value_map_borrow_entry_value_const(params,
1849 "clock-class-offset-ns");
1850 if (value) {
fdd3a2da 1851 if (!bt_value_is_signed_integer(value)) {
d907165c
SM
1852 BT_LOGE("clock-class-offset-ns must be an integer");
1853 goto error;
1854 }
1855 ctf_fs->metadata_config.clock_class_offset_ns =
fdd3a2da 1856 bt_value_signed_integer_get(value);
d907165c
SM
1857 }
1858
1859
1860 ret = true;
1861 goto end;
1862
1863error:
1864 ret = false;
1865
1866end:
1867 return ret;
1868}
1869
5b29e799 1870static
d94d92ac 1871struct ctf_fs_component *ctf_fs_create(
b19ff26f
PP
1872 bt_self_component_source *self_comp,
1873 const bt_value *params)
56a1cced 1874{
f280892e 1875 struct ctf_fs_component *ctf_fs = NULL;
f280892e
SM
1876 guint i;
1877 const bt_value *paths_value;
56a1cced 1878
d907165c
SM
1879 ctf_fs = ctf_fs_component_create();
1880 if (!ctf_fs) {
f280892e
SM
1881 goto error;
1882 }
1883
d907165c 1884 if (!read_src_fs_parameters(params, &paths_value, ctf_fs)) {
f280892e 1885 goto error;
56a1cced
JG
1886 }
1887
d94d92ac 1888 bt_self_component_set_data(
707b7d35 1889 bt_self_component_source_as_self_component(self_comp),
d94d92ac 1890 ctf_fs);
1a9f7075 1891
4f1f88a6
PP
1892 /*
1893 * We don't need to get a new reference here because as long as
1894 * our private ctf_fs_component object exists, the containing
1895 * private component should also exist.
1896 */
d94d92ac 1897 ctf_fs->self_comp = self_comp;
56a1cced 1898
f280892e 1899 if (ctf_fs_component_create_ctf_fs_traces(self_comp, ctf_fs, paths_value)) {
4f1f88a6
PP
1900 goto error;
1901 }
1902
f280892e
SM
1903 for (i = 0; i < ctf_fs->traces->len; i++) {
1904 struct ctf_fs_trace *trace = g_ptr_array_index(ctf_fs->traces, i);
599faa1c 1905
f280892e
SM
1906 if (create_streams_for_trace(trace)) {
1907 goto error;
1908 }
1909
1910 if (create_ports_for_trace(ctf_fs, trace)) {
1911 goto error;
1912 }
4f1f88a6
PP
1913 }
1914
1ef09eb5
JG
1915 goto end;
1916
56a1cced 1917error:
1a9f7075 1918 ctf_fs_destroy(ctf_fs);
e7a4393b 1919 ctf_fs = NULL;
d94d92ac 1920 bt_self_component_set_data(
707b7d35 1921 bt_self_component_source_as_self_component(self_comp),
d94d92ac 1922 NULL);
1a9f7075 1923
1ef09eb5 1924end:
56a1cced
JG
1925 return ctf_fs;
1926}
1927
ea0b4b9e 1928BT_HIDDEN
4cdfc5e8 1929bt_self_component_status ctf_fs_init(
b19ff26f
PP
1930 bt_self_component_source *self_comp,
1931 const bt_value *params, UNUSED_VAR void *init_method_data)
ea0b4b9e
JG
1932{
1933 struct ctf_fs_component *ctf_fs;
4cdfc5e8 1934 bt_self_component_status ret = BT_SELF_COMPONENT_STATUS_OK;
ea0b4b9e 1935
d94d92ac 1936 ctf_fs = ctf_fs_create(self_comp, params);
ea0b4b9e 1937 if (!ctf_fs) {
d94d92ac 1938 ret = BT_SELF_COMPONENT_STATUS_ERROR;
ea0b4b9e 1939 }
4c1456f0 1940
ea0b4b9e
JG
1941 return ret;
1942}
33f93973
PP
1943
1944BT_HIDDEN
4cdfc5e8 1945bt_query_status ctf_fs_query(
b19ff26f
PP
1946 bt_self_component_class_source *comp_class,
1947 const bt_query_executor *query_exec,
1948 const char *object, const bt_value *params,
1949 const bt_value **result)
33f93973 1950{
4cdfc5e8 1951 bt_query_status status = BT_QUERY_STATUS_OK;
33f93973 1952
04c0ba87 1953 if (!strcmp(object, "metadata-info")) {
d94d92ac 1954 status = metadata_info_query(comp_class, params, result);
97ade20b 1955 } else if (!strcmp(object, "trace-info")) {
d94d92ac 1956 status = trace_info_query(comp_class, params, result);
33f93973 1957 } else {
55314f2a 1958 BT_LOGE("Unknown query object `%s`", object);
d94d92ac 1959 status = BT_QUERY_STATUS_INVALID_OBJECT;
04c0ba87 1960 goto end;
33f93973 1961 }
33f93973 1962end:
d94d92ac 1963 return status;
33f93973 1964}
This page took 0.141224 seconds and 4 git commands to generate.