-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfileCopyService.cs
More file actions
416 lines (364 loc) · 15 KB
/
Copy pathProfileCopyService.cs
File metadata and controls
416 lines (364 loc) · 15 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
414
415
416
using System.Buffers;
namespace FlatCopyProfileExporter;
internal static class ProfileCopyService
{
private static readonly string[] ExcludedProfileNames =
[
"All Users",
"Default",
"Default User",
"defaultuser0",
"Public"
];
public static IReadOnlyList<UserProfileInfo> FindUserProfiles()
{
string currentUserProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string usersRoot = Directory.GetParent(currentUserProfile)?.FullName
?? Path.Combine(Environment.GetEnvironmentVariable("SystemDrive") ?? "C:", "Users");
if (!Directory.Exists(usersRoot))
{
return [];
}
List<UserProfileInfo> profiles = [];
foreach (string directoryPath in Directory.EnumerateDirectories(usersRoot))
{
string profileName = Path.GetFileName(directoryPath);
if (ExcludedProfileNames.Contains(profileName, StringComparer.OrdinalIgnoreCase))
{
continue;
}
DirectoryInfo directoryInfo = new(directoryPath);
if (directoryInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
{
continue;
}
profiles.Add(new UserProfileInfo(profileName, directoryPath));
}
profiles.Sort((left, right) => string.Compare(left.Name, right.Name, StringComparison.OrdinalIgnoreCase));
return profiles;
}
public static CopyScanSummary BuildCopyScanSummary(
IReadOnlyList<UserProfileInfo> selectedProfiles,
IReadOnlyList<KnownFolderOption> selectedFolders,
string destinationRoot,
bool copyWholeProfile,
TextWriter logWriter,
CancellationToken cancellationToken,
IProgress<string>? statusProgress)
{
List<CopySourceRoot> roots = BuildCopyRoots(selectedProfiles, selectedFolders, destinationRoot, copyWholeProfile, logWriter);
int totalFiles = 0;
int totalDirectories = 0;
long totalBytes = 0;
foreach (CopySourceRoot root in roots)
{
cancellationToken.ThrowIfCancellationRequested();
statusProgress?.Report($"Scanning {root.DisplayPath}...");
foreach (CopyEntry entry in EnumerateCopyEntries(root, logWriter, cancellationToken))
{
if (entry.IsDirectory)
{
totalDirectories++;
continue;
}
totalFiles++;
totalBytes += entry.Length;
}
}
WriteLog(logWriter, $"Scan complete. Planned {totalFiles:N0} file(s), {totalDirectories:N0} directory(s), {totalBytes:N0} byte(s).");
return new CopyScanSummary(roots, totalFiles, totalDirectories, totalBytes);
}
public static async Task<CopyExecutionSummary> ExecuteCopyAsync(
CopyScanSummary scanSummary,
bool overwriteExisting,
TextWriter logWriter,
IProgress<CopyProgressInfo>? progress,
IProgress<string>? statusProgress,
CancellationToken cancellationToken)
{
int copiedFiles = 0;
int skippedFiles = 0;
int failedFiles = 0;
int filesProcessed = 0;
long bytesProcessed = 0;
foreach (CopySourceRoot root in scanSummary.Roots)
{
foreach (CopyEntry entry in EnumerateCopyEntries(root, logWriter, cancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
if (entry.IsDirectory)
{
Directory.CreateDirectory(entry.DestinationPath);
continue;
}
statusProgress?.Report($"Copying {entry.DisplayPath}");
try
{
Directory.CreateDirectory(Path.GetDirectoryName(entry.DestinationPath)!);
if (!overwriteExisting && File.Exists(entry.DestinationPath))
{
skippedFiles++;
bytesProcessed += entry.Length;
filesProcessed++;
WriteLog(logWriter, $"Skipped existing file: {entry.DestinationPath}");
progress?.Report(new CopyProgressInfo(bytesProcessed, scanSummary.TotalBytes, filesProcessed, scanSummary.TotalFiles, $"Skipped {entry.DisplayPath}"));
continue;
}
await CopyFileWithProgressAsync(
entry.SourcePath,
entry.DestinationPath,
overwriteExisting,
copiedInCurrentFile =>
{
progress?.Report(new CopyProgressInfo(
bytesProcessed + copiedInCurrentFile,
scanSummary.TotalBytes,
filesProcessed,
scanSummary.TotalFiles,
$"Copying {entry.DisplayPath}"));
},
cancellationToken);
copiedFiles++;
bytesProcessed += entry.Length;
filesProcessed++;
WriteLog(logWriter, $"Copied: {entry.SourcePath} -> {entry.DestinationPath} ({entry.Length:N0} bytes)");
progress?.Report(new CopyProgressInfo(bytesProcessed, scanSummary.TotalBytes, filesProcessed, scanSummary.TotalFiles, $"Copied {entry.DisplayPath}"));
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception exception)
{
failedFiles++;
bytesProcessed += entry.Length;
filesProcessed++;
WriteLog(logWriter, $"Failed: {entry.SourcePath} -> {entry.DestinationPath} :: {exception.Message}");
progress?.Report(new CopyProgressInfo(bytesProcessed, scanSummary.TotalBytes, filesProcessed, scanSummary.TotalFiles, $"Failed {entry.DisplayPath}"));
}
}
}
WriteLog(logWriter, $"Copy complete. Copied={copiedFiles:N0}, Skipped={skippedFiles:N0}, Failed={failedFiles:N0}, ProcessedBytes={bytesProcessed:N0}");
return new CopyExecutionSummary(copiedFiles, skippedFiles, failedFiles, bytesProcessed);
}
public static void WriteLog(TextWriter writer, string message)
{
writer.WriteLine($"[{DateTime.Now:yyyy-MM-dd HH:mm:ss}] {message}");
}
private static List<CopySourceRoot> BuildCopyRoots(
IReadOnlyList<UserProfileInfo> selectedProfiles,
IReadOnlyList<KnownFolderOption> selectedFolders,
string destinationRoot,
bool copyWholeProfile,
TextWriter logWriter)
{
List<CopySourceRoot> roots = [];
foreach (UserProfileInfo profile in selectedProfiles)
{
if (copyWholeProfile)
{
TryAddCopyRoot(
roots,
profile.ProfilePath,
Path.Combine(destinationRoot, profile.Name),
profile.Name,
logWriter);
continue;
}
foreach (KnownFolderOption folder in selectedFolders)
{
TryAddCopyRoot(
roots,
Path.Combine(profile.ProfilePath, folder.RelativePath),
Path.Combine(destinationRoot, profile.Name, folder.DisplayName),
$"{profile.Name}\\{folder.DisplayName}",
logWriter);
}
}
return roots;
}
private static void TryAddCopyRoot(
ICollection<CopySourceRoot> roots,
string sourceRoot,
string destinationRoot,
string displayPath,
TextWriter logWriter)
{
if (!Directory.Exists(sourceRoot))
{
WriteLog(logWriter, $"Skipped missing folder: {sourceRoot}");
return;
}
try
{
DirectoryInfo directoryInfo = new(sourceRoot);
if (directoryInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
{
WriteLog(logWriter, $"Skipped reparse-point directory: {sourceRoot}");
return;
}
roots.Add(new CopySourceRoot(sourceRoot, destinationRoot, displayPath));
}
catch (Exception exception)
{
WriteLog(logWriter, $"Unable to inspect directory {sourceRoot}: {exception.Message}");
}
}
private static IEnumerable<CopyEntry> EnumerateCopyEntries(
CopySourceRoot root,
TextWriter logWriter,
CancellationToken cancellationToken)
{
Stack<(string SourcePath, string DestinationPath)> pending = new();
pending.Push((root.SourcePath, root.DestinationPath));
while (pending.Count > 0)
{
cancellationToken.ThrowIfCancellationRequested();
(string currentSourcePath, string currentDestinationPath) = pending.Pop();
string currentDisplayPath = BuildDisplayPath(root.SourcePath, root.DisplayPath, currentSourcePath);
yield return new CopyEntry(currentSourcePath, currentDestinationPath, currentDisplayPath, 0, true);
IEnumerable<string> childDirectories;
try
{
childDirectories = Directory.EnumerateDirectories(currentSourcePath);
}
catch (Exception exception)
{
WriteLog(logWriter, $"Unable to enumerate directories under {currentSourcePath}: {exception.Message}");
continue;
}
foreach (string childDirectory in childDirectories)
{
cancellationToken.ThrowIfCancellationRequested();
try
{
DirectoryInfo directoryInfo = new(childDirectory);
if (directoryInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
{
WriteLog(logWriter, $"Skipped reparse-point directory: {childDirectory}");
continue;
}
pending.Push((childDirectory, Path.Combine(currentDestinationPath, directoryInfo.Name)));
}
catch (Exception exception)
{
WriteLog(logWriter, $"Unable to inspect directory {childDirectory}: {exception.Message}");
}
}
IEnumerable<string> childFiles;
try
{
childFiles = Directory.EnumerateFiles(currentSourcePath);
}
catch (Exception exception)
{
WriteLog(logWriter, $"Unable to enumerate files under {currentSourcePath}: {exception.Message}");
continue;
}
foreach (string childFile in childFiles)
{
cancellationToken.ThrowIfCancellationRequested();
CopyEntry? fileEntry = null;
try
{
FileInfo fileInfo = new(childFile);
string destinationFile = Path.Combine(currentDestinationPath, fileInfo.Name);
string displayPath = BuildDisplayPath(root.SourcePath, root.DisplayPath, childFile);
fileEntry = new CopyEntry(childFile, destinationFile, displayPath, fileInfo.Length, false);
}
catch (Exception exception)
{
WriteLog(logWriter, $"Unable to inspect file {childFile}: {exception.Message}");
}
if (fileEntry is not null)
{
yield return fileEntry;
}
}
}
}
private static string BuildDisplayPath(string sourceRoot, string displayRoot, string fullPath)
{
string relativePath = Path.GetRelativePath(sourceRoot, fullPath);
return relativePath == "."
? displayRoot
: $"{displayRoot}\\{relativePath}";
}
private static async Task CopyFileWithProgressAsync(
string sourcePath,
string destinationPath,
bool overwriteExisting,
Action<long> reportBytesCopied,
CancellationToken cancellationToken)
{
string destinationDirectory = Path.GetDirectoryName(destinationPath)
?? throw new InvalidOperationException($"Unable to determine the destination directory for {destinationPath}.");
string temporaryDestinationPath = Path.Combine(
destinationDirectory,
$"{Path.GetFileName(destinationPath)}.flatcopy-partial-{Guid.NewGuid():N}");
await using FileStream sourceStream = new(
sourcePath,
new FileStreamOptions
{
Access = FileAccess.Read,
Mode = FileMode.Open,
Share = FileShare.ReadWrite | FileShare.Delete,
Options = FileOptions.SequentialScan
});
await using FileStream destinationStream = new(
temporaryDestinationPath,
new FileStreamOptions
{
Access = FileAccess.Write,
Mode = FileMode.CreateNew,
Share = FileShare.None,
Options = FileOptions.SequentialScan
});
byte[] buffer = ArrayPool<byte>.Shared.Rent(1024 * 1024);
long totalCopied = 0;
try
{
while (true)
{
int bytesRead = await sourceStream.ReadAsync(buffer, cancellationToken);
if (bytesRead == 0)
{
break;
}
await destinationStream.WriteAsync(buffer.AsMemory(0, bytesRead), cancellationToken);
totalCopied += bytesRead;
reportBytesCopied(totalCopied);
}
await destinationStream.FlushAsync(cancellationToken);
File.SetLastWriteTimeUtc(temporaryDestinationPath, File.GetLastWriteTimeUtc(sourcePath));
FinalizeCopiedFile(temporaryDestinationPath, destinationPath, overwriteExisting);
}
finally
{
ArrayPool<byte>.Shared.Return(buffer, clearArray: false);
TryDeleteTemporaryFile(temporaryDestinationPath);
}
}
private static void FinalizeCopiedFile(string temporaryDestinationPath, string destinationPath, bool overwriteExisting)
{
if (overwriteExisting && File.Exists(destinationPath))
{
File.Replace(temporaryDestinationPath, destinationPath, null, ignoreMetadataErrors: true);
return;
}
File.Move(temporaryDestinationPath, destinationPath, overwriteExisting);
}
private static void TryDeleteTemporaryFile(string temporaryDestinationPath)
{
try
{
if (File.Exists(temporaryDestinationPath))
{
File.Delete(temporaryDestinationPath);
}
}
catch
{
}
}
}