Allow a component to remove a port and any user to disconnect one
[babeltrace.git] / lib / component / 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
29#include <babeltrace/compiler.h>
30#include <babeltrace/values.h>
d71dcf2c 31#include <babeltrace/component/component-filter-internal.h>
33b34c43 32#include <babeltrace/component/component-internal.h>
d3e4dcd8 33#include <babeltrace/component/component-class-internal.h>
33b34c43
PP
34#include <babeltrace/component/notification/notification.h>
35#include <babeltrace/component/notification/iterator-internal.h>
34ac9eaf 36
920b1d51 37BT_HIDDEN
366e034f
JG
38struct bt_notification_iterator *bt_component_filter_create_notification_iterator(
39 struct bt_component *component)
34a9ed19 40{
366e034f
JG
41 return bt_component_create_iterator(component, NULL);
42}
34a9ed19 43
920b1d51 44BT_HIDDEN
366e034f
JG
45struct bt_notification_iterator *bt_component_filter_create_notification_iterator_with_init_method_data(
46 struct bt_component *component, void *init_method_data)
47{
48 return bt_component_create_iterator(component, init_method_data);
49}
34a9ed19 50
72b913fb 51BT_HIDDEN
366e034f
JG
52void bt_component_filter_destroy(struct bt_component *component)
53{
34a9ed19
JG
54}
55
366e034f
JG
56BT_HIDDEN
57struct bt_component *bt_component_filter_create(
58 struct bt_component_class *class, struct bt_value *params)
34a9ed19 59{
366e034f 60 struct bt_component_filter *filter = NULL;
34a9ed19 61
366e034f
JG
62 filter = g_new0(struct bt_component_filter, 1);
63 if (!filter) {
34a9ed19
JG
64 goto end;
65 }
66
34a9ed19 67end:
366e034f 68 return filter ? &filter->parent : NULL;
34a9ed19
JG
69}
70
366e034f
JG
71BT_HIDDEN
72enum bt_component_status bt_component_filter_validate(
73 struct bt_component *component)
34a9ed19 74{
34a9ed19
JG
75 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
76
366e034f 77 if (!component) {
34a9ed19
JG
78 ret = BT_COMPONENT_STATUS_INVALID;
79 goto end;
80 }
81
366e034f
JG
82 if (!component->class) {
83 ret = BT_COMPONENT_STATUS_INVALID;
34a9ed19
JG
84 goto end;
85 }
86
366e034f 87 if (component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
34a9ed19
JG
88 ret = BT_COMPONENT_STATUS_INVALID;
89 goto end;
90 }
91
366e034f 92 /* Enforce iterator limits. */
34a9ed19
JG
93end:
94 return ret;
95}
96
346df6cf
JG
97enum bt_component_status bt_component_filter_get_input_port_count(
98 struct bt_component *component, uint64_t *count)
34a9ed19 99{
346df6cf 100 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
34a9ed19 101
72b913fb
PP
102 if (!component || !count ||
103 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
346df6cf 104 status = BT_COMPONENT_STATUS_INVALID;
34a9ed19
JG
105 goto end;
106 }
107
72b913fb 108 *count = bt_component_get_input_port_count(component);
366e034f 109end:
346df6cf 110 return status;
366e034f
JG
111}
112
113struct bt_port *bt_component_filter_get_input_port(
114 struct bt_component *component, const char *name)
115{
72b913fb 116 struct bt_port *port = NULL;
366e034f
JG
117
118 if (!component || !name ||
119 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
34a9ed19
JG
120 goto end;
121 }
122
72b913fb 123 port = bt_component_get_input_port(component, name);
366e034f 124end:
72b913fb 125 return port;
366e034f 126}
d3e4dcd8 127
366e034f
JG
128struct bt_port *bt_component_filter_get_input_port_at_index(
129 struct bt_component *component, int index)
130{
131 struct bt_port *port = NULL;
366e034f
JG
132
133 if (!component ||
134 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
135 goto end;
34a9ed19
JG
136 }
137
72b913fb 138 port = bt_component_get_input_port_at_index(component, index);
34a9ed19 139end:
366e034f 140 return port;
34a9ed19
JG
141}
142
366e034f 143struct bt_port *bt_component_filter_get_default_input_port(
34a9ed19
JG
144 struct bt_component *component)
145{
366e034f
JG
146 return bt_component_filter_get_input_port(component,
147 DEFAULT_INPUT_PORT_NAME);
8b0ce102
PP
148}
149
366e034f
JG
150struct bt_port *bt_component_filter_add_input_port(
151 struct bt_component *component, const char *name)
8b0ce102 152{
72b913fb 153 struct bt_port *port = NULL;
366e034f
JG
154
155 if (!component ||
156 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
366e034f
JG
157 goto end;
158 }
159
72b913fb 160 port = bt_component_add_input_port(component, name);
366e034f
JG
161end:
162 return port;
34a9ed19 163}
526fc31a 164
346df6cf
JG
165enum bt_component_status bt_component_filter_get_output_port_count(
166 struct bt_component *component, uint64_t *count)
526fc31a 167{
346df6cf 168 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
526fc31a 169
72b913fb
PP
170 if (!component || !count ||
171 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
346df6cf 172 status = BT_COMPONENT_STATUS_INVALID;
526fc31a
JG
173 goto end;
174 }
175
72b913fb 176 *count = bt_component_get_output_port_count(component);
526fc31a 177end:
346df6cf 178 return status;
526fc31a
JG
179}
180
366e034f
JG
181struct bt_port *bt_component_filter_get_output_port(
182 struct bt_component *component, const char *name)
526fc31a 183{
72b913fb 184 struct bt_port *port = NULL;
526fc31a 185
366e034f
JG
186 if (!component || !name ||
187 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
188 goto end;
189 }
190
72b913fb 191 port = bt_component_get_output_port(component, name);
366e034f 192end:
72b913fb 193 return port;
366e034f
JG
194}
195
196struct bt_port *bt_component_filter_get_output_port_at_index(
197 struct bt_component *component, int index)
198{
199 struct bt_port *port = NULL;
366e034f
JG
200
201 if (!component ||
202 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
203 goto end;
204 }
205
72b913fb 206 port = bt_component_get_output_port_at_index(component, index);
366e034f
JG
207end:
208 return port;
209}
210
211struct bt_port *bt_component_filter_get_default_output_port(
212 struct bt_component *component)
213{
214 return bt_component_filter_get_output_port(component,
215 DEFAULT_OUTPUT_PORT_NAME);
216}
217
218struct bt_port *bt_component_filter_add_output_port(
219 struct bt_component *component, const char *name)
220{
72b913fb 221 struct bt_port *port = NULL;
366e034f
JG
222
223 if (!component ||
224 component->class->type != BT_COMPONENT_CLASS_TYPE_FILTER) {
526fc31a
JG
225 goto end;
226 }
227
72b913fb 228 port = bt_component_add_output_port(component, name);
366e034f
JG
229end:
230 return port;
231}
This page took 0.037066 seconds and 4 git commands to generate.