-
Notifications
You must be signed in to change notification settings - Fork 61
/
FileReaderRef.cs
227 lines (188 loc) · 7.16 KB
/
FileReaderRef.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
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Blazor.FileReader
{
public interface IFileReaderRef
{
/// <summary>
/// Register for drop events on the source element
/// </summary>
/// <returns></returns>
Task RegisterDropEventsAsync();
/// <summary>
/// Unregister drop events on the source element
/// </summary>
/// <returns></returns>
Task UnregisterDropEventsAsync();
/// <summary>
/// Clears any value set on the source element
/// </summary>
/// <returns></returns>
Task ClearValue();
/// <summary>
/// Enumerates the currently selected file references
/// </summary>
/// <returns></returns>
Task<IEnumerable<IFileReference>> EnumerateFilesAsync();
}
public interface IFileReference
{
/// <summary>
/// Opens a stream to read the file
/// </summary>
/// <returns></returns>
Task<Stream> OpenReadAsync();
/// <summary>
/// Opens a base64-encoded string stream to read the file
/// </summary>
/// <returns></returns>
Task<IBase64Stream> OpenReadBase64Async();
/// <summary>
/// Read the file into memory using a single interop call and returns it as a MemoryStream.
/// Buffer size will be equal to the file size.
/// </summary>
/// <returns></returns>
Task<MemoryStream> CreateMemoryStreamAsync();
/// <summary>
/// Read the file into memory and returns it as a MemoryStream, using the specified buffersize.
/// </summary>
/// <returns></returns>
Task<MemoryStream> CreateMemoryStreamAsync(int bufferSize);
/// <summary>
/// Reads the available file metadata
/// </summary>
/// <returns></returns>
Task<IFileInfo> ReadFileInfoAsync();
}
public interface IBase64Stream : IDisposable
{
/// <summary>
/// Gets or sets the current byte position in the Stream.
/// </summary>
long Position { get; set; }
/// <summary>
/// Gets the length of the stream in bytes.
/// </summary>
long Length { get; }
Task<string> ReadAsync(int offset, int count, CancellationToken cancellationToken);
}
public interface IFileInfo
{
/// <summary>
/// Returns the name of the file referenced by the File object.
/// </summary>
string Name { get; }
/// <summary>
/// Returns the size of the file in bytes.
/// </summary>
long Size { get; }
/// <summary>
/// Returns the MIME type of the file.
/// </summary>
string Type { get; }
/// <summary>
/// Returns the last modified time of the file, in millisecond since the UNIX epoch (January 1st, 1970 at Midnight).
/// </summary>
long? LastModified { get; }
/// <summary>
/// Returns the last modified time of the file.
/// </summary>
DateTime? LastModifiedDate { get; }
}
internal class FileReaderRef : IFileReaderRef
{
public async Task<IEnumerable<IFileReference>> EnumerateFilesAsync() =>
Enumerable.Range(0, Math.Max(0, await this.FileReaderJsInterop.GetFileCount(this.ElementRef)))
.Select(index => (IFileReference)new FileReference(this, index));
public async Task RegisterDropEventsAsync() => await this.FileReaderJsInterop.RegisterDropEvents(this.ElementRef);
public async Task UnregisterDropEventsAsync() => await this.FileReaderJsInterop.UnregisterDropEvents(this.ElementRef);
public async Task ClearValue()
=> await this.FileReaderJsInterop.ClearValue(this.ElementRef);
public ElementReference ElementRef { get; private set; }
public FileReaderJsInterop FileReaderJsInterop { get; }
internal FileReaderRef(ElementReference elementRef, FileReaderJsInterop fileReaderJsInterop)
{
this.ElementRef = elementRef;
this.FileReaderJsInterop = fileReaderJsInterop;
}
}
internal class FileReference : IFileReference
{
private readonly FileReaderRef fileLoaderRef;
private readonly int index;
private IFileInfo fileInfo;
public FileReference(FileReaderRef fileLoaderRef, int index)
{
this.fileLoaderRef = fileLoaderRef;
this.index = index;
}
public Task<MemoryStream> CreateMemoryStreamAsync() {
return InnerCreateMemoryStreamAsync(null);
}
public Task<MemoryStream> CreateMemoryStreamAsync(int bufferSize)
{
return InnerCreateMemoryStreamAsync(bufferSize);
}
public Task<Stream> OpenReadAsync()
{
return this.fileLoaderRef.FileReaderJsInterop.OpenFileStream(this.fileLoaderRef.ElementRef, index);
}
public async Task<IFileInfo> ReadFileInfoAsync()
{
if (fileInfo == null)
{
fileInfo = await this.fileLoaderRef.FileReaderJsInterop.GetFileInfoFromElement(fileLoaderRef.ElementRef, index);
}
return fileInfo;
}
public async Task<IBase64Stream> OpenReadBase64Async()
{
return await this.fileLoaderRef.FileReaderJsInterop.OpenBase64Stream(fileLoaderRef.ElementRef, index);
}
private async Task<MemoryStream> InnerCreateMemoryStreamAsync(int? bufferSizeParam)
{
MemoryStream memoryStream;
var file = await ReadFileInfoAsync();
var bufferSize = bufferSizeParam.GetValueOrDefault((int)file.Size);
if (bufferSize < 1)
{
throw new InvalidOperationException("Unable to determine buffersize or provided buffersize was 0 or less");
}
else
{
memoryStream = new MemoryStream(bufferSize);
}
var buffer = new byte[bufferSize];
using (var fs = await OpenReadAsync())
{
int count;
while ((count = await fs.ReadAsync(buffer, 0, buffer.Length)) != 0)
{
await memoryStream.WriteAsync(buffer, 0, count);
}
}
memoryStream.Position = 0;
return memoryStream;
}
}
public class FileInfo : IFileInfo
{
private static readonly DateTime Epoch = new DateTime(1970, 01, 01);
private readonly Lazy<DateTime?> lastModifiedDate;
public FileInfo()
{
this.lastModifiedDate = new Lazy<DateTime?>(() =>
LastModified == null ? null : (DateTime?)Epoch.AddMilliseconds(this.LastModified.Value));
}
public string Name { get; set; }
public long Size { get; set; }
public string Type { get; set; }
public long? LastModified { get; set; }
public DateTime? LastModifiedDate => this.lastModifiedDate.Value;
}
}