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