2020-01-12 17:59:10 +00:00
|
|
|
using System.Threading;
|
2019-01-27 14:40:37 +00:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:20:41 +00:00
|
|
|
using Emby.Server.Implementations.Udp;
|
2014-07-27 22:01:29 +00:00
|
|
|
using MediaBrowser.Controller;
|
2013-05-18 22:07:59 +00:00
|
|
|
using MediaBrowser.Controller.Plugins;
|
2019-01-13 19:20:41 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-05-18 22:07:59 +00:00
|
|
|
|
2016-11-04 18:56:47 +00:00
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
2013-05-27 18:34:03 +00:00
|
|
|
/// <summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
/// Class UdpServerEntryPoint.
|
2013-05-27 18:34:03 +00:00
|
|
|
/// </summary>
|
2020-01-12 17:59:10 +00:00
|
|
|
public sealed class UdpServerEntryPoint : IServerEntryPoint
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
/// The port of the UDP server.
|
2013-05-18 22:07:59 +00:00
|
|
|
/// </summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
public const int PortNumber = 7359;
|
2013-05-18 22:07:59 +00:00
|
|
|
|
2013-05-27 18:34:03 +00:00
|
|
|
/// <summary>
|
2019-12-10 15:22:03 +00:00
|
|
|
/// The logger.
|
2013-05-27 18:34:03 +00:00
|
|
|
/// </summary>
|
2013-05-18 22:07:59 +00:00
|
|
|
private readonly ILogger _logger;
|
2014-07-27 22:01:29 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2013-05-18 22:07:59 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The UDP server.
|
|
|
|
/// </summary>
|
|
|
|
private UdpServer _udpServer;
|
2020-01-12 17:59:10 +00:00
|
|
|
private CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
|
|
|
|
private bool _disposed = false;
|
2013-09-25 00:54:51 +00:00
|
|
|
|
2013-05-27 18:34:03 +00:00
|
|
|
/// <summary>
|
2014-08-19 22:28:35 +00:00
|
|
|
/// Initializes a new instance of the <see cref="UdpServerEntryPoint" /> class.
|
2013-05-27 18:34:03 +00:00
|
|
|
/// </summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
public UdpServerEntryPoint(
|
2020-01-12 17:59:10 +00:00
|
|
|
ILogger<UdpServerEntryPoint> logger,
|
|
|
|
IServerApplicationHost appHost)
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
2014-07-27 22:01:29 +00:00
|
|
|
_appHost = appHost;
|
2013-05-27 18:34:03 +00:00
|
|
|
|
2019-01-27 14:40:37 +00:00
|
|
|
|
2013-05-18 22:07:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-01-12 17:59:10 +00:00
|
|
|
public async Task RunAsync()
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
2020-01-12 17:59:10 +00:00
|
|
|
_udpServer = new UdpServer(_logger, _appHost);
|
|
|
|
_udpServer.Start(PortNumber, _cancellationTokenSource.Token);
|
2013-05-18 22:07:59 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 17:59:10 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public void Dispose()
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
2020-01-12 17:59:10 +00:00
|
|
|
if (_disposed)
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
2020-01-12 17:59:10 +00:00
|
|
|
return;
|
2013-05-18 22:07:59 +00:00
|
|
|
}
|
2020-01-12 17:59:10 +00:00
|
|
|
|
|
|
|
_cancellationTokenSource.Cancel();
|
|
|
|
_udpServer.Dispose();
|
2020-02-06 14:20:23 +00:00
|
|
|
_cancellationTokenSource.Dispose();
|
2020-01-12 17:59:10 +00:00
|
|
|
_cancellationTokenSource = null;
|
|
|
|
_udpServer = null;
|
|
|
|
|
|
|
|
_disposed = true;
|
2013-05-18 22:07:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|