Return component port counts by parameter
[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
346df6cf
JG
166enum bt_component_status bt_component_sink_get_input_port_count(
167 struct bt_component *component, uint64_t *count)
952ebade 168{
346df6cf 169 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
fec2a9f2 170 struct bt_component_sink *sink;
952ebade 171
346df6cf
JG
172 if (!component || !count) {
173 status = BT_COMPONENT_STATUS_INVALID;
952ebade
JG
174 goto end;
175 }
176
366e034f 177 if (component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
346df6cf 178 status = BT_COMPONENT_STATUS_INVALID;
fec2a9f2
JG
179 goto end;
180 }
181
952ebade 182 sink = container_of(component, struct bt_component_sink, parent);
346df6cf 183 *count = (uint64_t) sink->input_ports->len;
fec2a9f2 184end:
346df6cf 185 return status;
fec2a9f2
JG
186}
187
366e034f
JG
188struct bt_port *bt_component_sink_get_input_port(
189 struct bt_component *component, const char *name)
fec2a9f2
JG
190{
191 struct bt_component_sink *sink;
366e034f 192 struct bt_port *ret_port = NULL;
fec2a9f2 193
366e034f
JG
194 if (!component || !name ||
195 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
196 goto end;
197 }
198
199 sink = container_of(component, struct bt_component_sink, parent);
366e034f 200 ret_port = bt_component_get_port(sink->input_ports, name);
fec2a9f2 201end:
366e034f 202 return ret_port;
fec2a9f2
JG
203}
204
366e034f
JG
205struct bt_port *bt_component_sink_get_input_port_at_index(
206 struct bt_component *component, int index)
fec2a9f2 207{
366e034f 208 struct bt_port *port = NULL;
fec2a9f2 209 struct bt_component_sink *sink;
fec2a9f2 210
366e034f
JG
211 if (!component ||
212 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
213 goto end;
214 }
215
216 sink = container_of(component, struct bt_component_sink, parent);
366e034f 217 port = bt_component_get_port_at_index(sink->input_ports, index);
fec2a9f2 218end:
366e034f 219 return port;
fec2a9f2
JG
220}
221
366e034f
JG
222struct bt_port *bt_component_sink_get_default_input_port(
223 struct bt_component *component)
fec2a9f2 224{
366e034f
JG
225 return bt_component_sink_get_input_port(component,
226 DEFAULT_INPUT_PORT_NAME);
227}
fec2a9f2 228
366e034f
JG
229struct bt_port *bt_component_sink_add_input_port(
230 struct bt_component *component, const char *name)
231{
232 struct bt_port *port;
233 struct bt_component_sink *sink;
fec2a9f2 234
366e034f
JG
235 if (!component ||
236 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
237 port = NULL;
fec2a9f2
JG
238 goto end;
239 }
240
241 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
242 port = bt_component_add_port(component, sink->input_ports,
243 BT_PORT_TYPE_INPUT, name);
fec2a9f2 244end:
366e034f 245 return port;
fec2a9f2
JG
246}
247
366e034f
JG
248enum bt_component_status bt_component_sink_remove_input_port(
249 struct bt_component *component, const char *name)
fec2a9f2 250{
366e034f 251 enum bt_component_status status;
fec2a9f2 252 struct bt_component_sink *sink;
fec2a9f2 253
366e034f
JG
254 if (!component ||
255 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
256 status = BT_COMPONENT_STATUS_INVALID;
fec2a9f2
JG
257 goto end;
258 }
259
260 sink = container_of(component, struct bt_component_sink, parent);
366e034f
JG
261 status = bt_component_remove_port(component, sink->input_ports,
262 name);
952ebade 263end:
366e034f 264 return status;
952ebade 265}
This page took 0.039846 seconds and 4 git commands to generate.