jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunUdpStream.cs

193 lines
8.6 KiB
C#
Raw Normal View History

2017-03-02 21:32:20 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Net;
2017-05-22 04:54:02 +00:00
using MediaBrowser.Model.System;
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 ILogger _logger;
private readonly IServerApplicationHost _appHost;
private readonly ISocketFactory _socketFactory;
private readonly CancellationTokenSource _liveStreamCancellationTokenSource = new CancellationTokenSource();
private readonly TaskCompletionSource<bool> _liveStreamTaskCompletionSource = new TaskCompletionSource<bool>();
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
2017-05-22 04:54:02 +00:00
private readonly string _tempFilePath;
public HdHomerunUdpStream(MediaSourceInfo mediaSource, string originalStreamId, IHdHomerunChannelCommands channelCommands, int numTuners, IFileSystem fileSystem, IHttpClient httpClient, ILogger logger, IServerApplicationPaths appPaths, IServerApplicationHost appHost, ISocketFactory socketFactory, INetworkManager networkManager, IEnvironmentInfo environment)
: base(mediaSource, environment, fileSystem)
2017-03-02 21:32:20 +00:00
{
_logger = logger;
_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-05-22 04:54:02 +00:00
_tempFilePath = Path.Combine(appPaths.TranscodingTempPath, UniqueId + ".ts");
2017-03-02 21:32:20 +00:00
}
protected override async Task OpenInternal(CancellationToken openCancellationToken)
{
_liveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
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
2017-03-03 05:53:21 +00:00
_logger.Info("Opening HDHR UDP Live stream from {0}", uri.Host);
2017-03-02 21:32:20 +00:00
var taskCompletionSource = new TaskCompletionSource<bool>();
2017-03-03 04:36:20 +00:00
StartStreaming(uri.Host, localPort, taskCompletionSource, _liveStreamCancellationTokenSource.Token);
2017-03-02 21:32:20 +00:00
//OpenedMediaSource.Protocol = MediaProtocol.File;
//OpenedMediaSource.Path = tempFile;
//OpenedMediaSource.ReadAtNativeFramerate = true;
OpenedMediaSource.Path = _appHost.GetLocalApiUrl("127.0.0.1") + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts";
OpenedMediaSource.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 taskCompletionSource.Task.ConfigureAwait(false);
//await Task.Delay(5000).ConfigureAwait(false);
}
public override Task Close()
{
2017-03-03 05:53:21 +00:00
_logger.Info("Closing HDHR UDP live stream");
2017-03-02 21:32:20 +00:00
_liveStreamCancellationTokenSource.Cancel();
return _liveStreamTaskCompletionSource.Task;
}
2017-05-22 04:54:02 +00:00
private Task StartStreaming(string remoteIp, int localPort, 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
{
var isFirstAttempt = true;
using (var udpClient = _socketFactory.CreateUdpSocket(localPort))
{
using (var hdHomerunManager = new HdHomerunManager(_socketFactory))
{
2017-03-03 20:16:43 +00:00
var remoteAddress = _networkManager.ParseIpAddress(remoteIp);
2017-03-03 05:53:21 +00:00
IpAddressInfo localAddress = null;
2017-03-03 20:16:43 +00:00
using (var tcpSocket = _socketFactory.CreateSocket(remoteAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp, false))
2017-03-03 05:53:21 +00:00
{
try
{
tcpSocket.Connect(new IpEndPointInfo(remoteAddress, HdHomerunManager.HdHomeRunPort));
localAddress = tcpSocket.LocalEndPoint.IpAddress;
tcpSocket.Close();
}
catch (Exception)
{
_logger.Error("Unable to determine local ip address for Legacy HDHomerun stream.");
return;
}
}
while (!cancellationToken.IsCancellationRequested)
{
try
{
// send url to start streaming
2017-03-06 02:32:56 +00:00
await hdHomerunManager.StartStreaming(remoteAddress, localAddress, localPort, _channelCommands, _numTuners, cancellationToken).ConfigureAwait(false);
2017-03-03 05:53:21 +00:00
2017-03-06 02:32:56 +00:00
_logger.Info("Opened HDHR UDP stream from {0}", remoteAddress);
2017-03-03 05:53:21 +00:00
if (!cancellationToken.IsCancellationRequested)
{
2017-05-22 04:54:02 +00:00
FileSystem.CreateDirectory(FileSystem.GetDirectoryName(_tempFilePath));
2017-05-23 16:44:11 +00:00
using (var fileStream = FileSystem.GetFileStream(_tempFilePath, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read, FileOpenOptions.Asynchronous))
2017-03-03 05:53:21 +00:00
{
2017-05-23 16:44:11 +00:00
await CopyTo(udpClient, fileStream, openTaskCompletionSource, cancellationToken).ConfigureAwait(false);
2017-05-22 04:54:02 +00:00
}
2017-03-03 05:53:21 +00:00
}
}
2017-03-23 19:10:10 +00:00
catch (OperationCanceledException ex)
2017-03-03 05:53:21 +00:00
{
2017-03-23 19:10:10 +00:00
_logger.Info("HDHR UDP stream cancelled or timed out from {0}", remoteAddress);
openTaskCompletionSource.TrySetException(ex);
2017-03-03 05:53:21 +00:00
break;
}
catch (Exception ex)
{
if (isFirstAttempt)
{
_logger.ErrorException("Error opening live stream:", ex);
openTaskCompletionSource.TrySetException(ex);
break;
}
_logger.ErrorException("Error copying live stream, will reopen", ex);
}
isFirstAttempt = false;
}
await hdHomerunManager.StopStreaming().ConfigureAwait(false);
_liveStreamTaskCompletionSource.TrySetResult(true);
}
}
2017-05-22 04:54:02 +00:00
await DeleteTempFile(_tempFilePath).ConfigureAwait(false);
});
}
2017-05-23 16:44:11 +00:00
private void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)
2017-05-22 04:54:02 +00:00
{
2017-05-23 16:44:11 +00:00
Task.Run(() =>
{
openTaskCompletionSource.TrySetResult(true);
});
2017-03-02 21:32:20 +00:00
}
public Task CopyToAsync(Stream stream, CancellationToken cancellationToken)
{
2017-05-22 04:54:02 +00:00
return CopyFileTo(_tempFilePath, false, stream, cancellationToken);
2017-03-02 21:32:20 +00:00
}
2017-05-23 16:44:11 +00:00
private static int RtpHeaderBytes = 12;
private async Task CopyTo(ISocket udpClient, Stream outputStream, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
{
2017-05-24 19:12:55 +00:00
var receiveBuffer = new byte[8192];
2017-05-23 16:44:11 +00:00
while (true)
{
2017-05-24 19:12:55 +00:00
var data = await udpClient.ReceiveAsync(receiveBuffer, 0, receiveBuffer.Length, cancellationToken).ConfigureAwait(false);
2017-05-23 16:44:11 +00:00
var bytesRead = data.ReceivedBytes - RtpHeaderBytes;
2017-05-24 19:12:55 +00:00
2017-05-23 16:44:11 +00:00
await outputStream.WriteAsync(data.Buffer, RtpHeaderBytes, bytesRead, cancellationToken).ConfigureAwait(false);
if (openTaskCompletionSource != null)
{
Resolve(openTaskCompletionSource);
openTaskCompletionSource = null;
}
}
}
2017-03-02 21:32:20 +00:00
}
2017-03-23 19:10:10 +00:00
}