lib: introduce bt_message_iterator_class
[babeltrace.git] / src / plugins / ctf / fs-src / fs.h
CommitLineData
541b0a11
JG
1#ifndef BABELTRACE_PLUGIN_CTF_FS_H
2#define BABELTRACE_PLUGIN_CTF_FS_H
490db841
JG
3
4/*
6a29d9fd 5 * BabelTrace - CTF on File System Component
490db841 6 *
f3bc2010 7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
56a1cced 8 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
490db841
JG
9 *
10 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 */
30
c55a9f58 31#include <stdbool.h>
91d81473 32#include "common/macros.h"
3fadfbc0 33#include <babeltrace2/babeltrace.h>
94cf822e 34#include "data-stream-file.h"
97ade20b 35#include "metadata.h"
44c440bc 36#include "../common/metadata/decoder.h"
490db841 37
78bb6992
MD
38BT_HIDDEN
39extern bool ctf_fs_debug;
56a1cced
JG
40
41struct ctf_fs_file {
98903a3e
PP
42 bt_logging_level log_level;
43
4c65a157
PP
44 /* Weak */
45 bt_self_component *self_comp;
46
1a9f7075 47 /* Owned by this */
56a1cced 48 GString *path;
1a9f7075
PP
49
50 /* Owned by this */
56a1cced 51 FILE *fp;
1a9f7075 52
56a1cced
JG
53 off_t size;
54};
55
56struct ctf_fs_metadata {
44c440bc
PP
57 /* Owned by this */
58 struct ctf_metadata_decoder *decoder;
59
1a9f7075 60 /* Owned by this */
b19ff26f 61 bt_trace_class *trace_class;
1a9f7075 62
44c440bc
PP
63 /* Weak (owned by `decoder` above) */
64 struct ctf_trace_class *tc;
65
1a9f7075
PP
66 /* Owned by this */
67 char *text;
68
56a1cced 69 int bo;
56a1cced
JG
70};
71
ea0b4b9e 72struct ctf_fs_component {
98903a3e
PP
73 bt_logging_level log_level;
74
1a9f7075
PP
75 /* Array of struct ctf_fs_port_data *, owned by this */
76 GPtrArray *port_data;
77
a0cd55ad
SM
78 /* Owned by this */
79 struct ctf_fs_trace *trace;
1a9f7075 80
a2a54545 81 struct ctf_fs_metadata_config metadata_config;
1a9f7075
PP
82};
83
84struct ctf_fs_trace {
98903a3e
PP
85 bt_logging_level log_level;
86
b7d2695a
SM
87 /*
88 * Weak. These are mostly used to generate log messages or to append
aad00638 89 * error causes. They are mutually exclusive, only one of them must be
b7d2695a
SM
90 * set.
91 */
4c65a157 92 bt_self_component *self_comp;
b7d2695a 93 bt_self_component_class *self_comp_class;
4c65a157 94
1a9f7075 95 /* Owned by this */
5b29e799 96 struct ctf_fs_metadata *metadata;
1a9f7075 97
862ca4ed 98 /* Owned by this */
b19ff26f 99 bt_trace *trace;
862ca4ed 100
94cf822e
PP
101 /* Array of struct ctf_fs_ds_file_group *, owned by this */
102 GPtrArray *ds_file_groups;
103
1a9f7075
PP
104 /* Owned by this */
105 GString *path;
106
3dca2276
PP
107 /* Next automatic stream ID when not provided by packet header */
108 uint64_t next_stream_id;
1a9f7075
PP
109};
110
7ed5243a 111struct ctf_fs_ds_index_entry {
bf012bde
FD
112 /* Weak, belongs to ctf_fs_ds_file_info. */
113 const char *path;
114
7ed5243a
FD
115 /* Position, in bytes, of the packet from the beginning of the file. */
116 uint64_t offset;
117
118 /* Size of the packet, in bytes. */
119 uint64_t packet_size;
120
121 /*
122 * Extracted from the packet context, relative to the respective fields'
123 * mapped clock classes (in cycles).
124 */
125 uint64_t timestamp_begin, timestamp_end;
126
127 /*
128 * Converted from the packet context, relative to the trace's EPOCH
129 * (in ns since EPOCH).
130 */
131 int64_t timestamp_begin_ns, timestamp_end_ns;
6834784d
SM
132
133 /*
134 * Packet sequence number, or UINT64_MAX if not present in the index.
135 */
136 uint64_t packet_seq_num;
7ed5243a
FD
137};
138
139struct ctf_fs_ds_index {
ce75de14 140 /* Array of pointer to struct ctf_fs_ds_index_entry. */
7ed5243a
FD
141 GPtrArray *entries;
142};
143
94cf822e
PP
144struct ctf_fs_ds_file_group {
145 /*
146 * Array of struct ctf_fs_ds_file_info, owned by this.
147 *
148 * This is an _ordered_ array of data stream file infos which
149 * belong to this group (a single stream instance).
150 *
151 * You can call ctf_fs_ds_file_create() with one of those paths
56e18c4c 152 * and the trace IR stream below.
94cf822e
PP
153 */
154 GPtrArray *ds_file_infos;
155
547eacf1 156 /* Owned by this */
60363f2f 157 struct ctf_stream_class *sc;
547eacf1 158
1a9f7075 159 /* Owned by this */
b19ff26f 160 bt_stream *stream;
1a9f7075 161
547eacf1
PP
162 /* Stream (instance) ID; -1ULL means none */
163 uint64_t stream_id;
164
94cf822e 165 /* Weak, belongs to component */
1a9f7075 166 struct ctf_fs_trace *ctf_fs_trace;
7ed5243a
FD
167
168 /*
29a8227a 169 * Owned by this.
7ed5243a
FD
170 */
171 struct ctf_fs_ds_index *index;
ea0b4b9e
JG
172};
173
94cf822e
PP
174struct ctf_fs_port_data {
175 /* Weak, belongs to ctf_fs_trace */
176 struct ctf_fs_ds_file_group *ds_file_group;
5c563278
PP
177
178 /* Weak */
179 struct ctf_fs_component *ctf_fs;
94cf822e
PP
180};
181
d6e69534 182struct ctf_fs_msg_iter_data {
98903a3e
PP
183 bt_logging_level log_level;
184
4c65a157
PP
185 /* Weak */
186 bt_self_component *self_comp;
187
5c563278 188 /* Weak */
f30762e5 189 bt_self_message_iterator *self_msg_iter;
5c563278 190
94cf822e
PP
191 /* Weak, belongs to ctf_fs_trace */
192 struct ctf_fs_ds_file_group *ds_file_group;
193
6de92955 194 /* Owned by this */
18a1979b 195 struct ctf_msg_iter *msg_iter;
cbca1c06
SM
196
197 /*
198 * Saved error. If we hit an error in the _next method, but have some
199 * messages ready to return, we save the error here and return it on
200 * the next _next call.
201 */
a3f0c7db 202 bt_message_iterator_class_next_method_status next_saved_status;
cbca1c06 203 const struct bt_error *next_saved_error;
f6e68e70
SM
204
205 struct ctf_fs_ds_group_medops_data *msg_iter_medops_data;
94cf822e
PP
206};
207
f3bc2010 208BT_HIDDEN
21a9f056 209bt_component_class_initialize_method_status ctf_fs_init(
b19ff26f 210 bt_self_component_source *source,
59225a3e 211 bt_self_component_source_configuration *config,
b19ff26f 212 const bt_value *params, void *init_method_data);
490db841 213
d3e4dcd8 214BT_HIDDEN
b19ff26f 215void ctf_fs_finalize(bt_self_component_source *component);
d3e4dcd8 216
55314f2a 217BT_HIDDEN
d24d5663 218bt_component_class_query_method_status ctf_fs_query(
b19ff26f 219 bt_self_component_class_source *comp_class,
3c729b9a 220 bt_private_query_executor *priv_query_exec,
b19ff26f 221 const char *object, const bt_value *params,
7c14d641 222 void *method_data, const bt_value **result);
55314f2a 223
97ade20b 224BT_HIDDEN
a3f0c7db 225bt_message_iterator_class_initialize_method_status ctf_fs_iterator_init(
d6e69534 226 bt_self_message_iterator *self_msg_iter,
8d8b141d 227 bt_self_message_iterator_configuration *config,
a3f0c7db 228 bt_self_component *self_comp,
b19ff26f 229 bt_self_component_port_output *self_port);
d94d92ac 230
97ade20b 231BT_HIDDEN
d6e69534 232void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
d3eb6e8f 233
97ade20b 234BT_HIDDEN
a3f0c7db 235bt_message_iterator_class_next_method_status ctf_fs_iterator_next(
d6e69534
PP
236 bt_self_message_iterator *iterator,
237 bt_message_array_const msgs, uint64_t capacity,
d4393e08 238 uint64_t *count);
d3eb6e8f 239
6a9bb5e9 240BT_HIDDEN
a3f0c7db 241bt_message_iterator_class_seek_beginning_method_status ctf_fs_iterator_seek_beginning(
6a9bb5e9
PP
242 bt_self_message_iterator *message_iterator);
243
f280892e
SM
244/* Create and initialize a new, empty ctf_fs_component. */
245
246BT_HIDDEN
4c65a157
PP
247struct ctf_fs_component *ctf_fs_component_create(bt_logging_level log_level,
248 bt_self_component *self_comp);
f280892e
SM
249
250/*
a0cd55ad
SM
251 * Create one `struct ctf_fs_trace` from one trace, or multiple traces sharing
252 * the same UUID.
253 *
254 * `paths_value` must be an array of strings,
255 *
256 * The created `struct ctf_fs_trace` is assigned to `ctf_fs->trace`.
d23b766e
SM
257 *
258 * `self_comp` and `self_comp_class` are used for logging, only one of them
259 * should be set.
f280892e
SM
260 */
261
262BT_HIDDEN
a0cd55ad 263int ctf_fs_component_create_ctf_fs_trace(
f280892e 264 struct ctf_fs_component *ctf_fs,
d23b766e 265 const bt_value *paths_value,
005d49d6 266 const bt_value *trace_name_value,
d23b766e
SM
267 bt_self_component *self_comp,
268 bt_self_component_class *self_comp_class);
f280892e
SM
269
270/* Free `ctf_fs` and everything it owns. */
271
272BT_HIDDEN
273void ctf_fs_destroy(struct ctf_fs_component *ctf_fs);
274
d907165c
SM
275/*
276 * Read and validate parameters taken by the src.ctf.fs plugin.
277 *
278 * - The mandatory `paths` parameter is returned in `*paths`.
279 * - The optional `clock-class-offset-s` and `clock-class-offset-ns`, if
280 * present, are recorded in the `ctf_fs` structure.
005d49d6
SM
281 * - The optional `trace-name` parameter is returned in `*trace_name` if
282 * present, else `*trace_name` is set to NULL.
d907165c 283 *
d23b766e
SM
284 * `self_comp` and `self_comp_class` are used for logging, only one of them
285 * should be set.
286 *
d907165c
SM
287 * Return true on success, false if any parameter didn't pass validation.
288 */
f280892e
SM
289
290BT_HIDDEN
d907165c 291bool read_src_fs_parameters(const bt_value *params,
005d49d6
SM
292 const bt_value **paths,
293 const bt_value **trace_name,
294 struct ctf_fs_component *ctf_fs,
d23b766e
SM
295 bt_self_component *self_comp,
296 bt_self_component_class *self_comp_class);
f280892e 297
a38d7650
SM
298/*
299 * Generate the port name to be used for a given data stream file group.
300 *
301 * The result must be freed using g_free by the caller.
302 */
303
304BT_HIDDEN
305gchar *ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group);
306
541b0a11 307#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.081363 seconds and 4 git commands to generate.