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