cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / lib / graph / component-sink.c
CommitLineData
d94d92ac 1/*
0235b0db
MJ
2 * SPDX-License-Identifier: MIT
3 *
e2f7325d 4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d94d92ac 5 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
d94d92ac
PP
6 */
7
350ad6c1 8#define BT_LOG_TAG "LIB/COMPONENT-SINK"
c2d9d9cf 9#include "lib/logging.h"
d94d92ac 10
578e048b 11#include "common/assert.h"
d98421f2 12#include "lib/assert-cond.h"
578e048b 13#include "compat/compiler.h"
3fadfbc0 14#include <babeltrace2/value.h>
43c59509
PP
15#include <babeltrace2/graph/self-component.h>
16#include <babeltrace2/graph/component.h>
3fadfbc0 17#include <babeltrace2/graph/graph.h>
d94d92ac 18
578e048b
MJ
19#include "component-sink.h"
20#include "component.h"
9b4f9b42 21#include "graph.h"
d24d5663 22#include "lib/func-status.h"
578e048b 23
c8515511 24struct bt_component *bt_component_sink_create(void)
d94d92ac
PP
25{
26 struct bt_component_sink *sink = NULL;
27
28 sink = g_new0(struct bt_component_sink, 1);
29 if (!sink) {
870631a2
PP
30 BT_LIB_LOGE_APPEND_CAUSE(
31 "Failed to allocate one sink component.");
d94d92ac
PP
32 goto end;
33 }
34
35end:
36 return (void *) sink;
37}
38
1353b066 39BT_EXPORT
752d0e47
SM
40const bt_component_class_sink *
41bt_component_sink_borrow_class_const(
42 const bt_component_sink *component)
43{
44 struct bt_component_class *cls;
45
d5b13b9b 46 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
752d0e47
SM
47
48 cls = component->parent.class;
49
98b15851
PP
50 BT_ASSERT_DBG(cls);
51 BT_ASSERT_DBG(cls->type == BT_COMPONENT_CLASS_TYPE_SINK);
752d0e47
SM
52
53 return (bt_component_class_sink *) cls;
54}
55
1353b066 56BT_EXPORT
d94d92ac 57uint64_t bt_component_sink_get_input_port_count(
0d72b8c3 58 const struct bt_component_sink *component)
d94d92ac 59{
1778c2a4
PP
60 /* bt_component_get_input_port_count() checks preconditions */
61 return bt_component_get_input_port_count((void *) component, __func__);
d94d92ac
PP
62}
63
1353b066 64BT_EXPORT
0d72b8c3
PP
65const struct bt_port_input *
66bt_component_sink_borrow_input_port_by_name_const(
67 const struct bt_component_sink *component, const char *name)
d94d92ac 68{
1778c2a4
PP
69 /*
70 * bt_component_borrow_input_port_by_name() logs details/errors
71 * and checks preconditions.
72 */
73 return bt_component_borrow_input_port_by_name((void *) component, name,
74 __func__);
d94d92ac
PP
75}
76
1353b066 77BT_EXPORT
d94d92ac
PP
78struct bt_self_component_port_input *
79bt_self_component_sink_borrow_input_port_by_name(
80 struct bt_self_component_sink *component, const char *name)
81{
1778c2a4
PP
82 /*
83 * bt_component_borrow_input_port_by_name() logs details/errors
84 * and checks preconditions.
85 */
d94d92ac 86 return (void *) bt_component_borrow_input_port_by_name(
1778c2a4 87 (void *) component, name, __func__);
d94d92ac
PP
88}
89
1353b066 90BT_EXPORT
0d72b8c3
PP
91const struct bt_port_input *bt_component_sink_borrow_input_port_by_index_const(
92 const struct bt_component_sink *component, uint64_t index)
d94d92ac 93{
1778c2a4
PP
94 /*
95 * bt_component_borrow_input_port_by_index() logs details/errors
96 * and checks preconditions.
97 */
d94d92ac 98 return bt_component_borrow_input_port_by_index(
1778c2a4 99 (void *) component, index, __func__);
d94d92ac
PP
100}
101
1353b066 102BT_EXPORT
d94d92ac
PP
103struct bt_self_component_port_input *
104bt_self_component_sink_borrow_input_port_by_index(
105 struct bt_self_component_sink *component, uint64_t index)
106{
1778c2a4
PP
107 /*
108 * bt_component_borrow_input_port_by_index() logs details/errors
109 * and checks preconditions.
110 */
d94d92ac 111 return (void *) bt_component_borrow_input_port_by_index(
1778c2a4 112 (void *) component, index, __func__);
d94d92ac
PP
113}
114
1353b066 115BT_EXPORT
d24d5663 116enum bt_self_component_add_port_status bt_self_component_sink_add_input_port(
d94d92ac
PP
117 struct bt_self_component_sink *self_comp,
118 const char *name, void *user_data,
119 struct bt_self_component_port_input **self_port)
120{
d24d5663 121 enum bt_self_component_add_port_status status;
d94d92ac
PP
122 struct bt_port *port = NULL;
123 struct bt_component *comp = (void *) self_comp;
124
1778c2a4
PP
125 /*
126 * bt_component_add_input_port() logs details/errors and checks
127 * preconditions.
128 */
129 status = bt_component_add_input_port(comp, name, user_data, &port,
130 __func__);
d24d5663 131 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
132 goto end;
133 }
134
135 if (self_port) {
136 /* Move reference to user */
137 *self_port = (void *) port;
d94d92ac
PP
138 }
139
140end:
141 bt_object_put_ref(port);
142 return status;
143}
c5b9b441 144
1353b066 145BT_EXPORT
9b4f9b42
PP
146bt_bool bt_self_component_sink_is_interrupted(
147 const struct bt_self_component_sink *self_comp)
148{
149 struct bt_component *comp = (void *) self_comp;
150
d5b13b9b 151 BT_ASSERT_PRE_COMP_NON_NULL(comp);
9b4f9b42
PP
152 return (bt_bool) bt_graph_is_interrupted(
153 bt_component_borrow_graph(comp));
154}
155
1353b066 156BT_EXPORT
c5b9b441
PP
157void bt_component_sink_get_ref(
158 const struct bt_component_sink *component_sink)
159{
160 bt_object_get_ref(component_sink);
161}
162
1353b066 163BT_EXPORT
c5b9b441
PP
164void bt_component_sink_put_ref(
165 const struct bt_component_sink *component_sink)
166{
167 bt_object_put_ref(component_sink);
168}
This page took 0.089688 seconds and 5 git commands to generate.