forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpContentMultipartExtensions.cs
More file actions
286 lines (254 loc) · 13.5 KB
/
HttpContentMultipartExtensions.cs
File metadata and controls
286 lines (254 loc) · 13.5 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
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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.IO;
using System.Net.Http.Formatting.Parsers;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
namespace System.Net.Http
{
/// <summary>
/// Extension methods to read MIME multipart entities from <see cref="HttpContent"/> instances.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static class HttpContentMultipartExtensions
{
private const int MinBufferSize = 256;
private const int DefaultBufferSize = 32 * 1024;
/// <summary>
/// Determines whether the specified content is MIME multipart content.
/// </summary>
/// <param name="content">The content.</param>
/// <returns>
/// <c>true</c> if the specified content is MIME multipart content; otherwise, <c>false</c>.
/// </returns>
public static bool IsMimeMultipartContent(this HttpContent content)
{
if (content == null)
{
throw Error.ArgumentNull("content");
}
return MimeMultipartBodyPartParser.IsMimeMultipartContent(content);
}
/// <summary>
/// Determines whether the specified content is MIME multipart content with the
/// specified subtype. For example, the subtype <c>mixed</c> would match content
/// with a content type of <c>multipart/mixed</c>.
/// </summary>
/// <param name="content">The content.</param>
/// <param name="subtype">The MIME multipart subtype to match.</param>
/// <returns>
/// <c>true</c> if the specified content is MIME multipart content with the specified subtype; otherwise, <c>false</c>.
/// </returns>
public static bool IsMimeMultipartContent(this HttpContent content, string subtype)
{
if (String.IsNullOrWhiteSpace(subtype))
{
throw Error.ArgumentNull("subtype");
}
if (IsMimeMultipartContent(content))
{
if (content.Headers.ContentType.MediaType.Equals("multipart/" + subtype, StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
return false;
}
/// <summary>
/// Reads all body parts within a MIME multipart message into memory using a <see cref="MultipartMemoryStreamProvider"/>.
/// </summary>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static Task<MultipartMemoryStreamProvider> ReadAsMultipartAsync(this HttpContent content)
{
return ReadAsMultipartAsync<MultipartMemoryStreamProvider>(content, new MultipartMemoryStreamProvider(), DefaultBufferSize);
}
/// <summary>
/// Reads all body parts within a MIME multipart message into memory using a <see cref="MultipartMemoryStreamProvider"/>.
/// </summary>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static Task<MultipartMemoryStreamProvider> ReadAsMultipartAsync(this HttpContent content, CancellationToken cancellationToken)
{
return ReadAsMultipartAsync<MultipartMemoryStreamProvider>(content, new MultipartMemoryStreamProvider(), DefaultBufferSize, cancellationToken);
}
/// <summary>
/// Reads all body parts within a MIME multipart message using the provided <see cref="MultipartStreamProvider"/> instance
/// to determine where the contents of each body part is written.
/// </summary>
/// <typeparam name="T">The <see cref="MultipartStreamProvider"/> with which to process the data.</typeparam>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static Task<T> ReadAsMultipartAsync<T>(this HttpContent content, T streamProvider) where T : MultipartStreamProvider
{
return ReadAsMultipartAsync(content, streamProvider, DefaultBufferSize);
}
/// <summary>
/// Reads all body parts within a MIME multipart message using the provided <see cref="MultipartStreamProvider"/> instance
/// to determine where the contents of each body part is written.
/// </summary>
/// <typeparam name="T">The <see cref="MultipartStreamProvider"/> with which to process the data.</typeparam>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static Task<T> ReadAsMultipartAsync<T>(this HttpContent content, T streamProvider, CancellationToken cancellationToken)
where T : MultipartStreamProvider
{
return ReadAsMultipartAsync(content, streamProvider, DefaultBufferSize, cancellationToken);
}
/// <summary>
/// Reads all body parts within a MIME multipart message using the provided <see cref="MultipartStreamProvider"/> instance
/// to determine where the contents of each body part is written and <paramref name="bufferSize"/> as read buffer size.
/// </summary>
/// <typeparam name="T">The <see cref="MultipartStreamProvider"/> with which to process the data.</typeparam>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
/// <param name="bufferSize">Size of the buffer used to read the contents.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static Task<T> ReadAsMultipartAsync<T>(this HttpContent content, T streamProvider, int bufferSize)
where T : MultipartStreamProvider
{
return ReadAsMultipartAsync(content, streamProvider, bufferSize, CancellationToken.None);
}
/// <summary>
/// Reads all body parts within a MIME multipart message using the provided <see cref="MultipartStreamProvider"/> instance
/// to determine where the contents of each body part is written and <paramref name="bufferSize"/> as read buffer size.
/// </summary>
/// <typeparam name="T">The <see cref="MultipartStreamProvider"/> with which to process the data.</typeparam>
/// <param name="content">An existing <see cref="HttpContent"/> instance to use for the object's content.</param>
/// <param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
/// <param name="bufferSize">Size of the buffer used to read the contents.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>A <see cref="Task{T}"/> representing the tasks of getting the result of reading the MIME content.</returns>
public static async Task<T> ReadAsMultipartAsync<T>(this HttpContent content, T streamProvider, int bufferSize,
CancellationToken cancellationToken) where T : MultipartStreamProvider
{
if (content == null)
{
throw Error.ArgumentNull("content");
}
if (streamProvider == null)
{
throw Error.ArgumentNull("streamProvider");
}
if (bufferSize < MinBufferSize)
{
throw Error.ArgumentMustBeGreaterThanOrEqualTo("bufferSize", bufferSize, MinBufferSize);
}
Stream stream;
try
{
stream = await content.ReadAsStreamAsync();
}
catch (Exception e)
{
throw new IOException(Properties.Resources.ReadAsMimeMultipartErrorReading, e);
}
using (var parser = new MimeMultipartBodyPartParser(content, streamProvider))
{
byte[] data = new byte[bufferSize];
MultipartAsyncContext context = new MultipartAsyncContext(stream, parser, data, streamProvider.Contents);
// Start async read/write loop
await MultipartReadAsync(context, cancellationToken);
// Let the stream provider post-process when everything is complete
await streamProvider.ExecutePostProcessingAsync(cancellationToken);
return streamProvider;
}
}
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Exception is propagated.")]
private static async Task MultipartReadAsync(MultipartAsyncContext context, CancellationToken cancellationToken)
{
Contract.Assert(context != null, "context cannot be null");
while (true)
{
int bytesRead;
try
{
bytesRead = await context.ContentStream.ReadAsync(context.Data, 0, context.Data.Length, cancellationToken);
}
catch (Exception e)
{
throw new IOException(Properties.Resources.ReadAsMimeMultipartErrorReading, e);
}
IEnumerable<MimeBodyPart> parts = context.MimeParser.ParseBuffer(context.Data, bytesRead);
foreach (MimeBodyPart part in parts)
{
foreach (ArraySegment<byte> segment in part.Segments)
{
try
{
await part.WriteSegment(segment, cancellationToken);
}
catch (Exception e)
{
part.Dispose();
throw new IOException(Properties.Resources.ReadAsMimeMultipartErrorWriting, e);
}
}
if (CheckIsFinalPart(part, context.Result))
{
return;
}
}
}
}
private static bool CheckIsFinalPart(MimeBodyPart part, ICollection<HttpContent> result)
{
Contract.Assert(part != null, "part cannot be null.");
Contract.Assert(result != null, "result cannot be null.");
if (part.IsComplete)
{
HttpContent partContent = part.GetCompletedHttpContent();
if (partContent != null)
{
result.Add(partContent);
}
bool isFinal = part.IsFinal;
part.Dispose();
return isFinal;
}
return false;
}
/// <summary>
/// Managing state for asynchronous read and write operations
/// </summary>
private class MultipartAsyncContext
{
public MultipartAsyncContext(Stream contentStream, MimeMultipartBodyPartParser mimeParser, byte[] data, ICollection<HttpContent> result)
{
Contract.Assert(contentStream != null);
Contract.Assert(mimeParser != null);
Contract.Assert(data != null);
ContentStream = contentStream;
Result = result;
MimeParser = mimeParser;
Data = data;
}
/// <summary>
/// Gets the <see cref="Stream"/> that we read from.
/// </summary>
public Stream ContentStream { get; private set; }
/// <summary>
/// Gets the collection of parsed <see cref="HttpContent"/> instances.
/// </summary>
public ICollection<HttpContent> Result { get; private set; }
/// <summary>
/// The data buffer that we use for reading data from the input stream into before processing.
/// </summary>
public byte[] Data { get; private set; }
/// <summary>
/// Gets the MIME parser instance used to parse the data
/// </summary>
public MimeMultipartBodyPartParser MimeParser { get; private set; }
}
}
}