lib: remove useless checks, make functions inline on fast path
[babeltrace.git] / include / babeltrace / graph / graph-internal.h
CommitLineData
6ac74c0c
PP
1#ifndef BABELTRACE_GRAPH_GRAPH_INTERNAL_H
2#define BABELTRACE_GRAPH_GRAPH_INTERNAL_H
c0418dd9
JG
3
4/*
5 * BabelTrace - Component Graph Internal
6 *
f60c8b34 7 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
c0418dd9
JG
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
b2e0c907 30#include <babeltrace/graph/graph.h>
a256a42d 31#include <babeltrace/graph/component-status.h>
5c563278 32#include <babeltrace/graph/notification.h>
c0418dd9
JG
33#include <babeltrace/babeltrace-internal.h>
34#include <babeltrace/object-internal.h>
5c563278 35#include <babeltrace/object-pool-internal.h>
f6ccaed9 36#include <babeltrace/assert-internal.h>
a256a42d 37#include <stdlib.h>
c0418dd9
JG
38#include <glib.h>
39
1bf957a0
PP
40struct bt_component;
41struct bt_port;
42
f60c8b34
JG
43struct bt_graph {
44 /**
45 * A component graph contains components and point-to-point connection
46 * between these components.
c0418dd9 47 *
f60c8b34
JG
48 * In terms of ownership:
49 * 1) The graph is the components' parent,
50 * 2) The graph is the connnections' parent,
51 * 3) Components share the ownership of their connections,
52 * 4) A connection holds weak references to its two component endpoints.
c0418dd9 53 */
f60c8b34
JG
54 struct bt_object base;
55
56 /* Array of pointers to bt_connection. */
57 GPtrArray *connections;
58 /* Array of pointers to bt_component. */
59 GPtrArray *components;
60 /* Queue of pointers (weak references) to sink bt_components. */
61 GQueue *sinks_to_consume;
1bf957a0 62
202a3a13 63 bt_bool canceled;
8cc092c9 64 bt_bool in_remove_listener;
2de524b3 65 bt_bool has_sink;
8ed535b5
PP
66
67 /*
68 * If this is BT_FALSE, then the public API's consuming
69 * functions (bt_graph_consume() and bt_graph_run()) return
70 * BT_GRAPH_STATUS_CANNOT_CONSUME. The internal "no check"
71 * functions always work.
72 *
73 * In bt_output_port_notification_iterator_create(), on success,
74 * this flag is cleared so that the iterator remains the only
75 * consumer for the graph's lifetime.
76 */
1d915789 77 bt_bool can_consume;
202a3a13 78
1bf957a0
PP
79 struct {
80 GArray *port_added;
81 GArray *port_removed;
f345f8bb
PP
82 GArray *ports_connected;
83 GArray *ports_disconnected;
1bf957a0 84 } listeners;
5c563278
PP
85
86 /* Pool of `struct bt_notification_event *` */
87 struct bt_object_pool event_notif_pool;
88
89 /* Pool of `struct bt_notification_packet_begin *` */
90 struct bt_object_pool packet_begin_notif_pool;
91
92 /* Pool of `struct bt_notification_packet_end *` */
93 struct bt_object_pool packet_end_notif_pool;
94
95 /*
96 * Array of `struct bt_notification *` (weak).
97 *
98 * This is an array of all the notifications ever created from
99 * this graph. Some of them can be in one of the pools above,
100 * some of them can be at large. Because each notification has a
101 * weak pointer to the graph containing its pool, we need to
102 * notify each notification that the graph is gone on graph
103 * destruction.
104 *
105 * TODO: When we support a maximum size for object pools,
106 * add a way for a notification to remove itself from this
107 * array (on destruction).
108 */
109 GPtrArray *notifications;
c0418dd9
JG
110};
111
8ed535b5
PP
112static inline
113void bt_graph_set_can_consume(struct bt_graph *graph, bt_bool can_consume)
114{
f6ccaed9 115 BT_ASSERT(graph);
8ed535b5
PP
116 graph->can_consume = can_consume;
117}
118
119BT_HIDDEN
120enum bt_graph_status bt_graph_consume_no_check(struct bt_graph *graph);
121
122BT_HIDDEN
123enum bt_graph_status bt_graph_consume_sink_no_check(struct bt_graph *graph,
124 struct bt_component *sink);
125
1bf957a0
PP
126BT_HIDDEN
127void bt_graph_notify_port_added(struct bt_graph *graph, struct bt_port *port);
128
129BT_HIDDEN
130void bt_graph_notify_port_removed(struct bt_graph *graph,
131 struct bt_component *comp, struct bt_port *port);
132
133BT_HIDDEN
f345f8bb
PP
134void bt_graph_notify_ports_connected(struct bt_graph *graph,
135 struct bt_port *upstream_port, struct bt_port *downstream_port);
1bf957a0
PP
136
137BT_HIDDEN
f345f8bb
PP
138void bt_graph_notify_ports_disconnected(struct bt_graph *graph,
139 struct bt_component *upstream_comp,
140 struct bt_component *downstream_comp,
141 struct bt_port *upstream_port,
142 struct bt_port *downstream_port);
1bf957a0 143
f167d3c0
PP
144BT_HIDDEN
145void bt_graph_remove_connection(struct bt_graph *graph,
146 struct bt_connection *connection);
147
8ed535b5
PP
148/*
149 * This only works with a component which is not connected at this
150 * point.
151 *
152 * Also the reference count of `component` should be 0 when you call
153 * this function, which means only `graph` owns the component, so it
154 * is safe to destroy.
155 */
156BT_HIDDEN
157int bt_graph_remove_unconnected_component(struct bt_graph *graph,
158 struct bt_component *component);
159
5c563278
PP
160BT_HIDDEN
161void bt_graph_add_notification(struct bt_graph *graph,
162 struct bt_notification *notif);
163
262e5473
PP
164static inline
165const char *bt_graph_status_string(enum bt_graph_status status)
166{
167 switch (status) {
168 case BT_GRAPH_STATUS_CANCELED:
169 return "BT_GRAPH_STATUS_CANCELED";
170 case BT_GRAPH_STATUS_AGAIN:
171 return "BT_GRAPH_STATUS_AGAIN";
172 case BT_GRAPH_STATUS_END:
173 return "BT_GRAPH_STATUS_END";
174 case BT_GRAPH_STATUS_OK:
175 return "BT_GRAPH_STATUS_OK";
262e5473
PP
176 case BT_GRAPH_STATUS_INVALID:
177 return "BT_GRAPH_STATUS_INVALID";
178 case BT_GRAPH_STATUS_NO_SINK:
179 return "BT_GRAPH_STATUS_NO_SINK";
180 case BT_GRAPH_STATUS_ERROR:
181 return "BT_GRAPH_STATUS_ERROR";
a256a42d
PP
182 case BT_GRAPH_STATUS_COMPONENT_REFUSES_PORT_CONNECTION:
183 return "BT_GRAPH_STATUS_COMPONENT_REFUSES_PORT_CONNECTION";
184 case BT_GRAPH_STATUS_NOMEM:
185 return "BT_GRAPH_STATUS_NOMEM";
1d915789
PP
186 case BT_GRAPH_STATUS_CANNOT_CONSUME:
187 return "BT_GRAPH_STATUS_CANNOT_CONSUME";
262e5473
PP
188 default:
189 return "(unknown)";
190 }
191}
192
a256a42d
PP
193static inline
194enum bt_graph_status bt_graph_status_from_component_status(
195 enum bt_component_status comp_status)
196{
197 switch (comp_status) {
198 case BT_COMPONENT_STATUS_OK:
199 return BT_GRAPH_STATUS_OK;
200 case BT_COMPONENT_STATUS_END:
201 return BT_GRAPH_STATUS_END;
202 case BT_COMPONENT_STATUS_AGAIN:
203 return BT_GRAPH_STATUS_AGAIN;
204 case BT_COMPONENT_STATUS_REFUSE_PORT_CONNECTION:
205 return BT_GRAPH_STATUS_COMPONENT_REFUSES_PORT_CONNECTION;
206 case BT_COMPONENT_STATUS_ERROR:
207 return BT_GRAPH_STATUS_ERROR;
208 case BT_COMPONENT_STATUS_UNSUPPORTED:
209 return BT_GRAPH_STATUS_ERROR;
210 case BT_COMPONENT_STATUS_INVALID:
211 return BT_GRAPH_STATUS_INVALID;
212 case BT_COMPONENT_STATUS_NOMEM:
213 return BT_GRAPH_STATUS_NOMEM;
214 case BT_COMPONENT_STATUS_NOT_FOUND:
215 return BT_GRAPH_STATUS_ERROR;
216 default:
217#ifdef BT_LOGF
218 BT_LOGF("Unknown component status: status=%d", comp_status);
219#endif
220 abort();
221 }
222}
223
6ac74c0c 224#endif /* BABELTRACE_GRAPH_GRAPH_INTERNAL_H */
This page took 0.044739 seconds and 4 git commands to generate.