-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidBootstrap.cs
More file actions
298 lines (260 loc) · 11.1 KB
/
Copy pathAndroidBootstrap.cs
File metadata and controls
298 lines (260 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
using GeneralUpdate.Avalonia.Android.Abstractions;
using GeneralUpdate.Avalonia.Android.Events;
using GeneralUpdate.Avalonia.Android.Models;
namespace GeneralUpdate.Avalonia.Android.Services;
public sealed class AndroidBootstrap : IAndroidBootstrap
{
private readonly IVersionComparer _versionComparer;
private readonly IUpdateDownloader _downloader;
private readonly IHashValidator _hashValidator;
private readonly IApkInstaller _apkInstaller;
private readonly IFileStorage _fileStorage;
private readonly IUpdateEventDispatcher _eventDispatcher;
private readonly IUpdateLogger _logger;
private readonly SemaphoreSlim _operationGate = new(1, 1);
private bool _disposed;
private readonly object _sync = new();
private UpdateStateSnapshot _snapshot = new(UpdateState.None, UpdateFailureReason.None, null);
public AndroidBootstrap(
IVersionComparer versionComparer,
IUpdateDownloader downloader,
IHashValidator hashValidator,
IApkInstaller apkInstaller,
IFileStorage fileStorage,
IUpdateEventDispatcher? eventDispatcher = null,
IUpdateLogger? logger = null)
{
_versionComparer = versionComparer ?? throw new ArgumentNullException(nameof(versionComparer));
_downloader = downloader ?? throw new ArgumentNullException(nameof(downloader));
_hashValidator = hashValidator ?? throw new ArgumentNullException(nameof(hashValidator));
_apkInstaller = apkInstaller ?? throw new ArgumentNullException(nameof(apkInstaller));
_fileStorage = fileStorage ?? throw new ArgumentNullException(nameof(fileStorage));
_eventDispatcher = eventDispatcher ?? new ImmediateEventDispatcher();
_logger = logger ?? new NoOpUpdateLogger();
}
public event EventHandler<ValidateEventArgs>? AddListenerValidate;
public event EventHandler<DownloadProgressChangedEventArgs>? AddListenerDownloadProgressChanged;
public event EventHandler<UpdateCompletedEventArgs>? AddListenerUpdateCompleted;
public event EventHandler<UpdateFailedEventArgs>? AddListenerUpdateFailed;
public UpdateStateSnapshot GetSnapshot()
{
ThrowIfDisposed();
lock (_sync)
{
return _snapshot;
}
}
public async Task<UpdateCheckResult> ValidateAsync(UpdatePackageInfo packageInfo, string currentVersion, CancellationToken cancellationToken = default)
{
ThrowIfDisposed();
await _operationGate.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
cancellationToken.ThrowIfCancellationRequested();
SetState(UpdateState.Checking, UpdateFailureReason.None, "Checking for updates.");
if (string.IsNullOrWhiteSpace(currentVersion) || string.IsNullOrWhiteSpace(packageInfo.Version))
{
var invalid = new UpdateCheckResult
{
Success = false,
UpdateFound = false,
State = UpdateState.Failed,
FailureReason = UpdateFailureReason.InvalidMetadata,
Message = "Current version or target version is empty.",
PackageInfo = packageInfo,
CurrentVersion = currentVersion
};
HandleFailure(invalid);
return invalid;
}
if (!_versionComparer.TryCompare(currentVersion, packageInfo.Version, out var compare, out var error))
{
var failed = new UpdateCheckResult
{
Success = false,
UpdateFound = false,
State = UpdateState.Failed,
FailureReason = UpdateFailureReason.VersionComparisonFailed,
Message = error ?? "Failed to compare versions.",
PackageInfo = packageInfo,
CurrentVersion = currentVersion
};
HandleFailure(failed);
return failed;
}
if (compare > 0)
{
SetState(UpdateState.UpdateAvailable, UpdateFailureReason.None, "Update available.");
RaiseValidate(packageInfo, currentVersion);
return new UpdateCheckResult
{
Success = true,
UpdateFound = true,
State = UpdateState.UpdateAvailable,
FailureReason = UpdateFailureReason.None,
Message = "Update available.",
PackageInfo = packageInfo,
CurrentVersion = currentVersion
};
}
SetState(UpdateState.Completed, UpdateFailureReason.None, "No update available.");
return new UpdateCheckResult
{
Success = true,
UpdateFound = false,
State = UpdateState.Completed,
FailureReason = UpdateFailureReason.None,
Message = "No update available.",
PackageInfo = packageInfo,
CurrentVersion = currentVersion
};
}
finally
{
_operationGate.Release();
}
}
public async Task<UpdateOperationResult> DownloadAndVerifyAsync(UpdatePackageInfo packageInfo, CancellationToken cancellationToken = default)
{
ThrowIfDisposed();
await _operationGate.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
SetState(UpdateState.Downloading, UpdateFailureReason.None, "Downloading package.");
var downloadResult = await _downloader.DownloadAsync(
packageInfo,
progress => RaiseDownloadProgress(progress),
cancellationToken).ConfigureAwait(false);
if (!downloadResult.Success || string.IsNullOrWhiteSpace(downloadResult.FilePath))
{
HandleFailure(downloadResult);
return downloadResult;
}
if (packageInfo.FileSize > 0)
{
var actualLength = _fileStorage.GetFileLength(downloadResult.FilePath);
if (actualLength != packageInfo.FileSize)
{
_fileStorage.DeleteFile(downloadResult.FilePath);
var sizeFailed = new UpdateOperationResult
{
Success = false,
State = UpdateState.Failed,
FailureReason = UpdateFailureReason.FileIoError,
Message = $"Downloaded file size mismatch. Expected {packageInfo.FileSize}, actual {actualLength}.",
PackageInfo = packageInfo,
FilePath = downloadResult.FilePath
};
HandleFailure(sizeFailed);
return sizeFailed;
}
}
SetState(UpdateState.Verifying, UpdateFailureReason.None, "Validating package hash.");
var hashResult = await _hashValidator.ValidateSha256Async(downloadResult.FilePath, packageInfo.Sha256, cancellationToken).ConfigureAwait(false);
if (!hashResult.Success)
{
_fileStorage.DeleteFile(downloadResult.FilePath);
var failed = hashResult with
{
PackageInfo = packageInfo,
State = UpdateState.Failed,
FailureReason = hashResult.FailureReason == UpdateFailureReason.None ? UpdateFailureReason.HashMismatch : hashResult.FailureReason,
Message = hashResult.Message ?? "SHA256 validation failed."
};
HandleFailure(failed);
return failed;
}
var completed = new UpdateOperationResult
{
Success = true,
State = UpdateState.ReadyToInstall,
FailureReason = UpdateFailureReason.None,
Message = "Package downloaded and verified.",
PackageInfo = packageInfo,
FilePath = downloadResult.FilePath
};
SetState(completed.State, completed.FailureReason, completed.Message);
RaiseCompleted(completed);
return completed;
}
finally
{
_operationGate.Release();
}
}
public async Task<InstallResult> LaunchInstallerAsync(UpdatePackageInfo packageInfo, string apkFilePath, CancellationToken cancellationToken = default)
{
ThrowIfDisposed();
await _operationGate.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
cancellationToken.ThrowIfCancellationRequested();
SetState(UpdateState.Installing, UpdateFailureReason.None, "Launching installer.");
var result = await _apkInstaller.LaunchInstallAsync(packageInfo, apkFilePath, cancellationToken).ConfigureAwait(false);
if (result.Success)
{
SetState(UpdateState.Installing, UpdateFailureReason.None, result.Message ?? "Installer launched.");
RaiseCompleted(result);
}
else
{
HandleFailure(result);
}
return result;
}
finally
{
_operationGate.Release();
}
}
private void SetState(UpdateState state, UpdateFailureReason failureReason, string? message)
{
lock (_sync)
{
_snapshot = new UpdateStateSnapshot(state, failureReason, message);
}
}
private void HandleFailure(UpdateOperationResult result)
{
SetState(result.State == UpdateState.Canceled ? UpdateState.Canceled : UpdateState.Failed, result.FailureReason, result.Message);
_logger.LogError(result.Message ?? "Update failed.", result.Exception);
RaiseFailed(result);
}
private void RaiseValidate(UpdatePackageInfo packageInfo, string currentVersion)
{
var args = new ValidateEventArgs(packageInfo, currentVersion);
_eventDispatcher.Dispatch(() => AddListenerValidate?.Invoke(this, args));
}
private void RaiseDownloadProgress(DownloadProgressInfo progress)
{
var args = new DownloadProgressChangedEventArgs(progress);
_eventDispatcher.Dispatch(() => AddListenerDownloadProgressChanged?.Invoke(this, args));
}
private void RaiseCompleted(UpdateOperationResult result)
{
var args = new UpdateCompletedEventArgs(result);
_eventDispatcher.Dispatch(() => AddListenerUpdateCompleted?.Invoke(this, args));
}
private void RaiseFailed(UpdateOperationResult result)
{
var args = new UpdateFailedEventArgs(result);
_eventDispatcher.Dispatch(() => AddListenerUpdateFailed?.Invoke(this, args));
}
public void Dispose()
{
if (_disposed)
{
return;
}
_operationGate.Dispose();
if (_downloader is IDisposable disposableDownloader)
{
disposableDownloader.Dispose();
}
_disposed = true;
}
private void ThrowIfDisposed()
{
ObjectDisposedException.ThrowIf(_disposed, this);
}
}