Rename <babeltrace/component/...> -> <babeltrace/graph/...>
[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>
b2e0c907
PP
31#include <babeltrace/graph/component-sink-internal.h>
32#include <babeltrace/graph/component-internal.h>
33#include <babeltrace/graph/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
72b913fb 59BT_HIDDEN
fec2a9f2
JG
60void bt_component_sink_destroy(struct bt_component *component)
61{
fec2a9f2
JG
62}
63
8738a040 64BT_HIDDEN
fb2dcc52 65struct bt_component *bt_component_sink_create(
7c7c0433 66 struct bt_component_class *class, struct bt_value *params)
0d884c50
JG
67{
68 struct bt_component_sink *sink = NULL;
0d884c50 69
0d884c50
JG
70 sink = g_new0(struct bt_component_sink, 1);
71 if (!sink) {
72 goto end;
73 }
74
0d884c50
JG
75end:
76 return sink ? &sink->parent : NULL;
77}
fa55ed98 78
973a2bd1 79BT_HIDDEN
fec2a9f2
JG
80enum bt_component_status bt_component_sink_consume(
81 struct bt_component *component)
fa55ed98
JG
82{
83 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
d3e4dcd8 84 struct bt_component_class_sink *sink_class = NULL;
fa55ed98 85
fec2a9f2 86 if (!component) {
30d619df 87 ret = BT_COMPONENT_STATUS_INVALID;
fa55ed98
JG
88 goto end;
89 }
90
d3e4dcd8 91 if (bt_component_get_class_type(component) != BT_COMPONENT_CLASS_TYPE_SINK) {
fa55ed98
JG
92 ret = BT_COMPONENT_STATUS_UNSUPPORTED;
93 goto end;
94 }
95
d3e4dcd8
PP
96 sink_class = container_of(component->class, struct bt_component_class_sink, parent);
97 assert(sink_class->methods.consume);
890882ef 98 ret = sink_class->methods.consume(bt_private_component_from_component(component));
fa55ed98
JG
99end:
100 return ret;
101}
34a9ed19 102
346df6cf
JG
103enum bt_component_status bt_component_sink_get_input_port_count(
104 struct bt_component *component, uint64_t *count)
952ebade 105{
346df6cf 106 enum bt_component_status status = BT_COMPONENT_STATUS_OK;
952ebade 107
72b913fb
PP
108 if (!component || !count ||
109 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
346df6cf 110 status = BT_COMPONENT_STATUS_INVALID;
952ebade
JG
111 goto end;
112 }
113
72b913fb 114 *count = bt_component_get_input_port_count(component);
fec2a9f2 115end:
346df6cf 116 return status;
fec2a9f2
JG
117}
118
366e034f
JG
119struct bt_port *bt_component_sink_get_input_port(
120 struct bt_component *component, const char *name)
fec2a9f2 121{
72b913fb 122 struct bt_port *port = NULL;
fec2a9f2 123
366e034f
JG
124 if (!component || !name ||
125 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
126 goto end;
127 }
128
72b913fb 129 port = bt_component_get_input_port(component, name);
fec2a9f2 130end:
72b913fb 131 return port;
fec2a9f2
JG
132}
133
366e034f
JG
134struct bt_port *bt_component_sink_get_input_port_at_index(
135 struct bt_component *component, int index)
fec2a9f2 136{
366e034f 137 struct bt_port *port = NULL;
fec2a9f2 138
366e034f
JG
139 if (!component ||
140 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
141 goto end;
142 }
143
72b913fb 144 port = bt_component_get_input_port_at_index(component, index);
fec2a9f2 145end:
366e034f 146 return port;
fec2a9f2
JG
147}
148
366e034f
JG
149struct bt_port *bt_component_sink_get_default_input_port(
150 struct bt_component *component)
fec2a9f2 151{
366e034f
JG
152 return bt_component_sink_get_input_port(component,
153 DEFAULT_INPUT_PORT_NAME);
154}
fec2a9f2 155
890882ef
PP
156struct bt_private_port *
157bt_private_component_sink_get_input_private_port_at_index(
158 struct bt_private_component *private_component, int index)
159{
160 return bt_private_port_from_port(
161 bt_component_sink_get_input_port_at_index(
162 bt_component_from_private(private_component), index));
163}
164
165struct bt_private_port *bt_private_component_sink_get_default_private_input_port(
166 struct bt_private_component *private_component)
167{
168 return bt_private_port_from_port(
169 bt_component_sink_get_default_input_port(
170 bt_component_from_private(private_component)));
171}
172
173struct bt_private_port *bt_private_component_sink_add_input_private_port(
174 struct bt_private_component *private_component,
175 const char *name)
366e034f 176{
72b913fb 177 struct bt_port *port = NULL;
890882ef
PP
178 struct bt_component *component =
179 bt_component_from_private(private_component);
fec2a9f2 180
366e034f
JG
181 if (!component ||
182 component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
fec2a9f2
JG
183 goto end;
184 }
185
72b913fb 186 port = bt_component_add_input_port(component, name);
fec2a9f2 187end:
890882ef 188 return bt_private_port_from_port(port);
fec2a9f2 189}
This page took 0.035446 seconds and 4 git commands to generate.