src.ctf.fs: make trace-info query accept clock-class-offset-{s,ns} parameters
[babeltrace.git] / 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>
f3bc2010 32#include <babeltrace/babeltrace-internal.h>
e0831b38 33#include <babeltrace/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 {
1a9f7075 42 /* Owned by this */
56a1cced 43 GString *path;
1a9f7075
PP
44
45 /* Owned by this */
56a1cced 46 FILE *fp;
1a9f7075 47
56a1cced
JG
48 off_t size;
49};
50
51struct ctf_fs_metadata {
7b33a0e0
PP
52 /* Owned by this */
53 struct ctf_metadata_decoder *decoder;
54
1a9f7075 55 /* Owned by this */
8eee8ea2 56 bt_trace_class *trace_class;
1a9f7075 57
7b33a0e0
PP
58 /* Weak (owned by `decoder` above) */
59 struct ctf_trace_class *tc;
60
61 /* Owned by this */
62
1a9f7075
PP
63 /* Owned by this */
64 char *text;
65
56a1cced 66 int bo;
56a1cced
JG
67};
68
ea0b4b9e 69struct ctf_fs_component {
94cf822e 70 /* Weak, guaranteed to exist */
8eee8ea2 71 bt_self_component_source *self_comp;
1a9f7075
PP
72
73 /* Array of struct ctf_fs_port_data *, owned by this */
74 GPtrArray *port_data;
75
76 /* Array of struct ctf_fs_trace *, owned by this */
77 GPtrArray *traces;
78
53ac3428 79 struct ctf_fs_metadata_config metadata_config;
1a9f7075
PP
80};
81
82struct ctf_fs_trace {
1a9f7075 83 /* Owned by this */
5b29e799 84 struct ctf_fs_metadata *metadata;
1a9f7075 85
10b7a2e4 86 /* Owned by this */
8eee8ea2 87 bt_trace *trace;
10b7a2e4 88
94cf822e
PP
89 /* Array of struct ctf_fs_ds_file_group *, owned by this */
90 GPtrArray *ds_file_groups;
91
1a9f7075
PP
92 /* Owned by this */
93 GString *path;
94
95 /* Owned by this */
96 GString *name;
8deee039
PP
97
98 /* Next automatic stream ID when not provided by packet header */
99 uint64_t next_stream_id;
1a9f7075
PP
100};
101
94cf822e
PP
102struct ctf_fs_ds_file_group {
103 /*
104 * Array of struct ctf_fs_ds_file_info, owned by this.
105 *
106 * This is an _ordered_ array of data stream file infos which
107 * belong to this group (a single stream instance).
108 *
109 * You can call ctf_fs_ds_file_create() with one of those paths
108b91d0 110 * and the trace IR stream below.
94cf822e
PP
111 */
112 GPtrArray *ds_file_infos;
113
d09752f8 114 /* Owned by this */
28faa416 115 struct ctf_stream_class *sc;
d09752f8 116
1a9f7075 117 /* Owned by this */
8eee8ea2 118 bt_stream *stream;
1a9f7075 119
d09752f8
PP
120 /* Stream (instance) ID; -1ULL means none */
121 uint64_t stream_id;
122
94cf822e 123 /* Weak, belongs to component */
1a9f7075 124 struct ctf_fs_trace *ctf_fs_trace;
ea0b4b9e
JG
125};
126
94cf822e
PP
127struct ctf_fs_port_data {
128 /* Weak, belongs to ctf_fs_trace */
129 struct ctf_fs_ds_file_group *ds_file_group;
f7c3ac09
PP
130
131 /* Weak */
132 struct ctf_fs_component *ctf_fs;
94cf822e
PP
133};
134
b09a5592 135struct ctf_fs_msg_iter_data {
f7c3ac09 136 /* Weak */
b09a5592 137 bt_self_message_iterator *pc_msg_iter;
f7c3ac09 138
94cf822e
PP
139 /* Weak, belongs to ctf_fs_trace */
140 struct ctf_fs_ds_file_group *ds_file_group;
141
142 /* Owned by this */
143 struct ctf_fs_ds_file *ds_file;
144
145 /* Which file the iterator is _currently_ operating on */
146 size_t ds_file_info_index;
55fa6491
PP
147
148 /* Owned by this */
b09a5592 149 struct bt_msg_iter *msg_iter;
94cf822e
PP
150};
151
f3bc2010 152BT_HIDDEN
ee78f405 153bt_self_component_status ctf_fs_init(
8eee8ea2
PP
154 bt_self_component_source *source,
155 const bt_value *params, void *init_method_data);
490db841 156
d3e4dcd8 157BT_HIDDEN
8eee8ea2 158void ctf_fs_finalize(bt_self_component_source *component);
d3e4dcd8 159
55314f2a 160BT_HIDDEN
ee78f405 161bt_query_status ctf_fs_query(
8eee8ea2
PP
162 bt_self_component_class_source *comp_class,
163 const bt_query_executor *query_exec,
164 const char *object, const bt_value *params,
165 const bt_value **result);
55314f2a 166
97ade20b 167BT_HIDDEN
ee78f405 168bt_self_message_iterator_status ctf_fs_iterator_init(
b09a5592 169 bt_self_message_iterator *self_msg_iter,
8eee8ea2
PP
170 bt_self_component_source *self_comp,
171 bt_self_component_port_output *self_port);
834e9996 172
97ade20b 173BT_HIDDEN
b09a5592 174void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
d3eb6e8f 175
97ade20b 176BT_HIDDEN
ee78f405 177bt_self_message_iterator_status ctf_fs_iterator_next(
b09a5592
PP
178 bt_self_message_iterator *iterator,
179 bt_message_array_const msgs, uint64_t capacity,
3fd7b79d 180 uint64_t *count);
d3eb6e8f 181
a02839ae
PP
182BT_HIDDEN
183bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
184 bt_self_message_iterator *message_iterator);
185
bf5b7748
SM
186/* Create and initialize a new, empty ctf_fs_component. */
187
188BT_HIDDEN
189struct ctf_fs_component *ctf_fs_component_create(void);
190
191/*
192 * Search recursively under all paths in `paths_value` (an array of strings),
193 * for CTF traces. For each CTF trace found, create a ctf_fs_trace in
194 * `ctf_fs` representing that trace.
195 */
196
197BT_HIDDEN
198int ctf_fs_component_create_ctf_fs_traces(bt_self_component_source *self_comp,
199 struct ctf_fs_component *ctf_fs,
200 const bt_value *paths_value);
201
202/* Free `ctf_fs` and everything it owns. */
203
204BT_HIDDEN
205void ctf_fs_destroy(struct ctf_fs_component *ctf_fs);
206
c80d4c65
SM
207/*
208 * Read and validate parameters taken by the src.ctf.fs plugin.
209 *
210 * - The mandatory `paths` parameter is returned in `*paths`.
211 * - The optional `clock-class-offset-s` and `clock-class-offset-ns`, if
212 * present, are recorded in the `ctf_fs` structure.
213 *
214 * Return true on success, false if any parameter didn't pass validation.
215 */
bf5b7748
SM
216
217BT_HIDDEN
c80d4c65
SM
218bool read_src_fs_parameters(const bt_value *params,
219 const bt_value **paths, struct ctf_fs_component *ctf_fs);
bf5b7748 220
541b0a11 221#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.050994 seconds and 4 git commands to generate.