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