Build fix
[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
43de0e13
JG
33#ifdef __cplusplus
34extern "C" {
35#endif
36
2bd8a567 37struct bt_notification;
47e5a032
JG
38struct bt_notification_iterator;
39struct bt_component;
2bd8a567 40
43de0e13 41/**
633edee0 42 * Component private data deallocation function type.
43de0e13 43 *
633edee0 44 * @param component Component instance
43de0e13 45 */
633edee0 46typedef void (*bt_component_destroy_cb)(struct bt_component *component);
43de0e13 47
2bd8a567 48/**
8738a040
JG
49 * Source component initialization function type.
50 *
51 * A source component's iterator initialization callback, private data and
52 * deinitialization callback must be set by this function.
53 *
54 * @param component Component instance
480dc8ed 55 * @returns One of #bt_component_status values
8738a040 56 */
480dc8ed 57typedef enum bt_component_status (*bt_component_source_init_cb)(
8738a040
JG
58 struct bt_component *component);
59
60/**
61 * Sink component initialization function type.
62 *
63 * A sink component's notification handling callback, private data and
64 * deinitialization callback must be set by this function.
2bd8a567 65 *
633edee0 66 * @param component Component instance
480dc8ed 67 * @returns One of #bt_component_status values
2bd8a567 68 */
480dc8ed 69typedef enum bt_component_status (*bt_component_sink_init_cb)(
8738a040
JG
70 struct bt_component *component);
71
72/**
73 * Iterator initialization function type.
74 *
75 * @param component Component instance
76 * @param iterator Iterator instance
77 */
47e5a032
JG
78typedef enum bt_component_status (*bt_component_source_iterator_init_cb)(
79 struct bt_component *component,
80 struct bt_notification_iterator *iterator);
81
8738a040
JG
82/**
83 * Get a component's private data.
84 *
85 * @param component Component of which to get the private data
86 * @returns Component's private data
87 */
88extern void *bt_component_get_private_data(struct bt_component *component);
47e5a032 89
8738a040
JG
90/**
91 * Set a component's private data.
92 *
93 * @param component Component of which to set the private data
94 * @param data Component private data
95 * @returns One of #bt_component_status values
96 */
97extern enum bt_component_status bt_component_set_private_data(
98 struct bt_component *component, void *data);
99
100/**
101 * Set a component's private data cleanup function.
102 *
103 * @param component Component of which to set the private data destruction
104 * function
105 * @param data Component private data clean-up function
106 * @returns One of #bt_component_status values
107 */
108extern enum bt_component_status bt_component_set_destroy_cb(
109 struct bt_component *component,
110 bt_component_destroy_cb destroy);
111
112/** bt_component_souce */
113/**
114 * Iterator initialization function type.
115 *
116 * A notification iterator's private data, deinitialization, next, and get
117 * callbacks must be set by this function.
118 *
119 * @param component Component instance
120 * @param iterator Notification iterator instance
121 */
122typedef enum bt_component_status (*bt_component_source_init_iterator_cb)(
123 struct bt_component *component,
124 struct bt_notification_iterator *iterator);
2bd8a567 125
8738a040
JG
126/**
127 * Set a source component's iterator initialization function.
128 *
129 * @param component Component instance
130 * @param init_iterator Notification iterator initialization callback
131 */
132extern enum bt_component_status
133bt_component_source_set_iterator_init_cb(struct bt_component *component,
134 bt_component_source_init_iterator_cb init_iterator);
135
136/** bt_component_sink */
2bd8a567
JG
137/**
138 * Notification handling function type.
139 *
633edee0 140 * @param component Component instance
2bd8a567 141 * @param notificattion Notification to handle
633edee0 142 * @returns One of #bt_component_status values
2bd8a567 143 */
633edee0
JG
144typedef enum bt_component_status (*bt_component_sink_handle_notification_cb)(
145 struct bt_component *, struct bt_notification *);
2bd8a567 146
8738a040
JG
147/**
148 * Set a sink component's notification handling callback.
149 *
150 * @param component Component instance
151 * @param handle_notification Notification handling callback
152 * @returns One of #bt_component_status values
153 */
154extern enum bt_component_status
155bt_component_sink_set_handle_notification_cb(struct bt_component *component,
156 bt_component_sink_handle_notification_cb handle_notification);
157
158/** bt_component_notification_iterator */
159/**
160 * Function returning an iterator's current notification.
161 *
162 * @param iterator Notification iterator instance
163 * @returns A notification instance
164 */
47e5a032 165typedef struct bt_notification *(*bt_notification_iterator_get_cb)(
8738a040 166 struct bt_notification_iterator *iterator);
2bd8a567 167
8738a040 168/**
d97bac96 169 * Function advancing an iterator's position of one element.
8738a040
JG
170 *
171 * @param iterator Notification iterator instance
172 * @returns One of #bt_notification_iterator_status values
173 */
47e5a032 174typedef enum bt_notification_iterator_status (*bt_notification_iterator_next_cb)(
8738a040 175 struct bt_notification_iterator *iterator);
2bd8a567 176
43de0e13 177/**
8738a040 178 * Function cleaning-up an iterator's private data on destruction.
43de0e13 179 *
8738a040 180 * @param iterator Notification iterator instance
43de0e13 181 */
8738a040
JG
182typedef void (*bt_notification_iterator_destroy_cb)(
183 struct bt_notification_iterator *iterator);
43de0e13 184
d97bac96
JG
185/**
186 * Set an iterator's "get" callback which return the current notification.
187 *
188 * @param iterator Notification iterator instance
189 * @param get Notification return callback
190 * @returns One of #bt_notification_iterator_status values
191 */
47e5a032
JG
192extern enum bt_notification_iterator_status
193bt_notification_iterator_set_get_cb(struct bt_notification_iterator *iterator,
194 bt_notification_iterator_get_cb get);
195
d97bac96
JG
196/**
197 * Set an iterator's "next" callback which advances the iterator's position.
198 *
199 * @param iterator Notification iterator instance
200 * @param next Iterator "next" callback
201 * @returns One of #bt_notification_iterator_status values
202 */
47e5a032
JG
203extern enum bt_notification_iterator_status
204bt_notification_iterator_set_next_cb(struct bt_notification_iterator *iterator,
205 bt_notification_iterator_next_cb next);
206
d97bac96
JG
207/**
208 * Set an iterator's "destroy" callback.
209 *
210 * @param iterator Notification iterator instance
211 * @param next Iterator destruction callback
212 * @returns One of #bt_notification_iterator_status values
213 */
8738a040
JG
214extern enum bt_notification_iterator_status
215bt_notification_iterator_set_destroy_cb(
216 struct bt_notification_iterator *iterator,
217 bt_notification_iterator_destroy_cb destroy);
218
d97bac96
JG
219/**
220 * Set an iterator's private data.
221 *
222 * @param iterator Notification iterator instance
223 * @param data Iterator private data
224 * @returns One of #bt_notification_iterator_status values
225 */
47e5a032
JG
226extern enum bt_notification_iterator_status
227bt_notification_iterator_set_private_data(
228 struct bt_notification_iterator *iterator, void *data);
229
d97bac96
JG
230/**
231 * Gett an iterator's private data.
232 *
233 * @param iterator Notification iterator instance
234 * @returns Iterator instance private data
235 */
47e5a032
JG
236extern void *bt_notification_iterator_get_private_data(
237 struct bt_notification_iterator *iterator);
238
43de0e13
JG
239#ifdef __cplusplus
240}
241#endif
242
243#endif /* BABELTRACE_PLUGIN_SYSTEM_H */
This page took 0.034806 seconds and 4 git commands to generate.