-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackgroundCopyError.cs
341 lines (255 loc) · 9.25 KB
/
BackgroundCopyError.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
//
// @(#) BackgroundCopyError.cs
//
// Project: usis.Net.Bits
// System: Microsoft Visual Studio 2022
// Author: Udo Schäfer
//
// Copyright (c) 2017-2023 usis GmbH. All rights reserved.
using System;
using System.Runtime.InteropServices;
using System.Threading;
using usis.Net.Bits.Interop;
namespace usis.Net.Bits
{
// -------------------------
// BackgroundCopyError class
// -------------------------
/// <summary>
/// Provides informations about the cause of an error and if the transfer
/// process can proceed.
/// </summary>
public sealed class BackgroundCopyError : IDisposable
{
#region constants
private const int FallbackLanguageCodeId = 0x0c00;
#endregion
#region fields
private IBackgroundCopyError? interop;
#endregion
#region construction
// ------------
// construction
// ------------
internal BackgroundCopyError(BackgroundCopyManager manager, IBackgroundCopyError i)
{
Manager = manager;
interop = i ?? throw new ArgumentNullException(nameof(i));
}
#endregion
#region IDisposable implementation
// --------------
// Dispose method
// --------------
private bool disposed; // To detect redundant calls
/// <summary>
/// Performs application-defined tasks associated with freeing,
/// releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
if (!disposed)
{
if (interop != null) { _ = Marshal.ReleaseComObject(interop); interop = null; }
disposed = true;
}
GC.SuppressFinalize(this);
}
// ---------
// finalizer
// ---------
/// <summary>
/// Finalizes an instance of the <see cref="BackgroundCopyError"/>
/// class.
/// </summary>
~BackgroundCopyError()
{
Dispose();
}
#endregion
#region properties
#region public properties
// ----------------
// Context property
// ----------------
/// <summary>
/// Gets the context in which the error occurred.
/// </summary>
/// <value>
/// The context in which the error occurred.
/// </value>
public BackgroundCopyErrorContext Context => Manager.InvokeComMethod(() =>
{
Interface.GetError(out var context, out var code);
return context;
});
// -------------
// Code property
// -------------
/// <summary>
/// Gets the error code of the error that occurred.
/// </summary>
/// <value>
/// The error code of the error that occurred.
/// </value>
public int Code => Manager.InvokeComMethod(() =>
{
Interface.GetError(out var context, out var code);
return code;
});
// --------------------
// Description property
// --------------------
/// <summary>
/// Gets the error text associated with the error.
/// </summary>
/// <value>
/// The error text associated with the error.
/// </value>
public string? Description => GetErrorDescription(Thread.CurrentThread.CurrentCulture.LCID);
// ---------------------------
// ContextDescription property
// ---------------------------
/// <summary>
/// Gets a description of the context in which the error occurred.
/// </summary>
/// <value>
/// A description of the context in which the error occurred.
/// </value>
public string? ContextDescription => GetErrorContextDescription(Thread.CurrentThread.CurrentCulture.LCID);
// -----------------
// Protocol property
// -----------------
/// <summary>
/// Gets the protocol used to transfer the file.
/// </summary>
/// <value>
/// The protocol used to transfer the file.
/// </value>
public string Protocol => Manager.InvokeComMethod(Interface.GetProtocol);
#endregion
#region private properties
// ----------------
// Manager property
// ----------------
private BackgroundCopyManager Manager { get; }
// ------------------
// Interface property
// ------------------
private IBackgroundCopyError Interface => interop ?? throw new ObjectDisposedException(nameof(BackgroundCopyError));
#endregion
#endregion
#region methods
// -------------------
// RetrieveFile method
// -------------------
/// <summary>
/// Retrieves the file object associated with the error.
/// </summary>
/// <returns>The file object associated with the error.</returns>
public BackgroundCopyFile RetrieveFile() => new(Manager, Manager.InvokeComMethod(Interface.GetFile));
#endregion
#region private methods
// --------------------------
// GetErrorDescription method
// --------------------------
private string? GetErrorDescription(int lcid)
{
string? description = null;
var result = Manager.InvokeComMethod(() => Interface.GetErrorDescription(lcid, out description));
return result == HResult.Ok
? description
: result is Win32Error.ERROR_MUI_FILE_NOT_LOADED or Win32Error.ERROR_MUI_FILE_NOT_FOUND
? GetErrorDescription(FallbackLanguageCodeId)
: throw new BackgroundCopyException(Strings.FailedErrorDescription, result);
}
// ---------------------------------
// GetErrorContextDescription method
// ---------------------------------
private string? GetErrorContextDescription(int lcid)
{
string? description = null;
var result = Manager.InvokeComMethod(() => Interface.GetErrorContextDescription(lcid, out description));
return result == HResult.Ok
? description
: result is Win32Error.ERROR_MUI_FILE_NOT_LOADED or Win32Error.ERROR_MUI_FILE_NOT_FOUND
? GetErrorContextDescription(FallbackLanguageCodeId)
: throw new BackgroundCopyException(Strings.FailedErrorDescription, result);
}
#endregion
}
#region BackgroundCopyErrorInfo class
// -----------------------------
// BackgroundCopyErrorInfo class
// -----------------------------
/// <summary>
/// Provides informations about an error.
/// </summary>
public sealed class BackgroundCopyErrorInfo
{
#region construction
// ------------
// construction
// ------------
internal BackgroundCopyErrorInfo(BackgroundCopyError error)
{
Code = error.Code;
Description = error.Description;
}
#endregion
// -------------
// Code property
// -------------
/// <summary>
/// Gets the error code of the error that occurred.
/// </summary>
/// <value>
/// The error code of the error that occurred.
/// </value>
public int Code { get; }
// --------------------
// Description property
// --------------------
/// <summary>
/// Gets the error text associated with the error.
/// </summary>
/// <value>
/// The error text associated with the error.
/// </value>
public string? Description { get; }
}
#endregion
#region BackgroundCopyErrorEventArgs class
// ----------------------------------
// BackgroundCopyErrorEventArgs class
// ----------------------------------
/// <summary>
/// Provides arguments for the <see cref="BackgroundCopyJob.Failed"/> event.
/// </summary>
/// <seealso cref="EventArgs"/>
public class BackgroundCopyErrorEventArgs : EventArgs
{
#region construction
// ------------
// construction
// ------------
internal BackgroundCopyErrorEventArgs(BackgroundCopyError error) => Error = error;
#endregion
#region properties
// --------------
// Error property
// --------------
/// <summary>
/// Gets the error that caused the
/// <see cref="BackgroundCopyJob.Failed"/> event.
/// </summary>
/// <value>
/// The error that caused the <see cref="BackgroundCopyJob.Failed"/>
/// event.
/// </value>
public BackgroundCopyError Error { get; }
#endregion
}
#endregion
}
// eof "BackgroundCopyError.cs"