Files
PowerToys/Wox/PluginLoader/PythonPlugin.cs
2014-07-09 18:15:23 +08:00

36 lines
1.3 KiB
C#

using System.Collections.Generic;
using System.IO;
using Wox.Plugin;
using Wox.RPC;
namespace Wox.PluginLoader
{
public class PythonPlugin : BasePlugin
{
private static string woxDirectory = Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath);
public override List<string> GetAllowedLanguages()
{
return new List<string>()
{
AllowedLanguage.Python
};
}
protected override string ExecuteQuery(Query query)
{
string fileName = Path.Combine(woxDirectory, "PythonHome\\pythonw.exe");
string parameters = string.Format("{0} \"{1}\"", context.CurrentPluginMetadata.ExecuteFilePath,
JsonRPC.Send("query", query.GetAllRemainingParameter()));
return Execute(fileName, parameters);
}
protected override string ExecuteAction(JsonRPCRequestModel rpcRequest)
{
string fileName = Path.Combine(woxDirectory, "PythonHome\\pythonw.exe");
string parameters = string.Format("{0} \"{1}\"", context.CurrentPluginMetadata.ExecuteFilePath,
rpcRequest.ToString());
return Execute(fileName, parameters);
}
}
}