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