Fix: mixed enums used in source.ctf.fs
[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
4bd72b60 28#include <babeltrace/common-internal.h>
5b29e799 29#include <babeltrace/ctf-ir/packet.h>
ac0c6bdd 30#include <babeltrace/ctf-ir/clock-class.h>
94cf822e
PP
31#include <babeltrace/ctf-ir/stream.h>
32#include <babeltrace/ctf-ir/fields.h>
4f1f88a6 33#include <babeltrace/graph/private-port.h>
b2e0c907 34#include <babeltrace/graph/private-component.h>
4f1f88a6
PP
35#include <babeltrace/graph/private-component-source.h>
36#include <babeltrace/graph/private-notification-iterator.h>
b2e0c907
PP
37#include <babeltrace/graph/component.h>
38#include <babeltrace/graph/notification-iterator.h>
599faa1c 39#include <babeltrace/graph/clock-class-priority-map.h>
7d61fa8e 40#include <plugins-common.h>
ea0b4b9e
JG
41#include <glib.h>
42#include <assert.h>
94cf822e 43#include <inttypes.h>
c55a9f58 44#include <stdbool.h>
56a1cced 45#include "fs.h"
413bc2c4 46#include "metadata.h"
94cf822e 47#include "data-stream-file.h"
e7a4393b 48#include "file.h"
1e649dff 49#include "../common/metadata/decoder.h"
6de92955 50#include "../common/notif-iter/notif-iter.h"
04c0ba87 51#include "query.h"
e7a4393b 52
55314f2a
JG
53#define BT_LOG_TAG "PLUGIN-CTF-FS-SRC"
54#include "logging.h"
ea0b4b9e 55
94cf822e
PP
56static
57int notif_iter_data_set_current_ds_file(struct ctf_fs_notif_iter_data *notif_iter_data)
58{
59 struct ctf_fs_ds_file_info *ds_file_info;
60 int ret = 0;
61
62 assert(notif_iter_data->ds_file_info_index <
63 notif_iter_data->ds_file_group->ds_file_infos->len);
64 ds_file_info = g_ptr_array_index(
65 notif_iter_data->ds_file_group->ds_file_infos,
66 notif_iter_data->ds_file_info_index);
67
68 ctf_fs_ds_file_destroy(notif_iter_data->ds_file);
69 notif_iter_data->ds_file = ctf_fs_ds_file_create(
70 notif_iter_data->ds_file_group->ctf_fs_trace,
6de92955 71 notif_iter_data->notif_iter,
94cf822e 72 notif_iter_data->ds_file_group->stream,
97ade20b 73 ds_file_info->path->str);
94cf822e
PP
74 if (!notif_iter_data->ds_file) {
75 ret = -1;
76 }
77
78 return ret;
79}
80
81static
82void ctf_fs_notif_iter_data_destroy(
83 struct ctf_fs_notif_iter_data *notif_iter_data)
84{
85 if (!notif_iter_data) {
86 return;
87 }
88
89 ctf_fs_ds_file_destroy(notif_iter_data->ds_file);
6de92955
PP
90
91 if (notif_iter_data->notif_iter) {
92 bt_ctf_notif_iter_destroy(notif_iter_data->notif_iter);
93 }
94
94cf822e
PP
95 g_free(notif_iter_data);
96}
97
41a2b7ae 98struct bt_notification_iterator_next_return ctf_fs_iterator_next(
4f1f88a6 99 struct bt_private_notification_iterator *iterator)
ea0b4b9e 100{
94cf822e
PP
101 struct bt_notification_iterator_next_return next_ret;
102 struct ctf_fs_notif_iter_data *notif_iter_data =
4f1f88a6 103 bt_private_notification_iterator_get_user_data(iterator);
94cf822e
PP
104 int ret;
105
106 assert(notif_iter_data->ds_file);
107 next_ret = ctf_fs_ds_file_next(notif_iter_data->ds_file);
108 if (next_ret.status == BT_NOTIFICATION_ITERATOR_STATUS_END) {
109 assert(!next_ret.notification);
110 notif_iter_data->ds_file_info_index++;
111
112 if (notif_iter_data->ds_file_info_index ==
113 notif_iter_data->ds_file_group->ds_file_infos->len) {
114 /*
115 * No more stream files to read: we reached the
116 * real end.
117 */
118 goto end;
119 }
120
121 /*
122 * Open and start reading the next stream file within
123 * our stream file group.
124 */
125 ret = notif_iter_data_set_current_ds_file(notif_iter_data);
126 if (ret) {
127 next_ret.status = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
128 goto end;
129 }
130
131 next_ret = ctf_fs_ds_file_next(notif_iter_data->ds_file);
132
133 /*
134 * We should not get BT_NOTIFICATION_ITERATOR_STATUS_END
135 * with a brand new stream file because empty stream
136 * files are not even part of stream file groups, which
137 * means we're sure to get at least one pair of "packet
138 * begin" and "packet end" notifications in the case of
139 * a single, empty packet.
140 */
141 assert(next_ret.status != BT_NOTIFICATION_ITERATOR_STATUS_END);
142 }
d01e0f33 143
94cf822e
PP
144end:
145 return next_ret;
ea0b4b9e 146}
bfd20a42 147
4f1f88a6 148void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it)
760051fa 149{
94cf822e 150 void *notif_iter_data =
4f1f88a6 151 bt_private_notification_iterator_get_user_data(it);
760051fa 152
94cf822e 153 ctf_fs_notif_iter_data_destroy(notif_iter_data);
760051fa
JG
154}
155
4f1f88a6
PP
156enum bt_notification_iterator_status ctf_fs_iterator_init(
157 struct bt_private_notification_iterator *it,
158 struct bt_private_port *port)
4c1456f0 159{
4f1f88a6 160 struct ctf_fs_port_data *port_data;
94cf822e 161 struct ctf_fs_notif_iter_data *notif_iter_data = NULL;
4f1f88a6
PP
162 enum bt_notification_iterator_status ret =
163 BT_NOTIFICATION_ITERATOR_STATUS_OK;
94cf822e 164 int iret;
760051fa 165
4f1f88a6
PP
166 port_data = bt_private_port_get_user_data(port);
167 if (!port_data) {
fe8ad2b6 168 ret = BT_NOTIFICATION_ITERATOR_STATUS_INVALID;
4f1f88a6
PP
169 goto error;
170 }
5b29e799 171
94cf822e
PP
172 notif_iter_data = g_new0(struct ctf_fs_notif_iter_data, 1);
173 if (!notif_iter_data) {
174 ret = BT_NOTIFICATION_ITERATOR_STATUS_NOMEM;
175 goto error;
176 }
177
6de92955
PP
178 notif_iter_data->notif_iter = bt_ctf_notif_iter_create(
179 port_data->ds_file_group->ctf_fs_trace->metadata->trace,
180 bt_common_get_page_size() * 8,
181 ctf_fs_ds_file_medops, NULL);
182 if (!notif_iter_data->notif_iter) {
183 BT_LOGE_STR("Cannot create a CTF notification iterator.");
184 ret = BT_NOTIFICATION_ITERATOR_STATUS_NOMEM;
185 goto error;
186 }
187
94cf822e
PP
188 notif_iter_data->ds_file_group = port_data->ds_file_group;
189 iret = notif_iter_data_set_current_ds_file(notif_iter_data);
190 if (iret) {
191 ret = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
4f1f88a6 192 goto error;
760051fa
JG
193 }
194
94cf822e 195 ret = bt_private_notification_iterator_set_user_data(it, notif_iter_data);
4f1f88a6
PP
196 if (ret) {
197 goto error;
760051fa
JG
198 }
199
94cf822e 200 notif_iter_data = NULL;
4f1f88a6 201 goto end;
5b29e799 202
4f1f88a6
PP
203error:
204 (void) bt_private_notification_iterator_set_user_data(it, NULL);
205
206 if (ret == BT_NOTIFICATION_ITERATOR_STATUS_OK) {
207 ret = BT_NOTIFICATION_ITERATOR_STATUS_ERROR;
760051fa 208 }
5b29e799 209
760051fa 210end:
94cf822e 211 ctf_fs_notif_iter_data_destroy(notif_iter_data);
760051fa
JG
212 return ret;
213}
214
760051fa 215static
1a9f7075 216void ctf_fs_destroy(struct ctf_fs_component *ctf_fs)
760051fa 217{
4f1f88a6 218 if (!ctf_fs) {
8fa760ba
JG
219 return;
220 }
4f1f88a6 221
1a9f7075
PP
222 if (ctf_fs->traces) {
223 g_ptr_array_free(ctf_fs->traces, TRUE);
56a1cced 224 }
4f1f88a6
PP
225
226 if (ctf_fs->port_data) {
227 g_ptr_array_free(ctf_fs->port_data, TRUE);
c14d7e26 228 }
760051fa 229
1a9f7075
PP
230 g_free(ctf_fs);
231}
232
97ade20b
JG
233BT_HIDDEN
234void ctf_fs_trace_destroy(struct ctf_fs_trace *ctf_fs_trace)
1a9f7075 235{
1a9f7075
PP
236 if (!ctf_fs_trace) {
237 return;
238 }
239
94cf822e
PP
240 if (ctf_fs_trace->ds_file_groups) {
241 g_ptr_array_free(ctf_fs_trace->ds_file_groups, TRUE);
242 }
243
1a9f7075
PP
244 if (ctf_fs_trace->path) {
245 g_string_free(ctf_fs_trace->path, TRUE);
4f1f88a6 246 }
760051fa 247
1a9f7075
PP
248 if (ctf_fs_trace->name) {
249 g_string_free(ctf_fs_trace->name, TRUE);
250 }
251
252 if (ctf_fs_trace->metadata) {
253 ctf_fs_metadata_fini(ctf_fs_trace->metadata);
254 g_free(ctf_fs_trace->metadata);
255 }
256
257 bt_put(ctf_fs_trace->cc_prio_map);
258 g_free(ctf_fs_trace);
4c1456f0
JG
259}
260
97ade20b
JG
261static
262void ctf_fs_trace_destroy_notifier(void *data)
263{
264 struct ctf_fs_trace *trace = data;
265 ctf_fs_trace_destroy(trace);
266}
267
4f1f88a6 268void ctf_fs_finalize(struct bt_private_component *component)
a4792757 269{
4f1f88a6
PP
270 void *data = bt_private_component_get_user_data(component);
271
1a9f7075 272 ctf_fs_destroy(data);
a4792757
JG
273}
274
e7a4393b 275static
4f1f88a6
PP
276void port_data_destroy(void *data) {
277 struct ctf_fs_port_data *port_data = data;
278
279 if (!port_data) {
280 return;
281 }
282
4f1f88a6 283 g_free(port_data);
5b29e799
JG
284}
285
547eacf1
PP
286static
287GString *get_stream_instance_unique_name(
288 struct ctf_fs_ds_file_group *ds_file_group)
289{
290 GString *name;
291 struct ctf_fs_ds_file_info *ds_file_info;
292
293 name = g_string_new(NULL);
294 if (!name) {
295 goto end;
296 }
297
298 /*
299 * If there's more than one stream file in the stream file
300 * group, the first (earliest) stream file's path is used as
301 * the stream's unique name.
302 */
303 assert(ds_file_group->ds_file_infos->len > 0);
304 ds_file_info = g_ptr_array_index(ds_file_group->ds_file_infos, 0);
305 g_string_assign(name, ds_file_info->path->str);
306
307end:
308 return name;
309}
310
5b29e799 311static
55314f2a
JG
312int create_one_port_for_trace(struct ctf_fs_component *ctf_fs,
313 struct ctf_fs_trace *ctf_fs_trace,
94cf822e 314 struct ctf_fs_ds_file_group *ds_file_group)
5b29e799 315{
4f1f88a6 316 int ret = 0;
4f1f88a6
PP
317 struct ctf_fs_port_data *port_data = NULL;
318 GString *port_name = NULL;
319
547eacf1 320 port_name = get_stream_instance_unique_name(ds_file_group);
4f1f88a6
PP
321 if (!port_name) {
322 goto error;
323 }
324
55314f2a 325 BT_LOGD("Creating one port named `%s`", port_name->str);
4f1f88a6
PP
326
327 /* Create output port for this file */
4f1f88a6
PP
328 port_data = g_new0(struct ctf_fs_port_data, 1);
329 if (!port_data) {
330 goto error;
331 }
332
94cf822e 333 port_data->ds_file_group = ds_file_group;
147337a3
PP
334 ret = bt_private_component_source_add_output_private_port(
335 ctf_fs->priv_comp, port_name->str, port_data, NULL);
336 if (ret) {
4f1f88a6
PP
337 goto error;
338 }
339
340 g_ptr_array_add(ctf_fs->port_data, port_data);
341 port_data = NULL;
342 goto end;
343
344error:
345 ret = -1;
346
347end:
348 if (port_name) {
349 g_string_free(port_name, TRUE);
350 }
351
4f1f88a6
PP
352 port_data_destroy(port_data);
353 return ret;
5b29e799
JG
354}
355
356static
55314f2a
JG
357int create_ports_for_trace(struct ctf_fs_component *ctf_fs,
358 struct ctf_fs_trace *ctf_fs_trace)
94cf822e
PP
359{
360 int ret = 0;
94cf822e
PP
361 size_t i;
362
363 /* Create one output port for each stream file group */
364 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
365 struct ctf_fs_ds_file_group *ds_file_group =
366 g_ptr_array_index(ctf_fs_trace->ds_file_groups, i);
367
55314f2a
JG
368 ret = create_one_port_for_trace(ctf_fs, ctf_fs_trace,
369 ds_file_group);
94cf822e 370 if (ret) {
55314f2a 371 BT_LOGE("Cannot create output port.");
94cf822e
PP
372 goto end;
373 }
374 }
375
376end:
377 return ret;
378}
379
05afcecd 380static
94cf822e
PP
381uint64_t get_packet_header_stream_instance_id(struct ctf_fs_trace *ctf_fs_trace,
382 struct bt_ctf_field *packet_header_field)
383{
384 struct bt_ctf_field *stream_instance_id_field = NULL;
385 uint64_t stream_instance_id = -1ULL;
386 int ret;
387
388 if (!packet_header_field) {
389 goto end;
390 }
391
392 stream_instance_id_field = bt_ctf_field_structure_get_field_by_name(
393 packet_header_field, "stream_instance_id");
394 if (!stream_instance_id_field) {
395 goto end;
396 }
397
398 ret = bt_ctf_field_unsigned_integer_get_value(stream_instance_id_field,
399 &stream_instance_id);
400 if (ret) {
401 stream_instance_id = -1ULL;
402 goto end;
403 }
404
405end:
406 bt_put(stream_instance_id_field);
407 return stream_instance_id;
408}
409
410struct bt_ctf_stream_class *stream_class_from_packet_header(
411 struct ctf_fs_trace *ctf_fs_trace,
412 struct bt_ctf_field *packet_header_field)
413{
414 struct bt_ctf_field *stream_id_field = NULL;
415 struct bt_ctf_stream_class *stream_class = NULL;
416 uint64_t stream_id = -1ULL;
417 int ret;
418
419 if (!packet_header_field) {
420 goto single_stream_class;
421 }
422
423 stream_id_field = bt_ctf_field_structure_get_field_by_name(
424 packet_header_field, "stream_id");
425 if (!stream_id_field) {
89b08333 426 goto single_stream_class;
94cf822e
PP
427 }
428
429 ret = bt_ctf_field_unsigned_integer_get_value(stream_id_field,
430 &stream_id);
431 if (ret) {
432 stream_id = -1ULL;
433 }
434
435 if (stream_id == -1ULL) {
436single_stream_class:
437 /* Single stream class */
438 if (bt_ctf_trace_get_stream_class_count(
439 ctf_fs_trace->metadata->trace) == 0) {
440 goto end;
441 }
442
443 stream_class = bt_ctf_trace_get_stream_class_by_index(
444 ctf_fs_trace->metadata->trace, 0);
445 } else {
446 stream_class = bt_ctf_trace_get_stream_class_by_id(
447 ctf_fs_trace->metadata->trace, stream_id);
448 }
449
450end:
451 bt_put(stream_id_field);
452 return stream_class;
453}
454
455uint64_t get_packet_context_timestamp_begin_ns(
456 struct ctf_fs_trace *ctf_fs_trace,
457 struct bt_ctf_field *packet_context_field)
458{
459 int ret;
460 struct bt_ctf_field *timestamp_begin_field = NULL;
461 struct bt_ctf_field_type *timestamp_begin_ft = NULL;
462 uint64_t timestamp_begin_raw_value = -1ULL;
463 uint64_t timestamp_begin_ns = -1ULL;
464 int64_t timestamp_begin_ns_signed;
465 struct bt_ctf_clock_class *timestamp_begin_clock_class = NULL;
466 struct bt_ctf_clock_value *clock_value = NULL;
467
468 if (!packet_context_field) {
469 goto end;
470 }
471
472 timestamp_begin_field = bt_ctf_field_structure_get_field_by_name(
473 packet_context_field, "timestamp_begin");
474 if (!timestamp_begin_field) {
475 goto end;
476 }
477
478 timestamp_begin_ft = bt_ctf_field_get_type(timestamp_begin_field);
479 assert(timestamp_begin_ft);
480 timestamp_begin_clock_class =
481 bt_ctf_field_type_integer_get_mapped_clock_class(timestamp_begin_ft);
482 if (!timestamp_begin_clock_class) {
483 goto end;
484 }
485
486 ret = bt_ctf_field_unsigned_integer_get_value(timestamp_begin_field,
487 &timestamp_begin_raw_value);
488 if (ret) {
489 goto end;
490 }
491
492 clock_value = bt_ctf_clock_value_create(timestamp_begin_clock_class,
493 timestamp_begin_raw_value);
494 if (!clock_value) {
495 goto end;
496 }
497
498 ret = bt_ctf_clock_value_get_value_ns_from_epoch(clock_value,
499 &timestamp_begin_ns_signed);
500 if (ret) {
501 goto end;
502 }
503
504 timestamp_begin_ns = (uint64_t) timestamp_begin_ns_signed;
505
506end:
507 bt_put(timestamp_begin_field);
508 bt_put(timestamp_begin_ft);
509 bt_put(timestamp_begin_clock_class);
510 bt_put(clock_value);
511 return timestamp_begin_ns;
512}
513
514static
515void ctf_fs_ds_file_info_destroy(struct ctf_fs_ds_file_info *ds_file_info)
516{
517 if (!ds_file_info) {
518 return;
519 }
520
521 if (ds_file_info->path) {
522 g_string_free(ds_file_info->path, TRUE);
523 }
524
97ade20b 525 ctf_fs_ds_index_destroy(ds_file_info->index);
94cf822e
PP
526 g_free(ds_file_info);
527}
528
529static
530struct ctf_fs_ds_file_info *ctf_fs_ds_file_info_create(const char *path,
97ade20b 531 uint64_t begin_ns, struct ctf_fs_ds_index *index)
94cf822e
PP
532{
533 struct ctf_fs_ds_file_info *ds_file_info;
534
535 ds_file_info = g_new0(struct ctf_fs_ds_file_info, 1);
536 if (!ds_file_info) {
537 goto end;
538 }
539
540 ds_file_info->path = g_string_new(path);
541 if (!ds_file_info->path) {
542 ctf_fs_ds_file_info_destroy(ds_file_info);
543 ds_file_info = NULL;
544 goto end;
545 }
546
547 ds_file_info->begin_ns = begin_ns;
97ade20b
JG
548 ds_file_info->index = index;
549 index = NULL;
94cf822e
PP
550
551end:
97ade20b 552 ctf_fs_ds_index_destroy(index);
94cf822e
PP
553 return ds_file_info;
554}
555
556static
557void ctf_fs_ds_file_group_destroy(struct ctf_fs_ds_file_group *ds_file_group)
558{
559 if (!ds_file_group) {
560 return;
561 }
562
563 if (ds_file_group->ds_file_infos) {
564 g_ptr_array_free(ds_file_group->ds_file_infos, TRUE);
565 }
566
567 bt_put(ds_file_group->stream);
547eacf1 568 bt_put(ds_file_group->stream_class);
94cf822e
PP
569 g_free(ds_file_group);
570}
571
572static
573struct ctf_fs_ds_file_group *ctf_fs_ds_file_group_create(
574 struct ctf_fs_trace *ctf_fs_trace,
575 struct bt_ctf_stream_class *stream_class,
576 uint64_t stream_instance_id)
577{
578 struct ctf_fs_ds_file_group *ds_file_group;
579
94cf822e
PP
580 ds_file_group = g_new0(struct ctf_fs_ds_file_group, 1);
581 if (!ds_file_group) {
582 goto error;
583 }
584
585 ds_file_group->ds_file_infos = g_ptr_array_new_with_free_func(
586 (GDestroyNotify) ctf_fs_ds_file_info_destroy);
587 if (!ds_file_group->ds_file_infos) {
588 goto error;
589 }
590
547eacf1
PP
591 ds_file_group->stream_id = stream_instance_id;
592 assert(stream_class);
593 ds_file_group->stream_class = bt_get(stream_class);
94cf822e 594 ds_file_group->ctf_fs_trace = ctf_fs_trace;
94cf822e
PP
595 goto end;
596
597error:
598 ctf_fs_ds_file_group_destroy(ds_file_group);
599 ds_file_group = NULL;
600
601end:
602 return ds_file_group;
603}
604
8bf7105e
MJ
605/* Replace by g_ptr_array_insert when we depend on glib >= 2.40. */
606static
607void array_insert(GPtrArray *array, gpointer element, size_t pos)
608{
609 size_t original_array_len = array->len;
610
611 /* Allocate an unused element at the end of the array. */
612 g_ptr_array_add(array, NULL);
613
614 /* If we are not inserting at the end, move the elements by one. */
615 if (pos < original_array_len) {
616 memmove(&(array->pdata[pos + 1]),
617 &(array->pdata[pos]),
618 (original_array_len - pos) * sizeof(gpointer));
619 }
620
621 /* Insert the value and bump the array len */
622 array->pdata[pos] = element;
623}
624
94cf822e
PP
625static
626int ctf_fs_ds_file_group_add_ds_file_info(
627 struct ctf_fs_ds_file_group *ds_file_group,
97ade20b
JG
628 const char *path, uint64_t begin_ns,
629 struct ctf_fs_ds_index *index)
94cf822e
PP
630{
631 struct ctf_fs_ds_file_info *ds_file_info;
632 gint i = 0;
633 int ret = 0;
634
97ade20b
JG
635 /* Onwership of index is transferred. */
636 ds_file_info = ctf_fs_ds_file_info_create(path, begin_ns, index);
637 index = NULL;
94cf822e
PP
638 if (!ds_file_info) {
639 goto error;
640 }
641
642 /* Find a spot to insert this one */
643 for (i = 0; i < ds_file_group->ds_file_infos->len; i++) {
644 struct ctf_fs_ds_file_info *other_ds_file_info =
645 g_ptr_array_index(ds_file_group->ds_file_infos, i);
646
647 if (begin_ns < other_ds_file_info->begin_ns) {
648 break;
649 }
650 }
651
8bf7105e 652 array_insert(ds_file_group->ds_file_infos, ds_file_info, i);
94cf822e
PP
653 ds_file_info = NULL;
654 goto end;
655
656error:
657 ctf_fs_ds_file_info_destroy(ds_file_info);
97ade20b 658 ctf_fs_ds_index_destroy(index);
94cf822e 659 ret = -1;
94cf822e
PP
660end:
661 return ret;
662}
663
664static
665int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
666 const char *path)
667{
668 struct bt_ctf_field *packet_header_field = NULL;
669 struct bt_ctf_field *packet_context_field = NULL;
670 struct bt_ctf_stream_class *stream_class = NULL;
94cf822e
PP
671 uint64_t stream_instance_id = -1ULL;
672 uint64_t begin_ns = -1ULL;
673 struct ctf_fs_ds_file_group *ds_file_group = NULL;
674 bool add_group = false;
675 int ret;
676 size_t i;
6de92955 677 struct ctf_fs_ds_file *ds_file = NULL;
97ade20b 678 struct ctf_fs_ds_index *index = NULL;
6de92955 679 struct bt_ctf_notif_iter *notif_iter = NULL;
94cf822e 680
6de92955
PP
681 notif_iter = bt_ctf_notif_iter_create(ctf_fs_trace->metadata->trace,
682 bt_common_get_page_size() * 8, ctf_fs_ds_file_medops, NULL);
683 if (!notif_iter) {
684 BT_LOGE_STR("Cannot create a CTF notification iterator.");
685 goto error;
686 }
687
688 ds_file = ctf_fs_ds_file_create(ctf_fs_trace, notif_iter, NULL, path);
97ade20b
JG
689 if (!ds_file) {
690 goto error;
691 }
692
693 ret = ctf_fs_ds_file_get_packet_header_context_fields(ds_file,
694 &packet_header_field, &packet_context_field);
94cf822e 695 if (ret) {
55314f2a 696 BT_LOGE("Cannot get stream file's first packet's header and context fields (`%s`).",
94cf822e
PP
697 path);
698 goto error;
699 }
700
701 stream_instance_id = get_packet_header_stream_instance_id(ctf_fs_trace,
702 packet_header_field);
703 begin_ns = get_packet_context_timestamp_begin_ns(ctf_fs_trace,
704 packet_context_field);
705 stream_class = stream_class_from_packet_header(ctf_fs_trace,
706 packet_header_field);
707 if (!stream_class) {
708 goto error;
709 }
710
97ade20b
JG
711 index = ctf_fs_ds_file_build_index(ds_file);
712 if (!index) {
713 BT_LOGW("Failed to index CTF stream file \'%s\'",
714 ds_file->file->path->str);
715 }
716
94cf822e
PP
717 if (begin_ns == -1ULL) {
718 /*
719 * No beggining timestamp to sort the stream files
720 * within a stream file group, so consider that this
721 * file must be the only one within its group.
722 */
723 stream_instance_id = -1ULL;
724 }
725
726 if (stream_instance_id == -1ULL) {
727 /*
728 * No stream instance ID or no beginning timestamp:
729 * create a unique stream file group for this stream
730 * file because, even if there's a stream instance ID,
731 * there's no timestamp to order the file within its
732 * group.
733 */
94cf822e
PP
734 ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace,
735 stream_class, stream_instance_id);
736 if (!ds_file_group) {
737 goto error;
738 }
739
740 ret = ctf_fs_ds_file_group_add_ds_file_info(ds_file_group,
547eacf1 741 path, begin_ns, index);
97ade20b
JG
742 /* Ownership of index is transferred. */
743 index = NULL;
94cf822e
PP
744 if (ret) {
745 goto error;
746 }
747
748 add_group = true;
749 goto end;
750 }
751
752 assert(stream_instance_id != -1ULL);
753 assert(begin_ns != -1ULL);
754
755 /* Find an existing stream file group with this ID */
756 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
94cf822e
PP
757 ds_file_group = g_ptr_array_index(
758 ctf_fs_trace->ds_file_groups, i);
94cf822e 759
547eacf1
PP
760 if (ds_file_group->stream_class == stream_class &&
761 ds_file_group->stream_id ==
762 stream_instance_id) {
94cf822e
PP
763 break;
764 }
765
766 ds_file_group = NULL;
767 }
768
769 if (!ds_file_group) {
770 ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace,
771 stream_class, stream_instance_id);
772 if (!ds_file_group) {
773 goto error;
774 }
775
776 add_group = true;
777 }
778
547eacf1
PP
779 ret = ctf_fs_ds_file_group_add_ds_file_info(ds_file_group, path,
780 begin_ns, index);
97ade20b 781 index = NULL;
94cf822e
PP
782 if (ret) {
783 goto error;
784 }
785
786 goto end;
787
788error:
789 ctf_fs_ds_file_group_destroy(ds_file_group);
790 ret = -1;
791
792end:
793 if (add_group && ds_file_group) {
794 g_ptr_array_add(ctf_fs_trace->ds_file_groups, ds_file_group);
795 }
547eacf1 796
97ade20b 797 ctf_fs_ds_file_destroy(ds_file);
6de92955
PP
798
799 if (notif_iter) {
800 bt_ctf_notif_iter_destroy(notif_iter);
801 }
802
97ade20b 803 ctf_fs_ds_index_destroy(index);
94cf822e
PP
804 bt_put(packet_header_field);
805 bt_put(packet_context_field);
806 bt_put(stream_class);
807 return ret;
808}
809
810static
811int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace)
e7a4393b
JG
812{
813 int ret = 0;
4f1f88a6 814 const char *basename;
e7a4393b 815 GError *error = NULL;
4f1f88a6 816 GDir *dir = NULL;
547eacf1 817 size_t i;
e7a4393b 818
94cf822e 819 /* Check each file in the path directory, except specific ones */
1a9f7075 820 dir = g_dir_open(ctf_fs_trace->path->str, 0, &error);
e7a4393b 821 if (!dir) {
55314f2a 822 BT_LOGE("Cannot open directory `%s`: %s (code %d)",
1a9f7075 823 ctf_fs_trace->path->str, error->message,
4f1f88a6 824 error->code);
e7a4393b
JG
825 goto error;
826 }
827
4f1f88a6 828 while ((basename = g_dir_read_name(dir))) {
94cf822e
PP
829 struct ctf_fs_file *file;
830
4f1f88a6 831 if (!strcmp(basename, CTF_FS_METADATA_FILENAME)) {
e7a4393b 832 /* Ignore the metadata stream. */
55314f2a 833 BT_LOGD("Ignoring metadata file `%s/%s`",
1a9f7075 834 ctf_fs_trace->path->str, basename);
e7a4393b
JG
835 continue;
836 }
837
4f1f88a6 838 if (basename[0] == '.') {
55314f2a 839 BT_LOGD("Ignoring hidden file `%s/%s`",
1a9f7075 840 ctf_fs_trace->path->str, basename);
e7a4393b
JG
841 continue;
842 }
843
844 /* Create the file. */
55314f2a 845 file = ctf_fs_file_create();
e7a4393b 846 if (!file) {
55314f2a 847 BT_LOGE("Cannot create stream file object for file `%s/%s`",
1a9f7075 848 ctf_fs_trace->path->str, basename);
e7a4393b
JG
849 goto error;
850 }
851
852 /* Create full path string. */
853 g_string_append_printf(file->path, "%s/%s",
1a9f7075 854 ctf_fs_trace->path->str, basename);
e7a4393b 855 if (!g_file_test(file->path->str, G_FILE_TEST_IS_REGULAR)) {
55314f2a 856 BT_LOGD("Ignoring non-regular file `%s`",
1a9f7075 857 file->path->str);
e7a4393b 858 ctf_fs_file_destroy(file);
4f1f88a6 859 file = NULL;
e7a4393b
JG
860 continue;
861 }
862
55314f2a 863 ret = ctf_fs_file_open(file, "rb");
4f1f88a6 864 if (ret) {
55314f2a 865 BT_LOGE("Cannot open stream file `%s`", file->path->str);
e7a4393b
JG
866 goto error;
867 }
868
9fa0891a
JG
869 if (file->size == 0) {
870 /* Skip empty stream. */
55314f2a 871 BT_LOGD("Ignoring empty file `%s`", file->path->str);
9fa0891a
JG
872 ctf_fs_file_destroy(file);
873 continue;
874 }
875
94cf822e
PP
876 ret = add_ds_file_to_ds_file_group(ctf_fs_trace,
877 file->path->str);
4f1f88a6 878 if (ret) {
89b08333 879 BT_LOGE("Cannot add stream file `%s` to stream file group",
1a9f7075 880 file->path->str);
94cf822e 881 ctf_fs_file_destroy(file);
e7a4393b
JG
882 goto error;
883 }
884
4f1f88a6 885 ctf_fs_file_destroy(file);
e7a4393b
JG
886 }
887
547eacf1
PP
888 /*
889 * At this point, DS file groupes are created, but their
890 * associated stream objects do not exist yet. This is because
891 * we need to name the created stream object with the data
892 * stream file's path. We have everything we need here to do
893 * this.
894 */
895 for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) {
896 struct ctf_fs_ds_file_group *ds_file_group =
897 g_ptr_array_index(ctf_fs_trace->ds_file_groups, i);
898 GString *name = get_stream_instance_unique_name(ds_file_group);
899
900 if (!name) {
901 goto error;
902 }
903
904 if (ds_file_group->stream_id == -1ULL) {
905 /* No stream ID */
906 ds_file_group->stream = bt_ctf_stream_create(
907 ds_file_group->stream_class, name->str);
908 } else {
909 /* Specific stream ID */
910 ds_file_group->stream = bt_ctf_stream_create_with_id(
911 ds_file_group->stream_class, name->str,
912 ds_file_group->stream_id);
913 }
914
915 g_string_free(name, TRUE);
916
7742909c 917 if (!ds_file_group->stream) {
547eacf1
PP
918 BT_LOGE("Cannot create stream for DS file group: "
919 "addr=%p, stream-name=\"%s\"",
920 ds_file_group, name->str);
921 goto error;
922 }
923 }
924
e7a4393b 925 goto end;
4f1f88a6 926
e7a4393b
JG
927error:
928 ret = -1;
4f1f88a6 929
e7a4393b
JG
930end:
931 if (dir) {
932 g_dir_close(dir);
933 dir = NULL;
934 }
4f1f88a6 935
e7a4393b
JG
936 if (error) {
937 g_error_free(error);
938 }
5b29e799 939
91457551 940 return ret;
5b29e799
JG
941}
942
599faa1c 943static
1a9f7075 944int create_cc_prio_map(struct ctf_fs_trace *ctf_fs_trace)
599faa1c
PP
945{
946 int ret = 0;
947 size_t i;
948 int count;
949
1a9f7075
PP
950 assert(ctf_fs_trace);
951 ctf_fs_trace->cc_prio_map = bt_clock_class_priority_map_create();
952 if (!ctf_fs_trace->cc_prio_map) {
599faa1c
PP
953 ret = -1;
954 goto end;
955 }
956
1a9f7075
PP
957 count = bt_ctf_trace_get_clock_class_count(
958 ctf_fs_trace->metadata->trace);
599faa1c
PP
959 assert(count >= 0);
960
961 for (i = 0; i < count; i++) {
962 struct bt_ctf_clock_class *clock_class =
9ac68eb1 963 bt_ctf_trace_get_clock_class_by_index(
1a9f7075 964 ctf_fs_trace->metadata->trace, i);
599faa1c
PP
965
966 assert(clock_class);
967 ret = bt_clock_class_priority_map_add_clock_class(
1a9f7075 968 ctf_fs_trace->cc_prio_map, clock_class, 0);
599faa1c
PP
969 BT_PUT(clock_class);
970
971 if (ret) {
972 goto end;
973 }
974 }
975
976end:
977 return ret;
978}
979
97ade20b 980BT_HIDDEN
55314f2a 981struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
a2a54545 982 struct ctf_fs_metadata_config *metadata_config)
1a9f7075
PP
983{
984 struct ctf_fs_trace *ctf_fs_trace;
985 int ret;
986
987 ctf_fs_trace = g_new0(struct ctf_fs_trace, 1);
988 if (!ctf_fs_trace) {
989 goto end;
990 }
991
1a9f7075
PP
992 ctf_fs_trace->path = g_string_new(path);
993 if (!ctf_fs_trace->path) {
994 goto error;
995 }
996
997 ctf_fs_trace->name = g_string_new(name);
998 if (!ctf_fs_trace->name) {
999 goto error;
1000 }
1001
1002 ctf_fs_trace->metadata = g_new0(struct ctf_fs_metadata, 1);
1003 if (!ctf_fs_trace->metadata) {
1004 goto error;
1005 }
1006
94cf822e
PP
1007 ctf_fs_trace->ds_file_groups = g_ptr_array_new_with_free_func(
1008 (GDestroyNotify) ctf_fs_ds_file_group_destroy);
1009 if (!ctf_fs_trace->ds_file_groups) {
1010 goto error;
1011 }
1012
a2a54545 1013 ret = ctf_fs_metadata_set_trace(ctf_fs_trace, metadata_config);
1a9f7075
PP
1014 if (ret) {
1015 goto error;
1016 }
1017
94cf822e
PP
1018 ret = create_ds_file_groups(ctf_fs_trace);
1019 if (ret) {
1020 goto error;
1021 }
1022
1a9f7075
PP
1023 ret = create_cc_prio_map(ctf_fs_trace);
1024 if (ret) {
1025 goto error;
1026 }
1027
27d1a78b
PP
1028 /*
1029 * create_ds_file_groups() created all the streams that this
1030 * trace needs. There won't be any more. Therefore it is safe to
1031 * make this trace static.
1032 */
1033 (void) bt_ctf_trace_set_is_static(ctf_fs_trace->metadata->trace);
1034
1a9f7075
PP
1035 goto end;
1036
1037error:
1038 ctf_fs_trace_destroy(ctf_fs_trace);
1039 ctf_fs_trace = NULL;
1040end:
1041 return ctf_fs_trace;
1042}
1043
1044static
1045int path_is_ctf_trace(const char *path)
1046{
1047 GString *metadata_path = g_string_new(NULL);
1048 int ret = 0;
1049
1050 if (!metadata_path) {
1051 ret = -1;
1052 goto end;
1053 }
1054
1055 g_string_printf(metadata_path, "%s/%s", path, CTF_FS_METADATA_FILENAME);
1056
1057 if (g_file_test(metadata_path->str, G_FILE_TEST_IS_REGULAR)) {
1058 ret = 1;
1059 goto end;
1060 }
1061
1062end:
1063 g_string_free(metadata_path, TRUE);
1064 return ret;
1065}
1066
1067static
55314f2a 1068int add_trace_path(GList **trace_paths, const char *path)
1a9f7075 1069{
4bd72b60 1070 GString *norm_path = NULL;
1a9f7075 1071 int ret = 0;
1a9f7075 1072
4bd72b60
PP
1073 norm_path = bt_common_normalize_path(path, NULL);
1074 if (!norm_path) {
55314f2a 1075 BT_LOGE("Failed to normalize path `%s`.", path);
1a9f7075
PP
1076 ret = -1;
1077 goto end;
1078 }
1079
4bd72b60 1080 if (strcmp(norm_path->str, "/") == 0) {
55314f2a 1081 BT_LOGE("Opening a trace in `/` is not supported.");
1a9f7075
PP
1082 ret = -1;
1083 goto end;
1084 }
1085
4bd72b60 1086 *trace_paths = g_list_prepend(*trace_paths, norm_path);
1a9f7075 1087 assert(*trace_paths);
4bd72b60 1088 norm_path = NULL;
1a9f7075
PP
1089
1090end:
4bd72b60
PP
1091 if (norm_path) {
1092 g_string_free(norm_path, TRUE);
1093 }
1094
1a9f7075
PP
1095 return ret;
1096}
1097
55314f2a
JG
1098BT_HIDDEN
1099int ctf_fs_find_traces(GList **trace_paths, const char *start_path)
1a9f7075
PP
1100{
1101 int ret;
1102 GError *error = NULL;
1103 GDir *dir = NULL;
1104 const char *basename = NULL;
1105
1106 /* Check if the starting path is a CTF trace itself */
1107 ret = path_is_ctf_trace(start_path);
1108 if (ret < 0) {
1109 goto end;
1110 }
1111
1112 if (ret) {
1113 /*
4bd72b60
PP
1114 * Stop recursion: a CTF trace cannot contain another
1115 * CTF trace.
1a9f7075 1116 */
55314f2a 1117 ret = add_trace_path(trace_paths, start_path);
1a9f7075
PP
1118 goto end;
1119 }
1120
1121 /* Look for subdirectories */
1122 if (!g_file_test(start_path, G_FILE_TEST_IS_DIR)) {
1123 /* Starting path is not a directory: end of recursion */
1124 goto end;
1125 }
1126
1127 dir = g_dir_open(start_path, 0, &error);
1128 if (!dir) {
1129 if (error->code == G_FILE_ERROR_ACCES) {
55314f2a 1130 BT_LOGD("Cannot open directory `%s`: %s (code %d): continuing",
1a9f7075
PP
1131 start_path, error->message, error->code);
1132 goto end;
1133 }
1134
55314f2a 1135 BT_LOGE("Cannot open directory `%s`: %s (code %d)",
1a9f7075
PP
1136 start_path, error->message, error->code);
1137 ret = -1;
1138 goto end;
1139 }
1140
1141 while ((basename = g_dir_read_name(dir))) {
1142 GString *sub_path = g_string_new(NULL);
1143
1144 if (!sub_path) {
1145 ret = -1;
1146 goto end;
1147 }
1148
1149 g_string_printf(sub_path, "%s/%s", start_path, basename);
55314f2a 1150 ret = ctf_fs_find_traces(trace_paths, sub_path->str);
1a9f7075
PP
1151 g_string_free(sub_path, TRUE);
1152 if (ret) {
1153 goto end;
1154 }
1155 }
1156
1157end:
1158 if (dir) {
1159 g_dir_close(dir);
1160 }
1161
1162 if (error) {
1163 g_error_free(error);
1164 }
1165
1166 return ret;
1167}
1168
55314f2a
JG
1169BT_HIDDEN
1170GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path) {
1a9f7075 1171 GList *trace_names = NULL;
1a9f7075 1172 GList *node;
4bd72b60
PP
1173 const char *last_sep;
1174 size_t base_dist;
1a9f7075
PP
1175
1176 /*
4bd72b60
PP
1177 * At this point we know that all the trace paths are
1178 * normalized, and so is the base path. This means that
1179 * they are absolute and they don't end with a separator.
1180 * We can simply find the location of the last separator
1181 * in the base path, which gives us the name of the actual
1182 * directory to look into, and use this location as the
1183 * start of each trace name within each trace path.
1184 *
1185 * For example:
1186 *
1187 * Base path: /home/user/my-traces/some-trace
1188 * Trace paths:
1189 * - /home/user/my-traces/some-trace/host1/trace1
1190 * - /home/user/my-traces/some-trace/host1/trace2
1191 * - /home/user/my-traces/some-trace/host2/trace
1192 * - /home/user/my-traces/some-trace/other-trace
1193 *
1194 * In this case the trace names are:
1195 *
1196 * - some-trace/host1/trace1
1197 * - some-trace/host1/trace2
1198 * - some-trace/host2/trace
1199 * - some-trace/other-trace
1a9f7075 1200 */
4bd72b60 1201 last_sep = strrchr(base_path, G_DIR_SEPARATOR);
1a9f7075 1202
4bd72b60
PP
1203 /* We know there's at least one separator */
1204 assert(last_sep);
1a9f7075 1205
4bd72b60
PP
1206 /* Distance to base */
1207 base_dist = last_sep - base_path + 1;
1a9f7075
PP
1208
1209 /* Create the trace names */
1210 for (node = trace_paths; node; node = g_list_next(node)) {
1211 GString *trace_name = g_string_new(NULL);
1212 GString *trace_path = node->data;
1213
4bd72b60
PP
1214 assert(trace_name);
1215 g_string_assign(trace_name, &trace_path->str[base_dist]);
1a9f7075
PP
1216 trace_names = g_list_append(trace_names, trace_name);
1217 }
1218
1219 return trace_names;
1220}
1221
1222static
1223int create_ctf_fs_traces(struct ctf_fs_component *ctf_fs,
1224 const char *path_param)
1225{
1226 struct ctf_fs_trace *ctf_fs_trace = NULL;
1227 int ret = 0;
4bd72b60 1228 GString *norm_path = NULL;
1a9f7075
PP
1229 GList *trace_paths = NULL;
1230 GList *trace_names = NULL;
1231 GList *tp_node;
1232 GList *tn_node;
1233
4bd72b60
PP
1234 norm_path = bt_common_normalize_path(path_param, NULL);
1235 if (!norm_path) {
55314f2a 1236 BT_LOGE("Failed to normalize path: `%s`.",
4bd72b60
PP
1237 path_param);
1238 goto error;
1239 }
1240
55314f2a 1241 ret = ctf_fs_find_traces(&trace_paths, norm_path->str);
1a9f7075
PP
1242 if (ret) {
1243 goto error;
1244 }
1245
1246 if (!trace_paths) {
55314f2a 1247 BT_LOGE("No CTF traces recursively found in `%s`.",
1a9f7075
PP
1248 path_param);
1249 goto error;
1250 }
1251
55314f2a 1252 trace_names = ctf_fs_create_trace_names(trace_paths, norm_path->str);
1a9f7075 1253 if (!trace_names) {
55314f2a 1254 BT_LOGE("Cannot create trace names from trace paths.");
1a9f7075
PP
1255 goto error;
1256 }
1257
1258 for (tp_node = trace_paths, tn_node = trace_names; tp_node;
1259 tp_node = g_list_next(tp_node),
1260 tn_node = g_list_next(tn_node)) {
1261 GString *trace_path = tp_node->data;
1262 GString *trace_name = tn_node->data;
1263
55314f2a 1264 ctf_fs_trace = ctf_fs_trace_create(trace_path->str,
a2a54545 1265 trace_name->str, &ctf_fs->metadata_config);
1a9f7075 1266 if (!ctf_fs_trace) {
55314f2a 1267 BT_LOGE("Cannot create trace for `%s`.",
1a9f7075
PP
1268 trace_path->str);
1269 goto error;
1270 }
52c5fe74 1271
55314f2a
JG
1272 ret = create_ports_for_trace(ctf_fs, ctf_fs_trace);
1273 if (ret) {
1274 goto error;
1275 }
1276
52c5fe74
PP
1277 g_ptr_array_add(ctf_fs->traces, ctf_fs_trace);
1278 ctf_fs_trace = NULL;
1a9f7075
PP
1279 }
1280
1a9f7075
PP
1281 goto end;
1282
1283error:
1284 ret = -1;
1285 ctf_fs_trace_destroy(ctf_fs_trace);
1286
1287end:
1288 for (tp_node = trace_paths; tp_node; tp_node = g_list_next(tp_node)) {
1289 if (tp_node->data) {
1290 g_string_free(tp_node->data, TRUE);
1291 }
1292 }
1293
1294 for (tn_node = trace_names; tn_node; tn_node = g_list_next(tn_node)) {
1295 if (tn_node->data) {
1296 g_string_free(tn_node->data, TRUE);
1297 }
1298 }
1299
1300 if (trace_paths) {
1301 g_list_free(trace_paths);
1302 }
1303
1304 if (trace_names) {
1305 g_list_free(trace_names);
1306 }
1307
4bd72b60
PP
1308 if (norm_path) {
1309 g_string_free(norm_path, TRUE);
1310 }
1311
1a9f7075
PP
1312 return ret;
1313}
1314
5b29e799 1315static
4f1f88a6
PP
1316struct ctf_fs_component *ctf_fs_create(struct bt_private_component *priv_comp,
1317 struct bt_value *params)
56a1cced
JG
1318{
1319 struct ctf_fs_component *ctf_fs;
1ef09eb5 1320 struct bt_value *value = NULL;
1a9f7075 1321 const char *path_param;
3faba6d4
MD
1322 enum bt_component_status ret;
1323 enum bt_value_status value_ret;
56a1cced
JG
1324
1325 ctf_fs = g_new0(struct ctf_fs_component, 1);
1326 if (!ctf_fs) {
1327 goto end;
1328 }
1329
1a9f7075 1330 ret = bt_private_component_set_user_data(priv_comp, ctf_fs);
3faba6d4 1331 assert(ret == BT_COMPONENT_STATUS_OK);
1a9f7075 1332
4f1f88a6
PP
1333 /*
1334 * We don't need to get a new reference here because as long as
1335 * our private ctf_fs_component object exists, the containing
1336 * private component should also exist.
1337 */
1338 ctf_fs->priv_comp = priv_comp;
56a1cced 1339 value = bt_value_map_get(params, "path");
1a9f7075 1340 if (!bt_value_is_string(value)) {
56a1cced
JG
1341 goto error;
1342 }
1343
3faba6d4
MD
1344 value_ret = bt_value_string_get(value, &path_param);
1345 assert(value_ret == BT_VALUE_STATUS_OK);
1a9f7075 1346 BT_PUT(value);
a2a54545 1347 value = bt_value_map_get(params, "clock-class-offset-s");
92540773 1348 if (value) {
a2a54545
PP
1349 if (!bt_value_is_integer(value)) {
1350 BT_LOGE("clock-class-offset-s should be an integer");
1351 goto error;
1352 }
3faba6d4 1353 value_ret = bt_value_integer_get(value,
a2a54545 1354 &ctf_fs->metadata_config.clock_class_offset_s);
3faba6d4 1355 assert(value_ret == BT_VALUE_STATUS_OK);
a2a54545
PP
1356 BT_PUT(value);
1357 }
92540773 1358
a2a54545
PP
1359 value = bt_value_map_get(params, "clock-class-offset-ns");
1360 if (value) {
92540773 1361 if (!bt_value_is_integer(value)) {
a2a54545 1362 BT_LOGE("clock-class-offset-ns should be an integer");
92540773
JD
1363 goto error;
1364 }
3faba6d4 1365 value_ret = bt_value_integer_get(value,
a2a54545 1366 &ctf_fs->metadata_config.clock_class_offset_ns);
3faba6d4 1367 assert(value_ret == BT_VALUE_STATUS_OK);
1a9f7075 1368 BT_PUT(value);
92540773
JD
1369 }
1370
1a9f7075
PP
1371 ctf_fs->port_data = g_ptr_array_new_with_free_func(port_data_destroy);
1372 if (!ctf_fs->port_data) {
4f1f88a6
PP
1373 goto error;
1374 }
1375
97ade20b
JG
1376 ctf_fs->traces = g_ptr_array_new_with_free_func(
1377 ctf_fs_trace_destroy_notifier);
1a9f7075 1378 if (!ctf_fs->traces) {
599faa1c
PP
1379 goto error;
1380 }
1381
3faba6d4 1382 if (create_ctf_fs_traces(ctf_fs, path_param)) {
4f1f88a6
PP
1383 goto error;
1384 }
1385
1ef09eb5
JG
1386 goto end;
1387
56a1cced 1388error:
1a9f7075 1389 ctf_fs_destroy(ctf_fs);
e7a4393b 1390 ctf_fs = NULL;
1a9f7075 1391 ret = bt_private_component_set_user_data(priv_comp, NULL);
3faba6d4 1392 assert(ret == BT_COMPONENT_STATUS_OK);
1a9f7075 1393
1ef09eb5 1394end:
1a9f7075 1395 bt_put(value);
56a1cced
JG
1396 return ctf_fs;
1397}
1398
ea0b4b9e 1399BT_HIDDEN
4f1f88a6 1400enum bt_component_status ctf_fs_init(struct bt_private_component *priv_comp,
7d61fa8e 1401 struct bt_value *params, UNUSED_VAR void *init_method_data)
ea0b4b9e
JG
1402{
1403 struct ctf_fs_component *ctf_fs;
1404 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
1405
4f1f88a6 1406 ctf_fs = ctf_fs_create(priv_comp, params);
ea0b4b9e 1407 if (!ctf_fs) {
1a9f7075 1408 ret = BT_COMPONENT_STATUS_ERROR;
ea0b4b9e 1409 }
4c1456f0 1410
ea0b4b9e
JG
1411 return ret;
1412}
33f93973
PP
1413
1414BT_HIDDEN
a67681c1
PP
1415struct bt_value *ctf_fs_query(struct bt_component_class *comp_class,
1416 const char *object, struct bt_value *params)
33f93973 1417{
04c0ba87 1418 struct bt_value *result = NULL;
33f93973 1419
04c0ba87
JG
1420 if (!strcmp(object, "metadata-info")) {
1421 result = metadata_info_query(comp_class, params);
97ade20b
JG
1422 } else if (!strcmp(object, "trace-info")) {
1423 result = trace_info_query(comp_class, params);
33f93973 1424 } else {
55314f2a 1425 BT_LOGE("Unknown query object `%s`", object);
04c0ba87 1426 goto end;
33f93973 1427 }
33f93973 1428end:
04c0ba87 1429 return result;
33f93973 1430}
This page took 0.108865 seconds and 4 git commands to generate.