2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef NOTIFICATION_THREAD_COMMANDS_H
9 #define NOTIFICATION_THREAD_COMMANDS_H
11 #include <lttng/domain.h>
12 #include <lttng/lttng-error.h>
13 #include <urcu/rculfhash.h>
14 #include "notification-thread.h"
15 #include "notification-thread-internal.h"
16 #include "notification-thread-events.h"
17 #include <common/waiter.h>
20 struct notification_thread_data
;
23 enum notification_thread_command_type
{
24 NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER
,
25 NOTIFICATION_COMMAND_TYPE_UNREGISTER_TRIGGER
,
26 NOTIFICATION_COMMAND_TYPE_ADD_CHANNEL
,
27 NOTIFICATION_COMMAND_TYPE_REMOVE_CHANNEL
,
28 NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING
,
29 NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_COMPLETED
,
30 NOTIFICATION_COMMAND_TYPE_QUIT
,
33 struct notification_thread_command
{
34 struct cds_list_head cmd_list_node
;
36 enum notification_thread_command_type type
;
38 /* Register/Unregister trigger. */
39 struct lttng_trigger
*trigger
;
49 enum lttng_domain_type domain
;
57 enum lttng_domain_type domain
;
60 const char *session_name
;
63 uint64_t trace_archive_chunk_id
;
64 struct lttng_trace_archive_location
*location
;
68 /* lttng_waiter on which to wait for command reply (optional). */
69 struct lttng_waiter reply_waiter
;
70 enum lttng_error_code reply_code
;
74 enum lttng_error_code
notification_thread_command_register_trigger(
75 struct notification_thread_handle
*handle
,
76 struct lttng_trigger
*trigger
);
78 enum lttng_error_code
notification_thread_command_unregister_trigger(
79 struct notification_thread_handle
*handle
,
80 struct lttng_trigger
*trigger
);
82 enum lttng_error_code
notification_thread_command_add_channel(
83 struct notification_thread_handle
*handle
,
84 char *session_name
, uid_t session_uid
, gid_t session_gid
,
85 char *channel_name
, uint64_t key
,
86 enum lttng_domain_type domain
, uint64_t capacity
);
88 enum lttng_error_code
notification_thread_command_remove_channel(
89 struct notification_thread_handle
*handle
,
90 uint64_t key
, enum lttng_domain_type domain
);
92 enum lttng_error_code
notification_thread_command_session_rotation_ongoing(
93 struct notification_thread_handle
*handle
,
94 const char *session_name
, uid_t session_uid
, gid_t session_gid
,
95 uint64_t trace_archive_chunk_id
);
97 /* Ownership of location is transferred. */
98 enum lttng_error_code
notification_thread_command_session_rotation_completed(
99 struct notification_thread_handle
*handle
,
100 const char *session_name
, uid_t session_uid
, gid_t session_gid
,
101 uint64_t trace_archive_chunk_id
,
102 struct lttng_trace_archive_location
*location
);
104 void notification_thread_command_quit(
105 struct notification_thread_handle
*handle
);
107 #endif /* NOTIFICATION_THREAD_COMMANDS_H */