jellyfin/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs

71 lines
1.9 KiB
C#
Raw Normal View History

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