Hide bt_component_sink_consume
[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
973a2bd1 108BT_HIDDEN
fec2a9f2
JG
109enum bt_component_status bt_component_sink_consume(
110 struct bt_component *component)
fa55ed98
JG
111{
112 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
d3e4dcd8 113 struct bt_component_class_sink *sink_class = NULL;
fa55ed98 114
fec2a9f2 115 if (!component) {
30d619df 116 ret = BT_COMPONENT_STATUS_INVALID;
fa55ed98
JG
117 goto end;
118 }
119
d3e4dcd8 120 if (bt_component_get_class_type(component) != BT_COMPONENT_CLASS_TYPE_SINK) {
fa55ed98
JG
121 ret = BT_COMPONENT_STATUS_UNSUPPORTED;
122 goto end;
123 }
124
d3e4dcd8
PP
125 sink_class = container_of(component->class, struct bt_component_class_sink, parent);
126 assert(sink_class->methods.consume);
127 ret = sink_class->methods.consume(component);
fa55ed98
JG
128end:
129 return ret;
130}
fec2a9f2
JG
131/*
132static
30d619df
JG
133enum bt_component_status bt_component_sink_register_notification_type(
134 struct bt_component *component, enum bt_notification_type type)
135{
136 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
137 struct bt_component_sink *sink = NULL;
138
139 if (!component) {
140 ret = BT_COMPONENT_STATUS_INVALID;
141 goto end;
142 }
143
d3e4dcd8 144 if (bt_component_get_class_type(component) != BT_COMPONENT_CLASS_TYPE_SINK) {
30d619df
JG
145 ret = BT_COMPONENT_STATUS_UNSUPPORTED;
146 goto end;
147 }
148
149 if (type <= BT_NOTIFICATION_TYPE_UNKNOWN ||
150 type >= BT_NOTIFICATION_TYPE_NR) {
151 ret = BT_COMPONENT_STATUS_INVALID;
152 goto end;
153 }
154 sink = container_of(component, struct bt_component_sink, parent);
155 if (type == BT_NOTIFICATION_TYPE_ALL) {
156 sink->registered_notifications_mask = ~(notification_mask_t) 0;
157 } else {
158 sink->registered_notifications_mask |=
159 (notification_mask_t) 1 << type;
160 }
161end:
162 return ret;
163}
fec2a9f2 164*/
34a9ed19 165
366e034f 166int bt_component_sink_get_input_port_count(struct bt_component *component)
952ebade 167{
366e034f 168 int ret;
fec2a9f2 169 struct bt_component_sink *sink;
952ebade
JG
170
171 if (!component) {
366e034f 172 ret = -1;
952ebade
JG
173 goto end;
174 }
175
366e034f
JG
176 if (component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
177 ret = -1;
fec2a9f2
JG
178 goto end;
179 }
180
952ebade 181 sink = container_of(component, struct bt_component_sink, parent);
366e034f 182 ret = sink->input_ports->len;
fec2a9f2
JG
183end:
184 return ret;
185}
186
366e034f
JG
187struct bt_port *bt_component_sink_get_input_port(
188 struct bt_component *component, const char *name)
fec2a9f2
JG
189{
190 struct bt_component_sink *sink;
366e034f 191 struct bt_port *ret_port = NULL;
fec2a9f2 192
366e034f
JG
193 if (!component || !name ||
194 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
195 goto end;
196 }
197
198 sink = container_of(component, struct bt_component_sink, parent);
366e034f 199 ret_port = bt_component_get_port(sink->input_ports, name);
fec2a9f2 200end:
366e034f 201 return ret_port;
fec2a9f2
JG
202}
203
366e034f
JG
204struct bt_port *bt_component_sink_get_input_port_at_index(
205 struct bt_component *component, int index)
fec2a9f2 206{
366e034f 207 struct bt_port *port = NULL;
fec2a9f2 208 struct bt_component_sink *sink;
fec2a9f2 209
366e034f
JG
210 if (!component ||
211 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
212 goto end;
213 }
214
215 sink = container_of(component, struct bt_component_sink, parent);
366e034f 216 port = bt_component_get_port_at_index(sink->input_ports, index);
fec2a9f2 217end:
366e034f 218 return port;
fec2a9f2
JG
219}
220
366e034f
JG
221struct bt_port *bt_component_sink_get_default_input_port(
222 struct bt_component *component)
fec2a9f2 223{
366e034f
JG
224 return bt_component_sink_get_input_port(component,
225 DEFAULT_INPUT_PORT_NAME);
226}
fec2a9f2 227
366e034f
JG
228struct bt_port *bt_component_sink_add_input_port(
229 struct bt_component *component, const char *name)
230{
231 struct bt_port *port;
232 struct bt_component_sink *sink;
fec2a9f2 233
366e034f
JG
234 if (!component ||
235 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
236 port = NULL;
fec2a9f2
JG
237 goto end;
238 }
239
240 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
241 port = bt_component_add_port(component, sink->input_ports,
242 BT_PORT_TYPE_INPUT, name);
fec2a9f2 243end:
366e034f 244 return port;
fec2a9f2
JG
245}
246
366e034f
JG
247enum bt_component_status bt_component_sink_remove_input_port(
248 struct bt_component *component, const char *name)
fec2a9f2 249{
366e034f 250 enum bt_component_status status;
fec2a9f2 251 struct bt_component_sink *sink;
fec2a9f2 252
366e034f
JG
253 if (!component ||
254 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
255 status = BT_COMPONENT_STATUS_INVALID;
fec2a9f2
JG
256 goto end;
257 }
258
259 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
260 status = bt_component_remove_port(component, sink->input_ports,
261 name);
952ebade 262end:
366e034f 263 return status;
952ebade 264}
This page took 0.038733 seconds and 4 git commands to generate.