PooledMemoryStream.cs
6.4 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
using System;
using System.IO;
using System.Buffers;
namespace Pole.Core.Utils
{
public class PooledMemoryStream : Stream
{
/// <summary>create writable memory stream with default parameters</summary>
/// <remarks>buffer is allocated from ArrayPool.Shared</remarks>
public PooledMemoryStream()
: this(ArrayPool<byte>.Shared)
{
}
/// <summary>create writable memory stream with specified ArrayPool</summary>
/// <remarks>buffer is allocated from ArrayPool</remarks>
public PooledMemoryStream(ArrayPool<byte> pool)
: this(pool, 4096)
{
}
/// <summary>create writable memory stream with ensuring buffer length</summary>
/// <remarks>buffer is allocated from ArrayPool</remarks>
public PooledMemoryStream(ArrayPool<byte> pool, int capacity)
{
m_Pool = pool;
_currentbuffer = m_Pool.Rent(capacity);
_Length = 0;
_CanWrite = true;
_Position = 0;
}
/// <summary>create readonly MemoryStream without buffer copy</summary>
/// <remarks>data will be read from 'data' parameter</summary>
public PooledMemoryStream(byte[] data)
{
m_Pool = null;
_currentbuffer = data;
_Length = data.Length;
_CanWrite = false;
}
public override bool CanRead
{
get
{
return true;
}
}
public override bool CanSeek => true;
public override bool CanWrite => _CanWrite;
public override long Length => _Length;
public override long Position
{
get => _Position;
set
{
_Position = value;
}
}
public override void Flush()
{
}
public override int Read(byte[] buffer, int offset, int count)
{
int readlen = count > (int)(_Length - _Position) ? (int)(_Length - _Position) : count;
if (readlen > 0)
{
Buffer.BlockCopy(_currentbuffer
, (int)_Position
, buffer, offset
, readlen)
;
_Position += readlen;
return readlen;
}
else
{
return 0;
}
}
public override long Seek(long offset, SeekOrigin origin)
{
long oldValue = _Position;
switch ((int)origin)
{
case (int)SeekOrigin.Begin:
_Position = offset;
break;
case (int)SeekOrigin.End:
_Position = _Length - offset;
break;
case (int)SeekOrigin.Current:
_Position += offset;
break;
default:
throw new InvalidOperationException("unknown SeekOrigin");
}
if (_Position < 0 || _Position > _Length)
{
_Position = oldValue;
throw new IndexOutOfRangeException();
}
return _Position;
}
void ReallocateBuffer(int minimumRequired)
{
var tmp = m_Pool.Rent(minimumRequired);
Buffer.BlockCopy(_currentbuffer, 0, tmp, 0, _currentbuffer.Length);
m_Pool.Return(_currentbuffer);
_currentbuffer = tmp;
}
public override void SetLength(long value)
{
if (!_CanWrite)
{
throw new NotSupportedException("stream is readonly");
}
if (value > int.MaxValue)
{
throw new IndexOutOfRangeException("overflow");
}
if (value < 0)
{
throw new IndexOutOfRangeException("underflow");
}
_Length = value;
if (_currentbuffer.Length < _Length)
{
ReallocateBuffer((int)_Length);
}
}
/// <summary>write data to stream</summary>
/// <remarks>if stream data length is over int.MaxValue, this method throws IndexOutOfRangeException</remarks>
public override void Write(byte[] buffer, int offset, int count)
{
if (!_CanWrite)
{
throw new InvalidOperationException("stream is readonly");
}
long endOffset = _Position + count;
if (endOffset > _currentbuffer.Length)
{
ReallocateBuffer((int)(endOffset) * 2);
}
Buffer.BlockCopy(buffer, offset,
_currentbuffer, (int)_Position, count);
if (endOffset > _Length)
{
_Length = endOffset;
}
_Position = endOffset;
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (m_Pool != null && _currentbuffer != null)
{
m_Pool.Return(_currentbuffer);
_currentbuffer = null;
}
}
/// <summary>ensure the buffer size</summary>
/// <remarks>capacity != stream buffer length</remarks>
public void Reserve(int capacity)
{
if (capacity > _currentbuffer.Length)
{
ReallocateBuffer(capacity);
}
}
/// <summary>Create newly allocated buffer and copy the stream data</summary>
public byte[] ToArray()
{
var ret = new byte[_Length];
Buffer.BlockCopy(_currentbuffer, 0, ret, 0, (int)_Length);
return ret;
}
/// <summary>Create ArraySegment for current stream data without allocation buffer</summary>
/// <remarks>After disposing stream, manupilating returned value(read or write) may cause undefined behavior</remarks>
public ArraySegment<byte> ToUnsafeArraySegment()
{
return new ArraySegment<byte>(_currentbuffer, 0, (int)_Length);
}
public ReadOnlyMemory<byte> ToReadOnlyMemory()
{
return new ReadOnlyMemory<byte>(_currentbuffer, 0, (int)_Length);
}
ArrayPool<byte> m_Pool;
byte[] _currentbuffer;
readonly bool _CanWrite;
long _Length;
long _Position;
}
}