Mi destroy command: support and validation
[lttng-tools.git] / src / common / mi-lttng.h
CommitLineData
c7e35b03
JR
1/*
2 * Copyright (C) 2014 - Jonathan Rajotte <jonathan.r.julien@gmail.com>
3 * - Olivier Cotte <olivier.cotte@polymtl.ca>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License, version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#ifndef _MI_LTTNG_H
20#define _MI_LTTNG_H
21
22#include <stdint.h>
23
24#include <common/error.h>
25#include <common/macros.h>
26#include <common/config/config.h>
27#include <lttng/lttng.h>
28
29/* Instance of a machine interface writer. */
30struct mi_writer {
31 struct config_writer *writer;
32 enum lttng_mi_output_type type;
33};
34
35/*
36 * Version information for the machine interface.
37 */
38struct mi_lttng_version {
39 char version[NAME_MAX]; /* Version number of package */
40 uint32_t version_major; /* LTTng-Tools major version number */
41 uint32_t version_minor; /* LTTng-Tools minor version number */
42 uint32_t version_patchlevel; /* LTTng-Tools patchlevel version number */
314d5222 43 char version_commit[NAME_MAX]; /* Commit hash of the current version */
c7e35b03
JR
44 char version_name[NAME_MAX];
45 char package_url[NAME_MAX]; /* Define to the home page for this package. */
46};
47
48/* Strings related to command */
49const char * const mi_lttng_element_command;
37d03ff7 50const char * const mi_lttng_element_command_name;
c7e35b03
JR
51const char * const mi_lttng_element_command_version;
52const char * const mi_lttng_element_command_list;
1734c658
JRJ
53const char * const mi_lttng_element_command_save;
54const char * const mi_lttng_element_command_load;
e5b83100 55const char * const mi_lttng_element_command_stop;
1cfc0bc8 56const char * const mi_lttng_element_command_start;
37d03ff7 57const char * const mi_lttng_element_command_create;
65f25c66 58const char * const mi_lttng_element_command_destroy;
c7e35b03 59const char * const mi_lttng_element_command_output;
1734c658 60const char * const mi_lttng_element_command_success;
c7e35b03 61
1734c658 62/* Strings related to version command */
c7e35b03
JR
63const char * const mi_lttng_element_version;
64const char * const mi_lttng_element_version_str;
65const char * const mi_lttng_element_version_web;
66const char * const mi_lttng_element_version_major;
67const char * const mi_lttng_element_version_minor;
68const char * const mi_lttng_element_version_license;
314d5222 69const char * const mi_lttng_element_version_commit;
c7e35b03
JR
70const char * const mi_lttng_element_version_patch_level;
71const char * const mi_lttng_element_version_description;
72
5e18ec73
JR
73/* String related to a lttng_event_field */
74const char * const mi_lttng_element_event_field;
75const char * const mi_lttng_element_event_fields;
76
77/* Strings related to pid */
78const char * const mi_lttng_element_pids;
79const char * const mi_lttng_element_pid;
80const char * const mi_lttng_element_pid_id;
81
1734c658
JRJ
82/* Strings related to save command */
83const char * const mi_lttng_element_save;
84
85/* Strings related to load command */
86const char * const mi_lttng_element_load;
87
5e18ec73
JR
88/* General element of mi_lttng */
89const char * const mi_lttng_element_type_other;
90const char * const mi_lttng_element_type_integer;
91const char * const mi_lttng_element_type_enum;
92const char * const mi_lttng_element_type_float;
93const char * const mi_lttng_element_type_string;
94const char * const mi_lttng_element_nowrite;
95
96/* String related to loglevel */
97const char * const mi_lttng_loglevel_str_alert;
98const char * const mi_lttng_loglevel_str_crit;
99const char * const mi_lttng_loglevel_str_debug;
100const char * const mi_lttng_loglevel_str_debug_function;
101const char * const mi_lttng_loglevel_str_debug_line;
102const char * const mi_lttng_loglevel_str_debug_module;
103const char * const mi_lttng_loglevel_str_debug_process;
104const char * const mi_lttng_loglevel_str_debug_program;
105const char * const mi_lttng_loglevel_str_debug_system;
106const char * const mi_lttng_loglevel_str_debug_unit;
107const char * const mi_lttng_loglevel_str_emerg;
108const char * const mi_lttng_loglevel_str_err;
109const char * const mi_lttng_loglevel_str_info;
110const char * const mi_lttng_loglevel_str_notice;
111const char * const mi_lttng_loglevel_str_unknown;
112const char * const mi_lttng_loglevel_str_warning;
113
1734c658 114/* String related to loglevel type */
5e18ec73
JR
115const char * const mi_lttng_loglevel_type_all;
116const char * const mi_lttng_loglevel_type_range;
117const char * const mi_lttng_loglevel_type_single;
118const char * const mi_lttng_loglevel_type_unknown;
119
120/* Utility string function */
121const char *mi_lttng_loglevel_string(int value);
122const char *mi_lttng_logleveltype_string(enum lttng_loglevel_type value);
123const char *mi_lttng_eventfieldtype_string(enum lttng_event_field_type value);
124const char *mi_lttng_domaintype_string(enum lttng_domain_type value);
125const char *mi_lttng_buffertype_string(enum lttng_buffer_type value);
126
c7e35b03
JR
127/*
128 * Create an instance of a machine interface writer.
129 *
130 * fd_output File to which the XML content must be written. The file will be
131 * closed once the mi_writer has been destroyed.
132 *
133 * Returns an instance of a machine interface writer on success, NULL on
134 * error.
135 */
136struct mi_writer *mi_lttng_writer_create(int fd_output, int mi_output_type);
137
138/*
139 * Destroy an instance of a machine interface writer.
140 *
141 * writer An instance of a machine interface writer.
142 *
143 * Returns zero if the XML document could be closed cleanly. Negative values
144 * indicate an error.
145 */
146int mi_lttng_writer_destroy(struct mi_writer *writer);
147
148/*
149 * Open a command tag and add it's name node.
150 *
151 * writer An instance of a machine interface writer.
c7e35b03
JR
152 * command The command name.
153 *
154 * Returns zero if the XML document could be closed cleanly.
155 * Negative values indicate an error.
156 */
157int mi_lttng_writer_command_open(struct mi_writer *writer, const char *command);
158
159/*
160 * Close a command tag.
161 *
162 * writer An instance of a machine interface writer.
163 *
164 * Returns zero if the XML document could be closed cleanly.
165 * Negative values indicate an error.
166 */
167int mi_lttng_writer_command_close(struct mi_writer *writer);
168
169/*
170 * Open an element tag.
171 *
172 * writer An instance of a machine interface writer.
c7e35b03
JR
173 * element_name Element tag name.
174 *
175 * Returns zero if the XML document could be closed cleanly.
176 * Negative values indicate an error.
177 */
178int mi_lttng_writer_open_element(struct mi_writer *writer,
179 const char *element_name);
180
181/*
182 * Close the current element tag.
183 *
184 * writer An instance of a machine interface writer.
185 *
186 * Returns zero if the XML document could be closed cleanly.
187 * Negative values indicate an error.
188 */
189int mi_lttng_writer_close_element(struct mi_writer *writer);
190
191/*
5e18ec73 192 * Close multiple element.
c7e35b03
JR
193 *
194 * writer An instance of a machine interface writer.
5e18ec73 195 * nb_element Number of elements.
c7e35b03 196 *
5e18ec73
JR
197 * Returns zero if the XML document could be closed cleanly.
198 * Negative values indicate an error.
199 */
200int mi_lttng_close_multi_element(struct mi_writer *writer,
201 unsigned int nb_element);
202
203/*
204 * Write an element of type unsigned int.
c7e35b03 205 *
5e18ec73
JR
206 * writer An instance of a machine interface writer.
207 * element_name Element name.
c7e35b03
JR
208 * value Unsigned int value of the element
209 *
210 * Returns zero if the element's value could be written.
211 * Negative values indicate an error.
212 */
213int mi_lttng_writer_write_element_unsigned_int(struct mi_writer *writer,
214 const char *element_name, uint64_t value);
215
216/*
217 * Write an element of type signed int.
218 *
219 * writer An instance of a machine interface writer.
c7e35b03 220 * element_name Element name.
5e18ec73 221 * value Signed int value of the element.
c7e35b03
JR
222 *
223 * Returns zero if the element's value could be written.
224 * Negative values indicate an error.
225 */
226int mi_lttng_writer_write_element_signed_int(struct mi_writer *writer,
227 const char *element_name, int64_t value);
228
229/*
230 * Write an element of type boolean.
231 *
232 * writer An instance of a machine interface writer.
c7e35b03 233 * element_name Element name.
5e18ec73 234 * value Boolean value of the element.
c7e35b03
JR
235 *
236 * Returns zero if the element's value could be written.
237 * Negative values indicate an error.
238 */
239int mi_lttng_writer_write_element_bool(struct mi_writer *writer,
240 const char *element_name, int value);
241
242/*
243 * Write an element of type string.
244 *
245 * writer An instance of a machine interface writer.
c7e35b03 246 * element_name Element name.
5e18ec73 247 * value String value of the element.
c7e35b03
JR
248 *
249 * Returns zero if the element's value could be written.
250 * Negative values indicate an error.
251 */
252int mi_lttng_writer_write_element_string(struct mi_writer *writer,
253 const char *element_name, const char *value);
254
255/*
256 * Machine interface of struct version.
257 *
258 * writer An instance of a machine interface writer.
c7e35b03 259 * version Version struct.
c7e35b03 260 * lttng_description String value of the version description.
c7e35b03
JR
261 * lttng_license String value of the version license.
262 *
263 * Returns zero if the element's value could be written.
264 * Negative values indicate an error.
265 */
266int mi_lttng_version(struct mi_writer *writer, struct mi_lttng_version *version,
267 const char *lttng_description, const char *lttng_license);
268
269/*
5e18ec73 270 * Machine interface: open a sessions element.
c7e35b03 271 *
5e18ec73 272 * writer An instance of a machine interface writer.
c7e35b03 273 *
5e18ec73
JR
274 * Returns zero if the element's value could be written.
275 * Negative values indicate an error.
276 */
277int mi_lttng_sessions_open(struct mi_writer *writer);
278
279/*
280 * Machine interface of struct session.
c7e35b03 281 *
5e18ec73
JR
282 * writer An instance of a machine interface writer.
283 * session An instance of a session.
284 * is_open Defines whether or not the session element shall be closed.
285 * This should be used carefully and the client
286 * must close the session element.
287 * Use case: nested addtionnal information on a session
c7e35b03 288 * ex: domain,channel event.
c7e35b03
JR
289 *
290 * Returns zero if the element's value could be written.
291 * Negative values indicate an error.
292 */
293int mi_lttng_session(struct mi_writer *writer,
5e18ec73
JR
294 struct lttng_session *session, int is_open);
295
296/*
297 * Machine interface: open a domains element.
298 *
299 * writer An instance of a machine interface writer.
300 *
301 * Returns zero if the element's value could be written.
302 * Negative values indicate an error.
303 */
304int mi_lttng_domains_open(struct mi_writer *writer);
305
306/*
307 * Machine interface of struct domain.
308 *
309 * writer An instance of a machine interface writer.
310 * domain An instance of a domain.
311 *
312 * is_open Defines whether or not the session element shall be closed.
313 * This should be used carefully and the client
314 * must close the domain element.
315 * Use case: nested addition information on a domain
316 * ex: channel event.
317 *
318 * Returns zero if the element's value could be written.
319 * Negative values indicate an error.
320 */
321int mi_lttng_domain(struct mi_writer *writer,
322 struct lttng_domain *domain, int is_open);
323
324/*
325 * Machine interface: open a channels element.
326 *
327 * writer An instance of a machine interface writer.
328 *
329 * Returns zero if the element's value could be written.
330 * Negative values indicate an error.
331 */
332int mi_lttng_channels_open(struct mi_writer *writer);
333
334/*
335 * Machine interface of struct channel.
336 *
337 * writer An instance of a machine interface writer.
338 * channel An instance of a channel.
339 *
340 * is_open Defines whether or not the session element shall be closed.
341 * This should be used carefully and the client
342 * must close the channel element.
343 * Use case: nested addition information on a channel.
344 * ex: channel event.
345 *
346 * Returns zero if the element's value could be written.
347 * Negative values indicate an error.
348 */
349int mi_lttng_channel(struct mi_writer *writer,
350 struct lttng_channel *channel, int is_open);
351
352/*
353 * Machine interface of struct channel_attr.
354 *
355 * writer An instance of a machine interface writer.
356 * attr An instance of a channel_attr struct.
357 *
358 * Returns zero if the element's value could be written.
359 * Negative values indicate an error.
360 */
361int mi_lttng_channel_attr(struct mi_writer *writer,
362 struct lttng_channel_attr *attr);
363
364/*
365* Machine interface for event common attributes.
366*
367* writer An instance of a mi writer.
368* event single trace event.
369*
370* The common attribute are:
371* - mi event element
372* - event name
373* - event type
374* - enabled tag
375* - event filter
376*
377* Returns zero if the element's value could be written.
378* Negative values indicate an error.
379*/
380int mi_lttng_event_common_attributes(struct mi_writer *writer,
381 struct lttng_event *event);
382
383/*
384 * Machine interface for kernel tracepoint event with a loglevel.
385 *
386 * writer An instance of a mi writer.
387 * event single trace event.
388 *
389 * Returns zero if the element's value could be written.
390 * Negative values indicate an error.
391 */
392int mi_lttng_event_tracepoint_loglevel(struct mi_writer *writer,
393 struct lttng_event *event);
394
395/*
396 * Machine interface for kernel tracepoint event with no loglevel.
397 *
398 * writer An instance of a mi writer.
399 * event single trace event.
400 *
401 * Returns zero if the element's value could be written.
402 * Negative values indicate an error.
403 */
404int mi_lttng_event_tracepoint_no_loglevel(struct mi_writer *writer,
405 struct lttng_event *event);
406
407/*
408 * Machine interface for kernel function and probe event.
409 *
410 * writer An instance of a mi writer.
411 * event single trace event.
412 *
413 * Returns zero if the element's value could be written.
414 * Negative values indicate an error.
415 */
416int mi_lttng_event_function_probe(struct mi_writer *writer,
417 struct lttng_event *event);
418
419/*
420 * Machine interface for kernel function entry event.
421 *
422 * writer An instance of a mi writer.
423 * event single trace event.
424 *
425 * Returns zero if the element's value could be written.
426 * Negative values indicate an error.
427 */
428int mi_lttng_event_function_entry(struct mi_writer *writer,
429 struct lttng_event *event);
430
431/*
432 * Machine interface: open an events element.
433 *
434 * writer An instance of a machine interface writer.
435 *
436 * Returns zero if the element's value could be written.
437 * Negative values indicate an error.
438 */
439int mi_lttng_events_open(struct mi_writer *writer);
440
441/*
442 * Machine interface for printing an event.
443 * The trace event type currently supported are:
444 * TRACEPOINT,
445 * PROBE,
446 * FUNCTION,
447 * FUNCTION_ENTRY,
448 * SYSCALL
449 *
450 * writer An instance of a mi writer.
451 * event single trace event.
452 * is_open Defines whether or not the session element shall be closed.
453 * This should be used carefully and the client
454 * must close the event element.
455 * Use case: nested additional information
456 *
457 * Returns zero if the element's value could be written.
458 * Negative values indicate an error.
459 */
460int mi_lttng_event(struct mi_writer *writer, struct lttng_event *event,
461 int is_open);
462
463/*
464 * Machine interface for struct lttng_event_field.
465 *
466 * writer An instance of a mi writer.
467 * field An event_field instance.
468 *
469 * Returns zero if the element's value could be written.
470 * Negative values indicate an error.
471 */
472int mi_lttng_event_field(struct mi_writer *writer,
473 struct lttng_event_field *field);
474
475/*
476 * Machine interface: open a event_fields element.
477 *
478 * writer An instance of a machine interface writer.
479 *
480 * Returns zero if the element's value could be written.
481 * Negative values indicate an error.
482 */
483int mi_lttng_event_fields_open(struct mi_writer *writer);
484
485/*
486 * Machine interface: open a PIDs element.
487 *
488 * writer An instance of a machine interface writer.
489 *
490 * Returns zero if the element's value could be written.
491 * Negative values indicate an error.
492 */
493int mi_lttng_pids_open(struct mi_writer *writer);
494
495/*
496 * Machine interface of a PID.
497 *
498 * writer An instance of a machine interface writer.
499 * pid A PID.
500 *
501 * is_open Defines whether or not the session element shall be closed.
502 * This should be used carefully and the client
503 * must close the pid element.
504 * Use case: nested addition information on a domain
505 * ex: channel event.
506 *
507 * Returns zero if the element's value could be written.
508 * Negative values indicate an error.
509 */
510int mi_lttng_pid(struct mi_writer *writer, pid_t pid , const char *cmdline,
511 int is_open);
c7e35b03
JR
512
513#endif /* _MI_LTTNG_H */
This page took 0.041685 seconds and 4 git commands to generate.