cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.hpp
CommitLineData
e98a2d6e 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
e98a2d6e 3 *
0235b0db 4 * Copyright (C) 2016 Philippe Proulx <pproulx@efficios.com>
e98a2d6e
PP
5 */
6
0235b0db
MJ
7#ifndef CTF_FS_DS_FILE_H
8#define CTF_FS_DS_FILE_H
9
fe2e19c4 10#include <memory>
4d199954 11#include <string>
f3d74124 12#include <vector>
fe2e19c4 13
e98a2d6e 14#include <glib.h>
c802cacb
SM
15#include <stdio.h>
16
3fadfbc0 17#include <babeltrace2/babeltrace.h>
e98a2d6e 18
be215bcd 19#include "cpp-common/bt2/trace-ir.hpp"
873c329a 20#include "cpp-common/bt2c/data-len.hpp"
0f5c5d5c
SM
21#include "cpp-common/bt2c/logging.hpp"
22
5656cea5 23#include "../common/src/msg-iter/msg-iter.hpp"
c44dc433 24#include "file.hpp"
b6c3dcb2 25
4164020e
SM
26struct ctf_fs_ds_file_info
27{
2cef6403
SM
28 using UP = std::unique_ptr<ctf_fs_ds_file_info>;
29
4d199954 30 std::string path;
97ade20b 31
4164020e 32 /* Guaranteed to be set, as opposed to the index. */
afb0f12b 33 int64_t begin_ns = 0;
97ade20b
JG
34};
35
4164020e
SM
36struct ctf_fs_ds_file
37{
89f88383
SM
38 using UP = std::unique_ptr<ctf_fs_ds_file>;
39
0f5c5d5c
SM
40 explicit ctf_fs_ds_file(const bt2c::Logger& parentLogger) :
41 logger {parentLogger, "PLUGIN/SRC.CTF.FS/DS"}
42 {
43 }
98903a3e 44
3199f1ba
SM
45 ctf_fs_ds_file(const ctf_fs_ds_file&) = delete;
46 ctf_fs_ds_file& operator=(const ctf_fs_ds_file&) = delete;
47 ~ctf_fs_ds_file();
48
0f5c5d5c 49 bt2c::Logger logger;
4c65a157 50
4164020e 51 /* Weak */
afb0f12b 52 struct ctf_fs_metadata *metadata = nullptr;
5c563278 53
c44dc433 54 ctf_fs_file::UP file;
97ade20b 55
265d4ba2 56 bt2::Stream::Shared stream;
97ade20b 57
afb0f12b 58 void *mmap_addr = nullptr;
97ade20b 59
4164020e
SM
60 /*
61 * Max length of chunk to mmap() when updating the current mapping.
62 * This value must be page-aligned.
63 */
afb0f12b 64 size_t mmap_max_len = 0;
97ade20b 65
4164020e 66 /* Length of the current mapping. Never exceeds the file's length. */
afb0f12b 67 size_t mmap_len = 0;
97ade20b 68
4164020e 69 /* Offset in the file where the current mapping starts. */
afb0f12b 70 off_t mmap_offset_in_file = 0;
97ade20b 71
4164020e
SM
72 /*
73 * Offset, in the current mapping, of the address to return on the next
74 * request.
75 */
afb0f12b 76 off_t request_offset_in_mapping = 0;
b6c3dcb2 77};
e98a2d6e 78
873c329a
SM
79struct ctf_fs_ds_index_entry
80{
f9b673b0
SM
81 ctf_fs_ds_index_entry(const bt2c::CStringView pathParam, const bt2c::DataLen offsetParam,
82 const bt2c::DataLen packetSizeParam) noexcept :
83 path {pathParam},
84 offset {offsetParam}, packetSize {packetSizeParam}
873c329a
SM
85 {
86 }
87
88 /* Weak, belongs to ctf_fs_ds_file_info. */
f9b673b0 89 const char *path;
873c329a
SM
90
91 /* Position of the packet from the beginning of the file. */
92 bt2c::DataLen offset;
93
94 /* Size of the packet. */
95 bt2c::DataLen packetSize;
96
97 /*
98 * Extracted from the packet context, relative to the respective fields'
99 * mapped clock classes (in cycles).
100 */
101 uint64_t timestamp_begin = 0, timestamp_end = 0;
102
103 /*
104 * Converted from the packet context, relative to the trace's EPOCH
105 * (in ns since EPOCH).
106 */
107 int64_t timestamp_begin_ns = 0, timestamp_end_ns = 0;
108
109 /*
110 * Packet sequence number, or UINT64_MAX if not present in the index.
111 */
8bcfc7d7 112 uint64_t packet_seq_num = UINT64_MAX;
873c329a
SM
113};
114
115struct ctf_fs_ds_index
116{
0011731e 117 std::vector<ctf_fs_ds_index_entry> entries;
873c329a
SM
118};
119
120struct ctf_fs_ds_file_group
121{
235f9fd9 122 using UP = std::unique_ptr<ctf_fs_ds_file_group>;
fe2e19c4 123
86c82636
SM
124 explicit ctf_fs_ds_file_group(struct ctf_fs_trace * const trace,
125 ctf_stream_class * const scParam, const uint64_t streamInstanceId,
126 ctf_fs_ds_index indexParam) noexcept :
127
128 sc {scParam},
129 stream_id(streamInstanceId), ctf_fs_trace {trace}, index {std::move(indexParam)}
130
131 {
132 }
133
1cb63a52
SM
134 /*
135 * Insert ds_file_info in the list of ds_file_infos at the right
136 * place to keep it sorted.
137 */
138 void insert_ds_file_info_sorted(ctf_fs_ds_file_info::UP ds_file_info);
139
873c329a 140 /*
873c329a
SM
141 * This is an _ordered_ array of data stream file infos which
142 * belong to this group (a single stream instance).
143 *
144 * You can call ctf_fs_ds_file_create() with one of those paths
145 * and the trace IR stream below.
146 */
f3d74124 147 std::vector<ctf_fs_ds_file_info::UP> ds_file_infos;
873c329a
SM
148
149 /* Owned by this */
150 struct ctf_stream_class *sc = nullptr;
151
be215bcd 152 bt2::Stream::Shared stream;
873c329a
SM
153
154 /* Stream (instance) ID; -1ULL means none */
155 uint64_t stream_id = 0;
156
157 /* Weak, belongs to component */
158 struct ctf_fs_trace *ctf_fs_trace = nullptr;
159
c46b32d8 160 ctf_fs_ds_index index;
873c329a
SM
161};
162
89f88383
SM
163ctf_fs_ds_file::UP ctf_fs_ds_file_create(ctf_fs_trace *ctf_fs_trace, bt2::Stream::Shared stream,
164 const char *path, const bt2c::Logger& logger);
e98a2d6e 165
c46b32d8
SM
166bt2s::optional<ctf_fs_ds_index> ctf_fs_ds_file_build_index(struct ctf_fs_ds_file *ds_file,
167 struct ctf_fs_ds_file_info *ds_file_info,
168 struct ctf_msg_iter *msg_iter);
97ade20b 169
2cef6403 170ctf_fs_ds_file_info::UP ctf_fs_ds_file_info_create(const char *path, int64_t begin_ns);
873c329a 171
f6e68e70
SM
172/*
173 * Medium operations to iterate on a single ctf_fs_ds_file.
174 *
175 * The data pointer when using this must be a pointer to the ctf_fs_ds_file.
176 */
18a1979b 177extern struct ctf_msg_iter_medium_ops ctf_fs_ds_file_medops;
6de92955 178
f6e68e70
SM
179/*
180 * Medium operations to iterate on the packet of a ctf_fs_ds_group.
181 *
182 * The iteration is done based on the index of the group.
183 *
184 * The data pointer when using these medops must be a pointer to a ctf_fs_ds
185 * group_medops_data structure.
186 */
187extern struct ctf_msg_iter_medium_ops ctf_fs_ds_group_medops;
188
3cf88182
SM
189struct ctf_fs_ds_group_medops_data_deleter
190{
191 void operator()(struct ctf_fs_ds_group_medops_data *data) noexcept;
192};
193
194using ctf_fs_ds_group_medops_data_up =
195 std::unique_ptr<ctf_fs_ds_group_medops_data, ctf_fs_ds_group_medops_data_deleter>;
196
197enum ctf_msg_iter_medium_status
198ctf_fs_ds_group_medops_data_create(struct ctf_fs_ds_file_group *ds_file_group,
199 bt_self_message_iterator *self_msg_iter,
200 const bt2c::Logger& logger, ctf_fs_ds_group_medops_data_up& out);
f6e68e70 201
f6e68e70
SM
202void ctf_fs_ds_group_medops_data_reset(struct ctf_fs_ds_group_medops_data *data);
203
94cf822e 204#endif /* CTF_FS_DS_FILE_H */
This page took 0.122286 seconds and 4 git commands to generate.