lib: rename plural file names to singular
[babeltrace.git] / lib / graph / component-sink.c
CommitLineData
d94d92ac
PP
1/*
2 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25#define BT_LOG_TAG "COMP-SINK"
26#include <babeltrace/lib-logging-internal.h>
27
28#include <babeltrace/compiler-internal.h>
c6bd8523 29#include <babeltrace/value.h>
d94d92ac 30#include <babeltrace/graph/self-component-sink.h>
0d72b8c3 31#include <babeltrace/graph/component-sink-const.h>
d94d92ac
PP
32#include <babeltrace/graph/component-sink-internal.h>
33#include <babeltrace/graph/component-internal.h>
d94d92ac
PP
34#include <babeltrace/graph/graph.h>
35#include <babeltrace/object.h>
36#include <babeltrace/assert-internal.h>
37#include <babeltrace/assert-pre-internal.h>
38
39BT_HIDDEN
40void bt_component_sink_destroy(struct bt_component *component)
41{
42}
43
44BT_HIDDEN
0d72b8c3
PP
45struct bt_component *bt_component_sink_create(
46 const struct bt_component_class *class)
d94d92ac
PP
47{
48 struct bt_component_sink *sink = NULL;
49
50 sink = g_new0(struct bt_component_sink, 1);
51 if (!sink) {
52 BT_LOGE_STR("Failed to allocate one sink component.");
53 goto end;
54 }
55
56end:
57 return (void *) sink;
58}
59
60uint64_t bt_component_sink_get_input_port_count(
0d72b8c3 61 const struct bt_component_sink *component)
d94d92ac
PP
62{
63 /* bt_component_get_input_port_count() logs details/errors */
64 return bt_component_get_input_port_count((void *) component);
65}
66
0d72b8c3
PP
67const struct bt_port_input *
68bt_component_sink_borrow_input_port_by_name_const(
69 const struct bt_component_sink *component, const char *name)
d94d92ac
PP
70{
71 /* bt_component_borrow_input_port_by_name() logs details/errors */
72 return bt_component_borrow_input_port_by_name((void *) component, name);
73}
74
75struct bt_self_component_port_input *
76bt_self_component_sink_borrow_input_port_by_name(
77 struct bt_self_component_sink *component, const char *name)
78{
79 /* bt_component_borrow_input_port_by_name() logs details/errors */
80 return (void *) bt_component_borrow_input_port_by_name(
81 (void *) component, name);
82}
83
0d72b8c3
PP
84const struct bt_port_input *bt_component_sink_borrow_input_port_by_index_const(
85 const struct bt_component_sink *component, uint64_t index)
d94d92ac
PP
86{
87 /* bt_component_borrow_input_port_by_index() logs details/errors */
88 return bt_component_borrow_input_port_by_index(
89 (void *) component, index);
90}
91
92struct bt_self_component_port_input *
93bt_self_component_sink_borrow_input_port_by_index(
94 struct bt_self_component_sink *component, uint64_t index)
95{
96 /* bt_component_borrow_input_port_by_index() logs details/errors */
97 return (void *) bt_component_borrow_input_port_by_index(
98 (void *) component, index);
99}
100
101enum bt_self_component_status bt_self_component_sink_add_input_port(
102 struct bt_self_component_sink *self_comp,
103 const char *name, void *user_data,
104 struct bt_self_component_port_input **self_port)
105{
106 int status = BT_SELF_COMPONENT_STATUS_OK;
107 struct bt_port *port = NULL;
108 struct bt_component *comp = (void *) self_comp;
109
110 /* bt_component_add_input_port() logs details/errors */
111 port = (void *) bt_component_add_input_port(comp, name, user_data);
112 if (!port) {
113 status = BT_SELF_COMPONENT_STATUS_NOMEM;
114 goto end;
115 }
116
117 if (self_port) {
118 /* Move reference to user */
119 *self_port = (void *) port;
120 port = NULL;
121 }
122
123end:
124 bt_object_put_ref(port);
125 return status;
126}
This page took 0.029109 seconds and 4 git commands to generate.