40060c6a017d1dee1fce57d936dfd38b2d3310f9
[babeltrace.git] / plugins / ctf / fs-src / fs.h
1 #ifndef BABELTRACE_PLUGIN_CTF_FS_H
2 #define BABELTRACE_PLUGIN_CTF_FS_H
3
4 /*
5 * BabelTrace - CTF on File System Component
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
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
31 #include <stdbool.h>
32 #include <babeltrace/babeltrace-internal.h>
33 #include <babeltrace/babeltrace.h>
34 #include "data-stream-file.h"
35 #include "metadata.h"
36 #include "../common/metadata/decoder.h"
37
38 BT_HIDDEN
39 extern bool ctf_fs_debug;
40
41 struct ctf_fs_file {
42 /* Owned by this */
43 GString *path;
44
45 /* Owned by this */
46 FILE *fp;
47
48 off_t size;
49 };
50
51 struct ctf_fs_metadata {
52 /* Owned by this */
53 struct ctf_metadata_decoder *decoder;
54
55 /* Owned by this */
56 bt_trace_class *trace_class;
57
58 /* Weak (owned by `decoder` above) */
59 struct ctf_trace_class *tc;
60
61 /* Owned by this */
62
63 /* Owned by this */
64 char *text;
65
66 uint8_t uuid[16];
67 bool is_uuid_set;
68 int bo;
69 };
70
71 struct ctf_fs_component {
72 /* Weak, guaranteed to exist */
73 bt_self_component_source *self_comp;
74
75 /* Array of struct ctf_fs_port_data *, owned by this */
76 GPtrArray *port_data;
77
78 /* Array of struct ctf_fs_trace *, owned by this */
79 GPtrArray *traces;
80
81 struct ctf_fs_metadata_config metadata_config;
82 };
83
84 struct ctf_fs_trace {
85 /* Owned by this */
86 struct ctf_fs_metadata *metadata;
87
88 /* Owned by this */
89 bt_trace *trace;
90
91 /* Array of struct ctf_fs_ds_file_group *, owned by this */
92 GPtrArray *ds_file_groups;
93
94 /* Owned by this */
95 GString *path;
96
97 /* Owned by this */
98 GString *name;
99
100 /* Next automatic stream ID when not provided by packet header */
101 uint64_t next_stream_id;
102 };
103
104 struct ctf_fs_ds_file_group {
105 /*
106 * Array of struct ctf_fs_ds_file_info, owned by this.
107 *
108 * This is an _ordered_ array of data stream file infos which
109 * belong to this group (a single stream instance).
110 *
111 * You can call ctf_fs_ds_file_create() with one of those paths
112 * and the trace IR stream below.
113 */
114 GPtrArray *ds_file_infos;
115
116 /* Owned by this */
117 struct ctf_stream_class *sc;
118
119 /* Owned by this */
120 bt_stream *stream;
121
122 /* Stream (instance) ID; -1ULL means none */
123 uint64_t stream_id;
124
125 /* Weak, belongs to component */
126 struct ctf_fs_trace *ctf_fs_trace;
127 };
128
129 struct ctf_fs_port_data {
130 /* Weak, belongs to ctf_fs_trace */
131 struct ctf_fs_ds_file_group *ds_file_group;
132
133 /* Weak */
134 struct ctf_fs_component *ctf_fs;
135 };
136
137 struct ctf_fs_msg_iter_data {
138 /* Weak */
139 bt_self_message_iterator *pc_msg_iter;
140
141 /* Weak, belongs to ctf_fs_trace */
142 struct ctf_fs_ds_file_group *ds_file_group;
143
144 /* Owned by this */
145 struct ctf_fs_ds_file *ds_file;
146
147 /* Which file the iterator is _currently_ operating on */
148 size_t ds_file_info_index;
149
150 /* Owned by this */
151 struct bt_msg_iter *msg_iter;
152 };
153
154 BT_HIDDEN
155 bt_self_component_status ctf_fs_init(
156 bt_self_component_source *source,
157 const bt_value *params, void *init_method_data);
158
159 BT_HIDDEN
160 void ctf_fs_finalize(bt_self_component_source *component);
161
162 BT_HIDDEN
163 bt_query_status ctf_fs_query(
164 bt_self_component_class_source *comp_class,
165 const bt_query_executor *query_exec,
166 const char *object, const bt_value *params,
167 const bt_value **result);
168
169 BT_HIDDEN
170 struct ctf_fs_trace *ctf_fs_trace_create(bt_self_component_source *self_comp,
171 const char *path, const char *name,
172 struct ctf_fs_metadata_config *config);
173
174 BT_HIDDEN
175 void ctf_fs_trace_destroy(struct ctf_fs_trace *trace);
176
177 BT_HIDDEN
178 int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
179
180 BT_HIDDEN
181 GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
182
183 BT_HIDDEN
184 bt_self_message_iterator_status ctf_fs_iterator_init(
185 bt_self_message_iterator *self_msg_iter,
186 bt_self_component_source *self_comp,
187 bt_self_component_port_output *self_port);
188
189 BT_HIDDEN
190 void ctf_fs_iterator_finalize(bt_self_message_iterator *it);
191
192 BT_HIDDEN
193 bt_self_message_iterator_status ctf_fs_iterator_next(
194 bt_self_message_iterator *iterator,
195 bt_message_array_const msgs, uint64_t capacity,
196 uint64_t *count);
197
198 BT_HIDDEN
199 bt_self_message_iterator_status ctf_fs_iterator_seek_beginning(
200 bt_self_message_iterator *message_iterator);
201
202 #endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.032419 seconds and 3 git commands to generate.