PowerToys/Wox/Commands/SystemCommand.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2014-01-03 10:16:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-03 15:52:36 +00:00
using System.Threading;
2014-01-29 10:33:24 +00:00
using Wox.Plugin;
using Wox.PluginLoader;
2014-01-03 10:16:05 +00:00
2014-01-29 10:33:24 +00:00
namespace Wox.Commands
2014-01-03 10:16:05 +00:00
{
2014-01-03 15:52:36 +00:00
public class SystemCommand : BaseCommand
2014-01-03 10:16:05 +00:00
{
2014-01-03 15:52:36 +00:00
private List<PluginPair> systemPlugins;
public SystemCommand()
2014-01-03 15:52:36 +00:00
{
systemPlugins = Plugins.AllPlugins.Where(o => o.Metadata.PluginType == PluginType.System).ToList();
}
public override void Dispatch(Query query,bool updateView = true)
2014-01-03 10:16:05 +00:00
{
2014-01-03 15:52:36 +00:00
foreach (PluginPair pair in systemPlugins)
{
PluginPair pair1 = pair;
ThreadPool.QueueUserWorkItem(state =>
{
List<Result> results = pair1.Plugin.Query(query);
foreach (Result result in results)
{
result.PluginDirectory = pair1.Metadata.PluginDirecotry;
result.OriginQuery = query;
2014-01-15 14:45:02 +00:00
result.AutoAjustScore = true;
2014-01-03 15:52:36 +00:00
}
2014-01-13 10:43:44 +00:00
if(results.Count > 0 && updateView) UpdateResultView(results);
2014-01-03 15:52:36 +00:00
});
}
2014-01-03 10:16:05 +00:00
}
}
}