This repository has been archived by the owner on Nov 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change SendFileAsync to use a fallback implementation instead of thro…
…wing - If the user wants to use the SendFile API directly then they can access the feature explicitly. #496
- Loading branch information
Showing
6 changed files
with
114 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
src/Microsoft.AspNet.Http.Extensions/Properties/Resources.Designer.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
src/Microsoft.AspNet.Http.Extensions/StreamCopyOperation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// 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; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
namespace Microsoft.AspNet.Http | ||
{ | ||
// FYI: In most cases the source will be a FileStream and the destination will be to the network. | ||
internal static class StreamCopyOperation | ||
{ | ||
private const int DefaultBufferSize = 1024 * 16; | ||
|
||
internal static async Task CopyToAsync(Stream source, Stream destination, long? length, CancellationToken cancel) | ||
{ | ||
long? bytesRemaining = length; | ||
byte[] buffer = new byte[DefaultBufferSize]; | ||
|
||
Debug.Assert(source != null); | ||
Debug.Assert(destination != null); | ||
Debug.Assert(!bytesRemaining.HasValue || bytesRemaining.Value >= 0); | ||
Debug.Assert(buffer != null); | ||
|
||
while (true) | ||
{ | ||
// The natural end of the range. | ||
if (bytesRemaining.HasValue && bytesRemaining.Value <= 0) | ||
{ | ||
return; | ||
} | ||
|
||
cancel.ThrowIfCancellationRequested(); | ||
|
||
int readLength = buffer.Length; | ||
if (bytesRemaining.HasValue) | ||
{ | ||
readLength = (int)Math.Min(bytesRemaining.Value, (long)readLength); | ||
} | ||
int count = await source.ReadAsync(buffer, 0, readLength, cancel); | ||
|
||
if (bytesRemaining.HasValue) | ||
{ | ||
bytesRemaining -= count; | ||
} | ||
|
||
// End of the source stream. | ||
if (count == 0) | ||
{ | ||
return; | ||
} | ||
|
||
cancel.ThrowIfCancellationRequested(); | ||
|
||
await destination.WriteAsync(buffer, 0, count, cancel); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters