2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_CONDITION_SESSION_ROTATION_INTERNAL_H
9 #define LTTNG_CONDITION_SESSION_ROTATION_INTERNAL_H
11 #include <lttng/condition/session-rotation.h>
12 #include <lttng/condition/condition-internal.h>
13 #include <lttng/condition/evaluation-internal.h>
14 #include "common/buffer-view.h"
15 #include <lttng/location.h>
16 #include <common/macros.h>
18 struct lttng_condition_session_rotation
{
19 struct lttng_condition parent
;
23 struct lttng_condition_session_rotation_comm
{
24 /* Length includes the trailing \0. */
25 uint32_t session_name_len
;
29 struct lttng_evaluation_session_rotation
{
30 struct lttng_evaluation parent
;
32 struct lttng_trace_archive_location
*location
;
35 struct lttng_evaluation_session_rotation_comm
{
41 ssize_t
lttng_condition_session_rotation_ongoing_create_from_payload(
42 struct lttng_payload_view
*view
,
43 struct lttng_condition
**condition
);
46 ssize_t
lttng_condition_session_rotation_completed_create_from_payload(
47 struct lttng_payload_view
*view
,
48 struct lttng_condition
**condition
);
51 struct lttng_evaluation
*lttng_evaluation_session_rotation_ongoing_create(
54 /* Ownership of location is transferred to the evaluation. */
56 struct lttng_evaluation
*lttng_evaluation_session_rotation_completed_create(
58 struct lttng_trace_archive_location
*location
);
61 ssize_t
lttng_evaluation_session_rotation_ongoing_create_from_payload(
62 struct lttng_payload_view
*view
,
63 struct lttng_evaluation
**evaluation
);
66 ssize_t
lttng_evaluation_session_rotation_completed_create_from_payload(
67 struct lttng_payload_view
*view
,
68 struct lttng_evaluation
**evaluation
);
70 #endif /* LTTNG_CONDITION_SESSION_ROTATION_INTERNAL_H */