This repository has been archived by the owner on May 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFileWatcher.cs
430 lines (374 loc) · 14.6 KB
/
FileWatcher.cs
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
using SteamFriendsPatcher.Forms;
using SteamFriendsPatcher.Properties;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Automation;
using static SteamFriendsPatcher.Program;
using static SteamFriendsPatcher.Utilities;
namespace SteamFriendsPatcher
{
internal class FileWatcher
{
// FileSystemWatchers
public static FileSystemWatcher cacheWatcher;
public static FileSystemWatcher crashWatcher;
public static FileSystemWatcher libraryWatcher;
public static FileStream cacheLock;
public static bool scannerExists;
public static bool friendslistWatcherExists;
public static string libraryRootCss
{
get
{
string cssdir = Path.Combine(LibraryUIDir, "css");
if (!File.Exists(Path.Combine(cssdir, Settings.Default.libraryRootCss)))
{
string css_5 = "5.css";
string css_6 = "6.css";
Settings.Default.libraryRootCss = File.Exists(Path.Combine(cssdir, css_6)) ? css_6 : css_5;
}
return Settings.Default.libraryRootCss;
}
set => Settings.Default.libraryRootCss = value;
}
private static readonly object ScannerLock = new object();
private static readonly MainWindow Main = App.MainWindowRef;
private static readonly List<string> PendingCacheFiles = new List<string>();
// location of Steam's CEF Cache
private static readonly string SteamCacheDir =
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
"Steam\\htmlcache\\Cache\\");
public static void ToggleCacheScanner(bool isEnabled)
{
lock (ScannerLock)
{
Main.ToggleButtons(false);
DirectoryInfo cacheDir;
if (!Directory.Exists(SteamCacheDir))
{
cacheDir = Directory.CreateDirectory(SteamCacheDir);
cacheDir.Refresh();
}
else
{
cacheDir = new DirectoryInfo(SteamCacheDir);
}
if (scannerExists)
{
if (cacheWatcher != null)
{
cacheWatcher.EnableRaisingEvents = isEnabled;
}
if (crashWatcher != null)
{
crashWatcher.EnableRaisingEvents = isEnabled;
}
if (libraryWatcher != null)
{
libraryWatcher.EnableRaisingEvents = isEnabled;
}
scannerExists = isEnabled;
if (!isEnabled)
{
cacheLock.Dispose();
if (File.Exists(Path.Combine(SteamCacheDir, "tmp.lock")))
{
File.Delete(Path.Combine(SteamCacheDir, "tmp.lock"));
}
}
Automation.RemoveAllEventHandlers();
friendslistWatcherExists = false;
Print("Cache Watcher " + (isEnabled ? "Started" : "Stopped") + ".");
Main.ToggleButtons(true);
return;
}
if (!isEnabled)
{
return;
}
for (int i = 0; i < 10; i++)
{
try
{
cacheLock = new FileStream(Path.Combine(SteamCacheDir, "tmp.lock"), FileMode.Create,
FileAccess.ReadWrite, FileShare.None);
}
catch
{
Print("Windows is dumb.", LogLevel.Debug);
Print("Does cache directory exist: " + cacheDir.Exists, LogLevel.Debug);
Task.Delay(TimeSpan.FromSeconds(1)).Wait();
continue;
}
break;
}
if (!File.Exists(Path.Combine(SteamCacheDir, "tmp.lock")))
{
Print("Could not lock Cache. Scanner can not be started.", LogLevel.Error);
return;
}
StartFriendsListWatcher();
StartCrashScanner();
if (Settings.Default.patchLibraryBeta)
{
Directory.CreateDirectory(Path.Combine(LibraryUIDir, "css"));
StartLibraryScanner();
}
cacheWatcher = new FileSystemWatcher
{
Path = SteamCacheDir,
NotifyFilter = NotifyFilters.LastAccess
| NotifyFilters.LastWrite
| NotifyFilters.FileName
| NotifyFilters.Size,
Filter = "f_*"
};
cacheWatcher.Created += CacheWatcher_Changed;
cacheWatcher.Changed += CacheWatcher_Changed;
_ = GetLatestFriendsCss();
cacheWatcher.EnableRaisingEvents = true;
scannerExists = true;
Print("Cache Watcher Started.");
Main.ToggleButtons(true);
}
}
private static void StartCrashScanner()
{
if (!Directory.Exists(steamDir))
{
Print("Steam directory not found.", LogLevel.Warning);
return;
}
crashWatcher = new FileSystemWatcher
{
Path = steamDir,
NotifyFilter = NotifyFilters.LastAccess
| NotifyFilters.LastWrite
| NotifyFilters.FileName,
Filter = ".crash"
};
crashWatcher.Created += CrashWatcher_Event;
crashWatcher.Changed += CrashWatcher_Event;
crashWatcher.Deleted += CrashWatcher_Event;
crashWatcher.EnableRaisingEvents = true;
Print("Crash scanner started.", LogLevel.Debug);
}
private static void CrashWatcher_Event(object sender, FileSystemEventArgs e)
{
switch (e.ChangeType)
{
case WatcherChangeTypes.Changed:
case WatcherChangeTypes.Created:
{
Print("Steam start detected.", LogLevel.Debug);
GetLatestFriendsCss();
if (scannerExists)
{
StartFriendsListWatcher();
}
break;
}
case WatcherChangeTypes.Deleted:
Print("Steam graceful shutdown detected.", LogLevel.Debug);
friendslistWatcherExists = false;
Automation.RemoveAllEventHandlers();
break;
case WatcherChangeTypes.Renamed:
break;
case WatcherChangeTypes.All:
break;
default:
break;
}
}
private static void StartLibraryScanner()
{
if (!Directory.Exists(steamDir))
{
Print("Steam directory not found.", LogLevel.Warning);
return;
}
libraryWatcher = new FileSystemWatcher
{
Path = Path.Combine(LibraryUIDir, "css"),
NotifyFilter = NotifyFilters.LastAccess
| NotifyFilters.LastWrite
| NotifyFilters.FileName,
Filter = "*.css"
};
libraryWatcher.Created += LibraryWatcher_Event;
libraryWatcher.Changed += LibraryWatcher_Event;
libraryWatcher.EnableRaisingEvents = true;
Print("Library scanner started.", LogLevel.Debug);
}
private static void LibraryWatcher_Event(object sender, FileSystemEventArgs e)
{
Print($"New library file found: {e.Name}", LogLevel.Debug);
if (e.Name != Settings.Default.libraryRootCss && e.Name != libraryRootCss)
{
return;
}
switch (e.ChangeType)
{
case WatcherChangeTypes.Changed:
case WatcherChangeTypes.Created:
{
Print("Library change detected.", LogLevel.Debug);
Task.Delay(TimeSpan.FromSeconds(5)).Wait();
PatchLibrary();
break;
}
}
}
private static void StartFriendsListWatcher()
{
if (friendslistWatcherExists || Process.GetProcessesByName("Steam").FirstOrDefault() == null)
{
return;
}
friendslistWatcherExists = true;
Automation.AddAutomationEventHandler(WindowPattern.WindowOpenedEvent, AutomationElement.RootElement,
TreeScope.Children, (sender, e) =>
{
if (!(sender is AutomationElement element))
{
return;
}
try
{
if (element.Current.ClassName == "SDL_app")
{
GetLatestFriendsCss();
}
}
catch (ElementNotAvailableException)
{
}
});
}
private static void CacheWatcher_Changed(object sender, FileSystemEventArgs e)
{
if (PendingCacheFiles.Contains(e.Name) || (!updatePending &&
friendsCssCrcs[0] == null && friendsCssCrcs[1] == null))
{
return;
}
PendingCacheFiles.Add(e.Name);
var t = new Thread(ProcessCacheFileEvent);
t.Start(e);
}
private static void ProcessCacheFileEvent(object obj)
{
while (updatePending)
{
Task.Delay(TimeSpan.FromMilliseconds(20)).Wait();
}
if (!(obj is FileSystemEventArgs e))
{
return;
}
Print($"New file found: {e.Name}", LogLevel.Debug);
DateTime lastAccess, lastWrite;
long size;
var timer = new Stopwatch();
timer.Start();
do
{
lastAccess = File.GetLastAccessTime(e.FullPath);
lastWrite = File.GetLastWriteTime(e.FullPath);
size = new FileInfo(e.FullPath).Length;
Task.Delay(TimeSpan.FromMilliseconds(500)).Wait();
} while ((lastAccess != File.GetLastAccessTime(e.FullPath)
|| lastWrite != File.GetLastWriteTime(e.FullPath)
|| size != new FileInfo(e.FullPath).Length) && timer.Elapsed < TimeSpan.FromSeconds(15));
timer.Stop();
if (timer.Elapsed > TimeSpan.FromSeconds(15))
{
Print($"{e.Name} kept changing, blacklisting...", LogLevel.Debug);
return;
}
timer.Restart();
while (!IsFileReady(e.FullPath) && timer.Elapsed < TimeSpan.FromSeconds(15))
{
Task.Delay(TimeSpan.FromMilliseconds(20)).Wait();
}
timer.Stop();
if (timer.Elapsed > TimeSpan.FromSeconds(15))
{
Print($"{e.Name} could not be read, blacklisting...", LogLevel.Debug);
return;
}
for (int i = 0; i < friendsCssUrls.Count; i++)
{
try
{
if (CompareCRC(e.FullPath, friendsCssCrcs.ElementAt(i)))
{
byte[] cachefile;
using (var f = new FileStream(e.FullPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
cachefile = new byte[f.Length];
_ = f.Read(cachefile, 0, cachefile.Length);
}
PatchCacheFile(e.FullPath, Decompress(cachefile), i);
}
else
{
Print($"{e.Name} did not match.", LogLevel.Debug);
}
}
catch
{
Task.Delay(TimeSpan.FromSeconds(2)).Wait();
if (!File.Exists(e.FullPath))
{
continue;
}
Print($"Error opening file {e.Name}, retrying.", LogLevel.Debug);
_ = PendingCacheFiles.Remove(e.Name);
if (PendingCacheFiles.Contains(e.Name))
{
Print($"Multiple occurrences of {e.Name} found in list, removing all...", LogLevel.Debug);
do
{
PendingCacheFiles.Remove(e.Name);
} while (PendingCacheFiles.Contains(e.Name));
}
ProcessCacheFileEvent(e);
continue;
}
}
_ = PendingCacheFiles.Remove(e.Name);
if (!PendingCacheFiles.Contains(e.Name))
{
return;
}
Print($"Multiple occurrences of {e.Name} found in list, removing all...", LogLevel.Debug);
do
{
_ = PendingCacheFiles.Remove(e.Name);
} while (PendingCacheFiles.Contains(e.Name));
}
private static bool IsFileReady(string filename)
{
// If the file can be opened for exclusive access it means that the file
// is no longer locked by another process.
try
{
using (FileStream inputStream = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.None))
{
return inputStream.Length > 0;
}
}
catch (Exception)
{
return false;
}
}
}
}