-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathContentLengthReadStream.cs
More file actions
210 lines (184 loc) · 5.64 KB
/
ContentLengthReadStream.cs
File metadata and controls
210 lines (184 loc) · 5.64 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.Net.Http.Client
{
public class ContentLengthReadStream : ApmStream
{
private readonly Stream _inner;
private long _bytesRemaining;
private bool _disposed;
public ContentLengthReadStream(ApmStream inner, long contentLength)
{
_inner = inner;
_bytesRemaining = contentLength;
}
public override bool CanRead
{
get { return !_disposed; }
}
public override bool CanSeek
{
get { return false; }
}
public override bool CanTimeout
{
get { return _inner.CanTimeout; }
}
public override bool CanWrite
{
get { return false; }
}
public override long Length
{
get { throw new NotSupportedException(); }
}
public override long Position
{
get { throw new NotSupportedException(); }
set { throw new NotSupportedException(); }
}
public override int ReadTimeout
{
get
{
CheckDisposed();
return _inner.ReadTimeout;
}
set
{
CheckDisposed();
_inner.ReadTimeout = value;
}
}
public override int WriteTimeout
{
get
{
CheckDisposed();
return _inner.WriteTimeout;
}
set
{
CheckDisposed();
_inner.WriteTimeout = value;
}
}
private void UpdateBytesRemaining(int read)
{
_bytesRemaining -= read;
if (_bytesRemaining <= 0)
{
_disposed = true;
}
System.Diagnostics.Debug.Assert(_bytesRemaining >= 0, "Negative bytes remaining? " + _bytesRemaining);
}
public override int Read(byte[] buffer, int offset, int count)
{
// TODO: Validate buffer
if (_disposed)
{
return 0;
}
int toRead = (int)Math.Min(count, _bytesRemaining);
int read = _inner.Read(buffer, offset, toRead);
UpdateBytesRemaining(read);
return read;
}
public async override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
// TODO: Validate args
if (_disposed)
{
return 0;
}
cancellationToken.ThrowIfCancellationRequested();
int toRead = (int)Math.Min(count, _bytesRemaining);
int read = await _inner.ReadAsync(buffer, offset, toRead, cancellationToken);
UpdateBytesRemaining(read);
return read;
}
public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
{
TaskCompletionSource<int> tcs = new TaskCompletionSource<int>(state);
InternalReadAsync(buffer, offset, count, callback, tcs);
return tcs.Task;
}
private async void InternalReadAsync(byte[] buffer, int offset, int count, AsyncCallback callback, TaskCompletionSource<int> tcs)
{
try
{
int read = await ReadAsync(buffer, offset, count);
tcs.TrySetResult(read);
}
catch (Exception ex)
{
tcs.TrySetException(ex);
}
try
{
callback(tcs.Task);
}
catch (Exception)
{
}
}
public override int EndRead(IAsyncResult asyncResult)
{
Task<int> t = (Task<int>)asyncResult;
t.Wait();
if (t.IsFaulted)
{
throw new IOException(string.Empty, t.Exception);
}
return t.Result;
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
// TODO: Sync drain with timeout if small number of bytes remaining? This will let us re-use the connection.
_inner.Dispose();
}
}
private void CheckDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(typeof(ContentLengthReadStream).FullName);
}
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new NotSupportedException();
}
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
{
throw new NotSupportedException();
}
public override void EndWrite(IAsyncResult asyncResult)
{
throw new NotSupportedException();
}
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
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 void Flush()
{
throw new NotSupportedException();
}
}
}