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