2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
using ServiceStack.Web;
|
2014-09-03 02:30:24 +00:00
|
|
|
|
using System;
|
2013-03-24 02:45:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-27 04:19:05 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.Playback.Progressive
|
|
|
|
|
{
|
2013-03-24 02:45:00 +00:00
|
|
|
|
public class ProgressiveStreamWriter : IStreamWriter, IHasOptions
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
2013-03-11 04:04:08 +00:00
|
|
|
|
private string Path { get; set; }
|
|
|
|
|
private ILogger Logger { get; set; }
|
2013-10-31 14:03:23 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
private readonly TranscodingJob _job;
|
2013-03-11 04:04:08 +00:00
|
|
|
|
|
2013-03-24 02:45:00 +00: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 04:04:08 +00: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 19:32:41 +00:00
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2014-07-17 22:21:35 +00:00
|
|
|
|
public ProgressiveStreamWriter(string path, ILogger logger, IFileSystem fileSystem, TranscodingJob job)
|
2013-03-11 04:04:08 +00:00
|
|
|
|
{
|
|
|
|
|
Path = path;
|
|
|
|
|
Logger = logger;
|
2013-10-31 14:03:23 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
_job = job;
|
2013-03-11 04:04:08 +00:00
|
|
|
|
}
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Writes to.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="responseStream">The response stream.</param>
|
|
|
|
|
public void WriteTo(Stream responseStream)
|
|
|
|
|
{
|
2016-07-15 17:13:55 +00:00
|
|
|
|
var task = WriteToAsync(responseStream);
|
|
|
|
|
Task.WaitAll(task);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2016-07-15 17:13:55 +00:00
|
|
|
|
/// Writes to.
|
2013-02-27 04:19:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="responseStream">The response stream.</param>
|
2016-07-15 17:13:55 +00:00
|
|
|
|
public async Task WriteToAsync(Stream responseStream)
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-07-15 17:13:55 +00:00
|
|
|
|
await new ProgressiveFileCopier(_fileSystem, _job, Logger).StreamFile(Path, responseStream).ConfigureAwait(false);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
2015-04-13 19:14:37 +00: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 05:38:13 +00:00
|
|
|
|
catch (Exception ex)
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
2014-08-17 05:38:13 +00:00
|
|
|
|
Logger.ErrorException("Error streaming media. The client has most likely disconnected or transcoding has failed.", ex);
|
2013-03-11 04:04:08 +00:00
|
|
|
|
|
|
|
|
|
throw;
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
2014-09-03 02:30:24 +00:00
|
|
|
|
if (_job != null)
|
|
|
|
|
{
|
|
|
|
|
ApiEntryPoint.Instance.OnTranscodeEndRequest(_job);
|
|
|
|
|
}
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-06-26 17:04:11 +00:00
|
|
|
|
}
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
2014-06-26 17:04:11 +00:00
|
|
|
|
public class ProgressiveFileCopier
|
|
|
|
|
{
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
private readonly TranscodingJob _job;
|
2016-03-22 03:27:46 +00:00
|
|
|
|
private readonly ILogger _logger;
|
2014-06-26 17:04:11 +00:00
|
|
|
|
|
2015-07-31 20:38:08 +00:00
|
|
|
|
// 256k
|
|
|
|
|
private const int BufferSize = 262144;
|
2016-03-22 03:27:46 +00:00
|
|
|
|
|
2014-09-03 02:30:24 +00:00
|
|
|
|
private long _bytesWritten = 0;
|
|
|
|
|
|
2016-03-22 03:27:46 +00:00
|
|
|
|
public ProgressiveFileCopier(IFileSystem fileSystem, TranscodingJob job, ILogger logger)
|
2014-06-26 17:04:11 +00:00
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
_job = job;
|
2016-03-22 03:27:46 +00:00
|
|
|
|
_logger = logger;
|
2014-06-26 17:04:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-22 03:27:46 +00:00
|
|
|
|
public async Task StreamFile(string path, Stream outputStream)
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
|
|
|
|
var eofCount = 0;
|
|
|
|
|
long position = 0;
|
|
|
|
|
|
2016-07-16 18:13:34 +00:00
|
|
|
|
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
|
|
|
|
while (eofCount < 15)
|
|
|
|
|
{
|
2016-07-16 18:13:34 +00:00
|
|
|
|
await CopyToInternal(fs, outputStream, BufferSize).ConfigureAwait(false);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
|
|
|
|
var fsPosition = fs.Position;
|
|
|
|
|
|
|
|
|
|
var bytesRead = fsPosition - position;
|
|
|
|
|
|
2013-05-08 20:58:52 +00:00
|
|
|
|
//Logger.Debug("Streamed {0} bytes from file {1}", bytesRead, path);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
|
|
|
|
if (bytesRead == 0)
|
|
|
|
|
{
|
2014-07-17 22:21:35 +00:00
|
|
|
|
if (_job == null || _job.HasExited)
|
|
|
|
|
{
|
|
|
|
|
eofCount++;
|
|
|
|
|
}
|
2016-03-22 03:27:46 +00:00
|
|
|
|
await Task.Delay(100).ConfigureAwait(false);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
eofCount = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
position = fsPosition;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-03 02:30:24 +00:00
|
|
|
|
|
2016-07-16 18:13:34 +00:00
|
|
|
|
private async Task CopyToInternal(Stream source, Stream destination, int bufferSize)
|
2014-09-03 02:30:24 +00:00
|
|
|
|
{
|
2014-11-14 06:27:10 +00:00
|
|
|
|
var array = new byte[bufferSize];
|
2014-09-03 02:30:24 +00:00
|
|
|
|
int count;
|
2016-07-16 18:13:34 +00:00
|
|
|
|
while ((count = await source.ReadAsync(array, 0, array.Length).ConfigureAwait(false)) != 0)
|
2014-09-03 02:30:24 +00:00
|
|
|
|
{
|
2016-03-22 03:27:46 +00:00
|
|
|
|
//if (_job != null)
|
|
|
|
|
//{
|
|
|
|
|
// var didPause = false;
|
|
|
|
|
// var totalPauseTime = 0;
|
|
|
|
|
|
|
|
|
|
// if (_job.IsUserPaused)
|
|
|
|
|
// {
|
|
|
|
|
// _logger.Debug("Pausing writing to network stream while user has paused playback.");
|
|
|
|
|
|
|
|
|
|
// while (_job.IsUserPaused && totalPauseTime < 30000)
|
|
|
|
|
// {
|
|
|
|
|
// didPause = true;
|
|
|
|
|
// var pauseTime = 500;
|
|
|
|
|
// totalPauseTime += pauseTime;
|
|
|
|
|
// await Task.Delay(pauseTime).ConfigureAwait(false);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// if (didPause)
|
|
|
|
|
// {
|
|
|
|
|
// _logger.Debug("Resuming writing to network stream due to user unpausing playback.");
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
|
2016-07-16 18:13:34 +00:00
|
|
|
|
await destination.WriteAsync(array, 0, count).ConfigureAwait(false);
|
2014-09-03 02:30:24 +00:00
|
|
|
|
|
|
|
|
|
_bytesWritten += count;
|
|
|
|
|
|
|
|
|
|
if (_job != null)
|
|
|
|
|
{
|
|
|
|
|
_job.BytesDownloaded = Math.Max(_job.BytesDownloaded ?? _bytesWritten, _bytesWritten);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|