jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs

104 lines
4.7 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.IO;
using System.Net.Http;
2016-02-12 02:01:38 -05:00
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Api.Helpers;
2016-02-12 02:01:38 -05:00
using MediaBrowser.Common.Net;
2017-05-15 15:45:39 -04:00
using MediaBrowser.Controller.Library;
2016-02-12 02:01:38 -05:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2016-02-12 02:01:38 -05:00
2016-11-03 19:35:19 -04:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2016-02-12 02:01:38 -05:00
{
public class DirectRecorder : IRecorder
{
private readonly ILogger _logger;
private readonly IHttpClientFactory _httpClientFactory;
2018-09-12 13:26:21 -04:00
private readonly IStreamHelper _streamHelper;
2016-02-12 02:01:38 -05:00
public DirectRecorder(ILogger logger, IHttpClientFactory httpClientFactory, IStreamHelper streamHelper)
2016-02-12 02:01:38 -05:00
{
_logger = logger;
_httpClientFactory = httpClientFactory;
2018-09-12 13:26:21 -04:00
_streamHelper = streamHelper;
2016-02-12 02:01:38 -05:00
}
2016-05-10 01:15:06 -04:00
public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile)
{
return targetFile;
}
2021-08-28 11:32:09 -04:00
public Task Record(IDirectStreamProvider? directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
2017-05-15 15:45:39 -04:00
{
2022-12-05 09:01:13 -05:00
if (directStreamProvider is not null)
2017-05-15 15:45:39 -04:00
{
return RecordFromDirectStreamProvider(directStreamProvider, targetFile, duration, onStarted, cancellationToken);
}
return RecordFromMediaSource(mediaSource, targetFile, duration, onStarted, cancellationToken);
}
private async Task RecordFromDirectStreamProvider(IDirectStreamProvider directStreamProvider, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
{
2021-08-28 11:32:09 -04:00
Directory.CreateDirectory(Path.GetDirectoryName(targetFile) ?? throw new ArgumentException("Path can't be a root directory.", nameof(targetFile)));
2017-09-18 12:52:22 -04:00
2022-01-22 17:36:42 -05:00
await using (var output = new FileStream(targetFile, FileMode.CreateNew, FileAccess.Write, FileShare.Read, IODefaults.FileStreamBufferSize, FileOptions.Asynchronous))
2017-05-15 15:45:39 -04:00
{
onStarted();
_logger.LogInformation("Copying recording to file {FilePath}", targetFile);
2017-05-15 15:45:39 -04:00
2018-09-12 13:26:21 -04:00
// The media source is infinite so we need to handle stopping ourselves
2020-08-31 16:20:19 -04:00
using var durationToken = new CancellationTokenSource(duration);
using var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token);
var linkedCancellationToken = cancellationTokenSource.Token;
2022-01-22 17:36:42 -05:00
var fileStream = new ProgressiveFileStream(directStreamProvider.GetStream());
await using (fileStream.ConfigureAwait(false))
{
await _streamHelper.CopyToAsync(
fileStream,
output,
IODefaults.CopyToBufferSize,
1000,
linkedCancellationToken).ConfigureAwait(false);
}
2017-05-15 15:45:39 -04:00
}
_logger.LogInformation("Recording completed: {FilePath}", targetFile);
2017-05-15 15:45:39 -04:00
}
private async Task RecordFromMediaSource(MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
2016-02-12 02:01:38 -05:00
{
using var response = await _httpClientFactory.CreateClient(NamedClient.Default)
.GetAsync(mediaSource.Path, HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false);
_logger.LogInformation("Opened recording stream from tuner provider");
2021-08-28 11:32:09 -04:00
Directory.CreateDirectory(Path.GetDirectoryName(targetFile) ?? throw new ArgumentException("Path can't be a root directory.", nameof(targetFile)));
2016-02-12 02:01:38 -05:00
await using var output = new FileStream(targetFile, FileMode.CreateNew, FileAccess.Write, FileShare.Read, IODefaults.CopyToBufferSize, FileOptions.Asynchronous);
2016-02-12 02:01:38 -05:00
2020-08-31 14:46:42 -04:00
onStarted();
2016-02-12 02:01:38 -05:00
2020-08-31 14:46:42 -04:00
_logger.LogInformation("Copying recording stream to file {0}", targetFile);
2016-02-29 23:24:42 -05:00
2020-08-31 14:46:42 -04:00
// The media source if infinite so we need to handle stopping ourselves
2020-11-17 13:43:00 -05:00
using var durationToken = new CancellationTokenSource(duration);
using var linkedCancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token);
cancellationToken = linkedCancellationToken.Token;
2020-08-31 14:46:42 -04:00
await _streamHelper.CopyUntilCancelled(
2020-11-17 13:43:00 -05:00
await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false),
output,
2020-09-04 10:24:21 -04:00
IODefaults.CopyToBufferSize,
cancellationToken).ConfigureAwait(false);
2016-04-17 16:57:57 -04:00
_logger.LogInformation("Recording completed to file {0}", targetFile);
2016-02-12 02:01:38 -05:00
}
}
}