123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- using MediaBrowser.Common.Logging;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Common.Net.Handlers;
- using MediaBrowser.Common.Plugins;
- using MediaBrowser.Common.Serialization;
- using MediaBrowser.Model.Configuration;
- using MediaBrowser.Model.Progress;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.Composition;
- using System.ComponentModel.Composition.Hosting;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using System.Threading.Tasks;
- namespace MediaBrowser.Common.Kernel
- {
- /// <summary>
- /// Represents a shared base kernel for both the UI and server apps
- /// </summary>
- public abstract class BaseKernel<TConfigurationType, TApplicationPathsType> : IDisposable, IKernel
- where TConfigurationType : BaseApplicationConfiguration, new()
- where TApplicationPathsType : BaseApplicationPaths, new()
- {
- /// <summary>
- /// Gets the current configuration
- /// </summary>
- public TConfigurationType Configuration { get; private set; }
- public TApplicationPathsType ApplicationPaths { get; private set; }
- /// <summary>
- /// Gets the list of currently loaded plugins
- /// </summary>
- [ImportMany(typeof(BasePlugin))]
- public IEnumerable<BasePlugin> Plugins { get; private set; }
- /// <summary>
- /// Gets the list of currently registered http handlers
- /// </summary>
- [ImportMany(typeof(BaseHandler))]
- private IEnumerable<BaseHandler> HttpHandlers { get; set; }
- /// <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; }
- /// <summary>
- /// This subscribes to HttpListener requests and finds the appropate BaseHandler to process it
- /// </summary>
- private IDisposable HttpListener { get; set; }
- protected virtual string HttpServerUrlPrefix
- {
- get
- {
- return "http://+:" + Configuration.HttpServerPortNumber + "/mediabrowser/";
- }
- }
- /// <summary>
- /// Gets the kernel context. Subclasses will have to override.
- /// </summary>
- public abstract KernelContext KernelContext { get; }
- public BaseKernel()
- {
- ApplicationPaths = new TApplicationPathsType();
- }
- public virtual async Task Init(IProgress<TaskProgress> progress)
- {
- ReloadLogger();
- progress.Report(new TaskProgress() { Description = "Loading configuration", PercentComplete = 0 });
- ReloadConfiguration();
- progress.Report(new TaskProgress() { Description = "Starting Http server", PercentComplete = 5 });
- ReloadHttpServer();
- progress.Report(new TaskProgress() { Description = "Loading Plugins", PercentComplete = 10 });
- await ReloadComposableParts().ConfigureAwait(false);
- }
- /// <summary>
- /// Gets or sets the path to the current log file
- /// </summary>
- public static string LogFilePath { get; set; }
- private void ReloadLogger()
- {
- DisposeLogger();
- DateTime now = DateTime.Now;
- LogFilePath = Path.Combine(ApplicationPaths.LogDirectoryPath, "log-" + now.ToString("dMyyyy") + "-" + now.Ticks + ".log");
- FileStream fs = new FileStream(LogFilePath, FileMode.Append, FileAccess.Write, FileShare.Read);
- Logger.LoggerInstance = new StreamLogger(fs);
- }
- /// <summary>
- /// Uses MEF to locate plugins
- /// Subclasses can use this to locate types within plugins
- /// </summary>
- protected virtual Task ReloadComposableParts()
- {
- return Task.Run(() =>
- {
- DisposeComposableParts();
- var container = GetCompositionContainer(includeCurrentAssembly: true);
- container.ComposeParts(this);
- OnComposablePartsLoaded();
- container.Catalog.Dispose();
- container.Dispose();
- });
- }
- public CompositionContainer GetCompositionContainer(bool includeCurrentAssembly = false)
- {
- // 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
- IEnumerable<Assembly> pluginAssemblies = Directory.GetFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly).Select(f => Assembly.Load(File.ReadAllBytes((f))));
- var catalog = new AggregateCatalog(pluginAssemblies.Select(a => new AssemblyCatalog(a)));
- // Include composable parts in the Common assembly
- // Uncomment this if it's ever needed
- //catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
- if (includeCurrentAssembly)
- {
- // Include composable parts in the subclass assembly
- catalog.Catalogs.Add(new AssemblyCatalog(GetType().Assembly));
- }
- return new CompositionContainer(catalog);
- }
- /// <summary>
- /// Fires after MEF finishes finding composable parts within plugin assemblies
- /// </summary>
- protected virtual void OnComposablePartsLoaded()
- {
- // This event handler will allow any plugin to reference another
- AppDomain.CurrentDomain.AssemblyResolve -= new ResolveEventHandler(CurrentDomain_AssemblyResolve);
- AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
- StartPlugins();
- }
- /// <summary>
- /// Initializes all plugins
- /// </summary>
- private void StartPlugins()
- {
- foreach (BasePlugin plugin in Plugins)
- {
- plugin.Initialize(this);
- }
- }
- /// <summary>
- /// Reloads application configuration from the config file
- /// </summary>
- protected virtual void ReloadConfiguration()
- {
- //Configuration information for anything other than server-specific configuration will have to come via the API... -ebr
- // Deserialize config
- if (!File.Exists(ApplicationPaths.SystemConfigurationFilePath))
- {
- Configuration = new TConfigurationType();
- XmlSerializer.SerializeToFile(Configuration, ApplicationPaths.SystemConfigurationFilePath);
- }
- else
- {
- Configuration = XmlSerializer.DeserializeFromFile<TConfigurationType>(ApplicationPaths.SystemConfigurationFilePath);
- }
- Logger.LoggerInstance.LogSeverity = Configuration.EnableDebugLevelLogging ? LogSeverity.Debug : LogSeverity.Info;
- }
- /// <summary>
- /// Restarts the Http Server, or starts it if not currently running
- /// </summary>
- private void ReloadHttpServer()
- {
- DisposeHttpServer();
- HttpServer = new HttpServer(HttpServerUrlPrefix);
- 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);
- }
- });
- }
- /// <summary>
- /// This snippet will allow any plugin to reference another
- /// </summary>
- Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
- {
- AssemblyName assemblyName = new AssemblyName(args.Name);
- // Look for the .dll recursively within the plugins directory
- string dll = Directory.GetFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.AllDirectories)
- .FirstOrDefault(f => Path.GetFileNameWithoutExtension(f) == assemblyName.Name);
- // If we found a matching assembly, load it now
- if (!string.IsNullOrEmpty(dll))
- {
- return Assembly.Load(File.ReadAllBytes(dll));
- }
- return null;
- }
- /// <summary>
- /// Disposes all resources currently in use.
- /// </summary>
- public virtual void Dispose()
- {
- DisposeComposableParts();
- DisposeHttpServer();
- DisposeLogger();
- }
- /// <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();
- }
- }
- }
- /// <summary>
- /// Disposes the current HttpServer
- /// </summary>
- private void DisposeHttpServer()
- {
- if (HttpServer != null)
- {
- HttpServer.Dispose();
- }
- if (HttpListener != null)
- {
- HttpListener.Dispose();
- }
- }
- /// <summary>
- /// Disposes the current Logger instance
- /// </summary>
- private void DisposeLogger()
- {
- if (Logger.LoggerInstance != null)
- {
- Logger.LoggerInstance.Dispose();
- }
- }
- /// <summary>
- /// Gets the current application version
- /// </summary>
- public Version ApplicationVersion
- {
- get
- {
- return GetType().Assembly.GetName().Version;
- }
- }
- BaseApplicationPaths IKernel.ApplicationPaths
- {
- get { return ApplicationPaths; }
- }
- }
- public interface IKernel
- {
- BaseApplicationPaths ApplicationPaths { get; }
- KernelContext KernelContext { get; }
- Task Init(IProgress<TaskProgress> progress);
- void Dispose();
- }
- }
|