lib: make plugin API const-correct
[babeltrace.git] / include / babeltrace / graph / private-component-class-sink.h
CommitLineData
d94d92ac
PP
1#ifndef BABELTRACE_GRAPH_PRIVATE_COMPONENT_CLASS_SINK_H
2#define BABELTRACE_GRAPH_PRIVATE_COMPONENT_CLASS_SINK_H
3
4/*
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
26#include <stdint.h>
27
28/* For enum bt_notification_array */
29#include <babeltrace/graph/notification.h>
30
31/* For enum bt_self_component_status */
32#include <babeltrace/graph/self-component.h>
33
34/* For enum bt_query_status */
d94d92ac
PP
35#include <babeltrace/graph/private-component-class.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41struct bt_self_component_class_sink;
42struct bt_component_class_sink;
43struct bt_self_component_sink;
44struct bt_private_component_class;
45struct bt_private_component_class_sink;
46struct bt_self_component_port_input;
47struct bt_port_output;
48struct bt_query_executor;
49struct bt_value;
50
51typedef enum bt_self_component_status
52(*bt_private_component_class_sink_init_method)(
53 struct bt_self_component_sink *self_component,
05e21286 54 const struct bt_value *params, void *init_method_data);
d94d92ac
PP
55
56typedef void (*bt_private_component_class_sink_finalize_method)(
57 struct bt_self_component_sink *self_component);
58
59typedef enum bt_query_status
60(*bt_private_component_class_sink_query_method)(
61 struct bt_self_component_class_sink *comp_class,
62 struct bt_query_executor *query_executor,
05e21286
PP
63 const char *object, const struct bt_value *params,
64 const struct bt_value **result);
d94d92ac
PP
65
66typedef enum bt_self_component_status
67(*bt_private_component_class_sink_accept_input_port_connection_method)(
68 struct bt_self_component_sink *self_component,
69 struct bt_self_component_port_input *self_port,
70 struct bt_port_output *other_port);
71
72typedef enum bt_self_component_status
73(*bt_private_component_class_sink_input_port_connected_method)(
74 struct bt_self_component_sink *self_component,
75 struct bt_self_component_port_input *self_port,
76 struct bt_port_output *other_port);
77
78typedef void
79(*bt_private_component_class_sink_input_port_disconnected_method)(
80 struct bt_self_component_sink *self_component,
81 struct bt_self_component_port_input *self_port);
82
83typedef enum bt_self_component_status
84(*bt_private_component_class_sink_consume_method)(
85 struct bt_self_component_sink *self_component);
86
87static inline
88struct bt_private_component_class *
707b7d35 89bt_private_component_class_sink_as_private_component_class(
d94d92ac
PP
90 struct bt_private_component_class_sink *priv_comp_cls_sink)
91{
92 return (void *) priv_comp_cls_sink;
93}
94
95static inline
96struct bt_component_class_sink *
707b7d35 97bt_private_component_class_sink_as_component_class_sink(
d94d92ac
PP
98 struct bt_private_component_class_sink *priv_comp_cls_sink)
99{
100 return (void *) priv_comp_cls_sink;
101}
102
103extern
104struct bt_private_component_class_sink *bt_private_component_class_sink_create(
105 const char *name,
106 bt_private_component_class_sink_consume_method method);
107
108extern int bt_private_component_class_sink_set_init_method(
109 struct bt_private_component_class_sink *comp_class,
110 bt_private_component_class_sink_init_method method);
111
112extern int bt_private_component_class_sink_set_finalize_method(
113 struct bt_private_component_class_sink *comp_class,
114 bt_private_component_class_sink_finalize_method method);
115
116extern int bt_private_component_class_sink_set_accept_input_port_connection_method(
117 struct bt_private_component_class_sink *comp_class,
118 bt_private_component_class_sink_accept_input_port_connection_method method);
119
120extern int bt_private_component_class_sink_set_input_port_connected_method(
121 struct bt_private_component_class_sink *comp_class,
122 bt_private_component_class_sink_input_port_connected_method method);
123
124extern int bt_private_component_class_sink_set_input_port_disconnected_method(
125 struct bt_private_component_class_sink *comp_class,
126 bt_private_component_class_sink_input_port_disconnected_method method);
127
128extern int bt_private_component_class_sink_set_query_method(
129 struct bt_private_component_class_sink *comp_class,
130 bt_private_component_class_sink_query_method method);
131
132#ifdef __cplusplus
133}
134#endif
135
136#endif /* BABELTRACE_GRAPH_PRIVATE_COMPONENT_CLASS_SINK_H */
This page took 0.028783 seconds and 4 git commands to generate.