Remove default port API
[babeltrace.git] / lib / graph / filter.c
CommitLineData
34ac9eaf
JG
1/*
2 * filter.c
3 *
4 * Babeltrace Filter Component
5 *
6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
3d9990ac 29#include <babeltrace/compiler-internal.h>
34ac9eaf 30#include <babeltrace/values.h>
b2e0c907
PP
31#include <babeltrace/graph/component-filter-internal.h>
32#include <babeltrace/graph/component-internal.h>
33#include <babeltrace/graph/component-class-internal.h>
34#include <babeltrace/graph/notification.h>
35#include <babeltrace/graph/notification-iterator-internal.h>
34ac9eaf 36
72b913fb 37BT_HIDDEN
366e034f
JG
38void bt_component_filter_destroy(struct bt_component *component)
39{
34a9ed19
JG
40}
41
366e034f
JG
42BT_HIDDEN
43struct bt_component *bt_component_filter_create(
44 struct bt_component_class *class, struct bt_value *params)
34a9ed19 45{
366e034f 46 struct bt_component_filter *filter = NULL;
34a9ed19 47
366e034f
JG
48 filter = g_new0(struct bt_component_filter, 1);
49 if (!filter) {
34a9ed19
JG
50 goto end;
51 }
52
34a9ed19 53end:
366e034f 54 return filter ? &filter->parent : NULL;
34a9ed19
JG
55}
56
366e034f
JG
57BT_HIDDEN
58enum bt_component_status bt_component_filter_validate(
59 struct bt_component *component)
34a9ed19 60{
34a9ed19
JG
61 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
62
366e034f 63 if (!component) {
34a9ed19
JG
64 ret = BT_COMPONENT_STATUS_INVALID;
65 goto end;
66 }
67
366e034f
JG
68 if (!component->class) {
69 ret = BT_COMPONENT_STATUS_INVALID;
34a9ed19
JG
70 goto end;
71 }
72
366e034f 73 if (component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
34a9ed19
JG
74 ret = BT_COMPONENT_STATUS_INVALID;
75 goto end;
76 }
77
366e034f 78 /* Enforce iterator limits. */
34a9ed19
JG
79end:
80 return ret;
81}
82
544d0515 83int64_t bt_component_filter_get_input_port_count(
9ac68eb1 84 struct bt_component *component)
34a9ed19 85{
544d0515 86 int64_t ret;
34a9ed19 87
544d0515 88 if (!component ||
72b913fb 89 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
9ac68eb1 90 ret = (int64_t) -1;
34a9ed19
JG
91 goto end;
92 }
93
9ac68eb1 94 ret = (int64_t) bt_component_get_input_port_count(component);
366e034f 95end:
544d0515 96 return ret;
366e034f
JG
97}
98
9ac68eb1 99struct bt_port *bt_component_filter_get_input_port_by_name(
366e034f
JG
100 struct bt_component *component, const char *name)
101{
72b913fb 102 struct bt_port *port = NULL;
366e034f
JG
103
104 if (!component || !name ||
105 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
34a9ed19
JG
106 goto end;
107 }
108
9ac68eb1 109 port = bt_component_get_input_port_by_name(component, name);
366e034f 110end:
72b913fb 111 return port;
366e034f 112}
d3e4dcd8 113
9ac68eb1
PP
114struct bt_port *bt_component_filter_get_input_port_by_index(
115 struct bt_component *component, uint64_t index)
366e034f
JG
116{
117 struct bt_port *port = NULL;
366e034f
JG
118
119 if (!component ||
120 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
121 goto end;
34a9ed19
JG
122 }
123
9ac68eb1 124 port = bt_component_get_input_port_by_index(component, index);
34a9ed19 125end:
366e034f 126 return port;
34a9ed19
JG
127}
128
544d0515 129int64_t bt_component_filter_get_output_port_count(
9ac68eb1 130 struct bt_component *component)
526fc31a 131{
544d0515 132 int64_t ret;
526fc31a 133
9ac68eb1 134 if (!component ||
72b913fb 135 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
9ac68eb1 136 ret = (int64_t) -1;
526fc31a
JG
137 goto end;
138 }
139
544d0515 140 ret = bt_component_get_output_port_count(component);
526fc31a 141end:
544d0515 142 return ret;
526fc31a
JG
143}
144
9ac68eb1 145struct bt_port *bt_component_filter_get_output_port_by_name(
366e034f 146 struct bt_component *component, const char *name)
526fc31a 147{
72b913fb 148 struct bt_port *port = NULL;
526fc31a 149
366e034f
JG
150 if (!component || !name ||
151 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
152 goto end;
153 }
154
9ac68eb1 155 port = bt_component_get_output_port_by_name(component, name);
366e034f 156end:
72b913fb 157 return port;
366e034f
JG
158}
159
9ac68eb1
PP
160struct bt_port *bt_component_filter_get_output_port_by_index(
161 struct bt_component *component, uint64_t index)
366e034f
JG
162{
163 struct bt_port *port = NULL;
366e034f
JG
164
165 if (!component ||
166 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
167 goto end;
168 }
169
9ac68eb1 170 port = bt_component_get_output_port_by_index(component, index);
366e034f
JG
171end:
172 return port;
173}
174
890882ef 175struct bt_private_port *
9ac68eb1
PP
176bt_private_component_filter_get_input_private_port_by_index(
177 struct bt_private_component *private_component, uint64_t index)
890882ef
PP
178{
179 return bt_private_port_from_port(
9ac68eb1 180 bt_component_filter_get_input_port_by_index(
890882ef
PP
181 bt_component_from_private(private_component), index));
182}
183
184struct bt_private_port *
b9d103be
PP
185bt_private_component_filter_get_input_private_port_by_name(
186 struct bt_private_component *private_component,
187 const char *name)
890882ef
PP
188{
189 return bt_private_port_from_port(
b9d103be
PP
190 bt_component_filter_get_input_port_by_name(
191 bt_component_from_private(private_component), name));
890882ef
PP
192}
193
194struct bt_private_port *bt_private_component_filter_add_input_private_port(
195 struct bt_private_component *private_component,
3e9b0023 196 const char *name, void *user_data)
890882ef
PP
197{
198 struct bt_port *port = NULL;
199 struct bt_component *component =
200 bt_component_from_private(private_component);
201
202 if (!component ||
203 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
204 goto end;
205 }
206
3e9b0023 207 port = bt_component_add_input_port(component, name, user_data);
890882ef
PP
208end:
209 return bt_private_port_from_port(port);
210}
211
212struct bt_private_port *
9ac68eb1
PP
213bt_private_component_filter_get_output_private_port_by_index(
214 struct bt_private_component *private_component, uint64_t index)
890882ef
PP
215{
216 return bt_private_port_from_port(
9ac68eb1 217 bt_component_filter_get_output_port_by_index(
890882ef
PP
218 bt_component_from_private(private_component), index));
219}
220
221struct bt_private_port *
b9d103be
PP
222bt_private_component_filter_get_output_private_port_by_name(
223 struct bt_private_component *private_component,
224 const char *name)
890882ef
PP
225{
226 return bt_private_port_from_port(
b9d103be
PP
227 bt_component_filter_get_output_port_by_name(
228 bt_component_from_private(private_component), name));
890882ef
PP
229}
230
231struct bt_private_port *bt_private_component_filter_add_output_private_port(
232 struct bt_private_component *private_component,
3e9b0023 233 const char *name, void *user_data)
366e034f 234{
72b913fb 235 struct bt_port *port = NULL;
890882ef
PP
236 struct bt_component *component =
237 bt_component_from_private(private_component);
366e034f
JG
238
239 if (!component ||
240 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
241 goto end;
242 }
243
3e9b0023 244 port = bt_component_add_output_port(component, name, user_data);
366e034f 245end:
890882ef 246 return bt_private_port_from_port(port);
366e034f 247}
This page took 0.038619 seconds and 4 git commands to generate.