lib: de-duplicate assertions in bt_component_add_{input,output}_port
[babeltrace.git] / src / lib / graph / component.c
CommitLineData
de713ce0 1/*
0235b0db
MJ
2 * SPDX-License-Identifier: MIT
3 *
e2f7325d 4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
de713ce0 5 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
de713ce0
JG
6 */
7
350ad6c1 8#define BT_LOG_TAG "LIB/COMPONENT"
c2d9d9cf 9#include "lib/logging.h"
ab0d387b 10
e874da19 11#include "common/common.h"
578e048b 12#include "common/assert.h"
d98421f2 13#include "lib/assert-cond.h"
3fadfbc0 14#include <babeltrace2/graph/self-component.h>
43c59509
PP
15#include <babeltrace2/graph/component.h>
16#include <babeltrace2/graph/graph.h>
91d81473 17#include "common/macros.h"
578e048b 18#include "compat/compiler.h"
3fadfbc0
MJ
19#include <babeltrace2/types.h>
20#include <babeltrace2/value.h>
578e048b 21#include "lib/value.h"
9ac68eb1 22#include <stdint.h>
ab0d387b 23#include <inttypes.h>
de713ce0 24
578e048b
MJ
25#include "component.h"
26#include "component-class.h"
27#include "component-source.h"
28#include "component-filter.h"
29#include "component-sink.h"
30#include "connection.h"
31#include "graph.h"
32#include "message/iterator.h"
33#include "port.h"
d24d5663 34#include "lib/func-status.h"
578e048b 35
7c7c0433
JG
36static
37struct bt_component * (* const component_create_funcs[])(
0d72b8c3 38 const struct bt_component_class *) = {
d3e4dcd8
PP
39 [BT_COMPONENT_CLASS_TYPE_SOURCE] = bt_component_source_create,
40 [BT_COMPONENT_CLASS_TYPE_SINK] = bt_component_sink_create,
41 [BT_COMPONENT_CLASS_TYPE_FILTER] = bt_component_filter_create,
7c7c0433
JG
42};
43
72b913fb
PP
44static
45void (*component_destroy_funcs[])(struct bt_component *) = {
46 [BT_COMPONENT_CLASS_TYPE_SOURCE] = bt_component_source_destroy,
47 [BT_COMPONENT_CLASS_TYPE_SINK] = bt_component_sink_destroy,
48 [BT_COMPONENT_CLASS_TYPE_FILTER] = bt_component_filter_destroy,
49};
50
b8a06801 51static
d94d92ac
PP
52void finalize_component(struct bt_component *comp)
53{
54 typedef void (*method_t)(void *);
1778c2a4 55 const char *method_name;
d94d92ac
PP
56
57 method_t method = NULL;
58
59 BT_ASSERT(comp);
60
61 switch (comp->class->type) {
62 case BT_COMPONENT_CLASS_TYPE_SOURCE:
63 {
64 struct bt_component_class_source *src_cc = (void *) comp->class;
65
66 method = (method_t) src_cc->methods.finalize;
1778c2a4 67 method_name = "bt_component_class_source_finalize_method";
d94d92ac
PP
68 break;
69 }
70 case BT_COMPONENT_CLASS_TYPE_FILTER:
71 {
72 struct bt_component_class_filter *flt_cc = (void *) comp->class;
73
74 method = (method_t) flt_cc->methods.finalize;
1778c2a4 75 method_name = "bt_component_class_filter_finalize_method";
d94d92ac
PP
76 break;
77 }
78 case BT_COMPONENT_CLASS_TYPE_SINK:
79 {
80 struct bt_component_class_sink *sink_cc = (void *) comp->class;
81
82 method = (method_t) sink_cc->methods.finalize;
1778c2a4 83 method_name = "bt_component_class_sink_finalize_method";
d94d92ac
PP
84 break;
85 }
86 default:
498e7994 87 bt_common_abort();
d94d92ac
PP
88 }
89
90 if (method) {
42a63165
SM
91 const struct bt_error *saved_error;
92
93 saved_error = bt_current_thread_take_error();
94
3f7d4d90 95 BT_LIB_LOGI("Calling user's component finalization method: "
d94d92ac
PP
96 "%![comp-]+c", comp);
97 method(comp);
1778c2a4 98 BT_ASSERT_POST_NO_ERROR(method_name);
42a63165
SM
99
100 if (saved_error) {
101 BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(saved_error);
102 }
d94d92ac
PP
103 }
104}
105
106static
107void destroy_component(struct bt_object *obj)
b8a06801
JG
108{
109 struct bt_component *component = NULL;
3230ee6b 110 int i;
b8a06801
JG
111
112 if (!obj) {
113 return;
114 }
115
bd14d768
PP
116 /*
117 * The component's reference count is 0 if we're here. Increment
118 * it to avoid a double-destroy (possibly infinitely recursive).
119 * This could happen for example if the component's finalization
d94d92ac
PP
120 * function does bt_object_get_ref() (or anything that causes
121 * bt_object_get_ref() to be called) on itself (ref. count goes
122 * from 0 to 1), and then bt_object_put_ref(): the reference
123 * count would go from 1 to 0 again and this function would be
124 * called again.
bd14d768 125 */
3fea54f6 126 obj->ref_count++;
b8a06801 127 component = container_of(obj, struct bt_component, base);
3f7d4d90 128 BT_LIB_LOGI("Destroying component: %![comp-]+c, %![graph-]+g",
d94d92ac 129 component, bt_component_borrow_graph(component));
3230ee6b
PP
130
131 /* Call destroy listeners in reverse registration order */
ab0d387b
PP
132 BT_LOGD_STR("Calling destroy listeners.");
133
3230ee6b
PP
134 for (i = component->destroy_listeners->len - 1; i >= 0; i--) {
135 struct bt_component_destroy_listener *listener =
136 &g_array_index(component->destroy_listeners,
137 struct bt_component_destroy_listener, i);
138
139 listener->func(component, listener->data);
140 }
141
7c7c0433 142 /*
36712f1d
PP
143 * User data is destroyed first, followed by the concrete
144 * component instance. Do not finalize if the component's user
145 * initialization method failed in the first place.
b8a06801 146 */
d94d92ac
PP
147 if (component->initialized) {
148 finalize_component(component);
7c7c0433 149 }
b8a06801 150
ab09f844 151 if (component->destroy) {
ab0d387b 152 BT_LOGD_STR("Destroying type-specific data.");
ab09f844
JG
153 component->destroy(component);
154 }
155
72b913fb 156 if (component->input_ports) {
ab0d387b 157 BT_LOGD_STR("Destroying input ports.");
72b913fb 158 g_ptr_array_free(component->input_ports, TRUE);
d94d92ac 159 component->input_ports = NULL;
72b913fb 160 }
b8a06801 161
72b913fb 162 if (component->output_ports) {
ab0d387b 163 BT_LOGD_STR("Destroying output ports.");
72b913fb 164 g_ptr_array_free(component->output_ports, TRUE);
d94d92ac 165 component->output_ports = NULL;
b8a06801
JG
166 }
167
3230ee6b
PP
168 if (component->destroy_listeners) {
169 g_array_free(component->destroy_listeners, TRUE);
d94d92ac 170 component->destroy_listeners = NULL;
3230ee6b
PP
171 }
172
ab0d387b
PP
173 if (component->name) {
174 g_string_free(component->name, TRUE);
d94d92ac 175 component->name = NULL;
ab0d387b
PP
176 }
177
d94d92ac
PP
178 BT_LOGD_STR("Putting component class.");
179 BT_OBJECT_PUT_REF_AND_RESET(component->class);
72b913fb 180 g_free(component);
b8a06801 181}
de713ce0 182
1353b066 183BT_EXPORT
890882ef 184enum bt_component_class_type bt_component_get_class_type(
0d72b8c3 185 const struct bt_component *component)
5645cd95 186{
d5b13b9b 187 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
d94d92ac 188 return component->class->type;
5645cd95
JG
189}
190
63baac60
SM
191static
192bool port_name_is_unique(GPtrArray *ports, const char *name)
193{
194 guint i;
195 bool unique;
196
197 for (i = 0; i < ports->len; i++) {
198 struct bt_port *port = g_ptr_array_index(ports, i);
199
200 if (strcmp(port->name->str, name) == 0) {
201 unique = false;
202 goto end;
203 }
204 }
205
206 unique = true;
207
208end:
209 return unique;
210}
211
72b913fb 212static
d24d5663 213enum bt_self_component_add_port_status add_port(
72b913fb 214 struct bt_component *component, GPtrArray *ports,
8cc56726 215 enum bt_port_type port_type, const char *name, void *user_data,
63baac60 216 struct bt_port **port, const char *api_func, bool input)
72b913fb 217{
72b913fb 218 struct bt_port *new_port = NULL;
1bf957a0 219 struct bt_graph *graph = NULL;
d24d5663 220 enum bt_self_component_add_port_status status;
72b913fb 221
63baac60
SM
222 BT_ASSERT_PRE_NO_ERROR_FROM_FUNC(api_func);
223 BT_ASSERT_PRE_COMP_NON_NULL_FROM_FUNC(api_func, component);
224 BT_ASSERT_PRE_NAME_NON_NULL_FROM_FUNC(api_func, name);
225 BT_ASSERT_PRE_FROM_FUNC(api_func,
226 input ? "input" : "output" "-port-name-is-unique",
227 port_name_is_unique(component->output_ports, name),
228 input ? "Input" : "Output"
229 " port name is not unique: name=\"%s\", %![comp-]c",
230 name, component);
1778c2a4
PP
231 BT_ASSERT_PRE_FROM_FUNC(api_func, "name-is-not-empty",
232 strlen(name) > 0, "Name is empty");
d94d92ac 233 graph = bt_component_borrow_graph(component);
1778c2a4 234 BT_ASSERT_PRE_FROM_FUNC(api_func, "graph-is-not-configured",
5badd463 235 graph->config_state == BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
4725a201
PP
236 "Component's graph is already configured: "
237 "%![comp-]+c, %![graph-]+g", component, graph);
72b913fb 238
d94d92ac 239 // TODO: Validate that the name is not already used.
ab0d387b 240
3f7d4d90 241 BT_LIB_LOGI("Adding port to component: %![comp-]+c, "
ab0d387b 242 "port-type=%s, port-name=\"%s\"", component,
ab0d387b
PP
243 bt_port_type_string(port_type), name);
244
3e9b0023 245 new_port = bt_port_create(component, port_type, name, user_data);
72b913fb 246 if (!new_port) {
870631a2 247 BT_LIB_LOGE_APPEND_CAUSE("Cannot create port object.");
d24d5663 248 status = BT_FUNC_STATUS_MEMORY_ERROR;
8cc56726 249 goto error;
72b913fb
PP
250 }
251
252 /*
253 * No name clash, add the port.
254 * The component is now the port's parent; it should _not_
255 * hold a reference to the port since the port's lifetime
256 * is now protected by the component's own lifetime.
257 */
258 g_ptr_array_add(ports, new_port);
1bf957a0
PP
259
260 /*
261 * Notify the graph's creator that a new port was added.
262 */
398454ed 263 graph = bt_component_borrow_graph(component);
1bf957a0 264 if (graph) {
d24d5663 265 enum bt_graph_listener_func_status listener_status;
8cc56726
SM
266
267 listener_status = bt_graph_notify_port_added(graph, new_port);
d24d5663 268 if (listener_status != BT_FUNC_STATUS_OK) {
8cc56726 269 bt_graph_make_faulty(graph);
d24d5663 270 status = (int) listener_status;
8cc56726
SM
271 goto error;
272 }
1bf957a0
PP
273 }
274
3f7d4d90 275 BT_LIB_LOGI("Created and added port to component: "
d94d92ac 276 "%![comp-]+c, %![port-]+p", component, new_port);
ab0d387b 277
8cc56726 278 *port = new_port;
d24d5663 279 status = BT_FUNC_STATUS_OK;
8cc56726
SM
280
281 goto end;
282error:
283 /*
284 * We need to release the reference that we would otherwise have
285 * returned to the caller.
286 */
287 BT_PORT_PUT_REF_AND_RESET(new_port);
288
72b913fb 289end:
8cc56726 290 return status;
72b913fb
PP
291}
292
1778c2a4
PP
293uint64_t bt_component_get_input_port_count(const struct bt_component *comp,
294 const char *api_func)
72b913fb 295{
1778c2a4 296 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
d94d92ac 297 return (uint64_t) comp->input_ports->len;
72b913fb
PP
298}
299
1778c2a4
PP
300uint64_t bt_component_get_output_port_count(const struct bt_component *comp,
301 const char *api_func)
72b913fb 302{
1778c2a4 303 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
d94d92ac 304 return (uint64_t) comp->output_ports->len;
72b913fb
PP
305}
306
d94d92ac 307int bt_component_create(struct bt_component_class *component_class,
e874da19
PP
308 const char *name, bt_logging_level log_level,
309 struct bt_component **user_component)
38b48196 310{
d94d92ac 311 int ret = 0;
38b48196 312 struct bt_component *component = NULL;
d3e4dcd8 313 enum bt_component_class_type type;
38b48196 314
f6ccaed9
PP
315 BT_ASSERT(user_component);
316 BT_ASSERT(component_class);
317 BT_ASSERT(name);
7c7c0433 318 type = bt_component_class_get_type(component_class);
3f7d4d90 319 BT_LIB_LOGI("Creating empty component from component class: %![cc-]+C, "
e874da19
PP
320 "comp-name=\"%s\", log-level=%s", component_class, name,
321 bt_common_logging_level_string(log_level));
36712f1d 322 component = component_create_funcs[type](component_class);
7c7c0433 323 if (!component) {
870631a2
PP
324 BT_LIB_LOGE_APPEND_CAUSE(
325 "Cannot create specific component object.");
d94d92ac 326 ret = -1;
7c7c0433
JG
327 goto end;
328 }
329
d0fea130 330 bt_object_init_shared_with_parent(&component->base, destroy_component);
398454ed 331 component->class = component_class;
6871026b 332 bt_object_get_ref_no_null_check(component->class);
72b913fb 333 component->destroy = component_destroy_funcs[type];
7c7c0433 334 component->name = g_string_new(name);
4b70dd83 335 if (!component->name) {
870631a2 336 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GString.");
d94d92ac 337 ret = -1;
7c7c0433
JG
338 goto end;
339 }
340
e874da19 341 component->log_level = log_level;
72b913fb 342 component->input_ports = g_ptr_array_new_with_free_func(
3fea54f6 343 (GDestroyNotify) bt_object_try_spec_release);
72b913fb 344 if (!component->input_ports) {
870631a2 345 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
d94d92ac 346 ret = -1;
72b913fb
PP
347 goto end;
348 }
349
350 component->output_ports = g_ptr_array_new_with_free_func(
3fea54f6 351 (GDestroyNotify) bt_object_try_spec_release);
72b913fb 352 if (!component->output_ports) {
870631a2 353 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
d94d92ac 354 ret = -1;
72b913fb
PP
355 goto end;
356 }
357
3230ee6b
PP
358 component->destroy_listeners = g_array_new(FALSE, TRUE,
359 sizeof(struct bt_component_destroy_listener));
360 if (!component->destroy_listeners) {
870631a2 361 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GArray.");
d94d92ac 362 ret = -1;
3230ee6b
PP
363 goto end;
364 }
365
3f7d4d90 366 BT_LIB_LOGI("Created empty component from component class: "
d94d92ac 367 "%![cc-]+C, %![comp-]+c", component_class, component);
65300d60 368 BT_OBJECT_MOVE_REF(*user_component, component);
ab0d387b 369
38b48196 370end:
65300d60 371 bt_object_put_ref(component);
d94d92ac 372 return ret;
6358c163
PP
373}
374
1353b066 375BT_EXPORT
0d72b8c3 376const char *bt_component_get_name(const struct bt_component *component)
de713ce0 377{
d5b13b9b 378 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
d94d92ac 379 return component->name->str;
de713ce0
JG
380}
381
1353b066 382BT_EXPORT
1de6a2b0 383const struct bt_component_class *bt_component_borrow_class_const(
0d72b8c3 384 const struct bt_component *component)
de713ce0 385{
d5b13b9b 386 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
d94d92ac 387 return component->class;
de713ce0
JG
388}
389
1353b066 390BT_EXPORT
0d72b8c3 391void *bt_self_component_get_data(const struct bt_self_component *self_comp)
de713ce0 392{
d94d92ac 393 struct bt_component *component = (void *) self_comp;
890882ef 394
d5b13b9b 395 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
d94d92ac 396 return component->user_data;
de713ce0
JG
397}
398
1353b066 399BT_EXPORT
d94d92ac 400void bt_self_component_set_data(struct bt_self_component *self_comp,
de713ce0
JG
401 void *data)
402{
d94d92ac 403 struct bt_component *component = (void *) self_comp;
ab0d387b 404
d5b13b9b 405 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
de713ce0 406 component->user_data = data;
3f7d4d90 407 BT_LIB_LOGD("Set component's user data: %!+c", component);
de713ce0 408}
366e034f 409
f60c8b34 410void bt_component_set_graph(struct bt_component *component,
366e034f
JG
411 struct bt_graph *graph)
412{
3fea54f6
PP
413 bt_object_set_parent(&component->base,
414 graph ? &graph->base : NULL);
366e034f
JG
415}
416
72b913fb 417static
d94d92ac 418struct bt_port *borrow_port_by_name(GPtrArray *ports,
1778c2a4 419 const char *name, const char *api_func)
366e034f 420{
d94d92ac 421 uint64_t i;
366e034f
JG
422 struct bt_port *ret_port = NULL;
423
1778c2a4 424 BT_ASSERT_PRE_DEV_NAME_NON_NULL_FROM_FUNC(api_func, name);
72b913fb 425
366e034f
JG
426 for (i = 0; i < ports->len; i++) {
427 struct bt_port *port = g_ptr_array_index(ports, i);
366e034f 428
2242b43d 429 if (strcmp(name, port->name->str) == 0) {
d94d92ac 430 ret_port = port;
366e034f
JG
431 break;
432 }
433 }
434
435 return ret_port;
436}
437
d94d92ac 438struct bt_port_input *bt_component_borrow_input_port_by_name(
1778c2a4
PP
439 struct bt_component *comp, const char *name,
440 const char *api_func)
72b913fb 441{
1778c2a4
PP
442 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
443 return (void *) borrow_port_by_name(comp->input_ports, name, api_func);
72b913fb
PP
444}
445
d94d92ac 446struct bt_port_output *bt_component_borrow_output_port_by_name(
1778c2a4
PP
447 struct bt_component *comp, const char *name,
448 const char *api_func)
72b913fb 449{
1778c2a4 450 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
d94d92ac 451 return (void *)
1778c2a4 452 borrow_port_by_name(comp->output_ports, name, api_func);
72b913fb
PP
453}
454
455static
1778c2a4
PP
456struct bt_port *borrow_port_by_index(GPtrArray *ports, uint64_t index,
457 const char *api_func)
366e034f 458{
1778c2a4 459 BT_ASSERT_PRE_DEV_VALID_INDEX_FROM_FUNC(api_func, index, ports->len);
d94d92ac 460 return g_ptr_array_index(ports, index);
366e034f
JG
461}
462
d94d92ac 463struct bt_port_input *bt_component_borrow_input_port_by_index(
1778c2a4
PP
464 struct bt_component *comp, uint64_t index,
465 const char *api_func)
366e034f 466{
1778c2a4 467 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
d94d92ac 468 return (void *)
1778c2a4 469 borrow_port_by_index(comp->input_ports, index, api_func);
72b913fb 470}
366e034f 471
d94d92ac 472struct bt_port_output *bt_component_borrow_output_port_by_index(
1778c2a4
PP
473 struct bt_component *comp, uint64_t index,
474 const char *api_func)
72b913fb 475{
1778c2a4 476 BT_ASSERT_PRE_DEV_COMP_NON_NULL_FROM_FUNC(api_func, comp);
d94d92ac 477 return (void *)
1778c2a4 478 borrow_port_by_index(comp->output_ports, index, api_func);
72b913fb 479}
366e034f 480
d24d5663 481enum bt_self_component_add_port_status bt_component_add_input_port(
3e9b0023 482 struct bt_component *component, const char *name,
1778c2a4 483 void *user_data, struct bt_port **port, const char *api_func)
72b913fb 484{
1778c2a4 485 /* add_port() logs details and checks preconditions */
8cc56726 486 return add_port(component, component->input_ports,
63baac60 487 BT_PORT_TYPE_INPUT, name, user_data, port, api_func, true);
72b913fb 488}
366e034f 489
d24d5663 490enum bt_self_component_add_port_status bt_component_add_output_port(
3e9b0023 491 struct bt_component *component, const char *name,
1778c2a4
PP
492 void *user_data, struct bt_port **port,
493 const char *api_func)
72b913fb 494{
1778c2a4 495 /* add_port() logs details and checks preconditions */
8cc56726 496 return add_port(component, component->output_ports,
63baac60 497 BT_PORT_TYPE_OUTPUT, name, user_data, port, api_func, false);
72b913fb
PP
498}
499
d24d5663
PP
500enum bt_component_class_port_connected_method_status
501bt_component_port_connected(
d94d92ac
PP
502 struct bt_component *comp, struct bt_port *self_port,
503 struct bt_port *other_port)
0d8b4d8e 504{
d24d5663 505 typedef enum bt_component_class_port_connected_method_status (*method_t)(
0d72b8c3 506 void *, void *, const void *);
d94d92ac 507
9275bef4 508 enum bt_component_class_port_connected_method_status status =
d24d5663 509 BT_FUNC_STATUS_OK;
d94d92ac 510 method_t method = NULL;
1778c2a4 511 const char *method_name = NULL;
bf55043c 512
f6ccaed9
PP
513 BT_ASSERT(comp);
514 BT_ASSERT(self_port);
515 BT_ASSERT(other_port);
0d8b4d8e 516
d94d92ac
PP
517 switch (comp->class->type) {
518 case BT_COMPONENT_CLASS_TYPE_SOURCE:
519 {
520 struct bt_component_class_source *src_cc = (void *) comp->class;
521
522 switch (self_port->type) {
523 case BT_PORT_TYPE_OUTPUT:
524 method = (method_t) src_cc->methods.output_port_connected;
1778c2a4 525 method_name = "bt_component_class_source_output_port_connected_method";
d94d92ac
PP
526 break;
527 default:
498e7994 528 bt_common_abort();
d94d92ac
PP
529 }
530
531 break;
532 }
533 case BT_COMPONENT_CLASS_TYPE_FILTER:
534 {
535 struct bt_component_class_filter *flt_cc = (void *) comp->class;
536
537 switch (self_port->type) {
538 case BT_PORT_TYPE_INPUT:
539 method = (method_t) flt_cc->methods.input_port_connected;
1778c2a4 540 method_name = "bt_component_class_filter_input_port_connected_method";
d94d92ac
PP
541 break;
542 case BT_PORT_TYPE_OUTPUT:
543 method = (method_t) flt_cc->methods.output_port_connected;
1778c2a4 544 method_name = "bt_component_class_filter_output_port_connected_method";
d94d92ac
PP
545 break;
546 default:
498e7994 547 bt_common_abort();
d94d92ac
PP
548 }
549
550 break;
551 }
552 case BT_COMPONENT_CLASS_TYPE_SINK:
553 {
554 struct bt_component_class_sink *sink_cc = (void *) comp->class;
555
556 switch (self_port->type) {
557 case BT_PORT_TYPE_INPUT:
558 method = (method_t) sink_cc->methods.input_port_connected;
1778c2a4 559 method_name = "bt_component_class_sink_input_port_connected_method";
d94d92ac
PP
560 break;
561 default:
498e7994 562 bt_common_abort();
d94d92ac
PP
563 }
564
565 break;
566 }
567 default:
498e7994 568 bt_common_abort();
d94d92ac
PP
569 }
570
571 if (method) {
572 BT_LIB_LOGD("Calling user's \"port connected\" method: "
573 "%![comp-]+c, %![self-port-]+p, %![other-port-]+p",
574 comp, self_port, other_port);
d24d5663 575 status = (int) method(comp, self_port, (void *) other_port);
d94d92ac 576 BT_LOGD("User method returned: status=%s",
d24d5663 577 bt_common_func_status_string(status));
1778c2a4
PP
578 BT_ASSERT_POST(method_name, "valid-status",
579 status == BT_FUNC_STATUS_OK ||
d24d5663
PP
580 status == BT_FUNC_STATUS_ERROR ||
581 status == BT_FUNC_STATUS_MEMORY_ERROR,
4725a201 582 "Unexpected returned component status: status=%s",
d24d5663 583 bt_common_func_status_string(status));
1778c2a4 584 BT_ASSERT_POST_NO_ERROR_IF_NO_ERROR_STATUS(method_name, status);
0d8b4d8e 585 }
bf55043c
PP
586
587 return status;
0d8b4d8e
PP
588}
589
3230ee6b
PP
590void bt_component_add_destroy_listener(struct bt_component *component,
591 bt_component_destroy_listener_func func, void *data)
592{
593 struct bt_component_destroy_listener listener;
594
f6ccaed9
PP
595 BT_ASSERT(component);
596 BT_ASSERT(func);
3230ee6b
PP
597 listener.func = func;
598 listener.data = data;
599 g_array_append_val(component->destroy_listeners, listener);
3f7d4d90 600 BT_LIB_LOGD("Added destroy listener: %![comp-]+c, "
ab0d387b 601 "func-addr=%p, data-addr=%p",
d94d92ac 602 component, func, data);
3230ee6b
PP
603}
604
3230ee6b
PP
605void bt_component_remove_destroy_listener(struct bt_component *component,
606 bt_component_destroy_listener_func func, void *data)
607{
d94d92ac 608 uint64_t i;
3230ee6b 609
f6ccaed9
PP
610 BT_ASSERT(component);
611 BT_ASSERT(func);
3230ee6b
PP
612
613 for (i = 0; i < component->destroy_listeners->len; i++) {
614 struct bt_component_destroy_listener *listener =
615 &g_array_index(component->destroy_listeners,
616 struct bt_component_destroy_listener, i);
617
618 if (listener->func == func && listener->data == data) {
619 g_array_remove_index(component->destroy_listeners, i);
620 i--;
3f7d4d90 621 BT_LIB_LOGD("Removed destroy listener: %![comp-]+c, "
ab0d387b 622 "func-addr=%p, data-addr=%p",
d94d92ac 623 component, func, data);
3230ee6b
PP
624 }
625 }
626}
c5b9b441 627
1353b066 628BT_EXPORT
e874da19
PP
629bt_logging_level bt_component_get_logging_level(
630 const struct bt_component *component)
631{
d5b13b9b 632 BT_ASSERT_PRE_DEV_COMP_NON_NULL(component);
e874da19
PP
633 return component->log_level;
634}
635
1353b066 636BT_EXPORT
056deb59
PP
637uint64_t bt_self_component_get_graph_mip_version(
638 bt_self_component *self_component)
639{
640 struct bt_component *comp = (void *) self_component;
641
d5b13b9b 642 BT_ASSERT_PRE_COMP_NON_NULL(self_component);
056deb59
PP
643 return bt_component_borrow_graph(comp)->mip_version;
644}
645
1353b066 646BT_EXPORT
c5b9b441
PP
647void bt_component_get_ref(const struct bt_component *component)
648{
649 bt_object_get_ref(component);
650}
651
1353b066 652BT_EXPORT
c5b9b441
PP
653void bt_component_put_ref(const struct bt_component *component)
654{
655 bt_object_put_ref(component);
656}
This page took 0.11774 seconds and 4 git commands to generate.