2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
3 * Copyright (C) 2018 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef LTTNG_ROTATION_H
20 #define LTTNG_ROTATION_H
29 * Return codes for lttng_rotation_handle_get_state()
31 enum lttng_rotation_state
{
33 * Rotation is ongoing, but has not been completed yet.
35 LTTNG_ROTATION_STATE_ONGOING
= 0,
37 * Rotation has been completed and the resulting chunk
38 * can now safely be read.
40 LTTNG_ROTATION_STATE_COMPLETED
= 1,
42 * The rotation has expired.
44 * The information associated with a given rotation is eventually
45 * purged by the session daemon. In such a case, the attributes of
46 * the rotation, such as its path, may no longer be available.
48 * Note that this state does not guarantee the the rotation was
49 * completed successfully.
51 LTTNG_ROTATION_STATE_EXPIRED
= 2,
53 * The rotation could not be completed due to an error.
55 LTTNG_ROTATION_STATE_ERROR
= 3,
58 enum lttng_rotation_status
{
59 LTTNG_ROTATION_STATUS_OK
= 0,
60 /* Information not available. */
61 LTTNG_ROTATION_STATUS_UNAVAILABLE
= 1,
63 LTTNG_ROTATION_STATUS_ERROR
= -1,
64 /* Invalid parameters provided. */
65 LTTNG_ROTATION_STATUS_INVALID
= -2,
69 * Input parameter to the lttng_rotate_session command.
71 * An immediate rotation is performed as soon as possible by the tracers.
73 struct lttng_rotation_immediate_attr
;
76 * Input parameter to the lttng_rotate_schedule command.
78 struct lttng_rotation_schedule_attr
;
81 * Handle used to represent a specific rotation.
83 struct lttng_rotation_handle
;
86 * Return a newly allocated immediate session rotation descriptor object or NULL
89 extern struct lttng_rotation_immediate_attr
*
90 lttng_rotation_immediate_attr_create(void);
93 * Return a newly allocated scheduled rotate session descriptor object or NULL
96 extern struct lttng_rotation_schedule_attr
*
97 lttng_rotation_schedule_attr_create(void);
100 * Destroy a given immediate session rotation descriptor object.
102 extern void lttng_rotation_immediate_attr_destroy(
103 struct lttng_rotation_immediate_attr
*attr
);
106 * Destroy a given scheduled rotate session descriptor object.
108 extern void lttng_rotation_schedule_attr_destroy(
109 struct lttng_rotation_schedule_attr
*attr
);
112 * Set the name of the session to rotate immediately.
114 * The session_name parameter is copied to the immediate session rotation
117 extern enum lttng_rotation_status
lttng_rotation_immediate_attr_set_session_name(
118 struct lttng_rotation_immediate_attr
*attr
,
119 const char *session_name
);
122 * Set the name of the session to rotate automatically.
124 * The session_name parameter is copied to the immediate session rotation
127 extern enum lttng_rotation_status
lttng_rotation_schedule_attr_set_session_name(
128 struct lttng_rotation_schedule_attr
*attr
,
129 const char *session_name
);
132 * Set the timer to periodically rotate the session (µs, -1ULL to disable).
134 extern enum lttng_rotation_status
lttng_rotation_schedule_attr_set_timer_period(
135 struct lttng_rotation_schedule_attr
*attr
, uint64_t timer
);
138 * Set the size to rotate the session (bytes, -1ULL to disable).
140 void lttng_rotation_schedule_attr_set_size(
141 struct lttng_rotation_schedule_attr
*attr
, uint64_t size
);
144 * lttng rotate session handle functions.
148 * Get the current state of the rotation referenced by the handle.
150 * This will issue a request to the session daemon on every call. Hence,
151 * the result of this call may change over time.
153 extern enum lttng_rotation_status
lttng_rotation_handle_get_state(
154 struct lttng_rotation_handle
*rotation_handle
,
155 enum lttng_rotation_state
*rotation_state
);
158 * Get the location of the rotation's resulting archive.
160 * The rotation must be completed in order for this call to succeed.
161 * The path returned is owned by the rotation handle.
163 * Note that path will not be set in case of error, or if the session
164 * rotation has expired.
166 * FIXME: Return an lttng_location object instead of a path.
168 extern enum lttng_rotation_status
lttng_rotation_handle_get_completed_archive_location(
169 struct lttng_rotation_handle
*rotation_handle
,
173 * Destroy an lttng_rotate_session handle.
175 extern void lttng_rotation_handle_destroy(
176 struct lttng_rotation_handle
*rotation_handle
);
179 * Rotate the output folder of the session
181 * On success, handle is allocated and can be used to monitor the progress
182 * of the rotation with lttng_rotation_get_state(). The handle must be freed
183 * by the caller with lttng_rotation_handle_destroy().
185 * Return 0 if the rotate action was successfully launched or a negative
186 * LTTng error code on error.
188 extern int lttng_rotate_session(struct lttng_rotation_immediate_attr
*attr
,
189 struct lttng_rotation_handle
**rotation_handle
);
192 * Configure a session to rotate periodically or based on the size written.
194 extern int lttng_rotation_set_schedule(
195 struct lttng_rotation_schedule_attr
*attr
);
198 * Ask the sessiond for the value of the rotate timer (in micro-seconds) of the
201 * On success, return 0 and set the value or rotate_timer, on error return a
204 extern int lttng_rotation_schedule_get_timer_period(const char *session_name
,
205 uint64_t *rotate_timer
);
208 * Ask the sessiond for the value of the rotate size (in micro-seconds) of the
211 * On success, return 0 and set the value or rotate_size, on error return
214 extern int lttng_rotation_schedule_get_size(const char *session_name
,
215 uint64_t *rotate_size
);
221 #endif /* LTTNG_ROTATION_H */