Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / lib / graph / graph.h
CommitLineData
abe30a8f
PP
1#ifndef BABELTRACE_GRAPH_GRAPH_INTERNAL_H
2#define BABELTRACE_GRAPH_GRAPH_INTERNAL_H
c0418dd9
JG
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
f60c8b34 6 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
c0418dd9 7 *
c0418dd9
JG
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
a8f90e5d
PP
27/* Protection: this file uses BT_LIB_LOG*() macros directly */
28#ifndef BT_LIB_LOG_SUPPORTED
29# error Please include "lib/logging.h" before including this file.
30#endif
31
71c5da58 32#include <babeltrace2/graph/graph.h>
71c5da58 33#include <babeltrace2/graph/message-const.h>
85e7137b 34#include "common/macros.h"
57952005
MJ
35#include "lib/object.h"
36#include "lib/object-pool.h"
37#include "common/assert.h"
cde51176 38#include "common/common.h"
969c1d8a 39#include <stdbool.h>
a256a42d 40#include <stdlib.h>
c0418dd9
JG
41#include <glib.h>
42
57952005
MJ
43#include "component.h"
44#include "component-sink.h"
45#include "connection.h"
fb25b9e3 46#include "lib/func-status.h"
57952005 47
0341b021
PP
48/* Protection: this file uses BT_LIB_LOG*() macros directly */
49#ifndef BT_LIB_LOG_SUPPORTED
50# error Please include "lib/logging.h" before including this file.
51#endif
52
53/* Protection: this file uses BT_ASSERT_PRE*() macros directly */
54#ifndef BT_ASSERT_PRE_SUPPORTED
55# error Please include "lib/assert-pre.h" before including this file.
56#endif
57
58/* Protection: this file uses BT_ASSERT_POST*() macros directly */
59#ifndef BT_ASSERT_POST_SUPPORTED
60# error Please include "lib/assert-post.h" before including this file.
61#endif
62
1bf957a0
PP
63struct bt_component;
64struct bt_port;
65
1043fdea
PP
66enum bt_graph_configuration_state {
67 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
68 BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED,
69 BT_GRAPH_CONFIGURATION_STATE_CONFIGURED,
9a84962b 70 BT_GRAPH_CONFIGURATION_STATE_FAULTY,
d73bb381 71 BT_GRAPH_CONFIGURATION_STATE_DESTROYING,
1043fdea
PP
72};
73
f60c8b34
JG
74struct bt_graph {
75 /**
76 * A component graph contains components and point-to-point connection
77 * between these components.
c0418dd9 78 *
f60c8b34
JG
79 * In terms of ownership:
80 * 1) The graph is the components' parent,
81 * 2) The graph is the connnections' parent,
82 * 3) Components share the ownership of their connections,
83 * 4) A connection holds weak references to its two component endpoints.
c0418dd9 84 */
f60c8b34
JG
85 struct bt_object base;
86
87 /* Array of pointers to bt_connection. */
88 GPtrArray *connections;
89 /* Array of pointers to bt_component. */
90 GPtrArray *components;
91 /* Queue of pointers (weak references) to sink bt_components. */
92 GQueue *sinks_to_consume;
1bf957a0 93
253a9ecc
PP
94 uint64_t mip_version;
95
d73bb381
PP
96 /*
97 * Array of `struct bt_interrupter *`, each one owned by this.
98 * If any interrupter is set, then this graph is deemed
99 * interrupted.
100 */
101 GPtrArray *interrupters;
102
103 /*
104 * Default interrupter to support bt_graph_interrupt(); owned
105 * by this.
106 */
107 struct bt_interrupter *default_interrupter;
108
834e9996
PP
109 bool in_remove_listener;
110 bool has_sink;
c3ac0193
PP
111
112 /*
834e9996 113 * If this is false, then the public API's consuming
c3ac0193 114 * functions (bt_graph_consume() and bt_graph_run()) return
fb25b9e3 115 * BT_FUNC_STATUS_CANNOT_CONSUME. The internal "no check"
c3ac0193
PP
116 * functions always work.
117 *
b09a5592 118 * In bt_port_output_message_iterator_create(), on success,
c3ac0193
PP
119 * this flag is cleared so that the iterator remains the only
120 * consumer for the graph's lifetime.
121 */
834e9996 122 bool can_consume;
202a3a13 123
1043fdea 124 enum bt_graph_configuration_state config_state;
9cce94e4 125
1bf957a0 126 struct {
834e9996
PP
127 GArray *source_output_port_added;
128 GArray *filter_output_port_added;
129 GArray *filter_input_port_added;
130 GArray *sink_input_port_added;
834e9996
PP
131 GArray *source_filter_ports_connected;
132 GArray *source_sink_ports_connected;
ee976410 133 GArray *filter_filter_ports_connected;
834e9996 134 GArray *filter_sink_ports_connected;
1bf957a0 135 } listeners;
f7c3ac09 136
b09a5592
PP
137 /* Pool of `struct bt_message_event *` */
138 struct bt_object_pool event_msg_pool;
f7c3ac09 139
b09a5592
PP
140 /* Pool of `struct bt_message_packet_beginning *` */
141 struct bt_object_pool packet_begin_msg_pool;
f7c3ac09 142
b09a5592
PP
143 /* Pool of `struct bt_message_packet_end *` */
144 struct bt_object_pool packet_end_msg_pool;
f7c3ac09
PP
145
146 /*
b09a5592 147 * Array of `struct bt_message *` (weak).
f7c3ac09 148 *
b09a5592 149 * This is an array of all the messages ever created from
f7c3ac09 150 * this graph. Some of them can be in one of the pools above,
b09a5592 151 * some of them can be at large. Because each message has a
f7c3ac09 152 * weak pointer to the graph containing its pool, we need to
b09a5592 153 * notify each message that the graph is gone on graph
f7c3ac09
PP
154 * destruction.
155 *
156 * TODO: When we support a maximum size for object pools,
b09a5592 157 * add a way for a message to remove itself from this
f7c3ac09
PP
158 * array (on destruction).
159 */
b09a5592 160 GPtrArray *messages;
c0418dd9
JG
161};
162
c3ac0193 163static inline
fa6cfec3 164void bt_graph_set_can_consume(struct bt_graph *graph, bool can_consume)
c3ac0193 165{
ec4a3354 166 BT_ASSERT_DBG(graph);
c3ac0193
PP
167 graph->can_consume = can_consume;
168}
169
c3ac0193 170BT_HIDDEN
fb25b9e3 171int bt_graph_consume_sink_no_check(struct bt_graph *graph,
834e9996 172 struct bt_component_sink *sink);
c3ac0193 173
1bf957a0 174BT_HIDDEN
fb25b9e3 175enum bt_graph_listener_func_status bt_graph_notify_port_added(struct bt_graph *graph,
e18f3e2b 176 struct bt_port *port);
1bf957a0 177
1bf957a0 178BT_HIDDEN
fb25b9e3 179enum bt_graph_listener_func_status bt_graph_notify_ports_connected(
e18f3e2b
SM
180 struct bt_graph *graph, struct bt_port *upstream_port,
181 struct bt_port *downstream_port);
1bf957a0 182
f167d3c0
PP
183BT_HIDDEN
184void bt_graph_remove_connection(struct bt_graph *graph,
185 struct bt_connection *connection);
186
f7c3ac09 187BT_HIDDEN
b09a5592
PP
188void bt_graph_add_message(struct bt_graph *graph,
189 struct bt_message *msg);
f7c3ac09 190
d73bb381
PP
191BT_HIDDEN
192bool bt_graph_is_interrupted(const struct bt_graph *graph);
193
1043fdea
PP
194static inline
195const char *bt_graph_configuration_state_string(
196 enum bt_graph_configuration_state state)
197{
198 switch (state) {
199 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURING:
e05f8464 200 return "CONFIGURING";
1043fdea 201 case BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED:
e05f8464 202 return "PARTIALLY_CONFIGURED";
1043fdea 203 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURED:
e05f8464
PP
204 return "CONFIGURED";
205 case BT_GRAPH_CONFIGURATION_STATE_FAULTY:
206 return "FAULTY";
207 case BT_GRAPH_CONFIGURATION_STATE_DESTROYING:
208 return "DESTROYING";
1043fdea
PP
209 default:
210 return "(unknown)";
211 }
212}
213
214static inline
fb25b9e3 215int bt_graph_configure(struct bt_graph *graph)
1043fdea 216{
fb25b9e3 217 int status = BT_FUNC_STATUS_OK;
1043fdea
PP
218 uint64_t i;
219
ec4a3354
PP
220 BT_ASSERT_DBG(graph->config_state !=
221 BT_GRAPH_CONFIGURATION_STATE_FAULTY);
9a84962b 222
85e7137b 223 if (G_LIKELY(graph->config_state ==
1043fdea
PP
224 BT_GRAPH_CONFIGURATION_STATE_CONFIGURED)) {
225 goto end;
226 }
227
28273afc 228 BT_ASSERT_PRE(graph->has_sink, "Graph has no sink component: %!+g", graph);
1043fdea
PP
229 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED;
230
231 for (i = 0; i < graph->components->len; i++) {
232 struct bt_component *comp = graph->components->pdata[i];
233 struct bt_component_sink *comp_sink = (void *) comp;
234 struct bt_component_class_sink *comp_cls_sink =
235 (void *) comp->class;
236
237 if (comp->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
238 continue;
239 }
240
241 if (comp_sink->graph_is_configured_method_called) {
242 continue;
243 }
244
245 if (comp_cls_sink->methods.graph_is_configured) {
fb25b9e3 246 enum bt_component_class_sink_graph_is_configured_method_status comp_status;
1043fdea 247
1043fdea
PP
248 BT_LIB_LOGD("Calling user's \"graph is configured\" method: "
249 "%![graph-]+g, %![comp-]+c",
250 graph, comp);
1043fdea
PP
251 comp_status = comp_cls_sink->methods.graph_is_configured(
252 (void *) comp_sink);
1043fdea 253 BT_LIB_LOGD("User method returned: status=%s",
fb25b9e3
PP
254 bt_common_func_status_string(comp_status));
255 BT_ASSERT_POST(comp_status == BT_FUNC_STATUS_OK ||
256 comp_status == BT_FUNC_STATUS_ERROR ||
257 comp_status == BT_FUNC_STATUS_MEMORY_ERROR,
1043fdea 258 "Unexpected returned status: status=%s",
fb25b9e3 259 bt_common_func_status_string(comp_status));
fb25b9e3 260 if (comp_status != BT_FUNC_STATUS_OK) {
a8f90e5d
PP
261 if (comp_status < 0) {
262 BT_LIB_LOGW_APPEND_CAUSE(
263 "Component's \"graph is configured\" method failed: "
264 "%![comp-]+c, status=%s",
265 comp,
266 bt_common_func_status_string(
267 comp_status));
268 }
269
270 status = comp_status;
1043fdea
PP
271 goto end;
272 }
273 }
274
275 comp_sink->graph_is_configured_method_called = true;
276 }
277
278 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_CONFIGURED;
279
280end:
281 return status;
282}
283
e18f3e2b
SM
284static inline
285void bt_graph_make_faulty(struct bt_graph *graph)
286{
287 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_FAULTY;
a684a357 288 BT_LIB_LOGI("Set graph's state to faulty: %![graph-]+g", graph);
e18f3e2b
SM
289}
290
abe30a8f 291#endif /* BABELTRACE_GRAPH_GRAPH_INTERNAL_H */
This page took 0.079972 seconds and 4 git commands to generate.