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
|
using System;
using System.Collections.Generic;
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.Threading;
using Tango.FileSystem;
using Tango.FileSystem.Network;
using Tango.FSE.Common.Connection;
using Tango.FSE.Common.FileSystem;
using Tango.Transport;
namespace Tango.FSE.UI.FileSystem
{
public class DefaultFileSystemProvider : ExtendedObject, IFileSystemProvider
{
private IMachineProvider _machineProvider;
public DefaultFileSystemProvider(IMachineProvider machineProvider)
{
_machineProvider = machineProvider;
}
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;
if (item.Type == FileSystemItemType.File)
{
destination = Path.Combine(localTargetFolder, item.Name);
}
else if (item.Type == FileSystemItemType.File)
{
destination = Path.Combine(localTargetFolder, item.Name);
}
handler = new FileSystemHandler(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();
}
}
});
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)
{
handler.RaiseFailed(ex);
return;
}
long position = 0;
var tempFile = TemporaryManager.CreateFile();
while (position < downloadLength && !aborted)
{
if (handler.IsPaused)
{
Thread.Sleep(1000);
continue;
}
try
{
var response = await _machineProvider.MachineOperator.SendGenericRequest<ChunkDownloadRequest, ChunkDownloadResponse>(
new ChunkDownloadRequest()
{
MaxChunkSize = 1024 * 10,
OperationId = operationId,
Position = position,
}, new TransportRequestConfig() { Timeout = TimeSpan.FromSeconds(30), Priority = QueuePriority.Low });
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)
{
tempFile.Delete();
handler.RaiseFailed(ex);
return;
}
}
try
{
if (item.Type == FileSystemItemType.File)
{
File.Copy(tempFile, destination, true);
tempFile.Delete();
}
else if (item.Type == FileSystemItemType.Folder)
{
ZipFile.ExtractToDirectory(tempFile, destination);
tempFile.Delete();
}
}
catch (Exception ex)
{
handler.RaiseFailed(ex);
}
handler.RaiseCompleted();
});
return Task.FromResult(handler);
}
public Task<FileSystemHandler> Upload(string sourcePath, string remoteTargetFolder)
{
throw new NotImplementedException();
}
}
}
|