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

147 lines
6.5 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Globalization;
using System.IO;
using System.Net.Http;
2016-09-25 20:39:13 +02:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Configuration;
2016-09-25 20:39:13 +02:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
2016-10-05 09:15:29 +02:00
using MediaBrowser.Controller.Library;
2016-09-25 20:39:13 +02:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.MediaInfo;
using Microsoft.Extensions.Logging;
2016-09-25 20:39:13 +02:00
2017-11-14 08:41:21 +01:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts
2016-09-25 20:39:13 +02:00
{
2017-11-14 08:41:21 +01:00
public class SharedHttpStream : LiveStream, IDirectStreamProvider
2016-09-25 20:39:13 +02:00
{
private readonly IHttpClientFactory _httpClientFactory;
2016-09-25 20:39:13 +02:00
private readonly IServerApplicationHost _appHost;
2019-07-07 16:39:35 +02:00
public SharedHttpStream(
MediaSourceInfo mediaSource,
TunerHostInfo tunerHostInfo,
string originalStreamId,
IFileSystem fileSystem,
IHttpClientFactory httpClientFactory,
2019-07-07 16:39:35 +02:00
ILogger logger,
IConfigurationManager configurationManager,
2019-07-07 16:39:35 +02:00
IServerApplicationHost appHost,
IStreamHelper streamHelper)
: base(mediaSource, tunerHostInfo, fileSystem, logger, configurationManager, streamHelper)
2016-09-25 20:39:13 +02:00
{
_httpClientFactory = httpClientFactory;
2016-09-25 20:39:13 +02:00
_appHost = appHost;
2016-10-07 17:08:13 +02:00
OriginalStreamId = originalStreamId;
2017-11-14 08:41:21 +01:00
EnableStreamSharing = true;
2016-09-25 20:39:13 +02:00
}
2017-10-23 21:14:11 +02:00
public override async Task Open(CancellationToken openCancellationToken)
2016-09-25 20:39:13 +02:00
{
2017-10-14 08:52:56 +02:00
LiveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
2016-09-25 20:39:13 +02:00
var mediaSource = OriginalMediaSource;
var url = mediaSource.Path;
2022-01-07 11:48:59 +01:00
Directory.CreateDirectory(Path.GetDirectoryName(TempFilePath) ?? throw new InvalidOperationException("Path can't be a root directory."));
2017-10-23 21:14:11 +02:00
2017-11-14 08:41:21 +01:00
var typeName = GetType().Name;
Logger.LogInformation("Opening {StreamType} Live stream from {Url}", typeName, url);
2016-09-25 20:39:13 +02:00
2020-10-29 20:58:47 +01:00
// Response stream is disposed manually.
2020-10-29 20:56:29 +01:00
var response = await _httpClientFactory.CreateClient(NamedClient.Default)
.GetAsync(url, HttpCompletionOption.ResponseHeadersRead, CancellationToken.None)
.ConfigureAwait(false);
2017-10-23 21:14:11 +02:00
var contentType = response.Content.Headers.ContentType?.ToString() ?? string.Empty;
if (contentType.Contains("matroska", StringComparison.OrdinalIgnoreCase)
|| contentType.Contains("mp4", StringComparison.OrdinalIgnoreCase)
|| contentType.Contains("dash", StringComparison.OrdinalIgnoreCase)
|| contentType.Contains("mpegURL", StringComparison.OrdinalIgnoreCase)
|| contentType.Contains("text/", StringComparison.OrdinalIgnoreCase))
2017-11-14 08:41:21 +01:00
{
// Close the stream without any sharing features
response.Dispose();
return;
2017-11-14 08:41:21 +01:00
}
SetTempFilePath("ts");
2017-10-23 21:14:11 +02:00
var taskCompletionSource = new TaskCompletionSource<bool>(TaskCreationOptions.RunContinuationsAsynchronously);
2017-11-21 23:14:56 +01:00
2019-02-13 16:44:58 +01:00
_ = StartStreaming(response, taskCompletionSource, LiveStreamCancellationTokenSource.Token);
2016-09-25 20:39:13 +02:00
2020-06-14 11:11:11 +02:00
// OpenedMediaSource.Protocol = MediaProtocol.File;
// OpenedMediaSource.Path = tempFile;
// OpenedMediaSource.ReadAtNativeFramerate = true;
2016-09-25 20:39:13 +02:00
MediaSource.Path = _appHost.GetApiUrlForLocalAccess() + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts";
2018-09-12 19:26:21 +02:00
MediaSource.Protocol = MediaProtocol.Http;
2017-09-10 05:47:33 +02:00
2020-06-14 11:11:11 +02:00
// OpenedMediaSource.Path = TempFilePath;
// OpenedMediaSource.Protocol = MediaProtocol.File;
2017-11-20 01:20:12 +01:00
2020-06-14 11:11:11 +02:00
// OpenedMediaSource.Path = _tempFilePath;
// OpenedMediaSource.Protocol = MediaProtocol.File;
// OpenedMediaSource.SupportsDirectPlay = false;
// OpenedMediaSource.SupportsDirectStream = true;
// OpenedMediaSource.SupportsTranscoding = true;
2022-01-07 11:48:59 +01:00
var res = await taskCompletionSource.Task.ConfigureAwait(false);
if (!res)
{
Logger.LogWarning("Zero bytes copied from stream {StreamType} to {FilePath} but no exception raised", GetType().Name, TempFilePath);
2021-05-28 14:33:54 +02:00
throw new EndOfStreamException(string.Format(CultureInfo.InvariantCulture, "Zero bytes copied from stream {0}", GetType().Name));
}
2016-09-25 20:39:13 +02:00
}
private Task StartStreaming(HttpResponseMessage response, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
2016-09-25 20:39:13 +02:00
{
return Task.Run(
async () =>
{
try
{
Logger.LogInformation("Beginning {StreamType} stream to {FilePath}", GetType().Name, TempFilePath);
using var message = response;
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-09-25 19:44:40 +02:00
await using var fileStream = new FileStream(TempFilePath, FileMode.Create, FileAccess.Write, FileShare.Read, IODefaults.FileStreamBufferSize, FileOptions.Asynchronous);
await StreamHelper.CopyToAsync(
stream,
fileStream,
IODefaults.CopyToBufferSize,
() => Resolve(openTaskCompletionSource),
cancellationToken).ConfigureAwait(false);
}
catch (OperationCanceledException ex)
{
Logger.LogInformation("Copying of {StreamType} to {FilePath} was canceled", GetType().Name, TempFilePath);
openTaskCompletionSource.TrySetException(ex);
}
catch (Exception ex)
{
Logger.LogError(ex, "Error copying live stream {StreamType} to {FilePath}", GetType().Name, TempFilePath);
openTaskCompletionSource.TrySetException(ex);
}
openTaskCompletionSource.TrySetResult(false);
EnableStreamSharing = false;
await DeleteTempFiles(TempFilePath).ConfigureAwait(false);
},
CancellationToken.None);
2017-05-22 06:54:02 +02:00
}
2016-10-03 08:28:45 +02:00
2017-06-01 07:05:36 +02:00
private void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)
2017-05-22 06:54:02 +02:00
{
2018-09-12 19:26:21 +02:00
DateOpened = DateTime.UtcNow;
2017-11-06 22:32:44 +01:00
openTaskCompletionSource.TrySetResult(true);
2016-10-03 08:28:45 +02:00
}
2016-09-25 20:39:13 +02:00
}
}