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;
|
2019-01-13 19:22:00 +00:00
|
|
|
using System.Collections.Generic;
|
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;
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger.LogInformation("Opening " + typeName + " Live stream from {0}", 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
|
|
|
|
2017-11-14 07:41:21 +00:00
|
|
|
var extension = "ts";
|
|
|
|
var requiresRemux = false;
|
|
|
|
|
2020-11-24 23:42:27 +00:00
|
|
|
var contentType = response.Content.Headers.ContentType?.ToString() ?? string.Empty;
|
2017-11-19 04:59:34 +00:00
|
|
|
if (contentType.IndexOf("matroska", StringComparison.OrdinalIgnoreCase) != -1)
|
|
|
|
{
|
2017-11-20 00:20:12 +00:00
|
|
|
requiresRemux = true;
|
2017-11-19 04:59:34 +00:00
|
|
|
}
|
|
|
|
else if (contentType.IndexOf("mp4", StringComparison.OrdinalIgnoreCase) != -1 ||
|
|
|
|
contentType.IndexOf("dash", StringComparison.OrdinalIgnoreCase) != -1 ||
|
2017-11-29 20:50:18 +00:00
|
|
|
contentType.IndexOf("mpegURL", StringComparison.OrdinalIgnoreCase) != -1 ||
|
|
|
|
contentType.IndexOf("text/", StringComparison.OrdinalIgnoreCase) != -1)
|
2017-11-14 07:41:21 +00:00
|
|
|
{
|
|
|
|
requiresRemux = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the stream without any sharing features
|
|
|
|
if (requiresRemux)
|
|
|
|
{
|
|
|
|
using (response)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetTempFilePath(extension);
|
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)
|
|
|
|
{
|
|
|
|
Logger.LogWarning("Zero bytes copied from stream {0} to {1} 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-11-03 23:38:47 +00:00
|
|
|
public string GetFilePath()
|
|
|
|
{
|
|
|
|
return TempFilePath;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2017-05-22 04:54:02 +00:00
|
|
|
return Task.Run(async () =>
|
2016-09-25 18:39:13 +00:00
|
|
|
{
|
2017-10-11 06:24:22 +00:00
|
|
|
try
|
2016-10-07 15:08:13 +00:00
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger.LogInformation("Beginning {0} stream to {1}", GetType().Name, TempFilePath);
|
2020-09-01 13:58:05 +00:00
|
|
|
using var message = response;
|
2020-11-17 18:43:00 +00:00
|
|
|
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
|
2021-03-09 16:01:05 +00:00
|
|
|
await using var fileStream = new FileStream(TempFilePath, FileMode.Create, FileAccess.Write, FileShare.Read);
|
2020-09-01 13:58:05 +00:00
|
|
|
await StreamHelper.CopyToAsync(
|
|
|
|
stream,
|
|
|
|
fileStream,
|
|
|
|
IODefaults.CopyToBufferSize,
|
|
|
|
() => Resolve(openTaskCompletionSource),
|
|
|
|
cancellationToken).ConfigureAwait(false);
|
2017-10-11 06:24:22 +00:00
|
|
|
}
|
2020-05-08 11:32:41 +00:00
|
|
|
catch (OperationCanceledException ex)
|
2017-10-11 06:24:22 +00:00
|
|
|
{
|
2020-05-08 20:11:43 +00:00
|
|
|
Logger.LogInformation("Copying of {0} to {1} was canceled", GetType().Name, TempFilePath);
|
2020-05-08 11:32:41 +00:00
|
|
|
openTaskCompletionSource.TrySetException(ex);
|
2017-10-11 06:24:22 +00:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2020-05-08 11:32:41 +00:00
|
|
|
Logger.LogError(ex, "Error copying live stream {0} to {1}.", GetType().Name, TempFilePath);
|
|
|
|
openTaskCompletionSource.TrySetException(ex);
|
2016-10-05 07:15:29 +00:00
|
|
|
}
|
2019-07-07 14:39:35 +00:00
|
|
|
|
2020-05-08 20:11:43 +00:00
|
|
|
openTaskCompletionSource.TrySetResult(false);
|
2019-07-07 14:39:35 +00:00
|
|
|
|
2017-11-05 21:51:23 +00:00
|
|
|
EnableStreamSharing = false;
|
2018-09-12 17:26:21 +00:00
|
|
|
await DeleteTempFiles(new List<string> { TempFilePath }).ConfigureAwait(false);
|
2021-02-15 13:19:08 +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
|
|
|
}
|
|
|
|
}
|