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