Move event-expr-to-bytecode to event-expr
[lttng-tools.git] / src / common / mi-lttng.h
CommitLineData
c7e35b03 1/*
ab5be9fa
MJ
2 * Copyright (C) 2014 Jonathan Rajotte <jonathan.r.julien@gmail.com>
3 * Copyright (C) 2014 Olivier Cotte <olivier.cotte@polymtl.ca>
4 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
c7e35b03 5 *
ab5be9fa 6 * SPDX-License-Identifier: GPL-2.0-only
c7e35b03 7 *
c7e35b03
JR
8 */
9
10#ifndef _MI_LTTNG_H
11#define _MI_LTTNG_H
12
13#include <stdint.h>
14
15#include <common/error.h>
16#include <common/macros.h>
f40ef1d5 17#include <common/config/session-config.h>
c7e35b03
JR
18#include <lttng/lttng.h>
19
50534d6f
JRJ
20/* Don't want to reference snapshot-internal.h here */
21struct lttng_snapshot_output;
22
c7e35b03
JR
23/* Instance of a machine interface writer. */
24struct mi_writer {
25 struct config_writer *writer;
26 enum lttng_mi_output_type type;
27};
28
29/*
30 * Version information for the machine interface.
31 */
32struct mi_lttng_version {
36d2e35d 33 char version[LTTNG_NAME_MAX]; /* Version number of package */
c7e35b03
JR
34 uint32_t version_major; /* LTTng-Tools major version number */
35 uint32_t version_minor; /* LTTng-Tools minor version number */
36 uint32_t version_patchlevel; /* LTTng-Tools patchlevel version number */
36d2e35d
MJ
37 char version_commit[LTTNG_NAME_MAX]; /* Commit hash of the current version */
38 char version_name[LTTNG_NAME_MAX];
39 char package_url[LTTNG_NAME_MAX]; /* Define to the home page for this package. */
c7e35b03
JR
40};
41
42/* Strings related to command */
4965f956
JG
43extern const char * const mi_lttng_element_command;
44extern const char * const mi_lttng_element_command_action;
45extern const char * const mi_lttng_element_command_add_context;
4965f956
JG
46extern const char * const mi_lttng_element_command_create;
47extern const char * const mi_lttng_element_command_destroy;
48extern const char * const mi_lttng_element_command_disable_channel;
49extern const char * const mi_lttng_element_command_disable_event;
50extern const char * const mi_lttng_element_command_enable_channels;
51extern const char * const mi_lttng_element_command_enable_event;
52extern const char * const mi_lttng_element_command_list;
53extern const char * const mi_lttng_element_command_load;
54897b57
JD
54extern const char * const mi_lttng_element_command_metadata;
55extern const char * const mi_lttng_element_command_metadata_action;
eded6438
JD
56extern const char * const mi_lttng_element_command_regenerate;
57extern const char * const mi_lttng_element_command_regenerate_action;
4965f956
JG
58extern const char * const mi_lttng_element_command_name;
59extern const char * const mi_lttng_element_command_output;
60extern const char * const mi_lttng_element_command_save;
61extern const char * const mi_lttng_element_command_set_session;
62extern const char * const mi_lttng_element_command_snapshot;
63extern const char * const mi_lttng_element_command_snapshot_add;
64extern const char * const mi_lttng_element_command_snapshot_del;
65extern const char * const mi_lttng_element_command_snapshot_list;
66extern const char * const mi_lttng_element_command_snapshot_record;
67extern const char * const mi_lttng_element_command_start;
68extern const char * const mi_lttng_element_command_stop;
69extern const char * const mi_lttng_element_command_success;
70extern const char * const mi_lttng_element_command_track;
71extern const char * const mi_lttng_element_command_untrack;
72extern const char * const mi_lttng_element_command_version;
d68c9a04 73extern const char * const mi_lttng_element_command_rotate;
259c2674
JD
74extern const char * const mi_lttng_element_command_enable_rotation;
75extern const char * const mi_lttng_element_command_disable_rotation;
511ed4e2 76extern const char * const mi_lttng_element_command_clear;
c7e35b03 77
1734c658 78/* Strings related to version command */
4965f956
JG
79extern const char * const mi_lttng_element_version;
80extern const char * const mi_lttng_element_version_commit;
81extern const char * const mi_lttng_element_version_description;
82extern const char * const mi_lttng_element_version_license;
83extern const char * const mi_lttng_element_version_major;
84extern const char * const mi_lttng_element_version_minor;
85extern const char * const mi_lttng_element_version_patch_level;
86extern const char * const mi_lttng_element_version_str;
87extern const char * const mi_lttng_element_version_web;
c7e35b03 88
5e18ec73 89/* String related to a lttng_event_field */
4965f956
JG
90extern const char * const mi_lttng_element_event_field;
91extern const char * const mi_lttng_element_event_fields;
5e18ec73 92
89b72577 93/* String related to lttng_event_perf_counter_ctx */
4965f956 94extern const char * const mi_lttng_element_perf_counter_context;
89b72577 95
5e18ec73 96/* Strings related to pid */
4965f956 97extern const char * const mi_lttng_element_pid_id;
5e18ec73 98
1734c658 99/* Strings related to save command */
4965f956 100extern const char * const mi_lttng_element_save;
1734c658
JRJ
101
102/* Strings related to load command */
4965f956 103extern const char * const mi_lttng_element_load;
44cdb3a2
MJ
104LTTNG_HIDDEN extern const char * const mi_lttng_element_load_overrides;
105LTTNG_HIDDEN extern const char * const mi_lttng_element_load_override_url;
1734c658 106
5e18ec73 107/* General element of mi_lttng */
4965f956
JG
108extern const char * const mi_lttng_element_empty;
109extern const char * const mi_lttng_element_id;
110extern const char * const mi_lttng_element_nowrite;
111extern const char * const mi_lttng_element_success;
112extern const char * const mi_lttng_element_type_enum;
113extern const char * const mi_lttng_element_type_float;
114extern const char * const mi_lttng_element_type_integer;
115extern const char * const mi_lttng_element_type_other;
116extern const char * const mi_lttng_element_type_string;
5e18ec73
JR
117
118/* String related to loglevel */
4965f956
JG
119extern const char * const mi_lttng_loglevel_str_alert;
120extern const char * const mi_lttng_loglevel_str_crit;
121extern const char * const mi_lttng_loglevel_str_debug;
122extern const char * const mi_lttng_loglevel_str_debug_function;
123extern const char * const mi_lttng_loglevel_str_debug_line;
124extern const char * const mi_lttng_loglevel_str_debug_module;
125extern const char * const mi_lttng_loglevel_str_debug_process;
126extern const char * const mi_lttng_loglevel_str_debug_program;
127extern const char * const mi_lttng_loglevel_str_debug_system;
128extern const char * const mi_lttng_loglevel_str_debug_unit;
129extern const char * const mi_lttng_loglevel_str_emerg;
130extern const char * const mi_lttng_loglevel_str_err;
131extern const char * const mi_lttng_loglevel_str_info;
132extern const char * const mi_lttng_loglevel_str_notice;
133extern const char * const mi_lttng_loglevel_str_unknown;
134extern const char * const mi_lttng_loglevel_str_warning;
5e18ec73 135
136f2f81 136/* String related to loglevel JUL */
4965f956
JG
137extern const char * const mi_lttng_loglevel_str_jul_all;
138extern const char * const mi_lttng_loglevel_str_jul_config;
139extern const char * const mi_lttng_loglevel_str_jul_fine;
140extern const char * const mi_lttng_loglevel_str_jul_finer;
141extern const char * const mi_lttng_loglevel_str_jul_finest;
142extern const char * const mi_lttng_loglevel_str_jul_info;
143extern const char * const mi_lttng_loglevel_str_jul_off;
144extern const char * const mi_lttng_loglevel_str_jul_severe;
145extern const char * const mi_lttng_loglevel_str_jul_warning;
136f2f81 146
970d848b 147/* String related to loglevel Log4j */
4965f956
JG
148extern const char * const mi_lttng_loglevel_str_log4j_off;
149extern const char * const mi_lttng_loglevel_str_log4j_fatal;
150extern const char * const mi_lttng_loglevel_str_log4j_error;
151extern const char * const mi_lttng_loglevel_str_log4j_warn;
152extern const char * const mi_lttng_loglevel_str_log4j_info;
153extern const char * const mi_lttng_loglevel_str_log4j_debug;
154extern const char * const mi_lttng_loglevel_str_log4j_trace;
155extern const char * const mi_lttng_loglevel_str_log4j_all;
970d848b 156
0e115563 157/* String related to loglevel Python */
4965f956
JG
158extern const char * const mi_lttng_loglevel_str_python_critical;
159extern const char * const mi_lttng_loglevel_str_python_error;
160extern const char * const mi_lttng_loglevel_str_python_warning;
161extern const char * const mi_lttng_loglevel_str_python_info;
162extern const char * const mi_lttng_loglevel_str_python_debug;
163extern const char * const mi_lttng_loglevel_str_python_notset;
0e115563 164
1734c658 165/* String related to loglevel type */
4965f956
JG
166extern const char * const mi_lttng_loglevel_type_all;
167extern const char * const mi_lttng_loglevel_type_range;
168extern const char * const mi_lttng_loglevel_type_single;
169extern const char * const mi_lttng_loglevel_type_unknown;
5e18ec73 170
136f2f81 171/* String related to a lttng_snapshot */
4965f956
JG
172extern const char * const mi_lttng_element_snapshot_ctrl_url;
173extern const char * const mi_lttng_element_snapshot_data_url;
174extern const char * const mi_lttng_element_snapshot_max_size;
175extern const char * const mi_lttng_element_snapshot_n_ptr;
176extern const char * const mi_lttng_element_snapshot_session_name;
177extern const char * const mi_lttng_element_snapshots;
50534d6f 178
a23cb78a 179/* String related to track/untrack command */
44cdb3a2 180extern const char * const mi_lttng_element_track_untrack_all_wildcard;
a23cb78a 181
44cdb3a2 182LTTNG_HIDDEN extern const char * const mi_lttng_element_session_name;
d68c9a04
JD
183
184/* String related to rotate command */
44cdb3a2
MJ
185LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation;
186LTTNG_HIDDEN extern const char * const mi_lttng_element_rotate_status;
187LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule;
188LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedules;
189LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_periodic;
190LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_periodic_time_us;
191LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_size_threshold;
192LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_size_threshold_bytes;
193LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_result;
194LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_schedule_results;
195LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_state;
196LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location;
197LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_local;
198LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_local_absolute_path;
199LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay;
200LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay_host;
201LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay_control_port;
202LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay_data_port;
203LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay_protocol;
204LTTNG_HIDDEN extern const char * const mi_lttng_element_rotation_location_relay_relative_path;
91c4d516
JG
205
206/* String related to enum lttng_rotation_state */
44cdb3a2
MJ
207LTTNG_HIDDEN extern const char * const mi_lttng_rotation_state_str_ongoing;
208LTTNG_HIDDEN extern const char * const mi_lttng_rotation_state_str_completed;
209LTTNG_HIDDEN extern const char * const mi_lttng_rotation_state_str_expired;
210LTTNG_HIDDEN extern const char * const mi_lttng_rotation_state_str_error;
91c4d516
JG
211
212/* String related to enum lttng_trace_archive_location_relay_protocol_type */
44cdb3a2 213LTTNG_HIDDEN extern const char * const mi_lttng_rotation_location_relay_protocol_str_tcp;
d68c9a04 214
59deec0c
JR
215/* String related to add-context command */
216LTTNG_HIDDEN extern const char * const mi_lttng_element_context_symbol;
217
5e18ec73 218/* Utility string function */
970d848b 219const char *mi_lttng_loglevel_string(int value, enum lttng_domain_type domain);
5e18ec73
JR
220const char *mi_lttng_logleveltype_string(enum lttng_loglevel_type value);
221const char *mi_lttng_eventfieldtype_string(enum lttng_event_field_type value);
222const char *mi_lttng_domaintype_string(enum lttng_domain_type value);
223const char *mi_lttng_buffertype_string(enum lttng_buffer_type value);
91c4d516
JG
224const char *mi_lttng_rotation_state_string(enum lttng_rotation_state value);
225const char *mi_lttng_trace_archive_location_relay_protocol_type_string(
226 enum lttng_trace_archive_location_relay_protocol_type value);
5e18ec73 227
c7e35b03
JR
228/*
229 * Create an instance of a machine interface writer.
230 *
231 * fd_output File to which the XML content must be written. The file will be
232 * closed once the mi_writer has been destroyed.
233 *
234 * Returns an instance of a machine interface writer on success, NULL on
235 * error.
236 */
237struct mi_writer *mi_lttng_writer_create(int fd_output, int mi_output_type);
238
239/*
240 * Destroy an instance of a machine interface writer.
241 *
242 * writer An instance of a machine interface writer.
243 *
244 * Returns zero if the XML document could be closed cleanly. Negative values
245 * indicate an error.
246 */
247int mi_lttng_writer_destroy(struct mi_writer *writer);
248
249/*
250 * Open a command tag and add it's name node.
251 *
252 * writer An instance of a machine interface writer.
c7e35b03
JR
253 * command The command name.
254 *
255 * Returns zero if the XML document could be closed cleanly.
256 * Negative values indicate an error.
257 */
258int mi_lttng_writer_command_open(struct mi_writer *writer, const char *command);
259
260/*
261 * Close a command tag.
262 *
263 * writer An instance of a machine interface writer.
264 *
265 * Returns zero if the XML document could be closed cleanly.
266 * Negative values indicate an error.
267 */
268int mi_lttng_writer_command_close(struct mi_writer *writer);
269
270/*
271 * Open an element tag.
272 *
273 * writer An instance of a machine interface writer.
c7e35b03
JR
274 * element_name Element tag name.
275 *
276 * Returns zero if the XML document could be closed cleanly.
277 * Negative values indicate an error.
278 */
279int mi_lttng_writer_open_element(struct mi_writer *writer,
280 const char *element_name);
281
282/*
283 * Close the current element tag.
284 *
285 * writer An instance of a machine interface writer.
286 *
287 * Returns zero if the XML document could be closed cleanly.
288 * Negative values indicate an error.
289 */
290int mi_lttng_writer_close_element(struct mi_writer *writer);
291
292/*
5e18ec73 293 * Close multiple element.
c7e35b03
JR
294 *
295 * writer An instance of a machine interface writer.
5e18ec73 296 * nb_element Number of elements.
c7e35b03 297 *
5e18ec73
JR
298 * Returns zero if the XML document could be closed cleanly.
299 * Negative values indicate an error.
300 */
301int mi_lttng_close_multi_element(struct mi_writer *writer,
302 unsigned int nb_element);
303
304/*
305 * Write an element of type unsigned int.
c7e35b03 306 *
5e18ec73
JR
307 * writer An instance of a machine interface writer.
308 * element_name Element name.
c7e35b03
JR
309 * value Unsigned int value of the element
310 *
311 * Returns zero if the element's value could be written.
312 * Negative values indicate an error.
313 */
314int mi_lttng_writer_write_element_unsigned_int(struct mi_writer *writer,
315 const char *element_name, uint64_t value);
316
317/*
318 * Write an element of type signed int.
319 *
320 * writer An instance of a machine interface writer.
c7e35b03 321 * element_name Element name.
5e18ec73 322 * value Signed int value of the element.
c7e35b03
JR
323 *
324 * Returns zero if the element's value could be written.
325 * Negative values indicate an error.
326 */
327int mi_lttng_writer_write_element_signed_int(struct mi_writer *writer,
328 const char *element_name, int64_t value);
329
330/*
331 * Write an element of type boolean.
332 *
333 * writer An instance of a machine interface writer.
c7e35b03 334 * element_name Element name.
5e18ec73 335 * value Boolean value of the element.
c7e35b03
JR
336 *
337 * Returns zero if the element's value could be written.
338 * Negative values indicate an error.
339 */
340int mi_lttng_writer_write_element_bool(struct mi_writer *writer,
341 const char *element_name, int value);
342
343/*
344 * Write an element of type string.
345 *
346 * writer An instance of a machine interface writer.
c7e35b03 347 * element_name Element name.
5e18ec73 348 * value String value of the element.
c7e35b03
JR
349 *
350 * Returns zero if the element's value could be written.
351 * Negative values indicate an error.
352 */
353int mi_lttng_writer_write_element_string(struct mi_writer *writer,
354 const char *element_name, const char *value);
355
2b166400
JR
356/*
357 * Write an element of type double.
358 *
359 * writer An instance of a machine interface writer.
360 * element_name Element name.
361 * value Double value of the element.
362 *
363 * Returns zero if the element's value could be written.
364 * Negative values indicate an error.
365 */
366int mi_lttng_writer_write_element_double(struct mi_writer *writer,
367 const char *element_name,
368 double value);
369
c7e35b03
JR
370/*
371 * Machine interface of struct version.
372 *
373 * writer An instance of a machine interface writer.
c7e35b03 374 * version Version struct.
c7e35b03 375 * lttng_description String value of the version description.
c7e35b03
JR
376 * lttng_license String value of the version license.
377 *
378 * Returns zero if the element's value could be written.
379 * Negative values indicate an error.
380 */
381int mi_lttng_version(struct mi_writer *writer, struct mi_lttng_version *version,
382 const char *lttng_description, const char *lttng_license);
383
384/*
5e18ec73 385 * Machine interface: open a sessions element.
c7e35b03 386 *
5e18ec73 387 * writer An instance of a machine interface writer.
c7e35b03 388 *
5e18ec73
JR
389 * Returns zero if the element's value could be written.
390 * Negative values indicate an error.
391 */
392int mi_lttng_sessions_open(struct mi_writer *writer);
393
394/*
395 * Machine interface of struct session.
c7e35b03 396 *
5e18ec73
JR
397 * writer An instance of a machine interface writer.
398 * session An instance of a session.
399 * is_open Defines whether or not the session element shall be closed.
400 * This should be used carefully and the client
401 * must close the session element.
136f2f81 402 * Use case: nested additional information on a session
c7e35b03 403 * ex: domain,channel event.
c7e35b03
JR
404 *
405 * Returns zero if the element's value could be written.
406 * Negative values indicate an error.
407 */
408int mi_lttng_session(struct mi_writer *writer,
5e18ec73
JR
409 struct lttng_session *session, int is_open);
410
411/*
412 * Machine interface: open a domains element.
413 *
414 * writer An instance of a machine interface writer.
415 *
416 * Returns zero if the element's value could be written.
417 * Negative values indicate an error.
418 */
419int mi_lttng_domains_open(struct mi_writer *writer);
420
421/*
422 * Machine interface of struct domain.
423 *
424 * writer An instance of a machine interface writer.
425 * domain An instance of a domain.
426 *
427 * is_open Defines whether or not the session element shall be closed.
428 * This should be used carefully and the client
429 * must close the domain element.
430 * Use case: nested addition information on a domain
431 * ex: channel event.
432 *
433 * Returns zero if the element's value could be written.
434 * Negative values indicate an error.
435 */
436int mi_lttng_domain(struct mi_writer *writer,
437 struct lttng_domain *domain, int is_open);
438
439/*
440 * Machine interface: open a channels element.
441 *
442 * writer An instance of a machine interface writer.
443 *
444 * Returns zero if the element's value could be written.
445 * Negative values indicate an error.
446 */
447int mi_lttng_channels_open(struct mi_writer *writer);
448
449/*
450 * Machine interface of struct channel.
451 *
452 * writer An instance of a machine interface writer.
453 * channel An instance of a channel.
454 *
455 * is_open Defines whether or not the session element shall be closed.
456 * This should be used carefully and the client
457 * must close the channel element.
458 * Use case: nested addition information on a channel.
459 * ex: channel event.
460 *
461 * Returns zero if the element's value could be written.
462 * Negative values indicate an error.
463 */
464int mi_lttng_channel(struct mi_writer *writer,
465 struct lttng_channel *channel, int is_open);
466
467/*
468 * Machine interface of struct channel_attr.
469 *
470 * writer An instance of a machine interface writer.
471 * attr An instance of a channel_attr struct.
472 *
473 * Returns zero if the element's value could be written.
474 * Negative values indicate an error.
475 */
476int mi_lttng_channel_attr(struct mi_writer *writer,
477 struct lttng_channel_attr *attr);
478
479/*
480* Machine interface for event common attributes.
481*
482* writer An instance of a mi writer.
483* event single trace event.
484*
485* The common attribute are:
486* - mi event element
487* - event name
488* - event type
489* - enabled tag
490* - event filter
491*
492* Returns zero if the element's value could be written.
493* Negative values indicate an error.
494*/
495int mi_lttng_event_common_attributes(struct mi_writer *writer,
496 struct lttng_event *event);
497
498/*
499 * Machine interface for kernel tracepoint event with a loglevel.
500 *
501 * writer An instance of a mi writer.
502 * event single trace event.
970d848b 503 * domain Event's domain
5e18ec73
JR
504 *
505 * Returns zero if the element's value could be written.
506 * Negative values indicate an error.
507 */
508int mi_lttng_event_tracepoint_loglevel(struct mi_writer *writer,
970d848b 509 struct lttng_event *event, enum lttng_domain_type domain);
5e18ec73
JR
510
511/*
512 * Machine interface for kernel tracepoint event with no loglevel.
513 *
514 * writer An instance of a mi writer.
515 * event single trace event.
516 *
517 * Returns zero if the element's value could be written.
518 * Negative values indicate an error.
519 */
520int mi_lttng_event_tracepoint_no_loglevel(struct mi_writer *writer,
521 struct lttng_event *event);
522
523/*
524 * Machine interface for kernel function and probe event.
525 *
526 * writer An instance of a mi writer.
527 * event single trace event.
528 *
529 * Returns zero if the element's value could be written.
530 * Negative values indicate an error.
531 */
532int mi_lttng_event_function_probe(struct mi_writer *writer,
533 struct lttng_event *event);
534
535/*
536 * Machine interface for kernel function entry event.
537 *
538 * writer An instance of a mi writer.
539 * event single trace event.
540 *
541 * Returns zero if the element's value could be written.
542 * Negative values indicate an error.
543 */
544int mi_lttng_event_function_entry(struct mi_writer *writer,
545 struct lttng_event *event);
546
547/*
548 * Machine interface: open an events element.
549 *
550 * writer An instance of a machine interface writer.
551 *
552 * Returns zero if the element's value could be written.
553 * Negative values indicate an error.
554 */
555int mi_lttng_events_open(struct mi_writer *writer);
556
557/*
558 * Machine interface for printing an event.
559 * The trace event type currently supported are:
560 * TRACEPOINT,
561 * PROBE,
562 * FUNCTION,
563 * FUNCTION_ENTRY,
564 * SYSCALL
565 *
566 * writer An instance of a mi writer.
567 * event single trace event.
568 * is_open Defines whether or not the session element shall be closed.
569 * This should be used carefully and the client
570 * must close the event element.
571 * Use case: nested additional information
970d848b 572 * domain Event's domain
5e18ec73
JR
573 *
574 * Returns zero if the element's value could be written.
575 * Negative values indicate an error.
576 */
577int mi_lttng_event(struct mi_writer *writer, struct lttng_event *event,
970d848b 578 int is_open, enum lttng_domain_type domain);
5e18ec73
JR
579
580/*
581 * Machine interface for struct lttng_event_field.
582 *
583 * writer An instance of a mi writer.
584 * field An event_field instance.
585 *
586 * Returns zero if the element's value could be written.
587 * Negative values indicate an error.
588 */
589int mi_lttng_event_field(struct mi_writer *writer,
590 struct lttng_event_field *field);
591
592/*
593 * Machine interface: open a event_fields element.
594 *
595 * writer An instance of a machine interface writer.
596 *
e4d484a5 597 * Returns zero if the element have be written.
5e18ec73
JR
598 * Negative values indicate an error.
599 */
600int mi_lttng_event_fields_open(struct mi_writer *writer);
601
ebbf5ab7
JR
602/*
603 * Machine interface: open a trackers element.
604 *
605 * writer An instance of a machine interface writer.
606 *
607 * Returns zero if the element's value could be written.
608 * Negative values indicate an error.
609 */
610int mi_lttng_trackers_open(struct mi_writer *writer);
611
612/*
159b042f 613 * Machine interface: open a process attribute tracker element.
ebbf5ab7
JR
614 *
615 * writer An instance of a machine interface writer.
616 *
617 * Returns zero if the element's value could be written.
618 * Negative values indicate an error.
619 *
620 * Note: A targets element is also opened for each tracker definition
621 */
159b042f
JG
622int mi_lttng_process_attribute_tracker_open(
623 struct mi_writer *writer, enum lttng_process_attr process_attr);
ebbf5ab7 624
5e18ec73
JR
625/*
626 * Machine interface: open a PIDs element.
627 *
628 * writer An instance of a machine interface writer.
629 *
630 * Returns zero if the element's value could be written.
631 * Negative values indicate an error.
632 */
633int mi_lttng_pids_open(struct mi_writer *writer);
634
635/*
ebbf5ab7
JR
636 * Machine interface: open a processes element.
637 *
638 * writer An instance of a machine interface writer.
639 *
640 * Returns zero if the element's value could be written.
641 * Negative values indicate an error.
642 */
643int mi_lttng_processes_open(struct mi_writer *writer);
644
645/*
646 * Machine interface of a Process.
5e18ec73
JR
647 *
648 * writer An instance of a machine interface writer.
649 * pid A PID.
650 *
651 * is_open Defines whether or not the session element shall be closed.
652 * This should be used carefully and the client
653 * must close the pid element.
654 * Use case: nested addition information on a domain
655 * ex: channel event.
656 *
657 * Returns zero if the element's value could be written.
658 * Negative values indicate an error.
659 */
ebbf5ab7 660int mi_lttng_process(struct mi_writer *writer, pid_t pid , const char *name,
5e18ec73 661 int is_open);
bf239d4c
JR
662
663/*
664 * TODO: move pid of lttng list -u to process semantic on mi api bump
665 * Machine interface of a Process.
666 *
667 * writer An instance of a machine interface writer.
668 * pid A PID.
669 *
670 * is_open Defines whether or not the session element shall be closed.
671 * This should be used carefully and the client
672 * must close the pid element.
673 * Use case: nested addition information on a domain
674 * ex: channel event.
675 *
676 * Returns zero if the element's value could be written.
677 * Negative values indicate an error.
678 */
679int mi_lttng_pid(struct mi_writer *writer, pid_t pid , const char *name,
680 int is_open);
159b042f 681
ebbf5ab7 682/*
159b042f 683 * Machine interface: open a process attribute values element.
ebbf5ab7
JR
684 *
685 * writer An instance of a machine interface writer.
686 *
687 * Returns zero if the element's value could be written.
688 * Negative values indicate an error.
689 */
159b042f 690int mi_lttng_process_attr_values_open(struct mi_writer *writer);
ebbf5ab7
JR
691
692/*
159b042f 693 * Machine interface for track/untrack of all process attribute values.
ebbf5ab7
JR
694 *
695 * writer An instance of a machine interface writer.
696 *
697 * Returns zero if the element's value could be written.
698 * Negative values indicate an error.
699 */
159b042f
JG
700int mi_lttng_all_process_attribute_value(struct mi_writer *writer,
701 enum lttng_process_attr process_attr,
702 bool is_open);
703
704/*
705 * Machine interface for track/untrack of an integral process attribute value.
706 *
707 * writer An instance of a machine interface writer.
708 *
709 * Returns zero if the element's value could be written.
710 * Negative values indicate an error.
711 */
712int mi_lttng_integral_process_attribute_value(struct mi_writer *writer,
713 enum lttng_process_attr process_attr,
714 int64_t value,
715 bool is_open);
716
717/*
718 * Machine interface for track/untrack of a string process attribute value.
719 *
720 * writer An instance of a machine interface writer.
721 *
722 * Returns zero if the element's value could be written.
723 * Negative values indicate an error.
724 */
725int mi_lttng_string_process_attribute_value(struct mi_writer *writer,
726 enum lttng_process_attr process_attr,
727 const char *value,
728 bool is_open);
c7e35b03 729
89b72577
JRJ
730/*
731 * Machine interface of a context.
732 *
733 * writer An instance of a machine interface writer
734 *
735 * context An instance of a lttng_event_context
736 *
737 * is_open Define if we close the context element
738 * This should be used carefully and the client
739 * need to close the context element.
89b72577
JRJ
740 * Returns zero if the element's value could be written.
741 * Negative values indicate an error.
742 */
743int mi_lttng_context(struct mi_writer *writer,
744 struct lttng_event_context *context, int is_open);
745
746/*
747 * Machine interface of a perf_counter_context.
748 *
749 * writer An instance of a machine interface writer
750 *
751 * contest An instance of a lttng_event_perf_counter_ctx
752 *
753 * Returns zero if the element's value could be written.
754 * Negative values indicate an error.
755 */
756int mi_lttng_perf_counter_context(struct mi_writer *writer,
757 struct lttng_event_perf_counter_ctx *perf_context);
758
50534d6f
JRJ
759/*
760 * Machine interface of the snapshot list_output.
761 * It specifies the session for which we are listing snapshots,
762 * and it opens a snapshots element to list a sequence
763 * of snapshots.
764 *
765 * writer An instance of a machine interface writer.
766 *
767 * session_name: Snapshot output for session "session_name".
768 *
769 * Note: The client has to close the session and the snapshots elements after
770 * having listed every lttng_snapshot_output.
771 *
772 * Returns zero if the element's value could be written.
773 * Negative values indicate an error.
774 */
775int mi_lttng_snapshot_output_session_name(struct mi_writer *writer,
776 const char *session_name);
777
778/*
779 * Machine interface of the snapshot output.
780 * The machine interface serializes the following attributes:
781 * - id: ID of the snapshot output.
782 * - name: Name of the output.
783 * - data_url : Destination of the output.
784 * - ctrl_url: Destination of the output.
785 * - max_size: total size of all stream combined.
786 *
787 * writer An instance of a machine interface writer.
788 *
789 * output: A list of snapshot_output.
790 *
791 * Returns zero if the element's value could be written.
792 * Negative values indicate an error.
793 */
794int mi_lttng_snapshot_list_output(struct mi_writer *writer,
795 struct lttng_snapshot_output *output);
796
797/*
798 * Machine interface of the output of the command snapshot del output
799 * when deleting a snapshot either by id or by name.
800 * If the snapshot was found and successfully deleted using its id,
801 * it return the id of the snapshot and the current session name on which it
802 * was attached.
803 *
804 * Otherwise, it do the same process with the name of the snapshot, if the
805 * snapshot output id is undefined.
806 *
807 * writer An instance of a machine interface writer.
808 *
809 * id: ID of the snapshot output.
810 *
811 * name: Name of the snapshot.
812 *
813 * current_session_name: Session to which the snapshot belongs.
814 *
815 * Returns zero if the element's value could be written.
816 * Negative values indicate an error.
817 */
818int mi_lttng_snapshot_del_output(struct mi_writer *writer, int id,
819 const char *name, const char *current_session_name);
820
821/*
822 * Machine interface of the output of the command snapshot add output
823 * when adding a snapshot from a user URL.
824 *
825 * If the snapshot was successfully added, the machine interface lists
826 * these information:
827 * - id: ID of the newly add snapshot output.
828 * - current_session_name: Name of the session to which the output was added.
829 * - ctrl_url: Destination of the output.
830 * - max_size: total size of all stream combined.
831 *
832 * writer An instance of a machine interface writer.
833 *
834 * current_session_name: Session to which the snapshot belongs.
835 *
836 * n_ptr:
837 *
838 * output: iterator over a lttng_snapshot_output_list which contain
839 * the snapshot output informations.
840 *
841 * Returns zero if the element's value could be written.
842 * Negative values indicate an error.
843 */
844int mi_lttng_snapshot_add_output(struct mi_writer *writer,
845 const char *current_session_name, const char *n_ptr,
846 struct lttng_snapshot_output *output);
847
848/*
849 * Machine interface of the output of the command snapshot
850 * record from a URL (if given).
851 *
852 * If the snapshot is successfully recorded from a url, the machine interface
853 * output the following information:
854 * - url: Destination of the output stored in the snapshot.
855 *
856 * Otherwise, the machine interface output the data and ctrl url received
857 * from the command-line.
858 *
859 * writer An instance of a machine interface writer.
860 *
861 * current_session_name: Snapshot record for session "current_session_name".
862 *
863 * ctrl_url, data_url: Destination of the output receive from the command-line.
864 *
865 * Returns zero if the element's value could be written.
866 * Negative values indicate an error.
867 */
868int mi_lttng_snapshot_record(struct mi_writer *writer,
869 const char *current_session_name, const char *url,
870 const char *cmdline_ctrl_url, const char *cmdline_data_url);
871
66ea93b1
JG
872/*
873 * Machine interface representation of a session rotation schedule.
874 *
875 * The machine interface serializes the provided schedule as one of the choices
876 * from 'rotation_schedule_type'.
877 *
878 * writer: An instance of a machine interface writer.
879 *
880 * schedule: An lttng rotation schedule descriptor object.
881 *
882 * Returns zero if the element's value could be written.
883 * Negative values indicate an error.
884 */
885int mi_lttng_rotation_schedule(struct mi_writer *writer,
886 const struct lttng_rotation_schedule *schedule);
887
888/*
889 * Machine interface of a session rotation schedule result.
890 * This is an element that is part of the output of the enable-rotation and
891 * disable-rotation commands.
892 *
893 * The machine interface provides the following information:
894 * - schedule: the session rotation schedule descriptor.
895 * - success: whether the sub-command succeeded.
896 *
897 * writer: An instance of a machine interface writer.
898 *
66ea93b1
JG
899 * schedule: An lttng rotation schedule descriptor object.
900 *
901 * success: Whether the sub-command suceeded.
902 *
903 * Returns zero if the element's value could be written.
904 * Negative values indicate an error.
905 */
906int mi_lttng_rotation_schedule_result(struct mi_writer *writer,
907 const struct lttng_rotation_schedule *schedule,
908 bool success);
909
91c4d516
JG
910/*
911 * Machine interface of a session rotation result.
912 * This is an element that is part of the output of the rotate command.
913 *
914 * The machine interface provides the following information:
915 * - session_name: the session to be rotated.
916 * - state: the session rotation state.
917 * - location: the location of the completed chunk archive.
918 *
919 * writer: An instance of a machine interface writer.
920 *
921 * session_name: The session to which the rotate command applies.
922 *
923 * location: A location descriptor object.
924 *
925 * success: Whether the sub-command suceeded.
926 *
927 * Returns zero if the element's value could be written.
928 * Negative values indicate an error.
929 */
930int mi_lttng_rotate(struct mi_writer *writer,
931 const char *session_name,
932 enum lttng_rotation_state rotation_state,
933 const struct lttng_trace_archive_location *location);
934
c7e35b03 935#endif /* _MI_LTTNG_H */
This page took 0.08619 seconds and 4 git commands to generate.