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

86 lines
2.5 KiB
C#
Raw Normal View History

using System;
using Emby.Server.Implementations.Udp;
2014-07-28 00:01:29 +02:00
using MediaBrowser.Controller;
2013-05-19 00:07:59 +02:00
using MediaBrowser.Controller.Plugins;
2016-11-04 19:56:47 +01:00
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
using Microsoft.Extensions.Logging;
2013-05-19 00:07:59 +02:00
2016-11-04 19:56:47 +01:00
namespace Emby.Server.Implementations.EntryPoints
2013-05-19 00:07:59 +02:00
{
/// <summary>
/// Class UdpServerEntryPoint
/// </summary>
2013-05-19 00:07:59 +02:00
public class UdpServerEntryPoint : IServerEntryPoint
{
/// <summary>
/// Gets or sets the UDP server.
/// </summary>
/// <value>The UDP server.</value>
private UdpServer UdpServer { get; set; }
/// <summary>
/// The _logger
/// </summary>
2013-05-19 00:07:59 +02:00
private readonly ILogger _logger;
2016-11-04 19:56:47 +01:00
private readonly ISocketFactory _socketFactory;
2014-07-28 00:01:29 +02:00
private readonly IServerApplicationHost _appHost;
2014-07-30 05:31:35 +02:00
private readonly IJsonSerializer _json;
2013-05-19 00:07:59 +02:00
2013-09-25 02:54:51 +02:00
public const int PortNumber = 7359;
/// <summary>
2014-08-20 00:28:35 +02:00
/// Initializes a new instance of the <see cref="UdpServerEntryPoint" /> class.
/// </summary>
2016-11-04 19:56:47 +01:00
public UdpServerEntryPoint(ILogger logger, IServerApplicationHost appHost, IJsonSerializer json, ISocketFactory socketFactory)
2013-05-19 00:07:59 +02:00
{
_logger = logger;
2014-07-28 00:01:29 +02:00
_appHost = appHost;
2014-07-30 05:31:35 +02:00
_json = json;
2016-11-04 19:56:47 +01:00
_socketFactory = socketFactory;
2013-05-19 00:07:59 +02:00
}
/// <summary>
/// Runs this instance.
/// </summary>
2013-05-19 00:07:59 +02:00
public void Run()
{
2016-11-04 19:56:47 +01:00
var udpServer = new UdpServer(_logger, _appHost, _json, _socketFactory);
2013-05-19 00:07:59 +02:00
try
{
2013-09-25 02:54:51 +02:00
udpServer.Start(PortNumber);
2013-05-19 00:07:59 +02:00
UdpServer = udpServer;
}
2016-11-04 15:09:21 +01:00
catch (Exception ex)
2013-05-19 00:07:59 +02:00
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Failed to start UDP Server");
2013-05-19 00:07:59 +02:00
}
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
2013-05-19 00:07:59 +02:00
public void Dispose()
{
Dispose(true);
}
/// <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-19 00:07:59 +02:00
protected virtual void Dispose(bool dispose)
{
if (dispose)
{
if (UdpServer != null)
{
UdpServer.Dispose();
}
}
}
}
}