1 #ifndef BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H
2 #define BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H
5 * BabelTrace - LTTng-live client Component
7 * Copyright 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
8 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 * Copyright 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
13 * Permission is hereby granted, free of charge, to any person obtaining a copy
14 * of this software and associated documentation files (the "Software"), to deal
15 * in the Software without restriction, including without limitation the rights
16 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17 * copies of the Software, and to permit persons to whom the Software is
18 * furnished to do so, subject to the following conditions:
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include "common/macros.h"
35 #include <babeltrace2/babeltrace.h>
37 #include "../common/metadata/decoder.h"
38 #include "../common/msg-iter/msg-iter.h"
40 #include "viewer-connection.h"
42 struct lttng_live_component
;
43 struct lttng_live_session
;
44 struct lttng_live_msg_iter
;
46 enum lttng_live_stream_state
{
47 /* This stream won't have data until some known time in the future. */
48 LTTNG_LIVE_STREAM_QUIESCENT
,
50 * This stream won't have data until some known time in the future and
51 * the message iterator inactivity message was already sent downstream.
53 LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA
, /* */
54 /* This stream has data ready to be consumed. */
55 LTTNG_LIVE_STREAM_ACTIVE_DATA
,
57 * This stream has no data left to consume. We should asked the relay
60 LTTNG_LIVE_STREAM_ACTIVE_NO_DATA
,
61 /* This stream won't have anymore data, ever. */
62 LTTNG_LIVE_STREAM_EOF
,
65 /* Iterator over a live stream. */
66 struct lttng_live_stream_iterator
{
67 bt_logging_level log_level
;
68 bt_self_component
*self_comp
;
74 struct lttng_live_trace
*trace
;
77 * Since only a single iterator per viewer connection, we have
78 * only a single message iterator per stream.
80 struct bt_msg_iter
*msg_iter
;
82 uint64_t viewer_stream_id
;
84 uint64_t ctf_stream_class_id
;
86 /* base offset in current index. */
88 /* len to read in current index. */
90 /* offset in current index. */
94 * Clock Snapshot value of the last message iterator inactivity message
97 uint64_t last_inactivity_ts
;
100 * Clock Snapshot value of the current message iterator inactivity
101 * message we might want to send downstream.
103 uint64_t current_inactivity_ts
;
105 enum lttng_live_stream_state state
;
108 * The current message produced by this live stream iterator. Owned by
111 bt_message
*current_msg
;
113 /* Timestamp in nanoseconds of the current message (current_msg). */
114 int64_t current_msg_ts_ns
;
123 bool has_stream_hung_up
;
126 struct lttng_live_metadata
{
127 bt_logging_level log_level
;
128 bt_self_component
*self_comp
;
130 /* Weak reference. */
131 struct lttng_live_trace
*trace
;
134 /* Weak reference. */
135 struct ctf_metadata_decoder
*decoder
;
140 struct lttng_live_trace
{
141 bt_logging_level log_level
;
142 bt_self_component
*self_comp
;
144 /* Back reference to session. */
145 struct lttng_live_session
*session
;
147 /* ctf trace ID within the session. */
153 /* Weak reference. */
154 bt_trace_class
*trace_class
;
156 struct lttng_live_metadata
*metadata
;
158 const bt_clock_class
*clock_class
;
160 /* Array of pointers to struct lttng_live_stream_iterator. */
162 GPtrArray
*stream_iterators
;
164 bool new_metadata_needed
;
167 struct lttng_live_session
{
168 bt_logging_level log_level
;
169 bt_self_component
*self_comp
;
171 /* Weak reference. */
172 struct lttng_live_msg_iter
*lttng_live_msg_iter
;
178 GString
*session_name
;
182 /* Array of pointers to struct lttng_live_trace. */
186 bool new_streams_needed
;
187 bool lazy_stream_msg_init
;
191 enum session_not_found_action
{
192 SESSION_NOT_FOUND_ACTION_UNKNOWN
,
193 SESSION_NOT_FOUND_ACTION_CONTINUE
,
194 SESSION_NOT_FOUND_ACTION_FAIL
,
195 SESSION_NOT_FOUND_ACTION_END
,
199 * A component instance is an iterator on a single session.
201 struct lttng_live_component
{
202 bt_logging_level log_level
;
204 /* Weak reference. */
205 bt_self_component
*self_comp
;
209 enum session_not_found_action sess_not_found_act
;
212 size_t max_query_size
;
215 * Keeps track of whether the downstream component already has a
216 * message iterator on this component.
221 struct lttng_live_msg_iter
{
222 bt_logging_level log_level
;
223 bt_self_component
*self_comp
;
225 /* Weak reference. */
226 struct lttng_live_component
*lttng_live_comp
;
228 /* Weak reference. */
229 bt_self_message_iterator
*self_msg_iter
;
232 struct live_viewer_connection
*viewer_connection
;
234 /* Array of pointers to struct lttng_live_session. */
237 /* Number of live stream iterator this message iterator has.*/
238 uint64_t active_stream_iter
;
240 /* Timestamp in nanosecond of the last message sent downstream. */
241 int64_t last_msg_ts_ns
;
244 enum lttng_live_iterator_status
{
245 /** Iterator state has progressed. Continue iteration immediately. */
246 LTTNG_LIVE_ITERATOR_STATUS_CONTINUE
= 3,
247 /** No message available for now. Try again later. */
248 LTTNG_LIVE_ITERATOR_STATUS_AGAIN
= 2,
249 /** No more CTF_LTTNG_LIVEs to be delivered. */
250 LTTNG_LIVE_ITERATOR_STATUS_END
= 1,
251 /** No error, okay. */
252 LTTNG_LIVE_ITERATOR_STATUS_OK
= 0,
253 /** Invalid arguments. */
254 LTTNG_LIVE_ITERATOR_STATUS_INVAL
= -1,
255 /** General error. */
256 LTTNG_LIVE_ITERATOR_STATUS_ERROR
= -2,
257 /** Out of memory. */
258 LTTNG_LIVE_ITERATOR_STATUS_NOMEM
= -3,
259 /** Unsupported iterator feature. */
260 LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED
= -4,
263 bt_component_class_init_method_status
lttng_live_component_init(
264 bt_self_component_source
*self_comp
,
265 const bt_value
*params
, void *init_method_data
);
267 bt_component_class_query_method_status
lttng_live_query(
268 bt_self_component_class_source
*comp_class
,
269 bt_private_query_executor
*priv_query_exec
,
270 const char *object
, const bt_value
*params
,
271 void *method_data
, const bt_value
**result
);
273 void lttng_live_component_finalize(bt_self_component_source
*component
);
275 bt_component_class_message_iterator_next_method_status
lttng_live_msg_iter_next(
276 bt_self_message_iterator
*iterator
,
277 bt_message_array_const msgs
, uint64_t capacity
,
280 bt_component_class_message_iterator_init_method_status
lttng_live_msg_iter_init(
281 bt_self_message_iterator
*self_msg_it
,
282 bt_self_component_source
*self_comp
,
283 bt_self_component_port_output
*self_port
);
285 void lttng_live_msg_iter_finalize(bt_self_message_iterator
*it
);
287 int lttng_live_create_viewer_session(struct lttng_live_msg_iter
*lttng_live_msg_iter
);
288 int lttng_live_attach_session(struct lttng_live_session
*session
);
289 int lttng_live_detach_session(struct lttng_live_session
*session
);
290 enum lttng_live_iterator_status
lttng_live_get_new_streams(
291 struct lttng_live_session
*session
);
293 int lttng_live_add_session(struct lttng_live_msg_iter
*lttng_live_msg_iter
,
295 const char *hostname
,
296 const char *session_name
);
298 ssize_t
lttng_live_get_one_metadata_packet(struct lttng_live_trace
*trace
,
300 enum lttng_live_iterator_status
lttng_live_get_next_index(
301 struct lttng_live_msg_iter
*lttng_live_msg_iter
,
302 struct lttng_live_stream_iterator
*stream
,
303 struct packet_index
*index
);
305 enum bt_msg_iter_medium_status
lttng_live_get_stream_bytes(
306 struct lttng_live_msg_iter
*lttng_live_msg_iter
,
307 struct lttng_live_stream_iterator
*stream
, uint8_t *buf
,
308 uint64_t offset
, uint64_t req_len
, uint64_t *recv_len
);
309 void lttng_live_add_stream_iterator(struct lttng_live_msg_iter
*lttng_live_msg_iter
,
310 struct lttng_live_stream_iterator
*stream_iter
);
311 void lttng_live_remove_stream_iterator(struct lttng_live_msg_iter
*lttng_live_msg_iter
,
312 struct lttng_live_stream_iterator
*stream_iter
);
314 struct lttng_live_trace
*lttng_live_borrow_trace(
315 struct lttng_live_session
*session
, uint64_t trace_id
);
316 void lttng_live_need_new_streams(struct lttng_live_msg_iter
*lttng_live_msg_iter
);
318 bool lttng_live_graph_is_canceled(struct lttng_live_msg_iter
*msg_iter
);
320 #endif /* BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H */