lib: add aliases for Babeltrace enumeration types
[babeltrace.git] / include / babeltrace / graph / component-class-sink.h
CommitLineData
1ca80abd
PP
1#ifndef BABELTRACE_GRAPH_COMPONENT_CLASS_SINK_H
2#define BABELTRACE_GRAPH_COMPONENT_CLASS_SINK_H
d3e4dcd8
PP
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d3e4dcd8
PP
6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
7b53201c
PP
27#include <stdint.h>
28
ee78f405 29/* For bt_self_component_status */
7b53201c
PP
30#include <babeltrace/graph/self-component.h>
31
ee78f405 32/* For bt_query_status */
7b53201c
PP
33#include <babeltrace/graph/component-class.h>
34
8eee8ea2
PP
35/*
36 * For bt_component_class, bt_component_class_sink, bt_port_output,
37 * bt_query_executor, bt_self_component_class_sink,
38 * bt_self_component_sink, bt_self_component_port_input, bt_value
39 */
40#include <babeltrace/types.h>
41
d3e4dcd8
PP
42#ifdef __cplusplus
43extern "C" {
44#endif
45
ee78f405 46typedef bt_self_component_status (*bt_component_class_sink_init_method)(
8eee8ea2
PP
47 bt_self_component_sink *self_component,
48 const bt_value *params, void *init_method_data);
7b53201c
PP
49
50typedef void (*bt_component_class_sink_finalize_method)(
8eee8ea2 51 bt_self_component_sink *self_component);
7b53201c 52
ee78f405 53typedef bt_query_status
7b53201c 54(*bt_component_class_sink_query_method)(
8eee8ea2
PP
55 bt_self_component_class_sink *comp_class,
56 const bt_query_executor *query_executor,
57 const char *object, const bt_value *params,
58 const bt_value **result);
7b53201c 59
ee78f405 60typedef bt_self_component_status
7b53201c 61(*bt_component_class_sink_accept_input_port_connection_method)(
8eee8ea2
PP
62 bt_self_component_sink *self_component,
63 bt_self_component_port_input *self_port,
64 const bt_port_output *other_port);
7b53201c 65
ee78f405 66typedef bt_self_component_status
7b53201c 67(*bt_component_class_sink_input_port_connected_method)(
8eee8ea2
PP
68 bt_self_component_sink *self_component,
69 bt_self_component_port_input *self_port,
70 const bt_port_output *other_port);
7b53201c
PP
71
72typedef void
73(*bt_component_class_sink_input_port_disconnected_method)(
8eee8ea2
PP
74 bt_self_component_sink *self_component,
75 bt_self_component_port_input *self_port);
7b53201c 76
ee78f405 77typedef bt_self_component_status (*bt_component_class_sink_consume_method)(
8eee8ea2 78 bt_self_component_sink *self_component);
834e9996
PP
79
80static inline
8eee8ea2
PP
81bt_component_class *bt_component_class_sink_as_component_class(
82 bt_component_class_sink *comp_cls_sink)
834e9996
PP
83{
84 return (void *) comp_cls_sink;
85}
d3e4dcd8 86
7b53201c 87extern
8eee8ea2 88bt_component_class_sink *bt_component_class_sink_create(
7b53201c
PP
89 const char *name,
90 bt_component_class_sink_consume_method method);
91
92extern int bt_component_class_sink_set_init_method(
8eee8ea2 93 bt_component_class_sink *comp_class,
7b53201c
PP
94 bt_component_class_sink_init_method method);
95
96extern int bt_component_class_sink_set_finalize_method(
8eee8ea2 97 bt_component_class_sink *comp_class,
7b53201c
PP
98 bt_component_class_sink_finalize_method method);
99
100extern int bt_component_class_sink_set_accept_input_port_connection_method(
8eee8ea2 101 bt_component_class_sink *comp_class,
7b53201c
PP
102 bt_component_class_sink_accept_input_port_connection_method method);
103
104extern int bt_component_class_sink_set_input_port_connected_method(
8eee8ea2 105 bt_component_class_sink *comp_class,
7b53201c
PP
106 bt_component_class_sink_input_port_connected_method method);
107
108extern int bt_component_class_sink_set_input_port_disconnected_method(
8eee8ea2 109 bt_component_class_sink *comp_class,
7b53201c
PP
110 bt_component_class_sink_input_port_disconnected_method method);
111
112extern int bt_component_class_sink_set_query_method(
8eee8ea2 113 bt_component_class_sink *comp_class,
7b53201c
PP
114 bt_component_class_sink_query_method method);
115
d3e4dcd8
PP
116#ifdef __cplusplus
117}
118#endif
119
1ca80abd 120#endif /* BABELTRACE_GRAPH_COMPONENT_CLASS_SINK_H */
This page took 0.039862 seconds and 4 git commands to generate.