From 55944e5e40b1be2afc4855d8d2baf4b73d1876b5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:49:52 +0200 Subject: Adding upstream version 255.4. Signed-off-by: Daniel Baumann --- src/login/logind-action.h | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/login/logind-action.h (limited to 'src/login/logind-action.h') diff --git a/src/login/logind-action.h b/src/login/logind-action.h new file mode 100644 index 0000000..dbca963 --- /dev/null +++ b/src/login/logind-action.h @@ -0,0 +1,72 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include "conf-parser.h" + +typedef enum HandleAction { + HANDLE_IGNORE, + HANDLE_POWEROFF, + _HANDLE_ACTION_SHUTDOWN_FIRST = HANDLE_POWEROFF, + HANDLE_REBOOT, + HANDLE_HALT, + HANDLE_KEXEC, + HANDLE_SOFT_REBOOT, + _HANDLE_ACTION_SHUTDOWN_LAST = HANDLE_SOFT_REBOOT, + HANDLE_SUSPEND, + _HANDLE_ACTION_SLEEP_FIRST = HANDLE_SUSPEND, + HANDLE_HIBERNATE, + HANDLE_HYBRID_SLEEP, + HANDLE_SUSPEND_THEN_HIBERNATE, + _HANDLE_ACTION_SLEEP_LAST = HANDLE_SUSPEND_THEN_HIBERNATE, + HANDLE_LOCK, + HANDLE_FACTORY_RESET, + _HANDLE_ACTION_MAX, + _HANDLE_ACTION_INVALID = -EINVAL, +} HandleAction; + +typedef struct HandleActionData HandleActionData; + +#include "logind-inhibit.h" +#include "logind.h" +#include "sleep-config.h" + +static inline bool handle_action_valid(HandleAction a) { + return a >= 0 && a < _HANDLE_ACTION_MAX; +} + +static inline bool HANDLE_ACTION_IS_SHUTDOWN(HandleAction a) { + return a >= _HANDLE_ACTION_SHUTDOWN_FIRST && a <= _HANDLE_ACTION_SHUTDOWN_LAST; +} + +static inline bool HANDLE_ACTION_IS_SLEEP(HandleAction a) { + return a >= _HANDLE_ACTION_SLEEP_FIRST && a <= _HANDLE_ACTION_SLEEP_LAST; +} + +struct HandleActionData { + HandleAction handle; + const char *target; + InhibitWhat inhibit_what; + const char *polkit_action; + const char *polkit_action_multiple_sessions; + const char *polkit_action_ignore_inhibit; + SleepOperation sleep_operation; + const char* message_id; + const char* message; + const char* log_verb; +}; + +int manager_handle_action( + Manager *m, + InhibitWhat inhibit_key, + HandleAction handle, + bool ignore_inhibited, + bool is_edge); + +const char* handle_action_verb_to_string(HandleAction h) _const_; + +const char* handle_action_to_string(HandleAction h) _const_; +HandleAction handle_action_from_string(const char *s) _pure_; + +const HandleActionData* handle_action_lookup(HandleAction handle); + +CONFIG_PARSER_PROTOTYPE(config_parse_handle_action); -- cgit v1.2.3