lib: rename `bt_*_labels_by_value` -> `bt_*_labels_for_value`
[babeltrace.git] / src / lib / graph / graph.h
CommitLineData
6ac74c0c
PP
1#ifndef BABELTRACE_GRAPH_GRAPH_INTERNAL_H
2#define BABELTRACE_GRAPH_GRAPH_INTERNAL_H
c0418dd9
JG
3
4/*
e2f7325d 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
870631a2
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
3fadfbc0 32#include <babeltrace2/graph/graph.h>
3fadfbc0 33#include <babeltrace2/graph/message-const.h>
91d81473 34#include "common/macros.h"
578e048b
MJ
35#include "lib/object.h"
36#include "lib/object-pool.h"
37#include "common/assert.h"
de625d1c 38#include "common/common.h"
a256a42d 39#include <stdlib.h>
c0418dd9
JG
40#include <glib.h>
41
578e048b
MJ
42#include "component.h"
43#include "component-sink.h"
44#include "connection.h"
d24d5663 45#include "lib/func-status.h"
578e048b 46
51375aa9
PP
47/* Protection: this file uses BT_LIB_LOG*() macros directly */
48#ifndef BT_LIB_LOG_SUPPORTED
49# error Please include "lib/logging.h" before including this file.
50#endif
51
52/* Protection: this file uses BT_ASSERT_PRE*() macros directly */
53#ifndef BT_ASSERT_PRE_SUPPORTED
54# error Please include "lib/assert-pre.h" before including this file.
55#endif
56
57/* Protection: this file uses BT_ASSERT_POST*() macros directly */
58#ifndef BT_ASSERT_POST_SUPPORTED
59# error Please include "lib/assert-post.h" before including this file.
60#endif
61
1bf957a0
PP
62struct bt_component;
63struct bt_port;
64
5badd463
PP
65enum bt_graph_configuration_state {
66 BT_GRAPH_CONFIGURATION_STATE_CONFIGURING,
67 BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED,
68 BT_GRAPH_CONFIGURATION_STATE_CONFIGURED,
38cda5da 69 BT_GRAPH_CONFIGURATION_STATE_FAULTY,
5badd463
PP
70};
71
f60c8b34
JG
72struct bt_graph {
73 /**
74 * A component graph contains components and point-to-point connection
75 * between these components.
c0418dd9 76 *
f60c8b34
JG
77 * In terms of ownership:
78 * 1) The graph is the components' parent,
79 * 2) The graph is the connnections' parent,
80 * 3) Components share the ownership of their connections,
81 * 4) A connection holds weak references to its two component endpoints.
c0418dd9 82 */
f60c8b34
JG
83 struct bt_object base;
84
85 /* Array of pointers to bt_connection. */
86 GPtrArray *connections;
87 /* Array of pointers to bt_component. */
88 GPtrArray *components;
89 /* Queue of pointers (weak references) to sink bt_components. */
90 GQueue *sinks_to_consume;
1bf957a0 91
d94d92ac
PP
92 bool canceled;
93 bool in_remove_listener;
94 bool has_sink;
8ed535b5
PP
95
96 /*
d94d92ac 97 * If this is false, then the public API's consuming
8ed535b5 98 * functions (bt_graph_consume() and bt_graph_run()) return
d24d5663 99 * BT_FUNC_STATUS_CANNOT_CONSUME. The internal "no check"
8ed535b5
PP
100 * functions always work.
101 *
d6e69534 102 * In bt_port_output_message_iterator_create(), on success,
8ed535b5
PP
103 * this flag is cleared so that the iterator remains the only
104 * consumer for the graph's lifetime.
105 */
d94d92ac 106 bool can_consume;
202a3a13 107
5badd463 108 enum bt_graph_configuration_state config_state;
4725a201 109
1bf957a0 110 struct {
d94d92ac
PP
111 GArray *source_output_port_added;
112 GArray *filter_output_port_added;
113 GArray *filter_input_port_added;
114 GArray *sink_input_port_added;
d94d92ac
PP
115 GArray *source_filter_ports_connected;
116 GArray *source_sink_ports_connected;
9c0a126a 117 GArray *filter_filter_ports_connected;
d94d92ac 118 GArray *filter_sink_ports_connected;
1bf957a0 119 } listeners;
5c563278 120
d6e69534
PP
121 /* Pool of `struct bt_message_event *` */
122 struct bt_object_pool event_msg_pool;
5c563278 123
d6e69534
PP
124 /* Pool of `struct bt_message_packet_beginning *` */
125 struct bt_object_pool packet_begin_msg_pool;
5c563278 126
d6e69534
PP
127 /* Pool of `struct bt_message_packet_end *` */
128 struct bt_object_pool packet_end_msg_pool;
5c563278
PP
129
130 /*
d6e69534 131 * Array of `struct bt_message *` (weak).
5c563278 132 *
d6e69534 133 * This is an array of all the messages ever created from
5c563278 134 * this graph. Some of them can be in one of the pools above,
d6e69534 135 * some of them can be at large. Because each message has a
5c563278 136 * weak pointer to the graph containing its pool, we need to
d6e69534 137 * notify each message that the graph is gone on graph
5c563278
PP
138 * destruction.
139 *
140 * TODO: When we support a maximum size for object pools,
d6e69534 141 * add a way for a message to remove itself from this
5c563278
PP
142 * array (on destruction).
143 */
d6e69534 144 GPtrArray *messages;
c0418dd9
JG
145};
146
8ed535b5 147static inline
d94d92ac 148void _bt_graph_set_can_consume(struct bt_graph *graph, bool can_consume)
8ed535b5 149{
f6ccaed9 150 BT_ASSERT(graph);
8ed535b5
PP
151 graph->can_consume = can_consume;
152}
153
ad847455
PP
154#ifdef BT_DEV_MODE
155# define bt_graph_set_can_consume _bt_graph_set_can_consume
156#else
157# define bt_graph_set_can_consume(_graph, _can_consume)
158#endif
8ed535b5
PP
159
160BT_HIDDEN
d24d5663 161int bt_graph_consume_sink_no_check(struct bt_graph *graph,
d94d92ac 162 struct bt_component_sink *sink);
8ed535b5 163
1bf957a0 164BT_HIDDEN
d24d5663 165enum bt_graph_listener_func_status bt_graph_notify_port_added(struct bt_graph *graph,
8cc56726 166 struct bt_port *port);
1bf957a0 167
1bf957a0 168BT_HIDDEN
d24d5663 169enum bt_graph_listener_func_status bt_graph_notify_ports_connected(
8cc56726
SM
170 struct bt_graph *graph, struct bt_port *upstream_port,
171 struct bt_port *downstream_port);
1bf957a0 172
f167d3c0
PP
173BT_HIDDEN
174void bt_graph_remove_connection(struct bt_graph *graph,
175 struct bt_connection *connection);
176
8ed535b5
PP
177/*
178 * This only works with a component which is not connected at this
179 * point.
180 *
181 * Also the reference count of `component` should be 0 when you call
182 * this function, which means only `graph` owns the component, so it
183 * is safe to destroy.
184 */
185BT_HIDDEN
186int bt_graph_remove_unconnected_component(struct bt_graph *graph,
187 struct bt_component *component);
188
5c563278 189BT_HIDDEN
d6e69534
PP
190void bt_graph_add_message(struct bt_graph *graph,
191 struct bt_message *msg);
5c563278 192
5badd463
PP
193static inline
194const char *bt_graph_configuration_state_string(
195 enum bt_graph_configuration_state state)
196{
197 switch (state) {
198 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURING:
199 return "BT_GRAPH_CONFIGURATION_STATE_CONFIGURING";
200 case BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED:
201 return "BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED";
202 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURED:
203 return "BT_GRAPH_CONFIGURATION_STATE_CONFIGURED";
204 default:
205 return "(unknown)";
206 }
207}
208
209static inline
d24d5663 210int bt_graph_configure(struct bt_graph *graph)
5badd463 211{
d24d5663 212 int status = BT_FUNC_STATUS_OK;
5badd463
PP
213 uint64_t i;
214
38cda5da
PP
215 BT_ASSERT(graph->config_state != BT_GRAPH_CONFIGURATION_STATE_FAULTY);
216
91d81473 217 if (G_LIKELY(graph->config_state ==
5badd463
PP
218 BT_GRAPH_CONFIGURATION_STATE_CONFIGURED)) {
219 goto end;
220 }
221
cd6128ca 222 BT_ASSERT_PRE(graph->has_sink, "Graph has no sink component: %!+g", graph);
5badd463
PP
223 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED;
224
225 for (i = 0; i < graph->components->len; i++) {
226 struct bt_component *comp = graph->components->pdata[i];
227 struct bt_component_sink *comp_sink = (void *) comp;
228 struct bt_component_class_sink *comp_cls_sink =
229 (void *) comp->class;
230
231 if (comp->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
232 continue;
233 }
234
235 if (comp_sink->graph_is_configured_method_called) {
236 continue;
237 }
238
239 if (comp_cls_sink->methods.graph_is_configured) {
d24d5663 240 enum bt_component_class_sink_graph_is_configured_method_status comp_status;
5badd463 241
5badd463
PP
242 BT_LIB_LOGD("Calling user's \"graph is configured\" method: "
243 "%![graph-]+g, %![comp-]+c",
244 graph, comp);
5badd463
PP
245 comp_status = comp_cls_sink->methods.graph_is_configured(
246 (void *) comp_sink);
5badd463 247 BT_LIB_LOGD("User method returned: status=%s",
d24d5663
PP
248 bt_common_func_status_string(comp_status));
249 BT_ASSERT_POST(comp_status == BT_FUNC_STATUS_OK ||
250 comp_status == BT_FUNC_STATUS_ERROR ||
251 comp_status == BT_FUNC_STATUS_MEMORY_ERROR,
5badd463 252 "Unexpected returned status: status=%s",
d24d5663 253 bt_common_func_status_string(comp_status));
d24d5663 254 if (comp_status != BT_FUNC_STATUS_OK) {
870631a2
PP
255 comp_status = BT_FUNC_STATUS_ERROR;
256 if (comp_status < 0) {
257 BT_LIB_LOGW_APPEND_CAUSE(
258 "Component's \"graph is configured\" method failed: "
259 "%![comp-]+c, status=%s",
260 comp,
261 bt_common_func_status_string(
262 comp_status));
263 }
264
265 status = comp_status;
5badd463
PP
266 goto end;
267 }
268 }
269
270 comp_sink->graph_is_configured_method_called = true;
271 }
272
273 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_CONFIGURED;
274
275end:
276 return status;
277}
278
8cc56726
SM
279static inline
280void bt_graph_make_faulty(struct bt_graph *graph)
281{
282 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_FAULTY;
3f7d4d90 283 BT_LIB_LOGI("Set graph's state to faulty: %![graph-]+g", graph);
8cc56726
SM
284}
285
6ac74c0c 286#endif /* BABELTRACE_GRAPH_GRAPH_INTERNAL_H */
This page took 0.06969 seconds and 4 git commands to generate.