-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathHttpContentStream.cs
More file actions
217 lines (167 loc) · 6.19 KB
/
HttpContentStream.cs
File metadata and controls
217 lines (167 loc) · 6.19 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
/*
Technitium Library
Copyright (C) 2024 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.IO;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace TechnitiumLibrary.Net.Http
{
class HttpContentStream : Stream
{
#region variables
readonly Stream _baseStream;
readonly byte[] _buffer;
int _offset;
int _length;
readonly int _contentLength;
int _totalBytesRead;
#endregion
#region constructor
public HttpContentStream(Stream baseStream, byte[] buffer, int offset, int length, int contentLength = -1)
{
ArgumentOutOfRangeException.ThrowIfNegative(length);
ArgumentNullException.ThrowIfNull(baseStream);
ArgumentNullException.ThrowIfNull(buffer);
if (offset < 0 || offset + length > buffer.Length)
throw new ArgumentOutOfRangeException(nameof(offset));
// Validate Content-Length semantics
if (contentLength < -1)
throw new InvalidDataException("Invalid Content-Length value.");
int bufferedBodyBytes = length - offset;
// RFC 9112 §6.3 — recipient MUST NOT read beyond Content-Length
if (contentLength != -1 && bufferedBodyBytes > contentLength)
throw new HttpRequestException(
$"HTTP protocol violation: buffered {bufferedBodyBytes} body bytes, " +
$"but Content-Length is {contentLength}.");
_baseStream = baseStream;
_buffer = buffer;
_offset = offset;
_length = length;
_contentLength = contentLength;
}
#endregion
#region private
private int ReadBuffer(byte[] buffer, int offset, int count)
{
if (_offset < _length)
{
int bytesAvailable = _length - _offset;
if (count > bytesAvailable)
count = bytesAvailable;
Buffer.BlockCopy(_buffer, _offset, buffer, offset, count);
_offset += count;
_totalBytesRead += count;
return count;
}
return 0;
}
#endregion
#region stream support
public override bool CanRead
{ get { return _baseStream.CanRead; } }
public override bool CanSeek
{ get { return false; } }
public override bool CanWrite
{ get { return false; } }
public override long Length
{ get { return _contentLength; } }
public override long Position
{
get { throw new NotSupportedException(); }
set { throw new NotSupportedException(); }
}
public override void Flush()
{
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 Write(byte[] buffer, int offset, int count)
{
throw new NotSupportedException();
}
public override int Read(byte[] buffer, int offset, int count)
{
while (true)
{
//read from buffer
int bytesRead = ReadBuffer(buffer, offset, count);
if (bytesRead > 0)
return bytesRead;
//fill buffer
int bytesRemaining;
if (_contentLength > -1)
{
bytesRemaining = _contentLength - _totalBytesRead;
if (bytesRemaining < 1)
return 0;
if (bytesRemaining > _buffer.Length)
bytesRemaining = _buffer.Length;
}
else
{
bytesRemaining = _buffer.Length;
}
bytesRead = _baseStream.Read(_buffer, 0, bytesRemaining);
if (bytesRead < 1)
return bytesRead;
_offset = 0;
_length = bytesRead;
}
}
public override async Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
while (true)
{
cancellationToken.ThrowIfCancellationRequested();
//read from buffer
int bytesRead = ReadBuffer(buffer, offset, count);
if (bytesRead > 0)
return bytesRead;
//fill buffer
int bytesRemaining;
if (_contentLength > -1)
{
bytesRemaining = _contentLength - _totalBytesRead;
if (bytesRemaining < 1)
return 0;
if (bytesRemaining > _buffer.Length)
bytesRemaining = _buffer.Length;
}
else
{
bytesRemaining = _buffer.Length;
}
bytesRead = await _baseStream.ReadAsync(_buffer, 0, bytesRemaining, cancellationToken);
if (bytesRead < 1)
return bytesRead;
_offset = 0;
_length = bytesRead;
}
}
#endregion
#region properties
public int TotalBytesRead
{ get { return _totalBytesRead; } }
#endregion
}
}