-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathFileSystemStream.cs
More file actions
269 lines (224 loc) · 9.51 KB
/
FileSystemStream.cs
File metadata and controls
269 lines (224 loc) · 9.51 KB
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
using System.Threading;
using System.Threading.Tasks;
namespace System.IO.Abstractions
{
/// <summary>
/// Wrapper around a <see cref="Stream"/> which is used as a replacement
/// for a <see cref="FileStream"/>. As such it implements the same
/// properties and methods as a <see cref="FileStream"/>.
/// </summary>
public abstract class FileSystemStream : Stream
{
/// <inheritdoc cref="Stream.CanRead" />
public override bool CanRead
=> _stream.CanRead;
/// <inheritdoc cref="Stream.CanSeek" />
public override bool CanSeek
=> _stream.CanSeek;
/// <inheritdoc cref="Stream.CanTimeout" />
public override bool CanTimeout
=> _stream.CanTimeout;
/// <inheritdoc cref="Stream.CanWrite" />
public override bool CanWrite
=> _stream.CanWrite;
/// <inheritdoc cref="FileStream.IsAsync" />
public virtual bool IsAsync { get; }
/// <inheritdoc cref="Stream.Length" />
public override long Length
=> _stream.Length;
/// <inheritdoc cref="FileStream.Name" />
public virtual string Name { get; }
/// <inheritdoc cref="Stream.Position" />
public override long Position
{
get => _stream.Position;
set => _stream.Position = value;
}
/// <inheritdoc cref="Stream.ReadTimeout" />
public override int ReadTimeout
{
get => _stream.ReadTimeout;
set => _stream.ReadTimeout = value;
}
/// <inheritdoc cref="Stream.WriteTimeout" />
public override int WriteTimeout
{
get => _stream.WriteTimeout;
set => _stream.WriteTimeout = value;
}
private readonly Stream _stream;
/// <summary>
/// Initializes a new instance of <see cref="FileSystemStream" />.
/// </summary>
/// <param name="stream">The wrapped <see cref="Stream" />.</param>
/// <param name="path">The <see cref="FileStream.Name" /> of the stream.</param>
/// <param name="isAsync">
/// The <see cref="FileStream.IsAsync" /> flag, indicating if the <see cref="FileStream" /> was
/// opened asynchronously or synchronously.
/// </param>
protected FileSystemStream(Stream stream, string path, bool isAsync)
{
if (path is null)
{
throw new ArgumentNullException(nameof(path), "Path cannot be null.");
}
if (path.Length == 0)
{
throw new ArgumentException("Empty path name is not legal.", nameof(path));
}
_stream = stream;
Name = path;
IsAsync = isAsync;
}
/// <inheritdoc cref="Stream.BeginRead(byte[], int, int, AsyncCallback?, object?)" />
public override IAsyncResult BeginRead(byte[] buffer,
int offset,
int count,
AsyncCallback? callback,
object? state)
=> _stream.BeginRead(buffer, offset, count, callback, state);
/// <inheritdoc cref="Stream.BeginWrite(byte[], int, int, AsyncCallback?, object?)" />
public override IAsyncResult BeginWrite(byte[] buffer,
int offset,
int count,
AsyncCallback? callback,
object? state)
=> _stream.BeginWrite(buffer, offset, count, callback, state);
/// <inheritdoc cref="Stream.Close()" />
public override void Close()
{
base.Close();
_stream.Close();
}
/// <inheritdoc cref="Stream.CopyTo(Stream, int)" />
#if NETSTANDARD2_0 || NET462
public new virtual void CopyTo(Stream destination, int bufferSize)
#else
public override void CopyTo(Stream destination, int bufferSize)
#endif
{
ValidateCopyToArguments(this, destination, bufferSize);
_stream.CopyTo(destination, bufferSize);
}
/// <inheritdoc cref="Stream.CopyToAsync(Stream, int, CancellationToken)" />
public override Task CopyToAsync(Stream destination,
int bufferSize,
CancellationToken cancellationToken)
{
ValidateCopyToArguments(this, destination, bufferSize);
return _stream.CopyToAsync(destination, bufferSize, cancellationToken);
}
/// <inheritdoc cref="Stream.EndRead(IAsyncResult)" />
public override int EndRead(IAsyncResult asyncResult)
=> _stream.EndRead(asyncResult);
/// <inheritdoc cref="Stream.EndWrite(IAsyncResult)" />
public override void EndWrite(IAsyncResult asyncResult)
=> _stream.EndWrite(asyncResult);
/// <inheritdoc cref="Stream.Flush()" />
public override void Flush()
=> _stream.Flush();
/// <inheritDoc cref="FileStream.Flush(bool)" />
public virtual void Flush(bool flushToDisk)
=> _stream.Flush();
/// <inheritdoc cref="Stream.FlushAsync(CancellationToken)" />
public override Task FlushAsync(CancellationToken cancellationToken)
=> _stream.FlushAsync(cancellationToken);
/// <inheritdoc cref="Stream.Read(byte[], int, int)" />
public override int Read(byte[] buffer, int offset, int count)
=> _stream.Read(buffer, offset, count);
#if FEATURE_SPAN
/// <inheritdoc cref="Stream.Read(Span{byte})" />
public override int Read(Span<byte> buffer)
=> _stream.Read(buffer);
#endif
/// <inheritdoc cref="Stream.ReadAsync(byte[], int, int, CancellationToken)" />
public override Task<int> ReadAsync(byte[] buffer,
int offset,
int count,
CancellationToken cancellationToken)
=> _stream.ReadAsync(buffer, offset, count, cancellationToken);
#if FEATURE_SPAN
/// <inheritdoc cref="Stream.ReadAsync(Memory{byte}, CancellationToken)" />
public override ValueTask<int> ReadAsync(Memory<byte> buffer,
CancellationToken cancellationToken = new())
=> _stream.ReadAsync(buffer, cancellationToken);
#endif
/// <inheritdoc cref="Stream.ReadByte()" />
public override int ReadByte()
=> _stream.ReadByte();
/// <inheritdoc cref="Stream.Seek(long, SeekOrigin)" />
public override long Seek(long offset, SeekOrigin origin)
=> _stream.Seek(offset, origin);
/// <inheritdoc cref="Stream.SetLength(long)" />
public override void SetLength(long value)
=> _stream.SetLength(value);
/// <inheritdoc cref="object.ToString()" />
public override string? ToString()
=> _stream.ToString();
/// <inheritdoc cref="Stream.Write(byte[], int, int)" />
public override void Write(byte[] buffer, int offset, int count)
=> _stream.Write(buffer, offset, count);
#if FEATURE_SPAN
/// <inheritdoc cref="Stream.Write(ReadOnlySpan{byte})" />
public override void Write(ReadOnlySpan<byte> buffer)
=> _stream.Write(buffer);
#endif
/// <inheritdoc cref="Stream.WriteAsync(byte[], int, int, CancellationToken)" />
public override Task WriteAsync(byte[] buffer,
int offset,
int count,
CancellationToken cancellationToken)
=> _stream.WriteAsync(buffer, offset, count, cancellationToken);
#if FEATURE_SPAN
/// <inheritdoc cref="Stream.WriteAsync(ReadOnlyMemory{byte}, CancellationToken)" />
public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer,
CancellationToken cancellationToken = new())
=> _stream.WriteAsync(buffer, cancellationToken);
#endif
/// <inheritdoc cref="Stream.WriteByte(byte)" />
public override void WriteByte(byte value)
=> _stream.WriteByte(value);
/// <inheritdoc cref="Stream.Dispose(bool)" />
protected override void Dispose(bool disposing)
{
_stream.Dispose();
base.Dispose(disposing);
}
/// <summary>
/// Allows to cast the internal Stream to a FileStream
/// </summary>
/// <param name="fsStream">The FileSystemStream to cast</param>
/// <exception cref="InvalidCastException"></exception>
public static explicit operator FileStream(FileSystemStream fsStream)
{
return (FileStream) fsStream._stream;
}
private static void ValidateCopyToArguments(Stream source, Stream destination, int bufferSize)
{
if (destination == null)
{
throw new ArgumentNullException(nameof(destination), "Destination cannot be null.");
}
if (bufferSize <= 0)
{
throw new ArgumentOutOfRangeException(nameof(bufferSize), "Buffer size must be greater than zero.");
}
if (!destination.CanWrite)
{
if (destination.CanRead)
{
throw new NotSupportedException("Stream does not support writing.");
}
throw new ObjectDisposedException("Cannot access a closed Stream.");
}
if (!source.CanRead)
{
if (source.CanWrite)
{
throw new NotSupportedException("Stream does not support reading.");
}
throw new ObjectDisposedException("Cannot access a closed Stream.");
}
}
}
}