123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Net;
- using MediaBrowser.Model.ApiClient;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.Serialization;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Net.Sockets;
- using System.Text;
- using System.Threading.Tasks;
- namespace MediaBrowser.Server.Implementations.Udp
- {
- /// <summary>
- /// Provides a Udp Server
- /// </summary>
- public class UdpServer : IDisposable
- {
- /// <summary>
- /// The _logger
- /// </summary>
- private readonly ILogger _logger;
- /// <summary>
- /// The _network manager
- /// </summary>
- private readonly INetworkManager _networkManager;
- /// <summary>
- /// The _HTTP server
- /// </summary>
- private readonly IHttpServer _httpServer;
- /// <summary>
- /// The _server configuration manager
- /// </summary>
- private readonly IServerConfigurationManager _serverConfigurationManager;
- private bool _isDisposed;
- private readonly List<Tuple<byte[], Action<string>>> _responders = new List<Tuple<byte[], Action<string>>>();
- private readonly IServerApplicationHost _appHost;
- private readonly IJsonSerializer _json;
- /// <summary>
- /// Initializes a new instance of the <see cref="UdpServer" /> class.
- /// </summary>
- /// <param name="logger">The logger.</param>
- /// <param name="networkManager">The network manager.</param>
- /// <param name="serverConfigurationManager">The server configuration manager.</param>
- /// <param name="httpServer">The HTTP server.</param>
- /// <param name="appHost">The application host.</param>
- public UdpServer(ILogger logger, INetworkManager networkManager, IServerConfigurationManager serverConfigurationManager, IHttpServer httpServer, IServerApplicationHost appHost, IJsonSerializer json)
- {
- _logger = logger;
- _networkManager = networkManager;
- _serverConfigurationManager = serverConfigurationManager;
- _httpServer = httpServer;
- _appHost = appHost;
- _json = json;
- AddMessageResponder("who is MediaBrowserServer?", RespondToV1Message);
- AddMessageResponder("who is MediaBrowserServer_v2?", RespondToV2Message);
- }
- private void AddMessageResponder(string message, Action<string> responder)
- {
- var expectedMessageBytes = Encoding.UTF8.GetBytes(message);
- _responders.Add(new Tuple<byte[], Action<string>>(expectedMessageBytes, responder));
- }
- /// <summary>
- /// Raises the <see cref="E:MessageReceived" /> event.
- /// </summary>
- /// <param name="e">The <see cref="UdpMessageReceivedEventArgs"/> instance containing the event data.</param>
- private void OnMessageReceived(UdpMessageReceivedEventArgs e)
- {
- var responder = _responders.FirstOrDefault(i => i.Item1.SequenceEqual(e.Bytes));
- if (responder != null)
- {
- try
- {
- responder.Item2(e.RemoteEndPoint);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in OnMessageReceived", ex);
- }
- }
- }
- private async void RespondToV1Message(string endpoint)
- {
- var localAddress = GetLocalIpAddress();
- if (!string.IsNullOrEmpty(localAddress))
- {
- // Send a response back with our ip address and port
- var response = String.Format("MediaBrowserServer|{0}:{1}", localAddress, _serverConfigurationManager.Configuration.HttpServerPortNumber);
- await SendAsync(Encoding.UTF8.GetBytes(response), endpoint);
- }
- else
- {
- _logger.Warn("Unable to respond to udp request because the local ip address could not be determined.");
- }
- }
- private async void RespondToV2Message(string endpoint)
- {
- var localAddress = GetLocalIpAddress();
- if (!string.IsNullOrEmpty(localAddress))
- {
- var serverAddress = string.Format("http://{0}:{1}", localAddress, _serverConfigurationManager.Configuration.HttpServerPortNumber);
- var response = new ServerDiscoveryInfo
- {
- Address = serverAddress,
- Id = _appHost.ServerId,
- Name = _appHost.Name
- };
- await SendAsync(Encoding.UTF8.GetBytes(_json.SerializeToString(response)), endpoint);
- }
- else
- {
- _logger.Warn("Unable to respond to udp request because the local ip address could not be determined.");
- }
- }
- /// <summary>
- /// Gets the local ip address.
- /// </summary>
- /// <returns>System.String.</returns>
- private string GetLocalIpAddress()
- {
- var localAddresses = _networkManager.GetLocalIpAddresses().ToList();
- // Cross-check the local ip addresses with addresses that have been received on with the http server
- var matchedAddress = _httpServer.LocalEndPoints
- .ToList()
- .Select(i => i.Split(':').FirstOrDefault())
- .Where(i => !string.IsNullOrEmpty(i))
- .FirstOrDefault(i => localAddresses.Contains(i, StringComparer.OrdinalIgnoreCase));
- // Return the first matched address, if found, or the first known local address
- return matchedAddress ?? localAddresses.FirstOrDefault();
- }
- /// <summary>
- /// The _udp client
- /// </summary>
- private UdpClient _udpClient;
- /// <summary>
- /// Starts the specified port.
- /// </summary>
- /// <param name="port">The port.</param>
- public void Start(int port)
- {
- _udpClient = new UdpClient(new IPEndPoint(IPAddress.Any, port));
- _udpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
- Task.Run(() => StartListening());
- }
- private async void StartListening()
- {
- while (!_isDisposed)
- {
- try
- {
- var result = await GetResult().ConfigureAwait(false);
- OnMessageReceived(result);
- }
- catch (ObjectDisposedException)
- {
- break;
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in StartListening", ex);
- }
- }
- }
- private Task<UdpReceiveResult> GetResult()
- {
- try
- {
- return _udpClient.ReceiveAsync();
- }
- catch (ObjectDisposedException)
- {
- return Task.FromResult(new UdpReceiveResult(new byte[] { }, new IPEndPoint(IPAddress.Any, 0)));
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error receiving udp message", ex);
- return Task.FromResult(new UdpReceiveResult(new byte[] { }, new IPEndPoint(IPAddress.Any, 0)));
- }
- }
- /// <summary>
- /// Called when [message received].
- /// </summary>
- /// <param name="message">The message.</param>
- private void OnMessageReceived(UdpReceiveResult message)
- {
- if (message.RemoteEndPoint.Port == 0)
- {
- return;
- }
- var bytes = message.Buffer;
- OnMessageReceived(new UdpMessageReceivedEventArgs
- {
- Bytes = bytes,
- RemoteEndPoint = message.RemoteEndPoint.ToString()
- });
- }
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- /// </summary>
- public void Dispose()
- {
- Dispose(true);
- GC.SuppressFinalize(this);
- }
- /// <summary>
- /// Stops this instance.
- /// </summary>
- public void Stop()
- {
- _isDisposed = true;
- if (_udpClient != null)
- {
- _udpClient.Close();
- }
- }
- /// <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>
- protected virtual void Dispose(bool dispose)
- {
- if (dispose)
- {
- Stop();
- }
- }
- /// <summary>
- /// Sends the async.
- /// </summary>
- /// <param name="data">The data.</param>
- /// <param name="ipAddress">The ip address.</param>
- /// <param name="port">The port.</param>
- /// <returns>Task{System.Int32}.</returns>
- /// <exception cref="System.ArgumentNullException">data</exception>
- public Task SendAsync(string data, string ipAddress, int port)
- {
- return SendAsync(Encoding.UTF8.GetBytes(data), ipAddress, port);
- }
- /// <summary>
- /// Sends the async.
- /// </summary>
- /// <param name="bytes">The bytes.</param>
- /// <param name="ipAddress">The ip address.</param>
- /// <param name="port">The port.</param>
- /// <returns>Task{System.Int32}.</returns>
- /// <exception cref="System.ArgumentNullException">bytes</exception>
- public Task SendAsync(byte[] bytes, string ipAddress, int port)
- {
- if (bytes == null)
- {
- throw new ArgumentNullException("bytes");
- }
- if (string.IsNullOrEmpty(ipAddress))
- {
- throw new ArgumentNullException("ipAddress");
- }
- return _udpClient.SendAsync(bytes, bytes.Length, ipAddress, port);
- }
- /// <summary>
- /// Sends the async.
- /// </summary>
- /// <param name="bytes">The bytes.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">
- /// bytes
- /// or
- /// remoteEndPoint
- /// </exception>
- public async Task SendAsync(byte[] bytes, string remoteEndPoint)
- {
- if (bytes == null)
- {
- throw new ArgumentNullException("bytes");
- }
- if (string.IsNullOrEmpty(remoteEndPoint))
- {
- throw new ArgumentNullException("remoteEndPoint");
- }
- try
- {
- await _udpClient.SendAsync(bytes, bytes.Length, _networkManager.Parse(remoteEndPoint)).ConfigureAwait(false);
- _logger.Info("Udp message sent to {0}", remoteEndPoint);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error sending message to {0}", ex, remoteEndPoint);
- }
- }
- }
- }
|