using MediaBrowser.Common.Events;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.System;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Common.Kernel
{
///
/// Represents a shared base kernel for both the Ui and server apps
///
/// The type of the T configuration type.
/// The type of the T application paths type.
public abstract class BaseKernel : IDisposable, IKernel
where TConfigurationType : BaseApplicationConfiguration, new()
where TApplicationPathsType : IApplicationPaths
{
///
/// Occurs when [has pending restart changed].
///
public event EventHandler HasPendingRestartChanged;
#region ConfigurationUpdated Event
///
/// Occurs when [configuration updated].
///
public event EventHandler ConfigurationUpdated;
///
/// Called when [configuration updated].
///
internal void OnConfigurationUpdated()
{
EventHelper.QueueEventIfNotNull(ConfigurationUpdated, this, EventArgs.Empty, Logger);
}
#endregion
#region ReloadBeginning Event
///
/// Fires whenever the kernel begins reloading
///
public event EventHandler ReloadBeginning;
///
/// Called when [reload beginning].
///
private void OnReloadBeginning()
{
EventHelper.QueueEventIfNotNull(ReloadBeginning, this, EventArgs.Empty, Logger);
}
#endregion
#region ReloadCompleted Event
///
/// Fires whenever the kernel completes reloading
///
public event EventHandler ReloadCompleted;
///
/// Called when [reload completed].
///
private void OnReloadCompleted()
{
EventHelper.QueueEventIfNotNull(ReloadCompleted, this, EventArgs.Empty, Logger);
}
#endregion
#region ApplicationUpdated Event
///
/// Occurs when [application updated].
///
public event EventHandler> ApplicationUpdated;
///
/// Called when [application updated].
///
/// The new version.
public void OnApplicationUpdated(Version newVersion)
{
EventHelper.QueueEventIfNotNull(ApplicationUpdated, this, new GenericEventArgs { Argument = newVersion }, Logger);
NotifyPendingRestart();
}
#endregion
///
/// The _configuration loaded
///
private bool _configurationLoaded;
///
/// The _configuration sync lock
///
private object _configurationSyncLock = new object();
///
/// The _configuration
///
private TConfigurationType _configuration;
///
/// Gets the system configuration
///
/// The configuration.
public TConfigurationType Configuration
{
get
{
// Lazy load
LazyInitializer.EnsureInitialized(ref _configuration, ref _configurationLoaded, ref _configurationSyncLock, () => GetXmlConfiguration(ApplicationPaths.SystemConfigurationFilePath));
return _configuration;
}
protected set
{
_configuration = value;
if (value == null)
{
_configurationLoaded = false;
}
}
}
///
/// Gets or sets a value indicating whether this instance has changes that require the entire application to restart.
///
/// true if this instance has pending application restart; otherwise, false.
public bool HasPendingRestart { get; private set; }
///
/// Gets the application paths.
///
/// The application paths.
public TApplicationPathsType ApplicationPaths { get; private set; }
///
/// Gets the list of currently loaded plugins
///
/// The plugins.
public IEnumerable Plugins { get; protected set; }
///
/// Gets the web socket listeners.
///
/// The web socket listeners.
public IEnumerable WebSocketListeners { get; private set; }
///
/// Gets or sets the TCP manager.
///
/// The TCP manager.
public IServerManager ServerManager { get; private set; }
///
/// Gets the UDP server port number.
/// This can't be configurable because then the user would have to configure their client to discover the server.
///
/// The UDP server port number.
public abstract int UdpServerPortNumber { get; }
///
/// Gets the name of the web application that can be used for url building.
/// All api urls will be of the form {protocol}://{host}:{port}/{appname}/...
///
/// The name of the web application.
public string WebApplicationName
{
get { return "mediabrowser"; }
}
///
/// Gets the HTTP server URL prefix.
///
/// The HTTP server URL prefix.
public virtual string HttpServerUrlPrefix
{
get
{
return "http://+:" + Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/";
}
}
///
/// Gets the kernel context. Subclasses will have to override.
///
/// The kernel context.
public abstract KernelContext KernelContext { get; }
///
/// Gets the logger.
///
/// The logger.
protected ILogger Logger { get; private set; }
///
/// Gets or sets the application host.
///
/// The application host.
protected IApplicationHost ApplicationHost { get; private set; }
///
/// The _XML serializer
///
private readonly IXmlSerializer _xmlSerializer;
///
/// Initializes a new instance of the class.
///
/// The app host.
/// The app paths.
/// The XML serializer.
/// The logger.
/// isoManager
protected BaseKernel(IApplicationHost appHost, TApplicationPathsType appPaths, IXmlSerializer xmlSerializer, ILogger logger)
{
ApplicationPaths = appPaths;
ApplicationHost = appHost;
_xmlSerializer = xmlSerializer;
Logger = logger;
}
///
/// Initializes the Kernel
///
/// Task.
public async Task Init()
{
OnReloadBeginning();
await ReloadInternal().ConfigureAwait(false);
OnReloadCompleted();
Logger.Info("Kernel.Reload Complete");
}
///
/// Performs initializations that can be reloaded at anytime
///
/// Task.
protected virtual async Task ReloadInternal()
{
// Set these to null so that they can be lazy loaded again
Configuration = null;
await OnConfigurationLoaded().ConfigureAwait(false);
FindParts();
await OnComposablePartsLoaded().ConfigureAwait(false);
ServerManager = ApplicationHost.Resolve();
ServerManager.Start();
}
///
/// Called when [configuration loaded].
///
/// Task.
protected virtual Task OnConfigurationLoaded()
{
return Task.FromResult