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