-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBlob.InProcess.cs
104 lines (92 loc) · 5 KB
/
Blob.InProcess.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
using KristofferStrube.Blazor.Streams;
using KristofferStrube.Blazor.WebIDL;
using Microsoft.JSInterop;
namespace KristofferStrube.Blazor.FileAPI;
/// <inheritdoc/>
[IJSWrapperConverter]
public class BlobInProcess : Blob, IJSInProcessCreatable<BlobInProcess, Blob>
{
/// <inheritdoc />
public new IJSInProcessObjectReference JSReference { get; }
/// <summary>
/// A helper module instance from the Blazor.FileAPI library.
/// </summary>
protected IJSInProcessObjectReference InProcessHelper { get; }
/// <inheritdoc/>
public static async Task<BlobInProcess> CreateAsync(IJSRuntime jSRuntime, IJSInProcessObjectReference jSReference)
{
return await CreateAsync(jSRuntime, jSReference, new());
}
/// <inheritdoc/>
public static async Task<BlobInProcess> CreateAsync(IJSRuntime jSRuntime, IJSInProcessObjectReference jSReference, CreationOptions options)
{
IJSInProcessObjectReference inProcessHelper = await jSRuntime.GetInProcessHelperAsync();
return new BlobInProcess(jSRuntime, inProcessHelper, jSReference, options);
}
/// <summary>
/// Constructs a wrapper instance using the standard constructor.
/// </summary>
/// <param name="jSRuntime">An <see cref="IJSRuntime"/> instance.</param>
/// <param name="blobParts">The parts that will make the new <see cref="Blob"/>.</param>
/// <param name="options">Options for constructing the new Blob which includes MIME type and line endings settings.</param>
/// <returns></returns>
public static new async Task<BlobInProcess> CreateAsync(IJSRuntime jSRuntime, IList<BlobPart>? blobParts = null, BlobPropertyBag? options = null)
{
IJSInProcessObjectReference inProcessHelper = await jSRuntime.GetInProcessHelperAsync();
object?[]? jsBlobParts = blobParts?.Select<BlobPart, object?>(blobPart => blobPart.Part switch
{
byte[] part => part,
Blob part => part.JSReference,
_ => blobPart.Part
})
.ToArray();
IJSInProcessObjectReference jSInstance = await inProcessHelper.InvokeAsync<IJSInProcessObjectReference>("constructBlob", jsBlobParts, options);
return new BlobInProcess(jSRuntime, inProcessHelper, jSInstance, new() { DisposesJSReference = true });
}
/// <inheritdoc cref="CreateAsync(IJSRuntime, IJSInProcessObjectReference, CreationOptions)"/>
protected internal BlobInProcess(IJSRuntime jSRuntime, IJSInProcessObjectReference inProcessHelper, IJSInProcessObjectReference jSReference, CreationOptions options) : base(jSRuntime, jSReference, options)
{
JSReference = jSReference;
InProcessHelper = inProcessHelper;
}
/// <summary>
/// Creates a new <see cref="ReadableStreamInProcess"/> from the <see cref="Blob"/>.
/// </summary>
/// <returns>A new wrapper for a <see cref="ReadableStreamInProcess"/></returns>
public new async Task<ReadableStreamInProcess> StreamAsync()
{
IJSInProcessObjectReference jSInstance = JSReference.Invoke<IJSInProcessObjectReference>("stream");
return await ReadableStreamInProcess.CreateAsync(JSRuntime, jSInstance, new() { DisposesJSReference = true });
}
/// <summary>
/// The size of this blob.
/// </summary>
/// <returns>A <see langword="ulong"/> representing the size of the blob in bytes.</returns>
public ulong Size => InProcessHelper.Invoke<ulong>("getAttribute", JSReference, "size");
/// <summary>
/// The media type of this blob. This is either a parseable MIME type or an empty string.
/// </summary>
/// <returns>The MIME type of this blob.</returns>
public string Type => InProcessHelper.Invoke<string>("getAttribute", JSReference, "type");
/// <summary>
/// Gets some range of the content of a <see cref="Blob"/> as a new <see cref="Blob"/>.
/// </summary>
/// <param name="start">The start index of the range. If <see langword="null"/> or negative then <c>0</c> is assumed.</param>
/// <param name="end">The start index of the range. If <see langword="null"/> or larger than the size of the original <see cref="Blob"/> then the size of the original <see cref="Blob"/> is assumed.</param>
/// <param name="contentType">An optional MIME type of the new <see cref="Blob"/>. If <see langword="null"/> then the MIME type of the original <see cref="Blob"/> is used.</param>
/// <returns>A new <see cref="BlobInProcess"/>.</returns>
public BlobInProcess Slice(long? start = null, long? end = null, string? contentType = null)
{
start ??= 0;
end ??= (long)Size;
IJSInProcessObjectReference jSInstance = JSReference.Invoke<IJSInProcessObjectReference>("slice", start, end, contentType);
return new BlobInProcess(JSRuntime, InProcessHelper, jSInstance, new() { DisposesJSReference = true });
}
/// <inheritdoc/>
public new async ValueTask DisposeAsync()
{
await InProcessHelper.DisposeAsync();
await base.DisposeAsync();
GC.SuppressFinalize(this);
}
}