jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs

236 lines
7.2 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2017-09-28 19:02:49 +02:00
using System.Collections.Generic;
using System.Globalization;
2017-09-28 19:02:49 +02:00
using System.IO;
using System.Linq;
2017-09-28 19:02:49 +02:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Library;
using MediaBrowser.Common.Configuration;
2017-09-28 19:02:49 +02:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.LiveTv;
using Microsoft.Extensions.Logging;
2017-09-28 19:02:49 +02:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts
{
public class LiveStream : ILiveStream
{
private readonly IConfigurationManager _configurationManager;
2017-09-28 19:02:49 +02:00
protected readonly IFileSystem FileSystem;
2019-07-07 16:39:35 +02:00
protected readonly IStreamHelper StreamHelper;
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
protected string TempFilePath;
2017-09-28 19:02:49 +02:00
protected readonly ILogger Logger;
2017-10-14 08:52:56 +02:00
protected readonly CancellationTokenSource LiveStreamCancellationTokenSource = new CancellationTokenSource();
2017-09-28 19:02:49 +02:00
2019-07-07 16:39:35 +02:00
public LiveStream(
MediaSourceInfo mediaSource,
TunerHostInfo tuner,
IFileSystem fileSystem,
ILogger logger,
IConfigurationManager configurationManager,
2019-07-07 16:39:35 +02:00
IStreamHelper streamHelper)
2017-09-28 19:02:49 +02:00
{
OriginalMediaSource = mediaSource;
FileSystem = fileSystem;
2018-09-12 19:26:21 +02:00
MediaSource = mediaSource;
2017-09-28 19:02:49 +02:00
Logger = logger;
EnableStreamSharing = true;
UniqueId = Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture);
2018-09-12 19:26:21 +02:00
if (tuner != null)
{
TunerHostId = tuner.Id;
}
2017-11-14 08:41:21 +01:00
_configurationManager = configurationManager;
2019-07-07 16:39:35 +02:00
StreamHelper = streamHelper;
2017-11-14 08:41:21 +01:00
2018-09-12 19:26:21 +02:00
ConsumerCount = 1;
2017-11-14 08:41:21 +01:00
SetTempFilePath("ts");
}
2019-07-07 16:39:35 +02:00
protected virtual int EmptyReadLimit => 1000;
public MediaSourceInfo OriginalMediaSource { get; set; }
public MediaSourceInfo MediaSource { get; set; }
public int ConsumerCount { get; set; }
public string OriginalStreamId { get; set; }
public bool EnableStreamSharing { get; set; }
public string UniqueId { get; }
public string TunerHostId { get; }
public DateTime DateOpened { get; protected set; }
2017-11-14 08:41:21 +01:00
protected void SetTempFilePath(string extension)
{
TempFilePath = Path.Combine(_configurationManager.GetTranscodePath(), UniqueId + "." + extension);
2017-09-28 19:02:49 +02:00
}
2017-10-23 21:14:11 +02:00
public virtual Task Open(CancellationToken openCancellationToken)
2017-09-28 19:02:49 +02:00
{
2018-09-12 19:26:21 +02:00
DateOpened = DateTime.UtcNow;
return Task.CompletedTask;
2017-09-28 19:02:49 +02:00
}
2018-09-12 19:26:21 +02:00
public Task Close()
{
EnableStreamSharing = false;
2019-07-07 16:39:35 +02:00
Logger.LogInformation("Closing {Type}", GetType().Name);
2018-09-12 19:26:21 +02:00
LiveStreamCancellationTokenSource.Cancel();
return Task.CompletedTask;
}
2019-07-07 16:39:35 +02:00
protected FileStream GetInputStream(string path, bool allowAsyncFileRead)
=> new FileStream(
path,
FileMode.Open,
FileAccess.Read,
FileShare.ReadWrite,
2020-01-08 17:52:50 +01:00
IODefaults.FileStreamBufferSize,
2019-07-07 16:39:35 +02:00
allowAsyncFileRead ? FileOptions.SequentialScan | FileOptions.Asynchronous : FileOptions.SequentialScan);
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
public Task DeleteTempFiles()
{
return DeleteTempFiles(GetStreamFilePaths());
}
protected async Task DeleteTempFiles(IEnumerable<string> paths, int retryCount = 0)
2017-09-28 19:02:49 +02:00
{
2017-10-23 21:14:11 +02:00
if (retryCount == 0)
{
Logger.LogInformation("Deleting temp files {0}", paths);
2017-10-23 21:14:11 +02:00
}
2018-09-12 19:26:21 +02:00
var failedFiles = new List<string>();
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
foreach (var path in paths)
{
if (!File.Exists(path))
2018-09-12 19:26:21 +02:00
{
continue;
2018-09-12 19:26:21 +02:00
}
try
2018-09-12 19:26:21 +02:00
{
FileSystem.DeleteFile(path);
2018-09-12 19:26:21 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error deleting file {path}", path);
2018-09-12 19:26:21 +02:00
failedFiles.Add(path);
}
2017-09-28 19:02:49 +02:00
}
2018-09-12 19:26:21 +02:00
if (failedFiles.Count > 0 && retryCount <= 40)
2017-09-28 19:02:49 +02:00
{
2018-09-12 19:26:21 +02:00
await Task.Delay(500).ConfigureAwait(false);
await DeleteTempFiles(failedFiles, retryCount + 1).ConfigureAwait(false);
2017-09-28 19:02:49 +02:00
}
2018-09-12 19:26:21 +02:00
}
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
protected virtual List<string> GetStreamFilePaths()
{
return new List<string> { TempFilePath };
2017-09-28 19:02:49 +02:00
}
public async Task CopyToAsync(Stream stream, CancellationToken cancellationToken)
{
2017-10-14 08:52:56 +02:00
cancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, LiveStreamCancellationTokenSource.Token).Token;
// use non-async filestream on windows along with read due to https://github.com/dotnet/corefx/issues/6039
var allowAsync = Environment.OSVersion.Platform != PlatformID.Win32NT;
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
bool seekFile = (DateTime.UtcNow - DateOpened).TotalSeconds > 10;
var nextFileInfo = GetNextFile(null);
2019-07-07 16:39:35 +02:00
var nextFile = nextFileInfo.file;
var isLastFile = nextFileInfo.isLastFile;
2018-09-12 19:26:21 +02:00
while (!string.IsNullOrEmpty(nextFile))
2017-09-28 19:02:49 +02:00
{
2018-09-12 19:26:21 +02:00
var emptyReadLimit = isLastFile ? EmptyReadLimit : 1;
await CopyFile(nextFile, seekFile, emptyReadLimit, allowAsync, stream, cancellationToken).ConfigureAwait(false);
2017-09-28 19:02:49 +02:00
2018-09-12 19:26:21 +02:00
seekFile = false;
nextFileInfo = GetNextFile(nextFile);
2019-07-07 16:39:35 +02:00
nextFile = nextFileInfo.file;
isLastFile = nextFileInfo.isLastFile;
2017-09-28 19:02:49 +02:00
}
2018-09-12 19:26:21 +02:00
Logger.LogInformation("Live Stream ended.");
2017-09-28 19:02:49 +02:00
}
private (string file, bool isLastFile) GetNextFile(string currentFile)
2017-09-28 19:02:49 +02:00
{
2018-09-12 19:26:21 +02:00
var files = GetStreamFilePaths();
2017-10-14 08:52:56 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(currentFile))
2017-09-28 19:02:49 +02:00
{
return (files.Last(), true);
2018-09-12 19:26:21 +02:00
}
var nextIndex = files.FindIndex(i => string.Equals(i, currentFile, StringComparison.OrdinalIgnoreCase)) + 1;
var isLastFile = nextIndex == files.Count - 1;
2017-09-28 19:02:49 +02:00
return (files.ElementAtOrDefault(nextIndex), isLastFile);
2018-09-12 19:26:21 +02:00
}
private async Task CopyFile(string path, bool seekFile, int emptyReadLimit, bool allowAsync, Stream stream, CancellationToken cancellationToken)
{
2019-07-07 16:39:35 +02:00
using (var inputStream = GetInputStream(path, allowAsync))
2018-09-12 19:26:21 +02:00
{
if (seekFile)
2017-10-14 08:52:56 +02:00
{
2018-09-12 19:26:21 +02:00
TrySeek(inputStream, -20000);
2017-10-14 08:52:56 +02:00
}
2019-07-07 16:39:35 +02:00
await StreamHelper.CopyToAsync(
inputStream,
stream,
2020-01-08 17:52:50 +01:00
IODefaults.CopyToBufferSize,
2019-07-07 16:39:35 +02:00
emptyReadLimit,
cancellationToken).ConfigureAwait(false);
2018-09-12 19:26:21 +02:00
}
}
2017-09-28 19:02:49 +02:00
private void TrySeek(FileStream stream, long offset)
{
if (!stream.CanSeek)
{
return;
}
2017-09-28 19:02:49 +02:00
try
{
stream.Seek(offset, SeekOrigin.End);
2017-10-05 20:10:46 +02:00
}
catch (IOException)
{
2017-09-28 19:02:49 +02:00
}
catch (ArgumentException)
{
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error seeking stream");
2017-09-28 19:02:49 +02:00
}
}
}
}