2014-12-26 14:51:04 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-03 10:16:05 +00:00
|
|
|
|
using System.Linq;
|
2014-01-03 15:52:36 +00:00
|
|
|
|
using System.Threading;
|
2015-01-05 14:41:17 +00:00
|
|
|
|
using Wox.Core.UserSettings;
|
2014-01-29 10:33:24 +00:00
|
|
|
|
using Wox.Plugin;
|
2015-01-03 07:20:34 +00:00
|
|
|
|
//using Wox.Plugin.SystemPlugins;
|
2014-01-03 10:16:05 +00:00
|
|
|
|
|
2014-12-26 14:51:04 +00:00
|
|
|
|
namespace Wox.Core.Plugin.QueryDispatcher
|
2014-01-03 10:16:05 +00:00
|
|
|
|
{
|
2014-12-26 14:51:04 +00:00
|
|
|
|
public class SystemPluginQueryDispatcher : IQueryDispatcher
|
2014-01-03 10:16:05 +00:00
|
|
|
|
{
|
2015-01-04 15:08:26 +00:00
|
|
|
|
private IEnumerable<PluginPair> allSytemPlugins = PluginManager.AllPlugins.Where(o => PluginManager.IsSystemPlugin(o.Metadata));
|
2014-10-22 14:49:34 +00:00
|
|
|
|
|
2014-12-26 14:51:04 +00:00
|
|
|
|
public void Dispatch(Query query)
|
2014-01-03 10:16:05 +00:00
|
|
|
|
{
|
2014-10-23 10:39:11 +00:00
|
|
|
|
var queryPlugins = allSytemPlugins;
|
2014-07-21 15:18:39 +00:00
|
|
|
|
if (UserSettingStorage.Instance.WebSearches.Exists(o => o.ActionWord == query.ActionName && o.Enabled))
|
2014-01-03 15:52:36 +00:00
|
|
|
|
{
|
2014-07-21 15:18:39 +00:00
|
|
|
|
//websearch mode
|
2014-10-23 10:39:11 +00:00
|
|
|
|
queryPlugins = new List<PluginPair>()
|
2014-07-21 15:18:39 +00:00
|
|
|
|
{
|
2014-12-27 04:34:51 +00:00
|
|
|
|
allSytemPlugins.First(o => o.Metadata.ID == "565B73353DBF4806919830B9202EE3BF")
|
2014-07-21 15:18:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
}
|
2014-07-01 14:19:46 +00:00
|
|
|
|
|
2014-10-23 10:39:11 +00:00
|
|
|
|
foreach (PluginPair pair in queryPlugins)
|
2014-07-21 15:18:39 +00:00
|
|
|
|
{
|
|
|
|
|
|
PluginPair pair1 = pair;
|
2014-01-03 15:52:36 +00:00
|
|
|
|
ThreadPool.QueueUserWorkItem(state =>
|
|
|
|
|
|
{
|
2014-03-27 06:50:42 +00:00
|
|
|
|
List<Result> results = pair1.Plugin.Query(query);
|
2014-07-21 15:18:39 +00:00
|
|
|
|
results.ForEach(o => { o.AutoAjustScore = true; });
|
2014-07-05 15:10:34 +00:00
|
|
|
|
|
2014-12-26 14:51:04 +00:00
|
|
|
|
PluginManager.API.PushResults(query, pair1.Metadata, results);
|
2014-01-03 15:52:36 +00:00
|
|
|
|
});
|
|
|
|
|
|
}
|
2014-01-03 10:16:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-01-04 15:08:26 +00:00
|
|
|
|
}
|