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

163 lines
4.4 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using System.Globalization;
2017-09-28 19:02:49 +02:00
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Configuration;
2020-03-24 16:12:06 +01:00
using MediaBrowser.Controller.Library;
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;
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
2022-12-05 15:01:13 +01:00
if (tuner is not null)
2018-09-12 19:26:21 +02:00
{
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");
}
2021-09-25 20:32:53 +02:00
protected IFileSystem FileSystem { get; }
protected IStreamHelper StreamHelper { get; }
protected ILogger Logger { get; }
protected CancellationTokenSource LiveStreamCancellationTokenSource { get; } = new CancellationTokenSource();
protected string TempFilePath { get; set; }
2019-07-07 16:39:35 +02:00
public MediaSourceInfo OriginalMediaSource { get; set; }
2020-06-15 23:43:52 +02:00
2019-07-07 16:39:35 +02:00
public MediaSourceInfo MediaSource { get; set; }
public int ConsumerCount { get; set; }
public string OriginalStreamId { get; set; }
2020-06-15 23:43:52 +02:00
2019-07-07 16:39:35 +02:00
public bool EnableStreamSharing { get; set; }
2020-06-15 23:43:52 +02:00
2019-07-07 16:39:35 +02:00
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;
}
2021-09-10 09:56:48 +02:00
public Stream GetStream()
{
2022-01-22 23:36:42 +01:00
var stream = new FileStream(
TempFilePath,
FileMode.Open,
FileAccess.Read,
FileShare.ReadWrite,
IODefaults.FileStreamBufferSize,
FileOptions.SequentialScan | FileOptions.Asynchronous);
bool seekFile = (DateTime.UtcNow - DateOpened).TotalSeconds > 10;
if (seekFile)
{
TrySeek(stream, -20000);
}
return stream;
}
protected async Task DeleteTempFiles(string path, 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 file {FilePath}", path);
2017-09-28 19:02:49 +02:00
}
try
2017-09-28 19:02:49 +02:00
{
FileSystem.DeleteFile(path);
2018-09-12 19:26:21 +02:00
}
catch (Exception ex)
2018-09-12 19:26:21 +02:00
{
Logger.LogError(ex, "Error deleting file {FilePath}", path);
if (retryCount <= 40)
2017-10-14 08:52:56 +02:00
{
await Task.Delay(500).ConfigureAwait(false);
await DeleteTempFiles(path, retryCount + 1).ConfigureAwait(false);
2017-10-14 08:52:56 +02:00
}
2018-09-12 19:26:21 +02:00
}
}
2017-09-28 19:02:49 +02:00
private void TrySeek(Stream stream, long offset)
2017-09-28 19:02:49 +02:00
{
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
}
}
}
}