-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSubStream.cs
297 lines (253 loc) · 9.84 KB
/
SubStream.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
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
namespace CannedBytes.IO
{
using System;
using System.IO;
/// <summary>
/// The SubStream wraps an existing stream and only allows access to a part of that wrapped stream.
/// </summary>
public class SubStream : WrappedStream
{
/// <summary>The offset into the base stream where the sub-stream starts.</summary>
private long _streamOffset;
/// <summary>The length of the sub-stream.</summary>
private long _subStreamLength;
/// <summary>
/// For derived classes that wish to compute the offset and length of the sub-stream themselves.
/// </summary>
/// <param name="stream">Must not be null.</param>
/// <param name="canSeek">Pass true to allow seeking in the sub-stream.</param>
/// <remarks>The offset is initialized to the current position of the <paramref name="stream"/>
/// but can be overruled with a call to <see cref="SetStreamOffset"/>.</remarks>
protected SubStream(Stream stream, bool canSeek)
: base(stream, canSeek)
{
Check.IfArgumentNull(stream, nameof(stream));
_streamOffset = stream.Position;
}
/// <summary>
/// Instantiates a new instance from the start of the <paramref name="stream"/> for <paramref name="length"/> bytes.
/// </summary>
/// <param name="stream">Must not be null.</param>
/// <param name="length">Must be greater or equal to zero.</param>
public SubStream(Stream stream, long length)
: base(stream)
{
Check.IfArgumentNull(stream, nameof(stream));
_streamOffset = stream.Position;
SetSubLength(length);
}
/// <summary>
/// Instantiates a new instance from the start of the <paramref name="stream"/> for <paramref name="length"/> bytes.
/// </summary>
/// <param name="stream">Must not be null.</param>
/// <param name="canSeek">False to prohibit seeking.</param>
/// <param name="length">Must be greater or equal to zero.</param>
public SubStream(Stream stream, bool canSeek, long length)
: base(stream, canSeek)
{
Check.IfArgumentNull(stream, nameof(stream));
_streamOffset = stream.Position;
SetSubLength(length);
}
/// <summary>
/// Instantiates a new seekable instance from <paramref name="offset"/> of the <paramref name="stream"/> for <paramref name="length"/> bytes.
/// </summary>
/// <param name="stream">Must not be null.</param>
/// <param name="offset">The offset in bytes from the start of <paramref name="stream"/>.</param>
/// <param name="length">Must be greater or equal to zero.</param>
public SubStream(Stream stream, long offset, long length)
: base(stream, true)
{
SetStreamOffset(offset);
SetSubLength(length);
}
/// <summary>
/// Instantiates a new instance from <paramref name="offset"/> of the <paramref name="stream"/> for <paramref name="length"/> bytes.
/// </summary>
/// <param name="stream">Must not be null.</param>
/// <param name="canSeek">False to prohibit seeking.</param>
/// <param name="offset">The offset in bytes from the start of <paramref name="stream"/>.</param>
/// <param name="length">Must be greater or equal to zero.</param>
public SubStream(Stream stream, bool canSeek, long offset, long length)
: base(stream, canSeek)
{
SetStreamOffset(offset);
SetSubLength(length);
}
/// <summary>
/// Initializes the sub-stream offset.
/// </summary>
/// <param name="offset">Must be within range.</param>
protected long SetStreamOffset(long offset)
{
if (offset > 0 && offset >= InnerStream.Length)
{
throw new ArgumentOutOfRangeException("offset");
}
_streamOffset = offset;
return _streamOffset;
}
/// <summary>
/// Initializes the sub-stream length.
/// </summary>
/// <param name="length">Is adjusted to fit within length of the base stream.</param>
protected long SetSubLength(long length)
{
if (length > 0 && base.Length > 0 &&
(_streamOffset + length) > base.Length)
{
_subStreamLength = base.Length - _streamOffset;
}
else
{
_subStreamLength = length;
}
return _subStreamLength;
}
/// <summary>
/// Adjusts the specified <paramref name="count"/> to stay within range.
/// </summary>
/// <param name="count">The parameter is in/out (ref).</param>
/// <returns>Returns true if the (adjusted) count is greater than zero.</returns>
private bool AdjustCount(ref int count)
{
if (_subStreamLength > 0 &&
(base.Position + count) > (_streamOffset + _subStreamLength))
{
count = (int)((_streamOffset + _subStreamLength) - base.Position);
}
return count > 0;
}
/// <inheritdocs/>
public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
{
Check.IfArgumentNull(buffer, nameof(buffer));
if (!AdjustCount(ref count))
{
throw new ArgumentOutOfRangeException(nameof(count), count,
"The count does not lie within range of this sub-stream's length.");
}
return base.BeginRead(buffer, offset, count, callback, state);
}
/// <inheritdocs/>
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
{
Check.IfArgumentNull(buffer, nameof(buffer));
if (!AdjustCount(ref count))
{
throw new ArgumentOutOfRangeException(nameof(count), count,
"The count does not lie within range of this sub-stream's length.");
}
return base.BeginWrite(buffer, offset, count, callback, state);
}
/// <inheritdocs/>
public override int Read(byte[] buffer, int offset, int count)
{
Check.IfArgumentNull(buffer, nameof(buffer));
if (AdjustCount(ref count))
{
return base.Read(buffer, offset, count);
}
return 0;
}
/// <inheritdocs/>
public override int ReadByte()
{
int length = 1;
if (AdjustCount(ref length))
{
return base.ReadByte();
}
return -1;
}
/// <inheritdocs/>
public override long Seek(long offset, SeekOrigin origin)
{
long absoluteOffset = 0;
switch (origin)
{
case SeekOrigin.Begin:
absoluteOffset = _streamOffset + offset;
break;
case SeekOrigin.Current:
absoluteOffset = base.Position + offset;
break;
case SeekOrigin.End:
absoluteOffset = _streamOffset + _subStreamLength - Math.Abs(offset);
break;
}
if (_subStreamLength > 0)
{
if (absoluteOffset < _streamOffset)
{
absoluteOffset = _streamOffset;
}
else if (absoluteOffset > (_streamOffset + _subStreamLength))
{
absoluteOffset = _streamOffset + _subStreamLength;
}
}
return base.Seek(absoluteOffset, SeekOrigin.Begin);
}
/// <summary>
/// Not supported.
/// </summary>
/// <param name="value">Not used.</param>
public override void SetLength(long value)
{
base.SetLength(value);
}
/// <inheritdocs/>
public override void Write(byte[] buffer, int offset, int count)
{
Check.IfArgumentNull(buffer, nameof(buffer));
if (AdjustCount(ref count))
{
InnerStream.Write(buffer, offset, count);
}
}
/// <inheritdocs/>
public override void WriteByte(byte value)
{
int length = 1;
if (AdjustCount(ref length))
{
base.WriteByte(value);
}
}
/// <inheritdocs/>
public override long Length
{
get
{
if (_subStreamLength == 0)
{
return base.Length;
}
return _subStreamLength;
}
}
/// <inheritdocs/>
public override long Position
{
get
{
// maxed out
if (_subStreamLength > 0 &&
(base.Position - _streamOffset) >= _subStreamLength)
{
return _subStreamLength;
}
if ((base.Position - _streamOffset) >= 0)
{
return base.Position - _streamOffset;
}
return 0;
}
set
{
Seek(value, SeekOrigin.Begin);
}
}
}
}