You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.3 KiB
83 lines
2.3 KiB
using System.Net.Sockets;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Emby.Server.Implementations.Udp;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Plugins;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
|
{
|
|
/// <summary>
|
|
/// Class UdpServerEntryPoint.
|
|
/// </summary>
|
|
public sealed class UdpServerEntryPoint : IServerEntryPoint
|
|
{
|
|
/// <summary>
|
|
/// The port of the UDP server.
|
|
/// </summary>
|
|
public const int PortNumber = 7359;
|
|
|
|
/// <summary>
|
|
/// The logger.
|
|
/// </summary>
|
|
private readonly ILogger<UdpServerEntryPoint> _logger;
|
|
private readonly IServerApplicationHost _appHost;
|
|
private readonly IConfiguration _config;
|
|
|
|
/// <summary>
|
|
/// The UDP server.
|
|
/// </summary>
|
|
private UdpServer _udpServer;
|
|
private CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
|
|
private bool _disposed = false;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UdpServerEntryPoint" /> class.
|
|
/// </summary>
|
|
public UdpServerEntryPoint(
|
|
ILogger<UdpServerEntryPoint> logger,
|
|
IServerApplicationHost appHost,
|
|
IConfiguration configuration)
|
|
{
|
|
_logger = logger;
|
|
_appHost = appHost;
|
|
_config = configuration;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public Task RunAsync()
|
|
{
|
|
try
|
|
{
|
|
_udpServer = new UdpServer(_logger, _appHost, _config);
|
|
_udpServer.Start(PortNumber, _cancellationTokenSource.Token);
|
|
}
|
|
catch (SocketException ex)
|
|
{
|
|
_logger.LogWarning(ex, "Unable to start AutoDiscovery listener on UDP port {PortNumber}", PortNumber);
|
|
}
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Dispose()
|
|
{
|
|
if (_disposed)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_cancellationTokenSource.Cancel();
|
|
_udpServer.Dispose();
|
|
_cancellationTokenSource.Dispose();
|
|
_cancellationTokenSource = null;
|
|
_udpServer = null;
|
|
|
|
_disposed = true;
|
|
}
|
|
}
|
|
}
|