-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProgram.cs
More file actions
223 lines (193 loc) · 6.26 KB
/
Copy pathProgram.cs
File metadata and controls
223 lines (193 loc) · 6.26 KB
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
using System.Diagnostics;
using System.Runtime.InteropServices;
using Avalonia;
using RemoteShouter.Services;
namespace RemoteShouter;
internal static class Program
{
[STAThread]
public static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += (_, eventArgs) =>
{
if (eventArgs.ExceptionObject is Exception ex)
{
AppLogService.Error("Unhandled application exception", ex);
}
else
{
AppLogService.Error($"Unhandled application exception: {eventArgs.ExceptionObject}");
}
};
TaskScheduler.UnobservedTaskException += (_, eventArgs) =>
{
AppLogService.Error("Unobserved task exception", eventArgs.Exception);
eventArgs.SetObserved();
};
AppLogService.Info(
$"Application starting. os={Environment.OSVersion}, processPath={Environment.ProcessPath}, logFile={AppLogService.LogFilePath}");
try
{
BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
AppLogService.Info("Application exited.");
}
catch (Exception ex)
{
AppLogService.Error("Application crashed", ex);
throw;
}
}
public static AppBuilder BuildAvaloniaApp()
{
ConfigureLinuxX11Environment();
return AppBuilder.Configure<App>()
.UsePlatformDetect()
.With(BuildX11PlatformOptions())
.WithInterFont()
.LogToTrace();
}
private static void ConfigureLinuxX11Environment()
{
if (!OperatingSystem.IsLinux())
{
return;
}
if (ShouldForceSoftwareRendering())
{
SetEnvironmentVariableIfEmpty("LIBGL_ALWAYS_SOFTWARE", "1");
SetEnvironmentVariableIfEmpty("GALLIUM_DRIVER", "llvmpipe");
SetEnvironmentVariableIfEmpty("AVALONIA_RENDERING_FORCE_SOFTWARE", "1");
}
if (!ShouldEnableLinuxIme())
{
Environment.SetEnvironmentVariable("XMODIFIERS", "@im=none");
Environment.SetEnvironmentVariable("GTK_IM_MODULE", "xim");
Environment.SetEnvironmentVariable("QT_IM_MODULE", "xim");
}
}
private static X11PlatformOptions BuildX11PlatformOptions()
{
var options = new X11PlatformOptions
{
EnableIme = ShouldEnableLinuxIme(),
UseDBusMenu = !IsLoongArch64(),
UseDBusFilePicker = !IsLoongArch64()
};
if (ShouldForceSoftwareRendering())
{
options.RenderingMode = [X11RenderingMode.Software];
options.ShouldRenderOnUIThread = true;
options.UseRetainedFramebuffer = true;
}
return options;
}
private static bool ShouldForceSoftwareRendering()
{
var parsed = ParseBooleanSwitch(Environment.GetEnvironmentVariable("OPEN_REMOTE_SHOUTER_SOFTWARE_RENDERING"));
return parsed ?? IsLoongArch64();
}
private static bool ShouldEnableLinuxIme()
{
var parsed = ParseBooleanSwitch(Environment.GetEnvironmentVariable("OPEN_REMOTE_SHOUTER_X11_ENABLE_IME"));
if (parsed.HasValue)
{
return parsed.Value;
}
if (!IsLoongArch64())
{
return true;
}
return HasFcitxDbusService();
}
private static bool HasFcitxDbusService()
{
if (string.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("DBUS_SESSION_BUS_ADDRESS")))
{
return false;
}
return TryFindFcitxWithProcess(
"dbus-send",
[
"--session",
"--dest=org.freedesktop.DBus",
"--type=method_call",
"--print-reply",
"/org/freedesktop/DBus",
"org.freedesktop.DBus.ListNames"
])
|| TryFindFcitxWithProcess(
"busctl",
[
"--user",
"--no-pager",
"--no-legend",
"list"
]);
}
private static bool TryFindFcitxWithProcess(string fileName, string[] arguments)
{
try
{
using var process = Process.Start(new ProcessStartInfo
{
FileName = fileName,
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true
}.AddArguments(arguments));
if (process is null)
{
return false;
}
if (!process.WaitForExit(1500))
{
process.Kill(entireProcessTree: true);
return false;
}
var output = process.StandardOutput.ReadToEnd();
return process.ExitCode == 0
&& output.Contains("org.fcitx.Fcitx", StringComparison.Ordinal);
}
catch
{
return false;
}
}
private static bool? ParseBooleanSwitch(string? value)
{
if (string.IsNullOrWhiteSpace(value))
{
return null;
}
return value.Trim().ToLowerInvariant() switch
{
"1" or "true" or "yes" or "on" or "enable" or "enabled" => true,
"0" or "false" or "no" or "off" or "disable" or "disabled" => false,
_ => null
};
}
private static bool IsLoongArch64()
{
return RuntimeInformation.ProcessArchitecture == Architecture.LoongArch64;
}
private static void SetEnvironmentVariableIfEmpty(string name, string value)
{
if (string.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable(name)))
{
Environment.SetEnvironmentVariable(name, value);
}
}
}
internal static class ProcessStartInfoExtensions
{
public static ProcessStartInfo AddArguments(this ProcessStartInfo startInfo, IEnumerable<string> arguments)
{
foreach (var argument in arguments)
{
startInfo.ArgumentList.Add(argument);
}
return startInfo;
}
}