2020-07-13 15:33:39 +00:00
|
|
|
using System.Net.Sockets;
|
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;
|
2020-05-02 16:56:09 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
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>
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<UdpServerEntryPoint> _logger;
|
2014-07-27 22:01:29 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2020-05-02 16:56:09 +00:00
|
|
|
private readonly IConfiguration _config;
|
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,
|
2020-05-02 16:56:09 +00:00
|
|
|
IServerApplicationHost appHost,
|
|
|
|
IConfiguration configuration)
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
2014-07-27 22:01:29 +00:00
|
|
|
_appHost = appHost;
|
2020-05-02 16:56:09 +00:00
|
|
|
_config = configuration;
|
2013-05-18 22:07:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-04-05 16:10:56 +00:00
|
|
|
public Task RunAsync()
|
2013-05-18 22:07:59 +00:00
|
|
|
{
|
2020-07-13 14:12:51 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_udpServer = new UdpServer(_logger, _appHost, _config);
|
|
|
|
_udpServer.Start(PortNumber, _cancellationTokenSource.Token);
|
|
|
|
}
|
2020-07-13 15:33:39 +00:00
|
|
|
catch (SocketException ex)
|
2020-07-13 14:12:51 +00:00
|
|
|
{
|
2020-07-13 14:39:14 +00:00
|
|
|
_logger.LogWarning(ex, "Unable to start AutoDiscovery listener on UDP port {PortNumber}", PortNumber);
|
2020-07-13 14:12:51 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:10:56 +00:00
|
|
|
return Task.CompletedTask;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|