-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMirror.cs
506 lines (446 loc) · 19 KB
/
Mirror.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.AccessControl;
using DokanNet;
using FileAccess = DokanNet.FileAccess;
namespace Mirror
{
internal class Mirror : IDokanOperations
{
static void Main(string[] args)
{
new Mirror("PATH_TO_MIRROR").Mount("MIRROR");
Console.ReadKey(true);
}
private readonly string _path;
private const FileAccess DataAccess = FileAccess.ReadData |
FileAccess.WriteData |
FileAccess.AppendData |
FileAccess.Execute |
FileAccess.GenericExecute |
FileAccess.GenericWrite |
FileAccess.GenericRead;
private const FileAccess DataWriteAccess = FileAccess.WriteData |
FileAccess.AppendData |
FileAccess.Delete |
FileAccess.GenericWrite;
public Mirror(string path)
{
if (!Directory.Exists(path))
throw new ArgumentException("path");
_path = path;
}
private string GetPath(string fileName)
{
return _path + fileName;
}
#region Implementation of IDokanOperations
public DokanError CreateFile(string fileName, FileAccess access, FileShare share, FileMode mode,
FileOptions options, FileAttributes attributes, DokanFileInfo info)
{
var path = GetPath(fileName);
bool pathExists = true;
bool pathIsDirectory = false;
bool readWriteAttributes = (access & DataAccess) == 0;
bool readAccess = (access & DataWriteAccess) == 0;
try
{
pathIsDirectory = File.GetAttributes(path).HasFlag(FileAttributes.Directory);
}
catch (IOException)
{
pathExists = false;
}
switch (mode)
{
case FileMode.Open:
if (pathExists)
{
if (readWriteAttributes || pathIsDirectory)
//check if only wants to read attributes,security info or open directory
{
info.IsDirectory = pathIsDirectory;
info.Context = new object();
// Must set it to someting if you return DokanError.ErrorSuccess
return DokanError.ErrorSuccess;
}
}
else
{
return DokanError.ErrorFileNotFound;
}
break;
case FileMode.CreateNew:
if (pathExists)
return DokanError.ErrorAlreadyExists;
break;
case FileMode.Truncate:
if (!pathExists)
return DokanError.ErrorFileNotFound;
break;
default:
break;
}
try
{
info.Context = new FileStream(path, mode,
readAccess
? System.IO.FileAccess.Read
: System.IO.FileAccess.ReadWrite, share, 4096, options);
}
catch (UnauthorizedAccessException) // Don't have access rights
{
return DokanError.ErrorAccessDenied;
}
return DokanError.ErrorSuccess;
}
public DokanError OpenDirectory(string fileName, DokanFileInfo info)
{
string path = GetPath(fileName);
if (!Directory.Exists(path))
{
return DokanError.ErrorPathNotFound;
}
try
{
new DirectoryInfo(path).EnumerateFileSystemInfos().Any(); // You can't list directory
}
catch (UnauthorizedAccessException)
{
return DokanError.ErrorAccessDenied;
}
return DokanError.ErrorSuccess;
}
public DokanError CreateDirectory(string fileName, DokanFileInfo info)
{
if (Directory.Exists(GetPath(fileName)))
return DokanError.ErrorAlreadyExists;
try
{
Directory.CreateDirectory(GetPath(fileName));
return DokanError.ErrorSuccess;
}
catch (UnauthorizedAccessException)
{
return DokanError.ErrorAccessDenied;
}
}
public DokanError Cleanup(string fileName, DokanFileInfo info)
{
if (info.Context != null && info.Context is FileStream)
{
(info.Context as FileStream).Dispose();
}
info.Context = null;
if (info.DeleteOnClose)
{
if (info.IsDirectory)
{
Directory.Delete(GetPath(fileName));
}
else
{
File.Delete(GetPath(fileName));
}
}
return DokanError.ErrorSuccess;
}
public DokanError CloseFile(string fileName, DokanFileInfo info)
{
if (info.Context != null && info.Context is FileStream)
{
(info.Context as FileStream).Dispose();
}
info.Context = null;
return DokanError.ErrorSuccess; // could recreate cleanup code hear but this is not called sometimes
}
public DokanError ReadFile(string fileName, byte[] buffer, out int bytesRead, long offset, DokanFileInfo info)
{
if (info.Context == null) // memory mapped read
{
using (var stream = new FileStream(GetPath(fileName), FileMode.Open, System.IO.FileAccess.Read))
{
stream.Position = offset;
bytesRead = stream.Read(buffer, 0, buffer.Length);
}
}
else // normal read
{
var stream = info.Context as FileStream;
stream.Position = offset;
bytesRead = stream.Read(buffer, 0, buffer.Length);
}
return DokanError.ErrorSuccess;
}
public DokanError WriteFile(string fileName, byte[] buffer, out int bytesWritten, long offset,
DokanFileInfo info)
{
if (info.Context == null)
{
using (var stream = new FileStream(GetPath(fileName), FileMode.Open, System.IO.FileAccess.Write))
{
stream.Position = offset;
stream.Write(buffer, 0, buffer.Length);
bytesWritten = buffer.Length;
}
}
else
{
var stream = info.Context as FileStream;
stream.Write(buffer, 0, buffer.Length);
bytesWritten = buffer.Length;
}
return DokanError.ErrorSuccess;
}
public DokanError FlushFileBuffers(string fileName, DokanFileInfo info)
{
try
{
((FileStream)(info.Context)).Flush();
return DokanError.ErrorSuccess;
}
catch (IOException)
{
return DokanError.ErrorDiskFull;
}
}
public DokanError GetFileInformation(string fileName, out FileInformation fileInfo, DokanFileInfo info)
{
// may be called with info.Context=null , but usually it isn't
string path = GetPath(fileName);
FileSystemInfo finfo = new FileInfo(path);
if (!finfo.Exists)
finfo = new DirectoryInfo(path);
fileInfo = new FileInformation
{
FileName = fileName,
Attributes = finfo.Attributes,
CreationTime = finfo.CreationTime,
LastAccessTime = finfo.LastAccessTime,
LastWriteTime = finfo.LastWriteTime,
Length = (finfo is FileInfo) ? ((FileInfo) finfo).Length : 0,
};
return DokanError.ErrorSuccess;
}
public DokanError FindFiles(string fileName, out IList<FileInformation> files, DokanFileInfo info)
{
files = new DirectoryInfo(GetPath(fileName)).GetFileSystemInfos().Select(finfo => new FileInformation
{
Attributes =
finfo.
Attributes,
CreationTime =
finfo.
CreationTime,
LastAccessTime =
finfo.
LastAccessTime,
LastWriteTime =
finfo.
LastWriteTime,
Length =
(finfo is
FileInfo)
? ((
FileInfo
) finfo
).
Length
: 0,
FileName =
finfo.Name,
}).ToArray();
return DokanError.ErrorSuccess;
}
public DokanError SetFileAttributes(string fileName, FileAttributes attributes, DokanFileInfo info)
{
try
{
File.SetAttributes(GetPath(fileName), attributes);
return DokanError.ErrorSuccess;
}
catch (UnauthorizedAccessException)
{
return DokanError.ErrorAccessDenied;
}
catch (FileNotFoundException)
{
return DokanError.ErrorFileNotFound;
}
catch (DirectoryNotFoundException)
{
return DokanError.ErrorPathNotFound;
}
}
public DokanError SetFileTime(string fileName, DateTime? creationTime, DateTime? lastAccessTime,
DateTime? lastWriteTime, DokanFileInfo info)
{
try
{
string path = GetPath(fileName);
if (creationTime.HasValue)
{
File.SetCreationTime(path, creationTime.Value);
}
if (lastAccessTime.HasValue)
{
File.SetCreationTime(path, lastAccessTime.Value);
}
if (lastWriteTime.HasValue)
{
File.SetCreationTime(path, lastWriteTime.Value);
}
return DokanError.ErrorSuccess;
}
catch (UnauthorizedAccessException)
{
return DokanError.ErrorAccessDenied;
}
catch (FileNotFoundException)
{
return DokanError.ErrorFileNotFound;
}
}
public DokanError DeleteFile(string fileName, DokanFileInfo info)
{
return File.Exists(GetPath(fileName)) ? DokanError.ErrorSuccess : DokanError.ErrorFileNotFound;
// we just check here if we could delete file the true deletion is in Cleanup
}
public DokanError DeleteDirectory(string fileName, DokanFileInfo info)
{
return Directory.EnumerateFileSystemEntries(GetPath(fileName)).Any()
? DokanError.ErrorDirNotEmpty
: DokanError.ErrorSuccess; // if dir is not empdy could not delete
}
public DokanError MoveFile(string oldName, string newName, bool replace, DokanFileInfo info)
{
string oldpath = GetPath(oldName);
string newpath = GetPath(newName);
if (!File.Exists(newpath))
{
info.Context = null;
File.Move(oldpath, newpath);
return DokanError.ErrorSuccess;
}
else if (replace)
{
info.Context = null;
if (!info.IsDirectory)
File.Delete(newpath);
File.Move(oldpath, newpath);
return DokanError.ErrorSuccess;
}
return DokanError.ErrorFileExists;
}
public DokanError SetEndOfFile(string fileName, long length, DokanFileInfo info)
{
try
{
((FileStream) (info.Context)).SetLength(length);
return DokanError.ErrorSuccess;
}
catch (IOException)
{
return DokanError.ErrorDiskFull;
}
}
public DokanError SetAllocationSize(string fileName, long length, DokanFileInfo info)
{
try
{
((FileStream) (info.Context)).SetLength(length);
return DokanError.ErrorSuccess;
}
catch (IOException)
{
return DokanError.ErrorDiskFull;
}
}
public DokanError LockFile(string fileName, long offset, long length, DokanFileInfo info)
{
try
{
((FileStream) (info.Context)).Lock(offset, length);
return DokanError.ErrorSuccess;
}
catch (IOException)
{
return DokanError.ErrorAccessDenied;
}
}
public DokanError UnlockFile(string fileName, long offset, long length, DokanFileInfo info)
{
try
{
((FileStream) (info.Context)).Unlock(offset, length);
return DokanError.ErrorSuccess;
}
catch (IOException)
{
return DokanError.ErrorAccessDenied;
}
}
public DokanError GetDiskFreeSpace(out long free, out long total, out long used, DokanFileInfo info)
{
var dinfo =
DriveInfo.GetDrives().Where(di => di.RootDirectory.Name == Path.GetPathRoot(_path)).Single();
used = dinfo.AvailableFreeSpace;
total = dinfo.TotalSize;
free = dinfo.TotalFreeSpace;
return DokanError.ErrorSuccess;
}
public DokanError GetVolumeInformation(out string volumeLabel, out FileSystemFeatures features,
out string fileSystemName, DokanFileInfo info)
{
volumeLabel = "DOKAN";
fileSystemName = "DOKAN";
features = FileSystemFeatures.CasePreservedNames | FileSystemFeatures.CaseSensitiveSearch |
FileSystemFeatures.PersistentAcls | FileSystemFeatures.SupportsRemoteStorage |
FileSystemFeatures.UnicodeOnDisk;
return DokanError.ErrorSuccess;
}
public DokanError GetFileSecurity(string fileName, out FileSystemSecurity security,
AccessControlSections sections, DokanFileInfo info)
{
try
{
security = info.IsDirectory
? (FileSystemSecurity) Directory.GetAccessControl(GetPath(fileName))
: File.GetAccessControl(GetPath(fileName));
return DokanError.ErrorSuccess;
}
catch (UnauthorizedAccessException)
{
security = null;
return DokanError.ErrorAccessDenied;
}
}
public DokanError SetFileSecurity(string fileName, FileSystemSecurity security, AccessControlSections sections,
DokanFileInfo info)
{
try
{
if (info.IsDirectory)
{
Directory.SetAccessControl(GetPath(fileName), (DirectorySecurity) security);
}
else
{
File.SetAccessControl(GetPath(fileName), (FileSecurity) security);
}
return DokanError.ErrorSuccess;
}
catch (UnauthorizedAccessException)
{
return DokanError.ErrorAccessDenied;
}
}
public DokanError Unmount(DokanFileInfo info)
{
return DokanError.ErrorSuccess;
}
#endregion
}
}