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

109 lines
3.6 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Model.Logging;
2014-09-03 04:30:24 +02:00
using System;
2013-02-27 05:19:05 +01:00
using System.IO;
2016-07-24 18:46:17 +02:00
using System.Threading;
2013-02-27 05:19:05 +01:00
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
using MediaBrowser.Controller.Net;
using System.Collections.Generic;
using ServiceStack.Web;
2013-02-27 05:19:05 +01:00
namespace MediaBrowser.Api.Playback.Progressive
{
public class ProgressiveFileCopier : IAsyncStreamSource, IHasOptions
2014-06-26 19:04:11 +02:00
{
private readonly IFileSystem _fileSystem;
2014-07-18 00:21:35 +02:00
private readonly TranscodingJob _job;
2016-03-22 04:27:46 +01:00
private readonly ILogger _logger;
private readonly string _path;
private readonly CancellationToken _cancellationToken;
private readonly Dictionary<string, string> _outputHeaders;
2014-06-26 19:04:11 +02:00
2015-07-31 22:38:08 +02:00
// 256k
2016-07-27 19:11:25 +02:00
private const int BufferSize = 81920;
2016-03-22 04:27:46 +01:00
2014-09-03 04:30:24 +02:00
private long _bytesWritten = 0;
2016-09-25 20:39:13 +02:00
public bool AllowEndOfFile = true;
public ProgressiveFileCopier(IFileSystem fileSystem, string path, Dictionary<string, string> outputHeaders, TranscodingJob job, ILogger logger, CancellationToken cancellationToken)
2014-06-26 19:04:11 +02:00
{
_fileSystem = fileSystem;
_path = path;
_outputHeaders = outputHeaders;
2014-07-18 00:21:35 +02:00
_job = job;
2016-03-22 04:27:46 +01:00
_logger = logger;
_cancellationToken = cancellationToken;
2014-06-26 19:04:11 +02:00
}
public IDictionary<string, string> Options
{
get
{
return _outputHeaders;
}
}
public async Task WriteToAsync(Stream outputStream)
2013-02-27 05:19:05 +01:00
{
try
2013-02-27 05:19:05 +01:00
{
var eofCount = 0;
2016-08-16 02:22:59 +02:00
using (var fs = _fileSystem.GetFileStream(_path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
2013-02-27 05:19:05 +01:00
{
2016-09-25 20:39:13 +02:00
while (eofCount < 15 || !AllowEndOfFile)
{
2016-08-16 02:22:59 +02:00
var bytesRead = await CopyToAsyncInternal(fs, outputStream, BufferSize, _cancellationToken).ConfigureAwait(false);
2013-02-27 05:19:05 +01:00
//var position = fs.Position;
//_logger.Debug("Streamed {0} bytes to position {1} from file {2}", bytesRead, position, path);
2013-02-27 05:19:05 +01:00
if (bytesRead == 0)
2014-07-18 00:21:35 +02:00
{
if (_job == null || _job.HasExited)
{
eofCount++;
}
2016-08-16 02:22:59 +02:00
await Task.Delay(100, _cancellationToken).ConfigureAwait(false);
}
else
{
eofCount = 0;
2014-07-18 00:21:35 +02:00
}
2013-02-27 05:19:05 +01:00
}
}
}
finally
{
if (_job != null)
{
ApiEntryPoint.Instance.OnTranscodeEndRequest(_job);
}
}
2013-02-27 05:19:05 +01:00
}
2014-09-03 04:30:24 +02:00
2016-07-24 18:46:17 +02:00
private async Task<int> CopyToAsyncInternal(Stream source, Stream destination, Int32 bufferSize, CancellationToken cancellationToken)
2014-09-03 04:30:24 +02:00
{
2016-07-24 18:46:17 +02:00
byte[] buffer = new byte[bufferSize];
int bytesRead;
int totalBytesRead = 0;
2016-03-22 04:27:46 +01:00
2016-07-24 18:46:17 +02: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-03 04:30:24 +02:00
2016-07-24 18:46:17 +02:00
_bytesWritten += bytesRead;
totalBytesRead += bytesRead;
2014-09-03 04:30:24 +02:00
if (_job != null)
{
_job.BytesDownloaded = Math.Max(_job.BytesDownloaded ?? _bytesWritten, _bytesWritten);
}
}
2016-07-24 18:46:17 +02:00
return totalBytesRead;
2014-09-03 04:30:24 +02:00
}
2013-02-27 05:19:05 +01:00
}
}