Add query executor
[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/graph/component.h>
34 #include <babeltrace/graph/clock-class-priority-map.h>
35 #include "data-stream-file.h"
36 #include "metadata.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 bt_ctf_trace *trace;
54
55 /* Owned by this */
56 char *text;
57
58 uint8_t uuid[16];
59 bool is_uuid_set;
60 int bo;
61 };
62
63 struct ctf_fs_component {
64 /* Weak, guaranteed to exist */
65 struct bt_private_component *priv_comp;
66
67 /* Array of struct ctf_fs_port_data *, owned by this */
68 GPtrArray *port_data;
69
70 /* Array of struct ctf_fs_trace *, owned by this */
71 GPtrArray *traces;
72
73 struct ctf_fs_metadata_config metadata_config;
74 };
75
76 struct ctf_fs_trace {
77 /* Owned by this */
78 struct ctf_fs_metadata *metadata;
79
80 /* Owned by this */
81 struct bt_clock_class_priority_map *cc_prio_map;
82
83 /* Array of struct ctf_fs_ds_file_group *, owned by this */
84 GPtrArray *ds_file_groups;
85
86 /* Owned by this */
87 GString *path;
88
89 /* Owned by this */
90 GString *name;
91 };
92
93 struct ctf_fs_ds_file_group {
94 /*
95 * Array of struct ctf_fs_ds_file_info, owned by this.
96 *
97 * This is an _ordered_ array of data stream file infos which
98 * belong to this group (a single stream instance).
99 *
100 * You can call ctf_fs_ds_file_create() with one of those paths
101 * and the CTF IR stream below.
102 */
103 GPtrArray *ds_file_infos;
104
105 /* Owned by this */
106 struct bt_ctf_stream_class *stream_class;
107
108 /* Owned by this */
109 struct bt_ctf_stream *stream;
110
111 /* Stream (instance) ID; -1ULL means none */
112 uint64_t stream_id;
113
114 /* Weak, belongs to component */
115 struct ctf_fs_trace *ctf_fs_trace;
116 };
117
118 struct ctf_fs_port_data {
119 /* Weak, belongs to ctf_fs_trace */
120 struct ctf_fs_ds_file_group *ds_file_group;
121 };
122
123 struct ctf_fs_notif_iter_data {
124 /* Weak, belongs to ctf_fs_trace */
125 struct ctf_fs_ds_file_group *ds_file_group;
126
127 /* Owned by this */
128 struct ctf_fs_ds_file *ds_file;
129
130 /* Which file the iterator is _currently_ operating on */
131 size_t ds_file_info_index;
132
133 /* Owned by this */
134 struct bt_ctf_notif_iter *notif_iter;
135 };
136
137 BT_HIDDEN
138 enum bt_component_status ctf_fs_init(struct bt_private_component *source,
139 struct bt_value *params, void *init_method_data);
140
141 BT_HIDDEN
142 void ctf_fs_finalize(struct bt_private_component *component);
143
144 BT_HIDDEN
145 struct bt_component_class_query_return ctf_fs_query(
146 struct bt_component_class *comp_class,
147 struct bt_query_executor *query_exec,
148 const char *object, struct bt_value *params);
149
150 BT_HIDDEN
151 struct ctf_fs_trace *ctf_fs_trace_create(const char *path, const char *name,
152 struct ctf_fs_metadata_config *config);
153
154 BT_HIDDEN
155 void ctf_fs_trace_destroy(struct ctf_fs_trace *trace);
156
157 BT_HIDDEN
158 int ctf_fs_find_traces(GList **trace_paths, const char *start_path);
159
160 BT_HIDDEN
161 GList *ctf_fs_create_trace_names(GList *trace_paths, const char *base_path);
162
163 BT_HIDDEN
164 enum bt_notification_iterator_status ctf_fs_iterator_init(
165 struct bt_private_notification_iterator *it,
166 struct bt_private_port *port);
167 BT_HIDDEN
168 void ctf_fs_iterator_finalize(struct bt_private_notification_iterator *it);
169
170 BT_HIDDEN
171 struct bt_notification_iterator_next_return ctf_fs_iterator_next(
172 struct bt_private_notification_iterator *iterator);
173
174 #endif /* BABELTRACE_PLUGIN_CTF_FS_H */
This page took 0.033277 seconds and 4 git commands to generate.