Document libbabeltrace2's C API
[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>
43c59509 33#include <babeltrace2/graph/message.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"
c4f23e30 39#include <stdbool.h>
a256a42d 40#include <stdlib.h>
c0418dd9
JG
41#include <glib.h>
42
578e048b
MJ
43#include "component.h"
44#include "component-sink.h"
45#include "connection.h"
d24d5663 46#include "lib/func-status.h"
578e048b 47
51375aa9
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
5badd463
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,
38cda5da 70 BT_GRAPH_CONFIGURATION_STATE_FAULTY,
9b4f9b42 71 BT_GRAPH_CONFIGURATION_STATE_DESTROYING,
5badd463
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
056deb59
PP
94 uint64_t mip_version;
95
9b4f9b42
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 /*
c513d240 104 * Default interrupter, owned by this.
9b4f9b42
PP
105 */
106 struct bt_interrupter *default_interrupter;
107
d94d92ac 108 bool has_sink;
8ed535b5
PP
109
110 /*
d94d92ac 111 * If this is false, then the public API's consuming
8ed535b5 112 * functions (bt_graph_consume() and bt_graph_run()) return
d24d5663 113 * BT_FUNC_STATUS_CANNOT_CONSUME. The internal "no check"
8ed535b5
PP
114 * functions always work.
115 *
d6e69534 116 * In bt_port_output_message_iterator_create(), on success,
8ed535b5
PP
117 * this flag is cleared so that the iterator remains the only
118 * consumer for the graph's lifetime.
119 */
d94d92ac 120 bool can_consume;
202a3a13 121
5badd463 122 enum bt_graph_configuration_state config_state;
4725a201 123
1bf957a0 124 struct {
d94d92ac
PP
125 GArray *source_output_port_added;
126 GArray *filter_output_port_added;
127 GArray *filter_input_port_added;
128 GArray *sink_input_port_added;
1bf957a0 129 } listeners;
5c563278 130
d6e69534
PP
131 /* Pool of `struct bt_message_event *` */
132 struct bt_object_pool event_msg_pool;
5c563278 133
d6e69534
PP
134 /* Pool of `struct bt_message_packet_beginning *` */
135 struct bt_object_pool packet_begin_msg_pool;
5c563278 136
d6e69534
PP
137 /* Pool of `struct bt_message_packet_end *` */
138 struct bt_object_pool packet_end_msg_pool;
5c563278
PP
139
140 /*
d6e69534 141 * Array of `struct bt_message *` (weak).
5c563278 142 *
d6e69534 143 * This is an array of all the messages ever created from
5c563278 144 * this graph. Some of them can be in one of the pools above,
d6e69534 145 * some of them can be at large. Because each message has a
5c563278 146 * weak pointer to the graph containing its pool, we need to
d6e69534 147 * notify each message that the graph is gone on graph
5c563278
PP
148 * destruction.
149 *
150 * TODO: When we support a maximum size for object pools,
d6e69534 151 * add a way for a message to remove itself from this
5c563278
PP
152 * array (on destruction).
153 */
d6e69534 154 GPtrArray *messages;
c0418dd9
JG
155};
156
8ed535b5 157static inline
bdb288b3 158void bt_graph_set_can_consume(struct bt_graph *graph, bool can_consume)
8ed535b5 159{
98b15851 160 BT_ASSERT_DBG(graph);
8ed535b5
PP
161 graph->can_consume = can_consume;
162}
163
8ed535b5 164BT_HIDDEN
d24d5663 165int bt_graph_consume_sink_no_check(struct bt_graph *graph,
d94d92ac 166 struct bt_component_sink *sink);
8ed535b5 167
1bf957a0 168BT_HIDDEN
d24d5663 169enum bt_graph_listener_func_status bt_graph_notify_port_added(struct bt_graph *graph,
8cc56726 170 struct bt_port *port);
1bf957a0 171
f167d3c0
PP
172BT_HIDDEN
173void bt_graph_remove_connection(struct bt_graph *graph,
174 struct bt_connection *connection);
175
5c563278 176BT_HIDDEN
d6e69534
PP
177void bt_graph_add_message(struct bt_graph *graph,
178 struct bt_message *msg);
5c563278 179
9b4f9b42
PP
180BT_HIDDEN
181bool bt_graph_is_interrupted(const struct bt_graph *graph);
182
5badd463
PP
183static inline
184const char *bt_graph_configuration_state_string(
185 enum bt_graph_configuration_state state)
186{
187 switch (state) {
188 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURING:
8a432889 189 return "CONFIGURING";
5badd463 190 case BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED:
8a432889 191 return "PARTIALLY_CONFIGURED";
5badd463 192 case BT_GRAPH_CONFIGURATION_STATE_CONFIGURED:
8a432889
PP
193 return "CONFIGURED";
194 case BT_GRAPH_CONFIGURATION_STATE_FAULTY:
195 return "FAULTY";
196 case BT_GRAPH_CONFIGURATION_STATE_DESTROYING:
197 return "DESTROYING";
5badd463
PP
198 default:
199 return "(unknown)";
200 }
201}
202
203static inline
d24d5663 204int bt_graph_configure(struct bt_graph *graph)
5badd463 205{
d24d5663 206 int status = BT_FUNC_STATUS_OK;
5badd463
PP
207 uint64_t i;
208
98b15851
PP
209 BT_ASSERT_DBG(graph->config_state !=
210 BT_GRAPH_CONFIGURATION_STATE_FAULTY);
38cda5da 211
91d81473 212 if (G_LIKELY(graph->config_state ==
5badd463
PP
213 BT_GRAPH_CONFIGURATION_STATE_CONFIGURED)) {
214 goto end;
215 }
216
cd6128ca 217 BT_ASSERT_PRE(graph->has_sink, "Graph has no sink component: %!+g", graph);
5badd463
PP
218 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_PARTIALLY_CONFIGURED;
219
220 for (i = 0; i < graph->components->len; i++) {
221 struct bt_component *comp = graph->components->pdata[i];
222 struct bt_component_sink *comp_sink = (void *) comp;
223 struct bt_component_class_sink *comp_cls_sink =
224 (void *) comp->class;
225
226 if (comp->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
227 continue;
228 }
229
230 if (comp_sink->graph_is_configured_method_called) {
231 continue;
232 }
233
234 if (comp_cls_sink->methods.graph_is_configured) {
d24d5663 235 enum bt_component_class_sink_graph_is_configured_method_status comp_status;
5badd463 236
5badd463
PP
237 BT_LIB_LOGD("Calling user's \"graph is configured\" method: "
238 "%![graph-]+g, %![comp-]+c",
239 graph, comp);
5badd463
PP
240 comp_status = comp_cls_sink->methods.graph_is_configured(
241 (void *) comp_sink);
5badd463 242 BT_LIB_LOGD("User method returned: status=%s",
d24d5663
PP
243 bt_common_func_status_string(comp_status));
244 BT_ASSERT_POST(comp_status == BT_FUNC_STATUS_OK ||
245 comp_status == BT_FUNC_STATUS_ERROR ||
246 comp_status == BT_FUNC_STATUS_MEMORY_ERROR,
5badd463 247 "Unexpected returned status: status=%s",
d24d5663 248 bt_common_func_status_string(comp_status));
6ecdcca3 249 BT_ASSERT_POST_NO_ERROR_IF_NO_ERROR_STATUS(comp_status);
d24d5663 250 if (comp_status != BT_FUNC_STATUS_OK) {
870631a2
PP
251 if (comp_status < 0) {
252 BT_LIB_LOGW_APPEND_CAUSE(
253 "Component's \"graph is configured\" method failed: "
254 "%![comp-]+c, status=%s",
255 comp,
256 bt_common_func_status_string(
257 comp_status));
258 }
259
260 status = comp_status;
5badd463
PP
261 goto end;
262 }
263 }
264
265 comp_sink->graph_is_configured_method_called = true;
266 }
267
268 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_CONFIGURED;
269
270end:
271 return status;
272}
273
8cc56726
SM
274static inline
275void bt_graph_make_faulty(struct bt_graph *graph)
276{
277 graph->config_state = BT_GRAPH_CONFIGURATION_STATE_FAULTY;
3f7d4d90 278 BT_LIB_LOGI("Set graph's state to faulty: %![graph-]+g", graph);
8cc56726
SM
279}
280
6ac74c0c 281#endif /* BABELTRACE_GRAPH_GRAPH_INTERNAL_H */
This page took 0.086532 seconds and 4 git commands to generate.