Add timeout to ProgressiveFileStream
This commit is contained in:
parent
2e7418142a
commit
12a7fda0a6
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
@ -16,6 +17,7 @@ namespace Jellyfin.Api.Helpers
|
||||||
private readonly FileStream _fileStream;
|
private readonly FileStream _fileStream;
|
||||||
private readonly TranscodingJobDto? _job;
|
private readonly TranscodingJobDto? _job;
|
||||||
private readonly TranscodingJobHelper _transcodingJobHelper;
|
private readonly TranscodingJobHelper _transcodingJobHelper;
|
||||||
|
private readonly int _timeoutMs;
|
||||||
private readonly bool _allowAsyncFileRead;
|
private readonly bool _allowAsyncFileRead;
|
||||||
private int _bytesWritten;
|
private int _bytesWritten;
|
||||||
private bool _disposed;
|
private bool _disposed;
|
||||||
|
@ -26,10 +28,12 @@ namespace Jellyfin.Api.Helpers
|
||||||
/// <param name="filePath">The path to the transcoded file.</param>
|
/// <param name="filePath">The path to the transcoded file.</param>
|
||||||
/// <param name="job">The transcoding job information.</param>
|
/// <param name="job">The transcoding job information.</param>
|
||||||
/// <param name="transcodingJobHelper">The transcoding job helper.</param>
|
/// <param name="transcodingJobHelper">The transcoding job helper.</param>
|
||||||
public ProgressiveFileStream(string filePath, TranscodingJobDto? job, TranscodingJobHelper transcodingJobHelper)
|
/// <param name="timeoutMs">The timeout duration in milliseconds.</param>
|
||||||
|
public ProgressiveFileStream(string filePath, TranscodingJobDto? job, TranscodingJobHelper transcodingJobHelper, int timeoutMs = 30000)
|
||||||
{
|
{
|
||||||
_job = job;
|
_job = job;
|
||||||
_transcodingJobHelper = transcodingJobHelper;
|
_transcodingJobHelper = transcodingJobHelper;
|
||||||
|
_timeoutMs = timeoutMs;
|
||||||
_bytesWritten = 0;
|
_bytesWritten = 0;
|
||||||
|
|
||||||
var fileOptions = FileOptions.SequentialScan;
|
var fileOptions = FileOptions.SequentialScan;
|
||||||
|
@ -81,6 +85,7 @@ namespace Jellyfin.Api.Helpers
|
||||||
{
|
{
|
||||||
int totalBytesRead = 0;
|
int totalBytesRead = 0;
|
||||||
int remainingBytesToRead = count;
|
int remainingBytesToRead = count;
|
||||||
|
var stopwatch = Stopwatch.StartNew();
|
||||||
|
|
||||||
int newOffset = offset;
|
int newOffset = offset;
|
||||||
while (remainingBytesToRead > 0)
|
while (remainingBytesToRead > 0)
|
||||||
|
@ -111,8 +116,8 @@ namespace Jellyfin.Api.Helpers
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// If the job is null it's a live stream and will require user action to close
|
// If the job is null it's a live stream and will require user action to close, but don't keep it open indefinitely
|
||||||
if (_job?.HasExited ?? false)
|
if (_job?.HasExited ?? stopwatch.ElapsedMilliseconds > _timeoutMs)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user