1 #ifndef BABELTRACE_PLUGIN_CTF_FS_H
2 #define BABELTRACE_PLUGIN_CTF_FS_H
5 * BabelTrace - CTF on File System Component
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
10 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
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:
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
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
32 #include <babeltrace/babeltrace-internal.h>
33 #include <babeltrace/babeltrace.h>
34 #include "data-stream-file.h"
36 #include "../common/metadata/decoder.h"
39 extern bool ctf_fs_debug
;
51 struct ctf_fs_metadata
{
53 struct ctf_metadata_decoder
*decoder
;
56 struct bt_trace
*trace
;
58 /* Weak (owned by `decoder` above) */
59 struct ctf_trace_class
*tc
;
71 struct ctf_fs_component
{
72 /* Weak, guaranteed to exist */
73 struct bt_private_component
*priv_comp
;
75 /* Array of struct ctf_fs_port_data *, owned by this */
78 /* Array of struct ctf_fs_trace *, owned by this */
81 struct ctf_fs_metadata_config metadata_config
;
86 struct ctf_fs_metadata
*metadata
;
88 /* Array of struct ctf_fs_ds_file_group *, owned by this */
89 GPtrArray
*ds_file_groups
;
97 /* Next automatic stream ID when not provided by packet header */
98 uint64_t next_stream_id
;
101 struct ctf_fs_ds_file_group
{
103 * Array of struct ctf_fs_ds_file_info, owned by this.
105 * This is an _ordered_ array of data stream file infos which
106 * belong to this group (a single stream instance).
108 * You can call ctf_fs_ds_file_create() with one of those paths
109 * and the CTF IR stream below.
111 GPtrArray
*ds_file_infos
;
114 struct bt_stream_class
*stream_class
;
117 struct bt_stream
*stream
;
119 /* Stream (instance) ID; -1ULL means none */
122 /* Weak, belongs to component */
123 struct ctf_fs_trace
*ctf_fs_trace
;
126 struct ctf_fs_port_data
{
127 /* Weak, belongs to ctf_fs_trace */
128 struct ctf_fs_ds_file_group
*ds_file_group
;
131 struct ctf_fs_component
*ctf_fs
;
134 struct ctf_fs_notif_iter_data
{
136 struct bt_private_connection_private_notification_iterator
*pc_notif_iter
;
138 /* Weak, belongs to ctf_fs_trace */
139 struct ctf_fs_ds_file_group
*ds_file_group
;
142 struct ctf_fs_ds_file
*ds_file
;
144 /* Which file the iterator is _currently_ operating on */
145 size_t ds_file_info_index
;
148 struct bt_notif_iter
*notif_iter
;
150 /* True to skip BT_NOTIFICATION_TYPE_STREAM_BEGIN notifications */
151 bool skip_stream_begin_notifs
;
155 enum bt_component_status
ctf_fs_init(struct bt_private_component
*source
,
156 struct bt_value
*params
, void *init_method_data
);
159 void ctf_fs_finalize(struct bt_private_component
*component
);
162 struct bt_component_class_query_method_return
ctf_fs_query(
163 struct bt_component_class
*comp_class
,
164 struct bt_query_executor
*query_exec
,
165 const char *object
, struct bt_value
*params
);
168 struct ctf_fs_trace
*ctf_fs_trace_create(const char *path
, const char *name
,
169 struct ctf_fs_metadata_config
*config
, struct bt_graph
*graph
);
172 void ctf_fs_trace_destroy(struct ctf_fs_trace
*trace
);
175 int ctf_fs_find_traces(GList
**trace_paths
, const char *start_path
);
178 GList
*ctf_fs_create_trace_names(GList
*trace_paths
, const char *base_path
);
181 enum bt_notification_iterator_status
ctf_fs_iterator_init(
182 struct bt_private_connection_private_notification_iterator
*it
,
183 struct bt_private_port
*port
);
185 void ctf_fs_iterator_finalize(struct bt_private_connection_private_notification_iterator
*it
);
188 enum bt_notification_iterator_status
ctf_fs_iterator_next(
189 struct bt_private_connection_private_notification_iterator
*iterator
,
190 bt_notification_array notifs
, uint64_t capacity
,
193 #endif /* BABELTRACE_PLUGIN_CTF_FS_H */