lib: notification iterator: transfer a batch of notifications
[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 static
968 int create_cc_prio_map(struct ctf_fs_trace *ctf_fs_trace)
969 {
970 int ret = 0;
971 size_t i;
972 int count;
973
974 BT_ASSERT(ctf_fs_trace);
975 ctf_fs_trace->cc_prio_map = bt_clock_class_priority_map_create();
976 if (!ctf_fs_trace->cc_prio_map) {
977 ret = -1;
978 goto end;
979 }
980
981 count = bt_trace_get_clock_class_count(
982 ctf_fs_trace->metadata->trace);
983 BT_ASSERT(count >= 0);
984
985 for (i = 0; i < count; i++) {
986 struct bt_clock_class *clock_class =
987 bt_trace_borrow_clock_class_by_index(
988 ctf_fs_trace->metadata->trace, i);
989
990 BT_ASSERT(clock_class);
991 ret = bt_clock_class_priority_map_add_clock_class(
992 ctf_fs_trace->cc_prio_map, clock_class, 0);
993
994 if (ret) {
995 goto end;
996 }
997 }
998
999 end:
1000 return ret;
1001 }
1002
1003 BT_HIDDEN
1004 struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
1005 struct ctf_fs_metadata_config *metadata_config,
1006 struct bt_graph *graph)
1007 {
1008 struct ctf_fs_trace *ctf_fs_trace;
1009 int ret;
1010
1011 ctf_fs_trace = g_new0(struct ctf_fs_trace, 1);
1012 if (!ctf_fs_trace) {
1013 goto end;
1014 }
1015
1016 ctf_fs_trace->path = g_string_new(path);
1017 if (!ctf_fs_trace->path) {
1018 goto error;
1019 }
1020
1021 ctf_fs_trace->name = g_string_new(name);
1022 if (!ctf_fs_trace->name) {
1023 goto error;
1024 }
1025
1026 ctf_fs_trace->metadata = g_new0(struct ctf_fs_metadata, 1);
1027 if (!ctf_fs_trace->metadata) {
1028 goto error;
1029 }
1030
1031 ctf_fs_trace->ds_file_groups = g_ptr_array_new_with_free_func(
1032 (GDestroyNotify) ctf_fs_ds_file_group_destroy);
1033 if (!ctf_fs_trace->ds_file_groups) {
1034 goto error;
1035 }
1036
1037 ret = ctf_fs_metadata_set_trace(ctf_fs_trace, metadata_config);
1038 if (ret) {
1039 goto error;
1040 }
1041
1042 ret = create_ds_file_groups(ctf_fs_trace, graph);
1043 if (ret) {
1044 goto error;
1045 }
1046
1047 ret = create_cc_prio_map(ctf_fs_trace);
1048 if (ret) {
1049 goto error;
1050 }
1051
1052 /*
1053 * create_ds_file_groups() created all the streams that this
1054 * trace needs. There won't be any more. Therefore it is safe to
1055 * make this trace static.
1056 */
1057 (void) bt_trace_set_is_static(ctf_fs_trace->metadata->trace);
1058
1059 goto end;
1060
1061 error:
1062 ctf_fs_trace_destroy(ctf_fs_trace);
1063 ctf_fs_trace = NULL;
1064 end:
1065 return ctf_fs_trace;
1066 }
1067
1068 static
1069 int path_is_ctf_trace(const char *path)
1070 {
1071 GString *metadata_path = g_string_new(NULL);
1072 int ret = 0;
1073
1074 if (!metadata_path) {
1075 ret = -1;
1076 goto end;
1077 }
1078
1079 g_string_printf(metadata_path, "%s" G_DIR_SEPARATOR_S "%s", path, CTF_FS_METADATA_FILENAME);
1080
1081 if (g_file_test(metadata_path->str, G_FILE_TEST_IS_REGULAR)) {
1082 ret = 1;
1083 goto end;
1084 }
1085
1086 end:
1087 g_string_free(metadata_path, TRUE);
1088 return ret;
1089 }
1090
1091 static
1092 int add_trace_path(GList **trace_paths, const char *path)
1093 {
1094 GString *norm_path = NULL;
1095 int ret = 0;
1096
1097 norm_path = bt_common_normalize_path(path, NULL);
1098 if (!norm_path) {
1099 BT_LOGE("Failed to normalize path `%s`.", path);
1100 ret = -1;
1101 goto end;
1102 }
1103
1104 // FIXME: Remove or ifdef for __MINGW32__
1105 if (strcmp(norm_path->str, "/") == 0) {
1106 BT_LOGE("Opening a trace in `/` is not supported.");
1107 ret = -1;
1108 goto end;
1109 }
1110
1111 *trace_paths = g_list_prepend(*trace_paths, norm_path);
1112 BT_ASSERT(*trace_paths);
1113 norm_path = NULL;
1114
1115 end:
1116 if (norm_path) {
1117 g_string_free(norm_path, TRUE);
1118 }
1119
1120 return ret;
1121 }
1122
1123 BT_HIDDEN
1124 int ctf_fs_find_traces(GList **trace_paths, const char *start_path)
1125 {
1126 int ret;
1127 GError *error = NULL;
1128 GDir *dir = NULL;
1129 const char *basename = NULL;
1130
1131 /* Check if the starting path is a CTF trace itself */
1132 ret = path_is_ctf_trace(start_path);
1133 if (ret < 0) {
1134 goto end;
1135 }
1136
1137 if (ret) {
1138 /*
1139 * Stop recursion: a CTF trace cannot contain another
1140 * CTF trace.
1141 */
1142 ret = add_trace_path(trace_paths, start_path);
1143 goto end;
1144 }
1145
1146 /* Look for subdirectories */
1147 if (!g_file_test(start_path, G_FILE_TEST_IS_DIR)) {
1148 /* Starting path is not a directory: end of recursion */
1149 goto end;
1150 }
1151
1152 dir = g_dir_open(start_path, 0, &error);
1153 if (!dir) {
1154 if (error->code == G_FILE_ERROR_ACCES) {
1155 BT_LOGD("Cannot open directory `%s`: %s (code %d): continuing",
1156 start_path, error->message, error->code);
1157 goto end;
1158 }
1159
1160 BT_LOGE("Cannot open directory `%s`: %s (code %d)",
1161 start_path, error->message, error->code);
1162 ret = -1;
1163 goto end;
1164 }
1165
1166 while ((basename = g_dir_read_name(dir))) {
1167 GString *sub_path = g_string_new(NULL);
1168
1169 if (!sub_path) {
1170 ret = -1;
1171 goto end;
1172 }
1173
1174 g_string_printf(sub_path, "%s" G_DIR_SEPARATOR_S "%s", start_path, basename);
1175 ret = ctf_fs_find_traces(trace_paths, sub_path->str);
1176 g_string_free(sub_path, TRUE);
1177 if (ret) {
1178 goto end;
1179 }
1180 }
1181
1182 end:
1183 if (dir) {
1184 g_dir_close(dir);
1185 }
1186
1187 if (error) {
1188 g_error_free(error);
1189 }
1190
1191 return ret;
1192 }
1193
1194 BT_HIDDEN
1195 GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path) {
1196 GList *trace_names = NULL;
1197 GList *node;
1198 const char *last_sep;
1199 size_t base_dist;
1200
1201 /*
1202 * At this point we know that all the trace paths are
1203 * normalized, and so is the base path. This means that
1204 * they are absolute and they don't end with a separator.
1205 * We can simply find the location of the last separator
1206 * in the base path, which gives us the name of the actual
1207 * directory to look into, and use this location as the
1208 * start of each trace name within each trace path.
1209 *
1210 * For example:
1211 *
1212 * Base path: /home/user/my-traces/some-trace
1213 * Trace paths:
1214 * - /home/user/my-traces/some-trace/host1/trace1
1215 * - /home/user/my-traces/some-trace/host1/trace2
1216 * - /home/user/my-traces/some-trace/host2/trace
1217 * - /home/user/my-traces/some-trace/other-trace
1218 *
1219 * In this case the trace names are:
1220 *
1221 * - some-trace/host1/trace1
1222 * - some-trace/host1/trace2
1223 * - some-trace/host2/trace
1224 * - some-trace/other-trace
1225 */
1226 last_sep = strrchr(base_path, G_DIR_SEPARATOR);
1227
1228 /* We know there's at least one separator */
1229 BT_ASSERT(last_sep);
1230
1231 /* Distance to base */
1232 base_dist = last_sep - base_path + 1;
1233
1234 /* Create the trace names */
1235 for (node = trace_paths; node; node = g_list_next(node)) {
1236 GString *trace_name = g_string_new(NULL);
1237 GString *trace_path = node->data;
1238
1239 BT_ASSERT(trace_name);
1240 g_string_assign(trace_name, &trace_path->str[base_dist]);
1241 trace_names = g_list_append(trace_names, trace_name);
1242 }
1243
1244 return trace_names;
1245 }
1246
1247 static
1248 int create_ctf_fs_traces(struct ctf_fs_component *ctf_fs,
1249 const char *path_param)
1250 {
1251 struct ctf_fs_trace *ctf_fs_trace = NULL;
1252 int ret = 0;
1253 GString *norm_path = NULL;
1254 GList *trace_paths = NULL;
1255 GList *trace_names = NULL;
1256 GList *tp_node;
1257 GList *tn_node;
1258
1259 norm_path = bt_common_normalize_path(path_param, NULL);
1260 if (!norm_path) {
1261 BT_LOGE("Failed to normalize path: `%s`.",
1262 path_param);
1263 goto error;
1264 }
1265
1266 ret = ctf_fs_find_traces(&trace_paths, norm_path->str);
1267 if (ret) {
1268 goto error;
1269 }
1270
1271 if (!trace_paths) {
1272 BT_LOGE("No CTF traces recursively found in `%s`.",
1273 path_param);
1274 goto error;
1275 }
1276
1277 trace_names = ctf_fs_create_trace_names(trace_paths, norm_path->str);
1278 if (!trace_names) {
1279 BT_LOGE("Cannot create trace names from trace paths.");
1280 goto error;
1281 }
1282
1283 for (tp_node = trace_paths, tn_node = trace_names; tp_node;
1284 tp_node = g_list_next(tp_node),
1285 tn_node = g_list_next(tn_node)) {
1286 GString *trace_path = tp_node->data;
1287 GString *trace_name = tn_node->data;
1288 struct bt_graph *graph = bt_component_borrow_graph(
1289 bt_component_borrow_from_private(ctf_fs->priv_comp));
1290
1291 BT_ASSERT(graph);
1292 ctf_fs_trace = ctf_fs_trace_create(trace_path->str,
1293 trace_name->str, &ctf_fs->metadata_config,
1294 graph);
1295 if (!ctf_fs_trace) {
1296 BT_LOGE("Cannot create trace for `%s`.",
1297 trace_path->str);
1298 goto error;
1299 }
1300
1301 ret = create_ports_for_trace(ctf_fs, ctf_fs_trace);
1302 if (ret) {
1303 goto error;
1304 }
1305
1306 g_ptr_array_add(ctf_fs->traces, ctf_fs_trace);
1307 ctf_fs_trace = NULL;
1308 }
1309
1310 goto end;
1311
1312 error:
1313 ret = -1;
1314 ctf_fs_trace_destroy(ctf_fs_trace);
1315
1316 end:
1317 for (tp_node = trace_paths; tp_node; tp_node = g_list_next(tp_node)) {
1318 if (tp_node->data) {
1319 g_string_free(tp_node->data, TRUE);
1320 }
1321 }
1322
1323 for (tn_node = trace_names; tn_node; tn_node = g_list_next(tn_node)) {
1324 if (tn_node->data) {
1325 g_string_free(tn_node->data, TRUE);
1326 }
1327 }
1328
1329 if (trace_paths) {
1330 g_list_free(trace_paths);
1331 }
1332
1333 if (trace_names) {
1334 g_list_free(trace_names);
1335 }
1336
1337 if (norm_path) {
1338 g_string_free(norm_path, TRUE);
1339 }
1340
1341 return ret;
1342 }
1343
1344 static
1345 struct ctf_fs_component *ctf_fs_create(struct bt_private_component *priv_comp,
1346 struct bt_value *params)
1347 {
1348 struct ctf_fs_component *ctf_fs;
1349 struct bt_value *value = NULL;
1350 const char *path_param;
1351 enum bt_component_status ret;
1352 enum bt_value_status value_ret;
1353
1354 ctf_fs = g_new0(struct ctf_fs_component, 1);
1355 if (!ctf_fs) {
1356 goto end;
1357 }
1358
1359 ret = bt_private_component_set_user_data(priv_comp, ctf_fs);
1360 BT_ASSERT(ret == BT_COMPONENT_STATUS_OK);
1361
1362 /*
1363 * We don't need to get a new reference here because as long as
1364 * our private ctf_fs_component object exists, the containing
1365 * private component should also exist.
1366 */
1367 ctf_fs->priv_comp = priv_comp;
1368 value = bt_value_map_borrow(params, "path");
1369 if (value && !bt_value_is_string(value)) {
1370 goto error;
1371 }
1372
1373 value_ret = bt_value_string_get(value, &path_param);
1374 BT_ASSERT(value_ret == BT_VALUE_STATUS_OK);
1375 value = bt_value_map_borrow(params, "clock-class-offset-s");
1376 if (value) {
1377 if (!bt_value_is_integer(value)) {
1378 BT_LOGE("clock-class-offset-s should be an integer");
1379 goto error;
1380 }
1381 value_ret = bt_value_integer_get(value,
1382 &ctf_fs->metadata_config.clock_class_offset_s);
1383 BT_ASSERT(value_ret == BT_VALUE_STATUS_OK);
1384 }
1385
1386 value = bt_value_map_borrow(params, "clock-class-offset-ns");
1387 if (value) {
1388 if (!bt_value_is_integer(value)) {
1389 BT_LOGE("clock-class-offset-ns should be an integer");
1390 goto error;
1391 }
1392 value_ret = bt_value_integer_get(value,
1393 &ctf_fs->metadata_config.clock_class_offset_ns);
1394 BT_ASSERT(value_ret == BT_VALUE_STATUS_OK);
1395 }
1396
1397 ctf_fs->port_data = g_ptr_array_new_with_free_func(port_data_destroy);
1398 if (!ctf_fs->port_data) {
1399 goto error;
1400 }
1401
1402 ctf_fs->traces = g_ptr_array_new_with_free_func(
1403 ctf_fs_trace_destroy_notifier);
1404 if (!ctf_fs->traces) {
1405 goto error;
1406 }
1407
1408 if (create_ctf_fs_traces(ctf_fs, path_param)) {
1409 goto error;
1410 }
1411
1412 goto end;
1413
1414 error:
1415 ctf_fs_destroy(ctf_fs);
1416 ctf_fs = NULL;
1417 ret = bt_private_component_set_user_data(priv_comp, NULL);
1418 BT_ASSERT(ret == BT_COMPONENT_STATUS_OK);
1419
1420 end:
1421 return ctf_fs;
1422 }
1423
1424 BT_HIDDEN
1425 enum bt_component_status ctf_fs_init(struct bt_private_component *priv_comp,
1426 struct bt_value *params, UNUSED_VAR void *init_method_data)
1427 {
1428 struct ctf_fs_component *ctf_fs;
1429 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
1430
1431 ctf_fs = ctf_fs_create(priv_comp, params);
1432 if (!ctf_fs) {
1433 ret = BT_COMPONENT_STATUS_ERROR;
1434 }
1435
1436 return ret;
1437 }
1438
1439 BT_HIDDEN
1440 struct bt_component_class_query_method_return ctf_fs_query(
1441 struct bt_component_class *comp_class,
1442 struct bt_query_executor *query_exec,
1443 const char *object, struct bt_value *params)
1444 {
1445 struct bt_component_class_query_method_return ret = {
1446 .result = NULL,
1447 .status = BT_QUERY_STATUS_OK,
1448 };
1449
1450 if (!strcmp(object, "metadata-info")) {
1451 ret = metadata_info_query(comp_class, params);
1452 } else if (!strcmp(object, "trace-info")) {
1453 ret = trace_info_query(comp_class, params);
1454 } else {
1455 BT_LOGE("Unknown query object `%s`", object);
1456 ret.status = BT_QUERY_STATUS_INVALID_OBJECT;
1457 goto end;
1458 }
1459 end:
1460 return ret;
1461 }
This page took 0.056971 seconds and 5 git commands to generate.