using MediaBrowser.Common;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
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; }
        }
        /// 
        /// Gets or sets the external web socket server.
        /// 
        /// The external web socket server.
        private IWebSocketServer ExternalWebSocketServer { get; set; }
        /// 
        /// 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 a value indicating whether [supports web socket].
        /// 
        /// true if [supports web socket]; otherwise, false.
        public bool SupportsNativeWebSocket
        {
            get { return HttpServer != null && HttpServer.SupportsWebSockets; }
        }
        /// 
        /// Gets the web socket port number.
        /// 
        /// The web socket port number.
        public int WebSocketPortNumber
        {
            get { return SupportsNativeWebSocket ? ConfigurationManager.Configuration.HttpServerPortNumber : ConfigurationManager.Configuration.LegacyWebSocketPortNumber; }
        }
        /// 
        /// 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;
            ConfigurationManager.ConfigurationUpdated += ConfigurationUpdated;
        }
        /// 
        /// Starts this instance.
        /// 
        public void Start()
        {
            ReloadHttpServer();
            if (!SupportsNativeWebSocket)
            {
                ReloadExternalWebSocketServer();
            }
        }
        /// 
        /// Starts the external web socket server.
        /// 
        private void ReloadExternalWebSocketServer()
        {
            DisposeExternalWebSocketServer();
            ExternalWebSocketServer = _applicationHost.Resolve();
            ExternalWebSocketServer.Start(ConfigurationManager.Configuration.LegacyWebSocketPortNumber);
            ExternalWebSocketServer.WebSocketConnected += HttpServer_WebSocketConnected;
        }
        /// 
        /// Restarts the Http Server, or starts it if not currently running
        /// 
        private void ReloadHttpServer()
        {
            // Only reload if the port has changed, so that we don't disconnect any active users
            if (HttpServer != null && HttpServer.UrlPrefix.Equals(_applicationHost.HttpServerUrlPrefix, StringComparison.OrdinalIgnoreCase))
            {
                return;
            }
            DisposeHttpServer();
            _logger.Info("Loading Http Server");
            try
            {
                HttpServer = _applicationHost.Resolve();
                HttpServer.EnableHttpRequestLogging = ConfigurationManager.Configuration.EnableHttpLevelLogging;
                HttpServer.Start(_applicationHost.HttpServerUrlPrefix);
            }
            catch (HttpListenerException 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 };
            _webSocketConnections.Add(connection);
        }
        /// 
        /// Processes the web socket message received.
        /// 
        /// The result.
        private async void ProcessWebSocketMessageReceived(WebSocketMessageInfo result)
        {
            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);
                }
            }));
            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)
        {
            Task.Run(async () => await SendWebSocketMessageAsync(messageType, dataFunction, CancellationToken.None).ConfigureAwait(false));
        }
        /// 
        /// 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
        public 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");
            }
            if (cancellationToken == null)
            {
                throw new ArgumentNullException("cancellationToken");
            }
            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 bytes = _jsonSerializer.SerializeToBytes(message);
                var tasks = connectionsList.Select(s => Task.Run(() =>
                {
                    try
                    {
                        s.SendAsync(bytes, cancellationToken);
                    }
                    catch (OperationCanceledException)
                    {
                        throw;
                    }
                    catch (Exception ex)
                    {
                        _logger.ErrorException("Error sending web socket message {0} to {1}", ex, messageType, s.RemoteEndPoint);
                    }
                }));
                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();
            }
            DisposeExternalWebSocketServer();
        }
        /// 
        /// 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();
            }
        }
        /// 
        /// Disposes the external web socket server.
        /// 
        private void DisposeExternalWebSocketServer()
        {
            if (ExternalWebSocketServer != null)
            {
                _logger.Info("Disposing {0}", ExternalWebSocketServer.GetType().Name);
                ExternalWebSocketServer.Dispose();
            }
        }
        /// 
        /// Handles the ConfigurationUpdated event of the _kernel control.
        /// 
        /// The source of the event.
        /// The  instance containing the event data.
        /// 
        void ConfigurationUpdated(object sender, EventArgs e)
        {
            HttpServer.EnableHttpRequestLogging = ConfigurationManager.Configuration.EnableHttpLevelLogging;
        }
        /// 
        /// Adds the web socket listeners.
        /// 
        /// The listeners.
        public void AddWebSocketListeners(IEnumerable listeners)
        {
            _webSocketListeners.AddRange(listeners);
        }
    }
}