mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
minor tweaks to mef composable parts
This commit is contained in:
parent
97ee9fed14
commit
8d0fede236
@ -1,11 +1,11 @@
|
|||||||
using System.Collections.Generic;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.Composition;
|
using System.ComponentModel.Composition;
|
||||||
using System.ComponentModel.Composition.Hosting;
|
using System.ComponentModel.Composition.Hosting;
|
||||||
using System.Configuration;
|
using System.Configuration;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using MediaBrowser.Common.Configuration;
|
using MediaBrowser.Common.Configuration;
|
||||||
using MediaBrowser.Common.Json;
|
using MediaBrowser.Common.Json;
|
||||||
using MediaBrowser.Common.Logging;
|
using MediaBrowser.Common.Logging;
|
||||||
@ -25,6 +25,9 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string ProgramDataPath { get; private set; }
|
public string ProgramDataPath { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the path to the plugin directory
|
||||||
|
/// </summary>
|
||||||
protected string PluginsPath
|
protected string PluginsPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -33,6 +36,9 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the path to the application configuration file
|
||||||
|
/// </summary>
|
||||||
protected string ConfigurationPath
|
protected string ConfigurationPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -51,7 +57,7 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[ImportMany(typeof(BasePlugin))]
|
[ImportMany(typeof(BasePlugin))]
|
||||||
public IEnumerable<BasePlugin> Plugins { get; private set; }
|
public IEnumerable<BasePlugin> Plugins { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Both the UI and server will have a built-in HttpServer.
|
/// 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.
|
/// People will inevitably want remote control apps so it's needed in the UI too.
|
||||||
@ -79,34 +85,51 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
ReloadComposableParts();
|
ReloadComposableParts();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Uses MEF to locate plugins
|
||||||
|
/// Subclasses can use this to locate types within plugins
|
||||||
|
/// </summary>
|
||||||
protected void ReloadComposableParts()
|
protected void ReloadComposableParts()
|
||||||
{
|
{
|
||||||
if (!Directory.Exists(PluginsPath))
|
if (!Directory.Exists(PluginsPath))
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(PluginsPath);
|
Directory.CreateDirectory(PluginsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
var catalog = new AggregateCatalog(Directory.GetDirectories(PluginsPath, "*", SearchOption.TopDirectoryOnly).Select(f => new DirectoryCatalog(f)));
|
var catalog = new AggregateCatalog(Directory.GetDirectories(PluginsPath, "*", SearchOption.TopDirectoryOnly).Select(f => new DirectoryCatalog(f)));
|
||||||
|
|
||||||
//catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
|
//catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
|
||||||
//catalog.Catalogs.Add(new AssemblyCatalog(GetType().Assembly));
|
//catalog.Catalogs.Add(new AssemblyCatalog(GetType().Assembly));
|
||||||
|
|
||||||
new CompositionContainer(catalog).ComposeParts(this);
|
var container = new CompositionContainer(catalog);
|
||||||
|
|
||||||
|
container.ComposeParts(this);
|
||||||
|
|
||||||
OnComposablePartsLoaded();
|
OnComposablePartsLoaded();
|
||||||
|
|
||||||
|
catalog.Dispose();
|
||||||
|
container.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Fires after MEF finishes finding composable parts within plugin assemblies
|
||||||
|
/// </summary>
|
||||||
protected virtual void OnComposablePartsLoaded()
|
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();
|
StartPlugins();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes all plugins
|
||||||
|
/// </summary>
|
||||||
private void StartPlugins()
|
private void StartPlugins()
|
||||||
{
|
{
|
||||||
Parallel.For(0, Plugins.Count(), i =>
|
foreach (BasePlugin plugin in Plugins)
|
||||||
{
|
{
|
||||||
var plugin = Plugins.ElementAt(i);
|
|
||||||
|
|
||||||
plugin.ReloadConfiguration();
|
plugin.ReloadConfiguration();
|
||||||
|
|
||||||
if (plugin.Enabled)
|
if (plugin.Enabled)
|
||||||
@ -120,7 +143,7 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
plugin.InitInUI();
|
plugin.InitInUI();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -149,6 +172,9 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
return programDataPath;
|
return programDataPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reloads application configuration from the config file
|
||||||
|
/// </summary>
|
||||||
private void ReloadConfiguration()
|
private void ReloadConfiguration()
|
||||||
{
|
{
|
||||||
// Deserialize config
|
// Deserialize config
|
||||||
@ -164,11 +190,17 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
Logger.LoggerInstance.LogSeverity = Configuration.LogSeverity;
|
Logger.LoggerInstance.LogSeverity = Configuration.LogSeverity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Saves the current application configuration to the config file
|
||||||
|
/// </summary>
|
||||||
public void SaveConfiguration()
|
public void SaveConfiguration()
|
||||||
{
|
{
|
||||||
JsonSerializer.SerializeToFile(Configuration, ConfigurationPath);
|
JsonSerializer.SerializeToFile(Configuration, ConfigurationPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Restarts the Http Server, or starts it if not currently running
|
||||||
|
/// </summary>
|
||||||
private void ReloadHttpServer()
|
private void ReloadHttpServer()
|
||||||
{
|
{
|
||||||
if (HttpServer != null)
|
if (HttpServer != null)
|
||||||
@ -179,16 +211,24 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
HttpServer = new HttpServer("http://+:" + Configuration.HttpServerPortNumber + "/mediabrowser/");
|
HttpServer = new HttpServer("http://+:" + Configuration.HttpServerPortNumber + "/mediabrowser/");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static TConfigurationType GetConfiguration(string directory)
|
/// <summary>
|
||||||
|
/// This snippet will allow any plugin to reference another
|
||||||
|
/// </summary>
|
||||||
|
Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
|
||||||
{
|
{
|
||||||
string file = Path.Combine(directory, "config.js");
|
AssemblyName assemblyName = new AssemblyName(args.Name);
|
||||||
|
|
||||||
if (!File.Exists(file))
|
// Look for the .dll recursively within the plugins directory
|
||||||
|
string dll = Directory.GetFiles(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 new TConfigurationType();
|
return Assembly.Load(File.ReadAllBytes(dll));
|
||||||
}
|
}
|
||||||
|
|
||||||
return JsonSerializer.DeserializeFromFile<TConfigurationType>(file);
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ namespace MediaBrowser.Controller
|
|||||||
|
|
||||||
EntityResolvers = resolvers;
|
EntityResolvers = resolvers;
|
||||||
|
|
||||||
// The base class will fire up all the plugins
|
// The base class will start up all the plugins
|
||||||
base.OnComposablePartsLoaded();
|
base.OnComposablePartsLoaded();
|
||||||
|
|
||||||
// Get users from users folder
|
// Get users from users folder
|
||||||
|
@ -10,9 +10,5 @@ namespace MediaBrowser.InternetProviders
|
|||||||
{
|
{
|
||||||
get { return "Internet Providers"; }
|
get { return "Internet Providers"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void InitInServer()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user