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