Add ports to the source, filter and sink component interfaces
[babeltrace.git] / lib / component / sink.c
CommitLineData
0d884c50
JG
1/*
2 * sink.c
3 *
47e5a032 4 * Babeltrace Sink Component
0d884c50
JG
5 *
6 * Copyright 2015 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>
fec2a9f2 30#include <babeltrace/values.h>
d71dcf2c 31#include <babeltrace/component/component-sink-internal.h>
33b34c43
PP
32#include <babeltrace/component/component-internal.h>
33#include <babeltrace/component/notification/notification.h>
0d884c50 34
7c7c0433
JG
35BT_HIDDEN
36enum bt_component_status bt_component_sink_validate(
37 struct bt_component *component)
38{
9defb2e2 39 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
9defb2e2 40
4f0a761c
JG
41 if (!component) {
42 ret = BT_COMPONENT_STATUS_INVALID;
43 goto end;
44 }
45
46 if (!component->class) {
47 ret = BT_COMPONENT_STATUS_INVALID;
48 goto end;
49 }
50
d3e4dcd8 51 if (component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
4f0a761c
JG
52 ret = BT_COMPONENT_STATUS_INVALID;
53 goto end;
54 }
9defb2e2
JG
55end:
56 return ret;
0d884c50
JG
57}
58
fec2a9f2
JG
59static
60void bt_component_sink_destroy(struct bt_component *component)
61{
62 struct bt_component_sink *sink = container_of(component,
63 struct bt_component_sink, parent);
64
366e034f
JG
65 if (sink->input_ports) {
66 g_ptr_array_free(sink->input_ports, TRUE);
67 }
fec2a9f2
JG
68}
69
8738a040 70BT_HIDDEN
fb2dcc52 71struct bt_component *bt_component_sink_create(
7c7c0433 72 struct bt_component_class *class, struct bt_value *params)
0d884c50
JG
73{
74 struct bt_component_sink *sink = NULL;
75 enum bt_component_status ret;
76
0d884c50
JG
77 sink = g_new0(struct bt_component_sink, 1);
78 if (!sink) {
79 goto end;
80 }
81
9e9504c7 82 sink->parent.class = bt_get(class);
fec2a9f2 83 ret = bt_component_init(&sink->parent, bt_component_sink_destroy);
0d884c50 84 if (ret != BT_COMPONENT_STATUS_OK) {
9e9504c7
JG
85 goto error;
86 }
87
fec2a9f2 88/*
9e9504c7
JG
89 ret = bt_component_sink_register_notification_type(&sink->parent,
90 BT_NOTIFICATION_TYPE_EVENT);
91 if (ret != BT_COMPONENT_STATUS_OK) {
92 goto error;
0d884c50 93 }
fec2a9f2 94*/
366e034f
JG
95 ret = bt_component_init_input_ports(&sink->parent,
96 &sink->input_ports);
97 if (ret) {
fec2a9f2
JG
98 goto error;
99 }
366e034f 100
0d884c50
JG
101end:
102 return sink ? &sink->parent : NULL;
9e9504c7
JG
103error:
104 BT_PUT(sink);
105 return NULL;
0d884c50 106}
fa55ed98 107
fec2a9f2
JG
108enum bt_component_status bt_component_sink_consume(
109 struct bt_component *component)
fa55ed98
JG
110{
111 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
d3e4dcd8 112 struct bt_component_class_sink *sink_class = NULL;
fa55ed98 113
fec2a9f2 114 if (!component) {
30d619df 115 ret = BT_COMPONENT_STATUS_INVALID;
fa55ed98
JG
116 goto end;
117 }
118
d3e4dcd8 119 if (bt_component_get_class_type(component) != BT_COMPONENT_CLASS_TYPE_SINK) {
fa55ed98
JG
120 ret = BT_COMPONENT_STATUS_UNSUPPORTED;
121 goto end;
122 }
123
d3e4dcd8
PP
124 sink_class = container_of(component->class, struct bt_component_class_sink, parent);
125 assert(sink_class->methods.consume);
126 ret = sink_class->methods.consume(component);
fa55ed98
JG
127end:
128 return ret;
129}
fec2a9f2
JG
130/*
131static
30d619df
JG
132enum bt_component_status bt_component_sink_register_notification_type(
133 struct bt_component *component, enum bt_notification_type type)
134{
135 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
136 struct bt_component_sink *sink = NULL;
137
138 if (!component) {
139 ret = BT_COMPONENT_STATUS_INVALID;
140 goto end;
141 }
142
d3e4dcd8 143 if (bt_component_get_class_type(component) != BT_COMPONENT_CLASS_TYPE_SINK) {
30d619df
JG
144 ret = BT_COMPONENT_STATUS_UNSUPPORTED;
145 goto end;
146 }
147
148 if (type <= BT_NOTIFICATION_TYPE_UNKNOWN ||
149 type >= BT_NOTIFICATION_TYPE_NR) {
150 ret = BT_COMPONENT_STATUS_INVALID;
151 goto end;
152 }
153 sink = container_of(component, struct bt_component_sink, parent);
154 if (type == BT_NOTIFICATION_TYPE_ALL) {
155 sink->registered_notifications_mask = ~(notification_mask_t) 0;
156 } else {
157 sink->registered_notifications_mask |=
158 (notification_mask_t) 1 << type;
159 }
160end:
161 return ret;
162}
fec2a9f2 163*/
34a9ed19 164
366e034f 165int bt_component_sink_get_input_port_count(struct bt_component *component)
952ebade 166{
366e034f 167 int ret;
fec2a9f2 168 struct bt_component_sink *sink;
952ebade
JG
169
170 if (!component) {
366e034f 171 ret = -1;
952ebade
JG
172 goto end;
173 }
174
366e034f
JG
175 if (component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
176 ret = -1;
fec2a9f2
JG
177 goto end;
178 }
179
952ebade 180 sink = container_of(component, struct bt_component_sink, parent);
366e034f 181 ret = sink->input_ports->len;
fec2a9f2
JG
182end:
183 return ret;
184}
185
366e034f
JG
186struct bt_port *bt_component_sink_get_input_port(
187 struct bt_component *component, const char *name)
fec2a9f2
JG
188{
189 struct bt_component_sink *sink;
366e034f 190 struct bt_port *ret_port = NULL;
fec2a9f2 191
366e034f
JG
192 if (!component || !name ||
193 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
194 goto end;
195 }
196
197 sink = container_of(component, struct bt_component_sink, parent);
366e034f 198 ret_port = bt_component_get_port(sink->input_ports, name);
fec2a9f2 199end:
366e034f 200 return ret_port;
fec2a9f2
JG
201}
202
366e034f
JG
203struct bt_port *bt_component_sink_get_input_port_at_index(
204 struct bt_component *component, int index)
fec2a9f2 205{
366e034f 206 struct bt_port *port = NULL;
fec2a9f2 207 struct bt_component_sink *sink;
fec2a9f2 208
366e034f
JG
209 if (!component ||
210 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
211 goto end;
212 }
213
214 sink = container_of(component, struct bt_component_sink, parent);
366e034f 215 port = bt_component_get_port_at_index(sink->input_ports, index);
fec2a9f2 216end:
366e034f 217 return port;
fec2a9f2
JG
218}
219
366e034f
JG
220struct bt_port *bt_component_sink_get_default_input_port(
221 struct bt_component *component)
fec2a9f2 222{
366e034f
JG
223 return bt_component_sink_get_input_port(component,
224 DEFAULT_INPUT_PORT_NAME);
225}
fec2a9f2 226
366e034f
JG
227struct bt_port *bt_component_sink_add_input_port(
228 struct bt_component *component, const char *name)
229{
230 struct bt_port *port;
231 struct bt_component_sink *sink;
fec2a9f2 232
366e034f
JG
233 if (!component ||
234 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
235 port = NULL;
fec2a9f2
JG
236 goto end;
237 }
238
239 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
240 port = bt_component_add_port(component, sink->input_ports,
241 BT_PORT_TYPE_INPUT, name);
fec2a9f2 242end:
366e034f 243 return port;
fec2a9f2
JG
244}
245
366e034f
JG
246enum bt_component_status bt_component_sink_remove_input_port(
247 struct bt_component *component, const char *name)
fec2a9f2 248{
366e034f 249 enum bt_component_status status;
fec2a9f2 250 struct bt_component_sink *sink;
fec2a9f2 251
366e034f
JG
252 if (!component ||
253 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
254 status = BT_COMPONENT_STATUS_INVALID;
fec2a9f2
JG
255 goto end;
256 }
257
258 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
259 status = bt_component_remove_port(component, sink->input_ports,
260 name);
952ebade 261end:
366e034f 262 return status;
952ebade 263}
This page took 0.038756 seconds and 4 git commands to generate.