lib: use BT_LIB_LOG*_APPEND_CAUSE() where appropriate
[babeltrace.git] / src / lib / graph / graph.c
1 /*
2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
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
24 #define BT_LOG_TAG "LIB/GRAPH"
25 #include "lib/logging.h"
26
27 #include "common/assert.h"
28 #include "lib/assert-pre.h"
29 #include "lib/assert-post.h"
30 #include <babeltrace2/graph/graph.h>
31 #include <babeltrace2/graph/graph-const.h>
32 #include <babeltrace2/graph/component-source-const.h>
33 #include <babeltrace2/graph/component-filter-const.h>
34 #include <babeltrace2/graph/port-const.h>
35 #include "lib/graph/message/message.h"
36 #include "compat/compiler.h"
37 #include "common/common.h"
38 #include <babeltrace2/types.h>
39 #include <babeltrace2/value.h>
40 #include <babeltrace2/value-const.h>
41 #include "lib/value.h"
42 #include <unistd.h>
43 #include <glib.h>
44
45 #include "component.h"
46 #include "component-sink.h"
47 #include "connection.h"
48 #include "graph.h"
49 #include "message/event.h"
50 #include "message/packet.h"
51
52 typedef enum bt_graph_listener_func_status
53 (*port_added_func_t)(const void *, const void *, void *);
54
55 typedef enum bt_graph_listener_func_status
56 (*ports_connected_func_t)(const void *, const void *, const void *,
57 const void *, void *);
58
59 typedef enum bt_component_class_init_method_status
60 (*comp_init_method_t)(const void *, const void *, void *);
61
62 struct bt_graph_listener {
63 bt_graph_listener_removed_func removed;
64 void *data;
65 };
66
67 struct bt_graph_listener_port_added {
68 struct bt_graph_listener base;
69 port_added_func_t func;
70 };
71
72 struct bt_graph_listener_ports_connected {
73 struct bt_graph_listener base;
74 ports_connected_func_t func;
75 };
76
77 #define INIT_LISTENERS_ARRAY(_type, _listeners) \
78 do { \
79 _listeners = g_array_new(FALSE, TRUE, sizeof(_type)); \
80 if (!(_listeners)) { \
81 BT_LIB_LOGE_APPEND_CAUSE( \
82 "Failed to allocate one GArray."); \
83 } \
84 } while (0)
85
86 #define CALL_REMOVE_LISTENERS(_type, _listeners) \
87 do { \
88 size_t i; \
89 \
90 if (!_listeners) { \
91 break; \
92 } \
93 for (i = 0; i < (_listeners)->len; i++) { \
94 _type *listener = \
95 &g_array_index((_listeners), _type, i); \
96 \
97 if (listener->base.removed) { \
98 listener->base.removed(listener->base.data); \
99 } \
100 } \
101 } while (0)
102
103 static
104 void destroy_graph(struct bt_object *obj)
105 {
106 struct bt_graph *graph = container_of(obj, struct bt_graph, base);
107
108 /*
109 * The graph's reference count is 0 if we're here. Increment
110 * it to avoid a double-destroy (possibly infinitely recursive)
111 * in this situation:
112 *
113 * 1. We put and destroy a connection.
114 * 2. This connection's destructor finalizes its active message
115 * iterators.
116 * 3. A message iterator's finalization function gets a new
117 * reference on its component (reference count goes from 0 to
118 * 1).
119 * 4. Since this component's reference count goes to 1, it takes
120 * a reference on its parent (this graph). This graph's
121 * reference count goes from 0 to 1.
122 * 5. The message iterator's finalization function puts its
123 * component reference (reference count goes from 1 to 0).
124 * 6. Since this component's reference count goes from 1 to 0,
125 * it puts its parent (this graph). This graph's reference
126 * count goes from 1 to 0.
127 * 7. Since this graph's reference count goes from 1 to 0, its
128 * destructor is called (this function).
129 *
130 * With the incrementation below, the graph's reference count at
131 * step 4 goes from 1 to 2, and from 2 to 1 at step 6. This
132 * ensures that this function is not called two times.
133 */
134 BT_LIB_LOGI("Destroying graph: %!+g", graph);
135 obj->ref_count++;
136
137 /*
138 * Cancel the graph to disallow some operations, like creating
139 * message iterators and adding ports to components.
140 */
141 (void) bt_graph_cancel((void *) graph);
142
143 /* Call all remove listeners */
144 CALL_REMOVE_LISTENERS(struct bt_graph_listener_port_added,
145 graph->listeners.source_output_port_added);
146 CALL_REMOVE_LISTENERS(struct bt_graph_listener_port_added,
147 graph->listeners.filter_output_port_added);
148 CALL_REMOVE_LISTENERS(struct bt_graph_listener_port_added,
149 graph->listeners.filter_input_port_added);
150 CALL_REMOVE_LISTENERS(struct bt_graph_listener_port_added,
151 graph->listeners.sink_input_port_added);
152 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
153 graph->listeners.source_filter_ports_connected);
154 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
155 graph->listeners.filter_filter_ports_connected);
156 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
157 graph->listeners.source_sink_ports_connected);
158 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
159 graph->listeners.filter_sink_ports_connected);
160
161 if (graph->messages) {
162 g_ptr_array_free(graph->messages, TRUE);
163 graph->messages = NULL;
164 }
165
166 if (graph->connections) {
167 BT_LOGD_STR("Destroying connections.");
168 g_ptr_array_free(graph->connections, TRUE);
169 graph->connections = NULL;
170 }
171
172 if (graph->components) {
173 BT_LOGD_STR("Destroying components.");
174 g_ptr_array_free(graph->components, TRUE);
175 graph->components = NULL;
176 }
177
178 if (graph->sinks_to_consume) {
179 g_queue_free(graph->sinks_to_consume);
180 graph->sinks_to_consume = NULL;
181 }
182
183 if (graph->listeners.source_output_port_added) {
184 g_array_free(graph->listeners.source_output_port_added, TRUE);
185 graph->listeners.source_output_port_added = NULL;
186 }
187
188 if (graph->listeners.filter_output_port_added) {
189 g_array_free(graph->listeners.filter_output_port_added, TRUE);
190 graph->listeners.filter_output_port_added = NULL;
191 }
192
193 if (graph->listeners.filter_input_port_added) {
194 g_array_free(graph->listeners.filter_input_port_added, TRUE);
195 graph->listeners.filter_input_port_added = NULL;
196 }
197
198 if (graph->listeners.sink_input_port_added) {
199 g_array_free(graph->listeners.sink_input_port_added, TRUE);
200 graph->listeners.sink_input_port_added = NULL;
201 }
202
203 if (graph->listeners.source_filter_ports_connected) {
204 g_array_free(graph->listeners.source_filter_ports_connected,
205 TRUE);
206 graph->listeners.source_filter_ports_connected = NULL;
207 }
208
209 if (graph->listeners.filter_filter_ports_connected) {
210 g_array_free(graph->listeners.filter_filter_ports_connected,
211 TRUE);
212 graph->listeners.filter_filter_ports_connected = NULL;
213 }
214
215 if (graph->listeners.source_sink_ports_connected) {
216 g_array_free(graph->listeners.source_sink_ports_connected,
217 TRUE);
218 graph->listeners.source_sink_ports_connected = NULL;
219 }
220
221 if (graph->listeners.filter_sink_ports_connected) {
222 g_array_free(graph->listeners.filter_sink_ports_connected,
223 TRUE);
224 graph->listeners.filter_sink_ports_connected = NULL;
225 }
226
227 bt_object_pool_finalize(&graph->event_msg_pool);
228 bt_object_pool_finalize(&graph->packet_begin_msg_pool);
229 bt_object_pool_finalize(&graph->packet_end_msg_pool);
230 g_free(graph);
231 }
232
233 static
234 void destroy_message_event(struct bt_message *msg,
235 struct bt_graph *graph)
236 {
237 bt_message_event_destroy(msg);
238 }
239
240 static
241 void destroy_message_packet_begin(struct bt_message *msg,
242 struct bt_graph *graph)
243 {
244 bt_message_packet_destroy(msg);
245 }
246
247 static
248 void destroy_message_packet_end(struct bt_message *msg,
249 struct bt_graph *graph)
250 {
251 bt_message_packet_destroy(msg);
252 }
253
254 static
255 void notify_message_graph_is_destroyed(struct bt_message *msg)
256 {
257 bt_message_unlink_graph(msg);
258 }
259
260 struct bt_graph *bt_graph_create(void)
261 {
262 struct bt_graph *graph;
263 int ret;
264
265 BT_LOGI_STR("Creating graph object.");
266 graph = g_new0(struct bt_graph, 1);
267 if (!graph) {
268 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one graph.");
269 goto end;
270 }
271
272 bt_object_init_shared(&graph->base, destroy_graph);
273 graph->connections = g_ptr_array_new_with_free_func(
274 (GDestroyNotify) bt_object_try_spec_release);
275 if (!graph->connections) {
276 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
277 goto error;
278 }
279 graph->components = g_ptr_array_new_with_free_func(
280 (GDestroyNotify) bt_object_try_spec_release);
281 if (!graph->components) {
282 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
283 goto error;
284 }
285 graph->sinks_to_consume = g_queue_new();
286 if (!graph->sinks_to_consume) {
287 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GQueue.");
288 goto error;
289 }
290
291 bt_graph_set_can_consume(graph, true);
292 INIT_LISTENERS_ARRAY(struct bt_graph_listener_port_added,
293 graph->listeners.source_output_port_added);
294
295 if (!graph->listeners.source_output_port_added) {
296 ret = -1;
297 goto error;
298 }
299
300 INIT_LISTENERS_ARRAY(struct bt_graph_listener_port_added,
301 graph->listeners.filter_output_port_added);
302
303 if (!graph->listeners.filter_output_port_added) {
304 ret = -1;
305 goto error;
306 }
307
308 INIT_LISTENERS_ARRAY(struct bt_graph_listener_port_added,
309 graph->listeners.filter_input_port_added);
310
311 if (!graph->listeners.filter_input_port_added) {
312 ret = -1;
313 goto error;
314 }
315
316 INIT_LISTENERS_ARRAY(struct bt_graph_listener_port_added,
317 graph->listeners.sink_input_port_added);
318
319 if (!graph->listeners.sink_input_port_added) {
320 ret = -1;
321 goto error;
322 }
323
324 INIT_LISTENERS_ARRAY(struct bt_graph_listener_ports_connected,
325 graph->listeners.source_filter_ports_connected);
326
327 if (!graph->listeners.source_filter_ports_connected) {
328 ret = -1;
329 goto error;
330 }
331
332 INIT_LISTENERS_ARRAY(struct bt_graph_listener_ports_connected,
333 graph->listeners.source_sink_ports_connected);
334
335 if (!graph->listeners.source_sink_ports_connected) {
336 ret = -1;
337 goto error;
338 }
339
340 INIT_LISTENERS_ARRAY(struct bt_graph_listener_ports_connected,
341 graph->listeners.filter_filter_ports_connected);
342
343 if (!graph->listeners.filter_filter_ports_connected) {
344 ret = -1;
345 goto error;
346 }
347
348 INIT_LISTENERS_ARRAY(struct bt_graph_listener_ports_connected,
349 graph->listeners.filter_sink_ports_connected);
350
351 if (!graph->listeners.filter_sink_ports_connected) {
352 ret = -1;
353 goto error;
354 }
355
356 ret = bt_object_pool_initialize(&graph->event_msg_pool,
357 (bt_object_pool_new_object_func) bt_message_event_new,
358 (bt_object_pool_destroy_object_func) destroy_message_event,
359 graph);
360 if (ret) {
361 BT_LIB_LOGE_APPEND_CAUSE(
362 "Failed to initialize event message pool: ret=%d",
363 ret);
364 goto error;
365 }
366
367 ret = bt_object_pool_initialize(&graph->packet_begin_msg_pool,
368 (bt_object_pool_new_object_func) bt_message_packet_beginning_new,
369 (bt_object_pool_destroy_object_func) destroy_message_packet_begin,
370 graph);
371 if (ret) {
372 BT_LIB_LOGE_APPEND_CAUSE(
373 "Failed to initialize packet beginning message pool: ret=%d",
374 ret);
375 goto error;
376 }
377
378 ret = bt_object_pool_initialize(&graph->packet_end_msg_pool,
379 (bt_object_pool_new_object_func) bt_message_packet_end_new,
380 (bt_object_pool_destroy_object_func) destroy_message_packet_end,
381 graph);
382 if (ret) {
383 BT_LIB_LOGE_APPEND_CAUSE(
384 "Failed to initialize packet end message pool: ret=%d",
385 ret);
386 goto error;
387 }
388
389 graph->messages = g_ptr_array_new_with_free_func(
390 (GDestroyNotify) notify_message_graph_is_destroyed);
391 BT_LIB_LOGI("Created graph object: %!+g", graph);
392
393 end:
394 return (void *) graph;
395
396 error:
397 BT_OBJECT_PUT_REF_AND_RESET(graph);
398 goto end;
399 }
400
401 enum bt_graph_connect_ports_status bt_graph_connect_ports(
402 struct bt_graph *graph,
403 const struct bt_port_output *upstream_port_out,
404 const struct bt_port_input *downstream_port_in,
405 const struct bt_connection **user_connection)
406 {
407 enum bt_graph_connect_ports_status status = BT_FUNC_STATUS_OK;
408 enum bt_graph_listener_func_status listener_status;
409 struct bt_connection *connection = NULL;
410 struct bt_port *upstream_port = (void *) upstream_port_out;
411 struct bt_port *downstream_port = (void *) downstream_port_in;
412 struct bt_component *upstream_component = NULL;
413 struct bt_component *downstream_component = NULL;
414 enum bt_component_class_port_connected_method_status port_connected_status;
415 bool init_can_consume;
416
417 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
418 BT_ASSERT_PRE_NON_NULL(upstream_port, "Upstream port");
419 BT_ASSERT_PRE_NON_NULL(downstream_port, "Downstream port port");
420 BT_ASSERT_PRE(!graph->canceled, "Graph is canceled: %!+g", graph);
421 BT_ASSERT_PRE(
422 graph->config_state == BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
423 "Graph is not in the \"configuring\" state: %!+g", graph);
424 BT_ASSERT_PRE(!bt_port_is_connected(upstream_port),
425 "Upstream port is already connected: %!+p", upstream_port);
426 BT_ASSERT_PRE(!bt_port_is_connected(downstream_port),
427 "Downstream port is already connected: %!+p", downstream_port);
428 BT_ASSERT_PRE(bt_port_borrow_component_inline((void *) upstream_port),
429 "Upstream port does not belong to a component: %!+p",
430 upstream_port);
431 BT_ASSERT_PRE(bt_port_borrow_component_inline((void *) downstream_port),
432 "Downstream port does not belong to a component: %!+p",
433 downstream_port);
434 init_can_consume = graph->can_consume;
435 BT_LIB_LOGI("Connecting component ports within graph: "
436 "%![graph-]+g, %![up-port-]+p, %![down-port-]+p",
437 graph, upstream_port, downstream_port);
438 bt_graph_set_can_consume(graph, false);
439 upstream_component = bt_port_borrow_component_inline(
440 (void *) upstream_port);
441 downstream_component = bt_port_borrow_component_inline(
442 (void *) downstream_port);
443
444 BT_LOGD_STR("Creating connection.");
445 connection = bt_connection_create(graph, (void *) upstream_port,
446 (void *) downstream_port);
447 if (!connection) {
448 BT_LIB_LOGE_APPEND_CAUSE("Cannot create connection object.");
449 status = BT_FUNC_STATUS_MEMORY_ERROR;
450 goto end;
451 }
452
453 BT_LIB_LOGD("Connection object created: %!+x", connection);
454
455 /*
456 * Ownership of upstream_component/downstream_component and of
457 * the connection object is transferred to the graph.
458 */
459 g_ptr_array_add(graph->connections, connection);
460
461 /*
462 * Notify both components that their port is connected.
463 */
464 BT_LIB_LOGD("Notifying upstream component that its port is connected: "
465 "%![comp-]+c, %![port-]+p", upstream_component, upstream_port);
466 port_connected_status = bt_component_port_connected(upstream_component,
467 (void *) upstream_port, (void *) downstream_port);
468 if (port_connected_status != BT_FUNC_STATUS_OK) {
469 if (port_connected_status < 0) {
470 BT_LIB_LOGW_APPEND_CAUSE(
471 "Upstream component's \"port connected\" method failed: "
472 "status=%s, %![graph-]+g, %![up-comp-]+c, "
473 "%![down-comp-]+c, %![up-port-]+p, %![down-port-]+p",
474 bt_common_func_status_string(
475 port_connected_status),
476 graph, upstream_component, downstream_component,
477 upstream_port, downstream_port);
478 }
479
480 bt_connection_end(connection, true);
481 status = (int) port_connected_status;
482 goto end;
483 }
484
485 connection->notified_upstream_port_connected = true;
486 BT_LIB_LOGD("Notifying downstream component that its port is connected: "
487 "%![comp-]+c, %![port-]+p", downstream_component,
488 downstream_port);
489 port_connected_status = bt_component_port_connected(downstream_component,
490 (void *) downstream_port, (void *) upstream_port);
491 if (port_connected_status != BT_FUNC_STATUS_OK) {
492 if (port_connected_status < 0) {
493 BT_LIB_LOGW_APPEND_CAUSE(
494 "Downstream component's \"port connected\" method failed: "
495 "status=%s, %![graph-]+g, %![up-comp-]+c, "
496 "%![down-comp-]+c, %![up-port-]+p, %![down-port-]+p",
497 bt_common_func_status_string(
498 port_connected_status),
499 graph, upstream_component, downstream_component,
500 upstream_port, downstream_port);
501 }
502
503 bt_connection_end(connection, true);
504 status = (int) port_connected_status;
505 goto end;
506 }
507
508 connection->notified_downstream_port_connected = true;
509
510 /*
511 * Notify the graph's creator that both ports are connected.
512 */
513 BT_LOGD_STR("Notifying graph's user that new component ports are connected.");
514 listener_status = bt_graph_notify_ports_connected(graph, upstream_port, downstream_port);
515 if (listener_status != BT_FUNC_STATUS_OK) {
516 if (listener_status < 0) {
517 BT_LIB_LOGW_APPEND_CAUSE(
518 "Graph \"ports connected\" listener failed: "
519 "status=%d, %![graph-]+g, %![up-comp-]+c, "
520 "%![down-comp-]+c, %![up-port-]+p, %![down-port-]+p",
521 listener_status, graph,
522 upstream_component, downstream_component,
523 upstream_port, downstream_port);
524 }
525
526 status = (int) listener_status;
527 goto end;
528 }
529
530 connection->notified_graph_ports_connected = true;
531 BT_LIB_LOGI("Connected component ports within graph: "
532 "%![graph-]+g, %![up-comp-]+c, %![down-comp-]+c, "
533 "%![up-port-]+p, %![down-port-]+p",
534 graph, upstream_component, downstream_component,
535 upstream_port, downstream_port);
536
537 if (user_connection) {
538 /* Move reference to user */
539 *user_connection = connection;
540 connection = NULL;
541 }
542
543 end:
544 if (status != BT_FUNC_STATUS_OK) {
545 bt_graph_make_faulty(graph);
546 }
547
548 bt_object_put_ref(connection);
549 (void) init_can_consume;
550 bt_graph_set_can_consume(graph, init_can_consume);
551 return status;
552 }
553
554 static inline
555 int consume_graph_sink(struct bt_component_sink *comp)
556 {
557 enum bt_component_class_sink_consume_method_status consume_status;
558 struct bt_component_class_sink *sink_class = NULL;
559
560 BT_ASSERT(comp);
561 sink_class = (void *) comp->parent.class;
562 BT_ASSERT(sink_class->methods.consume);
563 BT_LIB_LOGD("Calling user's consume method: %!+c", comp);
564 consume_status = sink_class->methods.consume((void *) comp);
565 BT_LOGD("User method returned: status=%s",
566 bt_common_func_status_string(consume_status));
567 BT_ASSERT_POST(consume_status == BT_FUNC_STATUS_OK ||
568 consume_status == BT_FUNC_STATUS_END ||
569 consume_status == BT_FUNC_STATUS_AGAIN ||
570 consume_status == BT_FUNC_STATUS_ERROR ||
571 consume_status == BT_FUNC_STATUS_MEMORY_ERROR,
572 "Invalid component status returned by consuming method: "
573 "status=%s", bt_common_func_status_string(consume_status));
574 if (consume_status) {
575 if (consume_status < 0) {
576 BT_LIB_LOGW_APPEND_CAUSE(
577 "Component's \"consume\" method failed: "
578 "status=%s, %![comp-]+c",
579 bt_common_func_status_string(consume_status),
580 comp);
581 }
582
583 goto end;
584 }
585
586 BT_LIB_LOGD("Consumed from sink: %![comp-]+c, status=%s",
587 comp, bt_common_func_status_string(consume_status));
588
589 end:
590 return consume_status;
591 }
592
593 /*
594 * `node` is removed from the queue of sinks to consume when passed to
595 * this function. This function adds it back to the queue if there's
596 * still something to consume afterwards.
597 */
598 static inline
599 int consume_sink_node(struct bt_graph *graph, GList *node)
600 {
601 int status;
602 struct bt_component_sink *sink;
603
604 sink = node->data;
605 status = consume_graph_sink(sink);
606 if (G_UNLIKELY(status != BT_FUNC_STATUS_END)) {
607 g_queue_push_tail_link(graph->sinks_to_consume, node);
608 goto end;
609 }
610
611 /* End reached, the node is not added back to the queue and free'd. */
612 g_queue_delete_link(graph->sinks_to_consume, node);
613
614 /* Don't forward an END status if there are sinks left to consume. */
615 if (!g_queue_is_empty(graph->sinks_to_consume)) {
616 status = BT_FUNC_STATUS_OK;
617 goto end;
618 }
619
620 end:
621 BT_LIB_LOGD("Consumed sink node: %![comp-]+c, status=%s",
622 sink, bt_common_func_status_string(status));
623 return status;
624 }
625
626 BT_HIDDEN
627 int bt_graph_consume_sink_no_check(struct bt_graph *graph,
628 struct bt_component_sink *sink)
629 {
630 int status;
631 GList *sink_node;
632 int index;
633
634 BT_LIB_LOGD("Making specific sink consume: %![comp-]+c", sink);
635 BT_ASSERT(bt_component_borrow_graph((void *) sink) == graph);
636
637 if (g_queue_is_empty(graph->sinks_to_consume)) {
638 BT_LOGD_STR("Graph's sink queue is empty: end of graph.");
639 status = BT_FUNC_STATUS_END;
640 goto end;
641 }
642
643 index = g_queue_index(graph->sinks_to_consume, sink);
644 if (index < 0) {
645 BT_LIB_LOGD("Sink component is not marked as consumable: "
646 "component sink is ended: %![comp-]+c", sink);
647 status = BT_FUNC_STATUS_END;
648 goto end;
649 }
650
651 sink_node = g_queue_pop_nth_link(graph->sinks_to_consume, index);
652 BT_ASSERT(sink_node);
653 status = consume_sink_node(graph, sink_node);
654
655 end:
656 return status;
657 }
658
659 static inline
660 int consume_no_check(struct bt_graph *graph)
661 {
662 int status = BT_FUNC_STATUS_OK;
663 struct bt_component *sink;
664 GList *current_node;
665
666 BT_ASSERT_PRE(graph->has_sink,
667 "Graph has no sink component: %!+g", graph);
668 BT_LIB_LOGD("Making next sink component consume: %![graph-]+g", graph);
669
670 if (G_UNLIKELY(g_queue_is_empty(graph->sinks_to_consume))) {
671 BT_LOGD_STR("Graph's sink queue is empty: end of graph.");
672 status = BT_FUNC_STATUS_END;
673 goto end;
674 }
675
676 current_node = g_queue_pop_head_link(graph->sinks_to_consume);
677 sink = current_node->data;
678 BT_LIB_LOGD("Chose next sink to consume: %!+c", sink);
679 status = consume_sink_node(graph, current_node);
680
681 end:
682 return status;
683 }
684
685 enum bt_graph_consume_status bt_graph_consume(struct bt_graph *graph)
686 {
687 enum bt_graph_consume_status status;
688
689 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
690 BT_ASSERT_PRE(!graph->canceled, "Graph is canceled: %!+g", graph);
691 BT_ASSERT_PRE(graph->can_consume,
692 "Cannot consume graph in its current state: %!+g", graph);
693 BT_ASSERT_PRE(graph->config_state != BT_GRAPH_CONFIGURATION_STATE_FAULTY,
694 "Graph is in a faulty state: %!+g", graph);
695 bt_graph_set_can_consume(graph, false);
696 status = bt_graph_configure(graph);
697 if (G_UNLIKELY(status)) {
698 /* bt_graph_configure() logs errors */
699 goto end;
700 }
701
702 status = consume_no_check(graph);
703 bt_graph_set_can_consume(graph, true);
704
705 end:
706 return status;
707 }
708
709 enum bt_graph_run_status bt_graph_run(struct bt_graph *graph)
710 {
711 enum bt_graph_run_status status;
712
713 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
714 BT_ASSERT_PRE(!graph->canceled, "Graph is canceled: %!+g", graph);
715 BT_ASSERT_PRE(graph->can_consume,
716 "Cannot consume graph in its current state: %!+g", graph);
717 BT_ASSERT_PRE(graph->config_state != BT_GRAPH_CONFIGURATION_STATE_FAULTY,
718 "Graph is in a faulty state: %!+g", graph);
719 bt_graph_set_can_consume(graph, false);
720 status = bt_graph_configure(graph);
721 if (G_UNLIKELY(status)) {
722 /* bt_graph_configure() logs errors */
723 goto end;
724 }
725
726 BT_LIB_LOGI("Running graph: %!+g", graph);
727
728 do {
729 /*
730 * Check if the graph is canceled at each iteration. If
731 * the graph was canceled by another thread or by a
732 * signal handler, this is not a warning nor an error,
733 * it was intentional: log with a DEBUG level only.
734 */
735 if (G_UNLIKELY(graph->canceled)) {
736 BT_LIB_LOGI("Stopping the graph: graph is canceled: "
737 "%!+g", graph);
738 status = BT_FUNC_STATUS_CANCELED;
739 goto end;
740 }
741
742 status = consume_no_check(graph);
743 if (G_UNLIKELY(status == BT_FUNC_STATUS_AGAIN)) {
744 /*
745 * If AGAIN is received and there are multiple
746 * sinks, go ahead and consume from the next
747 * sink.
748 *
749 * However, in the case where a single sink is
750 * left, the caller can decide to busy-wait and
751 * call bt_graph_run() continuously
752 * until the source is ready or it can decide to
753 * sleep for an arbitrary amount of time.
754 */
755 if (graph->sinks_to_consume->length > 1) {
756 status = BT_FUNC_STATUS_OK;
757 }
758 }
759 } while (status == BT_FUNC_STATUS_OK);
760
761 if (g_queue_is_empty(graph->sinks_to_consume)) {
762 status = BT_FUNC_STATUS_END;
763 }
764
765 end:
766 BT_LIB_LOGI("Graph ran: %![graph-]+g, status=%s", graph,
767 bt_common_func_status_string(status));
768 bt_graph_set_can_consume(graph, true);
769 return status;
770 }
771
772 enum bt_graph_add_listener_status
773 bt_graph_add_source_component_output_port_added_listener(
774 struct bt_graph *graph,
775 bt_graph_source_component_output_port_added_listener_func func,
776 bt_graph_listener_removed_func listener_removed, void *data,
777 int *out_listener_id)
778 {
779 struct bt_graph_listener_port_added listener = {
780 .base = {
781 .removed = listener_removed,
782 .data = data,
783 },
784 .func = (port_added_func_t) func,
785 };
786 int listener_id;
787
788 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
789 BT_ASSERT_PRE_NON_NULL(func, "Listener");
790 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
791 BT_ASSERT_PRE(!graph->in_remove_listener,
792 "Graph currently executing a \"listener removed\" listener: "
793 "%!+g", graph);
794 g_array_append_val(graph->listeners.source_output_port_added, listener);
795 listener_id = graph->listeners.source_output_port_added->len - 1;
796 BT_LIB_LOGD("Added \"source component output port added\" listener to graph: "
797 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
798 listener_id);
799
800 if (listener_id) {
801 *out_listener_id = listener_id;
802 }
803
804 return BT_FUNC_STATUS_OK;
805 }
806
807 enum bt_graph_add_listener_status
808 bt_graph_add_filter_component_output_port_added_listener(
809 struct bt_graph *graph,
810 bt_graph_filter_component_output_port_added_listener_func func,
811 bt_graph_listener_removed_func listener_removed, void *data,
812 int *out_listener_id)
813 {
814 struct bt_graph_listener_port_added listener = {
815 .base = {
816 .removed = listener_removed,
817 .data = data,
818 },
819 .func = (port_added_func_t) func,
820 };
821 int listener_id;
822
823 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
824 BT_ASSERT_PRE_NON_NULL(func, "Listener");
825 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
826 BT_ASSERT_PRE(!graph->in_remove_listener,
827 "Graph currently executing a \"listener removed\" listener: "
828 "%!+g", graph);
829 g_array_append_val(graph->listeners.filter_output_port_added, listener);
830 listener_id = graph->listeners.filter_output_port_added->len - 1;
831 BT_LIB_LOGD("Added \"filter component output port added\" listener to graph: "
832 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
833 listener_id);
834
835 if (listener_id) {
836 *out_listener_id = listener_id;
837 }
838
839 return BT_FUNC_STATUS_OK;
840 }
841
842 enum bt_graph_add_listener_status
843 bt_graph_add_filter_component_input_port_added_listener(
844 struct bt_graph *graph,
845 bt_graph_filter_component_input_port_added_listener_func func,
846 bt_graph_listener_removed_func listener_removed, void *data,
847 int *out_listener_id)
848 {
849 struct bt_graph_listener_port_added listener = {
850 .base = {
851 .removed = listener_removed,
852 .data = data,
853 },
854 .func = (port_added_func_t) func,
855 };
856 int listener_id;
857
858 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
859 BT_ASSERT_PRE_NON_NULL(func, "Listener");
860 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
861 BT_ASSERT_PRE(!graph->in_remove_listener,
862 "Graph currently executing a \"listener removed\" listener: "
863 "%!+g", graph);
864 g_array_append_val(graph->listeners.filter_input_port_added, listener);
865 listener_id = graph->listeners.filter_input_port_added->len - 1;
866 BT_LIB_LOGD("Added \"filter component input port added\" listener to graph: "
867 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
868 listener_id);
869
870 if (listener_id) {
871 *out_listener_id = listener_id;
872 }
873
874 return BT_FUNC_STATUS_OK;
875 }
876
877 enum bt_graph_add_listener_status
878 bt_graph_add_sink_component_input_port_added_listener(
879 struct bt_graph *graph,
880 bt_graph_sink_component_input_port_added_listener_func func,
881 bt_graph_listener_removed_func listener_removed, void *data,
882 int *out_listener_id)
883 {
884 struct bt_graph_listener_port_added listener = {
885 .base = {
886 .removed = listener_removed,
887 .data = data,
888 },
889 .func = (port_added_func_t) func,
890 };
891 int listener_id;
892
893 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
894 BT_ASSERT_PRE_NON_NULL(func, "Listener");
895 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
896 BT_ASSERT_PRE(!graph->in_remove_listener,
897 "Graph currently executing a \"listener removed\" listener: "
898 "%!+g", graph);
899 g_array_append_val(graph->listeners.sink_input_port_added, listener);
900 listener_id = graph->listeners.sink_input_port_added->len - 1;
901 BT_LIB_LOGD("Added \"sink component input port added\" listener to graph: "
902 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
903 listener_id);
904
905 if (listener_id) {
906 *out_listener_id = listener_id;
907 }
908
909 return BT_FUNC_STATUS_OK;
910 }
911
912 enum bt_graph_add_listener_status
913 bt_graph_add_source_filter_component_ports_connected_listener(
914 struct bt_graph *graph,
915 bt_graph_source_filter_component_ports_connected_listener_func func,
916 bt_graph_listener_removed_func listener_removed, void *data,
917 int *out_listener_id)
918 {
919 struct bt_graph_listener_ports_connected listener = {
920 .base = {
921 .removed = listener_removed,
922 .data = data,
923 },
924 .func = (ports_connected_func_t) func,
925 };
926 int listener_id;
927
928 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
929 BT_ASSERT_PRE_NON_NULL(func, "Listener");
930 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
931 BT_ASSERT_PRE(!graph->in_remove_listener,
932 "Graph currently executing a \"listener removed\" listener: "
933 "%!+g", graph);
934 g_array_append_val(graph->listeners.source_filter_ports_connected,
935 listener);
936 listener_id = graph->listeners.source_filter_ports_connected->len - 1;
937 BT_LIB_LOGD("Added \"source to filter component ports connected\" listener to graph: "
938 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
939 listener_id);
940
941 if (listener_id) {
942 *out_listener_id = listener_id;
943 }
944
945 return BT_FUNC_STATUS_OK;
946 }
947
948 enum bt_graph_add_listener_status
949 bt_graph_add_source_sink_component_ports_connected_listener(
950 struct bt_graph *graph,
951 bt_graph_source_sink_component_ports_connected_listener_func func,
952 bt_graph_listener_removed_func listener_removed, void *data,
953 int *out_listener_id)
954 {
955 struct bt_graph_listener_ports_connected listener = {
956 .base = {
957 .removed = listener_removed,
958 .data = data,
959 },
960 .func = (ports_connected_func_t) func,
961 };
962 int listener_id;
963
964 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
965 BT_ASSERT_PRE_NON_NULL(func, "Listener");
966 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
967 BT_ASSERT_PRE(!graph->in_remove_listener,
968 "Graph currently executing a \"listener removed\" listener: "
969 "%!+g", graph);
970 g_array_append_val(graph->listeners.source_sink_ports_connected,
971 listener);
972 listener_id = graph->listeners.source_sink_ports_connected->len - 1;
973 BT_LIB_LOGD("Added \"source to sink component ports connected\" listener to graph: "
974 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
975 listener_id);
976
977 if (listener_id) {
978 *out_listener_id = listener_id;
979 }
980
981 return BT_FUNC_STATUS_OK;
982 }
983
984 enum bt_graph_add_listener_status
985 bt_graph_add_filter_filter_component_ports_connected_listener(
986 struct bt_graph *graph,
987 bt_graph_filter_filter_component_ports_connected_listener_func func,
988 bt_graph_listener_removed_func listener_removed, void *data,
989 int *out_listener_id)
990 {
991 struct bt_graph_listener_ports_connected listener = {
992 .base = {
993 .removed = listener_removed,
994 .data = data,
995 },
996 .func = (ports_connected_func_t) func,
997 };
998 int listener_id;
999
1000 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1001 BT_ASSERT_PRE_NON_NULL(func, "Listener");
1002 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
1003 BT_ASSERT_PRE(!graph->in_remove_listener,
1004 "Graph currently executing a \"listener removed\" listener: "
1005 "%!+g", graph);
1006 g_array_append_val(graph->listeners.filter_filter_ports_connected,
1007 listener);
1008 listener_id = graph->listeners.filter_filter_ports_connected->len - 1;
1009 BT_LIB_LOGD("Added \"filter to filter component ports connected\" listener to graph: "
1010 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
1011 listener_id);
1012
1013 if (listener_id) {
1014 *out_listener_id = listener_id;
1015 }
1016
1017 return BT_FUNC_STATUS_OK;
1018 }
1019
1020 enum bt_graph_add_listener_status
1021 bt_graph_add_filter_sink_component_ports_connected_listener(
1022 struct bt_graph *graph,
1023 bt_graph_filter_sink_component_ports_connected_listener_func func,
1024 bt_graph_listener_removed_func listener_removed, void *data,
1025 int *out_listener_id)
1026 {
1027 struct bt_graph_listener_ports_connected listener = {
1028 .base = {
1029 .removed = listener_removed,
1030 .data = data,
1031 },
1032 .func = (ports_connected_func_t) func,
1033 };
1034 int listener_id;
1035
1036 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1037 BT_ASSERT_PRE_NON_NULL(func, "Listener");
1038 BT_ASSERT_PRE_NON_NULL(func, "\"Listener removed\" listener");
1039 BT_ASSERT_PRE(!graph->in_remove_listener,
1040 "Graph currently executing a \"listener removed\" listener: "
1041 "%!+g", graph);
1042 g_array_append_val(graph->listeners.filter_sink_ports_connected,
1043 listener);
1044 listener_id = graph->listeners.filter_sink_ports_connected->len - 1;
1045 BT_LIB_LOGD("Added \"filter to sink component ports connected\" listener to graph: "
1046 "%![graph-]+g, listener-addr=%p, id=%d", graph, listener,
1047 listener_id);
1048
1049 if (listener_id) {
1050 *out_listener_id = listener_id;
1051 }
1052
1053 return BT_FUNC_STATUS_OK;
1054 }
1055
1056 BT_HIDDEN
1057 enum bt_graph_listener_func_status bt_graph_notify_port_added(
1058 struct bt_graph *graph, struct bt_port *port)
1059 {
1060 uint64_t i;
1061 GArray *listeners;
1062 struct bt_component *comp;
1063 enum bt_graph_listener_func_status status = BT_FUNC_STATUS_OK;
1064
1065 BT_ASSERT(graph);
1066 BT_ASSERT(port);
1067 BT_LIB_LOGD("Notifying graph listeners that a port was added: "
1068 "%![graph-]+g, %![port-]+p", graph, port);
1069 comp = bt_port_borrow_component_inline(port);
1070 BT_ASSERT(comp);
1071
1072 switch (comp->class->type) {
1073 case BT_COMPONENT_CLASS_TYPE_SOURCE:
1074 {
1075 switch (port->type) {
1076 case BT_PORT_TYPE_OUTPUT:
1077 listeners = graph->listeners.source_output_port_added;
1078 break;
1079 default:
1080 abort();
1081 }
1082
1083 break;
1084 }
1085 case BT_COMPONENT_CLASS_TYPE_FILTER:
1086 {
1087 switch (port->type) {
1088 case BT_PORT_TYPE_INPUT:
1089 listeners = graph->listeners.filter_input_port_added;
1090 break;
1091 case BT_PORT_TYPE_OUTPUT:
1092 listeners = graph->listeners.filter_output_port_added;
1093 break;
1094 default:
1095 abort();
1096 }
1097
1098 break;
1099 }
1100 case BT_COMPONENT_CLASS_TYPE_SINK:
1101 {
1102 switch (port->type) {
1103 case BT_PORT_TYPE_INPUT:
1104 listeners = graph->listeners.sink_input_port_added;
1105 break;
1106 default:
1107 abort();
1108 }
1109
1110 break;
1111 }
1112 default:
1113 abort();
1114 }
1115
1116 for (i = 0; i < listeners->len; i++) {
1117 struct bt_graph_listener_port_added *listener =
1118 &g_array_index(listeners,
1119 struct bt_graph_listener_port_added, i);
1120
1121
1122 BT_ASSERT(listener->func);
1123 status = listener->func(comp, port, listener->base.data);
1124 if (status != BT_FUNC_STATUS_OK) {
1125 goto end;
1126 }
1127 }
1128
1129 end:
1130 return status;
1131 }
1132
1133 BT_HIDDEN
1134 enum bt_graph_listener_func_status bt_graph_notify_ports_connected(
1135 struct bt_graph *graph, struct bt_port *upstream_port,
1136 struct bt_port *downstream_port)
1137 {
1138 uint64_t i;
1139 GArray *listeners;
1140 struct bt_component *upstream_comp;
1141 struct bt_component *downstream_comp;
1142 enum bt_graph_listener_func_status status = BT_FUNC_STATUS_OK;
1143
1144 BT_ASSERT(graph);
1145 BT_ASSERT(upstream_port);
1146 BT_ASSERT(downstream_port);
1147 BT_LIB_LOGD("Notifying graph listeners that ports were connected: "
1148 "%![graph-]+g, %![up-port-]+p, %![down-port-]+p",
1149 graph, upstream_port, downstream_port);
1150 upstream_comp = bt_port_borrow_component_inline(upstream_port);
1151 BT_ASSERT(upstream_comp);
1152 downstream_comp = bt_port_borrow_component_inline(downstream_port);
1153 BT_ASSERT(downstream_comp);
1154
1155 switch (upstream_comp->class->type) {
1156 case BT_COMPONENT_CLASS_TYPE_SOURCE:
1157 {
1158 switch (downstream_comp->class->type) {
1159 case BT_COMPONENT_CLASS_TYPE_FILTER:
1160 listeners =
1161 graph->listeners.source_filter_ports_connected;
1162 break;
1163 case BT_COMPONENT_CLASS_TYPE_SINK:
1164 listeners =
1165 graph->listeners.source_sink_ports_connected;
1166 break;
1167 default:
1168 abort();
1169 }
1170
1171 break;
1172 }
1173 case BT_COMPONENT_CLASS_TYPE_FILTER:
1174 {
1175 switch (downstream_comp->class->type) {
1176 case BT_COMPONENT_CLASS_TYPE_FILTER:
1177 listeners =
1178 graph->listeners.filter_filter_ports_connected;
1179 break;
1180 case BT_COMPONENT_CLASS_TYPE_SINK:
1181 listeners =
1182 graph->listeners.filter_sink_ports_connected;
1183 break;
1184 default:
1185 abort();
1186 }
1187
1188 break;
1189 }
1190 default:
1191 abort();
1192 }
1193
1194 for (i = 0; i < listeners->len; i++) {
1195 struct bt_graph_listener_ports_connected *listener =
1196 &g_array_index(listeners,
1197 struct bt_graph_listener_ports_connected, i);
1198
1199 BT_ASSERT(listener->func);
1200 status = listener->func(upstream_comp, downstream_comp,
1201 upstream_port, downstream_port, listener->base.data);
1202 if (status != BT_FUNC_STATUS_OK) {
1203 goto end;
1204 }
1205 }
1206
1207 end:
1208 return status;
1209 }
1210
1211 enum bt_graph_cancel_status bt_graph_cancel(struct bt_graph *graph)
1212 {
1213 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1214 graph->canceled = true;
1215 BT_LIB_LOGI("Canceled graph: %!+i", graph);
1216 return BT_FUNC_STATUS_OK;
1217 }
1218
1219 bt_bool bt_graph_is_canceled(const struct bt_graph *graph)
1220 {
1221 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1222 return graph->canceled ? BT_TRUE : BT_FALSE;
1223 }
1224
1225 BT_HIDDEN
1226 void bt_graph_remove_connection(struct bt_graph *graph,
1227 struct bt_connection *connection)
1228 {
1229 BT_ASSERT(graph);
1230 BT_ASSERT(connection);
1231 BT_LIB_LOGD("Removing graph's connection: %![graph-]+g, %![conn-]+x",
1232 graph, connection);
1233 g_ptr_array_remove(graph->connections, connection);
1234 }
1235
1236 BT_ASSERT_PRE_FUNC
1237 static inline
1238 bool component_name_exists(struct bt_graph *graph, const char *name)
1239 {
1240 bool exists = false;
1241 uint64_t i;
1242
1243 for (i = 0; i < graph->components->len; i++) {
1244 struct bt_component *other_comp = graph->components->pdata[i];
1245
1246 if (strcmp(name, bt_component_get_name(other_comp)) == 0) {
1247 BT_ASSERT_PRE_MSG("Another component with the same name already exists in the graph: "
1248 "%![other-comp-]+c, name=\"%s\"",
1249 other_comp, name);
1250 exists = true;
1251 goto end;
1252 }
1253 }
1254
1255 end:
1256 return exists;
1257 }
1258
1259 static
1260 int add_component_with_init_method_data(
1261 struct bt_graph *graph,
1262 struct bt_component_class *comp_cls,
1263 comp_init_method_t init_method,
1264 const char *name, const struct bt_value *params,
1265 void *init_method_data, bt_logging_level log_level,
1266 struct bt_component **user_component)
1267 {
1268 int status = BT_FUNC_STATUS_OK;
1269 enum bt_component_class_init_method_status init_status;
1270 struct bt_component *component = NULL;
1271 int ret;
1272 bool init_can_consume;
1273 struct bt_value *new_params = NULL;
1274
1275 BT_ASSERT(comp_cls);
1276 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1277 BT_ASSERT_PRE_NON_NULL(name, "Name");
1278 BT_ASSERT_PRE(!graph->canceled, "Graph is canceled: %!+g", graph);
1279 BT_ASSERT_PRE(
1280 graph->config_state == BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
1281 "Graph is not in the \"configuring\" state: %!+g", graph);
1282 BT_ASSERT_PRE(!component_name_exists(graph, name),
1283 "Duplicate component name: %!+g, name=\"%s\"", graph, name);
1284 BT_ASSERT_PRE(!params || bt_value_is_map(params),
1285 "Parameter value is not a map value: %!+v", params);
1286 init_can_consume = graph->can_consume;
1287 bt_graph_set_can_consume(graph, false);
1288 BT_LIB_LOGI("Adding component to graph: "
1289 "%![graph-]+g, %![cc-]+C, name=\"%s\", log-level=%s, "
1290 "%![params-]+v, init-method-data-addr=%p",
1291 graph, comp_cls, name,
1292 bt_common_logging_level_string(log_level), params,
1293 init_method_data);
1294
1295 if (!params) {
1296 new_params = bt_value_map_create();
1297 if (!new_params) {
1298 BT_LIB_LOGE_APPEND_CAUSE(
1299 "Cannot create empty map value object.");
1300 status = BT_FUNC_STATUS_MEMORY_ERROR;
1301 goto end;
1302 }
1303
1304 params = new_params;
1305 }
1306
1307 ret = bt_component_create(comp_cls, name, log_level, &component);
1308 if (ret) {
1309 BT_LIB_LOGE_APPEND_CAUSE(
1310 "Cannot create empty component object: ret=%d",
1311 ret);
1312 status = BT_FUNC_STATUS_MEMORY_ERROR;
1313 goto end;
1314 }
1315
1316 /*
1317 * The user's initialization method needs to see that this
1318 * component is part of the graph. If the user method fails, we
1319 * immediately remove the component from the graph's components.
1320 */
1321 g_ptr_array_add(graph->components, component);
1322 bt_component_set_graph(component, graph);
1323 bt_value_freeze(params);
1324
1325 if (init_method) {
1326 BT_LOGD_STR("Calling user's initialization method.");
1327 init_status = init_method(component, params, init_method_data);
1328 BT_LOGD("User method returned: status=%s",
1329 bt_common_func_status_string(init_status));
1330 if (init_status != BT_FUNC_STATUS_OK) {
1331 if (init_status < 0) {
1332 BT_LIB_LOGW_APPEND_CAUSE(
1333 "Component initialization method failed: "
1334 "status=%s, %![comp-]+c",
1335 bt_common_func_status_string(init_status),
1336 component);
1337 }
1338
1339 status = init_status;
1340 bt_component_set_graph(component, NULL);
1341 g_ptr_array_remove_fast(graph->components, component);
1342 goto end;
1343 }
1344 }
1345
1346 /*
1347 * Mark the component as initialized so that its finalization
1348 * method is called when it is destroyed.
1349 */
1350 component->initialized = true;
1351
1352 /*
1353 * If it's a sink component, it needs to be part of the graph's
1354 * sink queue to be consumed by bt_graph_consume().
1355 */
1356 if (bt_component_is_sink(component)) {
1357 graph->has_sink = true;
1358 g_queue_push_tail(graph->sinks_to_consume, component);
1359 }
1360
1361 /*
1362 * Freeze the component class now that it's instantiated at
1363 * least once.
1364 */
1365 BT_LOGD_STR("Freezing component class.");
1366 bt_component_class_freeze(comp_cls);
1367 BT_LIB_LOGI("Added component to graph: "
1368 "%![graph-]+g, %![cc-]+C, name=\"%s\", log-level=%s, "
1369 "%![params-]+v, init-method-data-addr=%p, %![comp-]+c",
1370 graph, comp_cls, name,
1371 bt_common_logging_level_string(log_level), params,
1372 init_method_data, component);
1373
1374 if (user_component) {
1375 /* Move reference to user */
1376 *user_component = component;
1377 component = NULL;
1378 }
1379
1380 end:
1381 if (status != BT_FUNC_STATUS_OK) {
1382 bt_graph_make_faulty(graph);
1383 }
1384
1385 bt_object_put_ref(component);
1386 bt_object_put_ref(new_params);
1387 (void) init_can_consume;
1388 bt_graph_set_can_consume(graph, init_can_consume);
1389 return status;
1390 }
1391
1392 enum bt_graph_add_component_status
1393 bt_graph_add_source_component_with_init_method_data(
1394 struct bt_graph *graph,
1395 const struct bt_component_class_source *comp_cls,
1396 const char *name, const struct bt_value *params,
1397 void *init_method_data, bt_logging_level log_level,
1398 const struct bt_component_source **component)
1399 {
1400 BT_ASSERT_PRE_NON_NULL(comp_cls, "Component class");
1401 return add_component_with_init_method_data(graph,
1402 (void *) comp_cls, (comp_init_method_t) comp_cls->methods.init,
1403 name, params, init_method_data, log_level, (void *) component);
1404 }
1405
1406 enum bt_graph_add_component_status bt_graph_add_source_component(
1407 struct bt_graph *graph,
1408 const struct bt_component_class_source *comp_cls,
1409 const char *name, const struct bt_value *params,
1410 bt_logging_level log_level,
1411 const struct bt_component_source **component)
1412 {
1413 return bt_graph_add_source_component_with_init_method_data(
1414 graph, comp_cls, name, params, NULL, log_level, component);
1415 }
1416
1417 enum bt_graph_add_component_status
1418 bt_graph_add_filter_component_with_init_method_data(
1419 struct bt_graph *graph,
1420 const struct bt_component_class_filter *comp_cls,
1421 const char *name, const struct bt_value *params,
1422 void *init_method_data, bt_logging_level log_level,
1423 const struct bt_component_filter **component)
1424 {
1425 BT_ASSERT_PRE_NON_NULL(comp_cls, "Component class");
1426 return add_component_with_init_method_data(graph,
1427 (void *) comp_cls, (comp_init_method_t) comp_cls->methods.init,
1428 name, params, init_method_data, log_level, (void *) component);
1429 }
1430
1431 enum bt_graph_add_component_status bt_graph_add_filter_component(
1432 struct bt_graph *graph,
1433 const struct bt_component_class_filter *comp_cls,
1434 const char *name, const struct bt_value *params,
1435 bt_logging_level log_level,
1436 const struct bt_component_filter **component)
1437 {
1438 return bt_graph_add_filter_component_with_init_method_data(
1439 graph, comp_cls, name, params, NULL, log_level, component);
1440 }
1441
1442 enum bt_graph_add_component_status
1443 bt_graph_add_sink_component_with_init_method_data(
1444 struct bt_graph *graph,
1445 const struct bt_component_class_sink *comp_cls,
1446 const char *name, const struct bt_value *params,
1447 void *init_method_data, bt_logging_level log_level,
1448 const struct bt_component_sink **component)
1449 {
1450 BT_ASSERT_PRE_NON_NULL(comp_cls, "Component class");
1451 return add_component_with_init_method_data(graph,
1452 (void *) comp_cls, (comp_init_method_t) comp_cls->methods.init,
1453 name, params, init_method_data, log_level, (void *) component);
1454 }
1455
1456 enum bt_graph_add_component_status bt_graph_add_sink_component(
1457 struct bt_graph *graph,
1458 const struct bt_component_class_sink *comp_cls,
1459 const char *name, const struct bt_value *params,
1460 bt_logging_level log_level,
1461 const struct bt_component_sink **component)
1462 {
1463 return bt_graph_add_sink_component_with_init_method_data(
1464 graph, comp_cls, name, params, NULL, log_level, component);
1465 }
1466
1467 BT_HIDDEN
1468 int bt_graph_remove_unconnected_component(struct bt_graph *graph,
1469 struct bt_component *component)
1470 {
1471 bool init_can_consume;
1472 uint64_t count;
1473 uint64_t i;
1474 int ret = 0;
1475
1476 BT_ASSERT(graph);
1477 BT_ASSERT(component);
1478 BT_ASSERT(component->base.ref_count == 0);
1479 BT_ASSERT(bt_component_borrow_graph(component) == graph);
1480
1481 init_can_consume = graph->can_consume;
1482 count = bt_component_get_input_port_count(component);
1483
1484 for (i = 0; i < count; i++) {
1485 struct bt_port *port = (void *)
1486 bt_component_borrow_input_port_by_index(component, i);
1487
1488 BT_ASSERT(port);
1489
1490 if (bt_port_is_connected(port)) {
1491 BT_LIB_LOGW_APPEND_CAUSE(
1492 "Cannot remove component from graph: "
1493 "an input port is connected: "
1494 "%![graph-]+g, %![comp-]+c, %![port-]+p",
1495 graph, component, port);
1496 goto error;
1497 }
1498 }
1499
1500 count = bt_component_get_output_port_count(component);
1501
1502 for (i = 0; i < count; i++) {
1503 struct bt_port *port = (void *)
1504 bt_component_borrow_output_port_by_index(component, i);
1505
1506 BT_ASSERT(port);
1507
1508 if (bt_port_is_connected(port)) {
1509 BT_LIB_LOGW_APPEND_CAUSE(
1510 "Cannot remove component from graph: "
1511 "an output port is connected: "
1512 "%![graph-]+g, %![comp-]+c, %![port-]+p",
1513 graph, component, port);
1514 goto error;
1515 }
1516 }
1517
1518 bt_graph_set_can_consume(graph, false);
1519
1520 /* Possibly remove from sinks to consume */
1521 (void) g_queue_remove(graph->sinks_to_consume, component);
1522
1523 if (graph->sinks_to_consume->length == 0) {
1524 graph->has_sink = false;
1525 }
1526
1527 /*
1528 * This calls bt_object_try_spec_release() on the component, and
1529 * since its reference count is 0, its destructor is called. Its
1530 * destructor calls the user's finalization method (if set).
1531 */
1532 g_ptr_array_remove(graph->components, component);
1533 goto end;
1534
1535 error:
1536 ret = -1;
1537
1538 end:
1539 (void) init_can_consume;
1540 bt_graph_set_can_consume(graph, init_can_consume);
1541 return ret;
1542 }
1543
1544 BT_HIDDEN
1545 void bt_graph_add_message(struct bt_graph *graph,
1546 struct bt_message *msg)
1547 {
1548 BT_ASSERT(graph);
1549 BT_ASSERT(msg);
1550
1551 /*
1552 * It's okay not to take a reference because, when a
1553 * message's reference count drops to 0, either:
1554 *
1555 * * It is recycled back to one of this graph's pool.
1556 * * It is destroyed because it doesn't have any link to any
1557 * graph, which means the original graph is already destroyed.
1558 */
1559 g_ptr_array_add(graph->messages, msg);
1560 }
1561
1562 void bt_graph_get_ref(const struct bt_graph *graph)
1563 {
1564 bt_object_get_ref(graph);
1565 }
1566
1567 void bt_graph_put_ref(const struct bt_graph *graph)
1568 {
1569 bt_object_put_ref(graph);
1570 }
This page took 0.094085 seconds and 4 git commands to generate.