Add filter component type
[babeltrace.git] / include / babeltrace / plugin / plugin-system.h
CommitLineData
43de0e13
JG
1#ifndef BABELTRACE_PLUGIN_SYSTEM_H
2#define BABELTRACE_PLUGIN_SYSTEM_H
3
4/*
5 * BabelTrace - Babeltrace Plug-in System Interface
6 *
7 * This interface is provided for plug-ins to use the Babeltrace
8 * plug-in system facilities.
9 *
10 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
11 *
12 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this software and associated documentation files (the "Software"), to deal
16 * in the Software without restriction, including without limitation the rights
17 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18 * copies of the Software, and to permit persons to whom the Software is
19 * furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
30d619df 33#include <babeltrace/plugin/notification/notification.h>
fec2a9f2 34#include <stdint.h>
30d619df 35
43de0e13
JG
36#ifdef __cplusplus
37extern "C" {
38#endif
39
2bd8a567 40struct bt_notification;
47e5a032
JG
41struct bt_notification_iterator;
42struct bt_component;
38b48196 43struct bt_component_factory;
7c7c0433 44struct bt_value;
38b48196
JG
45
46typedef enum bt_component_status (*bt_plugin_init_func)(
47 struct bt_component_factory *factory);
48typedef void (*bt_plugin_exit_func)(void);
2bd8a567 49
43de0e13 50/**
633edee0 51 * Component private data deallocation function type.
43de0e13 52 *
760051fa 53 * @param component Component instance
43de0e13 54 */
760051fa 55typedef void (*bt_component_destroy_cb)(struct bt_component *component);
43de0e13 56
2bd8a567 57/**
38b48196 58 * Component initialization function type.
8738a040 59 *
38b48196
JG
60 * A component's private data and required callbacks must be set by this
61 * function.
2bd8a567 62 *
633edee0 63 * @param component Component instance
7c7c0433 64 * @param params A dictionary of component parameters
480dc8ed 65 * @returns One of #bt_component_status values
2bd8a567 66 */
38b48196 67typedef enum bt_component_status (*bt_component_init_cb)(
7c7c0433 68 struct bt_component *component, struct bt_value *params);
8738a040 69
8738a040
JG
70/**
71 * Get a component's private data.
72 *
73 * @param component Component of which to get the private data
74 * @returns Component's private data
75 */
76extern void *bt_component_get_private_data(struct bt_component *component);
47e5a032 77
8738a040
JG
78/**
79 * Set a component's private data.
80 *
81 * @param component Component of which to set the private data
82 * @param data Component private data
83 * @returns One of #bt_component_status values
84 */
85extern enum bt_component_status bt_component_set_private_data(
86 struct bt_component *component, void *data);
87
88/**
89 * Set a component's private data cleanup function.
90 *
91 * @param component Component of which to set the private data destruction
92 * function
93 * @param data Component private data clean-up function
94 * @returns One of #bt_component_status values
95 */
96extern enum bt_component_status bt_component_set_destroy_cb(
97 struct bt_component *component,
98 bt_component_destroy_cb destroy);
99
100/** bt_component_souce */
101/**
102 * Iterator initialization function type.
103 *
104 * A notification iterator's private data, deinitialization, next, and get
105 * callbacks must be set by this function.
106 *
30d619df 107 * @param source Source component instance
8738a040
JG
108 * @param iterator Notification iterator instance
109 */
110typedef enum bt_component_status (*bt_component_source_init_iterator_cb)(
30d619df 111 struct bt_component *, struct bt_notification_iterator *);
2bd8a567 112
8738a040
JG
113/**
114 * Set a source component's iterator initialization function.
115 *
30d619df 116 * @param source Source component instance
8738a040
JG
117 * @param init_iterator Notification iterator initialization callback
118 */
119extern enum bt_component_status
30d619df 120bt_component_source_set_iterator_init_cb(struct bt_component *source,
8738a040
JG
121 bt_component_source_init_iterator_cb init_iterator);
122
123/** bt_component_sink */
2bd8a567 124/**
fec2a9f2 125 * Notification consumption function type.
2bd8a567 126 *
fec2a9f2
JG
127 * @param sink Sink component instance
128 * @returns One of #bt_component_status values
129 */
130typedef enum bt_component_status (*bt_component_sink_consume_cb)(
131 struct bt_component *);
132
133/**
134 * Iterator addition function type.
135 *
136 * A sink component may choose to refuse the addition of an iterator
137 * by not returning BT_COMPONENT_STATUS_OK.
0dfd8ee4 138 *
30d619df 139 * @param sink Sink component instance
633edee0 140 * @returns One of #bt_component_status values
2bd8a567 141 */
fec2a9f2
JG
142typedef enum bt_component_status (*bt_component_sink_add_iterator_cb)(
143 struct bt_component *, struct bt_notification_iterator *);
2bd8a567 144
8738a040 145/**
fec2a9f2 146 * Set a sink component's consumption callback.
8738a040 147 *
fec2a9f2
JG
148 * @param sink Sink component instance
149 * @param consume Consumption callback
150 * @returns One of #bt_component_status values
8738a040
JG
151 */
152extern enum bt_component_status
fec2a9f2
JG
153bt_component_sink_set_consume_cb(struct bt_component *sink,
154 bt_component_sink_consume_cb consume);
8738a040 155
30d619df 156/**
fec2a9f2 157 * Set a sink component's iterator addition callback.
30d619df 158 *
fec2a9f2
JG
159 * @param sink Sink component instance
160 * @param add_iterator Iterator addition callback
161 * @returns One of #bt_component_status values
30d619df
JG
162 */
163extern enum bt_component_status
fec2a9f2
JG
164bt_component_sink_set_add_iterator_cb(struct bt_component *sink,
165 bt_component_sink_add_iterator_cb add_iterator);
166
167/* Defaults to 1. */
168extern enum bt_component_status
169bt_component_sink_set_minimum_input_count(struct bt_component *sink,
170 unsigned int minimum);
171
172/* Defaults to 1. */
173extern enum bt_component_status
174bt_component_sink_set_maximum_input_count(struct bt_component *sink,
175 unsigned int maximum);
176
177extern enum bt_component_status
178bt_component_sink_get_input_count(struct bt_component *sink,
179 unsigned int *count);
180
181/* May return NULL after an interator has reached its end. */
182extern enum bt_component_status
183bt_component_sink_get_input_iterator(struct bt_component *sink,
184 unsigned int input, struct bt_notification_iterator **iterator);
30d619df 185
34ac9eaf
JG
186/** bt_component_filter */
187/**
188 * Iterator initialization function type.
189 *
190 * A notification iterator's private data, deinitialization, next, and get
191 * callbacks must be set by this function.
192 *
193 * @param filter Filter component instance
194 * @param iterator Notification iterator instance
195 */
196typedef enum bt_component_status (*bt_component_filter_init_iterator_cb)(
197 struct bt_component *, struct bt_notification_iterator *);
198
199/**
200 * Iterator addition function type.
201 *
202 * A filter component may choose to refuse the addition of an iterator
203 * by not returning BT_COMPONENT_STATUS_OK.
204 *
205 * @param filter Filter component instance
206 * @returns One of #bt_component_status values
207 */
208typedef enum bt_component_status (*bt_component_filter_add_iterator_cb)(
209 struct bt_component *, struct bt_notification_iterator *);
210
211/**
212 * Set a filter component's iterator initialization function.
213 *
214 * @param filter Filter component instance
215 * @param init_iterator Notification iterator initialization callback
216 */
217extern enum bt_component_status
218bt_component_filter_set_iterator_init_cb(struct bt_component *filter,
219 bt_component_filter_init_iterator_cb init_iterator);
220
221/**
222 * Set a filter component's iterator addition callback.
223 *
224 * @param filter Filter component instance
225 * @param add_iterator Iterator addition callback
226 * @returns One of #bt_component_status values
227 */
228extern enum bt_component_status
229bt_component_filter_set_add_iterator_cb(struct bt_component *filter,
230 bt_component_filter_add_iterator_cb add_iterator);
231
232/* Defaults to 1. */
233extern enum bt_component_status
234bt_component_filter_set_minimum_input_count(struct bt_component *filter,
235 unsigned int minimum);
236
237/* Defaults to 1. */
238extern enum bt_component_status
239bt_component_filter_set_maximum_input_count(struct bt_component *filter,
240 unsigned int maximum);
241
242extern enum bt_component_status
243bt_component_filter_get_input_count(struct bt_component *filter,
244 unsigned int *count);
245
246/* May return NULL after an interator has reached its end. */
247extern enum bt_component_status
248bt_component_filter_get_input_iterator(struct bt_component *filter,
249 unsigned int input, struct bt_notification_iterator **iterator);
250
fec2a9f2 251/** bt_notification_iterator */
8738a040
JG
252/**
253 * Function returning an iterator's current notification.
254 *
255 * @param iterator Notification iterator instance
256 * @returns A notification instance
257 */
47e5a032 258typedef struct bt_notification *(*bt_notification_iterator_get_cb)(
8738a040 259 struct bt_notification_iterator *iterator);
2bd8a567 260
8738a040 261/**
d97bac96 262 * Function advancing an iterator's position of one element.
8738a040
JG
263 *
264 * @param iterator Notification iterator instance
265 * @returns One of #bt_notification_iterator_status values
266 */
47e5a032 267typedef enum bt_notification_iterator_status (*bt_notification_iterator_next_cb)(
8738a040 268 struct bt_notification_iterator *iterator);
2bd8a567 269
43de0e13 270/**
8738a040 271 * Function cleaning-up an iterator's private data on destruction.
43de0e13 272 *
8738a040 273 * @param iterator Notification iterator instance
43de0e13 274 */
8738a040
JG
275typedef void (*bt_notification_iterator_destroy_cb)(
276 struct bt_notification_iterator *iterator);
43de0e13 277
d97bac96
JG
278/**
279 * Set an iterator's "get" callback which return the current notification.
280 *
281 * @param iterator Notification iterator instance
282 * @param get Notification return callback
283 * @returns One of #bt_notification_iterator_status values
284 */
47e5a032
JG
285extern enum bt_notification_iterator_status
286bt_notification_iterator_set_get_cb(struct bt_notification_iterator *iterator,
287 bt_notification_iterator_get_cb get);
288
d97bac96
JG
289/**
290 * Set an iterator's "next" callback which advances the iterator's position.
291 *
292 * @param iterator Notification iterator instance
293 * @param next Iterator "next" callback
294 * @returns One of #bt_notification_iterator_status values
295 */
47e5a032
JG
296extern enum bt_notification_iterator_status
297bt_notification_iterator_set_next_cb(struct bt_notification_iterator *iterator,
298 bt_notification_iterator_next_cb next);
299
d97bac96
JG
300/**
301 * Set an iterator's "destroy" callback.
302 *
303 * @param iterator Notification iterator instance
304 * @param next Iterator destruction callback
305 * @returns One of #bt_notification_iterator_status values
306 */
8738a040
JG
307extern enum bt_notification_iterator_status
308bt_notification_iterator_set_destroy_cb(
309 struct bt_notification_iterator *iterator,
310 bt_notification_iterator_destroy_cb destroy);
311
d97bac96
JG
312/**
313 * Set an iterator's private data.
314 *
315 * @param iterator Notification iterator instance
316 * @param data Iterator private data
317 * @returns One of #bt_notification_iterator_status values
318 */
47e5a032
JG
319extern enum bt_notification_iterator_status
320bt_notification_iterator_set_private_data(
321 struct bt_notification_iterator *iterator, void *data);
322
d97bac96 323/**
448143d9 324 * Get an iterator's private data.
d97bac96
JG
325 *
326 * @param iterator Notification iterator instance
327 * @returns Iterator instance private data
328 */
47e5a032
JG
329extern void *bt_notification_iterator_get_private_data(
330 struct bt_notification_iterator *iterator);
331
43de0e13
JG
332#ifdef __cplusplus
333}
334#endif
335
336#endif /* BABELTRACE_PLUGIN_SYSTEM_H */
This page took 0.039318 seconds and 4 git commands to generate.