lib: remove unused _NO_SINK graph status
[babeltrace.git] / 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
24#define BT_LOG_TAG "COMP-FILTER"
25#include <babeltrace/lib-logging-internal.h>
26
c5b9b441
PP
27#include <babeltrace/assert-internal.h>
28#include <babeltrace/assert-pre-internal.h>
d94d92ac 29#include <babeltrace/compiler-internal.h>
c6bd8523 30#include <babeltrace/value.h>
d94d92ac 31#include <babeltrace/graph/self-component-filter.h>
0d72b8c3 32#include <babeltrace/graph/component-filter-const.h>
d94d92ac
PP
33#include <babeltrace/graph/component-filter-internal.h>
34#include <babeltrace/graph/component-internal.h>
35#include <babeltrace/graph/component-class-internal.h>
d94d92ac 36#include <babeltrace/graph/graph.h>
d94d92ac
PP
37
38BT_HIDDEN
39void bt_component_filter_destroy(struct bt_component *component)
40{
41}
42
43BT_HIDDEN
44struct bt_component *bt_component_filter_create(
0d72b8c3 45 const struct bt_component_class *class)
d94d92ac
PP
46{
47 struct bt_component_filter *filter = NULL;
48
49 filter = g_new0(struct bt_component_filter, 1);
50 if (!filter) {
51 BT_LOGE_STR("Failed to allocate one filter component.");
52 goto end;
53 }
54
55end:
56 return (void *) filter;
57}
58
752d0e47
SM
59const bt_component_class_filter *
60bt_component_filter_borrow_class_const(
61 const bt_component_filter *component)
62{
63 struct bt_component_class *cls;
64
65 BT_ASSERT_PRE_NON_NULL(component, "Component");
66
67 cls = component->parent.class;
68
69 BT_ASSERT(cls);
70 BT_ASSERT(cls->type == BT_COMPONENT_CLASS_TYPE_FILTER);
71
72 return (bt_component_class_filter *) cls;
73}
74
d94d92ac 75uint64_t bt_component_filter_get_output_port_count(
0d72b8c3 76 const struct bt_component_filter *comp)
d94d92ac
PP
77{
78 return bt_component_get_output_port_count((void *) comp);
79}
80
0d72b8c3
PP
81const struct bt_port_output *
82bt_component_filter_borrow_output_port_by_name_const(
83 const struct bt_component_filter *comp, const char *name)
d94d92ac
PP
84{
85 return bt_component_borrow_output_port_by_name(
86 (void *) comp, name);
87}
88
89struct bt_self_component_port_output *
90bt_self_component_filter_borrow_output_port_by_name(
91 struct bt_self_component_filter *comp, const char *name)
92{
93 return (void *) bt_component_borrow_output_port_by_name(
94 (void *) comp, name);
95}
96
0d72b8c3
PP
97const struct bt_port_output *
98bt_component_filter_borrow_output_port_by_index_const(
99 const struct bt_component_filter *comp, uint64_t index)
d94d92ac
PP
100{
101 return bt_component_borrow_output_port_by_index(
102 (void *) comp, index);
103}
104
105struct bt_self_component_port_output *
106bt_self_component_filter_borrow_output_port_by_index(
107 struct bt_self_component_filter *comp, uint64_t index)
108{
109 return (void *) bt_component_borrow_output_port_by_index(
110 (void *) comp, index);
111}
112
113enum bt_self_component_status bt_self_component_filter_add_output_port(
114 struct bt_self_component_filter *self_comp,
115 const char *name, void *user_data,
116 struct bt_self_component_port_output **self_port)
117{
118 struct bt_component *comp = (void *) self_comp;
119 int status = BT_SELF_COMPONENT_STATUS_OK;
120 struct bt_port *port = NULL;
121
122 /* bt_component_add_output_port() logs details and errors */
123 port = (void *) bt_component_add_output_port(comp, name, user_data);
124 if (!port) {
125 status = BT_SELF_COMPONENT_STATUS_NOMEM;
126 goto end;
127 }
128
129 if (self_port) {
130 /* Move reference to user */
131 *self_port = (void *) port;
132 port = NULL;
133 }
134
135end:
136 bt_object_put_ref(port);
137 return status;
138}
139
140uint64_t bt_component_filter_get_input_port_count(
0d72b8c3 141 const struct bt_component_filter *component)
d94d92ac
PP
142{
143 /* bt_component_get_input_port_count() logs details/errors */
144 return bt_component_get_input_port_count((void *) component);
145}
146
0d72b8c3
PP
147const struct bt_port_input *bt_component_filter_borrow_input_port_by_name_const(
148 const struct bt_component_filter *component, const char *name)
d94d92ac
PP
149{
150 /* bt_component_borrow_input_port_by_name() logs details/errors */
151 return bt_component_borrow_input_port_by_name(
152 (void *) component, name);
153}
154
155struct bt_self_component_port_input *
156bt_self_component_filter_borrow_input_port_by_name(
157 struct bt_self_component_filter *component, const char *name)
158{
159 /* bt_component_borrow_input_port_by_name() logs details/errors */
160 return (void *) bt_component_borrow_input_port_by_name(
161 (void *) component, name);
162}
163
0d72b8c3
PP
164const struct bt_port_input *
165bt_component_filter_borrow_input_port_by_index_const(
166 const struct bt_component_filter *component, uint64_t index)
d94d92ac
PP
167{
168 /* bt_component_borrow_input_port_by_index() logs details/errors */
169 return bt_component_borrow_input_port_by_index(
170 (void *) component, index);
171}
172
173struct bt_self_component_port_input *
174bt_self_component_filter_borrow_input_port_by_index(
175 struct bt_self_component_filter *component, uint64_t index)
176{
177 /* bt_component_borrow_input_port_by_index() logs details/errors */
178 return (void *) bt_component_borrow_input_port_by_index(
179 (void *) component, index);
180}
181
182enum bt_self_component_status bt_self_component_filter_add_input_port(
183 struct bt_self_component_filter *self_comp,
184 const char *name, void *user_data,
185 struct bt_self_component_port_input **self_port)
186{
187 int status = BT_SELF_COMPONENT_STATUS_OK;
188 struct bt_port *port = NULL;
189 struct bt_component *comp = (void *) self_comp;
190
191 /* bt_component_add_input_port() logs details/errors */
192 port = (void *) bt_component_add_input_port(comp, name, user_data);
193 if (!port) {
194 status = BT_SELF_COMPONENT_STATUS_NOMEM;
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.034585 seconds and 4 git commands to generate.