src.ctf.lttng-live: make lttng_live_stream_iterator::current_msg a bt2::Message:...
[babeltrace.git] / src / plugins / ctf / lttng-live / lttng-live.hpp
CommitLineData
14f28187 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
14f28187
FD
3 *
4 * Copyright 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Copyright 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
0235b0db 8 * BabelTrace - LTTng-live client Component
14f28187
FD
9 */
10
0235b0db
MJ
11#ifndef BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H
12#define BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H
13
c802cacb 14#include <glib.h>
3c22a242
FD
15#include <stdint.h>
16
3fadfbc0 17#include <babeltrace2/babeltrace.h>
14f28187 18
35e432d7 19#include "cpp-common/bt2/message.hpp"
0f5c5d5c
SM
20#include "cpp-common/vendor/fmt/format.h" /* IWYU pragma: keep */
21
5656cea5
PP
22#include "../common/src/metadata/tsdl/decoder.hpp"
23#include "../common/src/msg-iter/msg-iter.hpp"
087cd0f5 24#include "viewer-connection.hpp"
14f28187 25
4164020e
SM
26enum lttng_live_stream_state
27{
28 /* This stream won't have data until some known time in the future. */
29 LTTNG_LIVE_STREAM_QUIESCENT,
30 /*
31 * This stream won't have data until some known time in the future and
32 * the message iterator inactivity message was already sent downstream.
33 */
34 LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA, /* */
35 /* This stream has data ready to be consumed. */
36 LTTNG_LIVE_STREAM_ACTIVE_DATA,
37 /*
38 * This stream has no data left to consume. We should asked the relay
39 * for more.
40 */
41 LTTNG_LIVE_STREAM_ACTIVE_NO_DATA,
42 /* This stream won't have anymore data, ever. */
43 LTTNG_LIVE_STREAM_EOF,
14f28187
FD
44};
45
0f5c5d5c
SM
46inline const char *format_as(const lttng_live_stream_state state) noexcept
47{
48 switch (state) {
49 case LTTNG_LIVE_STREAM_ACTIVE_NO_DATA:
50 return "ACTIVE_NO_DATA";
51
52 case LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA:
53 return "QUIESCENT_NO_DATA";
54
55 case LTTNG_LIVE_STREAM_QUIESCENT:
56 return "QUIESCENT";
57
58 case LTTNG_LIVE_STREAM_ACTIVE_DATA:
59 return "ACTIVE_DATA";
60
61 case LTTNG_LIVE_STREAM_EOF:
62 return "EOF";
63 }
64
65 bt_common_abort();
66}
67
14f28187 68/* Iterator over a live stream. */
4164020e
SM
69struct lttng_live_stream_iterator
70{
0f5c5d5c
SM
71 explicit lttng_live_stream_iterator(const bt2c::Logger& parentLogger) :
72 logger {parentLogger, "PLUGIN/SRC.CTF.LTTNG-LIVE/STREAM-ITER"}
73 {
74 }
75
76 bt2c::Logger logger;
4164020e 77
0b68f2bc 78 bt2::Stream::Shared stream;
4164020e
SM
79
80 /* Weak reference. */
afb0f12b 81 struct lttng_live_trace *trace = nullptr;
4164020e
SM
82
83 /*
84 * Since only a single iterator per viewer connection, we have
85 * only a single message iterator per stream.
86 */
2d5d8c7b 87 ctf_msg_iter_up msg_iter;
4164020e 88
afb0f12b 89 uint64_t viewer_stream_id = 0;
4164020e
SM
90
91 struct
92 {
afb0f12b
SM
93 bool is_set = false;
94 uint64_t value = 0;
4164020e
SM
95 } ctf_stream_class_id;
96
97 /* base offset in current index. */
afb0f12b 98 uint64_t base_offset = 0;
4164020e 99 /* len to read in current index. */
afb0f12b 100 uint64_t len = 0;
4164020e 101 /* offset in current index. */
afb0f12b 102 uint64_t offset = 0;
4164020e
SM
103
104 /*
105 * Clock Snapshot value of the last message iterator inactivity message
106 * sent downstream.
107 */
108 struct
109 {
afb0f12b
SM
110 bool is_set = false;
111 uint64_t value = 0;
4164020e
SM
112 } last_inactivity_ts;
113
114 /*
115 * Clock Snapshot value of the current message iterator inactivity
116 * message we might want to send downstream.
117 */
afb0f12b 118 uint64_t current_inactivity_ts = 0;
4164020e 119
afb0f12b 120 enum lttng_live_stream_state state = LTTNG_LIVE_STREAM_QUIESCENT;
4164020e 121
35e432d7
SM
122 /* The current message produced by this live stream iterator. */
123 bt2::ConstMessage::Shared current_msg;
4164020e
SM
124
125 /* Timestamp in nanoseconds of the current message (current_msg). */
afb0f12b 126 int64_t current_msg_ts_ns = 0;
4164020e 127
afbf59c4 128 std::vector<uint8_t> buf;
4164020e 129
e28ca558 130 std::string name;
4164020e 131
afb0f12b 132 bool has_stream_hung_up = false;
14f28187
FD
133};
134
4164020e
SM
135struct lttng_live_metadata
136{
e66be7c3
SM
137 using UP = std::unique_ptr<lttng_live_metadata>;
138
0f5c5d5c
SM
139 explicit lttng_live_metadata(const bt2c::Logger& parentLogger) :
140 logger {parentLogger, "PLUGIN/SRC.CTF.LTTNG-LIVE/METADATA"}
141 {
142 }
143
144 bt2c::Logger logger;
c01594de 145
afb0f12b 146 uint64_t stream_id = 0;
1fa280c9 147
4164020e 148 /* Weak reference. */
1fa280c9 149 ctf_metadata_decoder_up decoder;
14f28187
FD
150};
151
4164020e
SM
152enum lttng_live_metadata_stream_state
153{
154 /*
155 * The metadata needs to be updated. This is either because we just
156 * created the trace and haven't asked yet, or the relay specifically
157 * told us that new metadata is available.
158 */
159 LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED,
160 /*
161 * The metadata was updated and the relay has not told us we need to
162 * update it yet.
163 */
164 LTTNG_LIVE_METADATA_STREAM_STATE_NOT_NEEDED,
165 /*
166 * The relay has closed this metadata stream. We set this in reaction
167 * to a LTTNG_VIEWER_METADATA_ERR reply to a LTTNG_VIEWER_GET_METADATA
168 * command to the relay. If this field is set, we have received all the
169 * metadata that we are ever going to get for that metadata stream.
170 */
171 LTTNG_LIVE_METADATA_STREAM_STATE_CLOSED,
76bbaebc
FD
172};
173
4164020e
SM
174struct lttng_live_trace
175{
0f5c5d5c
SM
176 explicit lttng_live_trace(const bt2c::Logger& parentLogger) :
177 logger {parentLogger, "PLUGIN/SRC.CTF.LTTNG-LIVE/TRACE"}
178 {
179 }
180
181 bt2c::Logger logger;
c01594de 182
4164020e 183 /* Back reference to session. */
afb0f12b 184 struct lttng_live_session *session = nullptr;
14f28187 185
4164020e 186 /* ctf trace ID within the session. */
afb0f12b 187 uint64_t id = 0;
14f28187 188
7916e7eb 189 bt2::Trace::Shared trace;
14f28187 190
a52f1f2e 191 bt2::TraceClass::Shared trace_class;
14f28187 192
e66be7c3 193 lttng_live_metadata::UP metadata;
14f28187 194
afb0f12b 195 const bt_clock_class *clock_class = nullptr;
14f28187 196
4164020e
SM
197 /* Array of pointers to struct lttng_live_stream_iterator. */
198 /* Owned by this. */
afb0f12b 199 GPtrArray *stream_iterators = nullptr;
14f28187 200
afb0f12b
SM
201 enum lttng_live_metadata_stream_state metadata_stream_state =
202 LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED;
14f28187
FD
203};
204
4164020e
SM
205struct lttng_live_session
206{
0f5c5d5c
SM
207 explicit lttng_live_session(const bt2c::Logger& parentLogger) :
208 logger {parentLogger, "PLUGIN/SRC.CTF.LTTNG-LIVE/SESSION"}
209 {
210 }
211
212 bt2c::Logger logger;
213
afb0f12b 214 bt_self_component *self_comp = nullptr;
c01594de 215
4164020e 216 /* Weak reference. */
afb0f12b 217 struct lttng_live_msg_iter *lttng_live_msg_iter = nullptr;
14f28187 218
4164020e 219 /* Owned by this. */
afb0f12b 220 GString *hostname = nullptr;
14f28187 221
4164020e 222 /* Owned by this. */
afb0f12b 223 GString *session_name = nullptr;
14f28187 224
afb0f12b 225 uint64_t id = 0;
14f28187 226
4164020e 227 /* Array of pointers to struct lttng_live_trace. */
afb0f12b 228 GPtrArray *traces = nullptr;
14f28187 229
afb0f12b
SM
230 bool attached = false;
231 bool new_streams_needed = false;
232 bool lazy_stream_msg_init = false;
233 bool closed = false;
14f28187
FD
234};
235
4164020e
SM
236enum session_not_found_action
237{
238 SESSION_NOT_FOUND_ACTION_CONTINUE,
239 SESSION_NOT_FOUND_ACTION_FAIL,
240 SESSION_NOT_FOUND_ACTION_END,
14f28187
FD
241};
242
243/*
244 * A component instance is an iterator on a single session.
245 */
4164020e
SM
246struct lttng_live_component
247{
ef9e5f5d
SM
248 using UP = std::unique_ptr<lttng_live_component>;
249
0f5c5d5c
SM
250 explicit lttng_live_component(bt2c::Logger loggerParam) noexcept :
251 logger {std::move(loggerParam)}
252 {
253 }
254
255 bt2c::Logger logger;
4164020e
SM
256
257 /* Weak reference. */
afb0f12b 258 bt_self_component *self_comp = nullptr;
4164020e
SM
259
260 struct
261 {
2780ec75 262 std::string url;
afb0f12b 263 enum session_not_found_action sess_not_found_act = SESSION_NOT_FOUND_ACTION_CONTINUE;
4164020e
SM
264 } params;
265
afb0f12b 266 size_t max_query_size = 0;
4164020e
SM
267
268 /*
269 * Keeps track of whether the downstream component already has a
270 * message iterator on this component.
271 */
afb0f12b 272 bool has_msg_iter = false;
14f28187
FD
273};
274
4164020e
SM
275struct lttng_live_msg_iter
276{
0f5c5d5c
SM
277 explicit lttng_live_msg_iter(const bt2c::Logger& parentLogger) :
278 logger {parentLogger, "PLUGIN/SRC.CTF.LTTNG-LIVE/MSG-ITER"}
279 {
280 }
281
282 bt2c::Logger logger;
283
afb0f12b 284 bt_self_component *self_comp = nullptr;
c01594de 285
4164020e 286 /* Weak reference. */
afb0f12b 287 struct lttng_live_component *lttng_live_comp = nullptr;
14f28187 288
4164020e 289 /* Weak reference. */
afb0f12b 290 bt_self_message_iterator *self_msg_iter = nullptr;
14f28187 291
4164020e 292 /* Owned by this. */
afb0f12b 293 struct live_viewer_connection *viewer_connection = nullptr;
14f28187 294
4164020e 295 /* Array of pointers to struct lttng_live_session. */
afb0f12b 296 GPtrArray *sessions = nullptr;
14f28187 297
4164020e 298 /* Number of live stream iterator this message iterator has.*/
afb0f12b 299 uint64_t active_stream_iter = 0;
14f28187 300
4164020e 301 /* Timestamp in nanosecond of the last message sent downstream. */
afb0f12b 302 int64_t last_msg_ts_ns = 0;
f79c2d7a 303
4164020e 304 /* True if the iterator was interrupted. */
afb0f12b 305 bool was_interrupted = false;
14f28187
FD
306};
307
4164020e
SM
308enum lttng_live_iterator_status
309{
310 /** Iterator state has progressed. Continue iteration immediately. */
311 LTTNG_LIVE_ITERATOR_STATUS_CONTINUE = 3,
312 /** No message available for now. Try again later. */
313 LTTNG_LIVE_ITERATOR_STATUS_AGAIN = 2,
314 /** No more CTF_LTTNG_LIVEs to be delivered. */
315 LTTNG_LIVE_ITERATOR_STATUS_END = 1,
316 /** No error, okay. */
317 LTTNG_LIVE_ITERATOR_STATUS_OK = 0,
318 /** Invalid arguments. */
319 LTTNG_LIVE_ITERATOR_STATUS_INVAL = -1,
320 /** General error. */
321 LTTNG_LIVE_ITERATOR_STATUS_ERROR = -2,
322 /** Out of memory. */
323 LTTNG_LIVE_ITERATOR_STATUS_NOMEM = -3,
324 /** Unsupported iterator feature. */
325 LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED = -4,
14f28187
FD
326};
327
0f5c5d5c
SM
328inline const char *format_as(const lttng_live_iterator_status status) noexcept
329{
330 switch (status) {
331 case LTTNG_LIVE_ITERATOR_STATUS_CONTINUE:
332 return "LTTNG_LIVE_ITERATOR_STATUS_CONTINUE";
333
334 case LTTNG_LIVE_ITERATOR_STATUS_AGAIN:
335 return "LTTNG_LIVE_ITERATOR_STATUS_AGAIN";
336
337 case LTTNG_LIVE_ITERATOR_STATUS_END:
338 return "LTTNG_LIVE_ITERATOR_STATUS_END";
339
340 case LTTNG_LIVE_ITERATOR_STATUS_OK:
341 return "LTTNG_LIVE_ITERATOR_STATUS_OK";
342
343 case LTTNG_LIVE_ITERATOR_STATUS_INVAL:
344 return "LTTNG_LIVE_ITERATOR_STATUS_INVAL";
345
346 case LTTNG_LIVE_ITERATOR_STATUS_ERROR:
347 return "LTTNG_LIVE_ITERATOR_STATUS_ERROR";
348
349 case LTTNG_LIVE_ITERATOR_STATUS_NOMEM:
350 return "LTTNG_LIVE_ITERATOR_STATUS_NOMEM";
351
352 case LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED:
353 return "LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED";
354 }
355
356 bt_common_abort();
357}
358
4164020e
SM
359bt_component_class_initialize_method_status
360lttng_live_component_init(bt_self_component_source *self_comp,
361 bt_self_component_source_configuration *config, const bt_value *params,
362 void *init_method_data);
14f28187 363
4164020e
SM
364bt_component_class_query_method_status lttng_live_query(bt_self_component_class_source *comp_class,
365 bt_private_query_executor *priv_query_exec,
366 const char *object, const bt_value *params,
367 void *method_data, const bt_value **result);
14f28187
FD
368
369void lttng_live_component_finalize(bt_self_component_source *component);
370
4164020e
SM
371bt_message_iterator_class_next_method_status
372lttng_live_msg_iter_next(bt_self_message_iterator *iterator, bt_message_array_const msgs,
373 uint64_t capacity, uint64_t *count);
14f28187 374
4164020e
SM
375bt_message_iterator_class_initialize_method_status
376lttng_live_msg_iter_init(bt_self_message_iterator *self_msg_it,
377 bt_self_message_iterator_configuration *config,
378 bt_self_component_port_output *self_port);
14f28187
FD
379
380void lttng_live_msg_iter_finalize(bt_self_message_iterator *it);
381
4164020e
SM
382enum lttng_live_viewer_status lttng_live_session_attach(struct lttng_live_session *session,
383 bt_self_message_iterator *self_msg_iter);
eee8e741 384
4164020e 385enum lttng_live_viewer_status lttng_live_session_detach(struct lttng_live_session *session);
f79c2d7a 386
4164020e
SM
387enum lttng_live_iterator_status
388lttng_live_session_get_new_streams(struct lttng_live_session *session,
389 bt_self_message_iterator *self_msg_iter);
14f28187 390
4164020e
SM
391struct lttng_live_trace *
392lttng_live_session_borrow_or_create_trace_by_id(struct lttng_live_session *session,
393 uint64_t trace_id);
36e94ad6 394
4164020e
SM
395int lttng_live_add_session(struct lttng_live_msg_iter *lttng_live_msg_iter, uint64_t session_id,
396 const char *hostname, const char *session_name);
14f28187 397
c28512ab
FD
398/*
399 * lttng_live_get_one_metadata_packet() asks the Relay Daemon for new metadata.
400 * If new metadata is received, the function writes it to the provided file
401 * handle and updates the reply_len output parameter. This function should be
402 * called in loop until _END status is received to ensure all metadata is
403 * written to the file.
404 */
4164020e 405enum lttng_live_get_one_metadata_status
15fcc425 406lttng_live_get_one_metadata_packet(struct lttng_live_trace *trace, std::vector<char>& buf);
c28512ab 407
4164020e
SM
408enum lttng_live_iterator_status
409lttng_live_get_next_index(struct lttng_live_msg_iter *lttng_live_msg_iter,
410 struct lttng_live_stream_iterator *stream, struct packet_index *index);
14f28187 411
4164020e
SM
412enum ctf_msg_iter_medium_status
413lttng_live_get_stream_bytes(struct lttng_live_msg_iter *lttng_live_msg_iter,
414 struct lttng_live_stream_iterator *stream, uint8_t *buf,
415 uint64_t offset, uint64_t req_len, uint64_t *recv_len);
14f28187 416
9b4f9b42 417bool lttng_live_graph_is_canceled(struct lttng_live_msg_iter *msg_iter);
14f28187 418
4164020e
SM
419void lttng_live_stream_iterator_set_state(struct lttng_live_stream_iterator *stream_iter,
420 enum lttng_live_stream_state new_state);
34533ae0 421
14f28187 422#endif /* BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_H */
This page took 0.102927 seconds and 4 git commands to generate.