2014-01-03 18:16:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2014-03-13 22:31:44 +08:00
|
|
|
|
using Wox.Helper;
|
2014-07-18 20:00:55 +08:00
|
|
|
|
using Wox.Infrastructure.Storage.UserSettings;
|
2014-01-29 18:33:24 +08:00
|
|
|
|
using Wox.Plugin;
|
2014-01-03 18:16:05 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
namespace Wox.PluginLoader
|
|
|
|
|
{
|
|
|
|
|
public static class Plugins
|
|
|
|
|
{
|
|
|
|
|
public static String DebuggerMode { get; private set; }
|
|
|
|
|
private static List<PluginPair> plugins = new List<PluginPair>();
|
2014-01-03 18:16:05 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
public static void Init()
|
|
|
|
|
{
|
|
|
|
|
plugins.Clear();
|
2014-07-06 22:57:11 +08:00
|
|
|
|
List<PluginMetadata> pluginMetadatas = PluginConfigLoader.ParsePluginsConfig();
|
2014-03-25 17:08:35 +08:00
|
|
|
|
|
2014-07-09 18:15:23 +08:00
|
|
|
|
plugins.AddRange(new CSharpPluginLoader().LoadPlugin(pluginMetadatas));
|
|
|
|
|
plugins.AddRange(new BasePluginLoader<PythonPlugin>().LoadPlugin(pluginMetadatas));
|
2014-01-12 18:15:30 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
Forker forker = new Forker();
|
2014-07-10 18:39:04 +08:00
|
|
|
|
foreach (PluginPair pluginPair in plugins)
|
2014-07-05 23:10:34 +08:00
|
|
|
|
{
|
2014-07-10 18:39:04 +08:00
|
|
|
|
PluginPair pair = pluginPair;
|
|
|
|
|
forker.Fork(() => pair.Plugin.Init(new PluginInitContext()
|
2014-07-05 23:10:34 +08:00
|
|
|
|
{
|
2014-07-10 18:39:04 +08:00
|
|
|
|
CurrentPluginMetadata = pair.Metadata,
|
2014-07-18 20:00:55 +08:00
|
|
|
|
Proxy = HttpProxy.Instance,
|
2014-07-10 18:39:04 +08:00
|
|
|
|
API = App.Window
|
|
|
|
|
}));
|
2014-07-05 23:10:34 +08:00
|
|
|
|
}
|
2014-01-07 23:27:05 +08:00
|
|
|
|
|
2014-10-22 22:49:34 +08:00
|
|
|
|
//if plugin init do heavy works, join here will block the UI
|
|
|
|
|
//forker.Join();
|
2014-07-05 23:10:34 +08:00
|
|
|
|
}
|
2014-01-07 23:27:05 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
public static List<PluginPair> AllPlugins
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return plugins;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-22 16:50:47 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
public static bool HitThirdpartyKeyword(Query query)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(query.ActionName)) return false;
|
2014-03-22 16:50:47 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
return plugins.Any(o => o.Metadata.PluginType == PluginType.ThirdParty && o.Metadata.ActionKeyword == query.ActionName);
|
|
|
|
|
}
|
2014-05-09 06:58:38 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
public static void ActivatePluginDebugger(string path)
|
|
|
|
|
{
|
|
|
|
|
DebuggerMode = path;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-03 18:16:05 +08:00
|
|
|
|
}
|