Document libbabeltrace2's C API
[babeltrace.git] / src / lib / graph / component-filter.c
CommitLineData
d94d92ac 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d94d92ac
PP
3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
d94d92ac
PP
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
350ad6c1 24#define BT_LOG_TAG "LIB/COMPONENT-FILTER"
c2d9d9cf 25#include "lib/logging.h"
d94d92ac 26
578e048b
MJ
27#include "common/assert.h"
28#include "lib/assert-pre.h"
29#include "compat/compiler.h"
3fadfbc0 30#include <babeltrace2/value.h>
43c59509
PP
31#include <babeltrace2/graph/self-component.h>
32#include <babeltrace2/graph/component.h>
3fadfbc0 33#include <babeltrace2/graph/graph.h>
d94d92ac 34
578e048b
MJ
35#include "component-filter.h"
36#include "component.h"
37#include "component-class.h"
d24d5663 38#include "lib/func-status.h"
578e048b 39
d94d92ac
PP
40BT_HIDDEN
41void bt_component_filter_destroy(struct bt_component *component)
42{
43}
44
45BT_HIDDEN
46struct bt_component *bt_component_filter_create(
0d72b8c3 47 const struct bt_component_class *class)
d94d92ac
PP
48{
49 struct bt_component_filter *filter = NULL;
50
17f3083a
SM
51 BT_ASSERT_PRE_NO_ERROR();
52
d94d92ac
PP
53 filter = g_new0(struct bt_component_filter, 1);
54 if (!filter) {
870631a2
PP
55 BT_LIB_LOGE_APPEND_CAUSE(
56 "Failed to allocate one filter component.");
d94d92ac
PP
57 goto end;
58 }
59
60end:
61 return (void *) filter;
62}
63
752d0e47
SM
64const bt_component_class_filter *
65bt_component_filter_borrow_class_const(
66 const bt_component_filter *component)
67{
68 struct bt_component_class *cls;
69
bdb288b3 70 BT_ASSERT_PRE_DEV_NON_NULL(component, "Component");
752d0e47
SM
71
72 cls = component->parent.class;
73
98b15851
PP
74 BT_ASSERT_DBG(cls);
75 BT_ASSERT_DBG(cls->type == BT_COMPONENT_CLASS_TYPE_FILTER);
752d0e47
SM
76
77 return (bt_component_class_filter *) cls;
78}
79
d94d92ac 80uint64_t bt_component_filter_get_output_port_count(
0d72b8c3 81 const struct bt_component_filter *comp)
d94d92ac
PP
82{
83 return bt_component_get_output_port_count((void *) comp);
84}
85
0d72b8c3
PP
86const struct bt_port_output *
87bt_component_filter_borrow_output_port_by_name_const(
88 const struct bt_component_filter *comp, const char *name)
d94d92ac
PP
89{
90 return bt_component_borrow_output_port_by_name(
91 (void *) comp, name);
92}
93
94struct bt_self_component_port_output *
95bt_self_component_filter_borrow_output_port_by_name(
96 struct bt_self_component_filter *comp, const char *name)
97{
98 return (void *) bt_component_borrow_output_port_by_name(
99 (void *) comp, name);
100}
101
0d72b8c3
PP
102const struct bt_port_output *
103bt_component_filter_borrow_output_port_by_index_const(
104 const struct bt_component_filter *comp, uint64_t index)
d94d92ac
PP
105{
106 return bt_component_borrow_output_port_by_index(
107 (void *) comp, index);
108}
109
110struct bt_self_component_port_output *
111bt_self_component_filter_borrow_output_port_by_index(
112 struct bt_self_component_filter *comp, uint64_t index)
113{
114 return (void *) bt_component_borrow_output_port_by_index(
115 (void *) comp, index);
116}
117
d24d5663 118enum bt_self_component_add_port_status bt_self_component_filter_add_output_port(
d94d92ac
PP
119 struct bt_self_component_filter *self_comp,
120 const char *name, void *user_data,
121 struct bt_self_component_port_output **self_port)
122{
123 struct bt_component *comp = (void *) self_comp;
d24d5663 124 enum bt_self_component_add_port_status status;
d94d92ac
PP
125 struct bt_port *port = NULL;
126
17f3083a
SM
127 BT_ASSERT_PRE_NO_ERROR();
128
d94d92ac 129 /* bt_component_add_output_port() logs details and errors */
8cc56726 130 status = bt_component_add_output_port(comp, name, user_data, &port);
d24d5663 131 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
132 goto end;
133 }
134
135 if (self_port) {
136 /* Move reference to user */
137 *self_port = (void *) port;
d94d92ac
PP
138 }
139
140end:
141 bt_object_put_ref(port);
142 return status;
143}
144
145uint64_t bt_component_filter_get_input_port_count(
0d72b8c3 146 const struct bt_component_filter *component)
d94d92ac
PP
147{
148 /* bt_component_get_input_port_count() logs details/errors */
149 return bt_component_get_input_port_count((void *) component);
150}
151
0d72b8c3
PP
152const struct bt_port_input *bt_component_filter_borrow_input_port_by_name_const(
153 const struct bt_component_filter *component, const char *name)
d94d92ac
PP
154{
155 /* bt_component_borrow_input_port_by_name() logs details/errors */
156 return bt_component_borrow_input_port_by_name(
157 (void *) component, name);
158}
159
160struct bt_self_component_port_input *
161bt_self_component_filter_borrow_input_port_by_name(
162 struct bt_self_component_filter *component, const char *name)
163{
164 /* bt_component_borrow_input_port_by_name() logs details/errors */
165 return (void *) bt_component_borrow_input_port_by_name(
166 (void *) component, name);
167}
168
0d72b8c3
PP
169const struct bt_port_input *
170bt_component_filter_borrow_input_port_by_index_const(
171 const struct bt_component_filter *component, uint64_t index)
d94d92ac
PP
172{
173 /* bt_component_borrow_input_port_by_index() logs details/errors */
174 return bt_component_borrow_input_port_by_index(
175 (void *) component, index);
176}
177
178struct bt_self_component_port_input *
179bt_self_component_filter_borrow_input_port_by_index(
180 struct bt_self_component_filter *component, uint64_t index)
181{
182 /* bt_component_borrow_input_port_by_index() logs details/errors */
183 return (void *) bt_component_borrow_input_port_by_index(
184 (void *) component, index);
185}
186
d24d5663 187enum bt_self_component_add_port_status bt_self_component_filter_add_input_port(
d94d92ac
PP
188 struct bt_self_component_filter *self_comp,
189 const char *name, void *user_data,
190 struct bt_self_component_port_input **self_port)
191{
d24d5663 192 enum bt_self_component_add_port_status status;
d94d92ac
PP
193 struct bt_port *port = NULL;
194 struct bt_component *comp = (void *) self_comp;
195
17f3083a
SM
196 BT_ASSERT_PRE_NO_ERROR();
197
d94d92ac 198 /* bt_component_add_input_port() logs details/errors */
8cc56726 199 status = bt_component_add_input_port(comp, name, user_data, &port);
d24d5663 200 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
201 goto end;
202 }
203
204 if (self_port) {
205 /* Move reference to user */
206 *self_port = (void *) port;
d94d92ac
PP
207 }
208
209end:
210 bt_object_put_ref(port);
211 return status;
212}
c5b9b441
PP
213
214void bt_component_filter_get_ref(
215 const struct bt_component_filter *component_filter)
216{
217 bt_object_get_ref(component_filter);
218}
219
220void bt_component_filter_put_ref(
221 const struct bt_component_filter *component_filter)
222{
223 bt_object_put_ref(component_filter);
224}
This page took 0.05879 seconds and 4 git commands to generate.