2012-09-07 16:17:39 +00:00
|
|
|
|
using MediaBrowser.Common.Logging;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2012-09-08 14:52:13 +00:00
|
|
|
|
using MediaBrowser.Common.Net.Handlers;
|
2012-09-07 16:17:39 +00:00
|
|
|
|
using MediaBrowser.Common.Plugins;
|
|
|
|
|
using MediaBrowser.Common.Serialization;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Progress;
|
|
|
|
|
using System;
|
2012-07-26 13:51:26 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-07-26 02:33:11 +00:00
|
|
|
|
using System.ComponentModel.Composition;
|
|
|
|
|
using System.ComponentModel.Composition.Hosting;
|
2012-07-21 18:39:47 +00:00
|
|
|
|
using System.IO;
|
2012-07-26 02:33:11 +00:00
|
|
|
|
using System.Linq;
|
2012-07-21 18:39:47 +00:00
|
|
|
|
using System.Reflection;
|
2012-08-19 20:38:31 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Kernel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a shared base kernel for both the UI and server apps
|
|
|
|
|
/// </summary>
|
2012-08-19 22:47:02 +00:00
|
|
|
|
public abstract class BaseKernel<TConfigurationType, TApplicationPathsType> : IDisposable, IKernel
|
2012-07-29 15:19:25 +00:00
|
|
|
|
where TConfigurationType : BaseApplicationConfiguration, new()
|
2012-08-18 20:38:02 +00:00
|
|
|
|
where TApplicationPathsType : BaseApplicationPaths, new()
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the current configuration
|
|
|
|
|
/// </summary>
|
2012-07-26 02:33:11 +00:00
|
|
|
|
public TConfigurationType Configuration { get; private set; }
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
2012-08-18 20:38:02 +00:00
|
|
|
|
public TApplicationPathsType ApplicationPaths { get; private set; }
|
|
|
|
|
|
2012-07-26 02:33:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the list of currently loaded plugins
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ImportMany(typeof(BasePlugin))]
|
|
|
|
|
public IEnumerable<BasePlugin> Plugins { get; private set; }
|
2012-07-26 13:51:26 +00:00
|
|
|
|
|
2012-09-08 14:52:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the list of currently registered http handlers
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ImportMany(typeof(BaseHandler))]
|
|
|
|
|
private IEnumerable<BaseHandler> HttpHandlers { get; set; }
|
|
|
|
|
|
2012-07-21 18:39:47 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public HttpServer HttpServer { get; private set; }
|
|
|
|
|
|
2012-09-08 14:52:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This subscribes to HttpListener requests and finds the appropate BaseHandler to process it
|
|
|
|
|
/// </summary>
|
|
|
|
|
private IDisposable HttpListener { get; set; }
|
|
|
|
|
|
2012-09-02 17:34:12 +00:00
|
|
|
|
protected virtual string HttpServerUrlPrefix
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return "http://+:" + Configuration.HttpServerPortNumber + "/mediabrowser/";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-21 18:39:47 +00:00
|
|
|
|
/// <summary>
|
2012-09-03 16:40:35 +00:00
|
|
|
|
/// Gets the kernel context. Subclasses will have to override.
|
2012-07-21 18:39:47 +00:00
|
|
|
|
/// </summary>
|
2012-09-03 16:40:35 +00:00
|
|
|
|
public abstract KernelContext KernelContext { get; }
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
|
|
|
|
public BaseKernel()
|
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
ApplicationPaths = new TApplicationPathsType();
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
public virtual async Task Init(IProgress<TaskProgress> progress)
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
2012-09-03 19:12:02 +00:00
|
|
|
|
ReloadLogger();
|
2012-07-30 13:44:28 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
progress.Report(new TaskProgress() { Description = "Loading configuration", PercentComplete = 0 });
|
|
|
|
|
ReloadConfiguration();
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
progress.Report(new TaskProgress() { Description = "Starting Http server", PercentComplete = 5 });
|
|
|
|
|
ReloadHttpServer();
|
2012-07-31 03:38:00 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
progress.Report(new TaskProgress() { Description = "Loading Plugins", PercentComplete = 10 });
|
|
|
|
|
await ReloadComposableParts().ConfigureAwait(false);
|
2012-07-26 02:33:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:13:44 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the path to the current log file
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string LogFilePath { get; set; }
|
|
|
|
|
|
2012-07-30 13:44:28 +00:00
|
|
|
|
private void ReloadLogger()
|
|
|
|
|
{
|
|
|
|
|
DisposeLogger();
|
2012-07-31 03:38:00 +00:00
|
|
|
|
|
2012-07-30 13:44:28 +00:00
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
|
|
2012-09-02 00:36:42 +00:00
|
|
|
|
LogFilePath = Path.Combine(ApplicationPaths.LogDirectoryPath, "log-" + now.ToString("dMyyyy") + "-" + now.Ticks + ".log");
|
2012-07-30 13:44:28 +00:00
|
|
|
|
|
2012-07-31 03:38:00 +00:00
|
|
|
|
FileStream fs = new FileStream(LogFilePath, FileMode.Append, FileAccess.Write, FileShare.Read);
|
|
|
|
|
|
2012-07-30 13:44:28 +00:00
|
|
|
|
Logger.LoggerInstance = new StreamLogger(fs);
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-26 13:51:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Uses MEF to locate plugins
|
|
|
|
|
/// Subclasses can use this to locate types within plugins
|
|
|
|
|
/// </summary>
|
2012-09-03 19:12:02 +00:00
|
|
|
|
protected virtual Task ReloadComposableParts()
|
2012-07-26 02:33:11 +00:00
|
|
|
|
{
|
2012-09-03 19:12:02 +00:00
|
|
|
|
return Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
DisposeComposableParts();
|
2012-09-02 13:45:02 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
var container = GetCompositionContainer(includeCurrentAssembly: true);
|
|
|
|
|
|
|
|
|
|
container.ComposeParts(this);
|
|
|
|
|
|
|
|
|
|
OnComposablePartsLoaded();
|
|
|
|
|
|
|
|
|
|
container.Catalog.Dispose();
|
|
|
|
|
container.Dispose();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CompositionContainer GetCompositionContainer(bool includeCurrentAssembly = false)
|
|
|
|
|
{
|
2012-07-26 17:00:53 +00:00
|
|
|
|
// Gets all plugin assemblies by first reading all bytes of the .dll and calling Assembly.Load against that
|
|
|
|
|
// This will prevent the .dll file from getting locked, and allow us to replace it when needed
|
2012-09-03 16:40:35 +00:00
|
|
|
|
IEnumerable<Assembly> pluginAssemblies = Directory.GetFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly).Select(f => Assembly.Load(File.ReadAllBytes((f))));
|
2012-07-26 02:33:11 +00:00
|
|
|
|
|
2012-07-26 17:00:53 +00:00
|
|
|
|
var catalog = new AggregateCatalog(pluginAssemblies.Select(a => new AssemblyCatalog(a)));
|
2012-09-02 13:45:02 +00:00
|
|
|
|
|
2012-08-20 15:55:05 +00:00
|
|
|
|
// Include composable parts in the Common assembly
|
|
|
|
|
// Uncomment this if it's ever needed
|
2012-07-26 02:33:11 +00:00
|
|
|
|
//catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
|
2012-09-02 13:45:02 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
if (includeCurrentAssembly)
|
|
|
|
|
{
|
|
|
|
|
// Include composable parts in the subclass assembly
|
|
|
|
|
catalog.Catalogs.Add(new AssemblyCatalog(GetType().Assembly));
|
|
|
|
|
}
|
2012-07-26 13:51:26 +00:00
|
|
|
|
|
2012-09-03 19:12:02 +00:00
|
|
|
|
return new CompositionContainer(catalog);
|
2012-07-26 02:33:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-26 13:51:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fires after MEF finishes finding composable parts within plugin assemblies
|
|
|
|
|
/// </summary>
|
2012-07-26 02:33:11 +00:00
|
|
|
|
protected virtual void OnComposablePartsLoaded()
|
|
|
|
|
{
|
|
|
|
|
StartPlugins();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-26 13:51:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes all plugins
|
|
|
|
|
/// </summary>
|
2012-07-26 02:33:11 +00:00
|
|
|
|
private void StartPlugins()
|
|
|
|
|
{
|
2012-07-26 13:51:26 +00:00
|
|
|
|
foreach (BasePlugin plugin in Plugins)
|
2012-07-26 02:33:11 +00:00
|
|
|
|
{
|
2012-09-03 16:40:35 +00:00
|
|
|
|
plugin.Initialize(this);
|
2012-07-26 13:51:26 +00:00
|
|
|
|
}
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-07-26 13:51:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reloads application configuration from the config file
|
|
|
|
|
/// </summary>
|
2012-08-01 19:09:24 +00:00
|
|
|
|
protected virtual void ReloadConfiguration()
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
2012-08-02 03:13:44 +00:00
|
|
|
|
//Configuration information for anything other than server-specific configuration will have to come via the API... -ebr
|
|
|
|
|
|
2012-08-02 12:51:43 +00:00
|
|
|
|
// Deserialize config
|
2012-08-18 20:38:02 +00:00
|
|
|
|
if (!File.Exists(ApplicationPaths.SystemConfigurationFilePath))
|
2012-08-02 12:51:43 +00:00
|
|
|
|
{
|
|
|
|
|
Configuration = new TConfigurationType();
|
2012-09-03 21:56:30 +00:00
|
|
|
|
XmlSerializer.SerializeToFile(Configuration, ApplicationPaths.SystemConfigurationFilePath);
|
2012-08-02 12:51:43 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
Configuration = XmlSerializer.DeserializeFromFile<TConfigurationType>(ApplicationPaths.SystemConfigurationFilePath);
|
2012-08-02 12:51:43 +00:00
|
|
|
|
}
|
2012-07-26 02:33:11 +00:00
|
|
|
|
|
2012-09-02 13:45:02 +00:00
|
|
|
|
Logger.LoggerInstance.LogSeverity = Configuration.EnableDebugLevelLogging ? LogSeverity.Debug : LogSeverity.Info;
|
2012-08-02 12:51:43 +00:00
|
|
|
|
}
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
2012-07-26 13:51:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restarts the Http Server, or starts it if not currently running
|
|
|
|
|
/// </summary>
|
2012-07-21 18:39:47 +00:00
|
|
|
|
private void ReloadHttpServer()
|
2012-07-30 04:06:05 +00:00
|
|
|
|
{
|
|
|
|
|
DisposeHttpServer();
|
|
|
|
|
|
2012-09-02 17:34:12 +00:00
|
|
|
|
HttpServer = new HttpServer(HttpServerUrlPrefix);
|
2012-09-08 14:52:13 +00:00
|
|
|
|
|
|
|
|
|
HttpListener = HttpServer.Subscribe((ctx) =>
|
|
|
|
|
{
|
|
|
|
|
BaseHandler handler = HttpHandlers.FirstOrDefault(h => h.HandlesRequest(ctx.Request));
|
|
|
|
|
|
|
|
|
|
// Find the appropiate http handler
|
|
|
|
|
if (handler != null)
|
|
|
|
|
{
|
|
|
|
|
// Need to create a new instance because handlers are currently stateful
|
|
|
|
|
handler = Activator.CreateInstance(handler.GetType()) as BaseHandler;
|
|
|
|
|
|
|
|
|
|
// No need to await this, despite the compiler warning
|
|
|
|
|
handler.ProcessRequest(ctx);
|
|
|
|
|
}
|
|
|
|
|
});
|
2012-07-30 04:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 19:03:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes all resources currently in use.
|
|
|
|
|
/// </summary>
|
2012-08-01 19:09:24 +00:00
|
|
|
|
public virtual void Dispose()
|
2012-07-30 04:06:05 +00:00
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
DisposeComposableParts();
|
2012-07-30 04:06:05 +00:00
|
|
|
|
DisposeHttpServer();
|
2012-07-30 13:44:28 +00:00
|
|
|
|
DisposeLogger();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-19 20:38:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes all objects gathered through MEF composable parts
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual void DisposeComposableParts()
|
|
|
|
|
{
|
|
|
|
|
DisposePlugins();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes all plugins
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void DisposePlugins()
|
|
|
|
|
{
|
|
|
|
|
if (Plugins != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (BasePlugin plugin in Plugins)
|
|
|
|
|
{
|
|
|
|
|
plugin.Dispose();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 19:03:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes the current HttpServer
|
|
|
|
|
/// </summary>
|
2012-07-30 13:44:28 +00:00
|
|
|
|
private void DisposeHttpServer()
|
|
|
|
|
{
|
|
|
|
|
if (HttpServer != null)
|
|
|
|
|
{
|
|
|
|
|
HttpServer.Dispose();
|
|
|
|
|
}
|
2012-09-08 14:52:13 +00:00
|
|
|
|
|
|
|
|
|
if (HttpListener != null)
|
|
|
|
|
{
|
|
|
|
|
HttpListener.Dispose();
|
|
|
|
|
}
|
2012-07-30 13:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 19:03:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes the current Logger instance
|
|
|
|
|
/// </summary>
|
2012-07-30 13:44:28 +00:00
|
|
|
|
private void DisposeLogger()
|
|
|
|
|
{
|
|
|
|
|
if (Logger.LoggerInstance != null)
|
|
|
|
|
{
|
|
|
|
|
Logger.LoggerInstance.Dispose();
|
|
|
|
|
}
|
2012-07-30 04:06:05 +00:00
|
|
|
|
}
|
2012-08-19 21:29:15 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the current application version
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Version ApplicationVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return GetType().Assembly.GetName().Version;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-03 16:40:35 +00:00
|
|
|
|
|
|
|
|
|
BaseApplicationPaths IKernel.ApplicationPaths
|
|
|
|
|
{
|
|
|
|
|
get { return ApplicationPaths; }
|
|
|
|
|
}
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|
2012-08-19 22:47:02 +00:00
|
|
|
|
|
|
|
|
|
public interface IKernel
|
|
|
|
|
{
|
2012-09-03 16:40:35 +00:00
|
|
|
|
BaseApplicationPaths ApplicationPaths { get; }
|
|
|
|
|
KernelContext KernelContext { get; }
|
|
|
|
|
|
2012-08-19 22:47:02 +00:00
|
|
|
|
Task Init(IProgress<TaskProgress> progress);
|
|
|
|
|
void Dispose();
|
|
|
|
|
}
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|