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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
|
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Core.IO;
using Tango.Core.Threading;
using Tango.FileSystem;
using Tango.FileSystem.Network;
using Tango.FSE.Common.Connection;
using Tango.FSE.Common.FileSystem;
using Tango.Transport;
using Tango.Transport.Transporters;
using Tango.WebRTC;
namespace Tango.FSE.UI.FileSystem
{
public class DefaultFileSystemProvider : ExtendedObject, IFileSystemProvider
{
private IMachineProvider _machineProvider;
private BasicTransporter _webRtcTransporter;
private const string WEB_RTC_CHANNEL_NAME = "FileSystemChannel";
private const long MAX_CHUNK_SIZE = 1024 * 100;
private const long MIN_CHUNK_SIZE = 1024;
private const long MAX_CHUNK_SIZE_WEB_RTC = 1024 * 50;
private const int WEB_RTC_MAX_RETRIES = 8;
private List<FileSystemHandler> _activeHandlers;
private bool _enableWebRTC;
public bool EnableWebRTC
{
get { return _enableWebRTC; }
set { _enableWebRTC = value; RaisePropertyChangedAuto(); }
}
private bool _isWebRtcAvailable;
public bool IsWebRtcAvailable
{
get { return _isWebRtcAvailable; }
private set { _isWebRtcAvailable = value; RaisePropertyChangedAuto(); }
}
public DefaultFileSystemProvider(IMachineProvider machineProvider)
{
_activeHandlers = new List<FileSystemHandler>();
EnableWebRTC = true; //TODO: From Settings..
_machineProvider = machineProvider;
_machineProvider.MachineConnected += _machineProvider_MachineConnected;
_machineProvider.MachineDisconnected += _machineProvider_MachineDisconnected;
}
private async void _machineProvider_MachineDisconnected(object sender, MachineDisconnectedEventArgs e)
{
IsWebRtcAvailable = false;
foreach (var handler in _activeHandlers.ToList())
{
try
{
handler.RaiseFailed(new TransporterDisconnectedException("Machine disconnected."));
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
}
_activeHandlers.Clear();
if (_webRtcTransporter != null)
{
try
{
LogManager.Log("Machine disconnected. Disconnecting FileSystem WebRTC Transporter...");
await _webRtcTransporter.Disconnect();
}
catch (Exception ex)
{
LogManager.Log(ex, "Error while disconnecting FileSystem WebRTC Transporter.");
}
}
}
private async void _machineProvider_MachineConnected(object sender, MachineConnectedEventArgs e)
{
if (EnableWebRTC)
{
try
{
IsWebRtcAvailable = false;
await _machineProvider.MachineOperator.SendGenericRequest<InitWebRtcRequest, InitWebRtcResponse>(new InitWebRtcRequest()
{
DataChannelName = WEB_RTC_CHANNEL_NAME
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(60),
Priority = QueuePriority.Low
});
_webRtcTransporter = new BasicTransporter(new WebRtcTransportAdapter(_machineProvider.MachineOperator, WebRtcTransportAdapterMode.Active, WEB_RTC_CHANNEL_NAME));
_webRtcTransporter.UseKeepAlive = false;
_webRtcTransporter.ComponentName = "File System Active WebRTC Transporter";
await _webRtcTransporter.Connect();
IsWebRtcAvailable = true;
LogManager.Log("FileSystem via WebRTC is ready.");
}
catch (Exception ex)
{
IsWebRtcAvailable = false;
LogManager.Log(ex, "Error initializing FileSystem via WebRTC.");
}
}
}
public async Task<IFileSystemContainer> GetFolder(string path)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<GetFileSystemItemRequest, GetFileSystemItemResponse>(new GetFileSystemItemRequest()
{
Path = path
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(30),
});
return FileSystemItem.FromDTO(response.FileSystemItem) as IFileSystemContainer;
}
public async Task<IFileSystemContainer> GetSpecialFolder(Environment.SpecialFolder specialFolder)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<GetFileSystemItemRequest, GetFileSystemItemResponse>(new GetFileSystemItemRequest()
{
SpecialFolder = specialFolder
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(30),
});
return FileSystemItem.FromDTO(response.FileSystemItem) as IFileSystemContainer;
}
public async Task<IFileSystemContainer> GetThisPC()
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<GetFileSystemItemRequest, GetFileSystemItemResponse>(new GetFileSystemItemRequest()
{
//No parameters at all
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(30),
});
return FileSystemItem.FromDTO(response.FileSystemItem) as IFileSystemContainer;
}
public Task<FileSystemHandler> Download(FileSystemItem item, string localTargetFolder)
{
String operationId = String.Empty;
String destination = String.Empty;
long downloadLength = 0;
bool aborted = false;
FileSystemHandler handler = null;
destination = Path.Combine(localTargetFolder, item.Name);
handler = new FileSystemHandler(item.Type == FileSystemItemType.Folder ? FileSystemHandlerType.FolderDownload : FileSystemHandlerType.FileDownload, item, destination, async () =>
{
if (!aborted)
{
aborted = true;
try
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<AbortOperationRequest, AbortOperationResponse>(
new AbortOperationRequest()
{
OperationId = operationId
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(30) });
}
catch (Exception ex)
{
LogManager.Log(ex, "Error aborting the download operation.");
}
finally
{
handler.RaiseAborted();
}
}
});
_activeHandlers.Add(handler);
ThreadFactory.StartNew(async () =>
{
try
{
if (item.Type == FileSystemItemType.File)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<FileDownloadRequest, FileDownloadResponse>(
new FileDownloadRequest()
{
Path = item.Path
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(20) });
operationId = response.OperationId;
downloadLength = response.Length;
handler.OperationId = operationId;
}
else if (item.Type == FileSystemItemType.Folder)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<FolderDownloadRequest, FolderDownloadResponse>(
new FolderDownloadRequest()
{
Path = item.Path
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(60) });
operationId = response.OperationId;
downloadLength = response.Length;
handler.OperationId = operationId;
}
else
{
throw new NotSupportedException("The requested file system item is not supported for downloading.");
}
}
catch (Exception ex)
{
_activeHandlers.Remove(handler);
handler.RaiseFailed(ex);
return;
}
long position = 0;
bool webRtcFailed = false;
int webRtcRetries = WEB_RTC_MAX_RETRIES;
long dynamixMaxChunkSizeSignalR = MAX_CHUNK_SIZE;
var tempFile = TemporaryManager.CreateFile();
while (position < downloadLength && !aborted)
{
if (handler.IsPaused)
{
Thread.Sleep(1000);
continue;
}
try
{
ChunkDownloadResponse response = null;
ChunkDownloadRequest request = new ChunkDownloadRequest()
{
MaxChunkSize = MAX_CHUNK_SIZE,
OperationId = operationId,
Position = position,
};
if (_webRtcTransporter != null && _webRtcTransporter.State == TransportComponentState.Connected && EnableWebRTC && !webRtcFailed)
{
try
{
request.MaxChunkSize = MAX_CHUNK_SIZE_WEB_RTC;
response = await _webRtcTransporter.SendGenericRequest<ChunkDownloadRequest, ChunkDownloadResponse>(request, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(2),
Priority = QueuePriority.Low
});
webRtcRetries = WEB_RTC_MAX_RETRIES;
}
catch (Exception ex)
{
webRtcRetries--;
if (webRtcRetries == 0)
{
webRtcFailed = true;
LogManager.Log(ex, "WebRTC chunk download failed. Falling back to standard download...");
}
continue;
}
}
else
{
request.MaxChunkSize = dynamixMaxChunkSizeSignalR;
Stopwatch watch = new Stopwatch();
watch.Start();
response = await _machineProvider.MachineOperator.SendGenericRequest<ChunkDownloadRequest, ChunkDownloadResponse>(request, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(30),
Priority = QueuePriority.Low
});
watch.Stop();
if (watch.Elapsed.TotalSeconds < 1)
{
dynamixMaxChunkSizeSignalR += 1024 * 10;
}
else if (watch.Elapsed.TotalSeconds > 1)
{
dynamixMaxChunkSizeSignalR -= 1024 * 10;
}
dynamixMaxChunkSizeSignalR = Math.Max(dynamixMaxChunkSizeSignalR, MIN_CHUNK_SIZE);
}
using (FileStream fs = new FileStream(tempFile, FileMode.Append))
{
fs.Write(response.Data, 0, response.Data.Length);
}
position += response.Data.Length;
handler.InvalidateProgress(position, downloadLength);
}
catch (Exception ex)
{
_activeHandlers.Remove(handler);
tempFile.Delete();
handler.RaiseFailed(ex);
return;
}
}
if (!aborted)
{
try
{
if (item.Type == FileSystemItemType.File)
{
File.Copy(tempFile, destination, true);
tempFile.Delete();
}
else if (item.Type == FileSystemItemType.Folder)
{
using (Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile(tempFile))
{
zip.ExtractAll(destination, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently);
}
tempFile.Delete();
}
handler.RaiseCompleted();
}
catch (Exception ex)
{
handler.RaiseFailed(ex);
}
}
else
{
tempFile.Delete();
}
_activeHandlers.Remove(handler);
});
return Task.FromResult(handler);
}
public Task<FileSystemHandler> Upload(String localSourcePath, FileSystemItem remoteFolder)
{
String operationId = String.Empty;
String destination = Path.Combine(remoteFolder.Path, Path.GetFileName(localSourcePath));
bool isFolder = false;
bool aborted = false;
FileSystemItem sourceItem = null;
if (Directory.Exists(localSourcePath))
{
sourceItem = new FolderItem() { Path = localSourcePath };
isFolder = true;
}
else if (File.Exists(localSourcePath))
{
sourceItem = new FileItem() { Path = localSourcePath };
isFolder = false;
}
else
{
throw new FileNotFoundException("Could not locate the local file or directory to upload.");
}
FileSystemHandler handler = null;
handler = new FileSystemHandler(isFolder ? FileSystemHandlerType.FolderUpload : FileSystemHandlerType.FileUpload, sourceItem, destination, async () =>
{
if (!aborted)
{
aborted = true;
try
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<AbortOperationRequest, AbortOperationResponse>(
new AbortOperationRequest()
{
OperationId = operationId
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(30) });
}
catch (Exception ex)
{
LogManager.Log(ex, "Error aborting the upload operation.");
}
finally
{
handler.RaiseAborted();
}
}
});
_activeHandlers.Add(handler);
ThreadFactory.StartNew(async () =>
{
try
{
if (!isFolder)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<FileUploadRequest, FileUploadResponse>(
new FileUploadRequest()
{
Path = destination
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(20) });
operationId = response.OperationId;
handler.OperationId = operationId;
}
else
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<FolderUploadRequest, FolderUploadResponse>(
new FolderUploadRequest()
{
Path = destination
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(20) });
operationId = response.OperationId;
handler.OperationId = operationId;
}
if (isFolder)
{
var originalPath = localSourcePath;
localSourcePath = TemporaryManager.CreateImaginaryFile().Path;
ZipFile.CreateFromDirectory(originalPath, localSourcePath);
}
}
catch (Exception ex)
{
_activeHandlers.Remove(handler);
handler.RaiseFailed(ex);
return;
}
long position = 0;
bool webRtcFailed = false;
int webRtcRetries = WEB_RTC_MAX_RETRIES;
long dynamixMaxChunkSizeSignalR = MAX_CHUNK_SIZE;
using (FileStream fs = new FileStream(localSourcePath, FileMode.Open))
{
while (position < fs.Length && !aborted)
{
fs.Position = position;
if (handler.IsPaused)
{
Thread.Sleep(1000);
continue;
}
try
{
ChunkUploadResponse response = null;
ChunkUploadRequest request = new ChunkUploadRequest()
{
OperationId = operationId,
};
if (_webRtcTransporter != null && _webRtcTransporter.State == TransportComponentState.Connected && EnableWebRTC && !webRtcFailed)
{
try
{
byte[] data = new byte[Math.Min(MAX_CHUNK_SIZE_WEB_RTC, fs.Length - fs.Position)];
fs.Read(data, 0, data.Length);
request.Data = data;
request.IsCompleted = fs.Position == fs.Length;
response = await _webRtcTransporter.SendGenericRequest<ChunkUploadRequest, ChunkUploadResponse>(request, new TransportRequestConfig()
{
Timeout = request.IsCompleted ? TimeSpan.FromSeconds(120) : TimeSpan.FromSeconds(2),
Priority = QueuePriority.Low
});
webRtcRetries = WEB_RTC_MAX_RETRIES;
}
catch (Exception ex)
{
webRtcRetries--;
if (webRtcRetries == 0)
{
webRtcFailed = true;
LogManager.Log(ex, "WebRTC chunk upload failed. Falling back to standard upload...");
}
continue;
}
}
else
{
byte[] data = new byte[Math.Min(dynamixMaxChunkSizeSignalR, fs.Length - fs.Position)];
fs.Read(data, 0, data.Length);
request.Data = data;
request.IsCompleted = fs.Position == fs.Length;
Stopwatch watch = new Stopwatch();
watch.Start();
response = await _machineProvider.MachineOperator.SendGenericRequest<ChunkUploadRequest, ChunkUploadResponse>(request, new TransportRequestConfig()
{
Timeout = request.IsCompleted ? TimeSpan.FromSeconds(120) : TimeSpan.FromSeconds(30),
Priority = QueuePriority.Low
});
watch.Stop();
if (watch.Elapsed.TotalSeconds < 1)
{
dynamixMaxChunkSizeSignalR += 1024 * 10;
}
else if (watch.Elapsed.TotalSeconds > 1)
{
dynamixMaxChunkSizeSignalR -= 1024 * 10;
}
dynamixMaxChunkSizeSignalR = Math.Max(dynamixMaxChunkSizeSignalR, MIN_CHUNK_SIZE);
}
position = fs.Position;
handler.InvalidateProgress(position, fs.Length);
}
catch (Exception ex)
{
_activeHandlers.Remove(handler);
handler.RaiseFailed(ex);
if (isFolder)
{
try
{
fs.Dispose();
File.Delete(localSourcePath);
}
catch { }
}
return;
}
}
if (!aborted)
{
handler.RaiseCompleted();
}
if (isFolder)
{
try
{
File.Delete(localSourcePath);
}
catch { }
}
}
_activeHandlers.Remove(handler);
});
return Task.FromResult(handler);
}
public async Task Copy(FileSystemItem source, FileSystemItem target)
{
if (source.Type == FileSystemItemType.Drive)
{
throw new NotSupportedException("The source file system item is not supported for copying.");
}
if (target.Type == FileSystemItemType.File)
{
throw new NotSupportedException("The target file system item is not a valid container.");
}
await _machineProvider.MachineOperator.SendGenericRequest<CopyRequest, CopyResponse>(new CopyRequest()
{
Source = source.Path,
Destination = Path.Combine(target.Path, source.Name)
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(120),
});
}
public async Task Move(FileSystemItem source, FileSystemItem target)
{
if (source.Type == FileSystemItemType.Drive)
{
throw new NotSupportedException("The source file system item is not supported for copying.");
}
if (target.Type == FileSystemItemType.File)
{
throw new NotSupportedException("The target file system item is not a valid container.");
}
await _machineProvider.MachineOperator.SendGenericRequest<MoveRequest, MoveResponse>(new MoveRequest()
{
Source = source.Path,
Destination = Path.Combine(target.Path, source.Name)
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromSeconds(120),
});
}
public async Task Rename(FileSystemItem source, string newName)
{
if (source.Type == FileSystemItemType.Drive)
{
throw new NotSupportedException("The source file system item is not supported for copying.");
}
if (newName.ToList().Exists(x => Path.GetInvalidFileNameChars().Contains(x)))
{
throw new ArgumentException("The new name contains invalid characters.");
}
await _machineProvider.MachineOperator.SendGenericRequest<MoveRequest, MoveResponse>(new MoveRequest()
{
Source = source.Path,
Destination = Path.Combine(Path.GetDirectoryName(source.Path), newName)
});
}
public async Task Delete(FileSystemItem item)
{
if (item.Type == FileSystemItemType.Drive)
{
throw new NotSupportedException("The source file system item is not supported for deletion.");
}
await _machineProvider.MachineOperator.SendGenericRequest<DeleteRequest, DeleteResponse>(new DeleteRequest()
{
Path = item.Path
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(120) });
}
public async Task<FolderItem> CreateFolder(FileSystemItem parent, string folderName)
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<CreateFolderRequest, CreateFolderResponse>(new CreateFolderRequest()
{
Path = parent.Path,
FolderName = folderName,
});
return FileSystemItem.FromDTO(response.FolderItem) as FolderItem;
}
public async Task<PerformDiskSpaceOptimizationResponse> PerformDiskSpaceOptimization()
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<PerformDiskSpaceOptimizationRequest, PerformDiskSpaceOptimizationResponse>(new PerformDiskSpaceOptimizationRequest()
{
}, new TransportRequestConfig()
{
Timeout = TimeSpan.FromMinutes(5)
});
return response;
}
}
}
|