mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Flow.Launcher.Plugin;
|
|
|
|
namespace Flow.Launcher.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
|
|
};
|
|
|
|
// required initialisation for below request calls
|
|
_startInfo.ArgumentList.Add(string.Empty);
|
|
}
|
|
|
|
protected override Task<Stream> RequestAsync(JsonRPCRequestModel request, CancellationToken token = default)
|
|
{
|
|
// since this is not static, request strings will build up in ArgumentList if index is not specified
|
|
_startInfo.ArgumentList[0] = request.ToString();
|
|
return ExecuteAsync(_startInfo, token);
|
|
}
|
|
|
|
protected override string Request(JsonRPCRequestModel rpcRequest, CancellationToken token = default)
|
|
{
|
|
// since this is not static, request strings will build up in ArgumentList if index is not specified
|
|
_startInfo.ArgumentList[0] = rpcRequest.ToString();
|
|
return Execute(_startInfo);
|
|
}
|
|
}
|
|
}
|