lib: strictly type function return status enumerations
[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
MJ
30#include <babeltrace2/value.h>
31#include <babeltrace2/graph/self-component-filter.h>
32#include <babeltrace2/graph/component-filter-const.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
51 filter = g_new0(struct bt_component_filter, 1);
52 if (!filter) {
53 BT_LOGE_STR("Failed to allocate one filter component.");
54 goto end;
55 }
56
57end:
58 return (void *) filter;
59}
60
752d0e47
SM
61const bt_component_class_filter *
62bt_component_filter_borrow_class_const(
63 const bt_component_filter *component)
64{
65 struct bt_component_class *cls;
66
67 BT_ASSERT_PRE_NON_NULL(component, "Component");
68
69 cls = component->parent.class;
70
71 BT_ASSERT(cls);
72 BT_ASSERT(cls->type == BT_COMPONENT_CLASS_TYPE_FILTER);
73
74 return (bt_component_class_filter *) cls;
75}
76
d94d92ac 77uint64_t bt_component_filter_get_output_port_count(
0d72b8c3 78 const struct bt_component_filter *comp)
d94d92ac
PP
79{
80 return bt_component_get_output_port_count((void *) comp);
81}
82
0d72b8c3
PP
83const struct bt_port_output *
84bt_component_filter_borrow_output_port_by_name_const(
85 const struct bt_component_filter *comp, const char *name)
d94d92ac
PP
86{
87 return bt_component_borrow_output_port_by_name(
88 (void *) comp, name);
89}
90
91struct bt_self_component_port_output *
92bt_self_component_filter_borrow_output_port_by_name(
93 struct bt_self_component_filter *comp, const char *name)
94{
95 return (void *) bt_component_borrow_output_port_by_name(
96 (void *) comp, name);
97}
98
0d72b8c3
PP
99const struct bt_port_output *
100bt_component_filter_borrow_output_port_by_index_const(
101 const struct bt_component_filter *comp, uint64_t index)
d94d92ac
PP
102{
103 return bt_component_borrow_output_port_by_index(
104 (void *) comp, index);
105}
106
107struct bt_self_component_port_output *
108bt_self_component_filter_borrow_output_port_by_index(
109 struct bt_self_component_filter *comp, uint64_t index)
110{
111 return (void *) bt_component_borrow_output_port_by_index(
112 (void *) comp, index);
113}
114
d24d5663 115enum bt_self_component_add_port_status bt_self_component_filter_add_output_port(
d94d92ac
PP
116 struct bt_self_component_filter *self_comp,
117 const char *name, void *user_data,
118 struct bt_self_component_port_output **self_port)
119{
120 struct bt_component *comp = (void *) self_comp;
d24d5663 121 enum bt_self_component_add_port_status status;
d94d92ac
PP
122 struct bt_port *port = NULL;
123
124 /* bt_component_add_output_port() logs details and errors */
8cc56726 125 status = bt_component_add_output_port(comp, name, user_data, &port);
d24d5663 126 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
127 goto end;
128 }
129
130 if (self_port) {
131 /* Move reference to user */
132 *self_port = (void *) port;
133 port = NULL;
134 }
135
136end:
137 bt_object_put_ref(port);
138 return status;
139}
140
141uint64_t bt_component_filter_get_input_port_count(
0d72b8c3 142 const struct bt_component_filter *component)
d94d92ac
PP
143{
144 /* bt_component_get_input_port_count() logs details/errors */
145 return bt_component_get_input_port_count((void *) component);
146}
147
0d72b8c3
PP
148const struct bt_port_input *bt_component_filter_borrow_input_port_by_name_const(
149 const struct bt_component_filter *component, const char *name)
d94d92ac
PP
150{
151 /* bt_component_borrow_input_port_by_name() logs details/errors */
152 return bt_component_borrow_input_port_by_name(
153 (void *) component, name);
154}
155
156struct bt_self_component_port_input *
157bt_self_component_filter_borrow_input_port_by_name(
158 struct bt_self_component_filter *component, const char *name)
159{
160 /* bt_component_borrow_input_port_by_name() logs details/errors */
161 return (void *) bt_component_borrow_input_port_by_name(
162 (void *) component, name);
163}
164
0d72b8c3
PP
165const struct bt_port_input *
166bt_component_filter_borrow_input_port_by_index_const(
167 const struct bt_component_filter *component, uint64_t index)
d94d92ac
PP
168{
169 /* bt_component_borrow_input_port_by_index() logs details/errors */
170 return bt_component_borrow_input_port_by_index(
171 (void *) component, index);
172}
173
174struct bt_self_component_port_input *
175bt_self_component_filter_borrow_input_port_by_index(
176 struct bt_self_component_filter *component, uint64_t index)
177{
178 /* bt_component_borrow_input_port_by_index() logs details/errors */
179 return (void *) bt_component_borrow_input_port_by_index(
180 (void *) component, index);
181}
182
d24d5663 183enum bt_self_component_add_port_status bt_self_component_filter_add_input_port(
d94d92ac
PP
184 struct bt_self_component_filter *self_comp,
185 const char *name, void *user_data,
186 struct bt_self_component_port_input **self_port)
187{
d24d5663 188 enum bt_self_component_add_port_status status;
d94d92ac
PP
189 struct bt_port *port = NULL;
190 struct bt_component *comp = (void *) self_comp;
191
192 /* bt_component_add_input_port() logs details/errors */
8cc56726 193 status = bt_component_add_input_port(comp, name, user_data, &port);
d24d5663 194 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
195 goto end;
196 }
197
198 if (self_port) {
199 /* Move reference to user */
200 *self_port = (void *) port;
201 port = NULL;
202 }
203
204end:
205 bt_object_put_ref(port);
206 return status;
207}
c5b9b441
PP
208
209void bt_component_filter_get_ref(
210 const struct bt_component_filter *component_filter)
211{
212 bt_object_get_ref(component_filter);
213}
214
215void bt_component_filter_put_ref(
216 const struct bt_component_filter *component_filter)
217{
218 bt_object_put_ref(component_filter);
219}
This page took 0.038565 seconds and 4 git commands to generate.