-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSophonPatchAsset.Update.cs
482 lines (431 loc) · 21.5 KB
/
SophonPatchAsset.Update.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
using Hi3Helper.Sophon.Helper;
using Hi3Helper.Sophon.Infos;
using Hi3Helper.Sophon.Structs;
using SharpHDiffPatch.Core;
using System;
using System.Buffers;
using System.IO;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
// ReSharper disable IdentifierTypo
// ReSharper disable CommentTypo
// ReSharper disable AccessToModifiedClosure
#nullable enable
namespace Hi3Helper.Sophon
{
public partial class SophonPatchAsset
{
public async Task ApplyPatchUpdateAsync(HttpClient client,
string inputDir,
string patchOutputDir,
bool removeOldAssets = true,
Action<long>? downloadReadDelegate = null,
Action<long>? diskWriteDelegate = null,
SophonDownloadSpeedLimiter? downloadSpeedLimiter = null,
CancellationToken token = default)
{
bool isRemove = SophonPatchMethod.Remove == PatchMethod;
bool isCopyOver = SophonPatchMethod.CopyOver == PatchMethod;
bool isPatchHDiff = SophonPatchMethod.Patch == PatchMethod;
string sourceFileNameToCheck = PatchMethod switch
{
SophonPatchMethod.Remove => OriginalFilePath,
SophonPatchMethod.DownloadOver => TargetFilePath,
SophonPatchMethod.Patch => OriginalFilePath,
SophonPatchMethod.CopyOver => TargetFilePath,
_ => throw new InvalidOperationException($"Unsupported patch method: {PatchMethod}")
};
string sourceFilePathToCheck = Path.Combine(inputDir, sourceFileNameToCheck);
if (isRemove)
{
if (!removeOldAssets)
{
return;
}
FileInfo removableAssetFileInfo = new FileInfo(sourceFilePathToCheck);
PerformPatchAssetRemove(removableAssetFileInfo);
return;
}
if (PatchMethod is SophonPatchMethod.DownloadOver or
SophonPatchMethod.CopyOver or
SophonPatchMethod.Patch &&
await IsFilePatched(inputDir, token))
{
diskWriteDelegate?.Invoke(TargetFileSize);
return;
}
if (!isCopyOver)
{
string sourceFileHashString = PatchMethod switch
{
SophonPatchMethod.Remove => OriginalFileHash,
SophonPatchMethod.DownloadOver => TargetFileHash,
SophonPatchMethod.Patch => OriginalFileHash,
_ => throw new InvalidOperationException($"Unsupported patch method: {PatchMethod}")
};
long sourceFileSizeToCheck = PatchMethod switch
{
SophonPatchMethod.Remove => OriginalFileSize,
SophonPatchMethod.DownloadOver => TargetFileSize,
SophonPatchMethod.Patch => OriginalFileSize,
_ => throw new InvalidOperationException($"Unsupported patch method: {PatchMethod}")
};
SophonChunk sourceFileToCheckAsChunk = new SophonChunk
{
ChunkHashDecompressed = Extension.HexToBytes(sourceFileHashString.AsSpan()),
ChunkName = sourceFileNameToCheck,
ChunkOffset = 0,
ChunkOldOffset = 0,
ChunkSize = sourceFileSizeToCheck,
ChunkSizeDecompressed = sourceFileSizeToCheck
};
FileInfo sourceFileInfoToCheck = new FileInfo(sourceFilePathToCheck);
// Check for the original file existence and length
bool isNeedCompleteDownload = !(sourceFileInfoToCheck is { Exists: true } &&
sourceFileInfoToCheck.Length == sourceFileSizeToCheck);
FileStream? sourceFileStreamToCheck = null;
try
{
// If the length check is passed, try check the hash of the file and compare it
if (!isNeedCompleteDownload)
{
// Open the stream, read it and check for the original file hash
sourceFileStreamToCheck = sourceFileInfoToCheck.Open(FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite);
isNeedCompleteDownload = !(sourceFileToCheckAsChunk.ChunkHashDecompressed.Length != 8 ?
await sourceFileToCheckAsChunk.CheckChunkMd5HashAsync(sourceFileStreamToCheck,
true,
token) :
await sourceFileToCheckAsChunk.CheckChunkXxh64HashAsync(OriginalFilePath,
sourceFileStreamToCheck,
sourceFileToCheckAsChunk.ChunkHashDecompressed,
true,
token));
// If it needs a complete download due to unmatched original file hash, then remove the file
if (isNeedCompleteDownload)
{
sourceFileStreamToCheck.Dispose();
PerformPatchAssetRemove(sourceFileInfoToCheck);
}
else
{
if (!isPatchHDiff)
{
diskWriteDelegate?.Invoke(TargetFileSize);
return;
}
}
}
// If the original file needs a download, then perform a DownloadOver patch method.
if (isNeedCompleteDownload)
{
PatchMethod = SophonPatchMethod.DownloadOver;
}
}
finally
{
#if NET6_0_OR_GREATER
if (sourceFileStreamToCheck != null)
{
await sourceFileStreamToCheck.DisposeAsync();
}
#else
sourceFileStreamToCheck?.Dispose();
#endif
}
}
Task writeDelegateTask = PatchMethod switch
{
SophonPatchMethod.DownloadOver => PerformPatchDownloadOver(client,
inputDir,
downloadReadDelegate,
diskWriteDelegate,
downloadSpeedLimiter,
token),
SophonPatchMethod.CopyOver => PerformPatchCopyOver(inputDir,
patchOutputDir,
diskWriteDelegate,
token),
SophonPatchMethod.Patch => PerformPatchHDiff(inputDir,
patchOutputDir,
diskWriteDelegate,
token),
_ => throw new InvalidOperationException($"Invalid operation while performing patch: {PatchMethod}")
};
await writeDelegateTask;
}
private async Task PerformPatchDownloadOver(HttpClient client,
string inputDir,
Action<long>? downloadReadDelegate,
Action<long>? diskWriteDelegate,
SophonDownloadSpeedLimiter? downloadSpeedLimiter,
CancellationToken token)
{
// Get the FileInfo and Path instance of the target file.
string targetFilePath = Path.Combine(inputDir, TargetFilePath);
FileInfo targetFileInfo = new FileInfo(targetFilePath);
string targetFilePathTemp = targetFilePath + ".temp";
FileInfo targetFileInfoTemp = new FileInfo(targetFilePathTemp);
// If the target temporary file has already exists, try to unassign read-only before creating new stream.
if (targetFileInfoTemp.Exists)
{
targetFileInfoTemp.IsReadOnly = false;
}
// Create target temporary file stream.
targetFileInfoTemp.Directory?.Create();
FileStream targetFileStreamTemp = targetFileInfoTemp.Open(FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite);
targetFileInfoTemp.Refresh();
try
{
// Get the target chunk info by copying and alter the base URL to the DownloadOver URL,
// then create a chunk from this SophonPatchAsset instance.
SophonChunksInfo targetChunkInfo = PatchInfo.CopyWithNewBaseUrl(TargetFileDownloadOverBaseUrl);
SophonChunk targetFileChunk = this.SophonPatchAssetAsChunk(false, true);
// Then perform a write operation to the file
await InnerWriteChunkCopyAsync(client,
targetFileStreamTemp,
targetFileChunk,
targetChunkInfo,
targetChunkInfo,
writeInfoDelegate: x =>
{
diskWriteDelegate?.Invoke(x);
},
downloadInfoDelegate: (read, write) =>
{
downloadReadDelegate?.Invoke(read);
},
downloadSpeedLimiter,
token: token);
}
finally
{
// Dispose the target temporary file stream and try to remove old target file (if exist)
targetFileStreamTemp.Dispose();
if (targetFileInfo.Exists)
{
targetFileInfo.IsReadOnly = false;
targetFileInfo.Refresh();
targetFileInfo.Delete();
}
// Then rename the temporary file to the actual file name
targetFileInfoTemp.MoveTo(targetFilePath);
}
}
private void PerformPatchAssetRemove(FileInfo originalFileInfo)
{
try
{
if (!originalFileInfo.Exists)
{
return;
}
originalFileInfo.IsReadOnly = false;
originalFileInfo.Refresh();
originalFileInfo.Delete();
this.PushLogDebug($"[Method: Remove] Removing asset file: {OriginalFilePath} is completed!");
}
catch (Exception ex)
{
this.PushLogError($"An error has occurred while deleting old asset: {originalFileInfo.FullName} | {ex}");
}
}
private async Task PerformPatchCopyOver(string inputDir,
string patchOutputDir,
Action<long>? diskWriteDelegate,
CancellationToken token)
{
PatchTargetProperty patchTargetProperty = PatchTargetProperty.Create(patchOutputDir, PatchNameSource, inputDir, TargetFilePath, PatchOffset, PatchChunkLength, true);
bool isUseCopyToStrategy =
#if NET6_0_OR_GREATER
PatchChunkLength <= 1 << 20
#else
false
#endif
;
string logMessage = $"[Method: CopyOver][Strategy: {(isUseCopyToStrategy ? "DirectCopyTo" : "BufferedCopy")}] Writing target file: {TargetFilePath} with offset: {PatchOffset:x8} and length: {PatchChunkLength:x8} from {PatchNameSource} is completed!";
try
{
if (patchTargetProperty.TargetFileTempStream == null)
{
#if NET6_0_OR_GREATER
ArgumentNullException.ThrowIfNull(patchTargetProperty.TargetFileTempStream,
#else
throw new ArgumentNullException(
#endif
nameof(patchTargetProperty.TargetFileTempStream));
}
if (patchTargetProperty.PatchChunkStream == null)
{
#if NET6_0_OR_GREATER
ArgumentNullException.ThrowIfNull(patchTargetProperty.PatchChunkStream,
#else
throw new ArgumentNullException(
#endif
nameof(patchTargetProperty.PatchChunkStream));
}
#if NET6_0_OR_GREATER
if (isUseCopyToStrategy)
{
await patchTargetProperty.PatchChunkStream.CopyToAsync(patchTargetProperty.TargetFileTempStream, token);
diskWriteDelegate?.Invoke(PatchChunkLength);
return;
}
#endif
byte[] buffer = ArrayPool<byte>.Shared.Rent(16 << 10);
try
{
int read;
while ((read = await patchTargetProperty.PatchChunkStream.ReadAsync(
#if NET6_0_OR_GREATER
buffer, token
#else
buffer, 0, buffer.Length, token
#endif
)) > 0)
{
await patchTargetProperty.TargetFileTempStream.WriteAsync(
#if NET6_0_OR_GREATER
buffer.AsMemory(0, read), token
#else
buffer, 0, read, token
#endif
);
diskWriteDelegate?.Invoke(read);
}
}
finally
{
ArrayPool<byte>.Shared.Return(buffer);
}
}
finally
{
this.PushLogDebug(logMessage);
patchTargetProperty.Dispose();
}
}
private async Task PerformPatchHDiff(string inputDir,
string patchOutputDir,
Action<long>? diskWriteDelegate,
CancellationToken token)
{
PatchTargetProperty patchTargetProperty = PatchTargetProperty.Create(patchOutputDir, PatchNameSource, inputDir, TargetFilePath, PatchOffset, PatchChunkLength, false);
string logMessage = $"[Method: PatchHDiff] Writing target file: {TargetFilePath} with offset: {PatchOffset:x8} and length: {PatchChunkLength:x8} from {PatchNameSource} is completed!";
string patchPath = patchTargetProperty.PatchFilePath;
string targetTempPath = patchTargetProperty.TargetFileTempInfo.FullName;
try
{
await Task.Factory
.StartNew(Impl, token, token, TaskCreationOptions.DenyChildAttach, TaskScheduler.Default)
.ConfigureAwait(false);
this.PushLogDebug(logMessage);
}
finally
{
patchTargetProperty.Dispose();
}
return;
void Impl(object? ctx)
{
HDiffPatch patcher = new HDiffPatch();
try
{
patcher.Initialize(CreateChunkStream);
string inputPath = Path.Combine(inputDir, OriginalFilePath);
patcher.Patch(inputPath, targetTempPath, true, diskWriteDelegate, (CancellationToken)ctx!, false, true);
}
catch (Exception ex)
{
this.PushLogDebug($"[Method: PatchHDiff] An error occurred while trying to perform patching on: {OriginalFilePath} -> {TargetFilePath}\r\n{ex}");
}
}
ChunkStream CreateChunkStream()
{
FileStream fileStream = File.Open(patchPath, FileMode.Open, FileAccess.Read, FileShare.Read);
ChunkStream chunkStream = new ChunkStream(fileStream, PatchOffset, PatchOffset + PatchChunkLength, true);
return chunkStream;
}
}
private async Task<bool> IsFilePatched(string inputPath, CancellationToken token)
{
string targetFilePath = Path.Combine(inputPath, TargetFilePath);
FileInfo targetFileInfo = new FileInfo(targetFilePath);
bool isSizeMatched = targetFileInfo.Exists && TargetFileSize == targetFileInfo.Length;
if (!isSizeMatched)
{
return false;
}
SophonChunk checkByHashChunk = new SophonChunk
{
ChunkHashDecompressed = Extension.HexToBytes(TargetFileHash.AsSpan()),
ChunkName = TargetFilePath,
ChunkSize = TargetFileSize,
ChunkSizeDecompressed = TargetFileSize,
ChunkOffset = 0,
ChunkOldOffset = 0,
};
using FileStream targetFileStream = targetFileInfo.Open(FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
bool isHashMatched = checkByHashChunk.ChunkHashDecompressed.Length == 8 ?
await checkByHashChunk.CheckChunkXxh64HashAsync(TargetFilePath,
targetFileStream,
checkByHashChunk.ChunkHashDecompressed,
true,
token) :
await checkByHashChunk.CheckChunkMd5HashAsync(targetFileStream,
true,
token);
return isHashMatched;
}
}
internal class PatchTargetProperty : IDisposable
{
private FileInfo TargetFileInfo { get; }
public FileInfo TargetFileTempInfo { get; }
public FileStream? TargetFileTempStream { get; }
public string PatchFilePath { get; }
private FileStream? PatchFileStream { get; }
public ChunkStream? PatchChunkStream { get; }
private PatchTargetProperty(string patchOutputDir, string patchNameSource, string inputDir, string targetFilePath, long patchOffset, long patchLength, bool createStream)
{
PatchFilePath = Path.Combine(patchOutputDir, patchNameSource);
targetFilePath = Path.Combine(inputDir, targetFilePath);
string targetFileTempPath = targetFilePath + ".temp";
TargetFileInfo = new FileInfo(targetFilePath);
TargetFileTempInfo = new FileInfo(targetFileTempPath);
TargetFileTempInfo.Directory?.Create();
if (TargetFileTempInfo.Exists)
{
TargetFileTempInfo.IsReadOnly = false;
TargetFileTempInfo.Refresh();
}
if (!File.Exists(PatchFilePath))
{
throw new FileNotFoundException($"Required patch file: {PatchFilePath} is not found!");
}
if (!createStream)
{
return;
}
long patchChunkEnd = patchOffset + patchLength;
TargetFileTempStream = TargetFileTempInfo.Open(FileMode.Create, FileAccess.Write, FileShare.Write);
PatchFileStream = File.Open(PatchFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
PatchChunkStream = new ChunkStream(PatchFileStream, patchOffset, patchChunkEnd);
}
public static PatchTargetProperty Create(string patchOutputDir, string patchNameSource, string inputDir, string targetFilePath, long patchOffset, long patchLength, bool createTempStream)
=> new(patchOutputDir, patchNameSource, inputDir, targetFilePath, patchOffset, patchLength, createTempStream);
public void Dispose()
{
PatchChunkStream?.Dispose();
PatchFileStream?.Dispose();
TargetFileTempStream?.Dispose();
TargetFileTempInfo.Refresh();
if (TargetFileInfo.Exists)
{
TargetFileInfo.IsReadOnly = false;
TargetFileInfo.Delete();
}
TargetFileTempInfo.MoveTo(TargetFileInfo.FullName);
}
}
}