Fix: src.ctf.fs: use BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE when applicable
[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>
85e7137b 32#include "common/macros.h"
71c5da58 33#include <babeltrace2/babeltrace.h>
94cf822e 34#include "data-stream-file.h"
97ade20b 35#include "metadata.h"
7b33a0e0 36#include "../common/metadata/decoder.h"
490db841 37
78bb6992
MD
38BT_HIDDEN
39extern bool ctf_fs_debug;
56a1cced
JG
40
41struct ctf_fs_file {
3d731ea9
PP
42 bt_logging_level log_level;
43
f67894f9
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 {
7b33a0e0
PP
57 /* Owned by this */
58 struct ctf_metadata_decoder *decoder;
59
1a9f7075 60 /* Owned by this */
8eee8ea2 61 bt_trace_class *trace_class;
1a9f7075 62
7b33a0e0
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 {
3d731ea9
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
aab89afc
SM
78 /* Owned by this */
79 struct ctf_fs_trace *trace;
1a9f7075 80
53ac3428 81 struct ctf_fs_metadata_config metadata_config;
1a9f7075
PP
82};
83
84struct ctf_fs_trace {
3d731ea9
PP
85 bt_logging_level log_level;
86
6699263d
SM
87 /*
88 * Weak. These are mostly used to generate log messages or to append
89 * error causes. They are mutually exclusive, only one of them must is
90 * set.
91 */
f67894f9 92 bt_self_component *self_comp;
6699263d 93 bt_self_component_class *self_comp_class;
f67894f9 94
1a9f7075 95 /* Owned by this */
5b29e799 96 struct ctf_fs_metadata *metadata;
1a9f7075 97
10b7a2e4 98 /* Owned by this */
8eee8ea2 99 bt_trace *trace;
10b7a2e4 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
8deee039
PP
107 /* Next automatic stream ID when not provided by packet header */
108 uint64_t next_stream_id;
1a9f7075
PP
109};
110
779f4a23 111struct ctf_fs_ds_index_entry {
13772304
FD
112 /* Weak, belongs to ctf_fs_ds_file_info. */
113 const char *path;
114
779f4a23
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;
132};
133
134struct ctf_fs_ds_index {
135 /* Array of pointer to struct ctf_fs_fd_index_entry. */
136 GPtrArray *entries;
137};
138
94cf822e
PP
139struct ctf_fs_ds_file_group {
140 /*
141 * Array of struct ctf_fs_ds_file_info, owned by this.
142 *
143 * This is an _ordered_ array of data stream file infos which
144 * belong to this group (a single stream instance).
145 *
146 * You can call ctf_fs_ds_file_create() with one of those paths
108b91d0 147 * and the trace IR stream below.
94cf822e
PP
148 */
149 GPtrArray *ds_file_infos;
150
d09752f8 151 /* Owned by this */
28faa416 152 struct ctf_stream_class *sc;
d09752f8 153
1a9f7075 154 /* Owned by this */
8eee8ea2 155 bt_stream *stream;
1a9f7075 156
d09752f8
PP
157 /* Stream (instance) ID; -1ULL means none */
158 uint64_t stream_id;
159
94cf822e 160 /* Weak, belongs to component */
1a9f7075 161 struct ctf_fs_trace *ctf_fs_trace;
779f4a23
FD
162
163 /*
164 * Owned by this. May be NULL.
165 *
166 * A stream cannot be assumed to be indexed as the indexing might have
167 * been skipped. Moreover, the index's fields may not all be available
168 * depending on the producer (e.g. timestamp_begin/end are not
169 * mandatory).
779f4a23
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;
f7c3ac09
PP
177
178 /* Weak */
179 struct ctf_fs_component *ctf_fs;
94cf822e
PP
180};
181
b09a5592 182struct ctf_fs_msg_iter_data {
3d731ea9
PP
183 bt_logging_level log_level;
184
f67894f9
PP
185 /* Weak */
186 bt_self_component *self_comp;
187
f7c3ac09 188 /* Weak */
b09a5592 189 bt_self_message_iterator *pc_msg_iter;
f7c3ac09 190
94cf822e
PP
191 /* Weak, belongs to ctf_fs_trace */
192 struct ctf_fs_ds_file_group *ds_file_group;
193
194 /* Owned by this */
195 struct ctf_fs_ds_file *ds_file;
196
197 /* Which file the iterator is _currently_ operating on */
198 size_t ds_file_info_index;
55fa6491
PP
199
200 /* Owned by this */
b09a5592 201 struct bt_msg_iter *msg_iter;
94cf822e
PP
202};
203
f3bc2010 204BT_HIDDEN
4175c1d5 205bt_component_class_initialize_method_status ctf_fs_init(
8eee8ea2 206 bt_self_component_source *source,
e3250e61 207 bt_self_component_source_configuration *config,
8eee8ea2 208 const bt_value *params, void *init_method_data);
490db841 209
d3e4dcd8 210BT_HIDDEN
8eee8ea2 211void ctf_fs_finalize(bt_self_component_source *component);
d3e4dcd8 212
55314f2a 213BT_HIDDEN
fb25b9e3 214bt_component_class_query_method_status ctf_fs_query(
8eee8ea2 215 bt_self_component_class_source *comp_class,
bf403eb2 216 bt_private_query_executor *priv_query_exec,
8eee8ea2 217 const char *object, const bt_value *params,
f6e305ce 218 void *method_data, const bt_value **result);
55314f2a 219
97ade20b 220BT_HIDDEN
4175c1d5 221bt_component_class_message_iterator_initialize_method_status ctf_fs_iterator_init(
b09a5592 222 bt_self_message_iterator *self_msg_iter,
9415de1c 223 bt_self_message_iterator_configuration *config,
8eee8ea2
PP
224 bt_self_component_source *self_comp,
225 bt_self_component_port_output *self_port);
834e9996 226
97ade20b 227BT_HIDDEN
b09a5592 228void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
d3eb6e8f 229
97ade20b 230BT_HIDDEN
fb25b9e3 231bt_component_class_message_iterator_next_method_status ctf_fs_iterator_next(
b09a5592
PP
232 bt_self_message_iterator *iterator,
233 bt_message_array_const msgs, uint64_t capacity,
3fd7b79d 234 uint64_t *count);
d3eb6e8f 235
a02839ae 236BT_HIDDEN
fb25b9e3 237bt_component_class_message_iterator_seek_beginning_method_status ctf_fs_iterator_seek_beginning(
a02839ae
PP
238 bt_self_message_iterator *message_iterator);
239
bf5b7748
SM
240/* Create and initialize a new, empty ctf_fs_component. */
241
242BT_HIDDEN
f67894f9
PP
243struct ctf_fs_component *ctf_fs_component_create(bt_logging_level log_level,
244 bt_self_component *self_comp);
bf5b7748
SM
245
246/*
aab89afc
SM
247 * Create one `struct ctf_fs_trace` from one trace, or multiple traces sharing
248 * the same UUID.
249 *
250 * `paths_value` must be an array of strings,
251 *
252 * The created `struct ctf_fs_trace` is assigned to `ctf_fs->trace`.
5c3441d8
SM
253 *
254 * `self_comp` and `self_comp_class` are used for logging, only one of them
255 * should be set.
bf5b7748
SM
256 */
257
258BT_HIDDEN
aab89afc 259int ctf_fs_component_create_ctf_fs_trace(
bf5b7748 260 struct ctf_fs_component *ctf_fs,
5c3441d8 261 const bt_value *paths_value,
c77d62f1 262 const bt_value *trace_name_value,
5c3441d8
SM
263 bt_self_component *self_comp,
264 bt_self_component_class *self_comp_class);
bf5b7748
SM
265
266/* Free `ctf_fs` and everything it owns. */
267
268BT_HIDDEN
269void ctf_fs_destroy(struct ctf_fs_component *ctf_fs);
270
c80d4c65
SM
271/*
272 * Read and validate parameters taken by the src.ctf.fs plugin.
273 *
274 * - The mandatory `paths` parameter is returned in `*paths`.
275 * - The optional `clock-class-offset-s` and `clock-class-offset-ns`, if
276 * present, are recorded in the `ctf_fs` structure.
c77d62f1
SM
277 * - The optional `trace-name` parameter is returned in `*trace_name` if
278 * present, else `*trace_name` is set to NULL.
c80d4c65 279 *
5c3441d8
SM
280 * `self_comp` and `self_comp_class` are used for logging, only one of them
281 * should be set.
282 *
c80d4c65
SM
283 * Return true on success, false if any parameter didn't pass validation.
284 */
bf5b7748
SM
285
286BT_HIDDEN
c80d4c65 287bool read_src_fs_parameters(const bt_value *params,
c77d62f1
SM
288 const bt_value **paths,
289 const bt_value **trace_name,
290 struct ctf_fs_component *ctf_fs,
5c3441d8
SM
291 bt_self_component *self_comp,
292 bt_self_component_class *self_comp_class);
bf5b7748 293
ddf49b27
SM
294/*
295 * Generate the port name to be used for a given data stream file group.
296 *
297 * The result must be freed using g_free by the caller.
298 */
299
300BT_HIDDEN
301gchar *ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group);
302
541b0a11 303#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.068273 seconds and 4 git commands to generate.