Add bt_port_is_input(), bt_port_is_output()
[babeltrace.git] / include / babeltrace / graph / component-class.h
CommitLineData
33b34c43
PP
1#ifndef BABELTRACE_COMPONENT_COMPONENT_CLASS_H
2#define BABELTRACE_COMPONENT_COMPONENT_CLASS_H
fc11e32c
JG
3
4/*
5 * Babeltrace - Component Class Interface.
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
cd95962c 28#include <stdint.h>
cc469c42
PP
29#include <babeltrace/graph/component-status.h>
30#include <babeltrace/graph/notification-iterator.h>
33b34c43 31
fc11e32c
JG
32#ifdef __cplusplus
33extern "C" {
34#endif
35
fc11e32c 36struct bt_component_class;
cd95962c 37struct bt_component;
890882ef
PP
38struct bt_private_component;
39struct bt_private_port;
8f4799f7 40struct bt_port;
cd95962c 41struct bt_value;
890882ef 42struct bt_private_notification_iterator;
fc11e32c 43
d3e4dcd8
PP
44/**
45 * Component class type.
46 */
47enum bt_component_class_type {
48 BT_COMPONENT_CLASS_TYPE_UNKNOWN = -1,
49
50 /** A source component is a notification generator. */
51 BT_COMPONENT_CLASS_TYPE_SOURCE = 0,
52
53 /** A sink component handles incoming notifications. */
54 BT_COMPONENT_CLASS_TYPE_SINK = 1,
55
56 /** A filter component implements both Source and Sink interfaces. */
57 BT_COMPONENT_CLASS_TYPE_FILTER = 2,
58};
59
60typedef enum bt_component_status (*bt_component_class_init_method)(
890882ef
PP
61 struct bt_private_component *private_component,
62 struct bt_value *params, void *init_method_data);
d3e4dcd8 63
64cadc66 64typedef void (*bt_component_class_finalize_method)(
890882ef 65 struct bt_private_component *private_component);
d3e4dcd8 66
d3eb6e8f
PP
67typedef enum bt_notification_iterator_status
68 (*bt_component_class_notification_iterator_init_method)(
91457551
PP
69 struct bt_private_notification_iterator *private_notification_iterator,
70 struct bt_private_port *private_port);
d3eb6e8f 71
64cadc66 72typedef void (*bt_component_class_notification_iterator_finalize_method)(
890882ef 73 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f 74
41a2b7ae 75typedef struct bt_notification_iterator_next_return (*bt_component_class_notification_iterator_next_method)(
890882ef 76 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f
PP
77
78typedef enum bt_notification_iterator_status
79 (*bt_component_class_notification_iterator_seek_time_method)(
890882ef
PP
80 struct bt_private_notification_iterator *private_notification_iterator,
81 int64_t time);
d3eb6e8f 82
a67681c1 83typedef struct bt_value *(*bt_component_class_query_method)(
efa96d5d 84 struct bt_component_class *component_class,
a67681c1 85 const char *object, struct bt_value *params);
efa96d5d 86
72b913fb 87typedef enum bt_component_status (*bt_component_class_accept_port_connection_method)(
890882ef 88 struct bt_private_component *private_component,
8f4799f7
PP
89 struct bt_private_port *self_private_port,
90 struct bt_port *other_port);
72b913fb 91
0d8b4d8e
PP
92typedef void (*bt_component_class_port_connected_method)(
93 struct bt_private_component *private_component,
94 struct bt_private_port *self_private_port,
95 struct bt_port *other_port);
96
72b913fb 97typedef void (*bt_component_class_port_disconnected_method)(
890882ef
PP
98 struct bt_private_component *private_component,
99 struct bt_private_port *private_port);
2d41b99e 100
d3e4dcd8
PP
101extern int bt_component_class_set_init_method(
102 struct bt_component_class *component_class,
103 bt_component_class_init_method init_method);
104
64cadc66 105extern int bt_component_class_set_finalize_method(
d3e4dcd8 106 struct bt_component_class *component_class,
64cadc66 107 bt_component_class_finalize_method finalize_method);
d3e4dcd8 108
72b913fb
PP
109extern int bt_component_class_set_accept_port_connection_method(
110 struct bt_component_class *component_class,
111 bt_component_class_accept_port_connection_method accept_port_connection_method);
112
0d8b4d8e
PP
113extern int bt_component_class_set_port_connected_method(
114 struct bt_component_class *component_class,
115 bt_component_class_port_connected_method port_connected_method);
116
72b913fb 117extern int bt_component_class_set_port_disconnected_method(
2d41b99e 118 struct bt_component_class *component_class,
72b913fb
PP
119 bt_component_class_port_disconnected_method port_disconnected_method);
120
121extern int bt_component_class_set_query_method(
122 struct bt_component_class *component_class,
123 bt_component_class_query_method query_method);
2d41b99e 124
d3e4dcd8
PP
125extern int bt_component_class_set_description(
126 struct bt_component_class *component_class,
127 const char *description);
38b48196 128
5536d9a6
PP
129extern int bt_component_class_set_help(
130 struct bt_component_class *component_class,
131 const char *help);
132
1e4d8103
PP
133extern int bt_component_class_freeze(
134 struct bt_component_class *component_class);
135
38b48196
JG
136/**
137 * Get a component class' name.
138 *
139 * @param component_class Component class of which to get the name
140 * @returns Name of the component class
141 */
142extern const char *bt_component_class_get_name(
143 struct bt_component_class *component_class);
144
7c7c0433
JG
145/**
146 * Get a component class' description.
147 *
148 * Component classes may provide an optional description. It may, however,
149 * opt not to.
150 *
151 * @param component_class Component class of which to get the description
152 * @returns Description of the component class, or NULL.
153 */
f3bc2010 154extern const char *bt_component_class_get_description(
7c7c0433
JG
155 struct bt_component_class *component_class);
156
5536d9a6
PP
157extern const char *bt_component_class_get_help(
158 struct bt_component_class *component_class);
159
a67681c1 160extern struct bt_value *bt_component_class_query(
efa96d5d 161 struct bt_component_class *component_class,
a67681c1 162 const char *object, struct bt_value *params);
efa96d5d 163
38b48196
JG
164/**
165 * Get a component class' type.
166 *
167 * @param component_class Component class of which to get the type
168 * @returns One of #bt_component_type
169 */
d3e4dcd8 170extern enum bt_component_class_type bt_component_class_get_type(
fc11e32c
JG
171 struct bt_component_class *component_class);
172
d3e4dcd8
PP
173#ifdef __cplusplus
174}
175#endif
176
33b34c43 177#endif /* BABELTRACE_COMPONENT_COMPONENT_CLASS_H */
This page took 0.035855 seconds and 4 git commands to generate.