cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016-2017 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 */
8
9 #include <glib.h>
10 #include <stdint.h>
11 #include <stdio.h>
12
13 #include "compat/endian.h" /* IWYU pragma: keep */
14 #include "compat/mman.h" /* IWYU: pragma keep */
15 #include "cpp-common/bt2c/glib-up.hpp"
16 #include "cpp-common/bt2s/make-unique.hpp"
17 #include "cpp-common/vendor/fmt/format.h"
18
19 #include "../common/src/msg-iter/msg-iter.hpp"
20 #include "data-stream-file.hpp"
21 #include "file.hpp"
22 #include "fs.hpp"
23 #include "lttng-index.hpp"
24
25 static inline size_t remaining_mmap_bytes(struct ctf_fs_ds_file *ds_file)
26 {
27 BT_ASSERT_DBG(ds_file->mmap_len >= ds_file->request_offset_in_mapping);
28 return ds_file->mmap_len - ds_file->request_offset_in_mapping;
29 }
30
31 /*
32 * Return true if `offset_in_file` is in the current mapping.
33 */
34
35 static bool offset_ist_mapped(struct ctf_fs_ds_file *ds_file, off_t offset_in_file)
36 {
37 return offset_in_file >= ds_file->mmap_offset_in_file &&
38 offset_in_file < (ds_file->mmap_offset_in_file + ds_file->mmap_len);
39 }
40
41 static enum ctf_msg_iter_medium_status ds_file_munmap(struct ctf_fs_ds_file *ds_file)
42 {
43 BT_ASSERT(ds_file);
44
45 if (!ds_file->mmap_addr) {
46 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
47 }
48
49 if (bt_munmap(ds_file->mmap_addr, ds_file->mmap_len)) {
50 BT_CPPLOGE_ERRNO_SPEC(ds_file->logger, "Cannot memory-unmap file",
51 ": address={}, size={}, file_path=\"{}\", file={}",
52 fmt::ptr(ds_file->mmap_addr), ds_file->mmap_len,
53 ds_file->file ? ds_file->file->path : "NULL",
54 ds_file->file ? fmt::ptr(ds_file->file->fp) : NULL);
55 return CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
56 }
57
58 ds_file->mmap_addr = NULL;
59
60 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
61 }
62
63 /*
64 * mmap a region of `ds_file` such that `requested_offset_in_file` is in the
65 * mapping. If the currently mmap-ed region already contains
66 * `requested_offset_in_file`, the mapping is kept.
67 *
68 * Set `ds_file->requested_offset_in_mapping` based on `request_offset_in_file`,
69 * such that the next call to `request_bytes` will return bytes starting at that
70 * position.
71 *
72 * `requested_offset_in_file` must be a valid offset in the file.
73 */
74 static enum ctf_msg_iter_medium_status ds_file_mmap(struct ctf_fs_ds_file *ds_file,
75 off_t requested_offset_in_file)
76 {
77 /* Ensure the requested offset is in the file range. */
78 BT_ASSERT(requested_offset_in_file >= 0);
79 BT_ASSERT(requested_offset_in_file < ds_file->file->size);
80
81 /*
82 * If the mapping already contains the requested offset, just adjust
83 * requested_offset_in_mapping.
84 */
85 if (offset_ist_mapped(ds_file, requested_offset_in_file)) {
86 ds_file->request_offset_in_mapping =
87 requested_offset_in_file - ds_file->mmap_offset_in_file;
88 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
89 }
90
91 /* Unmap old region */
92 ctf_msg_iter_medium_status status = ds_file_munmap(ds_file);
93 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
94 return status;
95 }
96
97 /*
98 * Compute a mapping that has the required alignment properties and
99 * contains `requested_offset_in_file`.
100 */
101 ds_file->request_offset_in_mapping =
102 requested_offset_in_file %
103 bt_mmap_get_offset_align_size(static_cast<int>(ds_file->logger.level()));
104 ds_file->mmap_offset_in_file = requested_offset_in_file - ds_file->request_offset_in_mapping;
105 ds_file->mmap_len =
106 MIN(ds_file->file->size - ds_file->mmap_offset_in_file, ds_file->mmap_max_len);
107
108 BT_ASSERT(ds_file->mmap_len > 0);
109
110 ds_file->mmap_addr =
111 bt_mmap(ds_file->mmap_len, PROT_READ, MAP_PRIVATE, fileno(ds_file->file->fp.get()),
112 ds_file->mmap_offset_in_file, static_cast<int>(ds_file->logger.level()));
113 if (ds_file->mmap_addr == MAP_FAILED) {
114 BT_CPPLOGE_SPEC(ds_file->logger,
115 "Cannot memory-map address (size {}) of file \"{}\" ({}) at offset {}: {}",
116 ds_file->mmap_len, ds_file->file->path, fmt::ptr(ds_file->file->fp),
117 (intmax_t) ds_file->mmap_offset_in_file, strerror(errno));
118 return CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
119 }
120
121 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
122 }
123
124 /*
125 * Change the mapping of the file to read the region that follows the current
126 * mapping.
127 *
128 * If the file hasn't been mapped yet, then everything (mmap_offset_in_file,
129 * mmap_len, request_offset_in_mapping) should have the value 0, which will
130 * result in the beginning of the file getting mapped.
131 *
132 * return _EOF if the current mapping is the end of the file.
133 */
134
135 static enum ctf_msg_iter_medium_status ds_file_mmap_next(struct ctf_fs_ds_file *ds_file)
136 {
137 /*
138 * If we're called, it's because more bytes are requested but we have
139 * given all the bytes of the current mapping.
140 */
141 BT_ASSERT(ds_file->request_offset_in_mapping == ds_file->mmap_len);
142
143 /*
144 * If the current mapping coincides with the end of the file, there is
145 * no next mapping.
146 */
147 if (ds_file->mmap_offset_in_file + ds_file->mmap_len == ds_file->file->size) {
148 return CTF_MSG_ITER_MEDIUM_STATUS_EOF;
149 }
150
151 return ds_file_mmap(ds_file, ds_file->mmap_offset_in_file + ds_file->mmap_len);
152 }
153
154 static enum ctf_msg_iter_medium_status medop_request_bytes(size_t request_sz, uint8_t **buffer_addr,
155 size_t *buffer_sz, void *data)
156 {
157 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
158
159 BT_ASSERT(request_sz > 0);
160
161 /*
162 * Check if we have at least one memory-mapped byte left. If we don't,
163 * mmap the next file.
164 */
165 if (remaining_mmap_bytes(ds_file) == 0) {
166 /* Are we at the end of the file? */
167 if (ds_file->mmap_offset_in_file >= ds_file->file->size) {
168 BT_CPPLOGD_SPEC(ds_file->logger, "Reached end of file \"{}\" ({})", ds_file->file->path,
169 fmt::ptr(ds_file->file->fp));
170 return CTF_MSG_ITER_MEDIUM_STATUS_EOF;
171 }
172
173 ctf_msg_iter_medium_status status = ds_file_mmap_next(ds_file);
174 switch (status) {
175 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
176 break;
177 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
178 return CTF_MSG_ITER_MEDIUM_STATUS_EOF;
179 default:
180 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot memory-map next region of file \"{}\" ({})",
181 ds_file->file->path, fmt::ptr(ds_file->file->fp));
182 return status;
183 }
184 }
185
186 BT_ASSERT(remaining_mmap_bytes(ds_file) > 0);
187 *buffer_sz = MIN(remaining_mmap_bytes(ds_file), request_sz);
188
189 BT_ASSERT(ds_file->mmap_addr);
190 *buffer_addr = ((uint8_t *) ds_file->mmap_addr) + ds_file->request_offset_in_mapping;
191
192 ds_file->request_offset_in_mapping += *buffer_sz;
193
194 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
195 }
196
197 static bt_stream *medop_borrow_stream(bt_stream_class *stream_class, int64_t, void *data)
198 {
199 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
200 bt_stream_class *ds_file_stream_class;
201
202 ds_file_stream_class = ds_file->stream->cls().libObjPtr();
203
204 if (stream_class != ds_file_stream_class) {
205 /*
206 * Not supported: two packets described by two different
207 * stream classes within the same data stream file.
208 */
209 return nullptr;
210 }
211
212 return ds_file->stream->libObjPtr();
213 }
214
215 static enum ctf_msg_iter_medium_status medop_seek(off_t offset, void *data)
216 {
217 struct ctf_fs_ds_file *ds_file = (struct ctf_fs_ds_file *) data;
218
219 BT_ASSERT(offset >= 0);
220 BT_ASSERT(offset < ds_file->file->size);
221
222 return ds_file_mmap(ds_file, offset);
223 }
224
225 struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops = {
226 medop_request_bytes,
227 medop_seek,
228 nullptr,
229 medop_borrow_stream,
230 };
231
232 struct ctf_fs_ds_group_medops_data
233 {
234 explicit ctf_fs_ds_group_medops_data(const bt2c::Logger& parentLogger) :
235 logger {parentLogger, "PLUGIN/SRC.CTF.FS/DS-GROUP-MEDOPS"}
236 {
237 }
238
239 bt2c::Logger logger;
240
241 /* Weak, set once at creation time. */
242 struct ctf_fs_ds_file_group *ds_file_group = nullptr;
243
244 /*
245 * Index (as in element rank) of the index entry of ds_file_groups'
246 * index we will read next (so, the one after the one we are reading
247 * right now).
248 */
249 guint next_index_entry_index = 0;
250
251 /*
252 * File we are currently reading. Changes whenever we switch to
253 * reading another data file.
254 */
255 ctf_fs_ds_file::UP file;
256
257 /* Weak, for context / logging / appending causes. */
258 bt_self_message_iterator *self_msg_iter = nullptr;
259 };
260
261 static enum ctf_msg_iter_medium_status medop_group_request_bytes(size_t request_sz,
262 uint8_t **buffer_addr,
263 size_t *buffer_sz, void *void_data)
264 {
265 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
266
267 /* Return bytes from the current file. */
268 return medop_request_bytes(request_sz, buffer_addr, buffer_sz, data->file.get());
269 }
270
271 static bt_stream *medop_group_borrow_stream(bt_stream_class *stream_class, int64_t stream_id,
272 void *void_data)
273 {
274 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
275
276 return medop_borrow_stream(stream_class, stream_id, data->file.get());
277 }
278
279 /*
280 * Set `data->file` to prepare it to read the packet described
281 * by `index_entry`.
282 */
283
284 static enum ctf_msg_iter_medium_status
285 ctf_fs_ds_group_medops_set_file(struct ctf_fs_ds_group_medops_data *data,
286 struct ctf_fs_ds_index_entry *index_entry)
287 {
288 BT_ASSERT(data);
289 BT_ASSERT(index_entry);
290
291 /* Check if that file is already the one mapped. */
292 if (!data->file || data->file->file->path != index_entry->path) {
293 /* Create the new file. */
294 data->file =
295 ctf_fs_ds_file_create(data->ds_file_group->ctf_fs_trace, data->ds_file_group->stream,
296 index_entry->path, data->logger);
297 if (!data->file) {
298 BT_CPPLOGE_APPEND_CAUSE_SPEC(data->logger, "failed to create ctf_fs_ds_file.");
299 return CTF_MSG_ITER_MEDIUM_STATUS_ERROR;
300 }
301 }
302
303 /*
304 * Ensure the right portion of the file will be returned on the next
305 * request_bytes call.
306 */
307 return ds_file_mmap(data->file.get(), index_entry->offset.bytes());
308 }
309
310 static enum ctf_msg_iter_medium_status medop_group_switch_packet(void *void_data)
311 {
312 struct ctf_fs_ds_group_medops_data *data = (struct ctf_fs_ds_group_medops_data *) void_data;
313
314 /* If we have gone through all index entries, we are done. */
315 if (data->next_index_entry_index >= data->ds_file_group->index.entries.size()) {
316 return CTF_MSG_ITER_MEDIUM_STATUS_EOF;
317 }
318
319 /*
320 * Otherwise, look up the next index entry / packet and prepare it
321 * for reading.
322 */
323 ctf_msg_iter_medium_status status = ctf_fs_ds_group_medops_set_file(
324 data, &data->ds_file_group->index.entries[data->next_index_entry_index]);
325 if (status != CTF_MSG_ITER_MEDIUM_STATUS_OK) {
326 return status;
327 }
328
329 data->next_index_entry_index++;
330
331 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
332 }
333
334 void ctf_fs_ds_group_medops_data_deleter::operator()(ctf_fs_ds_group_medops_data *data) noexcept
335 {
336 delete data;
337 }
338
339 enum ctf_msg_iter_medium_status ctf_fs_ds_group_medops_data_create(
340 struct ctf_fs_ds_file_group *ds_file_group, bt_self_message_iterator *self_msg_iter,
341 const bt2c::Logger& parentLogger, ctf_fs_ds_group_medops_data_up& out)
342 {
343 BT_ASSERT(self_msg_iter);
344 BT_ASSERT(ds_file_group);
345 BT_ASSERT(!ds_file_group->index.entries.empty());
346
347 out.reset(new ctf_fs_ds_group_medops_data {parentLogger});
348
349 out->ds_file_group = ds_file_group;
350 out->self_msg_iter = self_msg_iter;
351
352 /*
353 * No need to prepare the first file. ctf_msg_iter will call
354 * switch_packet before reading the first packet, it will be
355 * done then.
356 */
357
358 return CTF_MSG_ITER_MEDIUM_STATUS_OK;
359 }
360
361 void ctf_fs_ds_group_medops_data_reset(struct ctf_fs_ds_group_medops_data *data)
362 {
363 data->next_index_entry_index = 0;
364 }
365
366 struct ctf_msg_iter_medium_ops ctf_fs_ds_group_medops = {
367 .request_bytes = medop_group_request_bytes,
368
369 /*
370 * We don't support seeking using this medops. It would probably be
371 * possible, but it's not needed at the moment.
372 */
373 .seek = NULL,
374
375 .switch_packet = medop_group_switch_packet,
376 .borrow_stream = medop_group_borrow_stream,
377 };
378
379 static int convert_cycles_to_ns(struct ctf_clock_class *clock_class, uint64_t cycles, int64_t *ns)
380 {
381 return bt_util_clock_cycles_to_ns_from_origin(cycles, clock_class->frequency,
382 clock_class->offset_seconds,
383 clock_class->offset_cycles, ns);
384 }
385
386 static bt2s::optional<ctf_fs_ds_index>
387 build_index_from_idx_file(struct ctf_fs_ds_file *ds_file, struct ctf_fs_ds_file_info *file_info,
388 struct ctf_msg_iter *msg_iter)
389 {
390 BT_CPPLOGI_SPEC(ds_file->logger, "Building index from .idx file of stream file {}",
391 ds_file->file->path);
392 ctf_msg_iter_packet_properties props;
393 int ret = ctf_msg_iter_get_packet_properties(msg_iter, &props);
394 if (ret) {
395 BT_CPPLOGI_STR_SPEC(ds_file->logger,
396 "Cannot read first packet's header and context fields.");
397 return bt2s::nullopt;
398 }
399
400 ctf_stream_class *sc =
401 ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props.stream_class_id);
402 BT_ASSERT(sc);
403 if (!sc->default_clock_class) {
404 BT_CPPLOGI_STR_SPEC(ds_file->logger, "Cannot find stream class's default clock class.");
405 return bt2s::nullopt;
406 }
407
408 /* Look for index file in relative path index/name.idx. */
409 bt2c::GCharUP basename {g_path_get_basename(ds_file->file->path.c_str())};
410 if (!basename) {
411 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot get the basename of datastream file {}",
412 ds_file->file->path);
413 return bt2s::nullopt;
414 }
415
416 bt2c::GCharUP directory {g_path_get_dirname(ds_file->file->path.c_str())};
417 if (!directory) {
418 BT_CPPLOGE_SPEC(ds_file->logger, "Cannot get dirname of datastream file {}",
419 ds_file->file->path);
420 return bt2s::nullopt;
421 }
422
423 std::string index_basename = fmt::format("{}.idx", basename.get());
424 bt2c::GCharUP index_file_path {
425 g_build_filename(directory.get(), "index", index_basename.c_str(), NULL)};
426 bt2c::GMappedFileUP mapped_file {g_mapped_file_new(index_file_path.get(), FALSE, NULL)};
427 if (!mapped_file) {
428 BT_CPPLOGD_SPEC(ds_file->logger, "Cannot create new mapped file {}", index_file_path.get());
429 return bt2s::nullopt;
430 }
431
432 /*
433 * The g_mapped_file API limits us to 4GB files on 32-bit.
434 * Traces with such large indexes have never been seen in the wild,
435 * but this would need to be adjusted to support them.
436 */
437 gsize filesize = g_mapped_file_get_length(mapped_file.get());
438 if (filesize < sizeof(ctf_packet_index_file_hdr)) {
439 BT_CPPLOGW_SPEC(ds_file->logger,
440 "Invalid LTTng trace index file: "
441 "file size ({} bytes) < header size ({} bytes)",
442 filesize, sizeof(ctf_packet_index_file_hdr));
443 return bt2s::nullopt;
444 }
445
446 const char *mmap_begin = g_mapped_file_get_contents(mapped_file.get());
447 const ctf_packet_index_file_hdr *header = (const ctf_packet_index_file_hdr *) mmap_begin;
448
449 const char *file_pos = g_mapped_file_get_contents(mapped_file.get()) + sizeof(*header);
450 if (be32toh(header->magic) != CTF_INDEX_MAGIC) {
451 BT_CPPLOGW_STR_SPEC(ds_file->logger,
452 "Invalid LTTng trace index: \"magic\" field validation failed");
453 return bt2s::nullopt;
454 }
455
456 uint32_t version_major = be32toh(header->index_major);
457 uint32_t version_minor = be32toh(header->index_minor);
458 if (version_major != 1) {
459 BT_CPPLOGW_SPEC(ds_file->logger, "Unknown LTTng trace index version: major={}, minor={}",
460 version_major, version_minor);
461 return bt2s::nullopt;
462 }
463
464 size_t file_index_entry_size = be32toh(header->packet_index_len);
465 if (file_index_entry_size < CTF_INDEX_1_0_SIZE) {
466 BT_CPPLOGW_SPEC(
467 ds_file->logger,
468 "Invalid `packet_index_len` in LTTng trace index file (`packet_index_len` < CTF index 1.0 index entry size): "
469 "packet_index_len={}, CTF_INDEX_1_0_SIZE={}",
470 file_index_entry_size, CTF_INDEX_1_0_SIZE);
471 return bt2s::nullopt;
472 }
473
474 size_t file_entry_count = (filesize - sizeof(*header)) / file_index_entry_size;
475 if ((filesize - sizeof(*header)) % file_index_entry_size) {
476 BT_CPPLOGW_SPEC(ds_file->logger,
477 "Invalid LTTng trace index: the index's size after the header "
478 "({} bytes) is not a multiple of the index entry size "
479 "({} bytes)",
480 (filesize - sizeof(*header)), sizeof(*header));
481 return bt2s::nullopt;
482 }
483
484 ctf_fs_ds_index index;
485 ctf_fs_ds_index_entry *prev_index_entry = nullptr;
486 auto totalPacketsSize = bt2c::DataLen::fromBytes(0);
487
488 for (size_t i = 0; i < file_entry_count; i++) {
489 struct ctf_packet_index *file_index = (struct ctf_packet_index *) file_pos;
490 const auto packetSize = bt2c::DataLen::fromBits(be64toh(file_index->packet_size));
491
492 if (packetSize.hasExtraBits()) {
493 BT_CPPLOGW_SPEC(ds_file->logger,
494 "Invalid packet size encountered in LTTng trace index file");
495 return bt2s::nullopt;
496 }
497
498 const auto offset = bt2c::DataLen::fromBytes(be64toh(file_index->offset));
499
500 if (i != 0 && offset < prev_index_entry->offset) {
501 BT_CPPLOGW_SPEC(
502 ds_file->logger,
503 "Invalid, non-monotonic, packet offset encountered in LTTng trace index file: "
504 "previous offset={} bytes, current offset={} bytes",
505 prev_index_entry->offset.bytes(), offset.bytes());
506 return bt2s::nullopt;
507 }
508
509 ctf_fs_ds_index_entry index_entry {file_info->path.c_str(), offset, packetSize};
510 index_entry.timestamp_begin = be64toh(file_index->timestamp_begin);
511 index_entry.timestamp_end = be64toh(file_index->timestamp_end);
512 if (index_entry.timestamp_end < index_entry.timestamp_begin) {
513 BT_CPPLOGW_SPEC(
514 ds_file->logger,
515 "Invalid packet time bounds encountered in LTTng trace index file (begin > end): "
516 "timestamp_begin={}, timestamp_end={}",
517 index_entry.timestamp_begin, index_entry.timestamp_end);
518 return bt2s::nullopt;
519 }
520
521 /* Convert the packet's bound to nanoseconds since Epoch. */
522 ret = convert_cycles_to_ns(sc->default_clock_class, index_entry.timestamp_begin,
523 &index_entry.timestamp_begin_ns);
524 if (ret) {
525 BT_CPPLOGI_STR_SPEC(
526 ds_file->logger,
527 "Failed to convert raw timestamp to nanoseconds since Epoch during index parsing");
528 return bt2s::nullopt;
529 }
530 ret = convert_cycles_to_ns(sc->default_clock_class, index_entry.timestamp_end,
531 &index_entry.timestamp_end_ns);
532 if (ret) {
533 BT_CPPLOGI_STR_SPEC(
534 ds_file->logger,
535 "Failed to convert raw timestamp to nanoseconds since Epoch during LTTng trace index parsing");
536 return bt2s::nullopt;
537 }
538
539 if (version_minor >= 1) {
540 index_entry.packet_seq_num = be64toh(file_index->packet_seq_num);
541 }
542
543 totalPacketsSize += packetSize;
544 file_pos += file_index_entry_size;
545
546 index.entries.emplace_back(index_entry);
547
548 prev_index_entry = &index.entries.back();
549 }
550
551 /* Validate that the index addresses the complete stream. */
552 if (ds_file->file->size != totalPacketsSize.bytes()) {
553 BT_CPPLOGW_SPEC(ds_file->logger,
554 "Invalid LTTng trace index file; indexed size != stream file size: "
555 "file-size={} bytes, total-packets-size={} bytes",
556 ds_file->file->size, totalPacketsSize.bytes());
557 return bt2s::nullopt;
558 }
559
560 return index;
561 }
562
563 static int init_index_entry(ctf_fs_ds_index_entry& entry, struct ctf_fs_ds_file *ds_file,
564 struct ctf_msg_iter_packet_properties *props)
565 {
566 ctf_stream_class *sc =
567 ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, props->stream_class_id);
568 BT_ASSERT(sc);
569
570 if (props->snapshots.beginning_clock != UINT64_C(-1)) {
571 entry.timestamp_begin = props->snapshots.beginning_clock;
572
573 /* Convert the packet's bound to nanoseconds since Epoch. */
574 int ret = convert_cycles_to_ns(sc->default_clock_class, props->snapshots.beginning_clock,
575 &entry.timestamp_begin_ns);
576 if (ret) {
577 BT_CPPLOGI_STR_SPEC(ds_file->logger,
578 "Failed to convert raw timestamp to nanoseconds since Epoch.");
579 return ret;
580 }
581 } else {
582 entry.timestamp_begin = UINT64_C(-1);
583 entry.timestamp_begin_ns = UINT64_C(-1);
584 }
585
586 if (props->snapshots.end_clock != UINT64_C(-1)) {
587 entry.timestamp_end = props->snapshots.end_clock;
588
589 /* Convert the packet's bound to nanoseconds since Epoch. */
590 int ret = convert_cycles_to_ns(sc->default_clock_class, props->snapshots.end_clock,
591 &entry.timestamp_end_ns);
592 if (ret) {
593 BT_CPPLOGI_STR_SPEC(ds_file->logger,
594 "Failed to convert raw timestamp to nanoseconds since Epoch.");
595 return ret;
596 }
597 } else {
598 entry.timestamp_end = UINT64_C(-1);
599 entry.timestamp_end_ns = UINT64_C(-1);
600 }
601
602 return 0;
603 }
604
605 static bt2s::optional<ctf_fs_ds_index>
606 build_index_from_stream_file(struct ctf_fs_ds_file *ds_file, struct ctf_fs_ds_file_info *file_info,
607 struct ctf_msg_iter *msg_iter)
608 {
609 BT_CPPLOGI_SPEC(ds_file->logger, "Indexing stream file {}", ds_file->file->path);
610
611 ctf_fs_ds_index index;
612 auto currentPacketOffset = bt2c::DataLen::fromBytes(0);
613
614 while (true) {
615 struct ctf_msg_iter_packet_properties props;
616
617 if (currentPacketOffset.bytes() > ds_file->file->size) {
618 BT_CPPLOGE_STR_SPEC(ds_file->logger,
619 "Unexpected current packet's offset (larger than file).");
620 return bt2s::nullopt;
621 } else if (currentPacketOffset.bytes() == ds_file->file->size) {
622 /* No more data */
623 break;
624 }
625
626 ctf_msg_iter_status iter_status = ctf_msg_iter_seek(msg_iter, currentPacketOffset.bytes());
627 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
628 return bt2s::nullopt;
629 }
630
631 iter_status = ctf_msg_iter_get_packet_properties(msg_iter, &props);
632 if (iter_status != CTF_MSG_ITER_STATUS_OK) {
633 return bt2s::nullopt;
634 }
635
636 /*
637 * Get the current packet size from the packet header, if set. Else,
638 * assume there is a single packet in the file, so take the file size
639 * as the packet size.
640 */
641 const auto currentPacketSize = props.exp_packet_total_size >= 0 ?
642 bt2c::DataLen::fromBits(props.exp_packet_total_size) :
643 bt2c::DataLen::fromBytes(ds_file->file->size);
644
645 if ((currentPacketOffset + currentPacketSize).bytes() > ds_file->file->size) {
646 BT_CPPLOGW_SPEC(ds_file->logger,
647 "Invalid packet size reported in file: stream=\"{}\", "
648 "packet-offset-bytes={}, packet-size-bytes={}, "
649 "file-size-bytes={}",
650 ds_file->file->path, currentPacketOffset.bytes(),
651 currentPacketSize.bytes(), ds_file->file->size);
652 return bt2s::nullopt;
653 }
654
655 ctf_fs_ds_index_entry index_entry {file_info->path, currentPacketOffset, currentPacketSize};
656
657 int ret = init_index_entry(index_entry, ds_file, &props);
658 if (ret) {
659 return bt2s::nullopt;
660 }
661
662 index.entries.emplace_back(index_entry);
663
664 currentPacketOffset += currentPacketSize;
665 BT_CPPLOGD_SPEC(ds_file->logger,
666 "Seeking to next packet: current-packet-offset-bytes={}, "
667 "next-packet-offset-bytes={}",
668 (currentPacketOffset - currentPacketSize).bytes(),
669 currentPacketOffset.bytes());
670 }
671
672 return index;
673 }
674
675 ctf_fs_ds_file::UP ctf_fs_ds_file_create(struct ctf_fs_trace *ctf_fs_trace,
676 bt2::Stream::Shared stream, const char *path,
677 const bt2c::Logger& parentLogger)
678 {
679 auto ds_file = bt2s::make_unique<ctf_fs_ds_file>(parentLogger);
680
681 ds_file->file = bt2s::make_unique<ctf_fs_file>(parentLogger);
682 ds_file->stream = std::move(stream);
683 ds_file->metadata = ctf_fs_trace->metadata.get();
684 ds_file->file->path = path;
685 int ret = ctf_fs_file_open(ds_file->file.get(), "rb");
686 if (ret) {
687 return nullptr;
688 }
689
690 const size_t offset_align =
691 bt_mmap_get_offset_align_size(static_cast<int>(ds_file->logger.level()));
692 ds_file->mmap_max_len = offset_align * 2048;
693
694 return ds_file;
695 }
696
697 bt2s::optional<ctf_fs_ds_index> ctf_fs_ds_file_build_index(struct ctf_fs_ds_file *ds_file,
698 struct ctf_fs_ds_file_info *file_info,
699 struct ctf_msg_iter *msg_iter)
700 {
701 auto index = build_index_from_idx_file(ds_file, file_info, msg_iter);
702 if (index) {
703 return index;
704 }
705
706 BT_CPPLOGI_SPEC(ds_file->logger, "Failed to build index from .index file; "
707 "falling back to stream indexing.");
708 return build_index_from_stream_file(ds_file, file_info, msg_iter);
709 }
710
711 ctf_fs_ds_file::~ctf_fs_ds_file()
712 {
713 (void) ds_file_munmap(this);
714 }
715
716 ctf_fs_ds_file_info::UP ctf_fs_ds_file_info_create(const char *path, int64_t begin_ns)
717 {
718 ctf_fs_ds_file_info::UP ds_file_info = bt2s::make_unique<ctf_fs_ds_file_info>();
719
720 ds_file_info->path = path;
721 ds_file_info->begin_ns = begin_ns;
722 return ds_file_info;
723 }
724
725 void ctf_fs_ds_file_group::insert_ds_file_info_sorted(ctf_fs_ds_file_info::UP ds_file_info)
726 {
727 /* Find the spot where to insert this ds_file_info. */
728 auto it = this->ds_file_infos.begin();
729
730 for (; it != this->ds_file_infos.end(); ++it) {
731 const ctf_fs_ds_file_info& other_ds_file_info = **it;
732
733 if (ds_file_info->begin_ns < other_ds_file_info.begin_ns) {
734 break;
735 }
736 }
737
738 this->ds_file_infos.insert(it, std::move(ds_file_info));
739 }
This page took 0.044656 seconds and 4 git commands to generate.