lib: rename plural file names to singular
[babeltrace.git] / include / babeltrace / graph / component-class-filter.h
CommitLineData
1ca80abd
PP
1#ifndef BABELTRACE_GRAPH_COMPONENT_CLASS_FILTER_H
2#define BABELTRACE_GRAPH_COMPONENT_CLASS_FILTER_H
d3e4dcd8
PP
3
4/*
d3e4dcd8
PP
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
0d72b8c3
PP
26#include <stdint.h>
27
28/* For enum bt_notification_array_const */
29#include <babeltrace/graph/notification-const.h>
30
31/* For enum bt_self_component_status */
32#include <babeltrace/graph/self-component.h>
33
34/* For enum bt_self_notification_iterator_status */
35#include <babeltrace/graph/self-notification-iterator.h>
36
37/* For enum bt_query_status */
38#include <babeltrace/graph/component-class.h>
39
d3e4dcd8
PP
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44struct bt_component_class;
d94d92ac 45struct bt_component_class_filter;
0d72b8c3
PP
46struct bt_port_input;
47struct bt_port_output;
48struct bt_query_executor;
49struct bt_self_component_class_filter;
50struct bt_self_component_filter;
51struct bt_self_component_port_input;
52struct bt_self_component_port_output;
53struct bt_value;
54
55typedef enum bt_self_component_status
56(*bt_component_class_filter_init_method)(
57 struct bt_self_component_filter *self_component,
58 const struct bt_value *params, void *init_method_data);
59
60typedef void (*bt_component_class_filter_finalize_method)(
61 struct bt_self_component_filter *self_component);
62
63typedef enum bt_self_notification_iterator_status
64(*bt_component_class_filter_notification_iterator_init_method)(
65 struct bt_self_notification_iterator *notification_iterator,
66 struct bt_self_component_filter *self_component,
67 struct bt_self_component_port_output *port);
68
69typedef void
70(*bt_component_class_filter_notification_iterator_finalize_method)(
71 struct bt_self_notification_iterator *notification_iterator);
72
73typedef enum bt_self_notification_iterator_status
74(*bt_component_class_filter_notification_iterator_next_method)(
75 struct bt_self_notification_iterator *notification_iterator,
76 bt_notification_array_const notifs, uint64_t capacity,
77 uint64_t *count);
78
79typedef enum bt_query_status
80(*bt_component_class_filter_query_method)(
81 struct bt_self_component_class_filter *comp_class,
82 const struct bt_query_executor *query_executor,
83 const char *object, const struct bt_value *params,
84 const struct bt_value **result);
85
86typedef enum bt_self_component_status
87(*bt_component_class_filter_accept_input_port_connection_method)(
88 struct bt_self_component_filter *self_component,
89 struct bt_self_component_port_input *self_port,
90 const struct bt_port_output *other_port);
91
92typedef enum bt_self_component_status
93(*bt_component_class_filter_accept_output_port_connection_method)(
94 struct bt_self_component_filter *self_component,
95 struct bt_self_component_port_output *self_port,
96 const struct bt_port_input *other_port);
97
98typedef enum bt_self_component_status
99(*bt_component_class_filter_input_port_connected_method)(
100 struct bt_self_component_filter *self_component,
101 struct bt_self_component_port_input *self_port,
102 const struct bt_port_output *other_port);
103
104typedef enum bt_self_component_status
105(*bt_component_class_filter_output_port_connected_method)(
106 struct bt_self_component_filter *self_component,
107 struct bt_self_component_port_output *self_port,
108 const struct bt_port_input *other_port);
109
110typedef void
111(*bt_component_class_filter_input_port_disconnected_method)(
112 struct bt_self_component_filter *self_component,
113 struct bt_self_component_port_input *self_port);
114
115typedef void
116(*bt_component_class_filter_output_port_disconnected_method)(
117 struct bt_self_component_filter *self_component,
118 struct bt_self_component_port_output *self_port);
d94d92ac
PP
119
120static inline
0d72b8c3 121struct bt_component_class *bt_component_class_filter_as_component_class(
d94d92ac
PP
122 struct bt_component_class_filter *comp_cls_filter)
123{
124 return (void *) comp_cls_filter;
125}
d3eb6e8f 126
0d72b8c3
PP
127extern
128struct bt_component_class_filter *bt_component_class_filter_create(
129 const char *name,
130 bt_component_class_filter_notification_iterator_next_method method);
131
132extern int bt_component_class_filter_set_init_method(
133 struct bt_component_class_filter *comp_class,
134 bt_component_class_filter_init_method method);
135
136extern int bt_component_class_filter_set_finalize_method(
137 struct bt_component_class_filter *comp_class,
138 bt_component_class_filter_finalize_method method);
139
140extern int bt_component_class_filter_set_accept_input_port_connection_method(
141 struct bt_component_class_filter *comp_class,
142 bt_component_class_filter_accept_input_port_connection_method method);
143
144extern int bt_component_class_filter_set_accept_output_port_connection_method(
145 struct bt_component_class_filter *comp_class,
146 bt_component_class_filter_accept_output_port_connection_method method);
147
148extern int bt_component_class_filter_set_input_port_connected_method(
149 struct bt_component_class_filter *comp_class,
150 bt_component_class_filter_input_port_connected_method method);
151
152extern int bt_component_class_filter_set_output_port_connected_method(
153 struct bt_component_class_filter *comp_class,
154 bt_component_class_filter_output_port_connected_method method);
155
156extern int bt_component_class_filter_set_input_port_disconnected_method(
157 struct bt_component_class_filter *comp_class,
158 bt_component_class_filter_input_port_disconnected_method method);
159
160extern int bt_component_class_filter_set_output_port_disconnected_method(
161 struct bt_component_class_filter *comp_class,
162 bt_component_class_filter_output_port_disconnected_method method);
163
164extern int bt_component_class_filter_set_query_method(
165 struct bt_component_class_filter *comp_class,
166 bt_component_class_filter_query_method method);
167
168extern int bt_component_class_filter_set_notification_iterator_init_method(
169 struct bt_component_class_filter *comp_class,
170 bt_component_class_filter_notification_iterator_init_method method);
171
172extern int bt_component_class_filter_set_notification_iterator_finalize_method(
173 struct bt_component_class_filter *comp_class,
174 bt_component_class_filter_notification_iterator_finalize_method method);
175
d3eb6e8f
PP
176#ifdef __cplusplus
177}
178#endif
179
90157d89 180#endif /* BABELTRACE_GRAPH_COMPONENT_CLASS_FILTER_H */
This page took 0.047143 seconds and 4 git commands to generate.