mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-11 17:59:28 +08:00
33 lines
1012 B
C#
33 lines
1012 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using Wox.Plugin;
|
|
using Wox.PluginLoader;
|
|
|
|
namespace Wox.Commands
|
|
{
|
|
public class SystemCommand : BaseCommand
|
|
{
|
|
public override void Dispatch(Query query)
|
|
{
|
|
foreach (PluginPair pair in Plugins.AllPlugins.Where(o => o.Metadata.PluginType == PluginType.System))
|
|
{
|
|
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;
|
|
result.AutoAjustScore = true;
|
|
}
|
|
if(results.Count > 0) UpdateResultView(results);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|