PowerToys/WinAlfred/PluginLoader/Plugins.cs

57 lines
2.0 KiB
C#
Raw Normal View History

2014-01-03 18:16:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-03 23:52:36 +08:00
using System.Threading;
2014-01-12 18:15:30 +08:00
using Microsoft.CSharp;
2014-01-03 18:16:05 +08:00
using WinAlfred.Plugin;
namespace WinAlfred.PluginLoader
{
public static class Plugins
{
private static List<PluginPair> plugins = new List<PluginPair>();
public static void Init()
2014-01-03 18:16:05 +08:00
{
plugins.Clear();
2014-01-12 18:15:30 +08:00
BasePluginLoader.ParsePluginsConfig();
2014-01-03 18:16:05 +08:00
plugins.AddRange(new PythonPluginLoader().LoadPlugin());
plugins.AddRange(new CSharpPluginLoader().LoadPlugin());
2014-01-03 23:52:36 +08:00
foreach (IPlugin plugin in plugins.Select(pluginPair => pluginPair.Plugin))
{
IPlugin plugin1 = plugin;
2014-01-25 00:21:16 +08:00
PluginPair pluginPair = plugins.FirstOrDefault(o => o.Plugin == plugin1);
if (pluginPair != null)
2014-01-03 23:52:36 +08:00
{
2014-01-25 00:21:16 +08:00
PluginMetadata metadata = pluginPair.Metadata;
ThreadPool.QueueUserWorkItem(o => plugin1.Init(new PluginInitContext()
{
Plugins = plugins,
PluginMetadata = metadata,
ChangeQuery = s => App.Window.ChangeQuery(s),
CloseApp = App.Window.CloseApp,
HideApp = App.Window.HideApp,
ShowApp = () => App.Window.ShowApp(),
ShowMsg = (title, subTitle, iconPath) => App.Window.ShowMsg(title, subTitle, iconPath),
OpenSettingDialog = () => App.Window.OpenSettingDialog()
2014-01-25 00:21:16 +08:00
}));
}
2014-01-03 23:52:36 +08:00
}
2014-01-03 18:16:05 +08:00
}
public static List<PluginPair> AllPlugins
{
get { return plugins; }
}
2014-01-07 23:27:05 +08:00
public static bool HitThirdpartyKeyword(Query query)
{
if (string.IsNullOrEmpty(query.ActionName)) return false;
return plugins.Any(o => o.Metadata.PluginType == PluginType.ThirdParty && o.Metadata.ActionKeyword == query.ActionName);
}
2014-01-03 18:16:05 +08:00
}
}