2016-10-07 15:08:13 +00:00
|
|
|
|
using System;
|
2017-02-01 20:55:56 +00:00
|
|
|
|
using System.Collections.Concurrent;
|
2016-10-07 15:08:13 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
2017-03-26 16:26:52 +00:00
|
|
|
|
using MediaBrowser.Model.Net;
|
2016-10-07 15:08:13 +00:00
|
|
|
|
|
2016-11-03 23:35:19 +00:00
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
2016-10-07 15:08:13 +00:00
|
|
|
|
{
|
|
|
|
|
public class MulticastStream
|
|
|
|
|
{
|
2017-06-01 05:42:49 +00:00
|
|
|
|
private readonly ConcurrentDictionary<Guid, QueueStream> _outputStreams = new ConcurrentDictionary<Guid, QueueStream>();
|
2016-10-07 15:08:13 +00:00
|
|
|
|
private const int BufferSize = 81920;
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
public MulticastStream(ILogger logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task CopyUntilCancelled(Stream source, Action onStarted, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2017-05-02 12:53:21 +00:00
|
|
|
|
if (source == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("source");
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-01 05:42:49 +00:00
|
|
|
|
while (true)
|
2016-10-07 15:08:13 +00:00
|
|
|
|
{
|
2017-06-01 05:42:49 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2017-08-19 19:43:35 +00:00
|
|
|
|
byte[] buffer = new byte[BufferSize];
|
|
|
|
|
|
2017-06-01 05:42:49 +00:00
|
|
|
|
var bytesRead = source.Read(buffer, 0, buffer.Length);
|
2016-10-07 15:08:13 +00:00
|
|
|
|
|
|
|
|
|
if (bytesRead > 0)
|
|
|
|
|
{
|
2017-08-19 22:37:15 +00:00
|
|
|
|
foreach (var stream in _outputStreams)
|
2017-03-27 19:31:24 +00:00
|
|
|
|
{
|
2017-08-19 22:37:15 +00:00
|
|
|
|
stream.Value.Queue(buffer, 0, bytesRead);
|
2017-03-26 16:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (onStarted != null)
|
|
|
|
|
{
|
|
|
|
|
var onStartedCopy = onStarted;
|
|
|
|
|
onStarted = null;
|
|
|
|
|
Task.Run(onStartedCopy);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
await Task.Delay(100).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-16 06:42:33 +00:00
|
|
|
|
public Task CopyToAsync(Stream stream, CancellationToken cancellationToken)
|
2016-10-07 15:08:13 +00:00
|
|
|
|
{
|
2017-08-19 22:37:15 +00:00
|
|
|
|
var queueStream = new QueueStream(stream, _logger);
|
2017-02-01 20:55:56 +00:00
|
|
|
|
|
2017-08-19 22:37:15 +00:00
|
|
|
|
_outputStreams.TryAdd(queueStream.Id, queueStream);
|
2016-10-07 15:08:13 +00:00
|
|
|
|
|
2017-08-19 22:37:15 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
queueStream.Start(cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
_outputStreams.TryRemove(queueStream.Id, out queueStream);
|
|
|
|
|
GC.Collect();
|
|
|
|
|
}
|
2016-10-07 15:08:13 +00:00
|
|
|
|
|
2017-08-19 22:37:15 +00:00
|
|
|
|
return Task.FromResult(true);
|
2016-10-07 15:08:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|