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/locale/localed-util.h | 80 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/locale/localed-util.h (limited to 'src/locale/localed-util.h') diff --git a/src/locale/localed-util.h b/src/locale/localed-util.h new file mode 100644 index 0000000..0c68f29 --- /dev/null +++ b/src/locale/localed-util.h @@ -0,0 +1,80 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include + +#include "sd-bus.h" + +#include "hashmap.h" +#include "locale-setup.h" + +typedef struct X11Context { + char *layout; + char *model; + char *variant; + char *options; +} X11Context; + +typedef struct VCContext { + char *keymap; + char *toggle; +} VCContext; + +typedef struct Context { + sd_bus_message *locale_cache; + LocaleContext locale_context; + + sd_bus_message *x11_cache; + struct stat x11_stat; + X11Context x11_from_xorg; + X11Context x11_from_vc; + + sd_bus_message *vc_cache; + struct stat vc_stat; + VCContext vc; + + Hashmap *polkit_registry; +} Context; + +void x11_context_clear(X11Context *xc); +void x11_context_replace(X11Context *dest, X11Context *src); +bool x11_context_isempty(const X11Context *xc); +void x11_context_empty_to_null(X11Context *xc); +bool x11_context_is_safe(const X11Context *xc); +bool x11_context_equal(const X11Context *a, const X11Context *b); +int x11_context_copy(X11Context *dest, const X11Context *src); +int x11_context_verify_and_warn(const X11Context *xc, int log_level, sd_bus_error *error); +static inline int x11_context_verify(const X11Context *xc) { + return x11_context_verify_and_warn(xc, LOG_DEBUG, NULL); +} + +X11Context *context_get_x11_context(Context *c); + +void vc_context_clear(VCContext *vc); +void vc_context_replace(VCContext *dest, VCContext *src); +bool vc_context_isempty(const VCContext *vc); +void vc_context_empty_to_null(VCContext *vc); +bool vc_context_equal(const VCContext *a, const VCContext *b); +int vc_context_copy(VCContext *dest, const VCContext *src); +int vc_context_verify_and_warn(const VCContext *vc, int log_level, sd_bus_error *error); +static inline int vc_context_verify(const VCContext *vc) { + return vc_context_verify_and_warn(vc, LOG_DEBUG, NULL); +} + +int find_converted_keymap(const X11Context *xc, char **ret); +int find_legacy_keymap(const X11Context *xc, char **ret); +int find_language_fallback(const char *lang, char **ret); + +int locale_read_data(Context *c, sd_bus_message *m); +int vconsole_read_data(Context *c, sd_bus_message *m); +int x11_read_data(Context *c, sd_bus_message *m); + +void context_clear(Context *c); +int vconsole_convert_to_x11(const VCContext *vc, X11Context *ret); +int vconsole_write_data(Context *c); +int x11_convert_to_vconsole(const X11Context *xc, VCContext *ret); +int x11_write_data(Context *c); + +bool locale_gen_check_available(void); +int locale_gen_enable_locale(const char *locale); +int locale_gen_run(void); -- cgit v1.2.3