lib: de-duplicate "no error" assertion in add port functions
[babeltrace.git] / src / lib / graph / component-filter.c
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 */
7
8 #define BT_LOG_TAG "LIB/COMPONENT-FILTER"
9 #include "lib/logging.h"
10
11 #include "common/assert.h"
12 #include "lib/assert-cond.h"
13 #include "compat/compiler.h"
14 #include <babeltrace2/value.h>
15 #include <babeltrace2/graph/self-component.h>
16 #include <babeltrace2/graph/component.h>
17 #include <babeltrace2/graph/graph.h>
18
19 #include "component-filter.h"
20 #include "component.h"
21 #include "component-class.h"
22 #include "lib/func-status.h"
23
24 void bt_component_filter_destroy(struct bt_component *component)
25 {
26 }
27
28 struct bt_component *bt_component_filter_create(
29 const struct bt_component_class *class)
30 {
31 struct bt_component_filter *filter = NULL;
32
33 filter = g_new0(struct bt_component_filter, 1);
34 if (!filter) {
35 BT_LIB_LOGE_APPEND_CAUSE(
36 "Failed to allocate one filter component.");
37 goto end;
38 }
39
40 end:
41 return (void *) filter;
42 }
43
44 BT_EXPORT
45 const bt_component_class_filter *
46 bt_component_filter_borrow_class_const(
47 const bt_component_filter *component)
48 {
49 struct bt_component_class *cls;
50
51 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
52
53 cls = component->parent.class;
54
55 BT_ASSERT_DBG(cls);
56 BT_ASSERT_DBG(cls->type == BT_COMPONENT_CLASS_TYPE_FILTER);
57
58 return (bt_component_class_filter *) cls;
59 }
60
61 BT_EXPORT
62 uint64_t bt_component_filter_get_output_port_count(
63 const struct bt_component_filter *comp)
64 {
65 /* bt_component_get_output_port_count() checks preconditions */
66 return bt_component_get_output_port_count((void *) comp, __func__);
67 }
68
69 BT_EXPORT
70 const struct bt_port_output *
71 bt_component_filter_borrow_output_port_by_name_const(
72 const struct bt_component_filter *comp, const char *name)
73 {
74 /*
75 * bt_component_borrow_output_port_by_name() logs details/errors
76 * and checks preconditions.
77 */
78 return bt_component_borrow_output_port_by_name(
79 (void *) comp, name, __func__);
80 }
81
82 BT_EXPORT
83 struct bt_self_component_port_output *
84 bt_self_component_filter_borrow_output_port_by_name(
85 struct bt_self_component_filter *comp, const char *name)
86 {
87 /*
88 * bt_component_borrow_output_port_by_name() logs details/errors
89 * and checks preconditions.
90 */
91 return (void *) bt_component_borrow_output_port_by_name(
92 (void *) comp, name, __func__);
93 }
94
95 BT_EXPORT
96 const struct bt_port_output *
97 bt_component_filter_borrow_output_port_by_index_const(
98 const struct bt_component_filter *comp, uint64_t index)
99 {
100 /*
101 * bt_component_borrow_output_port_by_index() logs
102 * details/errors and checks preconditions.
103 */
104 return bt_component_borrow_output_port_by_index(
105 (void *) comp, index, __func__);
106 }
107
108 BT_EXPORT
109 struct bt_self_component_port_output *
110 bt_self_component_filter_borrow_output_port_by_index(
111 struct bt_self_component_filter *comp, uint64_t index)
112 {
113 /*
114 * bt_component_borrow_output_port_by_index() logs
115 * details/errors and checks preconditions.
116 */
117 return (void *) bt_component_borrow_output_port_by_index(
118 (void *) comp, index, __func__);
119 }
120
121 BT_EXPORT
122 enum bt_self_component_add_port_status bt_self_component_filter_add_output_port(
123 struct bt_self_component_filter *self_comp,
124 const char *name, void *user_data,
125 struct bt_self_component_port_output **self_port)
126 {
127 struct bt_component *comp = (void *) self_comp;
128 enum bt_self_component_add_port_status status;
129 struct bt_port *port = NULL;
130
131 /*
132 * bt_component_add_output_port() logs details/errors and checks
133 * preconditions.
134 */
135 status = bt_component_add_output_port(comp, name, user_data, &port,
136 __func__);
137 if (status != BT_FUNC_STATUS_OK) {
138 goto end;
139 }
140
141 if (self_port) {
142 /* Move reference to user */
143 *self_port = (void *) port;
144 }
145
146 end:
147 bt_object_put_ref(port);
148 return status;
149 }
150
151 BT_EXPORT
152 uint64_t bt_component_filter_get_input_port_count(
153 const struct bt_component_filter *component)
154 {
155 /* bt_component_get_input_port_count() checks preconditions */
156 return bt_component_get_input_port_count((void *) component, __func__);
157 }
158
159 BT_EXPORT
160 const struct bt_port_input *bt_component_filter_borrow_input_port_by_name_const(
161 const struct bt_component_filter *component, const char *name)
162 {
163 /*
164 * bt_component_borrow_input_port_by_name() logs details/errors
165 * and checks preconditions.
166 */
167 return bt_component_borrow_input_port_by_name(
168 (void *) component, name, __func__);
169 }
170
171 BT_EXPORT
172 struct bt_self_component_port_input *
173 bt_self_component_filter_borrow_input_port_by_name(
174 struct bt_self_component_filter *component, const char *name)
175 {
176 /*
177 * bt_component_borrow_input_port_by_name() logs details/errors
178 * and checks preconditions.
179 */
180 return (void *) bt_component_borrow_input_port_by_name(
181 (void *) component, name, __func__);
182 }
183
184 BT_EXPORT
185 const struct bt_port_input *
186 bt_component_filter_borrow_input_port_by_index_const(
187 const struct bt_component_filter *component, uint64_t index)
188 {
189 /*
190 * bt_component_borrow_input_port_by_index() logs details/errors
191 * and checks preconditions.
192 */
193 return bt_component_borrow_input_port_by_index(
194 (void *) component, index, __func__);
195 }
196
197 BT_EXPORT
198 struct bt_self_component_port_input *
199 bt_self_component_filter_borrow_input_port_by_index(
200 struct bt_self_component_filter *component, uint64_t index)
201 {
202 /*
203 * bt_component_borrow_input_port_by_index() logs details/errors
204 * and checks preconditions.
205 */
206 return (void *) bt_component_borrow_input_port_by_index(
207 (void *) component, index, __func__);
208 }
209
210 BT_EXPORT
211 enum bt_self_component_add_port_status bt_self_component_filter_add_input_port(
212 struct bt_self_component_filter *self_comp,
213 const char *name, void *user_data,
214 struct bt_self_component_port_input **self_port)
215 {
216 enum bt_self_component_add_port_status status;
217 struct bt_port *port = NULL;
218 struct bt_component *comp = (void *) self_comp;
219
220 /*
221 * bt_component_add_input_port() logs details/errors and checks
222 * preconditions.
223 */
224 status = bt_component_add_input_port(comp, name, user_data, &port,
225 __func__);
226 if (status != BT_FUNC_STATUS_OK) {
227 goto end;
228 }
229
230 if (self_port) {
231 /* Move reference to user */
232 *self_port = (void *) port;
233 }
234
235 end:
236 bt_object_put_ref(port);
237 return status;
238 }
239
240 BT_EXPORT
241 void bt_component_filter_get_ref(
242 const struct bt_component_filter *component_filter)
243 {
244 bt_object_get_ref(component_filter);
245 }
246
247 BT_EXPORT
248 void bt_component_filter_put_ref(
249 const struct bt_component_filter *component_filter)
250 {
251 bt_object_put_ref(component_filter);
252 }
This page took 0.03391 seconds and 4 git commands to generate.