mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
22 lines
762 B
C#
22 lines
762 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Core.Plugin
|
|
{
|
|
internal class JsonRPCPluginLoader<T> : IPluginLoader where T : JsonRPCPlugin, new()
|
|
{
|
|
public IEnumerable<PluginPair> LoadPlugin(List<PluginMetadata> pluginMetadatas)
|
|
{
|
|
T jsonRPCPlugin = new T();
|
|
List<PluginMetadata> jsonRPCPluginMetadatas = pluginMetadatas.Where(o => o.Language.ToUpper() == jsonRPCPlugin.SupportedLanguage.ToUpper()).ToList();
|
|
|
|
return jsonRPCPluginMetadatas.Select(metadata => new PluginPair()
|
|
{
|
|
Plugin = new T(), //every JsonRPC plugin should has its own plugin instance
|
|
Metadata = metadata
|
|
}).ToList();
|
|
}
|
|
}
|
|
}
|