lib: make plugin API const-correct
[babeltrace.git] / lib / graph / component.c
CommitLineData
de713ce0 1/*
de713ce0
JG
2 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
ab0d387b
PP
25#define BT_LOG_TAG "COMP"
26#include <babeltrace/lib-logging-internal.h>
27
d94d92ac 28#include <babeltrace/graph/self-component.h>
b2e0c907
PP
29#include <babeltrace/graph/component.h>
30#include <babeltrace/graph/component-internal.h>
31#include <babeltrace/graph/component-class-internal.h>
32#include <babeltrace/graph/component-source-internal.h>
33#include <babeltrace/graph/component-filter-internal.h>
34#include <babeltrace/graph/component-sink-internal.h>
b2e0c907
PP
35#include <babeltrace/graph/connection-internal.h>
36#include <babeltrace/graph/graph-internal.h>
37#include <babeltrace/graph/notification-iterator-internal.h>
d94d92ac 38#include <babeltrace/graph/port-internal.h>
de713ce0 39#include <babeltrace/babeltrace-internal.h>
3d9990ac 40#include <babeltrace/compiler-internal.h>
65300d60 41#include <babeltrace/object.h>
c55a9f58 42#include <babeltrace/types.h>
ab0d387b
PP
43#include <babeltrace/values.h>
44#include <babeltrace/values-internal.h>
f6ccaed9 45#include <babeltrace/assert-internal.h>
d94d92ac 46#include <babeltrace/assert-pre-internal.h>
9ac68eb1 47#include <stdint.h>
ab0d387b 48#include <inttypes.h>
de713ce0 49
7c7c0433
JG
50static
51struct bt_component * (* const component_create_funcs[])(
36712f1d 52 struct bt_component_class *) = {
d3e4dcd8
PP
53 [BT_COMPONENT_CLASS_TYPE_SOURCE] = bt_component_source_create,
54 [BT_COMPONENT_CLASS_TYPE_SINK] = bt_component_sink_create,
55 [BT_COMPONENT_CLASS_TYPE_FILTER] = bt_component_filter_create,
7c7c0433
JG
56};
57
72b913fb
PP
58static
59void (*component_destroy_funcs[])(struct bt_component *) = {
60 [BT_COMPONENT_CLASS_TYPE_SOURCE] = bt_component_source_destroy,
61 [BT_COMPONENT_CLASS_TYPE_SINK] = bt_component_sink_destroy,
62 [BT_COMPONENT_CLASS_TYPE_FILTER] = bt_component_filter_destroy,
63};
64
b8a06801 65static
d94d92ac
PP
66void finalize_component(struct bt_component *comp)
67{
68 typedef void (*method_t)(void *);
69
70 method_t method = NULL;
71
72 BT_ASSERT(comp);
73
74 switch (comp->class->type) {
75 case BT_COMPONENT_CLASS_TYPE_SOURCE:
76 {
77 struct bt_component_class_source *src_cc = (void *) comp->class;
78
79 method = (method_t) src_cc->methods.finalize;
80 break;
81 }
82 case BT_COMPONENT_CLASS_TYPE_FILTER:
83 {
84 struct bt_component_class_filter *flt_cc = (void *) comp->class;
85
86 method = (method_t) flt_cc->methods.finalize;
87 break;
88 }
89 case BT_COMPONENT_CLASS_TYPE_SINK:
90 {
91 struct bt_component_class_sink *sink_cc = (void *) comp->class;
92
93 method = (method_t) sink_cc->methods.finalize;
94 break;
95 }
96 default:
97 abort();
98 }
99
100 if (method) {
101 BT_LIB_LOGD("Calling user's finalization method: "
102 "%![comp-]+c", comp);
103 method(comp);
104 }
105}
106
107static
108void destroy_component(struct bt_object *obj)
b8a06801
JG
109{
110 struct bt_component *component = NULL;
3230ee6b 111 int i;
b8a06801
JG
112
113 if (!obj) {
114 return;
115 }
116
bd14d768
PP
117 /*
118 * The component's reference count is 0 if we're here. Increment
119 * it to avoid a double-destroy (possibly infinitely recursive).
120 * This could happen for example if the component's finalization
d94d92ac
PP
121 * function does bt_object_get_ref() (or anything that causes
122 * bt_object_get_ref() to be called) on itself (ref. count goes
123 * from 0 to 1), and then bt_object_put_ref(): the reference
124 * count would go from 1 to 0 again and this function would be
125 * called again.
bd14d768 126 */
3fea54f6 127 obj->ref_count++;
b8a06801 128 component = container_of(obj, struct bt_component, base);
d94d92ac
PP
129 BT_LIB_LOGD("Destroying component: %![comp-]+c, %![graph-]+g",
130 component, bt_component_borrow_graph(component));
3230ee6b
PP
131
132 /* Call destroy listeners in reverse registration order */
ab0d387b
PP
133 BT_LOGD_STR("Calling destroy listeners.");
134
3230ee6b
PP
135 for (i = component->destroy_listeners->len - 1; i >= 0; i--) {
136 struct bt_component_destroy_listener *listener =
137 &g_array_index(component->destroy_listeners,
138 struct bt_component_destroy_listener, i);
139
140 listener->func(component, listener->data);
141 }
142
7c7c0433 143 /*
36712f1d
PP
144 * User data is destroyed first, followed by the concrete
145 * component instance. Do not finalize if the component's user
146 * initialization method failed in the first place.
b8a06801 147 */
d94d92ac
PP
148 if (component->initialized) {
149 finalize_component(component);
7c7c0433 150 }
b8a06801 151
ab09f844 152 if (component->destroy) {
ab0d387b 153 BT_LOGD_STR("Destroying type-specific data.");
ab09f844
JG
154 component->destroy(component);
155 }
156
72b913fb 157 if (component->input_ports) {
ab0d387b 158 BT_LOGD_STR("Destroying input ports.");
72b913fb 159 g_ptr_array_free(component->input_ports, TRUE);
d94d92ac 160 component->input_ports = NULL;
72b913fb 161 }
b8a06801 162
72b913fb 163 if (component->output_ports) {
ab0d387b 164 BT_LOGD_STR("Destroying output ports.");
72b913fb 165 g_ptr_array_free(component->output_ports, TRUE);
d94d92ac 166 component->output_ports = NULL;
b8a06801
JG
167 }
168
3230ee6b
PP
169 if (component->destroy_listeners) {
170 g_array_free(component->destroy_listeners, TRUE);
d94d92ac 171 component->destroy_listeners = NULL;
3230ee6b
PP
172 }
173
ab0d387b
PP
174 if (component->name) {
175 g_string_free(component->name, TRUE);
d94d92ac 176 component->name = NULL;
ab0d387b
PP
177 }
178
d94d92ac
PP
179 BT_LOGD_STR("Putting component class.");
180 BT_OBJECT_PUT_REF_AND_RESET(component->class);
72b913fb 181 g_free(component);
b8a06801 182}
de713ce0 183
890882ef
PP
184enum bt_component_class_type bt_component_get_class_type(
185 struct bt_component *component)
5645cd95 186{
d94d92ac
PP
187 BT_ASSERT_PRE_NON_NULL(component, "Component");
188 return component->class->type;
5645cd95
JG
189}
190
72b913fb 191static
d94d92ac 192struct bt_port *add_port(
72b913fb 193 struct bt_component *component, GPtrArray *ports,
3e9b0023 194 enum bt_port_type port_type, const char *name, void *user_data)
72b913fb 195{
72b913fb 196 struct bt_port *new_port = NULL;
1bf957a0 197 struct bt_graph *graph = NULL;
72b913fb 198
d94d92ac
PP
199 BT_ASSERT_PRE_NON_NULL(component, "Component");
200 BT_ASSERT_PRE_NON_NULL(name, "Name");
201 BT_ASSERT_PRE(strlen(name) > 0, "Name is empty");
202 graph = bt_component_borrow_graph(component);
203 BT_ASSERT_PRE(graph && !bt_graph_is_canceled(graph),
204 "Component's graph is canceled: %![comp-]+c, %![graph-]+g",
205 component, graph);
72b913fb 206
d94d92ac 207 // TODO: Validate that the name is not already used.
ab0d387b 208
d94d92ac 209 BT_LIB_LOGD("Adding port to component: %![comp-]+c, "
ab0d387b 210 "port-type=%s, port-name=\"%s\"", component,
ab0d387b
PP
211 bt_port_type_string(port_type), name);
212
3e9b0023 213 new_port = bt_port_create(component, port_type, name, user_data);
72b913fb 214 if (!new_port) {
d94d92ac 215 BT_LOGE_STR("Cannot create port object.");
72b913fb
PP
216 goto end;
217 }
218
219 /*
220 * No name clash, add the port.
221 * The component is now the port's parent; it should _not_
222 * hold a reference to the port since the port's lifetime
223 * is now protected by the component's own lifetime.
224 */
225 g_ptr_array_add(ports, new_port);
1bf957a0
PP
226
227 /*
228 * Notify the graph's creator that a new port was added.
229 */
398454ed
PP
230 bt_object_get_ref(bt_component_borrow_graph(component));
231 graph = bt_component_borrow_graph(component);
1bf957a0
PP
232 if (graph) {
233 bt_graph_notify_port_added(graph, new_port);
65300d60 234 BT_OBJECT_PUT_REF_AND_RESET(graph);
1bf957a0
PP
235 }
236
d94d92ac
PP
237 BT_LIB_LOGD("Created and added port to component: "
238 "%![comp-]+c, %![port-]+p", component, new_port);
ab0d387b 239
72b913fb
PP
240end:
241 return new_port;
242}
243
244BT_HIDDEN
d94d92ac 245uint64_t bt_component_get_input_port_count(struct bt_component *comp)
72b913fb 246{
d94d92ac
PP
247 BT_ASSERT_PRE_NON_NULL(comp, "Component");
248 return (uint64_t) comp->input_ports->len;
72b913fb
PP
249}
250
251BT_HIDDEN
d94d92ac 252uint64_t bt_component_get_output_port_count(struct bt_component *comp)
72b913fb 253{
d94d92ac
PP
254 BT_ASSERT_PRE_NON_NULL(comp, "Component");
255 return (uint64_t) comp->output_ports->len;
72b913fb
PP
256}
257
dd8a4547 258BT_HIDDEN
d94d92ac 259int bt_component_create(struct bt_component_class *component_class,
36712f1d 260 const char *name, struct bt_component **user_component)
38b48196 261{
d94d92ac 262 int ret = 0;
38b48196 263 struct bt_component *component = NULL;
d3e4dcd8 264 enum bt_component_class_type type;
38b48196 265
f6ccaed9
PP
266 BT_ASSERT(user_component);
267 BT_ASSERT(component_class);
268 BT_ASSERT(name);
38b48196 269
7c7c0433 270 type = bt_component_class_get_type(component_class);
d94d92ac
PP
271 BT_LIB_LOGD("Creating empty component from component class: %![cc-]+C, "
272 "comp-name=\"%s\"", component_class, name);
36712f1d 273 component = component_create_funcs[type](component_class);
7c7c0433 274 if (!component) {
ab0d387b 275 BT_LOGE_STR("Cannot create specific component object.");
d94d92ac 276 ret = -1;
7c7c0433
JG
277 goto end;
278 }
279
3fea54f6 280 bt_object_init_shared_with_parent(&component->base,
d94d92ac 281 destroy_component);
398454ed
PP
282 component->class = component_class;
283 bt_object_get_no_null_check(component->class);
72b913fb 284 component->destroy = component_destroy_funcs[type];
7c7c0433 285 component->name = g_string_new(name);
4b70dd83 286 if (!component->name) {
ab0d387b 287 BT_LOGE_STR("Failed to allocate one GString.");
d94d92ac 288 ret = -1;
7c7c0433
JG
289 goto end;
290 }
291
72b913fb 292 component->input_ports = g_ptr_array_new_with_free_func(
3fea54f6 293 (GDestroyNotify) bt_object_try_spec_release);
72b913fb 294 if (!component->input_ports) {
ab0d387b 295 BT_LOGE_STR("Failed to allocate one GPtrArray.");
d94d92ac 296 ret = -1;
72b913fb
PP
297 goto end;
298 }
299
300 component->output_ports = g_ptr_array_new_with_free_func(
3fea54f6 301 (GDestroyNotify) bt_object_try_spec_release);
72b913fb 302 if (!component->output_ports) {
ab0d387b 303 BT_LOGE_STR("Failed to allocate one GPtrArray.");
d94d92ac 304 ret = -1;
72b913fb
PP
305 goto end;
306 }
307
3230ee6b
PP
308 component->destroy_listeners = g_array_new(FALSE, TRUE,
309 sizeof(struct bt_component_destroy_listener));
310 if (!component->destroy_listeners) {
ab0d387b 311 BT_LOGE_STR("Failed to allocate one GArray.");
d94d92ac 312 ret = -1;
3230ee6b
PP
313 goto end;
314 }
315
d94d92ac
PP
316 BT_LIB_LOGD("Created empty component from component class: "
317 "%![cc-]+C, %![comp-]+c", component_class, component);
65300d60 318 BT_OBJECT_MOVE_REF(*user_component, component);
ab0d387b 319
38b48196 320end:
65300d60 321 bt_object_put_ref(component);
d94d92ac 322 return ret;
6358c163
PP
323}
324
de713ce0
JG
325const char *bt_component_get_name(struct bt_component *component)
326{
d94d92ac
PP
327 BT_ASSERT_PRE_NON_NULL(component, "Component");
328 return component->name->str;
de713ce0
JG
329}
330
d94d92ac 331struct bt_component_class *bt_component_borrow_class(
38b48196 332 struct bt_component *component)
de713ce0 333{
d94d92ac
PP
334 BT_ASSERT_PRE_NON_NULL(component, "Component");
335 return component->class;
de713ce0
JG
336}
337
d94d92ac 338void *bt_self_component_get_data(struct bt_self_component *self_comp)
de713ce0 339{
d94d92ac 340 struct bt_component *component = (void *) self_comp;
890882ef 341
d94d92ac
PP
342 BT_ASSERT_PRE_NON_NULL(component, "Component");
343 return component->user_data;
de713ce0
JG
344}
345
d94d92ac 346void bt_self_component_set_data(struct bt_self_component *self_comp,
de713ce0
JG
347 void *data)
348{
d94d92ac 349 struct bt_component *component = (void *) self_comp;
ab0d387b 350
d94d92ac 351 BT_ASSERT_PRE_NON_NULL(component, "Component");
de713ce0 352 component->user_data = data;
d94d92ac 353 BT_LIB_LOGV("Set component's user data: %!+c", component);
de713ce0 354}
366e034f
JG
355
356BT_HIDDEN
f60c8b34 357void bt_component_set_graph(struct bt_component *component,
366e034f
JG
358 struct bt_graph *graph)
359{
3fea54f6
PP
360 bt_object_set_parent(&component->base,
361 graph ? &graph->base : NULL);
366e034f
JG
362}
363
e5be10ef 364bt_bool bt_component_graph_is_canceled(struct bt_component *component)
366e034f 365{
e5be10ef
PP
366 return bt_graph_is_canceled(
367 (void *) bt_object_borrow_parent(&component->base));
366e034f
JG
368}
369
72b913fb 370static
d94d92ac 371struct bt_port *borrow_port_by_name(GPtrArray *ports,
9ac68eb1 372 const char *name)
366e034f 373{
d94d92ac 374 uint64_t i;
366e034f
JG
375 struct bt_port *ret_port = NULL;
376
f6ccaed9 377 BT_ASSERT(name);
72b913fb 378
366e034f
JG
379 for (i = 0; i < ports->len; i++) {
380 struct bt_port *port = g_ptr_array_index(ports, i);
366e034f 381
d94d92ac
PP
382 if (!strcmp(name, port->name->str)) {
383 ret_port = port;
366e034f
JG
384 break;
385 }
386 }
387
388 return ret_port;
389}
390
391BT_HIDDEN
d94d92ac
PP
392struct bt_port_input *bt_component_borrow_input_port_by_name(
393 struct bt_component *comp, const char *name)
72b913fb 394{
f6ccaed9 395 BT_ASSERT(comp);
d94d92ac 396 return (void *) borrow_port_by_name(comp->input_ports, name);
72b913fb
PP
397}
398
399BT_HIDDEN
d94d92ac
PP
400struct bt_port_output *bt_component_borrow_output_port_by_name(
401 struct bt_component *comp, const char *name)
72b913fb 402{
d94d92ac
PP
403 BT_ASSERT_PRE_NON_NULL(comp, "Component");
404 return (void *)
405 borrow_port_by_name(comp->output_ports, name);
72b913fb
PP
406}
407
408static
d94d92ac 409struct bt_port *borrow_port_by_index(GPtrArray *ports, uint64_t index)
366e034f 410{
d94d92ac
PP
411 BT_ASSERT(index < ports->len);
412 return g_ptr_array_index(ports, index);
366e034f
JG
413}
414
415BT_HIDDEN
d94d92ac
PP
416struct bt_port_input *bt_component_borrow_input_port_by_index(
417 struct bt_component *comp, uint64_t index)
366e034f 418{
d94d92ac
PP
419 BT_ASSERT_PRE_NON_NULL(comp, "Component");
420 BT_ASSERT_PRE_VALID_INDEX(index, comp->input_ports->len);
421 return (void *)
422 borrow_port_by_index(comp->input_ports, index);
72b913fb 423}
366e034f 424
72b913fb 425BT_HIDDEN
d94d92ac
PP
426struct bt_port_output *bt_component_borrow_output_port_by_index(
427 struct bt_component *comp, uint64_t index)
72b913fb 428{
d94d92ac
PP
429 BT_ASSERT_PRE_NON_NULL(comp, "Component");
430 BT_ASSERT_PRE_VALID_INDEX(index, comp->output_ports->len);
431 return (void *)
432 borrow_port_by_index(comp->output_ports, index);
72b913fb 433}
366e034f 434
72b913fb 435BT_HIDDEN
d94d92ac 436struct bt_port_input *bt_component_add_input_port(
3e9b0023
PP
437 struct bt_component *component, const char *name,
438 void *user_data)
72b913fb 439{
d94d92ac
PP
440 /* add_port() logs details */
441 return (void *)
442 add_port(component, component->input_ports,
443 BT_PORT_TYPE_INPUT, name, user_data);
72b913fb 444}
366e034f 445
72b913fb 446BT_HIDDEN
d94d92ac 447struct bt_port_output *bt_component_add_output_port(
3e9b0023
PP
448 struct bt_component *component, const char *name,
449 void *user_data)
72b913fb 450{
d94d92ac
PP
451 /* add_port() logs details */
452 return (void *)
453 add_port(component, component->output_ports,
454 BT_PORT_TYPE_OUTPUT, name, user_data);
72b913fb
PP
455}
456
457static
d94d92ac
PP
458void remove_port_by_index(struct bt_component *component,
459 GPtrArray *ports, uint64_t index)
72b913fb
PP
460{
461 struct bt_port *port;
1bf957a0 462 struct bt_graph *graph;
72b913fb 463
f6ccaed9
PP
464 BT_ASSERT(ports);
465 BT_ASSERT(index < ports->len);
72b913fb 466 port = g_ptr_array_index(ports, index);
d94d92ac
PP
467 BT_LIB_LOGD("Removing port from component: %![comp-]+c, %![port-]+p",
468 component, port);
ab0d387b 469
72b913fb
PP
470 /* Disconnect both ports of this port's connection, if any */
471 if (port->connection) {
c42ea0af 472 bt_connection_end(port->connection, true);
f60c8b34
JG
473 }
474
d94d92ac
PP
475 /*
476 * The port's current reference count can be 0 at this point,
477 * which means its parent (component) keeps it alive. We are
478 * about to remove the port from its parent's container (with
479 * the g_ptr_array_remove_index() call below), which in this
480 * case would destroy it. This is not good because we still
481 * need the port for the bt_graph_notify_port_removed() call
482 * below (in which its component is `NULL` as expected because
483 * of the bt_object_set_parent() call below).
484 *
485 * To avoid a destroyed port during the notification callback,
486 * get a reference now, and put it (destroying the port if its
487 * reference count is 0 at this point) after notifying the
488 * private graph's user.
489 */
490 bt_object_get_no_null_check(&port->base);
491
492 /*
493 * Remove from parent's array of ports (weak refs). This never
494 * destroys the port object because its reference count is at
495 * least 1 thanks to the bt_object_get_no_null_check() call
496 * above.
497 */
72b913fb
PP
498 g_ptr_array_remove_index(ports, index);
499
500 /* Detach port from its component parent */
d94d92ac 501 bt_object_set_parent(&port->base, NULL);
72b913fb 502
1bf957a0
PP
503 /*
504 * Notify the graph's creator that a port is removed.
505 */
d94d92ac 506 graph = bt_component_borrow_graph(component);
1bf957a0
PP
507 if (graph) {
508 bt_graph_notify_port_removed(graph, component, port);
1bf957a0 509 }
ab0d387b 510
d94d92ac
PP
511 BT_LIB_LOGD("Removed port from component: %![comp-]+c, %![port-]+p",
512 component, port);
513
514 /*
515 * Put the local reference. If this port's reference count was 0
516 * when entering this function, it is 1 now, so it is destroyed
517 * immediately.
518 */
519 bt_object_put_no_null_check(&port->base);
366e034f
JG
520}
521
522BT_HIDDEN
d94d92ac
PP
523void bt_component_remove_port(struct bt_component *component,
524 struct bt_port *port)
366e034f 525{
d94d92ac 526 uint64_t i;
72b913fb 527 GPtrArray *ports = NULL;
366e034f 528
d94d92ac
PP
529 BT_ASSERT(component);
530 BT_ASSERT(port);
366e034f 531
d94d92ac
PP
532 switch (port->type) {
533 case BT_PORT_TYPE_INPUT:
72b913fb 534 ports = component->input_ports;
d94d92ac
PP
535 break;
536 case BT_PORT_TYPE_OUTPUT:
72b913fb 537 ports = component->output_ports;
d94d92ac
PP
538 break;
539 default:
540 abort();
72b913fb 541 }
366e034f 542
f6ccaed9 543 BT_ASSERT(ports);
366e034f 544
72b913fb
PP
545 for (i = 0; i < ports->len; i++) {
546 struct bt_port *cur_port = g_ptr_array_index(ports, i);
547
548 if (cur_port == port) {
d94d92ac 549 remove_port_by_index(component,
72b913fb 550 ports, i);
366e034f
JG
551 goto end;
552 }
553 }
72b913fb 554
d94d92ac
PP
555 BT_LIB_LOGW("Port to remove from component was not found: "
556 "%![comp-]+c, %![port-]+p", component, port);
ab0d387b 557
366e034f 558end:
d94d92ac 559 return;
366e034f 560}
f60c8b34
JG
561
562BT_HIDDEN
d94d92ac 563enum bt_self_component_status bt_component_accept_port_connection(
8f4799f7
PP
564 struct bt_component *comp, struct bt_port *self_port,
565 struct bt_port *other_port)
f60c8b34 566{
d94d92ac
PP
567 typedef enum bt_self_component_status (*method_t)(
568 void *, void *, void *);
569
570 enum bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
571 method_t method = NULL;
f60c8b34 572
f6ccaed9
PP
573 BT_ASSERT(comp);
574 BT_ASSERT(self_port);
575 BT_ASSERT(other_port);
72b913fb 576
d94d92ac
PP
577 switch (comp->class->type) {
578 case BT_COMPONENT_CLASS_TYPE_SOURCE:
579 {
580 struct bt_component_class_source *src_cc = (void *) comp->class;
581
582 switch (self_port->type) {
583 case BT_PORT_TYPE_OUTPUT:
584 method = (method_t) src_cc->methods.accept_output_port_connection;
585 break;
586 default:
587 abort();
588 }
589
590 break;
591 }
592 case BT_COMPONENT_CLASS_TYPE_FILTER:
593 {
594 struct bt_component_class_filter *flt_cc = (void *) comp->class;
595
596 switch (self_port->type) {
597 case BT_PORT_TYPE_INPUT:
598 method = (method_t) flt_cc->methods.accept_input_port_connection;
599 break;
600 case BT_PORT_TYPE_OUTPUT:
601 method = (method_t) flt_cc->methods.accept_output_port_connection;
602 break;
603 default:
604 abort();
605 }
606
607 break;
608 }
609 case BT_COMPONENT_CLASS_TYPE_SINK:
610 {
611 struct bt_component_class_sink *sink_cc = (void *) comp->class;
612
613 switch (self_port->type) {
614 case BT_PORT_TYPE_INPUT:
615 method = (method_t) sink_cc->methods.accept_input_port_connection;
616 break;
617 default:
618 abort();
619 }
620
621 break;
622 }
623 default:
624 abort();
625 }
626
627 if (method) {
628 BT_LIB_LOGD("Calling user's \"accept port connection\" method: "
629 "%![comp-]+c, %![self-port-]+p, %![other-port-]+p",
630 comp, self_port, other_port);
631 status = method(comp, self_port, other_port);
ab0d387b 632 BT_LOGD("User method returned: status=%s",
d94d92ac 633 bt_self_component_status_string(status));
f60c8b34
JG
634 }
635
636 return status;
637}
72b913fb 638
0d8b4d8e 639BT_HIDDEN
d94d92ac
PP
640enum bt_self_component_status bt_component_port_connected(
641 struct bt_component *comp, struct bt_port *self_port,
642 struct bt_port *other_port)
0d8b4d8e 643{
d94d92ac
PP
644 typedef enum bt_self_component_status (*method_t)(
645 void *, void *, void *);
646
647 enum bt_self_component_status status = BT_SELF_COMPONENT_STATUS_OK;
648 method_t method = NULL;
bf55043c 649
f6ccaed9
PP
650 BT_ASSERT(comp);
651 BT_ASSERT(self_port);
652 BT_ASSERT(other_port);
0d8b4d8e 653
d94d92ac
PP
654 switch (comp->class->type) {
655 case BT_COMPONENT_CLASS_TYPE_SOURCE:
656 {
657 struct bt_component_class_source *src_cc = (void *) comp->class;
658
659 switch (self_port->type) {
660 case BT_PORT_TYPE_OUTPUT:
661 method = (method_t) src_cc->methods.output_port_connected;
662 break;
663 default:
664 abort();
665 }
666
667 break;
668 }
669 case BT_COMPONENT_CLASS_TYPE_FILTER:
670 {
671 struct bt_component_class_filter *flt_cc = (void *) comp->class;
672
673 switch (self_port->type) {
674 case BT_PORT_TYPE_INPUT:
675 method = (method_t) flt_cc->methods.input_port_connected;
676 break;
677 case BT_PORT_TYPE_OUTPUT:
678 method = (method_t) flt_cc->methods.output_port_connected;
679 break;
680 default:
681 abort();
682 }
683
684 break;
685 }
686 case BT_COMPONENT_CLASS_TYPE_SINK:
687 {
688 struct bt_component_class_sink *sink_cc = (void *) comp->class;
689
690 switch (self_port->type) {
691 case BT_PORT_TYPE_INPUT:
692 method = (method_t) sink_cc->methods.input_port_connected;
693 break;
694 default:
695 abort();
696 }
697
698 break;
699 }
700 default:
701 abort();
702 }
703
704 if (method) {
705 BT_LIB_LOGD("Calling user's \"port connected\" method: "
706 "%![comp-]+c, %![self-port-]+p, %![other-port-]+p",
707 comp, self_port, other_port);
708 status = method(comp, self_port, other_port);
709 BT_LOGD("User method returned: status=%s",
710 bt_self_component_status_string(status));
0d8b4d8e 711 }
bf55043c
PP
712
713 return status;
0d8b4d8e
PP
714}
715
72b913fb
PP
716BT_HIDDEN
717void bt_component_port_disconnected(struct bt_component *comp,
718 struct bt_port *port)
719{
d94d92ac
PP
720 typedef void (*method_t)(void *, void *);
721
722 method_t method = NULL;
723
f6ccaed9
PP
724 BT_ASSERT(comp);
725 BT_ASSERT(port);
72b913fb 726
d94d92ac
PP
727 switch (comp->class->type) {
728 case BT_COMPONENT_CLASS_TYPE_SOURCE:
729 {
730 struct bt_component_class_source *src_cc = (void *) comp->class;
731
732 switch (port->type) {
733 case BT_PORT_TYPE_OUTPUT:
734 method = (method_t) src_cc->methods.output_port_disconnected;
735 break;
736 default:
737 abort();
738 }
739
740 break;
741 }
742 case BT_COMPONENT_CLASS_TYPE_FILTER:
743 {
744 struct bt_component_class_filter *flt_cc = (void *) comp->class;
745
746 switch (port->type) {
747 case BT_PORT_TYPE_INPUT:
748 method = (method_t) flt_cc->methods.input_port_disconnected;
749 break;
750 case BT_PORT_TYPE_OUTPUT:
751 method = (method_t) flt_cc->methods.output_port_disconnected;
752 break;
753 default:
754 abort();
755 }
756
757 break;
758 }
759 case BT_COMPONENT_CLASS_TYPE_SINK:
760 {
761 struct bt_component_class_sink *sink_cc = (void *) comp->class;
762
763 switch (port->type) {
764 case BT_PORT_TYPE_INPUT:
765 method = (method_t) sink_cc->methods.input_port_disconnected;
766 break;
767 default:
768 abort();
769 }
770
771 break;
772 }
773 default:
774 abort();
775 }
776
777 if (method) {
778 BT_LIB_LOGD("Calling user's \"port disconnected\" method: "
779 "%![comp-]+c, %![port-]+p", comp, port);
780 method(comp, port);
72b913fb
PP
781 }
782}
3230ee6b
PP
783
784BT_HIDDEN
785void bt_component_add_destroy_listener(struct bt_component *component,
786 bt_component_destroy_listener_func func, void *data)
787{
788 struct bt_component_destroy_listener listener;
789
f6ccaed9
PP
790 BT_ASSERT(component);
791 BT_ASSERT(func);
3230ee6b
PP
792 listener.func = func;
793 listener.data = data;
794 g_array_append_val(component->destroy_listeners, listener);
d94d92ac 795 BT_LIB_LOGV("Added destroy listener: %![comp-]+c, "
ab0d387b 796 "func-addr=%p, data-addr=%p",
d94d92ac 797 component, func, data);
3230ee6b
PP
798}
799
800BT_HIDDEN
801void bt_component_remove_destroy_listener(struct bt_component *component,
802 bt_component_destroy_listener_func func, void *data)
803{
d94d92ac 804 uint64_t i;
3230ee6b 805
f6ccaed9
PP
806 BT_ASSERT(component);
807 BT_ASSERT(func);
3230ee6b
PP
808
809 for (i = 0; i < component->destroy_listeners->len; i++) {
810 struct bt_component_destroy_listener *listener =
811 &g_array_index(component->destroy_listeners,
812 struct bt_component_destroy_listener, i);
813
814 if (listener->func == func && listener->data == data) {
815 g_array_remove_index(component->destroy_listeners, i);
816 i--;
d94d92ac 817 BT_LIB_LOGV("Removed destroy listener: %![comp-]+c, "
ab0d387b 818 "func-addr=%p, data-addr=%p",
d94d92ac 819 component, func, data);
3230ee6b
PP
820 }
821 }
822}
This page took 0.078149 seconds and 4 git commands to generate.