lib, bt2: add precondition check for port name unicity
[babeltrace.git] / src / lib / graph / component-filter.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 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
d94d92ac
PP
6 */
7
350ad6c1 8#define BT_LOG_TAG "LIB/COMPONENT-FILTER"
c2d9d9cf 9#include "lib/logging.h"
d94d92ac 10
578e048b
MJ
11#include "common/assert.h"
12#include "lib/assert-pre.h"
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-filter.h"
20#include "component.h"
21#include "component-class.h"
d24d5663 22#include "lib/func-status.h"
578e048b 23
d94d92ac
PP
24BT_HIDDEN
25void bt_component_filter_destroy(struct bt_component *component)
26{
27}
28
29BT_HIDDEN
30struct bt_component *bt_component_filter_create(
0d72b8c3 31 const struct bt_component_class *class)
d94d92ac
PP
32{
33 struct bt_component_filter *filter = NULL;
34
17f3083a
SM
35 BT_ASSERT_PRE_NO_ERROR();
36
d94d92ac
PP
37 filter = g_new0(struct bt_component_filter, 1);
38 if (!filter) {
870631a2
PP
39 BT_LIB_LOGE_APPEND_CAUSE(
40 "Failed to allocate one filter component.");
d94d92ac
PP
41 goto end;
42 }
43
44end:
45 return (void *) filter;
46}
47
752d0e47
SM
48const bt_component_class_filter *
49bt_component_filter_borrow_class_const(
50 const bt_component_filter *component)
51{
52 struct bt_component_class *cls;
53
bdb288b3 54 BT_ASSERT_PRE_DEV_NON_NULL(component, "Component");
752d0e47
SM
55
56 cls = component->parent.class;
57
98b15851
PP
58 BT_ASSERT_DBG(cls);
59 BT_ASSERT_DBG(cls->type == BT_COMPONENT_CLASS_TYPE_FILTER);
752d0e47
SM
60
61 return (bt_component_class_filter *) cls;
62}
63
d94d92ac 64uint64_t bt_component_filter_get_output_port_count(
0d72b8c3 65 const struct bt_component_filter *comp)
d94d92ac
PP
66{
67 return bt_component_get_output_port_count((void *) comp);
68}
69
0d72b8c3
PP
70const struct bt_port_output *
71bt_component_filter_borrow_output_port_by_name_const(
72 const struct bt_component_filter *comp, const char *name)
d94d92ac
PP
73{
74 return bt_component_borrow_output_port_by_name(
75 (void *) comp, name);
76}
77
78struct bt_self_component_port_output *
79bt_self_component_filter_borrow_output_port_by_name(
80 struct bt_self_component_filter *comp, const char *name)
81{
82 return (void *) bt_component_borrow_output_port_by_name(
83 (void *) comp, name);
84}
85
0d72b8c3
PP
86const struct bt_port_output *
87bt_component_filter_borrow_output_port_by_index_const(
88 const struct bt_component_filter *comp, uint64_t index)
d94d92ac
PP
89{
90 return bt_component_borrow_output_port_by_index(
91 (void *) comp, index);
92}
93
94struct bt_self_component_port_output *
95bt_self_component_filter_borrow_output_port_by_index(
96 struct bt_self_component_filter *comp, uint64_t index)
97{
98 return (void *) bt_component_borrow_output_port_by_index(
99 (void *) comp, index);
100}
101
d24d5663 102enum bt_self_component_add_port_status bt_self_component_filter_add_output_port(
d94d92ac
PP
103 struct bt_self_component_filter *self_comp,
104 const char *name, void *user_data,
105 struct bt_self_component_port_output **self_port)
106{
107 struct bt_component *comp = (void *) self_comp;
d24d5663 108 enum bt_self_component_add_port_status status;
d94d92ac
PP
109 struct bt_port *port = NULL;
110
17f3083a 111 BT_ASSERT_PRE_NO_ERROR();
157a98ed 112 BT_ASSERT_PRE_OUTPUT_PORT_NAME_UNIQUE(comp, name);
17f3083a 113
d94d92ac 114 /* bt_component_add_output_port() logs details and errors */
8cc56726 115 status = bt_component_add_output_port(comp, name, user_data, &port);
d24d5663 116 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
117 goto end;
118 }
119
120 if (self_port) {
121 /* Move reference to user */
122 *self_port = (void *) port;
d94d92ac
PP
123 }
124
125end:
126 bt_object_put_ref(port);
127 return status;
128}
129
130uint64_t bt_component_filter_get_input_port_count(
0d72b8c3 131 const struct bt_component_filter *component)
d94d92ac
PP
132{
133 /* bt_component_get_input_port_count() logs details/errors */
134 return bt_component_get_input_port_count((void *) component);
135}
136
0d72b8c3
PP
137const struct bt_port_input *bt_component_filter_borrow_input_port_by_name_const(
138 const struct bt_component_filter *component, const char *name)
d94d92ac
PP
139{
140 /* bt_component_borrow_input_port_by_name() logs details/errors */
141 return bt_component_borrow_input_port_by_name(
142 (void *) component, name);
143}
144
145struct bt_self_component_port_input *
146bt_self_component_filter_borrow_input_port_by_name(
147 struct bt_self_component_filter *component, const char *name)
148{
149 /* bt_component_borrow_input_port_by_name() logs details/errors */
150 return (void *) bt_component_borrow_input_port_by_name(
151 (void *) component, name);
152}
153
0d72b8c3
PP
154const struct bt_port_input *
155bt_component_filter_borrow_input_port_by_index_const(
156 const struct bt_component_filter *component, uint64_t index)
d94d92ac
PP
157{
158 /* bt_component_borrow_input_port_by_index() logs details/errors */
159 return bt_component_borrow_input_port_by_index(
160 (void *) component, index);
161}
162
163struct bt_self_component_port_input *
164bt_self_component_filter_borrow_input_port_by_index(
165 struct bt_self_component_filter *component, uint64_t index)
166{
167 /* bt_component_borrow_input_port_by_index() logs details/errors */
168 return (void *) bt_component_borrow_input_port_by_index(
169 (void *) component, index);
170}
171
d24d5663 172enum bt_self_component_add_port_status bt_self_component_filter_add_input_port(
d94d92ac
PP
173 struct bt_self_component_filter *self_comp,
174 const char *name, void *user_data,
175 struct bt_self_component_port_input **self_port)
176{
d24d5663 177 enum bt_self_component_add_port_status status;
d94d92ac
PP
178 struct bt_port *port = NULL;
179 struct bt_component *comp = (void *) self_comp;
180
17f3083a 181 BT_ASSERT_PRE_NO_ERROR();
157a98ed 182 BT_ASSERT_PRE_INPUT_PORT_NAME_UNIQUE(comp, name);
17f3083a 183
d94d92ac 184 /* bt_component_add_input_port() logs details/errors */
8cc56726 185 status = bt_component_add_input_port(comp, name, user_data, &port);
d24d5663 186 if (status != BT_FUNC_STATUS_OK) {
d94d92ac
PP
187 goto end;
188 }
189
190 if (self_port) {
191 /* Move reference to user */
192 *self_port = (void *) port;
d94d92ac
PP
193 }
194
195end:
196 bt_object_put_ref(port);
197 return status;
198}
c5b9b441
PP
199
200void bt_component_filter_get_ref(
201 const struct bt_component_filter *component_filter)
202{
203 bt_object_get_ref(component_filter);
204}
205
206void bt_component_filter_put_ref(
207 const struct bt_component_filter *component_filter)
208{
209 bt_object_put_ref(component_filter);
210}
This page took 0.061865 seconds and 4 git commands to generate.