123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- #nullable disable
- #pragma warning disable CS1591
- using System;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Net.NetworkInformation;
- using System.Net.Sockets;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Controller;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.IO;
- using MediaBrowser.Model.LiveTv;
- using MediaBrowser.Model.MediaInfo;
- using Microsoft.Extensions.Logging;
- namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
- {
- public class HdHomerunUdpStream : LiveStream, IDirectStreamProvider
- {
- private const int RtpHeaderBytes = 12;
- private readonly IServerApplicationHost _appHost;
- private readonly IHdHomerunChannelCommands _channelCommands;
- private readonly int _numTuners;
- public HdHomerunUdpStream(
- MediaSourceInfo mediaSource,
- TunerHostInfo tunerHostInfo,
- string originalStreamId,
- IHdHomerunChannelCommands channelCommands,
- int numTuners,
- IFileSystem fileSystem,
- ILogger logger,
- IConfigurationManager configurationManager,
- IServerApplicationHost appHost,
- IStreamHelper streamHelper)
- : base(mediaSource, tunerHostInfo, fileSystem, logger, configurationManager, streamHelper)
- {
- _appHost = appHost;
- OriginalStreamId = originalStreamId;
- _channelCommands = channelCommands;
- _numTuners = numTuners;
- EnableStreamSharing = true;
- }
- /// <summary>
- /// Returns an unused UDP port number in the range specified.
- /// Temporarily placed here until future network PR merged.
- /// </summary>
- /// <param name="range">Upper and Lower boundary of ports to select.</param>
- /// <returns>System.Int32.</returns>
- private static int GetUdpPortFromRange((int Min, int Max) range)
- {
- var properties = IPGlobalProperties.GetIPGlobalProperties();
- // Get active udp listeners.
- var udpListenerPorts = properties.GetActiveUdpListeners()
- .Where(n => n.Port >= range.Min && n.Port <= range.Max)
- .Select(n => n.Port);
- return Enumerable
- .Range(range.Min, range.Max)
- .FirstOrDefault(i => !udpListenerPorts.Contains(i));
- }
- public override async Task Open(CancellationToken openCancellationToken)
- {
- LiveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
- var mediaSource = OriginalMediaSource;
- var uri = new Uri(mediaSource.Path);
- // Temporary code to reduce PR size. This will be updated by a future network pr.
- var localPort = GetUdpPortFromRange((49152, 65535));
- Directory.CreateDirectory(Path.GetDirectoryName(TempFilePath));
- Logger.LogInformation("Opening HDHR UDP Live stream from {Host}", uri.Host);
- var remoteAddress = IPAddress.Parse(uri.Host);
- IPAddress localAddress;
- using (var tcpClient = new TcpClient())
- {
- try
- {
- await tcpClient.ConnectAsync(remoteAddress, HdHomerunManager.HdHomeRunPort, openCancellationToken).ConfigureAwait(false);
- localAddress = ((IPEndPoint)tcpClient.Client.LocalEndPoint).Address;
- tcpClient.Close();
- }
- catch (Exception ex)
- {
- Logger.LogError(ex, "Unable to determine local ip address for Legacy HDHomerun stream.");
- return;
- }
- }
- if (localAddress.IsIPv4MappedToIPv6)
- {
- localAddress = localAddress.MapToIPv4();
- }
- var udpClient = new UdpClient(localPort, AddressFamily.InterNetwork);
- var hdHomerunManager = new HdHomerunManager();
- try
- {
- // send url to start streaming
- await hdHomerunManager.StartStreaming(
- remoteAddress,
- localAddress,
- localPort,
- _channelCommands,
- _numTuners,
- openCancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- using (udpClient)
- using (hdHomerunManager)
- {
- if (ex is not OperationCanceledException)
- {
- Logger.LogError(ex, "Error opening live stream:");
- }
- throw;
- }
- }
- var taskCompletionSource = new TaskCompletionSource<bool>();
- _ = StartStreaming(
- udpClient,
- hdHomerunManager,
- remoteAddress,
- taskCompletionSource,
- LiveStreamCancellationTokenSource.Token);
- // OpenedMediaSource.Protocol = MediaProtocol.File;
- // OpenedMediaSource.Path = tempFile;
- // OpenedMediaSource.ReadAtNativeFramerate = true;
- MediaSource.Path = _appHost.GetApiUrlForLocalAccess() + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts";
- MediaSource.Protocol = MediaProtocol.Http;
- // OpenedMediaSource.SupportsDirectPlay = false;
- // OpenedMediaSource.SupportsDirectStream = true;
- // OpenedMediaSource.SupportsTranscoding = true;
- // await Task.Delay(5000).ConfigureAwait(false);
- await taskCompletionSource.Task.ConfigureAwait(false);
- }
- private async Task StartStreaming(UdpClient udpClient, HdHomerunManager hdHomerunManager, IPAddress remoteAddress, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
- {
- using (udpClient)
- using (hdHomerunManager)
- {
- try
- {
- await CopyTo(udpClient, TempFilePath, openTaskCompletionSource, cancellationToken).ConfigureAwait(false);
- }
- catch (OperationCanceledException ex)
- {
- Logger.LogInformation("HDHR UDP stream cancelled or timed out from {0}", remoteAddress);
- openTaskCompletionSource.TrySetException(ex);
- }
- catch (Exception ex)
- {
- Logger.LogError(ex, "Error opening live stream:");
- openTaskCompletionSource.TrySetException(ex);
- }
- EnableStreamSharing = false;
- }
- await DeleteTempFiles(TempFilePath).ConfigureAwait(false);
- }
- private async Task CopyTo(UdpClient udpClient, string file, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
- {
- var resolved = false;
- using (var fileStream = new FileStream(file, FileMode.Create, FileAccess.Write, FileShare.Read))
- {
- while (true)
- {
- cancellationToken.ThrowIfCancellationRequested();
- using (var timeOutSource = new CancellationTokenSource())
- using (var linkedSource = CancellationTokenSource.CreateLinkedTokenSource(
- cancellationToken,
- timeOutSource.Token))
- {
- var resTask = udpClient.ReceiveAsync(linkedSource.Token).AsTask();
- if (await Task.WhenAny(resTask, Task.Delay(30000, linkedSource.Token)).ConfigureAwait(false) != resTask)
- {
- resTask.Dispose();
- break;
- }
- // We don't want all these delay tasks to keep running
- timeOutSource.Cancel();
- var res = await resTask.ConfigureAwait(false);
- var buffer = res.Buffer;
- var read = buffer.Length - RtpHeaderBytes;
- if (read > 0)
- {
- await fileStream.WriteAsync(buffer.AsMemory(RtpHeaderBytes, read), linkedSource.Token).ConfigureAwait(false);
- }
- if (!resolved)
- {
- resolved = true;
- DateOpened = DateTime.UtcNow;
- openTaskCompletionSource.TrySetResult(true);
- }
- }
- }
- }
- }
- }
- }
|