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