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