mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Wox.Core.UserSettings;
|
|
using Wox.Infrastructure.Http;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Core.Plugin
|
|
{
|
|
internal class PythonPlugin : JsonRPCPlugin
|
|
{
|
|
private static string woxDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
|
|
private ProcessStartInfo startInfo;
|
|
|
|
public override string SupportedLanguage
|
|
{
|
|
get { return AllowedLanguage.Python; }
|
|
}
|
|
|
|
public PythonPlugin()
|
|
{
|
|
startInfo = new ProcessStartInfo
|
|
{
|
|
UseShellExecute = false,
|
|
CreateNoWindow = true,
|
|
RedirectStandardOutput = true,
|
|
RedirectStandardError = true
|
|
};
|
|
string additionalPythonPath = string.Format("{0};{1}",
|
|
Path.Combine(woxDirectory, "PythonHome\\DLLs"),
|
|
Path.Combine(woxDirectory, "PythonHome\\Lib\\site-packages"));
|
|
if (!startInfo.EnvironmentVariables.ContainsKey("PYTHONPATH"))
|
|
{
|
|
|
|
startInfo.EnvironmentVariables.Add("PYTHONPATH", additionalPythonPath);
|
|
}
|
|
else
|
|
{
|
|
startInfo.EnvironmentVariables["PYTHONPATH"] = additionalPythonPath;
|
|
}
|
|
}
|
|
|
|
protected override string ExecuteQuery(Query query)
|
|
{
|
|
JsonRPCServerRequestModel request = new JsonRPCServerRequestModel()
|
|
{
|
|
Method = "query",
|
|
Parameters = new object[] { query.GetAllRemainingParameter() },
|
|
HttpProxy = HttpProxy.Instance
|
|
};
|
|
//Add -B flag to tell python don't write .py[co] files. Because .pyc contains location infos which will prevent python portable
|
|
startInfo.FileName = Path.Combine(woxDirectory, "PythonHome\\pythonw.exe");
|
|
startInfo.Arguments = string.Format("-B \"{0}\" \"{1}\"", context.CurrentPluginMetadata.ExecuteFilePath, request);
|
|
|
|
return Execute(startInfo);
|
|
}
|
|
|
|
protected override string ExecuteCallback(JsonRPCRequestModel rpcRequest)
|
|
{
|
|
startInfo.FileName = Path.Combine(woxDirectory, "PythonHome\\pythonw.exe");
|
|
startInfo.Arguments = string.Format("-B \"{0}\" \"{1}\"", context.CurrentPluginMetadata.ExecuteFilePath, rpcRequest);
|
|
return Execute(startInfo);
|
|
}
|
|
}
|
|
} |