src.ctf.fs: remove ctf_fs_trace_destroy
[babeltrace.git] / src / plugins / ctf / fs-src / fs.hpp
CommitLineData
490db841 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
490db841 3 *
f3bc2010 4 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
56a1cced 5 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
490db841 6 *
0235b0db 7 * BabelTrace - CTF on File System Component
490db841
JG
8 */
9
0235b0db
MJ
10#ifndef BABELTRACE_PLUGIN_CTF_FS_H
11#define BABELTRACE_PLUGIN_CTF_FS_H
12
c7e1be4b 13#include <glib.h>
c802cacb 14
c7e1be4b 15#include <babeltrace2/babeltrace.h>
c802cacb 16
49b956cc 17#include "cpp-common/bt2c/glib-up.hpp"
0f5c5d5c
SM
18#include "cpp-common/bt2c/logging.hpp"
19
cdf7de78 20#include "data-stream-file.hpp"
1fa280c9 21#include "plugins/ctf/common/src/metadata/tsdl/decoder.hpp"
490db841 22
78bb6992 23extern bool ctf_fs_debug;
56a1cced 24
4164020e
SM
25struct ctf_fs_metadata
26{
2dba3a29
SM
27 using UP = std::unique_ptr<ctf_fs_metadata>;
28
4164020e 29 /* Owned by this */
1fa280c9 30 ctf_metadata_decoder_up decoder;
44c440bc 31
ded1f3d6 32 bt2::TraceClass::Shared trace_class;
1a9f7075 33
4164020e 34 /* Weak (owned by `decoder` above) */
afb0f12b 35 struct ctf_trace_class *tc = nullptr;
44c440bc 36
afb0f12b 37 int bo = 0;
56a1cced
JG
38};
39
4164020e
SM
40struct ctf_fs_trace
41{
e001dd28 42 using UP = std::unique_ptr<ctf_fs_trace>;
7df773f2 43
0f5c5d5c
SM
44 explicit ctf_fs_trace(const bt2c::Logger& parentLogger) :
45 logger {parentLogger, "PLUGIN/SRC.CTF.FS/TRACE"}
46 {
47 }
98903a3e 48
0f5c5d5c 49 bt2c::Logger logger;
4c65a157 50
2dba3a29 51 ctf_fs_metadata::UP metadata;
1a9f7075 52
e44859b1 53 bt2::Trace::Shared trace;
862ca4ed 54
cdf7de78 55 std::vector<ctf_fs_ds_file_group::UP> ds_file_groups;
94cf822e 56
cee8a466 57 std::string path;
1a9f7075 58
4164020e 59 /* Next automatic stream ID when not provided by packet header */
afb0f12b 60 uint64_t next_stream_id = 0;
1a9f7075
PP
61};
62
09721481
SM
63struct ctf_fs_port_data
64{
945312a2
SM
65 using UP = std::unique_ptr<ctf_fs_port_data>;
66
09721481
SM
67 /* Weak, belongs to ctf_fs_trace */
68 struct ctf_fs_ds_file_group *ds_file_group = nullptr;
69
70 /* Weak */
71 struct ctf_fs_component *ctf_fs = nullptr;
72};
73
09721481
SM
74struct ctf_fs_component
75{
57ec0a35 76 using UP = std::unique_ptr<ctf_fs_component>;
09721481
SM
77
78 explicit ctf_fs_component(const bt2c::Logger& parentLogger) noexcept :
79 logger {parentLogger, "PLUGIN/SRC.CTF.FS/COMP"}
80 {
81 }
82
83 bt2c::Logger logger;
84
945312a2 85 std::vector<ctf_fs_port_data::UP> port_data;
09721481 86
7df773f2 87 ctf_fs_trace::UP trace;
09721481
SM
88
89 ctf::src::ClkClsCfg clkClsCfg;
90};
91
4164020e
SM
92struct ctf_fs_msg_iter_data
93{
adf452d1
SM
94 using UP = std::unique_ptr<ctf_fs_msg_iter_data>;
95
0f5c5d5c
SM
96 explicit ctf_fs_msg_iter_data(bt_self_message_iterator *selfMsgIter) :
97 self_msg_iter {selfMsgIter}, logger {bt2::SelfMessageIterator {self_msg_iter},
98 "PLUGIN/SRC.CTF.FS/MSG-ITER"}
99 {
100 }
4c65a157 101
4164020e 102 /* Weak */
afb0f12b 103 bt_self_message_iterator *self_msg_iter = nullptr;
5c563278 104
0f5c5d5c
SM
105 bt2c::Logger logger;
106
4164020e 107 /* Weak, belongs to ctf_fs_trace */
afb0f12b 108 struct ctf_fs_ds_file_group *ds_file_group = nullptr;
94cf822e 109
537fddc0 110 ctf_msg_iter_up msg_iter;
cbca1c06 111
4164020e
SM
112 /*
113 * Saved error. If we hit an error in the _next method, but have some
114 * messages ready to return, we save the error here and return it on
115 * the next _next call.
116 */
afb0f12b
SM
117 bt_message_iterator_class_next_method_status next_saved_status =
118 BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
119 const struct bt_error *next_saved_error = nullptr;
f6e68e70 120
3cf88182 121 ctf_fs_ds_group_medops_data_up msg_iter_medops_data;
94cf822e
PP
122};
123
4164020e
SM
124bt_component_class_initialize_method_status
125ctf_fs_init(bt_self_component_source *source, bt_self_component_source_configuration *config,
126 const bt_value *params, void *init_method_data);
490db841 127
b19ff26f 128void ctf_fs_finalize(bt_self_component_source *component);
d3e4dcd8 129
4164020e
SM
130bt_component_class_query_method_status ctf_fs_query(bt_self_component_class_source *comp_class,
131 bt_private_query_executor *priv_query_exec,
132 const char *object, const bt_value *params,
133 void *method_data, const bt_value **result);
55314f2a 134
4164020e
SM
135bt_message_iterator_class_initialize_method_status
136ctf_fs_iterator_init(bt_self_message_iterator *self_msg_iter,
137 bt_self_message_iterator_configuration *config,
138 bt_self_component_port_output *self_port);
d94d92ac 139
d6e69534 140void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
d3eb6e8f 141
4164020e
SM
142bt_message_iterator_class_next_method_status
143ctf_fs_iterator_next(bt_self_message_iterator *iterator, bt_message_array_const msgs,
144 uint64_t capacity, uint64_t *count);
d3eb6e8f 145
4164020e
SM
146bt_message_iterator_class_seek_beginning_method_status
147ctf_fs_iterator_seek_beginning(bt_self_message_iterator *message_iterator);
6a9bb5e9 148
f280892e
SM
149/* Create and initialize a new, empty ctf_fs_component. */
150
f340a3e8 151ctf_fs_component::UP ctf_fs_component_create(const bt2c::Logger& parentLogger);
f280892e
SM
152
153/*
a0cd55ad
SM
154 * Create one `struct ctf_fs_trace` from one trace, or multiple traces sharing
155 * the same UUID.
156 *
157 * `paths_value` must be an array of strings,
158 *
159 * The created `struct ctf_fs_trace` is assigned to `ctf_fs->trace`.
d23b766e
SM
160 *
161 * `self_comp` and `self_comp_class` are used for logging, only one of them
162 * should be set.
f280892e
SM
163 */
164
4164020e
SM
165int ctf_fs_component_create_ctf_fs_trace(struct ctf_fs_component *ctf_fs,
166 const bt_value *paths_value,
167 const bt_value *trace_name_value,
0f5c5d5c 168 bt_self_component *selfComp);
f280892e 169
d907165c
SM
170/*
171 * Read and validate parameters taken by the src.ctf.fs plugin.
172 *
173 * - The mandatory `paths` parameter is returned in `*paths`.
174 * - The optional `clock-class-offset-s` and `clock-class-offset-ns`, if
175 * present, are recorded in the `ctf_fs` structure.
005d49d6
SM
176 * - The optional `trace-name` parameter is returned in `*trace_name` if
177 * present, else `*trace_name` is set to NULL.
d907165c 178 *
d23b766e
SM
179 * `self_comp` and `self_comp_class` are used for logging, only one of them
180 * should be set.
181 *
d907165c
SM
182 * Return true on success, false if any parameter didn't pass validation.
183 */
f280892e 184
4164020e 185bool read_src_fs_parameters(const bt_value *params, const bt_value **paths,
0f5c5d5c 186 const bt_value **trace_name, struct ctf_fs_component *ctf_fs);
f280892e 187
a38d7650
SM
188/*
189 * Generate the port name to be used for a given data stream file group.
a38d7650
SM
190 */
191
49b956cc 192bt2c::GCharUP ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group);
a38d7650 193
541b0a11 194#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.113381 seconds and 4 git commands to generate.