2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_EVALUATION_INTERNAL_H
9 #define LTTNG_EVALUATION_INTERNAL_H
11 #include <lttng/condition/evaluation.h>
12 #include <lttng/condition/condition.h>
13 #include <common/macros.hpp>
15 #include <sys/types.h>
18 struct lttng_payload_view;
20 using evaluation_destroy_cb = void (*)(struct lttng_evaluation *);
21 using evaluation_serialize_cb = int (*)(const struct lttng_evaluation *, struct lttng_payload *);
23 struct lttng_evaluation_comm {
24 /* enum lttng_condition_type type */
29 struct lttng_evaluation {
30 enum lttng_condition_type type;
31 evaluation_serialize_cb serialize;
32 evaluation_destroy_cb destroy;
35 void lttng_evaluation_init(struct lttng_evaluation *evaluation,
36 enum lttng_condition_type type);
38 ssize_t lttng_evaluation_create_from_payload(
39 const struct lttng_condition *condition,
40 struct lttng_payload_view *view,
41 struct lttng_evaluation **evaluation);
43 int lttng_evaluation_serialize(const struct lttng_evaluation *evaluation,
44 struct lttng_payload *payload);
46 #endif /* LTTNG_EVALUATION_INTERNAL_H */