mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Respect cancellation token/HTTP request aborts correctly in SymlinkFollowingPhysicalFileResultExecutor
(#13033)
This commit is contained in:
parent
13ae2266de
commit
293e0f5faf
@ -101,7 +101,7 @@ namespace Jellyfin.Server.Infrastructure
|
|||||||
count: null);
|
count: null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task SendFileAsync(string filePath, HttpResponse response, long offset, long? count)
|
private async Task SendFileAsync(string filePath, HttpResponse response, long offset, long? count, CancellationToken cancellationToken = default)
|
||||||
{
|
{
|
||||||
var fileInfo = GetFileInfo(filePath);
|
var fileInfo = GetFileInfo(filePath);
|
||||||
if (offset < 0 || offset > fileInfo.Length)
|
if (offset < 0 || offset > fileInfo.Length)
|
||||||
@ -118,6 +118,9 @@ namespace Jellyfin.Server.Infrastructure
|
|||||||
// Copied from SendFileFallback.SendFileAsync
|
// Copied from SendFileFallback.SendFileAsync
|
||||||
const int BufferSize = 1024 * 16;
|
const int BufferSize = 1024 * 16;
|
||||||
|
|
||||||
|
var useRequestAborted = !cancellationToken.CanBeCanceled;
|
||||||
|
var localCancel = useRequestAborted ? response.HttpContext.RequestAborted : cancellationToken;
|
||||||
|
|
||||||
var fileStream = new FileStream(
|
var fileStream = new FileStream(
|
||||||
filePath,
|
filePath,
|
||||||
FileMode.Open,
|
FileMode.Open,
|
||||||
@ -127,10 +130,17 @@ namespace Jellyfin.Server.Infrastructure
|
|||||||
options: FileOptions.Asynchronous | FileOptions.SequentialScan);
|
options: FileOptions.Asynchronous | FileOptions.SequentialScan);
|
||||||
await using (fileStream.ConfigureAwait(false))
|
await using (fileStream.ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
fileStream.Seek(offset, SeekOrigin.Begin);
|
try
|
||||||
await StreamCopyOperation
|
{
|
||||||
.CopyToAsync(fileStream, response.Body, count, BufferSize, CancellationToken.None)
|
localCancel.ThrowIfCancellationRequested();
|
||||||
.ConfigureAwait(true);
|
fileStream.Seek(offset, SeekOrigin.Begin);
|
||||||
|
await StreamCopyOperation
|
||||||
|
.CopyToAsync(fileStream, response.Body, count, BufferSize, localCancel)
|
||||||
|
.ConfigureAwait(true);
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException) when (useRequestAborted)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user