-
Notifications
You must be signed in to change notification settings - Fork 0
/
PipeStream.cs
241 lines (207 loc) · 7.49 KB
/
PipeStream.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading;
using System.IO;
namespace johnshope.Sync {
enum StreamConsumer { Undefined, Reader, Writer }
public class PipeStream: Stream {
private object _lockForRead;
private object _lockForAll;
private Queue<object> _chunks;
private object _currentChunk;
private long _currentChunkPosition;
private ManualResetEvent _doneWriting;
private ManualResetEvent _dataAvailable;
private WaitHandle[] _events;
private int _doneWritingHandleIndex;
private volatile bool _illegalToWrite;
private Exception _exception;
[ThreadStatic]
private static StreamConsumer _consumer = StreamConsumer.Undefined;
public PipeStream() {
_chunks = new Queue<object>();
_doneWriting = new ManualResetEvent(false);
_dataAvailable = new ManualResetEvent(false);
_events = new WaitHandle[] { _dataAvailable, _doneWriting };
_doneWritingHandleIndex = 1;
_lockForRead = new object();
_lockForAll = new object();
}
public override bool CanRead { get { return true; } }
public override bool CanSeek { get { return false; } }
public override bool CanWrite { get { return !_illegalToWrite; } }
public override void Flush() { }
public override long Length {
get { throw new NotSupportedException(); }
}
public override long Position {
get { throw new NotSupportedException(); }
set { throw new NotSupportedException(); }
}
public override long Seek(long offset, SeekOrigin origin) {
throw new NotSupportedException();
}
public override void SetLength(long value) {
throw new NotSupportedException();
}
public override int Read(byte[] buffer, int offset, int count) {
if (_consumer == StreamConsumer.Writer) throw new NotSupportedException("You cannot read & write to a BlockingStream from the same thread.");
_consumer = StreamConsumer.Reader;
lock (_lockForAll) if (_exception != null) { var ex = _exception; _exception = null; throw ex; }
if (buffer == null) throw new ArgumentNullException("buffer");
if (offset < 0 || offset >= buffer.Length)
throw new ArgumentOutOfRangeException("offset");
if (count < 0 || offset + count > buffer.Length)
throw new ArgumentOutOfRangeException("count");
if (_dataAvailable == null)
throw new ObjectDisposedException(GetType().Name);
if (count == 0) return 0;
while (true) {
int handleIndex = WaitHandle.WaitAny(_events);
lock (_lockForRead) {
lock (_lockForAll) {
if (_currentChunk == null) {
if (_chunks.Count == 0) {
if (handleIndex == _doneWritingHandleIndex)
return 0;
else continue;
}
_currentChunk = _chunks.Dequeue();
_currentChunkPosition = 0;
}
}
if (_currentChunk is Stream) {
var read = ((Stream)_currentChunk).Read(buffer, offset, count);
if (read != count) {
_currentChunk = null;
_currentChunkPosition = 0;
lock (_lockForAll) {
if (_chunks.Count == 0) _dataAvailable.Reset();
}
} else {
_currentChunkPosition += count;
}
return read;
} else {
long bytesAvailable =
((_currentChunk is Stream) ? ((Stream)_currentChunk).Length : ((byte[])_currentChunk).Length) - _currentChunkPosition;
int bytesToCopy;
if (bytesAvailable > count) {
bytesToCopy = count;
Buffer.BlockCopy((byte[])_currentChunk, (int)_currentChunkPosition, buffer, offset, count);
_currentChunkPosition += count;
} else {
bytesToCopy = (int)bytesAvailable;
Buffer.BlockCopy((byte[])_currentChunk, (int)_currentChunkPosition, buffer, offset, bytesToCopy);
_currentChunk = null;
_currentChunkPosition = 0;
lock (_lockForAll) {
if (_chunks.Count == 0) _dataAvailable.Reset();
}
}
return bytesToCopy;
}
}
}
}
public virtual void Read(Stream stream) {
if (_consumer == StreamConsumer.Writer) throw new NotSupportedException("You cannot read & write to a BlockingStream from the same thread.");
_consumer = StreamConsumer.Reader;
if (_dataAvailable == null)
throw new ObjectDisposedException(GetType().Name);
lock (_lockForAll) if (_exception != null) { var ex = _exception; _exception = null; throw ex; }
while (true) {
int handleIndex = WaitHandle.WaitAny(_events);
lock (_lockForRead) {
lock (_lockForAll) {
if (_currentChunk == null) {
if (_chunks.Count == 0) {
if (handleIndex == _doneWritingHandleIndex)
return;
else continue;
}
_currentChunk = _chunks.Dequeue();
_currentChunkPosition = 0;
}
}
if (_currentChunk is Stream) {
Streams.Copy((Stream)_currentChunk, stream);
} else {
var buffer = (byte[])_currentChunk;
stream.Write(buffer, (int)_currentChunkPosition, buffer.Length);
}
_currentChunk = null;
_currentChunkPosition = 0;
lock (_lockForAll) {
if (_chunks.Count == 0) _dataAvailable.Reset();
}
}
}
}
public override void Write(byte[] buffer, int offset, int count) {
if (_consumer == StreamConsumer.Reader) throw new NotSupportedException("You cannot read & write to a BlockingStream from the same thread.");
_consumer = StreamConsumer.Writer;
lock(_lockForAll) if (_exception != null) { var ex = _exception; _exception = null; throw ex; }
if (buffer == null) throw new ArgumentNullException("buffer");
if (offset < 0 || offset >= buffer.Length)
throw new ArgumentOutOfRangeException("offset");
if (count < 0 || offset + count > buffer.Length)
throw new ArgumentOutOfRangeException("count");
if (_dataAvailable == null)
throw new ObjectDisposedException(GetType().Name);
if (count == 0) return;
byte[] chunk = new byte[count];
Buffer.BlockCopy(buffer, offset, chunk, 0, count);
lock (_lockForAll) {
if (_illegalToWrite)
throw new InvalidOperationException(
"Writing has already been completed.");
_chunks.Enqueue(chunk);
_dataAvailable.Set();
}
}
public virtual void Write(Stream stream) {
if (_consumer == StreamConsumer.Reader) throw new NotSupportedException("You cannot read & write to a BlockingStream from the same thread.");
_consumer = StreamConsumer.Writer;
if (_dataAvailable == null)
throw new ObjectDisposedException(GetType().Name);
lock (_lockForAll) {
if (_exception != null) { var ex = _exception; _exception = null; throw ex; }
if (_illegalToWrite)
throw new InvalidOperationException(
"Writing has already been completed.");
_chunks.Enqueue(stream);
_dataAvailable.Set();
}
}
public void Exception(Exception ex) { lock(_lockForAll) _exception = ex; }
public void SetEndOfStream() {
if (_consumer == StreamConsumer.Reader) throw new NotSupportedException("You cannot read & write to a BlockingStream from the same thread.");
if (_dataAvailable == null)
throw new ObjectDisposedException(GetType().Name);
lock (_lockForAll) {
_consumer = StreamConsumer.Undefined;
_illegalToWrite = true;
_doneWriting.Set();
}
}
public override void Close() {
if (_consumer == StreamConsumer.Reader) {
_consumer = StreamConsumer.Undefined;
base.Close();
if (_dataAvailable != null) {
_dataAvailable.Close();
_dataAvailable = null;
}
if (_doneWriting != null) {
_doneWriting.Close();
_doneWriting = null;
}
} else if (_consumer == StreamConsumer.Writer) {
SetEndOfStream();
//_consumer = StreamConsumer.Undefined;
}
}
}
}