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

100 lines
4.2 KiB
C#
Raw Normal View History

using System;
2016-02-12 08:01:38 +01:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Net;
2017-05-15 21:45:39 +02:00
using MediaBrowser.Controller.Library;
2016-02-12 08:01:38 +01:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2016-02-12 08:01:38 +01:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2016-02-12 08:01:38 +01:00
{
public class DirectRecorder : IRecorder
{
private readonly ILogger _logger;
private readonly IHttpClient _httpClient;
private readonly IFileSystem _fileSystem;
2018-09-12 19:26:21 +02:00
private readonly IStreamHelper _streamHelper;
2016-02-12 08:01:38 +01:00
2018-09-12 19:26:21 +02:00
public DirectRecorder(ILogger logger, IHttpClient httpClient, IFileSystem fileSystem, IStreamHelper streamHelper)
2016-02-12 08:01:38 +01:00
{
_logger = logger;
_httpClient = httpClient;
_fileSystem = fileSystem;
2018-09-12 19:26:21 +02:00
_streamHelper = streamHelper;
2016-02-12 08:01:38 +01:00
}
2016-05-10 07:15:06 +02:00
public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile)
{
return targetFile;
}
2017-05-15 21:45:39 +02:00
public Task Record(IDirectStreamProvider directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
{
if (directStreamProvider != null)
{
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)
{
2017-09-18 18:52:22 +02:00
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(targetFile));
2017-05-15 21:45:39 +02:00
using (var output = _fileSystem.GetFileStream(targetFile, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read))
{
onStarted();
_logger.LogInformation("Copying recording stream to file {0}", targetFile);
2017-05-15 21:45:39 +02:00
2018-09-12 19:26:21 +02:00
// The media source is infinite so we need to handle stopping ourselves
var durationToken = new CancellationTokenSource(duration);
cancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token).Token;
2017-05-15 21:45:39 +02:00
await directStreamProvider.CopyToAsync(output, cancellationToken).ConfigureAwait(false);
}
_logger.LogInformation("Recording completed to file {0}", targetFile);
2017-05-15 21:45:39 +02:00
}
private async Task RecordFromMediaSource(MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
2016-02-12 08:01:38 +01:00
{
2016-11-14 20:26:51 +01:00
var httpRequestOptions = new HttpRequestOptions
2016-02-12 08:01:38 +01:00
{
2016-11-14 20:26:51 +01:00
Url = mediaSource.Path,
BufferContent = false,
// Some remote urls will expect a user agent to be supplied
UserAgent = "Emby/3.0",
// Shouldn't matter but may cause issues
EnableHttpCompression = false
2016-02-12 08:01:38 +01:00
};
using (var response = await _httpClient.SendAsync(httpRequestOptions, "GET").ConfigureAwait(false))
{
_logger.LogInformation("Opened recording stream from tuner provider");
2016-02-12 08:01:38 +01:00
2017-09-18 18:52:22 +02:00
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(targetFile));
2016-10-25 21:02:04 +02:00
using (var output = _fileSystem.GetFileStream(targetFile, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read))
2016-02-12 08:01:38 +01:00
{
onStarted();
_logger.LogInformation("Copying recording stream to file {0}", targetFile);
2016-02-12 08:01:38 +01:00
2016-09-29 14:55:49 +02:00
// The media source if infinite so we need to handle stopping ourselves
var durationToken = new CancellationTokenSource(duration);
cancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token).Token;
2016-03-01 05:24:42 +01:00
2018-09-12 19:26:21 +02:00
await _streamHelper.CopyUntilCancelled(response.Content, output, 81920, cancellationToken).ConfigureAwait(false);
2016-02-12 08:01:38 +01:00
}
}
2016-04-17 22:57:57 +02:00
_logger.LogInformation("Recording completed to file {0}", targetFile);
2016-02-12 08:01:38 +01:00
}
}
}