2019-01-06 20:50:43 +00:00
|
|
|
using System;
|
2019-01-13 19:22:00 +00:00
|
|
|
using System.Collections.Generic;
|
2017-03-02 21:32:20 +00:00
|
|
|
using System.IO;
|
2019-01-13 19:22:00 +00:00
|
|
|
using System.Net;
|
|
|
|
using System.Net.Sockets;
|
2017-03-02 21:32:20 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
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;
|
2017-03-02 21:32:20 +00:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|
|
|
{
|
2017-03-03 05:53:21 +00:00
|
|
|
public class HdHomerunUdpStream : LiveStream, IDirectStreamProvider
|
2017-03-02 21:32:20 +00:00
|
|
|
{
|
|
|
|
private readonly IServerApplicationHost _appHost;
|
2018-09-12 17:26:21 +00:00
|
|
|
private readonly MediaBrowser.Model.Net.ISocketFactory _socketFactory;
|
2017-03-02 21:32:20 +00:00
|
|
|
|
2017-03-06 02:32:56 +00:00
|
|
|
private readonly IHdHomerunChannelCommands _channelCommands;
|
2017-03-02 21:32:20 +00:00
|
|
|
private readonly int _numTuners;
|
2017-03-03 04:36:20 +00:00
|
|
|
private readonly INetworkManager _networkManager;
|
2017-03-02 21:32:20 +00:00
|
|
|
|
2019-07-07 19:03:26 +00:00
|
|
|
public HdHomerunUdpStream(
|
|
|
|
MediaSourceInfo mediaSource,
|
|
|
|
TunerHostInfo tunerHostInfo,
|
|
|
|
string originalStreamId,
|
|
|
|
IHdHomerunChannelCommands channelCommands,
|
|
|
|
int numTuners,
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
IHttpClient httpClient,
|
|
|
|
ILogger logger,
|
|
|
|
IServerApplicationPaths appPaths,
|
|
|
|
IServerApplicationHost appHost,
|
|
|
|
MediaBrowser.Model.Net.ISocketFactory socketFactory,
|
|
|
|
INetworkManager networkManager)
|
2018-09-12 17:26:21 +00:00
|
|
|
: base(mediaSource, tunerHostInfo, fileSystem, logger, appPaths)
|
2017-03-02 21:32:20 +00:00
|
|
|
{
|
|
|
|
_appHost = appHost;
|
|
|
|
_socketFactory = socketFactory;
|
2017-03-03 04:36:20 +00:00
|
|
|
_networkManager = networkManager;
|
2017-03-02 21:32:20 +00:00
|
|
|
OriginalStreamId = originalStreamId;
|
2017-03-06 02:32:56 +00:00
|
|
|
_channelCommands = channelCommands;
|
2017-03-02 21:32:20 +00:00
|
|
|
_numTuners = numTuners;
|
2017-11-14 07:41:21 +00:00
|
|
|
EnableStreamSharing = true;
|
2017-03-02 21:32:20 +00:00
|
|
|
}
|
|
|
|
|
2017-10-23 19:14:11 +00:00
|
|
|
public override async Task Open(CancellationToken openCancellationToken)
|
2017-03-02 21:32:20 +00:00
|
|
|
{
|
2017-10-14 06:52:56 +00:00
|
|
|
LiveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
|
2017-03-02 21:32:20 +00:00
|
|
|
|
|
|
|
var mediaSource = OriginalMediaSource;
|
|
|
|
|
2017-03-03 04:36:20 +00:00
|
|
|
var uri = new Uri(mediaSource.Path);
|
|
|
|
var localPort = _networkManager.GetRandomUnusedUdpPort();
|
2017-03-02 21:32:20 +00:00
|
|
|
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(TempFilePath));
|
2017-10-23 19:14:11 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
Logger.LogInformation("Opening HDHR UDP Live stream from {host}", uri.Host);
|
2017-03-02 21:32:20 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var remoteAddress = IPAddress.Parse(uri.Host);
|
|
|
|
IPAddress localAddress = null;
|
2019-07-29 13:26:17 +00:00
|
|
|
using (var tcpClient = new TcpClient())
|
2017-10-23 19:14:11 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-07-29 13:26:17 +00:00
|
|
|
await tcpClient.ConnectAsync(remoteAddress, HdHomerunManager.HdHomeRunPort).ConfigureAwait(false);
|
|
|
|
localAddress = ((IPEndPoint)tcpClient.Client.RemoteEndPoint).Address;
|
|
|
|
tcpClient.Close();
|
2017-10-23 19:14:11 +00:00
|
|
|
}
|
2018-12-20 12:11:26 +00:00
|
|
|
catch (Exception ex)
|
2017-10-23 19:14:11 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
Logger.LogError(ex, "Unable to determine local ip address for Legacy HDHomerun stream.");
|
2017-10-23 19:14:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var udpClient = _socketFactory.CreateUdpSocket(localPort);
|
2019-07-29 13:26:17 +00:00
|
|
|
var hdHomerunManager = new HdHomerunManager(Logger);
|
2017-10-23 19:14:11 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// send url to start streaming
|
2019-07-07 19:03:26 +00:00
|
|
|
await hdHomerunManager.StartStreaming(remoteAddress, localAddress, localPort, _channelCommands, _numTuners, openCancellationToken).ConfigureAwait(false);
|
2017-10-23 19:14:11 +00:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
using (udpClient)
|
2018-12-20 12:11:26 +00:00
|
|
|
using (hdHomerunManager)
|
2017-10-23 19:14:11 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
if (!(ex is OperationCanceledException))
|
2017-10-23 19:14:11 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
Logger.LogError(ex, "Error opening live stream:");
|
2017-10-23 19:14:11 +00:00
|
|
|
}
|
2019-07-29 13:26:17 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
throw;
|
2017-10-23 19:14:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 21:32:20 +00:00
|
|
|
var taskCompletionSource = new TaskCompletionSource<bool>();
|
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
await StartStreaming(udpClient, hdHomerunManager, remoteAddress, taskCompletionSource, LiveStreamCancellationTokenSource.Token);
|
2017-03-02 21:32:20 +00:00
|
|
|
|
|
|
|
//OpenedMediaSource.Protocol = MediaProtocol.File;
|
|
|
|
//OpenedMediaSource.Path = tempFile;
|
|
|
|
//OpenedMediaSource.ReadAtNativeFramerate = true;
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
MediaSource.Path = _appHost.GetLocalApiUrl("127.0.0.1") + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts";
|
|
|
|
MediaSource.Protocol = MediaProtocol.Http;
|
2017-05-19 16:39:40 +00:00
|
|
|
//OpenedMediaSource.SupportsDirectPlay = false;
|
|
|
|
//OpenedMediaSource.SupportsDirectStream = true;
|
|
|
|
//OpenedMediaSource.SupportsTranscoding = true;
|
2017-03-02 21:32:20 +00:00
|
|
|
|
|
|
|
//await Task.Delay(5000).ConfigureAwait(false);
|
2017-10-23 19:14:11 +00:00
|
|
|
await taskCompletionSource.Task.ConfigureAwait(false);
|
2017-03-02 21:32:20 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private Task StartStreaming(MediaBrowser.Model.Net.ISocket udpClient, HdHomerunManager hdHomerunManager, IPAddress remoteAddress, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
|
2017-03-02 21:32:20 +00:00
|
|
|
{
|
2017-05-22 04:54:02 +00:00
|
|
|
return Task.Run(async () =>
|
2017-03-03 05:53:21 +00:00
|
|
|
{
|
2017-10-23 19:14:11 +00:00
|
|
|
using (udpClient)
|
2018-12-20 12:11:26 +00:00
|
|
|
using (hdHomerunManager)
|
2017-03-03 05:53:21 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
try
|
2017-03-03 05:53:21 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
await CopyTo(udpClient, TempFilePath, openTaskCompletionSource, cancellationToken).ConfigureAwait(false);
|
2017-03-03 05:53:21 +00:00
|
|
|
}
|
2018-12-20 12:11:26 +00:00
|
|
|
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;
|
2017-03-03 05:53:21 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
await DeleteTempFiles(new List<string> { TempFilePath }).ConfigureAwait(false);
|
2017-05-22 04:54:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)
|
2017-05-22 04:54:02 +00:00
|
|
|
{
|
2017-05-23 16:44:11 +00:00
|
|
|
Task.Run(() =>
|
2017-10-23 19:14:11 +00:00
|
|
|
{
|
|
|
|
openTaskCompletionSource.TrySetResult(true);
|
|
|
|
});
|
2017-03-02 21:32:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-13 16:51:33 +00:00
|
|
|
private const int RtpHeaderBytes = 12;
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private async Task CopyTo(MediaBrowser.Model.Net.ISocket udpClient, string file, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
|
2017-05-25 13:00:14 +00:00
|
|
|
{
|
2017-06-01 04:51:43 +00:00
|
|
|
var bufferSize = 81920;
|
2017-05-25 13:00:14 +00:00
|
|
|
|
2017-06-01 04:51:43 +00:00
|
|
|
byte[] buffer = new byte[bufferSize];
|
|
|
|
int read;
|
2017-06-01 05:05:36 +00:00
|
|
|
var resolved = false;
|
|
|
|
|
2017-10-23 19:14:11 +00:00
|
|
|
using (var source = _socketFactory.CreateNetworkStream(udpClient, false))
|
2018-12-20 12:11:26 +00:00
|
|
|
using (var fileStream = FileSystem.GetFileStream(file, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read, FileOpenOptions.None))
|
2017-06-01 04:51:43 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
var currentCancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, new CancellationTokenSource(TimeSpan.FromSeconds(30)).Token).Token;
|
2017-05-25 13:00:14 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
while ((read = await source.ReadAsync(buffer, 0, buffer.Length, currentCancellationToken).ConfigureAwait(false)) != 0)
|
|
|
|
{
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2017-05-25 13:00:14 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
currentCancellationToken = cancellationToken;
|
2017-06-01 05:05:36 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
read -= RtpHeaderBytes;
|
2017-10-23 19:14:11 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
if (read > 0)
|
|
|
|
{
|
|
|
|
fileStream.Write(buffer, RtpHeaderBytes, read);
|
|
|
|
}
|
2017-10-23 19:14:11 +00:00
|
|
|
|
2018-12-20 12:11:26 +00:00
|
|
|
if (!resolved)
|
|
|
|
{
|
|
|
|
resolved = true;
|
|
|
|
DateOpened = DateTime.UtcNow;
|
|
|
|
Resolve(openTaskCompletionSource);
|
2017-10-23 19:14:11 +00:00
|
|
|
}
|
2017-06-01 05:05:36 +00:00
|
|
|
}
|
2017-05-25 13:00:14 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-02 21:32:20 +00:00
|
|
|
}
|
2018-12-13 13:18:25 +00:00
|
|
|
}
|