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