lib: use BT_LIB_LOG*_APPEND_CAUSE() where appropriate
[babeltrace.git] / src / lib / graph / graph.c
CommitLineData
c0418dd9 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
f60c8b34 3 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
c0418dd9
JG
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
b03487ab 24#define BT_LOG_TAG "LIB/GRAPH"
1633ef46 25#include "lib/logging.h"
262e5473 26
57952005
MJ
27#include "common/assert.h"
28#include "lib/assert-pre.h"
3b7d3ccc 29#include "lib/assert-post.h"
71c5da58
MJ
30#include <babeltrace2/graph/graph.h>
31#include <babeltrace2/graph/graph-const.h>
71c5da58
MJ
32#include <babeltrace2/graph/component-source-const.h>
33#include <babeltrace2/graph/component-filter-const.h>
34#include <babeltrace2/graph/port-const.h>
57952005
MJ
35#include "lib/graph/message/message.h"
36#include "compat/compiler.h"
37#include "common/common.h"
71c5da58
MJ
38#include <babeltrace2/types.h>
39#include <babeltrace2/value.h>
40#include <babeltrace2/value-const.h>
57952005 41#include "lib/value.h"
f60c8b34 42#include <unistd.h>
1bf957a0
PP
43#include <glib.h>
44
57952005
MJ
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
fb25b9e3
PP
52typedef enum bt_graph_listener_func_status
53(*port_added_func_t)(const void *, const void *, void *);
7b53201c 54
fb25b9e3
PP
55typedef enum bt_graph_listener_func_status
56(*ports_connected_func_t)(const void *, const void *, const void *,
7b53201c 57 const void *, void *);
834e9996 58
fb25b9e3
PP
59typedef enum bt_component_class_init_method_status
60(*comp_init_method_t)(const void *, const void *, void *);
61
1bf957a0 62struct bt_graph_listener {
7b53201c 63 bt_graph_listener_removed_func removed;
1bf957a0
PP
64 void *data;
65};
c0418dd9 66
834e9996
PP
67struct bt_graph_listener_port_added {
68 struct bt_graph_listener base;
69 port_added_func_t func;
70};
eb87cce7 71
834e9996
PP
72struct bt_graph_listener_ports_connected {
73 struct bt_graph_listener base;
74 ports_connected_func_t func;
75};
eb87cce7 76
834e9996
PP
77#define INIT_LISTENERS_ARRAY(_type, _listeners) \
78 do { \
79 _listeners = g_array_new(FALSE, TRUE, sizeof(_type)); \
80 if (!(_listeners)) { \
a8f90e5d
PP
81 BT_LIB_LOGE_APPEND_CAUSE( \
82 "Failed to allocate one GArray."); \
834e9996
PP
83 } \
84 } while (0)
85
86#define CALL_REMOVE_LISTENERS(_type, _listeners) \
87 do { \
88 size_t i; \
89 \
8a62a380
FD
90 if (!_listeners) { \
91 break; \
92 } \
834e9996
PP
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)
eb87cce7 102
f60c8b34 103static
834e9996 104void destroy_graph(struct bt_object *obj)
c0418dd9 105{
7b53201c 106 struct bt_graph *graph = container_of(obj, struct bt_graph, base);
c0418dd9 107
bd14d768
PP
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.
904860cb
PP
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).
bd14d768
PP
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.
b09a5592 122 * 5. The message iterator's finalization function puts its
bd14d768
PP
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.
904860cb
PP
127 * 7. Since this graph's reference count goes from 1 to 0, its
128 * destructor is called (this function).
bd14d768
PP
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 */
a684a357 134 BT_LIB_LOGI("Destroying graph: %!+g", graph);
1d7bf349 135 obj->ref_count++;
bd14d768 136
49682acd
PP
137 /*
138 * Cancel the graph to disallow some operations, like creating
b09a5592 139 * message iterators and adding ports to components.
49682acd 140 */
7b53201c 141 (void) bt_graph_cancel((void *) graph);
49682acd 142
eb87cce7 143 /* Call all remove listeners */
834e9996
PP
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);
834e9996
PP
152 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
153 graph->listeners.source_filter_ports_connected);
ee976410
PP
154 CALL_REMOVE_LISTENERS(struct bt_graph_listener_ports_connected,
155 graph->listeners.filter_filter_ports_connected);
834e9996
PP
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);
eb87cce7 160
b09a5592
PP
161 if (graph->messages) {
162 g_ptr_array_free(graph->messages, TRUE);
163 graph->messages = NULL;
f7c3ac09
PP
164 }
165
c0418dd9 166 if (graph->connections) {
262e5473 167 BT_LOGD_STR("Destroying connections.");
c0418dd9 168 g_ptr_array_free(graph->connections, TRUE);
834e9996 169 graph->connections = NULL;
c0418dd9 170 }
f7c3ac09 171
bd14d768 172 if (graph->components) {
262e5473 173 BT_LOGD_STR("Destroying components.");
bd14d768 174 g_ptr_array_free(graph->components, TRUE);
834e9996 175 graph->components = NULL;
bd14d768 176 }
f7c3ac09 177
f60c8b34
JG
178 if (graph->sinks_to_consume) {
179 g_queue_free(graph->sinks_to_consume);
834e9996
PP
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;
c0418dd9 196 }
1bf957a0 197
834e9996
PP
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;
1bf957a0
PP
201 }
202
834e9996
PP
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
ee976410
PP
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
834e9996
PP
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
b09a5592
PP
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);
c0418dd9
JG
230 g_free(graph);
231}
232
f7c3ac09 233static
b09a5592 234void destroy_message_event(struct bt_message *msg,
f7c3ac09
PP
235 struct bt_graph *graph)
236{
b09a5592 237 bt_message_event_destroy(msg);
f7c3ac09
PP
238}
239
240static
b09a5592 241void destroy_message_packet_begin(struct bt_message *msg,
f7c3ac09
PP
242 struct bt_graph *graph)
243{
a1f053a9 244 bt_message_packet_destroy(msg);
f7c3ac09
PP
245}
246
247static
b09a5592 248void destroy_message_packet_end(struct bt_message *msg,
f7c3ac09
PP
249 struct bt_graph *graph)
250{
a1f053a9 251 bt_message_packet_destroy(msg);
f7c3ac09
PP
252}
253
254static
b09a5592 255void notify_message_graph_is_destroyed(struct bt_message *msg)
f7c3ac09 256{
b09a5592 257 bt_message_unlink_graph(msg);
f7c3ac09
PP
258}
259
7b53201c 260struct bt_graph *bt_graph_create(void)
c0418dd9 261{
f60c8b34 262 struct bt_graph *graph;
1bf957a0 263 int ret;
c0418dd9 264
a684a357 265 BT_LOGI_STR("Creating graph object.");
f60c8b34 266 graph = g_new0(struct bt_graph, 1);
c0418dd9 267 if (!graph) {
a8f90e5d 268 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one graph.");
c0418dd9
JG
269 goto end;
270 }
271
834e9996 272 bt_object_init_shared(&graph->base, destroy_graph);
1d7bf349
PP
273 graph->connections = g_ptr_array_new_with_free_func(
274 (GDestroyNotify) bt_object_try_spec_release);
c0418dd9 275 if (!graph->connections) {
a8f90e5d 276 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
c0418dd9
JG
277 goto error;
278 }
1d7bf349
PP
279 graph->components = g_ptr_array_new_with_free_func(
280 (GDestroyNotify) bt_object_try_spec_release);
f60c8b34 281 if (!graph->components) {
a8f90e5d 282 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
f60c8b34
JG
283 goto error;
284 }
285 graph->sinks_to_consume = g_queue_new();
286 if (!graph->sinks_to_consume) {
a8f90e5d 287 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GQueue.");
c0418dd9
JG
288 goto error;
289 }
1bf957a0 290
834e9996
PP
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;
1bf957a0
PP
297 goto error;
298 }
299
834e9996
PP
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;
1bf957a0
PP
305 goto error;
306 }
307
834e9996
PP
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;
1bf957a0
PP
313 goto error;
314 }
315
834e9996
PP
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
834e9996
PP
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
ee976410
PP
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
834e9996
PP
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
b09a5592
PP
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,
f7c3ac09
PP
359 graph);
360 if (ret) {
a8f90e5d
PP
361 BT_LIB_LOGE_APPEND_CAUSE(
362 "Failed to initialize event message pool: ret=%d",
f7c3ac09
PP
363 ret);
364 goto error;
365 }
366
b09a5592
PP
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,
f7c3ac09
PP
370 graph);
371 if (ret) {
a8f90e5d
PP
372 BT_LIB_LOGE_APPEND_CAUSE(
373 "Failed to initialize packet beginning message pool: ret=%d",
f7c3ac09
PP
374 ret);
375 goto error;
376 }
377
b09a5592
PP
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,
f7c3ac09
PP
381 graph);
382 if (ret) {
a8f90e5d
PP
383 BT_LIB_LOGE_APPEND_CAUSE(
384 "Failed to initialize packet end message pool: ret=%d",
f7c3ac09
PP
385 ret);
386 goto error;
387 }
388
b09a5592
PP
389 graph->messages = g_ptr_array_new_with_free_func(
390 (GDestroyNotify) notify_message_graph_is_destroyed);
a684a357 391 BT_LIB_LOGI("Created graph object: %!+g", graph);
262e5473 392
c0418dd9 393end:
8d750b42 394 return (void *) graph;
834e9996 395
c0418dd9 396error:
8138bfe1 397 BT_OBJECT_PUT_REF_AND_RESET(graph);
c0418dd9
JG
398 goto end;
399}
400
fb25b9e3 401enum bt_graph_connect_ports_status bt_graph_connect_ports(
7b53201c
PP
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)
f60c8b34 406{
fb25b9e3
PP
407 enum bt_graph_connect_ports_status status = BT_FUNC_STATUS_OK;
408 enum bt_graph_listener_func_status listener_status;
f60c8b34 409 struct bt_connection *connection = NULL;
834e9996
PP
410 struct bt_port *upstream_port = (void *) upstream_port_out;
411 struct bt_port *downstream_port = (void *) downstream_port_in;
f60c8b34
JG
412 struct bt_component *upstream_component = NULL;
413 struct bt_component *downstream_component = NULL;
fb25b9e3 414 enum bt_component_class_port_connected_method_status port_connected_status;
834e9996 415 bool init_can_consume;
f60c8b34 416
834e9996
PP
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);
1043fdea
PP
421 BT_ASSERT_PRE(
422 graph->config_state == BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
9a84962b 423 "Graph is not in the \"configuring\" state: %!+g", graph);
834e9996
PP
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);
7b53201c 428 BT_ASSERT_PRE(bt_port_borrow_component_inline((void *) upstream_port),
834e9996
PP
429 "Upstream port does not belong to a component: %!+p",
430 upstream_port);
7b53201c 431 BT_ASSERT_PRE(bt_port_borrow_component_inline((void *) downstream_port),
834e9996
PP
432 "Downstream port does not belong to a component: %!+p",
433 downstream_port);
3afb93ee 434 init_can_consume = graph->can_consume;
a684a357 435 BT_LIB_LOGI("Connecting component ports within graph: "
834e9996
PP
436 "%![graph-]+g, %![up-port-]+p, %![down-port-]+p",
437 graph, upstream_port, downstream_port);
438 bt_graph_set_can_consume(graph, false);
7b53201c 439 upstream_component = bt_port_borrow_component_inline(
834e9996 440 (void *) upstream_port);
7b53201c 441 downstream_component = bt_port_borrow_component_inline(
834e9996 442 (void *) downstream_port);
262e5473 443
262e5473 444 BT_LOGD_STR("Creating connection.");
834e9996
PP
445 connection = bt_connection_create(graph, (void *) upstream_port,
446 (void *) downstream_port);
f60c8b34 447 if (!connection) {
a8f90e5d 448 BT_LIB_LOGE_APPEND_CAUSE("Cannot create connection object.");
fb25b9e3 449 status = BT_FUNC_STATUS_MEMORY_ERROR;
a256a42d 450 goto end;
f60c8b34
JG
451 }
452
834e9996 453 BT_LIB_LOGD("Connection object created: %!+x", connection);
262e5473 454
f60c8b34 455 /*
72b913fb
PP
456 * Ownership of upstream_component/downstream_component and of
457 * the connection object is transferred to the graph.
f60c8b34
JG
458 */
459 g_ptr_array_add(graph->connections, connection);
ffeb0eed 460
f60c8b34 461 /*
0d8b4d8e 462 * Notify both components that their port is connected.
f60c8b34 463 */
834e9996
PP
464 BT_LIB_LOGD("Notifying upstream component that its port is connected: "
465 "%![comp-]+c, %![port-]+p", upstream_component, upstream_port);
fb25b9e3 466 port_connected_status = bt_component_port_connected(upstream_component,
834e9996 467 (void *) upstream_port, (void *) downstream_port);
fb25b9e3 468 if (port_connected_status != BT_FUNC_STATUS_OK) {
a8f90e5d
PP
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
634f394c 480 bt_connection_end(connection, true);
fb25b9e3 481 status = (int) port_connected_status;
634f394c
PP
482 goto end;
483 }
484
0f15970b 485 connection->notified_upstream_port_connected = true;
834e9996
PP
486 BT_LIB_LOGD("Notifying downstream component that its port is connected: "
487 "%![comp-]+c, %![port-]+p", downstream_component,
488 downstream_port);
fb25b9e3 489 port_connected_status = bt_component_port_connected(downstream_component,
834e9996 490 (void *) downstream_port, (void *) upstream_port);
fb25b9e3 491 if (port_connected_status != BT_FUNC_STATUS_OK) {
a8f90e5d
PP
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
634f394c 503 bt_connection_end(connection, true);
fb25b9e3 504 status = (int) port_connected_status;
634f394c
PP
505 goto end;
506 }
507
0f15970b 508 connection->notified_downstream_port_connected = true;
1bf957a0
PP
509
510 /*
0d8b4d8e 511 * Notify the graph's creator that both ports are connected.
1bf957a0 512 */
262e5473 513 BT_LOGD_STR("Notifying graph's user that new component ports are connected.");
e18f3e2b 514 listener_status = bt_graph_notify_ports_connected(graph, upstream_port, downstream_port);
fb25b9e3 515 if (listener_status != BT_FUNC_STATUS_OK) {
a8f90e5d
PP
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
e18f3e2b
SM
526 status = (int) listener_status;
527 goto end;
528 }
529
0f15970b 530 connection->notified_graph_ports_connected = true;
a684a357 531 BT_LIB_LOGI("Connected component ports within graph: "
834e9996
PP
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);
1bf957a0 536
a256a42d 537 if (user_connection) {
1a6a376a
PP
538 /* Move reference to user */
539 *user_connection = connection;
540 connection = NULL;
a256a42d
PP
541 }
542
f60c8b34 543end:
fb25b9e3 544 if (status != BT_FUNC_STATUS_OK) {
e18f3e2b 545 bt_graph_make_faulty(graph);
9a84962b
PP
546 }
547
8138bfe1 548 bt_object_put_ref(connection);
834e9996
PP
549 (void) init_can_consume;
550 bt_graph_set_can_consume(graph, init_can_consume);
a256a42d 551 return status;
f60c8b34
JG
552}
553
371361a1 554static inline
fb25b9e3 555int consume_graph_sink(struct bt_component_sink *comp)
c0418dd9 556{
fb25b9e3 557 enum bt_component_class_sink_consume_method_status consume_status;
834e9996
PP
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);
fb25b9e3 564 consume_status = sink_class->methods.consume((void *) comp);
834e9996 565 BT_LOGD("User method returned: status=%s",
fb25b9e3
PP
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,
834e9996 572 "Invalid component status returned by consuming method: "
fb25b9e3 573 "status=%s", bt_common_func_status_string(consume_status));
a8f90e5d
PP
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
834e9996
PP
583 goto end;
584 }
585
a684a357 586 BT_LIB_LOGD("Consumed from sink: %![comp-]+c, status=%s",
fb25b9e3 587 comp, bt_common_func_status_string(consume_status));
834e9996
PP
588
589end:
fb25b9e3 590 return consume_status;
c3ac0193
PP
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 */
371361a1 598static inline
fb25b9e3 599int consume_sink_node(struct bt_graph *graph, GList *node)
c3ac0193 600{
fb25b9e3 601 int status;
834e9996 602 struct bt_component_sink *sink;
c3ac0193
PP
603
604 sink = node->data;
605 status = consume_graph_sink(sink);
fb25b9e3 606 if (G_UNLIKELY(status != BT_FUNC_STATUS_END)) {
c3ac0193 607 g_queue_push_tail_link(graph->sinks_to_consume, node);
f60c8b34
JG
608 goto end;
609 }
610
611 /* End reached, the node is not added back to the queue and free'd. */
c3ac0193 612 g_queue_delete_link(graph->sinks_to_consume, node);
f60c8b34
JG
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)) {
fb25b9e3 616 status = BT_FUNC_STATUS_OK;
f60c8b34
JG
617 goto end;
618 }
c3ac0193
PP
619
620end:
a684a357 621 BT_LIB_LOGD("Consumed sink node: %![comp-]+c, status=%s",
fb25b9e3 622 sink, bt_common_func_status_string(status));
c3ac0193
PP
623 return status;
624}
625
626BT_HIDDEN
fb25b9e3 627int bt_graph_consume_sink_no_check(struct bt_graph *graph,
834e9996 628 struct bt_component_sink *sink)
c3ac0193 629{
fb25b9e3 630 int status;
c3ac0193
PP
631 GList *sink_node;
632 int index;
633
a684a357 634 BT_LIB_LOGD("Making specific sink consume: %![comp-]+c", sink);
834e9996 635 BT_ASSERT(bt_component_borrow_graph((void *) sink) == graph);
c3ac0193
PP
636
637 if (g_queue_is_empty(graph->sinks_to_consume)) {
a684a357 638 BT_LOGD_STR("Graph's sink queue is empty: end of graph.");
fb25b9e3 639 status = BT_FUNC_STATUS_END;
c3ac0193
PP
640 goto end;
641 }
642
643 index = g_queue_index(graph->sinks_to_consume, sink);
644 if (index < 0) {
a684a357
PP
645 BT_LIB_LOGD("Sink component is not marked as consumable: "
646 "component sink is ended: %![comp-]+c", sink);
fb25b9e3 647 status = BT_FUNC_STATUS_END;
c3ac0193
PP
648 goto end;
649 }
650
651 sink_node = g_queue_pop_nth_link(graph->sinks_to_consume, index);
8b45963b 652 BT_ASSERT(sink_node);
c3ac0193
PP
653 status = consume_sink_node(graph, sink_node);
654
655end:
656 return status;
657}
658
371361a1 659static inline
fb25b9e3 660int consume_no_check(struct bt_graph *graph)
c3ac0193 661{
fb25b9e3 662 int status = BT_FUNC_STATUS_OK;
c3ac0193
PP
663 struct bt_component *sink;
664 GList *current_node;
665
8b45963b
PP
666 BT_ASSERT_PRE(graph->has_sink,
667 "Graph has no sink component: %!+g", graph);
a684a357 668 BT_LIB_LOGD("Making next sink component consume: %![graph-]+g", graph);
c3ac0193 669
85e7137b 670 if (G_UNLIKELY(g_queue_is_empty(graph->sinks_to_consume))) {
a684a357 671 BT_LOGD_STR("Graph's sink queue is empty: end of graph.");
fb25b9e3 672 status = BT_FUNC_STATUS_END;
c3ac0193
PP
673 goto end;
674 }
675
676 current_node = g_queue_pop_head_link(graph->sinks_to_consume);
677 sink = current_node->data;
a684a357 678 BT_LIB_LOGD("Chose next sink to consume: %!+c", sink);
c3ac0193
PP
679 status = consume_sink_node(graph, current_node);
680
f60c8b34
JG
681end:
682 return status;
c0418dd9
JG
683}
684
fb25b9e3 685enum bt_graph_consume_status bt_graph_consume(struct bt_graph *graph)
851b70bd 686{
fb25b9e3 687 enum bt_graph_consume_status status;
9ef22b36 688
8b45963b
PP
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);
9a84962b
PP
693 BT_ASSERT_PRE(graph->config_state != BT_GRAPH_CONFIGURATION_STATE_FAULTY,
694 "Graph is in a faulty state: %!+g", graph);
9cce94e4 695 bt_graph_set_can_consume(graph, false);
1043fdea 696 status = bt_graph_configure(graph);
85e7137b 697 if (G_UNLIKELY(status)) {
1043fdea
PP
698 /* bt_graph_configure() logs errors */
699 goto end;
700 }
701
834e9996 702 status = consume_no_check(graph);
9cce94e4 703 bt_graph_set_can_consume(graph, true);
1043fdea
PP
704
705end:
f8cd6131 706 return status;
851b70bd
PP
707}
708
fb25b9e3 709enum bt_graph_run_status bt_graph_run(struct bt_graph *graph)
f60c8b34 710{
fb25b9e3 711 enum bt_graph_run_status status;
f60c8b34 712
834e9996
PP
713 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
714 BT_ASSERT_PRE(!graph->canceled, "Graph is canceled: %!+g", graph);
371361a1
PP
715 BT_ASSERT_PRE(graph->can_consume,
716 "Cannot consume graph in its current state: %!+g", graph);
9a84962b
PP
717 BT_ASSERT_PRE(graph->config_state != BT_GRAPH_CONFIGURATION_STATE_FAULTY,
718 "Graph is in a faulty state: %!+g", graph);
9cce94e4 719 bt_graph_set_can_consume(graph, false);
1043fdea 720 status = bt_graph_configure(graph);
85e7137b 721 if (G_UNLIKELY(status)) {
1043fdea
PP
722 /* bt_graph_configure() logs errors */
723 goto end;
724 }
725
a684a357 726 BT_LIB_LOGI("Running graph: %!+g", graph);
262e5473 727
f60c8b34 728 do {
851b70bd
PP
729 /*
730 * Check if the graph is canceled at each iteration. If
731 * the graph was canceled by another thread or by a
834e9996
PP
732 * signal handler, this is not a warning nor an error,
733 * it was intentional: log with a DEBUG level only.
851b70bd 734 */
85e7137b 735 if (G_UNLIKELY(graph->canceled)) {
a684a357 736 BT_LIB_LOGI("Stopping the graph: graph is canceled: "
834e9996 737 "%!+g", graph);
fb25b9e3 738 status = BT_FUNC_STATUS_CANCELED;
851b70bd
PP
739 goto end;
740 }
741
834e9996 742 status = consume_no_check(graph);
fb25b9e3 743 if (G_UNLIKELY(status == BT_FUNC_STATUS_AGAIN)) {
f60c8b34 744 /*
202a3a13
PP
745 * If AGAIN is received and there are multiple
746 * sinks, go ahead and consume from the next
747 * sink.
f60c8b34 748 *
202a3a13
PP
749 * However, in the case where a single sink is
750 * left, the caller can decide to busy-wait and
7b53201c 751 * call bt_graph_run() continuously
834e9996
PP
752 * until the source is ready or it can decide to
753 * sleep for an arbitrary amount of time.
f60c8b34
JG
754 */
755 if (graph->sinks_to_consume->length > 1) {
fb25b9e3 756 status = BT_FUNC_STATUS_OK;
f60c8b34
JG
757 }
758 }
fb25b9e3 759 } while (status == BT_FUNC_STATUS_OK);
f60c8b34
JG
760
761 if (g_queue_is_empty(graph->sinks_to_consume)) {
fb25b9e3 762 status = BT_FUNC_STATUS_END;
f60c8b34 763 }
262e5473 764
202a3a13 765end:
a684a357 766 BT_LIB_LOGI("Graph ran: %![graph-]+g, status=%s", graph,
fb25b9e3 767 bt_common_func_status_string(status));
9cce94e4 768 bt_graph_set_can_consume(graph, true);
72b913fb 769 return status;
f60c8b34 770}
1bf957a0 771
fb25b9e3 772enum bt_graph_add_listener_status
7b53201c
PP
773bt_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,
834e9996 777 int *out_listener_id)
1bf957a0 778{
834e9996
PP
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,
1bf957a0 785 };
834e9996 786 int listener_id;
1bf957a0 787
834e9996
PP
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;
a684a357 796 BT_LIB_LOGD("Added \"source component output port added\" listener to graph: "
834e9996
PP
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
fb25b9e3 804 return BT_FUNC_STATUS_OK;
1bf957a0
PP
805}
806
fb25b9e3 807enum bt_graph_add_listener_status
7b53201c
PP
808bt_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,
834e9996 812 int *out_listener_id)
1bf957a0 813{
834e9996
PP
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;
1bf957a0 822
834e9996
PP
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;
a684a357 831 BT_LIB_LOGD("Added \"filter component output port added\" listener to graph: "
834e9996
PP
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
fb25b9e3 839 return BT_FUNC_STATUS_OK;
834e9996 840}
262e5473 841
fb25b9e3 842enum bt_graph_add_listener_status
7b53201c
PP
843bt_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,
834e9996
PP
847 int *out_listener_id)
848{
834e9996
PP
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;
eb87cce7 857
834e9996
PP
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;
a684a357 866 BT_LIB_LOGD("Added \"filter component input port added\" listener to graph: "
834e9996
PP
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
fb25b9e3 874 return BT_FUNC_STATUS_OK;
834e9996 875}
1bf957a0 876
fb25b9e3 877enum bt_graph_add_listener_status
7b53201c
PP
878bt_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,
834e9996
PP
882 int *out_listener_id)
883{
834e9996
PP
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;
1bf957a0 892
834e9996
PP
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;
a684a357 901 BT_LIB_LOGD("Added \"sink component input port added\" listener to graph: "
834e9996
PP
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
fb25b9e3 909 return BT_FUNC_STATUS_OK;
1bf957a0
PP
910}
911
fb25b9e3 912enum bt_graph_add_listener_status
7b53201c
PP
913bt_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,
834e9996
PP
917 int *out_listener_id)
918{
834e9996
PP
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;
eb87cce7 927
834e9996
PP
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;
a684a357 937 BT_LIB_LOGD("Added \"source to filter component ports connected\" listener to graph: "
834e9996
PP
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
fb25b9e3 945 return BT_FUNC_STATUS_OK;
834e9996 946}
1bf957a0 947
fb25b9e3 948enum bt_graph_add_listener_status
7b53201c
PP
949bt_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,
834e9996
PP
953 int *out_listener_id)
954{
834e9996
PP
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;
1bf957a0 963
834e9996
PP
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;
a684a357 973 BT_LIB_LOGD("Added \"source to sink component ports connected\" listener to graph: "
834e9996
PP
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
fb25b9e3 981 return BT_FUNC_STATUS_OK;
1bf957a0
PP
982}
983
fb25b9e3 984enum bt_graph_add_listener_status
ee976410
PP
985bt_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;
a684a357 1009 BT_LIB_LOGD("Added \"filter to filter component ports connected\" listener to graph: "
ee976410
PP
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
fb25b9e3 1017 return BT_FUNC_STATUS_OK;
ee976410
PP
1018}
1019
fb25b9e3 1020enum bt_graph_add_listener_status
7b53201c
PP
1021bt_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,
834e9996 1025 int *out_listener_id)
1bf957a0 1026{
834e9996
PP
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;
1bf957a0 1035
834e9996
PP
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;
a684a357 1045 BT_LIB_LOGD("Added \"filter to sink component ports connected\" listener to graph: "
834e9996
PP
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
fb25b9e3 1053 return BT_FUNC_STATUS_OK;
834e9996 1054}
262e5473 1055
1bf957a0 1056BT_HIDDEN
fb25b9e3 1057enum bt_graph_listener_func_status bt_graph_notify_port_added(
e18f3e2b 1058 struct bt_graph *graph, struct bt_port *port)
1bf957a0 1059{
834e9996
PP
1060 uint64_t i;
1061 GArray *listeners;
1062 struct bt_component *comp;
fb25b9e3 1063 enum bt_graph_listener_func_status status = BT_FUNC_STATUS_OK;
1bf957a0 1064
834e9996
PP
1065 BT_ASSERT(graph);
1066 BT_ASSERT(port);
a684a357 1067 BT_LIB_LOGD("Notifying graph listeners that a port was added: "
834e9996 1068 "%![graph-]+g, %![port-]+p", graph, port);
7b53201c 1069 comp = bt_port_borrow_component_inline(port);
834e9996
PP
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 }
262e5473 1097
834e9996
PP
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 }
1bf957a0 1109
834e9996
PP
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
e18f3e2b 1121
834e9996 1122 BT_ASSERT(listener->func);
e18f3e2b 1123 status = listener->func(comp, port, listener->base.data);
fb25b9e3 1124 if (status != BT_FUNC_STATUS_OK) {
e18f3e2b
SM
1125 goto end;
1126 }
1bf957a0 1127 }
e18f3e2b
SM
1128
1129end:
1130 return status;
1bf957a0
PP
1131}
1132
1bf957a0 1133BT_HIDDEN
fb25b9e3 1134enum bt_graph_listener_func_status bt_graph_notify_ports_connected(
e18f3e2b
SM
1135 struct bt_graph *graph, struct bt_port *upstream_port,
1136 struct bt_port *downstream_port)
1bf957a0 1137{
834e9996
PP
1138 uint64_t i;
1139 GArray *listeners;
1140 struct bt_component *upstream_comp;
1141 struct bt_component *downstream_comp;
fb25b9e3 1142 enum bt_graph_listener_func_status status = BT_FUNC_STATUS_OK;
1bf957a0 1143
834e9996
PP
1144 BT_ASSERT(graph);
1145 BT_ASSERT(upstream_port);
1146 BT_ASSERT(downstream_port);
a684a357 1147 BT_LIB_LOGD("Notifying graph listeners that ports were connected: "
834e9996
PP
1148 "%![graph-]+g, %![up-port-]+p, %![down-port-]+p",
1149 graph, upstream_port, downstream_port);
7b53201c 1150 upstream_comp = bt_port_borrow_component_inline(upstream_port);
834e9996 1151 BT_ASSERT(upstream_comp);
7b53201c 1152 downstream_comp = bt_port_borrow_component_inline(downstream_port);
834e9996
PP
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 }
262e5473 1170
834e9996
PP
1171 break;
1172 }
1173 case BT_COMPONENT_CLASS_TYPE_FILTER:
1174 {
1175 switch (downstream_comp->class->type) {
ee976410
PP
1176 case BT_COMPONENT_CLASS_TYPE_FILTER:
1177 listeners =
1178 graph->listeners.filter_filter_ports_connected;
1179 break;
834e9996
PP
1180 case BT_COMPONENT_CLASS_TYPE_SINK:
1181 listeners =
1182 graph->listeners.filter_sink_ports_connected;
1183 break;
1184 default:
1185 abort();
1186 }
1bf957a0 1187
834e9996
PP
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);
e18f3e2b 1200 status = listener->func(upstream_comp, downstream_comp,
834e9996 1201 upstream_port, downstream_port, listener->base.data);
fb25b9e3 1202 if (status != BT_FUNC_STATUS_OK) {
e18f3e2b
SM
1203 goto end;
1204 }
1bf957a0 1205 }
e18f3e2b
SM
1206
1207end:
1208 return status;
1bf957a0
PP
1209}
1210
fb25b9e3 1211enum bt_graph_cancel_status bt_graph_cancel(struct bt_graph *graph)
202a3a13 1212{
834e9996
PP
1213 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1214 graph->canceled = true;
a684a357 1215 BT_LIB_LOGI("Canceled graph: %!+i", graph);
fb25b9e3 1216 return BT_FUNC_STATUS_OK;
202a3a13
PP
1217}
1218
7b53201c 1219bt_bool bt_graph_is_canceled(const struct bt_graph *graph)
202a3a13 1220{
834e9996
PP
1221 BT_ASSERT_PRE_NON_NULL(graph, "Graph");
1222 return graph->canceled ? BT_TRUE : BT_FALSE;
202a3a13 1223}
f167d3c0
PP
1224
1225BT_HIDDEN
1226void bt_graph_remove_connection(struct bt_graph *graph,
1227 struct bt_connection *connection)
1228{
8b45963b
PP
1229 BT_ASSERT(graph);
1230 BT_ASSERT(connection);
a684a357 1231 BT_LIB_LOGD("Removing graph's connection: %![graph-]+g, %![conn-]+x",
262e5473 1232 graph, connection);
f167d3c0
PP
1233 g_ptr_array_remove(graph->connections, connection);
1234}
36712f1d 1235
834e9996
PP
1236BT_ASSERT_PRE_FUNC
1237static inline
1238bool 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
1255end:
1256 return exists;
1257}
1258
1259static
fb25b9e3 1260int add_component_with_init_method_data(
7b53201c 1261 struct bt_graph *graph,
834e9996
PP
1262 struct bt_component_class *comp_cls,
1263 comp_init_method_t init_method,
ce141536 1264 const char *name, const struct bt_value *params,
cc81b5ab
PP
1265 void *init_method_data, bt_logging_level log_level,
1266 struct bt_component **user_component)
36712f1d 1267{
fb25b9e3
PP
1268 int status = BT_FUNC_STATUS_OK;
1269 enum bt_component_class_init_method_status init_status;
36712f1d 1270 struct bt_component *component = NULL;
834e9996
PP
1271 int ret;
1272 bool init_can_consume;
ce141536 1273 struct bt_value *new_params = NULL;
36712f1d 1274
834e9996
PP
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);
1043fdea
PP
1279 BT_ASSERT_PRE(
1280 graph->config_state == BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
9a84962b 1281 "Graph is not in the \"configuring\" state: %!+g", graph);
834e9996
PP
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);
3afb93ee 1286 init_can_consume = graph->can_consume;
834e9996 1287 bt_graph_set_can_consume(graph, false);
a684a357 1288 BT_LIB_LOGI("Adding component to graph: "
cc81b5ab
PP
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);
36712f1d 1294
834e9996 1295 if (!params) {
ce141536
PP
1296 new_params = bt_value_map_create();
1297 if (!new_params) {
a8f90e5d
PP
1298 BT_LIB_LOGE_APPEND_CAUSE(
1299 "Cannot create empty map value object.");
fb25b9e3 1300 status = BT_FUNC_STATUS_MEMORY_ERROR;
36712f1d
PP
1301 goto end;
1302 }
ce141536
PP
1303
1304 params = new_params;
36712f1d
PP
1305 }
1306
cc81b5ab 1307 ret = bt_component_create(comp_cls, name, log_level, &component);
834e9996 1308 if (ret) {
a8f90e5d
PP
1309 BT_LIB_LOGE_APPEND_CAUSE(
1310 "Cannot create empty component object: ret=%d",
834e9996 1311 ret);
fb25b9e3 1312 status = BT_FUNC_STATUS_MEMORY_ERROR;
36712f1d
PP
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);
f433d1bf 1323 bt_value_freeze(params);
36712f1d 1324
834e9996 1325 if (init_method) {
36712f1d 1326 BT_LOGD_STR("Calling user's initialization method.");
fb25b9e3 1327 init_status = init_method(component, params, init_method_data);
36712f1d 1328 BT_LOGD("User method returned: status=%s",
fb25b9e3
PP
1329 bt_common_func_status_string(init_status));
1330 if (init_status != BT_FUNC_STATUS_OK) {
a8f90e5d
PP
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
fb25b9e3 1339 status = init_status;
36712f1d
PP
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)) {
834e9996 1357 graph->has_sink = true;
36712f1d
PP
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.");
834e9996 1366 bt_component_class_freeze(comp_cls);
a684a357 1367 BT_LIB_LOGI("Added component to graph: "
cc81b5ab
PP
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);
36712f1d
PP
1373
1374 if (user_component) {
1375 /* Move reference to user */
1376 *user_component = component;
1377 component = NULL;
1378 }
1379
1380end:
fb25b9e3 1381 if (status != BT_FUNC_STATUS_OK) {
e18f3e2b 1382 bt_graph_make_faulty(graph);
9a84962b
PP
1383 }
1384
8138bfe1 1385 bt_object_put_ref(component);
ce141536 1386 bt_object_put_ref(new_params);
834e9996
PP
1387 (void) init_can_consume;
1388 bt_graph_set_can_consume(graph, init_can_consume);
fb25b9e3 1389 return status;
36712f1d
PP
1390}
1391
fb25b9e3 1392enum bt_graph_add_component_status
7b53201c
PP
1393bt_graph_add_source_component_with_init_method_data(
1394 struct bt_graph *graph,
1395 const struct bt_component_class_source *comp_cls,
ce141536 1396 const char *name, const struct bt_value *params,
cc81b5ab 1397 void *init_method_data, bt_logging_level log_level,
7b53201c 1398 const struct bt_component_source **component)
834e9996
PP
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,
cc81b5ab 1403 name, params, init_method_data, log_level, (void *) component);
834e9996
PP
1404}
1405
fb25b9e3 1406enum bt_graph_add_component_status bt_graph_add_source_component(
7b53201c
PP
1407 struct bt_graph *graph,
1408 const struct bt_component_class_source *comp_cls,
ce141536 1409 const char *name, const struct bt_value *params,
cc81b5ab 1410 bt_logging_level log_level,
7b53201c 1411 const struct bt_component_source **component)
834e9996 1412{
7b53201c 1413 return bt_graph_add_source_component_with_init_method_data(
cc81b5ab 1414 graph, comp_cls, name, params, NULL, log_level, component);
834e9996
PP
1415}
1416
fb25b9e3 1417enum bt_graph_add_component_status
7b53201c
PP
1418bt_graph_add_filter_component_with_init_method_data(
1419 struct bt_graph *graph,
1420 const struct bt_component_class_filter *comp_cls,
ce141536 1421 const char *name, const struct bt_value *params,
cc81b5ab 1422 void *init_method_data, bt_logging_level log_level,
7b53201c 1423 const struct bt_component_filter **component)
834e9996
PP
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,
cc81b5ab 1428 name, params, init_method_data, log_level, (void *) component);
834e9996
PP
1429}
1430
fb25b9e3 1431enum bt_graph_add_component_status bt_graph_add_filter_component(
7b53201c
PP
1432 struct bt_graph *graph,
1433 const struct bt_component_class_filter *comp_cls,
ce141536 1434 const char *name, const struct bt_value *params,
cc81b5ab 1435 bt_logging_level log_level,
7b53201c 1436 const struct bt_component_filter **component)
834e9996 1437{
7b53201c 1438 return bt_graph_add_filter_component_with_init_method_data(
cc81b5ab 1439 graph, comp_cls, name, params, NULL, log_level, component);
834e9996
PP
1440}
1441
fb25b9e3 1442enum bt_graph_add_component_status
7b53201c
PP
1443bt_graph_add_sink_component_with_init_method_data(
1444 struct bt_graph *graph,
1445 const struct bt_component_class_sink *comp_cls,
ce141536 1446 const char *name, const struct bt_value *params,
cc81b5ab 1447 void *init_method_data, bt_logging_level log_level,
7b53201c 1448 const struct bt_component_sink **component)
36712f1d 1449{
834e9996
PP
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,
cc81b5ab 1453 name, params, init_method_data, log_level, (void *) component);
834e9996
PP
1454}
1455
fb25b9e3 1456enum bt_graph_add_component_status bt_graph_add_sink_component(
7b53201c
PP
1457 struct bt_graph *graph,
1458 const struct bt_component_class_sink *comp_cls,
ce141536 1459 const char *name, const struct bt_value *params,
cc81b5ab 1460 bt_logging_level log_level,
7b53201c 1461 const struct bt_component_sink **component)
834e9996 1462{
7b53201c 1463 return bt_graph_add_sink_component_with_init_method_data(
cc81b5ab 1464 graph, comp_cls, name, params, NULL, log_level, component);
36712f1d 1465}
c3ac0193
PP
1466
1467BT_HIDDEN
1468int bt_graph_remove_unconnected_component(struct bt_graph *graph,
1469 struct bt_component *component)
1470{
834e9996
PP
1471 bool init_can_consume;
1472 uint64_t count;
c3ac0193
PP
1473 uint64_t i;
1474 int ret = 0;
1475
8b45963b
PP
1476 BT_ASSERT(graph);
1477 BT_ASSERT(component);
1d7bf349 1478 BT_ASSERT(component->base.ref_count == 0);
8b45963b 1479 BT_ASSERT(bt_component_borrow_graph(component) == graph);
c3ac0193 1480
3afb93ee 1481 init_can_consume = graph->can_consume;
c3ac0193
PP
1482 count = bt_component_get_input_port_count(component);
1483
1484 for (i = 0; i < count; i++) {
834e9996
PP
1485 struct bt_port *port = (void *)
1486 bt_component_borrow_input_port_by_index(component, i);
c3ac0193 1487
8b45963b 1488 BT_ASSERT(port);
c3ac0193
PP
1489
1490 if (bt_port_is_connected(port)) {
a8f90e5d
PP
1491 BT_LIB_LOGW_APPEND_CAUSE(
1492 "Cannot remove component from graph: "
c3ac0193 1493 "an input port is connected: "
834e9996
PP
1494 "%![graph-]+g, %![comp-]+c, %![port-]+p",
1495 graph, component, port);
c3ac0193
PP
1496 goto error;
1497 }
1498 }
1499
1500 count = bt_component_get_output_port_count(component);
1501
1502 for (i = 0; i < count; i++) {
834e9996
PP
1503 struct bt_port *port = (void *)
1504 bt_component_borrow_output_port_by_index(component, i);
c3ac0193 1505
8b45963b 1506 BT_ASSERT(port);
c3ac0193
PP
1507
1508 if (bt_port_is_connected(port)) {
a8f90e5d
PP
1509 BT_LIB_LOGW_APPEND_CAUSE(
1510 "Cannot remove component from graph: "
c3ac0193 1511 "an output port is connected: "
834e9996
PP
1512 "%![graph-]+g, %![comp-]+c, %![port-]+p",
1513 graph, component, port);
c3ac0193
PP
1514 goto error;
1515 }
1516 }
1517
834e9996 1518 bt_graph_set_can_consume(graph, false);
c3ac0193
PP
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) {
834e9996 1524 graph->has_sink = false;
c3ac0193
PP
1525 }
1526
1527 /*
1d7bf349
PP
1528 * This calls bt_object_try_spec_release() on the component, and
1529 * since its reference count is 0, its destructor is called. Its
c3ac0193
PP
1530 * destructor calls the user's finalization method (if set).
1531 */
1532 g_ptr_array_remove(graph->components, component);
1533 goto end;
1534
1535error:
1536 ret = -1;
1537
1538end:
834e9996
PP
1539 (void) init_can_consume;
1540 bt_graph_set_can_consume(graph, init_can_consume);
c3ac0193
PP
1541 return ret;
1542}
f7c3ac09
PP
1543
1544BT_HIDDEN
b09a5592
PP
1545void bt_graph_add_message(struct bt_graph *graph,
1546 struct bt_message *msg)
f7c3ac09
PP
1547{
1548 BT_ASSERT(graph);
b09a5592 1549 BT_ASSERT(msg);
f7c3ac09
PP
1550
1551 /*
1552 * It's okay not to take a reference because, when a
b09a5592 1553 * message's reference count drops to 0, either:
f7c3ac09
PP
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 */
b09a5592 1559 g_ptr_array_add(graph->messages, msg);
f7c3ac09 1560}
8c6884d9
PP
1561
1562void bt_graph_get_ref(const struct bt_graph *graph)
1563{
1564 bt_object_get_ref(graph);
1565}
1566
1567void bt_graph_put_ref(const struct bt_graph *graph)
1568{
1569 bt_object_put_ref(graph);
1570}
This page took 0.133601 seconds and 4 git commands to generate.