jellyfin/MediaBrowser.Api/Playback/TranscodingThrottler.cs

177 lines
5.3 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Logging;
2015-02-27 18:43:06 +01:00
using System;
2016-11-01 04:07:45 +01:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Threading;
2015-02-27 18:43:06 +01:00
namespace MediaBrowser.Api.Playback
{
public class TranscodingThrottler : IDisposable
{
private readonly TranscodingJob _job;
private readonly ILogger _logger;
2016-11-01 04:07:45 +01:00
private ITimer _timer;
2015-02-28 19:47:05 +01:00
private bool _isPaused;
private readonly IConfigurationManager _config;
2016-11-01 04:07:45 +01:00
private readonly ITimerFactory _timerFactory;
private readonly IFileSystem _fileSystem;
2015-02-27 18:43:06 +01:00
2016-11-01 04:07:45 +01:00
public TranscodingThrottler(TranscodingJob job, ILogger logger, IConfigurationManager config, ITimerFactory timerFactory, IFileSystem fileSystem)
2015-03-05 21:10:09 +01:00
{
_job = job;
_logger = logger;
_config = config;
2016-11-01 04:07:45 +01:00
_timerFactory = timerFactory;
_fileSystem = fileSystem;
}
private EncodingOptions GetOptions()
{
return _config.GetConfiguration<EncodingOptions>("encoding");
2015-03-05 21:10:09 +01:00
}
2015-02-27 18:43:06 +01:00
public void Start()
{
2016-11-01 04:07:45 +01:00
_timer = _timerFactory.Create(TimerCallback, null, 5000, 5000);
2015-02-27 18:43:06 +01:00
}
private void TimerCallback(object state)
{
2015-02-28 14:42:47 +01:00
if (_job.HasExited)
{
DisposeTimer();
return;
}
var options = GetOptions();
2016-01-09 05:27:58 +01:00
if (options.EnableThrottling && IsThrottleAllowed(_job, options.ThrottleDelaySeconds))
2015-02-27 18:43:06 +01:00
{
PauseTranscoding();
}
else
{
UnpauseTranscoding();
}
}
private void PauseTranscoding()
{
2015-02-28 19:47:05 +01:00
if (!_isPaused)
{
2015-06-05 07:32:14 +02:00
_logger.Debug("Sending pause command to ffmpeg");
2015-02-28 19:47:05 +01:00
2015-03-16 19:24:42 +01:00
try
{
_job.Process.StandardInput.Write("c");
_isPaused = true;
}
catch (Exception ex)
{
_logger.ErrorException("Error pausing transcoding", ex);
}
2015-02-28 19:47:05 +01:00
}
2015-02-27 18:43:06 +01:00
}
2015-04-11 00:16:41 +02:00
public void UnpauseTranscoding()
2015-02-27 18:43:06 +01:00
{
2015-02-28 19:47:05 +01:00
if (_isPaused)
{
2015-06-05 07:32:14 +02:00
_logger.Debug("Sending unpause command to ffmpeg");
2015-02-28 19:47:05 +01:00
2015-03-16 19:24:42 +01:00
try
{
_job.Process.StandardInput.WriteLine();
_isPaused = false;
}
catch (Exception ex)
{
_logger.ErrorException("Error unpausing transcoding", ex);
}
2015-02-28 19:47:05 +01:00
}
2015-02-27 18:43:06 +01:00
}
private bool IsThrottleAllowed(TranscodingJob job, int thresholdSeconds)
2015-02-27 18:43:06 +01:00
{
var bytesDownloaded = job.BytesDownloaded ?? 0;
var transcodingPositionTicks = job.TranscodingPositionTicks ?? 0;
var downloadPositionTicks = job.DownloadPositionTicks ?? 0;
var path = job.Path;
var gapLengthInTicks = TimeSpan.FromSeconds(thresholdSeconds).Ticks;
2015-02-27 18:43:06 +01:00
if (downloadPositionTicks > 0 && transcodingPositionTicks > 0)
{
// HLS - time-based consideration
var targetGap = gapLengthInTicks;
2015-02-27 18:43:06 +01:00
var gap = transcodingPositionTicks - downloadPositionTicks;
if (gap < targetGap)
{
2015-02-28 14:42:47 +01:00
//_logger.Debug("Not throttling transcoder gap {0} target gap {1}", gap, targetGap);
2015-02-27 18:43:06 +01:00
return false;
}
2015-02-28 14:42:47 +01:00
//_logger.Debug("Throttling transcoder gap {0} target gap {1}", gap, targetGap);
2015-02-27 18:43:06 +01:00
return true;
}
if (bytesDownloaded > 0 && transcodingPositionTicks > 0)
{
// Progressive Streaming - byte-based consideration
try
{
2016-11-01 04:07:45 +01:00
var bytesTranscoded = job.BytesTranscoded ?? _fileSystem.GetFileInfo(path).Length;
2015-02-27 18:43:06 +01:00
// Estimate the bytes the transcoder should be ahead
double gapFactor = gapLengthInTicks;
2015-02-27 18:43:06 +01:00
gapFactor /= transcodingPositionTicks;
var targetGap = bytesTranscoded * gapFactor;
var gap = bytesTranscoded - bytesDownloaded;
if (gap < targetGap)
{
2015-02-28 14:42:47 +01:00
//_logger.Debug("Not throttling transcoder gap {0} target gap {1} bytes downloaded {2}", gap, targetGap, bytesDownloaded);
2015-02-27 18:43:06 +01:00
return false;
}
2015-02-28 14:42:47 +01:00
//_logger.Debug("Throttling transcoder gap {0} target gap {1} bytes downloaded {2}", gap, targetGap, bytesDownloaded);
2015-02-27 18:43:06 +01:00
return true;
}
catch
{
2015-02-28 14:42:47 +01:00
//_logger.Error("Error getting output size");
2015-02-28 19:47:05 +01:00
return false;
2015-02-27 18:43:06 +01:00
}
}
2015-02-28 19:47:05 +01:00
//_logger.Debug("No throttle data for " + path);
2015-02-27 18:43:06 +01:00
return false;
}
2015-03-25 02:34:34 +01:00
public void Stop()
{
DisposeTimer();
UnpauseTranscoding();
}
2015-02-27 18:43:06 +01:00
public void Dispose()
{
DisposeTimer();
}
private void DisposeTimer()
{
if (_timer != null)
{
_timer.Dispose();
_timer = null;
}
}
}
}