jellyfin/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs

139 lines
4.8 KiB
C#
Raw Normal View History

2016-03-27 14:11:27 -07:00
using MediaBrowser.Model.Logging;
2014-09-02 19:30:24 -07:00
using System;
2013-02-26 21:19:05 -07:00
using System.IO;
2016-07-24 09:46:17 -07:00
using System.Threading;
2013-02-26 21:19:05 -07:00
using System.Threading.Tasks;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.IO;
using MediaBrowser.Controller.Net;
using System.Collections.Generic;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
2016-10-05 00:15:29 -07:00
using MediaBrowser.Controller.Library;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.Services;
2013-02-26 21:19:05 -07:00
namespace MediaBrowser.Api.Playback.Progressive
{
2016-10-25 12:02:04 -07:00
public class ProgressiveFileCopier : IAsyncStreamWriter, IHasHeaders
2014-06-26 10:04:11 -07:00
{
private readonly IFileSystem _fileSystem;
2014-07-17 15:21:35 -07:00
private readonly TranscodingJob _job;
2016-03-21 20:27:46 -07:00
private readonly ILogger _logger;
private readonly string _path;
private readonly CancellationToken _cancellationToken;
private readonly Dictionary<string, string> _outputHeaders;
2014-06-26 10:04:11 -07:00
2015-07-31 13:38:08 -07:00
// 256k
2016-07-27 10:11:25 -07:00
private const int BufferSize = 81920;
2016-03-21 20:27:46 -07:00
2014-09-02 19:30:24 -07:00
private long _bytesWritten = 0;
2016-09-29 19:21:24 -07:00
public long StartPosition { get; set; }
2016-09-25 11:39:13 -07:00
public bool AllowEndOfFile = true;
2016-10-25 12:02:04 -07:00
private readonly IDirectStreamProvider _directStreamProvider;
2016-10-05 00:15:29 -07:00
public ProgressiveFileCopier(IFileSystem fileSystem, string path, Dictionary<string, string> outputHeaders, TranscodingJob job, ILogger logger, CancellationToken cancellationToken)
2014-06-26 10:04:11 -07:00
{
_fileSystem = fileSystem;
_path = path;
_outputHeaders = outputHeaders;
2014-07-17 15:21:35 -07:00
_job = job;
2016-03-21 20:27:46 -07:00
_logger = logger;
_cancellationToken = cancellationToken;
2014-06-26 10:04:11 -07:00
}
2016-10-05 00:15:29 -07:00
public ProgressiveFileCopier(IDirectStreamProvider directStreamProvider, Dictionary<string, string> outputHeaders, TranscodingJob job, ILogger logger, CancellationToken cancellationToken)
{
_directStreamProvider = directStreamProvider;
_outputHeaders = outputHeaders;
_job = job;
_logger = logger;
_cancellationToken = cancellationToken;
}
2016-10-25 12:02:04 -07:00
public IDictionary<string, string> Headers
{
get
{
return _outputHeaders;
}
}
2016-10-05 00:15:29 -07:00
private Stream GetInputStream()
{
2016-10-25 12:02:04 -07:00
return _fileSystem.GetFileStream(_path, FileOpenMode.Open, FileAccessMode.Read, FileShareMode.ReadWrite, true);
2016-10-05 00:15:29 -07:00
}
2016-10-25 12:02:04 -07:00
public async Task WriteToAsync(Stream outputStream, CancellationToken cancellationToken)
2013-02-26 21:19:05 -07:00
{
try
2013-02-26 21:19:05 -07:00
{
2016-10-05 00:15:29 -07:00
if (_directStreamProvider != null)
{
await _directStreamProvider.CopyToAsync(outputStream, _cancellationToken).ConfigureAwait(false);
return;
}
var eofCount = 0;
2016-10-05 00:15:29 -07:00
using (var inputStream = GetInputStream())
2013-02-26 21:19:05 -07:00
{
2016-09-29 19:21:24 -07:00
if (StartPosition > 0)
{
2016-10-05 00:15:29 -07:00
inputStream.Position = StartPosition;
2016-09-29 19:21:24 -07:00
}
2016-09-25 11:39:13 -07:00
while (eofCount < 15 || !AllowEndOfFile)
{
2016-10-05 00:15:29 -07:00
var bytesRead = await CopyToAsyncInternal(inputStream, outputStream, BufferSize, _cancellationToken).ConfigureAwait(false);
2013-02-26 21:19:05 -07:00
//var position = fs.Position;
//_logger.Debug("Streamed {0} bytes to position {1} from file {2}", bytesRead, position, path);
2013-02-26 21:19:05 -07:00
if (bytesRead == 0)
2014-07-17 15:21:35 -07:00
{
if (_job == null || _job.HasExited)
{
eofCount++;
}
2016-08-15 17:22:59 -07:00
await Task.Delay(100, _cancellationToken).ConfigureAwait(false);
}
else
{
eofCount = 0;
2014-07-17 15:21:35 -07:00
}
2013-02-26 21:19:05 -07:00
}
}
}
finally
{
if (_job != null)
{
ApiEntryPoint.Instance.OnTranscodeEndRequest(_job);
}
}
2013-02-26 21:19:05 -07:00
}
2014-09-02 19:30:24 -07:00
2016-07-24 09:46:17 -07:00
private async Task<int> CopyToAsyncInternal(Stream source, Stream destination, Int32 bufferSize, CancellationToken cancellationToken)
2014-09-02 19:30:24 -07:00
{
2016-07-24 09:46:17 -07:00
byte[] buffer = new byte[bufferSize];
int bytesRead;
int totalBytesRead = 0;
2016-03-21 20:27:46 -07:00
2016-07-24 09:46:17 -07:00
while ((bytesRead = await source.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)
{
await destination.WriteAsync(buffer, 0, bytesRead, cancellationToken).ConfigureAwait(false);
2014-09-02 19:30:24 -07:00
2016-07-24 09:46:17 -07:00
_bytesWritten += bytesRead;
totalBytesRead += bytesRead;
2014-09-02 19:30:24 -07:00
if (_job != null)
{
_job.BytesDownloaded = Math.Max(_job.BytesDownloaded ?? _bytesWritten, _bytesWritten);
}
}
2016-07-24 09:46:17 -07:00
return totalBytesRead;
2014-09-02 19:30:24 -07:00
}
2013-02-26 21:19:05 -07:00
}
}