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

351 lines
13 KiB
C#
Raw Normal View History

2017-03-02 22:32:20 +01:00
using System;
using System.IO;
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;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Net;
2017-05-22 06:54:02 +02:00
using MediaBrowser.Model.System;
2017-03-02 22:32:20 +01:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
{
2017-03-03 06:53:21 +01:00
public class HdHomerunUdpStream : LiveStream, IDirectStreamProvider
2017-03-02 22:32:20 +01:00
{
private readonly IServerApplicationHost _appHost;
private readonly ISocketFactory _socketFactory;
2017-03-06 03:32:56 +01:00
private readonly IHdHomerunChannelCommands _channelCommands;
2017-03-02 22:32:20 +01:00
private readonly int _numTuners;
2017-03-03 05:36:20 +01:00
private readonly INetworkManager _networkManager;
2017-03-02 22:32:20 +01:00
2017-05-22 06:54:02 +02:00
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)
2017-09-28 19:02:49 +02:00
: base(mediaSource, environment, fileSystem, logger, appPaths)
2017-03-02 22:32:20 +01:00
{
_appHost = appHost;
_socketFactory = socketFactory;
2017-03-03 05:36:20 +01:00
_networkManager = networkManager;
2017-03-02 22:32:20 +01:00
OriginalStreamId = originalStreamId;
2017-03-06 03:32:56 +01:00
_channelCommands = channelCommands;
2017-03-02 22:32:20 +01:00
_numTuners = numTuners;
2017-11-14 08:41:21 +01:00
EnableStreamSharing = true;
2017-03-02 22:32:20 +01:00
}
2017-10-23 21:14:11 +02:00
public override async Task Open(CancellationToken openCancellationToken)
2017-03-02 22:32:20 +01:00
{
2017-10-14 08:52:56 +02:00
LiveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
2017-03-02 22:32:20 +01:00
var mediaSource = OriginalMediaSource;
2017-03-03 05:36:20 +01:00
var uri = new Uri(mediaSource.Path);
var localPort = _networkManager.GetRandomUnusedUdpPort();
2017-03-02 22:32:20 +01:00
2017-10-23 21:14:11 +02:00
FileSystem.CreateDirectory(FileSystem.GetDirectoryName(TempFilePath));
2017-09-28 19:02:49 +02:00
Logger.Info("Opening HDHR UDP Live stream from {0}", uri.Host);
2017-03-02 22:32:20 +01:00
2017-10-23 21:14:11 +02:00
var remoteAddress = _networkManager.ParseIpAddress(uri.Host);
IpAddressInfo localAddress = null;
using (var tcpSocket = _socketFactory.CreateSocket(remoteAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp, false))
{
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;
}
}
var udpClient = _socketFactory.CreateUdpSocket(localPort);
var hdHomerunManager = new HdHomerunManager(_socketFactory, Logger);
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 OperationCanceledException))
{
Logger.ErrorException("Error opening live stream:", ex);
}
throw;
}
}
}
2017-03-02 22:32:20 +01:00
var taskCompletionSource = new TaskCompletionSource<bool>();
2017-10-23 21:14:11 +02:00
StartStreaming(udpClient, hdHomerunManager, remoteAddress, localAddress, localPort, taskCompletionSource, LiveStreamCancellationTokenSource.Token);
2017-03-02 22:32:20 +01: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 18:39:40 +02:00
//OpenedMediaSource.SupportsDirectPlay = false;
//OpenedMediaSource.SupportsDirectStream = true;
//OpenedMediaSource.SupportsTranscoding = true;
2017-03-02 22:32:20 +01:00
//await Task.Delay(5000).ConfigureAwait(false);
2017-10-23 21:14:11 +02:00
await taskCompletionSource.Task.ConfigureAwait(false);
2017-03-02 22:32:20 +01:00
}
protected override void CloseInternal()
2017-03-02 22:32:20 +01:00
{
2017-10-14 08:52:56 +02:00
LiveStreamCancellationTokenSource.Cancel();
2017-03-02 22:32:20 +01:00
}
2017-10-23 21:14:11 +02:00
private Task StartStreaming(ISocket udpClient, HdHomerunManager hdHomerunManager, IpAddressInfo remoteAddress, IpAddressInfo localAddress, int localPort, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
2017-03-02 22:32:20 +01:00
{
2017-05-22 06:54:02 +02:00
return Task.Run(async () =>
2017-03-03 06:53:21 +01:00
{
2017-10-23 21:14:11 +02:00
using (udpClient)
2017-03-03 06:53:21 +01:00
{
2017-10-23 21:14:11 +02:00
using (hdHomerunManager)
2017-03-03 06:53:21 +01:00
{
2017-10-23 21:14:11 +02:00
try
{
await CopyTo(udpClient, TempFilePath, openTaskCompletionSource, cancellationToken).ConfigureAwait(false);
}
catch (OperationCanceledException ex)
2017-03-03 06:53:21 +01:00
{
2017-10-23 21:14:11 +02:00
Logger.Info("HDHR UDP stream cancelled or timed out from {0}", remoteAddress);
openTaskCompletionSource.TrySetException(ex);
}
catch (Exception ex)
{
Logger.ErrorException("Error opening live stream:", ex);
openTaskCompletionSource.TrySetException(ex);
2017-03-03 06:53:21 +01:00
}
EnableStreamSharing = false;
2017-10-23 21:14:11 +02:00
try
2017-03-03 06:53:21 +01:00
{
2017-10-23 21:14:11 +02:00
await hdHomerunManager.StopStreaming().ConfigureAwait(false);
2017-03-03 06:53:21 +01:00
}
2017-10-23 21:14:11 +02:00
catch
{
2017-03-03 06:53:21 +01:00
2017-10-23 21:14:11 +02:00
}
2017-03-03 06:53:21 +01:00
}
}
2017-09-28 19:02:49 +02:00
await DeleteTempFile(TempFilePath).ConfigureAwait(false);
2017-05-22 06:54:02 +02:00
});
}
2017-05-23 18:44:11 +02:00
private void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)
2017-05-22 06:54:02 +02:00
{
2017-05-23 18:44:11 +02:00
Task.Run(() =>
2017-10-23 21:14:11 +02:00
{
openTaskCompletionSource.TrySetResult(true);
});
2017-03-02 22:32:20 +01:00
}
2017-06-01 06:51:43 +02:00
private static int RtpHeaderBytes = 12;
2017-10-23 21:14:11 +02:00
private async Task CopyTo(ISocket udpClient, string file, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
2017-05-25 15:00:14 +02:00
{
2017-06-01 06:51:43 +02:00
var bufferSize = 81920;
2017-05-25 15:00:14 +02:00
2017-06-01 06:51:43 +02:00
byte[] buffer = new byte[bufferSize];
int read;
2017-06-01 07:05:36 +02:00
var resolved = false;
2017-10-23 21:14:11 +02:00
using (var source = _socketFactory.CreateNetworkStream(udpClient, false))
2017-06-01 06:51:43 +02:00
{
2017-10-23 21:14:11 +02:00
using (var fileStream = FileSystem.GetFileStream(file, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read, FileOpenOptions.None))
{
var currentCancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, new CancellationTokenSource(TimeSpan.FromSeconds(30)).Token).Token;
2017-05-25 15:00:14 +02:00
2017-10-23 21:14:11 +02:00
while ((read = await source.ReadAsync(buffer, 0, buffer.Length, currentCancellationToken).ConfigureAwait(false)) != 0)
{
cancellationToken.ThrowIfCancellationRequested();
2017-05-25 15:00:14 +02:00
2017-10-23 21:14:11 +02:00
currentCancellationToken = cancellationToken;
2017-06-01 07:05:36 +02:00
2017-10-23 21:14:11 +02:00
read -= RtpHeaderBytes;
if (read > 0)
{
fileStream.Write(buffer, RtpHeaderBytes, read);
}
if (!resolved)
{
resolved = true;
Resolve(openTaskCompletionSource);
}
}
2017-06-01 07:05:36 +02:00
}
2017-05-25 15:00:14 +02:00
}
}
2017-06-01 08:25:07 +02:00
public class UdpClientStream : Stream
{
private static int RtpHeaderBytes = 12;
private static int PacketSize = 1316;
private readonly ISocket _udpClient;
bool disposed;
public UdpClientStream(ISocket udpClient) : base()
{
_udpClient = udpClient;
}
public override async Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
if (buffer == null)
throw new ArgumentNullException("buffer");
if (offset + count < 0)
throw new ArgumentOutOfRangeException("offset + count must not be negative", "offset+count");
if (offset + count > buffer.Length)
throw new ArgumentException("offset + count must not be greater than the length of buffer", "offset+count");
if (disposed)
throw new ObjectDisposedException(typeof(UdpClientStream).ToString());
// This will always receive a 1328 packet size (PacketSize + RtpHeaderSize)
// The RTP header will be stripped so see how many reads we need to make to fill the buffer.
int numReads = count / PacketSize;
int totalBytesRead = 0;
byte[] receiveBuffer = new byte[81920];
for (int i = 0; i < numReads; ++i)
{
var data = await _udpClient.ReceiveAsync(receiveBuffer, 0, receiveBuffer.Length, cancellationToken).ConfigureAwait(false);
var bytesRead = data.ReceivedBytes - RtpHeaderBytes;
// remove rtp header
Buffer.BlockCopy(data.Buffer, RtpHeaderBytes, buffer, offset, bytesRead);
offset += bytesRead;
totalBytesRead += bytesRead;
}
return totalBytesRead;
}
public override int Read(byte[] buffer, int offset, int count)
{
if (buffer == null)
throw new ArgumentNullException("buffer");
if (offset + count < 0)
throw new ArgumentOutOfRangeException("offset + count must not be negative", "offset+count");
if (offset + count > buffer.Length)
throw new ArgumentException("offset + count must not be greater than the length of buffer", "offset+count");
if (disposed)
throw new ObjectDisposedException(typeof(UdpClientStream).ToString());
// This will always receive a 1328 packet size (PacketSize + RtpHeaderSize)
// The RTP header will be stripped so see how many reads we need to make to fill the buffer.
int numReads = count / PacketSize;
int totalBytesRead = 0;
byte[] receiveBuffer = new byte[81920];
for (int i = 0; i < numReads; ++i)
{
var receivedBytes = _udpClient.Receive(receiveBuffer, 0, receiveBuffer.Length);
var bytesRead = receivedBytes - RtpHeaderBytes;
// remove rtp header
Buffer.BlockCopy(receiveBuffer, RtpHeaderBytes, buffer, offset, bytesRead);
offset += bytesRead;
totalBytesRead += bytesRead;
}
return totalBytesRead;
}
protected override void Dispose(bool disposing)
{
disposed = true;
}
public override bool CanRead
{
get
{
throw new NotImplementedException();
}
}
public override bool CanSeek
{
get
{
throw new NotImplementedException();
}
}
public override bool CanWrite
{
get
{
throw new NotImplementedException();
}
}
public override long Length
{
get
{
throw new NotImplementedException();
}
}
public override long Position
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public override void Flush()
{
throw new NotImplementedException();
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotImplementedException();
}
public override void SetLength(long value)
{
throw new NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new NotImplementedException();
}
}
2017-03-02 22:32:20 +01:00
}
2017-03-23 20:10:10 +01:00
}