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