2017-08-09 12:56:38 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
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-05 00:15:29 -07:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2017-08-09 12:56:38 -07:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2018-12-13 06:18:25 -07:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2016-10-25 12:02:04 -07:00
|
|
|
|
using MediaBrowser.Model.Services;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
using MediaBrowser.Model.System;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
2013-02-26 21:19:05 -07:00
|
|
|
|
|
2017-08-09 12:56:38 -07:00
|
|
|
|
namespace MediaBrowser.Api.LiveTv
|
2013-02-26 21:19:05 -07:00
|
|
|
|
{
|
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;
|
2016-03-21 20:27:46 -07:00
|
|
|
|
private readonly ILogger _logger;
|
2016-08-04 21:08:11 -07:00
|
|
|
|
private readonly string _path;
|
|
|
|
|
private readonly Dictionary<string, string> _outputHeaders;
|
2014-06-26 10:04:11 -07:00
|
|
|
|
|
2017-05-21 21:54:02 -07:00
|
|
|
|
const int StreamCopyToBufferSize = 81920;
|
2016-03-21 20:27:46 -07:00
|
|
|
|
|
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;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
private readonly IEnvironmentInfo _environment;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
private IStreamHelper _streamHelper;
|
2016-10-05 00:15:29 -07:00
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
public ProgressiveFileCopier(IFileSystem fileSystem, IStreamHelper streamHelper, string path, Dictionary<string, string> outputHeaders, ILogger logger, IEnvironmentInfo environment)
|
2014-06-26 10:04:11 -07:00
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
2016-08-04 21:08:11 -07:00
|
|
|
|
_path = path;
|
|
|
|
|
_outputHeaders = outputHeaders;
|
2016-03-21 20:27:46 -07:00
|
|
|
|
_logger = logger;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
_environment = environment;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
_streamHelper = streamHelper;
|
2014-06-26 10:04:11 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
public ProgressiveFileCopier(IDirectStreamProvider directStreamProvider, IStreamHelper streamHelper, Dictionary<string, string> outputHeaders, ILogger logger, IEnvironmentInfo environment)
|
2016-10-05 00:15:29 -07:00
|
|
|
|
{
|
|
|
|
|
_directStreamProvider = directStreamProvider;
|
|
|
|
|
_outputHeaders = outputHeaders;
|
|
|
|
|
_logger = logger;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
_environment = environment;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
_streamHelper = streamHelper;
|
2016-10-05 00:15:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-25 12:02:04 -07:00
|
|
|
|
public IDictionary<string, string> Headers
|
2016-08-04 21:08:11 -07:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _outputHeaders;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 21:54:02 -07:00
|
|
|
|
private Stream GetInputStream(bool allowAsyncFileRead)
|
2016-10-05 00:15:29 -07:00
|
|
|
|
{
|
2017-05-31 21:27:17 -07:00
|
|
|
|
var fileOpenOptions = FileOpenOptions.SequentialScan;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
|
|
|
|
|
if (allowAsyncFileRead)
|
|
|
|
|
{
|
|
|
|
|
fileOpenOptions |= FileOpenOptions.Asynchronous;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _fileSystem.GetFileStream(_path, FileOpenMode.Open, FileAccessMode.Read, FileShareMode.ReadWrite, fileOpenOptions);
|
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
|
|
|
|
{
|
2017-08-09 12:56:38 -07:00
|
|
|
|
if (_directStreamProvider != null)
|
2013-02-26 21:19:05 -07:00
|
|
|
|
{
|
2017-08-09 12:56:38 -07:00
|
|
|
|
await _directStreamProvider.CopyToAsync(outputStream, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-10-05 00:15:29 -07:00
|
|
|
|
|
2017-08-09 12:56:38 -07:00
|
|
|
|
var eofCount = 0;
|
2016-08-06 07:08:38 -07:00
|
|
|
|
|
2017-08-09 12:56:38 -07:00
|
|
|
|
// use non-async filestream along with read due to https://github.com/dotnet/corefx/issues/6039
|
2018-09-12 10:26:21 -07:00
|
|
|
|
var allowAsyncFileRead = true;
|
2017-05-21 21:54:02 -07:00
|
|
|
|
|
2017-08-09 12:56:38 -07:00
|
|
|
|
using (var inputStream = GetInputStream(allowAsyncFileRead))
|
|
|
|
|
{
|
|
|
|
|
if (StartPosition > 0)
|
2013-02-26 21:19:05 -07:00
|
|
|
|
{
|
2017-08-09 12:56:38 -07:00
|
|
|
|
inputStream.Position = StartPosition;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-13 23:52:56 -07:00
|
|
|
|
var emptyReadLimit = AllowEndOfFile ? 20 : 100;
|
|
|
|
|
|
|
|
|
|
while (eofCount < emptyReadLimit)
|
2017-08-09 12:56:38 -07:00
|
|
|
|
{
|
|
|
|
|
int bytesRead;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
bytesRead = await _streamHelper.CopyToAsync(inputStream, outputStream, cancellationToken).ConfigureAwait(false);
|
2016-09-29 19:21:24 -07:00
|
|
|
|
|
2017-08-09 12:56:38 -07:00
|
|
|
|
//var position = fs.Position;
|
2018-12-13 06:18:25 -07:00
|
|
|
|
//_logger.LogDebug("Streamed {0} bytes to position {1} from file {2}", bytesRead, position, path);
|
2017-08-09 12:56:38 -07:00
|
|
|
|
|
|
|
|
|
if (bytesRead == 0)
|
2016-08-06 07:08:38 -07:00
|
|
|
|
{
|
2017-08-09 12:56:38 -07:00
|
|
|
|
eofCount++;
|
|
|
|
|
await Task.Delay(100, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
eofCount = 0;
|
2013-02-26 21:19:05 -07:00
|
|
|
|
}
|
2016-08-06 07:08:38 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-26 21:19:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|