-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplayModeService.cs
More file actions
413 lines (337 loc) · 11.1 KB
/
Copy pathDisplayModeService.cs
File metadata and controls
413 lines (337 loc) · 11.1 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
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace DisplayDeck;
public sealed class DisplayModeService
{
private readonly AppSettings _settings;
private readonly NativeDisplaySwitchingService _nativeDisplaySwitchingService = new();
private const int WM_CLOSE = 0x0010;
private const int WM_SYSCOMMAND = 0x0112;
private const int SC_CLOSE = 0xF060;
public DisplayModeService(AppSettings settings)
{
_settings = settings;
}
public async Task SwitchToProfileAsync(DisplayModeProfile profile)
{
await _nativeDisplaySwitchingService.ApplyProfileAsync(
profile,
_settings.CommandDelayMs
);
await Task.Delay(1000);
if (profile.CloseLauncherAfterSwitch)
{
CloseConfiguredApp(profile);
}
if (profile.LaunchAppAfterSwitch)
{
LaunchConfiguredApp(profile);
}
}
private static void LaunchConfiguredApp(DisplayModeProfile profile)
{
if (string.IsNullOrWhiteSpace(profile.LauncherPath))
{
return;
}
if (!File.Exists(profile.LauncherPath))
{
throw new FileNotFoundException("Launcher app was not found.", profile.LauncherPath);
}
string processName = GetLauncherProcessName(profile);
if (IsProcessRunning(processName))
{
return;
}
CommandRunner.StartProcess(profile.LauncherPath);
}
private static void CloseConfiguredApp(DisplayModeProfile profile)
{
var possibleNames = GetPossibleLauncherProcessNames(profile);
CloseMatchingWindowsByMessage(possibleNames);
Task.Delay(2000).Wait();
if (!AnyMatchingProcessStillRunning(possibleNames))
{
return;
}
CloseMatchingProcessesGracefully(possibleNames);
Task.Delay(2000).Wait();
if (!AnyMatchingProcessStillRunning(possibleNames))
{
return;
}
ForceKillByProcessNames(possibleNames);
Task.Delay(1000).Wait();
KillMatchingProcessesDotNet(possibleNames);
}
private static string GetLauncherProcessName(DisplayModeProfile profile)
{
if (!string.IsNullOrWhiteSpace(profile.LauncherProcessName))
{
return CleanProcessName(profile.LauncherProcessName);
}
if (!string.IsNullOrWhiteSpace(profile.LauncherPath))
{
return Path.GetFileNameWithoutExtension(profile.LauncherPath);
}
return "";
}
private static List<string> GetPossibleLauncherProcessNames(DisplayModeProfile profile)
{
var names = new List<string>();
string configuredName = GetLauncherProcessName(profile);
if (!string.IsNullOrWhiteSpace(configuredName))
{
names.Add(configuredName);
}
if (!string.IsNullOrWhiteSpace(profile.LauncherPath))
{
string pathName = Path.GetFileNameWithoutExtension(profile.LauncherPath);
if (!string.IsNullOrWhiteSpace(pathName))
{
names.Add(pathName);
}
}
names.Add("Winhanced");
names.Add("Winhance");
return names
.Where(x => !string.IsNullOrWhiteSpace(x))
.Select(CleanProcessName)
.Distinct(StringComparer.OrdinalIgnoreCase)
.ToList();
}
private static string CleanProcessName(string value)
{
return value
.Replace(".exe", "", StringComparison.OrdinalIgnoreCase)
.Trim();
}
private static bool IsProcessRunning(string processNameWithoutExe)
{
if (string.IsNullOrWhiteSpace(processNameWithoutExe))
{
return false;
}
return Process.GetProcessesByName(processNameWithoutExe).Length > 0;
}
private static bool AnyMatchingProcessStillRunning(List<string> possibleNames)
{
return GetMatchingProcesses(possibleNames).Any();
}
private static void CloseMatchingWindowsByMessage(List<string> possibleNames)
{
var matchingWindows = new List<IntPtr>();
EnumWindows((windowHandle, _) =>
{
if (windowHandle == IntPtr.Zero)
{
return true;
}
if (!IsWindowVisible(windowHandle))
{
return true;
}
GetWindowThreadProcessId(windowHandle, out uint processId);
if (processId == 0)
{
return true;
}
string windowTitle = GetWindowTitle(windowHandle);
try
{
using Process process = Process.GetProcessById((int)processId);
string processName = process.ProcessName ?? "";
string processPath = "";
try
{
processPath = process.MainModule?.FileName ?? "";
}
catch
{
processPath = "";
}
bool isMatch = possibleNames.Any(name =>
ContainsIgnoreCase(processName, name) ||
ContainsIgnoreCase(windowTitle, name) ||
ContainsIgnoreCase(processPath, name)
);
if (isMatch)
{
matchingWindows.Add(windowHandle);
}
}
catch
{
// Ignore inaccessible/system processes.
}
return true;
}, IntPtr.Zero);
foreach (IntPtr windowHandle in matchingWindows.Distinct())
{
try
{
PostMessage(windowHandle, WM_SYSCOMMAND, new IntPtr(SC_CLOSE), IntPtr.Zero);
PostMessage(windowHandle, WM_CLOSE, IntPtr.Zero, IntPtr.Zero);
}
catch
{
// Ignore and allow other close methods to continue.
}
}
}
private static void CloseMatchingProcessesGracefully(List<string> possibleNames)
{
foreach (Process process in GetMatchingProcesses(possibleNames))
{
try
{
if (!process.HasExited)
{
process.CloseMainWindow();
}
}
catch
{
// Ignore and continue to force-close fallback.
}
finally
{
process.Dispose();
}
}
}
private static void ForceKillByProcessNames(List<string> possibleNames)
{
foreach (string processNameWithoutExe in possibleNames)
{
if (string.IsNullOrWhiteSpace(processNameWithoutExe))
{
continue;
}
string exeName = processNameWithoutExe.EndsWith(".exe", StringComparison.OrdinalIgnoreCase)
? processNameWithoutExe
: processNameWithoutExe + ".exe";
try
{
var processStartInfo = new ProcessStartInfo
{
FileName = "taskkill",
Arguments = $"/f /t /im \"{exeName}\"",
UseShellExecute = false,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
using var process = Process.Start(processStartInfo);
process?.WaitForExit(3000);
}
catch
{
// Ignore and continue to .NET kill fallback.
}
}
}
private static void KillMatchingProcessesDotNet(List<string> possibleNames)
{
foreach (Process process in GetMatchingProcesses(possibleNames))
{
try
{
if (!process.HasExited)
{
process.Kill(entireProcessTree: true);
process.WaitForExit(3000);
}
}
catch
{
// Ignore. If it still will not close, it may be running elevated.
}
finally
{
process.Dispose();
}
}
}
private static List<Process> GetMatchingProcesses(List<string> possibleNames)
{
var matches = new List<Process>();
foreach (Process process in Process.GetProcesses())
{
try
{
if (process.HasExited)
{
process.Dispose();
continue;
}
string processName = process.ProcessName ?? "";
string mainWindowTitle = process.MainWindowTitle ?? "";
string processPath = "";
try
{
processPath = process.MainModule?.FileName ?? "";
}
catch
{
processPath = "";
}
bool isMatch = possibleNames.Any(name =>
ContainsIgnoreCase(processName, name) ||
ContainsIgnoreCase(mainWindowTitle, name) ||
ContainsIgnoreCase(processPath, name)
);
if (isMatch)
{
matches.Add(process);
}
else
{
process.Dispose();
}
}
catch
{
process.Dispose();
}
}
return matches;
}
private static string GetWindowTitle(IntPtr windowHandle)
{
int length = GetWindowTextLength(windowHandle);
if (length <= 0)
{
return "";
}
var builder = new StringBuilder(length + 1);
GetWindowText(windowHandle, builder, builder.Capacity);
return builder.ToString();
}
private static bool ContainsIgnoreCase(string value, string search)
{
if (string.IsNullOrWhiteSpace(value) || string.IsNullOrWhiteSpace(search))
{
return false;
}
return value.Contains(search, StringComparison.OrdinalIgnoreCase);
}
private delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
[DllImport("user32.dll")]
private static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
[DllImport("user32.dll")]
private static extern bool IsWindowVisible(IntPtr hWnd);
[DllImport("user32.dll")]
private static extern int GetWindowTextLength(IntPtr hWnd);
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
[DllImport("user32.dll")]
private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
[DllImport("user32.dll")]
private static extern bool PostMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
}