forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfl_settings_portal.cc
301 lines (240 loc) · 9.43 KB
/
fl_settings_portal.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/shell/platform/linux/fl_settings_portal.h"
#include <gio/gio.h>
#include <glib.h>
static constexpr char kPortalName[] = "org.freedesktop.portal.Desktop";
static constexpr char kPortalPath[] = "/org/freedesktop/portal/desktop";
static constexpr char kPortalSettings[] = "org.freedesktop.portal.Settings";
struct FlSetting {
const gchar* ns;
const gchar* key;
const GVariantType* type;
};
static constexpr char kXdgAppearance[] = "org.freedesktop.appearance";
static const FlSetting kColorScheme = {
kXdgAppearance,
"color-scheme",
G_VARIANT_TYPE_UINT32,
};
static constexpr char kGnomeA11yInterface[] =
"org.gnome.desktop.a11y.interface";
static const FlSetting kHighContrast = {
kGnomeA11yInterface,
"high-contrast",
G_VARIANT_TYPE_BOOLEAN,
};
static constexpr char kGnomeDesktopInterface[] = "org.gnome.desktop.interface";
static const FlSetting kClockFormat = {
kGnomeDesktopInterface,
"clock-format",
G_VARIANT_TYPE_STRING,
};
static const FlSetting kEnableAnimations = {
kGnomeDesktopInterface,
"enable-animations",
G_VARIANT_TYPE_BOOLEAN,
};
static const FlSetting kGtkTheme = {
kGnomeDesktopInterface,
"gtk-theme",
G_VARIANT_TYPE_STRING,
};
static const FlSetting kTextScalingFactor = {
kGnomeDesktopInterface,
"text-scaling-factor",
G_VARIANT_TYPE_DOUBLE,
};
static const FlSetting kAllSettings[] = {
kClockFormat, kColorScheme, kEnableAnimations,
kGtkTheme, kHighContrast, kTextScalingFactor,
};
static constexpr char kClockFormat12Hour[] = "12h";
static constexpr char kGtkThemeDarkSuffix[] = "-dark";
typedef enum { kDefault, kPreferDark, kPreferLight } ColorScheme;
struct _FlSettingsPortal {
GObject parent_instance;
GDBusProxy* dbus_proxy;
GVariantDict* values;
};
static void fl_settings_portal_iface_init(FlSettingsInterface* iface);
G_DEFINE_TYPE_WITH_CODE(FlSettingsPortal,
fl_settings_portal,
G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE(fl_settings_get_type(),
fl_settings_portal_iface_init))
static gchar* format_key(const FlSetting* setting) {
return g_strconcat(setting->ns, "::", setting->key, nullptr);
}
static gboolean get_value(FlSettingsPortal* portal,
const FlSetting* setting,
GVariant** value) {
g_autofree const gchar* key = format_key(setting);
*value = g_variant_dict_lookup_value(portal->values, key, setting->type);
return *value != nullptr;
}
static void set_value(FlSettingsPortal* portal,
const FlSetting* setting,
GVariant* value) {
g_autofree const gchar* key = format_key(setting);
// ignore redundant changes from multiple XDG desktop portal backends
g_autoptr(GVariant) old_value =
g_variant_dict_lookup_value(portal->values, key, nullptr);
if (old_value != nullptr && value != nullptr &&
g_variant_equal(old_value, value)) {
return;
}
g_variant_dict_insert_value(portal->values, key, value);
fl_settings_emit_changed(FL_SETTINGS(portal));
}
// Based on
// https://gitlab.gnome.org/GNOME/Initiatives/-/wikis/Dark-Style-Preference#other
static gboolean settings_portal_read(GDBusProxy* proxy,
const gchar* ns,
const gchar* key,
GVariant** out) {
g_autoptr(GError) error = nullptr;
g_autoptr(GVariant) value =
g_dbus_proxy_call_sync(proxy, "Read", g_variant_new("(ss)", ns, key),
G_DBUS_CALL_FLAGS_NONE, G_MAXINT, nullptr, &error);
if (error) {
if (error->domain == G_DBUS_ERROR &&
error->code == G_DBUS_ERROR_SERVICE_UNKNOWN) {
g_debug("XDG desktop portal unavailable: %s", error->message);
return FALSE;
}
if (error->domain == G_DBUS_ERROR &&
error->code == G_DBUS_ERROR_UNKNOWN_METHOD) {
g_debug("XDG desktop portal settings unavailable: %s", error->message);
return FALSE;
}
g_critical("Failed to read XDG desktop portal settings: %s",
error->message);
return FALSE;
}
g_autoptr(GVariant) child = nullptr;
g_variant_get(value, "(v)", &child);
g_variant_get(child, "v", out);
return TRUE;
}
static void settings_portal_changed_cb(GDBusProxy* proxy,
const char* sender_name,
const char* signal_name,
GVariant* parameters,
gpointer user_data) {
FlSettingsPortal* portal = FL_SETTINGS_PORTAL(user_data);
if (g_strcmp0(signal_name, "SettingChanged")) {
return;
}
FlSetting setting;
g_autoptr(GVariant) value = nullptr;
g_variant_get(parameters, "(&s&sv)", &setting.ns, &setting.key, &value);
set_value(portal, &setting, value);
}
static FlClockFormat fl_settings_portal_get_clock_format(FlSettings* settings) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(settings);
FlClockFormat clock_format = FL_CLOCK_FORMAT_24H;
g_autoptr(GVariant) value = nullptr;
if (get_value(self, &kClockFormat, &value)) {
const gchar* clock_format_str = g_variant_get_string(value, nullptr);
if (g_strcmp0(clock_format_str, kClockFormat12Hour) == 0) {
clock_format = FL_CLOCK_FORMAT_12H;
}
}
return clock_format;
}
static FlColorScheme fl_settings_portal_get_color_scheme(FlSettings* settings) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(settings);
FlColorScheme color_scheme = FL_COLOR_SCHEME_LIGHT;
g_autoptr(GVariant) value = nullptr;
if (get_value(self, &kColorScheme, &value)) {
if (g_variant_get_uint32(value) == kPreferDark) {
color_scheme = FL_COLOR_SCHEME_DARK;
}
} else if (get_value(self, &kGtkTheme, &value)) {
const gchar* gtk_theme_str = g_variant_get_string(value, nullptr);
if (g_str_has_suffix(gtk_theme_str, kGtkThemeDarkSuffix)) {
color_scheme = FL_COLOR_SCHEME_DARK;
}
}
return color_scheme;
}
static gboolean fl_settings_portal_get_enable_animations(FlSettings* settings) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(settings);
gboolean enable_animations = true;
g_autoptr(GVariant) value = nullptr;
if (get_value(self, &kEnableAnimations, &value)) {
enable_animations = g_variant_get_boolean(value);
}
return enable_animations;
}
static gboolean fl_settings_portal_get_high_contrast(FlSettings* settings) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(settings);
gboolean high_contrast = false;
g_autoptr(GVariant) value = nullptr;
if (get_value(self, &kHighContrast, &value)) {
high_contrast = g_variant_get_boolean(value);
}
return high_contrast;
}
static gdouble fl_settings_portal_get_text_scaling_factor(
FlSettings* settings) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(settings);
gdouble scaling_factor = 1.0;
g_autoptr(GVariant) value = nullptr;
if (get_value(self, &kTextScalingFactor, &value)) {
scaling_factor = g_variant_get_double(value);
}
return scaling_factor;
}
static void fl_settings_portal_dispose(GObject* object) {
FlSettingsPortal* self = FL_SETTINGS_PORTAL(object);
g_clear_object(&self->dbus_proxy);
g_clear_pointer(&self->values, g_variant_dict_unref);
G_OBJECT_CLASS(fl_settings_portal_parent_class)->dispose(object);
}
static void fl_settings_portal_class_init(FlSettingsPortalClass* klass) {
GObjectClass* object_class = G_OBJECT_CLASS(klass);
object_class->dispose = fl_settings_portal_dispose;
}
static void fl_settings_portal_iface_init(FlSettingsInterface* iface) {
iface->get_clock_format = fl_settings_portal_get_clock_format;
iface->get_color_scheme = fl_settings_portal_get_color_scheme;
iface->get_enable_animations = fl_settings_portal_get_enable_animations;
iface->get_high_contrast = fl_settings_portal_get_high_contrast;
iface->get_text_scaling_factor = fl_settings_portal_get_text_scaling_factor;
}
static void fl_settings_portal_init(FlSettingsPortal* self) {}
FlSettingsPortal* fl_settings_portal_new() {
g_autoptr(GVariantDict) values = g_variant_dict_new(nullptr);
return fl_settings_portal_new_with_values(values);
}
FlSettingsPortal* fl_settings_portal_new_with_values(GVariantDict* values) {
g_return_val_if_fail(values != nullptr, nullptr);
FlSettingsPortal* portal =
FL_SETTINGS_PORTAL(g_object_new(fl_settings_portal_get_type(), nullptr));
portal->values = g_variant_dict_ref(values);
return portal;
}
gboolean fl_settings_portal_start(FlSettingsPortal* self, GError** error) {
g_return_val_if_fail(FL_IS_SETTINGS_PORTAL(self), false);
g_return_val_if_fail(self->dbus_proxy == nullptr, false);
self->dbus_proxy = g_dbus_proxy_new_for_bus_sync(
G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr, kPortalName,
kPortalPath, kPortalSettings, nullptr, error);
if (self->dbus_proxy == nullptr) {
return FALSE;
}
for (const FlSetting setting : kAllSettings) {
g_autoptr(GVariant) value = nullptr;
if (settings_portal_read(self->dbus_proxy, setting.ns, setting.key,
&value)) {
set_value(self, &setting, value);
}
}
g_signal_connect_object(self->dbus_proxy, "g-signal",
G_CALLBACK(settings_portal_changed_cb), self,
static_cast<GConnectFlags>(0));
return true;
}