PowerToys/Wox.Core/Plugin/CSharpPluginLoader.cs

50 lines
1.8 KiB
C#
Raw Normal View History

2014-12-26 19:36:43 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
2015-11-09 09:32:33 +08:00
using Wox.Infrastructure.Exception;
2014-12-26 19:36:43 +08:00
using Wox.Infrastructure.Logger;
using Wox.Plugin;
namespace Wox.Core.Plugin
{
internal class CSharpPluginLoader : IPluginLoader
{
public IEnumerable<PluginPair> LoadPlugin(List<PluginMetadata> pluginMetadatas)
{
var plugins = new List<PluginPair>();
List<PluginMetadata> CSharpPluginMetadatas = pluginMetadatas.Where(o => o.Language.ToUpper() == AllowedLanguage.CSharp.ToUpper()).ToList();
foreach (PluginMetadata metadata in CSharpPluginMetadatas)
{
try
{
Assembly asm = Assembly.Load(AssemblyName.GetAssemblyName(metadata.ExecuteFilePath));
List<Type> types = asm.GetTypes().Where(o => o.IsClass && !o.IsAbstract && o.GetInterfaces().Contains(typeof(IPlugin))).ToList();
2014-12-26 19:36:43 +08:00
if (types.Count == 0)
{
Log.Warn($"Couldn't load plugin {metadata.Name}: didn't find the class that implement IPlugin");
2014-12-26 19:36:43 +08:00
continue;
}
foreach (Type type in types)
{
2016-01-07 05:34:42 +08:00
PluginPair pair = new PluginPair
2014-12-26 19:36:43 +08:00
{
Plugin = Activator.CreateInstance(type) as IPlugin,
Metadata = metadata
};
plugins.Add(pair);
}
}
2016-01-07 05:34:42 +08:00
catch (Exception e)
2014-12-26 19:36:43 +08:00
{
Log.Error(new WoxPluginException(metadata.Name, $"Couldn't load plugin", e));
2014-12-26 19:36:43 +08:00
}
}
return plugins;
}
}
}