Visibility: split graph API into public and private interfaces
[babeltrace.git] / include / babeltrace / component / 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
33b34c43 28#include <babeltrace/component/component.h>
cd95962c 29#include <stdint.h>
33b34c43 30
fc11e32c
JG
31#ifdef __cplusplus
32extern "C" {
33#endif
34
fc11e32c 35struct bt_component_class;
cd95962c 36struct bt_component;
890882ef
PP
37struct bt_private_component;
38struct bt_private_port;
cd95962c 39struct bt_value;
890882ef 40struct bt_private_notification_iterator;
fc11e32c 41
d3e4dcd8
PP
42/**
43 * Component class type.
44 */
45enum bt_component_class_type {
46 BT_COMPONENT_CLASS_TYPE_UNKNOWN = -1,
47
48 /** A source component is a notification generator. */
49 BT_COMPONENT_CLASS_TYPE_SOURCE = 0,
50
51 /** A sink component handles incoming notifications. */
52 BT_COMPONENT_CLASS_TYPE_SINK = 1,
53
54 /** A filter component implements both Source and Sink interfaces. */
55 BT_COMPONENT_CLASS_TYPE_FILTER = 2,
56};
57
58typedef enum bt_component_status (*bt_component_class_init_method)(
890882ef
PP
59 struct bt_private_component *private_component,
60 struct bt_value *params, void *init_method_data);
d3e4dcd8 61
890882ef
PP
62typedef void (*bt_component_class_destroy_method)(
63 struct bt_private_component *private_component);
d3e4dcd8 64
d3eb6e8f
PP
65typedef enum bt_notification_iterator_status
66 (*bt_component_class_notification_iterator_init_method)(
890882ef
PP
67 struct bt_private_component *private_component,
68 struct bt_private_port *private_port,
69 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f
PP
70
71typedef void (*bt_component_class_notification_iterator_destroy_method)(
890882ef 72 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f
PP
73
74typedef struct bt_notification *(*bt_component_class_notification_iterator_get_method)(
890882ef 75 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f
PP
76
77typedef enum bt_notification_iterator_status (*bt_component_class_notification_iterator_next_method)(
890882ef 78 struct bt_private_notification_iterator *private_notification_iterator);
d3eb6e8f
PP
79
80typedef enum bt_notification_iterator_status
81 (*bt_component_class_notification_iterator_seek_time_method)(
890882ef
PP
82 struct bt_private_notification_iterator *private_notification_iterator,
83 int64_t time);
d3eb6e8f 84
a67681c1 85typedef struct bt_value *(*bt_component_class_query_method)(
efa96d5d 86 struct bt_component_class *component_class,
a67681c1 87 const char *object, struct bt_value *params);
efa96d5d 88
72b913fb 89typedef enum bt_component_status (*bt_component_class_accept_port_connection_method)(
890882ef
PP
90 struct bt_private_component *private_component,
91 struct bt_private_port *private_port);
72b913fb
PP
92
93typedef void (*bt_component_class_port_disconnected_method)(
890882ef
PP
94 struct bt_private_component *private_component,
95 struct bt_private_port *private_port);
2d41b99e 96
d3e4dcd8
PP
97extern int bt_component_class_set_init_method(
98 struct bt_component_class *component_class,
99 bt_component_class_init_method init_method);
100
101extern int bt_component_class_set_destroy_method(
102 struct bt_component_class *component_class,
103 bt_component_class_destroy_method destroy_method);
104
72b913fb
PP
105extern int bt_component_class_set_accept_port_connection_method(
106 struct bt_component_class *component_class,
107 bt_component_class_accept_port_connection_method accept_port_connection_method);
108
109extern int bt_component_class_set_port_disconnected_method(
2d41b99e 110 struct bt_component_class *component_class,
72b913fb
PP
111 bt_component_class_port_disconnected_method port_disconnected_method);
112
113extern int bt_component_class_set_query_method(
114 struct bt_component_class *component_class,
115 bt_component_class_query_method query_method);
2d41b99e 116
d3e4dcd8
PP
117extern int bt_component_class_set_description(
118 struct bt_component_class *component_class,
119 const char *description);
38b48196 120
5536d9a6
PP
121extern int bt_component_class_set_help(
122 struct bt_component_class *component_class,
123 const char *help);
124
1e4d8103
PP
125extern int bt_component_class_freeze(
126 struct bt_component_class *component_class);
127
38b48196
JG
128/**
129 * Get a component class' name.
130 *
131 * @param component_class Component class of which to get the name
132 * @returns Name of the component class
133 */
134extern const char *bt_component_class_get_name(
135 struct bt_component_class *component_class);
136
7c7c0433
JG
137/**
138 * Get a component class' description.
139 *
140 * Component classes may provide an optional description. It may, however,
141 * opt not to.
142 *
143 * @param component_class Component class of which to get the description
144 * @returns Description of the component class, or NULL.
145 */
f3bc2010 146extern const char *bt_component_class_get_description(
7c7c0433
JG
147 struct bt_component_class *component_class);
148
5536d9a6
PP
149extern const char *bt_component_class_get_help(
150 struct bt_component_class *component_class);
151
a67681c1 152extern struct bt_value *bt_component_class_query(
efa96d5d 153 struct bt_component_class *component_class,
a67681c1 154 const char *object, struct bt_value *params);
efa96d5d 155
38b48196
JG
156/**
157 * Get a component class' type.
158 *
159 * @param component_class Component class of which to get the type
160 * @returns One of #bt_component_type
161 */
d3e4dcd8 162extern enum bt_component_class_type bt_component_class_get_type(
fc11e32c
JG
163 struct bt_component_class *component_class);
164
d3e4dcd8
PP
165#ifdef __cplusplus
166}
167#endif
168
33b34c43 169#endif /* BABELTRACE_COMPONENT_COMPONENT_CLASS_H */
This page took 0.033787 seconds and 4 git commands to generate.