aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/FileSystem/DefaultFileSystemProvider.cs
blob: 48da65f161c3bf423b20d09a35bf31e6a53d7347 (plain)
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 : 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 targetFolderPath)
        {
            throw new NotImplementedException();
        }

        public Task<FileSystemHandler> Upload(string sourcePath, string targetPath)
        {
            throw new NotImplementedException();
        }
    }
}