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

159 lines
4.8 KiB
C#
Raw Normal View History

2014-10-23 06:26:01 +02:00
using MediaBrowser.Common.IO;
2013-02-27 05:19:05 +01:00
using MediaBrowser.Model.Logging;
2013-12-07 16:52:38 +01:00
using ServiceStack.Web;
2014-09-03 04:30:24 +02:00
using System;
using System.Collections.Generic;
2013-02-27 05:19:05 +01:00
using System.IO;
using System.Threading.Tasks;
namespace MediaBrowser.Api.Playback.Progressive
{
public class ProgressiveStreamWriter : IStreamWriter, IHasOptions
2013-02-27 05:19:05 +01:00
{
2013-03-11 05:04:08 +01:00
private string Path { get; set; }
private ILogger Logger { get; set; }
private readonly IFileSystem _fileSystem;
2014-07-18 00:21:35 +02:00
private readonly TranscodingJob _job;
2013-03-11 05:04:08 +01:00
/// <summary>
/// The _options
/// </summary>
private readonly IDictionary<string, string> _options = new Dictionary<string, string>();
/// <summary>
/// Gets the options.
/// </summary>
/// <value>The options.</value>
public IDictionary<string, string> Options
{
get { return _options; }
}
2013-03-11 05:04:08 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ProgressiveStreamWriter" /> class.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="logger">The logger.</param>
2014-06-02 21:32:41 +02:00
/// <param name="fileSystem">The file system.</param>
2014-07-18 00:21:35 +02:00
public ProgressiveStreamWriter(string path, ILogger logger, IFileSystem fileSystem, TranscodingJob job)
2013-03-11 05:04:08 +01:00
{
Path = path;
Logger = logger;
_fileSystem = fileSystem;
2014-07-18 00:21:35 +02:00
_job = job;
2013-03-11 05:04:08 +01:00
}
2013-02-27 05:19:05 +01:00
/// <summary>
/// Writes to.
/// </summary>
/// <param name="responseStream">The response stream.</param>
public void WriteTo(Stream responseStream)
{
2014-10-23 06:26:01 +02:00
WriteToInternal(responseStream);
2013-02-27 05:19:05 +01:00
}
/// <summary>
/// Writes to async.
/// </summary>
/// <param name="responseStream">The response stream.</param>
/// <returns>Task.</returns>
2014-10-23 06:26:01 +02:00
private void WriteToInternal(Stream responseStream)
2013-02-27 05:19:05 +01:00
{
try
{
2014-10-23 06:26:01 +02:00
new ProgressiveFileCopier(_fileSystem, _job)
.StreamFile(Path, responseStream);
2013-02-27 05:19:05 +01:00
}
2015-04-13 21:14:37 +02:00
catch (IOException)
{
// These error are always the same so don't dump the whole stack trace
Logger.Error("Error streaming media. The client has most likely disconnected or transcoding has failed.");
throw;
}
2014-08-17 07:38:13 +02:00
catch (Exception ex)
2013-02-27 05:19:05 +01:00
{
2014-08-17 07:38:13 +02:00
Logger.ErrorException("Error streaming media. The client has most likely disconnected or transcoding has failed.", ex);
2013-03-11 05:04:08 +01:00
throw;
2013-02-27 05:19:05 +01:00
}
finally
{
2014-09-03 04:30:24 +02:00
if (_job != null)
{
ApiEntryPoint.Instance.OnTranscodeEndRequest(_job);
}
2013-02-27 05:19:05 +01:00
}
}
2014-06-26 19:04:11 +02:00
}
2013-02-27 05:19:05 +01:00
2014-06-26 19:04:11 +02:00
public class ProgressiveFileCopier
{
private readonly IFileSystem _fileSystem;
2014-07-18 00:21:35 +02:00
private readonly TranscodingJob _job;
2014-06-26 19:04:11 +02:00
2015-07-31 22:38:08 +02:00
// 256k
private const int BufferSize = 262144;
2014-09-03 04:30:24 +02:00
private long _bytesWritten = 0;
2014-07-18 00:21:35 +02:00
public ProgressiveFileCopier(IFileSystem fileSystem, TranscodingJob job)
2014-06-26 19:04:11 +02:00
{
_fileSystem = fileSystem;
2014-07-18 00:21:35 +02:00
_job = job;
2014-06-26 19:04:11 +02:00
}
2014-10-23 06:26:01 +02:00
public void StreamFile(string path, Stream outputStream)
2013-02-27 05:19:05 +01:00
{
var eofCount = 0;
long position = 0;
2014-10-23 06:26:01 +02:00
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, false))
2013-02-27 05:19:05 +01:00
{
while (eofCount < 15)
{
2015-07-31 22:38:08 +02:00
CopyToInternal(fs, outputStream, BufferSize);
2013-02-27 05:19:05 +01:00
var fsPosition = fs.Position;
var bytesRead = fsPosition - position;
//Logger.Debug("Streamed {0} bytes from file {1}", bytesRead, 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++;
}
2014-10-23 06:26:01 +02:00
var task = Task.Delay(100);
Task.WaitAll(task);
2013-02-27 05:19:05 +01:00
}
else
{
eofCount = 0;
}
position = fsPosition;
}
}
}
2014-09-03 04:30:24 +02:00
2014-10-23 06:26:01 +02:00
private void CopyToInternal(Stream source, Stream destination, int bufferSize)
2014-09-03 04:30:24 +02:00
{
2014-11-14 07:27:10 +01:00
var array = new byte[bufferSize];
2014-09-03 04:30:24 +02:00
int count;
2014-10-23 06:26:01 +02:00
while ((count = source.Read(array, 0, array.Length)) != 0)
2014-09-03 04:30:24 +02:00
{
2014-10-23 06:26:01 +02:00
destination.Write(array, 0, count);
2014-09-03 04:30:24 +02:00
_bytesWritten += count;
if (_job != null)
{
_job.BytesDownloaded = Math.Max(_job.BytesDownloaded ?? _bytesWritten, _bytesWritten);
}
}
}
2013-02-27 05:19:05 +01:00
}
}