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

92 lines
2.5 KiB
C#
Raw Normal View History

using System;
2019-01-27 09:40:37 -05:00
using System.Threading.Tasks;
using Emby.Server.Implementations.Udp;
2014-07-27 18:01:29 -04:00
using MediaBrowser.Controller;
2013-05-18 18:07:59 -04:00
using MediaBrowser.Controller.Plugins;
2016-11-04 14:56:47 -04:00
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
using Microsoft.Extensions.Logging;
2013-05-18 18:07:59 -04:00
2016-11-04 14:56:47 -04:00
namespace Emby.Server.Implementations.EntryPoints
2013-05-18 18:07:59 -04:00
{
/// <summary>
2019-11-01 13:38:54 -04:00
/// Class UdpServerEntryPoint.
/// </summary>
2013-05-18 18:07:59 -04:00
public class UdpServerEntryPoint : IServerEntryPoint
{
/// <summary>
2019-11-01 13:38:54 -04:00
/// The port of the UDP server.
2013-05-18 18:07:59 -04:00
/// </summary>
2019-11-01 13:38:54 -04:00
public const int PortNumber = 7359;
2013-05-18 18:07:59 -04:00
/// <summary>
/// The logger.
/// </summary>
2013-05-18 18:07:59 -04:00
private readonly ILogger _logger;
2016-11-04 14:56:47 -04:00
private readonly ISocketFactory _socketFactory;
2014-07-27 18:01:29 -04:00
private readonly IServerApplicationHost _appHost;
2014-07-29 23:31:35 -04:00
private readonly IJsonSerializer _json;
2013-05-18 18:07:59 -04:00
2019-11-01 13:38:54 -04:00
/// <summary>
/// The UDP server.
/// </summary>
private UdpServer _udpServer;
2013-09-24 20:54:51 -04:00
/// <summary>
2014-08-19 18:28:35 -04:00
/// Initializes a new instance of the <see cref="UdpServerEntryPoint" /> class.
/// </summary>
2019-11-01 13:38:54 -04:00
public UdpServerEntryPoint(
ILogger logger,
IServerApplicationHost appHost,
IJsonSerializer json,
ISocketFactory socketFactory)
2013-05-18 18:07:59 -04:00
{
_logger = logger;
2014-07-27 18:01:29 -04:00
_appHost = appHost;
2014-07-29 23:31:35 -04:00
_json = json;
2016-11-04 14:56:47 -04:00
_socketFactory = socketFactory;
2013-05-18 18:07:59 -04:00
}
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2019-01-27 09:40:37 -05:00
public Task RunAsync()
2013-05-18 18:07:59 -04:00
{
2016-11-04 14:56:47 -04:00
var udpServer = new UdpServer(_logger, _appHost, _json, _socketFactory);
2013-05-18 18:07:59 -04:00
try
{
2013-09-24 20:54:51 -04:00
udpServer.Start(PortNumber);
2013-05-18 18:07:59 -04:00
2019-11-01 13:38:54 -04:00
_udpServer = udpServer;
2013-05-18 18:07:59 -04:00
}
2016-11-04 10:09:21 -04:00
catch (Exception ex)
2013-05-18 18:07:59 -04:00
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Failed to start UDP Server");
2013-05-18 18:07:59 -04:00
}
2019-01-27 09:40:37 -05:00
return Task.CompletedTask;
2013-05-18 18:07:59 -04:00
}
2019-11-01 13:38:54 -04:00
/// <inheritdoc />
2013-05-18 18:07:59 -04:00
public void Dispose()
{
Dispose(true);
2019-11-01 13:38:54 -04:00
GC.SuppressFinalize(this);
2013-05-18 18:07:59 -04:00
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2013-05-18 18:07:59 -04:00
protected virtual void Dispose(bool dispose)
{
if (dispose)
{
2019-11-01 13:38:54 -04:00
if (_udpServer != null)
2013-05-18 18:07:59 -04:00
{
2019-11-01 13:38:54 -04:00
_udpServer.Dispose();
2013-05-18 18:07:59 -04:00
}
}
}
}
}