using MediaBrowser.Common.Events; using MediaBrowser.Controller; using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Net; using MediaBrowser.Model.Events; using MediaBrowser.Model.Logging; using MediaBrowser.Model.Net; using MediaBrowser.Model.Serialization; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Server.Implementations.ServerManager { /// /// Manages the Http Server, Udp Server and WebSocket connections /// public class ServerManager : IServerManager { /// /// Both the Ui and server will have a built-in HttpServer. /// People will inevitably want remote control apps so it's needed in the Ui too. /// /// The HTTP server. private IHttpServer HttpServer { get; set; } /// /// Gets or sets the json serializer. /// /// The json serializer. private readonly IJsonSerializer _jsonSerializer; /// /// The web socket connections /// private readonly List _webSocketConnections = new List(); /// /// Gets the web socket connections. /// /// The web socket connections. public IEnumerable WebSocketConnections { get { return _webSocketConnections; } } public event EventHandler> WebSocketConnected; /// /// The _logger /// private readonly ILogger _logger; /// /// The _application host /// private readonly IServerApplicationHost _applicationHost; /// /// Gets or sets the configuration manager. /// /// The configuration manager. private IServerConfigurationManager ConfigurationManager { get; set; } /// /// Gets the web socket listeners. /// /// The web socket listeners. private readonly List _webSocketListeners = new List(); /// /// Initializes a new instance of the class. /// /// The application host. /// The json serializer. /// The logger. /// The configuration manager. /// applicationHost public ServerManager(IServerApplicationHost applicationHost, IJsonSerializer jsonSerializer, ILogger logger, IServerConfigurationManager configurationManager) { if (applicationHost == null) { throw new ArgumentNullException("applicationHost"); } if (jsonSerializer == null) { throw new ArgumentNullException("jsonSerializer"); } if (logger == null) { throw new ArgumentNullException("logger"); } _logger = logger; _jsonSerializer = jsonSerializer; _applicationHost = applicationHost; ConfigurationManager = configurationManager; } /// /// Starts this instance. /// public void Start(IEnumerable urlPrefixes, string certificatePath) { ReloadHttpServer(urlPrefixes, certificatePath); } /// /// Restarts the Http Server, or starts it if not currently running /// private void ReloadHttpServer(IEnumerable urlPrefixes, string certificatePath) { _logger.Info("Loading Http Server"); try { HttpServer = _applicationHost.Resolve(); HttpServer.StartServer(urlPrefixes, certificatePath); } catch (SocketException ex) { _logger.ErrorException("The http server is unable to start due to a Socket error. This can occasionally happen when the operating system takes longer than usual to release the IP bindings from the previous session. This can take up to five minutes. Please try waiting or rebooting the system.", ex); throw; } catch (Exception ex) { _logger.ErrorException("Error starting Http Server", ex); throw; } HttpServer.WebSocketConnected += HttpServer_WebSocketConnected; } /// /// Handles the WebSocketConnected event of the HttpServer control. /// /// The source of the event. /// The instance containing the event data. void HttpServer_WebSocketConnected(object sender, WebSocketConnectEventArgs e) { var connection = new WebSocketConnection(e.WebSocket, e.Endpoint, _jsonSerializer, _logger) { OnReceive = ProcessWebSocketMessageReceived, Url = e.Url, QueryString = new NameValueCollection(e.QueryString ?? new NameValueCollection()) }; _webSocketConnections.Add(connection); if (WebSocketConnected != null) { EventHelper.FireEventIfNotNull(WebSocketConnected, this, new GenericEventArgs (connection), _logger); } } /// /// Processes the web socket message received. /// /// The result. private async void ProcessWebSocketMessageReceived(WebSocketMessageInfo result) { //_logger.Debug("Websocket message received: {0}", result.MessageType); var tasks = _webSocketListeners.Select(i => Task.Run(async () => { try { await i.ProcessMessage(result).ConfigureAwait(false); } catch (Exception ex) { _logger.ErrorException("{0} failed processing WebSocket message {1}", ex, i.GetType().Name, result.MessageType ?? string.Empty); } })); await Task.WhenAll(tasks).ConfigureAwait(false); } /// /// Sends a message to all clients currently connected via a web socket /// /// /// Type of the message. /// The data. /// Task. public void SendWebSocketMessage(string messageType, T data) { SendWebSocketMessage(messageType, () => data); } /// /// Sends a message to all clients currently connected via a web socket /// /// /// Type of the message. /// The function that generates the data to send, if there are any connected clients public void SendWebSocketMessage(string messageType, Func dataFunction) { SendWebSocketMessageAsync(messageType, dataFunction, CancellationToken.None); } /// /// Sends a message to all clients currently connected via a web socket /// /// /// Type of the message. /// The function that generates the data to send, if there are any connected clients /// The cancellation token. /// Task. /// messageType public Task SendWebSocketMessageAsync(string messageType, Func dataFunction, CancellationToken cancellationToken) { return SendWebSocketMessageAsync(messageType, dataFunction, _webSocketConnections, cancellationToken); } /// /// Sends the web socket message async. /// /// /// Type of the message. /// The data function. /// The connections. /// The cancellation token. /// Task. /// messageType /// or /// dataFunction /// or /// cancellationToken private async Task SendWebSocketMessageAsync(string messageType, Func dataFunction, IEnumerable connections, CancellationToken cancellationToken) { if (string.IsNullOrEmpty(messageType)) { throw new ArgumentNullException("messageType"); } if (dataFunction == null) { throw new ArgumentNullException("dataFunction"); } cancellationToken.ThrowIfCancellationRequested(); var connectionsList = connections.Where(s => s.State == WebSocketState.Open).ToList(); if (connectionsList.Count > 0) { _logger.Info("Sending web socket message {0}", messageType); var message = new WebSocketMessage { MessageType = messageType, Data = dataFunction() }; var json = _jsonSerializer.SerializeToString(message); var tasks = connectionsList.Select(s => Task.Run(() => { try { s.SendAsync(json, cancellationToken); } catch (OperationCanceledException) { throw; } catch (Exception ex) { _logger.ErrorException("Error sending web socket message {0} to {1}", ex, messageType, s.RemoteEndPoint); } }, cancellationToken)); await Task.WhenAll(tasks).ConfigureAwait(false); } } /// /// Disposes the current HttpServer /// private void DisposeHttpServer() { foreach (var socket in _webSocketConnections) { // Dispose the connection socket.Dispose(); } _webSocketConnections.Clear(); if (HttpServer != null) { HttpServer.WebSocketConnected -= HttpServer_WebSocketConnected; HttpServer.Dispose(); } } /// /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } /// /// Releases unmanaged and - optionally - managed resources. /// /// true to release both managed and unmanaged resources; false to release only unmanaged resources. protected virtual void Dispose(bool dispose) { if (dispose) { DisposeHttpServer(); } } /// /// Adds the web socket listeners. /// /// The listeners. public void AddWebSocketListeners(IEnumerable listeners) { _webSocketListeners.AddRange(listeners); } } }