MI: implement all objects related to trigger machine interface
[lttng-tools.git] / src / common / snapshot.h
CommitLineData
b30fa191
JR
1/*
2 * Copyright (C) 2020 Simon Marchi <simon.marchi@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#ifndef COMMON_SNAPSHOT_H
9#define COMMON_SNAPSHOT_H
10
11#include <common/macros.h>
12
13#include <stdbool.h>
46c97aee 14#include <sys/types.h>
b30fa191 15
757c48a2
SM
16struct lttng_payload_view;
17struct lttng_payload;
b30fa191 18struct lttng_snapshot_output;
0f7c2963 19struct mi_writer;
b30fa191
JR
20
21LTTNG_HIDDEN
22bool lttng_snapshot_output_validate(const struct lttng_snapshot_output *output);
23
24LTTNG_HIDDEN
25bool lttng_snapshot_output_is_equal(
26 const struct lttng_snapshot_output *a,
27 const struct lttng_snapshot_output *b);
28
29LTTNG_HIDDEN
30int lttng_snapshot_output_serialize(
31 const struct lttng_snapshot_output *output,
757c48a2 32 struct lttng_payload *payload);
b30fa191
JR
33
34LTTNG_HIDDEN
757c48a2
SM
35ssize_t lttng_snapshot_output_create_from_payload(
36 struct lttng_payload_view *view,
b30fa191
JR
37 struct lttng_snapshot_output **output_p);
38
0f7c2963
JR
39LTTNG_HIDDEN
40enum lttng_error_code lttng_snapshot_output_mi_serialize(
41 const struct lttng_snapshot_output *output,
42 struct mi_writer *writer);
43
b30fa191 44#endif /* COMMON_SNAPSHOT_H */
This page took 0.034581 seconds and 5 git commands to generate.