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