Cleanup: rotation-thread: enforce conding standard following fix
[lttng-tools.git] / include / lttng / notification / notification-internal.hpp
CommitLineData
a58c490f 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
a58c490f 3 *
ab5be9fa 4 * SPDX-License-Identifier: LGPL-2.1-only
a58c490f 5 *
a58c490f
JG
6 */
7
8#ifndef LTTNG_NOTIFICATION_INTERNAL_H
9#define LTTNG_NOTIFICATION_INTERNAL_H
10
c9e313bc 11#include <common/macros.hpp>
0038180d
JG
12#include <common/make-unique-wrapper.hpp>
13
14#include <lttng/notification/notification.h>
15
16#include <memory>
a58c490f 17#include <stdbool.h>
0038180d 18#include <stdint.h>
72756a3f 19#include <sys/types.h>
a58c490f 20
c0a66c84
JG
21struct lttng_payload;
22struct lttng_payload_view;
23
a58c490f 24struct lttng_notification {
0038180d
JG
25 using uptr = std::unique_ptr<
26 lttng_notification,
27 lttng::details::create_unique_class<lttng_notification,
28 lttng_notification_destroy>::deleter>;
29
52d55cf9 30 struct lttng_trigger *trigger;
a58c490f 31 struct lttng_evaluation *evaluation;
a58c490f
JG
32};
33
34struct lttng_notification_comm {
35 /* Size of the payload following this field. */
36 uint32_t length;
52d55cf9 37 /* Trigger and evaluation objects follow. */
a58c490f
JG
38 char payload[];
39} LTTNG_PACKED;
40
a58c490f 41struct lttng_notification *lttng_notification_create(
52d55cf9 42 struct lttng_trigger *trigger,
a58c490f
JG
43 struct lttng_evaluation *evaluation);
44
9b63a4aa 45int lttng_notification_serialize(const struct lttng_notification *notification,
c0a66c84 46 struct lttng_payload *payload);
a58c490f 47
c0a66c84
JG
48ssize_t lttng_notification_create_from_payload(
49 struct lttng_payload_view *view,
a58c490f
JG
50 struct lttng_notification **notification);
51
c08136a3
JG
52const struct lttng_condition *lttng_notification_get_const_condition(
53 const struct lttng_notification *notification);
54const struct lttng_evaluation *lttng_notification_get_const_evaluation(
55 const struct lttng_notification *notification);
56
57const struct lttng_trigger *lttng_notification_get_const_trigger(
58 const struct lttng_notification *notification);
59
a58c490f 60#endif /* LTTNG_NOTIFICATION_INTERNAL_H */
This page took 0.047254 seconds and 4 git commands to generate.