Commit | Line | Data |
---|---|---|
b30fa191 JR |
1 | /* |
2 | * Copyright (C) 2020 Simon Marchi <simon.marchi@efficios.com> | |
3 | * | |
c922647d | 4 | * SPDX-License-Identifier: LGPL-2.1-only |
b30fa191 JR |
5 | * |
6 | */ | |
7 | ||
8 | #ifndef COMMON_SNAPSHOT_H | |
9 | #define COMMON_SNAPSHOT_H | |
10 | ||
c9e313bc | 11 | #include <common/macros.hpp> |
b30fa191 JR |
12 | |
13 | #include <stdbool.h> | |
46c97aee | 14 | #include <sys/types.h> |
b30fa191 | 15 | |
757c48a2 SM |
16 | struct lttng_payload_view; |
17 | struct lttng_payload; | |
b30fa191 | 18 | struct lttng_snapshot_output; |
6a751b95 | 19 | struct mi_writer; |
b30fa191 | 20 | |
b30fa191 JR |
21 | bool lttng_snapshot_output_validate(const struct lttng_snapshot_output *output); |
22 | ||
28f23191 JG |
23 | bool lttng_snapshot_output_is_equal(const struct lttng_snapshot_output *a, |
24 | const struct lttng_snapshot_output *b); | |
b30fa191 | 25 | |
28f23191 JG |
26 | int lttng_snapshot_output_serialize(const struct lttng_snapshot_output *output, |
27 | struct lttng_payload *payload); | |
b30fa191 | 28 | |
28f23191 JG |
29 | ssize_t lttng_snapshot_output_create_from_payload(struct lttng_payload_view *view, |
30 | struct lttng_snapshot_output **output_p); | |
b30fa191 | 31 | |
28f23191 JG |
32 | enum lttng_error_code lttng_snapshot_output_mi_serialize(const struct lttng_snapshot_output *output, |
33 | struct mi_writer *writer); | |
6a751b95 | 34 | |
b30fa191 | 35 | #endif /* COMMON_SNAPSHOT_H */ |