mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Diagnostics;
|
|||
|
using Wox.Plugin;
|
|||
|
|
|||
|
namespace Wox.Core.Plugin
|
|||
|
{
|
|||
|
internal class ExecutablePlugin : JsonRPCPlugin
|
|||
|
{
|
|||
|
private readonly ProcessStartInfo _startInfo;
|
|||
|
public override string SupportedLanguage { get; set; } = AllowedLanguage.Executable;
|
|||
|
|
|||
|
public ExecutablePlugin(string filename)
|
|||
|
{
|
|||
|
_startInfo = new ProcessStartInfo
|
|||
|
{
|
|||
|
FileName = filename,
|
|||
|
UseShellExecute = false,
|
|||
|
CreateNoWindow = true,
|
|||
|
RedirectStandardOutput = true,
|
|||
|
RedirectStandardError = true
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
protected override string ExecuteQuery(Query query)
|
|||
|
{
|
|||
|
JsonRPCServerRequestModel request = new JsonRPCServerRequestModel
|
|||
|
{
|
|||
|
Method = "query",
|
|||
|
Parameters = new object[] { query.Search },
|
|||
|
};
|
|||
|
|
|||
|
_startInfo.Arguments = $"\"{request}\"";
|
|||
|
|
|||
|
return Execute(_startInfo);
|
|||
|
}
|
|||
|
|
|||
|
protected override string ExecuteCallback(JsonRPCRequestModel rpcRequest)
|
|||
|
{
|
|||
|
_startInfo.Arguments = $"\"{rpcRequest}\"";
|
|||
|
return Execute(_startInfo);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|