lib: force user to include `<babeltrace2/babeltrace.h>`
[babeltrace.git] / include / babeltrace2 / graph / self-component-filter.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_GRAPH_SELF_COMPONENT_FILTER_H
2#define BABELTRACE2_GRAPH_SELF_COMPONENT_FILTER_H
d94d92ac
PP
3
4/*
e2f7325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d94d92ac
PP
6 * Copyright 2017 Philippe Proulx <pproulx@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
4fa90f32
PP
27#ifndef __BT_IN_BABELTRACE_H
28# error "Please include <babeltrace2/babeltrace.h> instead."
29#endif
30
d94d92ac
PP
31#include <stdint.h>
32
d24d5663 33/* For bt_self_component_*_status */
3fadfbc0 34#include <babeltrace2/graph/self-component.h>
d94d92ac 35
b19ff26f
PP
36/*
37 * For bt_component_filter, bt_self_component, bt_self_component_filter,
005f1204
PP
38 * bt_self_component_port_input, bt_self_component_port_output,
39 * __BT_UPCAST, __BT_UPCAST_CONST
b19ff26f 40 */
3fadfbc0 41#include <babeltrace2/types.h>
b19ff26f 42
d94d92ac
PP
43#ifdef __cplusplus
44extern "C" {
45#endif
46
d94d92ac 47static inline
b19ff26f
PP
48bt_self_component *bt_self_component_filter_as_self_component(
49 bt_self_component_filter *self_comp_filter)
d94d92ac 50{
005f1204 51 return __BT_UPCAST(bt_self_component, self_comp_filter);
d94d92ac
PP
52}
53
54static inline
b19ff26f 55const bt_component_filter *
707b7d35 56bt_self_component_filter_as_component_filter(
b19ff26f 57 bt_self_component_filter *self_comp_filter)
d94d92ac 58{
005f1204 59 return __BT_UPCAST_CONST(bt_component_filter, self_comp_filter);
d94d92ac
PP
60}
61
b19ff26f 62extern bt_self_component_port_output *
d94d92ac 63bt_self_component_filter_borrow_output_port_by_name(
b19ff26f 64 bt_self_component_filter *self_component,
d94d92ac
PP
65 const char *name);
66
b19ff26f 67extern bt_self_component_port_output *
d94d92ac 68bt_self_component_filter_borrow_output_port_by_index(
b19ff26f 69 bt_self_component_filter *self_component,
d94d92ac
PP
70 uint64_t index);
71
d24d5663 72extern bt_self_component_add_port_status
d94d92ac 73bt_self_component_filter_add_output_port(
b19ff26f 74 bt_self_component_filter *self_component,
0d1c8791 75 const char *name, void *user_data,
b19ff26f 76 bt_self_component_port_output **self_component_port);
d94d92ac 77
b19ff26f 78extern bt_self_component_port_input *
d94d92ac 79bt_self_component_filter_borrow_input_port_by_name(
b19ff26f 80 bt_self_component_filter *self_component,
d94d92ac
PP
81 const char *name);
82
b19ff26f 83extern bt_self_component_port_input *
d94d92ac 84bt_self_component_filter_borrow_input_port_by_index(
b19ff26f 85 bt_self_component_filter *self_component,
d94d92ac
PP
86 uint64_t index);
87
d24d5663 88extern bt_self_component_add_port_status
d94d92ac 89bt_self_component_filter_add_input_port(
b19ff26f 90 bt_self_component_filter *self_component,
0d1c8791 91 const char *name, void *user_data,
b19ff26f 92 bt_self_component_port_input **self_component_port);
d94d92ac
PP
93
94#ifdef __cplusplus
95}
96#endif
97
924dc299 98#endif /* BABELTRACE2_GRAPH_SELF_COMPONENT_FILTER_H */
This page took 0.036119 seconds and 4 git commands to generate.