Remove the need to implement the notification iterator's "get" method
[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;
8f4799f7 39struct bt_port;
cd95962c 40struct bt_value;
890882ef 41struct bt_private_notification_iterator;
fc11e32c 42
d3e4dcd8
PP
43/**
44 * Component class type.
45 */
46enum bt_component_class_type {
47 BT_COMPONENT_CLASS_TYPE_UNKNOWN = -1,
48
49 /** A source component is a notification generator. */
50 BT_COMPONENT_CLASS_TYPE_SOURCE = 0,
51
52 /** A sink component handles incoming notifications. */
53 BT_COMPONENT_CLASS_TYPE_SINK = 1,
54
55 /** A filter component implements both Source and Sink interfaces. */
56 BT_COMPONENT_CLASS_TYPE_FILTER = 2,
57};
58
59typedef enum bt_component_status (*bt_component_class_init_method)(
890882ef
PP
60 struct bt_private_component *private_component,
61 struct bt_value *params, void *init_method_data);
d3e4dcd8 62
64cadc66 63typedef void (*bt_component_class_finalize_method)(
890882ef 64 struct bt_private_component *private_component);
d3e4dcd8 65
d3eb6e8f
PP
66typedef enum bt_notification_iterator_status
67 (*bt_component_class_notification_iterator_init_method)(
890882ef
PP
68 struct bt_private_component *private_component,
69 struct bt_private_port *private_port,
70 struct bt_private_notification_iterator *private_notification_iterator);
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
PP
91
92typedef void (*bt_component_class_port_disconnected_method)(
890882ef
PP
93 struct bt_private_component *private_component,
94 struct bt_private_port *private_port);
2d41b99e 95
d3e4dcd8
PP
96extern int bt_component_class_set_init_method(
97 struct bt_component_class *component_class,
98 bt_component_class_init_method init_method);
99
64cadc66 100extern int bt_component_class_set_finalize_method(
d3e4dcd8 101 struct bt_component_class *component_class,
64cadc66 102 bt_component_class_finalize_method finalize_method);
d3e4dcd8 103
72b913fb
PP
104extern int bt_component_class_set_accept_port_connection_method(
105 struct bt_component_class *component_class,
106 bt_component_class_accept_port_connection_method accept_port_connection_method);
107
108extern int bt_component_class_set_port_disconnected_method(
2d41b99e 109 struct bt_component_class *component_class,
72b913fb
PP
110 bt_component_class_port_disconnected_method port_disconnected_method);
111
112extern int bt_component_class_set_query_method(
113 struct bt_component_class *component_class,
114 bt_component_class_query_method query_method);
2d41b99e 115
d3e4dcd8
PP
116extern int bt_component_class_set_description(
117 struct bt_component_class *component_class,
118 const char *description);
38b48196 119
5536d9a6
PP
120extern int bt_component_class_set_help(
121 struct bt_component_class *component_class,
122 const char *help);
123
1e4d8103
PP
124extern int bt_component_class_freeze(
125 struct bt_component_class *component_class);
126
38b48196
JG
127/**
128 * Get a component class' name.
129 *
130 * @param component_class Component class of which to get the name
131 * @returns Name of the component class
132 */
133extern const char *bt_component_class_get_name(
134 struct bt_component_class *component_class);
135
7c7c0433
JG
136/**
137 * Get a component class' description.
138 *
139 * Component classes may provide an optional description. It may, however,
140 * opt not to.
141 *
142 * @param component_class Component class of which to get the description
143 * @returns Description of the component class, or NULL.
144 */
f3bc2010 145extern const char *bt_component_class_get_description(
7c7c0433
JG
146 struct bt_component_class *component_class);
147
5536d9a6
PP
148extern const char *bt_component_class_get_help(
149 struct bt_component_class *component_class);
150
a67681c1 151extern struct bt_value *bt_component_class_query(
efa96d5d 152 struct bt_component_class *component_class,
a67681c1 153 const char *object, struct bt_value *params);
efa96d5d 154
38b48196
JG
155/**
156 * Get a component class' type.
157 *
158 * @param component_class Component class of which to get the type
159 * @returns One of #bt_component_type
160 */
d3e4dcd8 161extern enum bt_component_class_type bt_component_class_get_type(
fc11e32c
JG
162 struct bt_component_class *component_class);
163
d3e4dcd8
PP
164#ifdef __cplusplus
165}
166#endif
167
33b34c43 168#endif /* BABELTRACE_COMPONENT_COMPONENT_CLASS_H */
This page took 0.035222 seconds and 4 git commands to generate.