using MediaBrowser.Common.Events;
using MediaBrowser.Common.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Common.ScheduledTasks;
using MediaBrowser.Common.Serialization;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.System;
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.ComponentModel.Composition.Primitives;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
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 : BaseApplicationPaths, new()
{
///
/// 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);
// Notify connected clients
TcpManager.SendWebSocketMessage("ConfigurationUpdated", Configuration);
}
#endregion
#region LoggerLoaded Event
///
/// Fires whenever the logger is loaded
///
public event EventHandler LoggerLoaded;
///
/// Called when [logger loaded].
///
private void OnLoggerLoaded()
{
EventHelper.QueueEventIfNotNull(LoggerLoaded, 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, () => XmlSerializer.GetXmlConfiguration(ApplicationPaths.SystemConfigurationFilePath, Logger));
return _configuration;
}
protected set
{
_configuration = value;
if (value == null)
{
_configurationLoaded = false;
}
}
}
///
/// Gets a value indicating whether this instance is first run.
///
/// true if this instance is first run; otherwise, false.
public bool IsFirstRun { get; private set; }
///
/// 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; }
///
/// The _failed assembly loads
///
private readonly List _failedPluginAssemblies = new List();
///
/// Gets the plugin assemblies that failed to load.
///
/// The failed assembly loads.
public IEnumerable FailedPluginAssemblies
{
get { return _failedPluginAssemblies; }
}
///
/// Gets the list of currently loaded plugins
///
/// The plugins.
[ImportMany(typeof(IPlugin))]
public IEnumerable Plugins { get; protected set; }
///
/// Gets the list of Scheduled Tasks
///
/// The scheduled tasks.
[ImportMany(typeof(IScheduledTask))]
public IEnumerable ScheduledTasks { get; private set; }
///
/// Gets the web socket listeners.
///
/// The web socket listeners.
public IEnumerable WebSocketListeners { get; private set; }
///
/// Gets the MEF CompositionContainer
///
/// The composition container.
private CompositionContainer CompositionContainer { get; set; }
///
/// The _HTTP manager
///
/// The HTTP manager.
public HttpManager HttpManager { get; private set; }
///
/// Gets or sets the TCP manager.
///
/// The TCP manager.
public TcpManager TcpManager { get; private set; }
///
/// Gets the task manager.
///
/// The task manager.
public TaskManager TaskManager { get; private set; }
///
/// Gets the rest services.
///
/// The rest services.
public IEnumerable RestServices { get; private set; }
///
/// The disposable parts
///
private readonly List _disposableParts = new List();
///
/// The _protobuf serializer initialized
///
private bool _protobufSerializerInitialized;
///
/// The _protobuf serializer sync lock
///
private object _protobufSerializerSyncLock = new object();
///
/// Gets a dynamically compiled generated serializer that can serialize protocontracts without reflection
///
private DynamicProtobufSerializer _protobufSerializer;
///
/// Gets the protobuf serializer.
///
/// The protobuf serializer.
public DynamicProtobufSerializer ProtobufSerializer
{
get
{
// Lazy load
LazyInitializer.EnsureInitialized(ref _protobufSerializer, ref _protobufSerializerInitialized, ref _protobufSerializerSyncLock, () => DynamicProtobufSerializer.Create(AllTypes));
return _protobufSerializer;
}
private set
{
_protobufSerializer = value;
if (value == null)
{
_protobufSerializerInitialized = false;
}
}
}
///
/// 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 log file path.
///
/// The log file path.
public string LogFilePath
{
get { return ApplicationHost.LogFilePath; }
}
///
/// 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; }
///
/// Gets the assemblies.
///
/// The assemblies.
public Assembly[] Assemblies { get; private set; }
///
/// Gets all types.
///
/// All types.
public Type[] AllTypes { get; private set; }
///
/// Initializes a new instance of the class.
///
/// The app host.
/// The logger.
/// isoManager
protected BaseKernel(IApplicationHost appHost, ILogger logger)
{
if (appHost == null)
{
throw new ArgumentNullException("appHost");
}
if (logger == null)
{
throw new ArgumentNullException("logger");
}
ApplicationHost = appHost;
Logger = logger;
}
///
/// Initializes the Kernel
///
/// Task.
public async Task Init()
{
ApplicationPaths = new TApplicationPathsType();
IsFirstRun = !File.Exists(ApplicationPaths.SystemConfigurationFilePath);
// Performs initializations that can be reloaded at anytime
await Reload().ConfigureAwait(false);
}
///
/// Performs initializations that can be reloaded at anytime
///
/// Task.
public async Task Reload()
{
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;
ProtobufSerializer = null;
ReloadLogger();
Logger.Info("Version {0} initializing", ApplicationVersion);
DisposeHttpManager();
HttpManager = new HttpManager(this, Logger);
await OnConfigurationLoaded().ConfigureAwait(false);
DisposeTaskManager();
TaskManager = new TaskManager(this, Logger);
Logger.Info("Loading Plugins");
await ReloadComposableParts().ConfigureAwait(false);
DisposeTcpManager();
TcpManager = new TcpManager(ApplicationHost, this, Logger);
}
///
/// Called when [configuration loaded].
///
/// Task.
protected virtual Task OnConfigurationLoaded()
{
return Task.FromResult