Flow.Launcher/WinAlfred/PluginLoader/PythonPluginWrapper.cs

100 lines
2.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2014-01-15 14:45:02 +00:00
using System.Linq;
using System.Reflection;
2013-12-23 11:21:51 +00:00
using System.Runtime.InteropServices;
2014-01-10 16:19:14 +00:00
using System.Windows.Documents;
2013-12-23 15:53:38 +00:00
using Newtonsoft.Json;
2014-01-10 16:19:14 +00:00
using Python.Runtime;
2014-01-15 14:45:02 +00:00
using WinAlfred.Helper;
using WinAlfred.Plugin;
namespace WinAlfred.PluginLoader
{
public class PythonPluginWrapper : IPlugin
{
2013-12-23 11:21:51 +00:00
private PluginMetadata metadata;
2014-01-15 14:45:02 +00:00
private string moduleName;
2013-12-23 11:21:51 +00:00
public PythonPluginWrapper(PluginMetadata metadata)
{
2013-12-23 11:21:51 +00:00
this.metadata = metadata;
2014-01-15 14:45:02 +00:00
moduleName = metadata.ExecuteFileName.Replace(".py", "");
}
public List<Result> Query(Query query)
{
2013-12-26 16:39:07 +00:00
try
2013-12-26 12:18:08 +00:00
{
2014-01-15 14:45:02 +00:00
string jsonResult = InvokeFunc("query", query.RawQuery);
if (string.IsNullOrEmpty(jsonResult))
2013-12-27 12:06:49 +00:00
{
return new List<Result>();
}
List<PythonResult> o = JsonConvert.DeserializeObject<List<PythonResult>>(jsonResult);
2013-12-26 16:39:07 +00:00
List<Result> r = new List<Result>();
foreach (PythonResult pythonResult in o)
{
PythonResult ps = pythonResult;
2013-12-27 12:06:49 +00:00
if (!string.IsNullOrEmpty(ps.ActionName))
{
2014-01-15 14:45:02 +00:00
ps.Action = () => InvokeFunc(ps.ActionName, ps.ActionPara);
2013-12-27 12:06:49 +00:00
}
2013-12-26 16:39:07 +00:00
r.Add(ps);
}
return r;
2013-12-26 12:18:08 +00:00
}
2013-12-26 16:39:07 +00:00
catch (Exception)
{
#if (DEBUG)
{
throw;
}
#endif
2013-12-26 16:39:07 +00:00
}
}
2014-01-15 14:45:02 +00:00
private string InvokeFunc(string func, params string[] para)
2014-01-10 16:19:14 +00:00
{
2014-01-15 14:45:02 +00:00
string json;
PyObject[] paras = { };
if (para != null && para.Length > 0)
{
paras = para.Select(o => new PyString(o)).ToArray();
}
2014-01-10 16:19:14 +00:00
IntPtr gs = PythonEngine.AcquireLock();
PyObject module = PythonEngine.ImportModule(moduleName);
2014-01-15 14:45:02 +00:00
if (module.HasAttr(func))
{
PyObject res = paras.Length > 0 ? module.InvokeMethod(func, paras) : module.InvokeMethod(func);
json = Runtime.GetManagedString(res.Handle);
}
else
{
string error = string.Format("Python Invoke failed: {0} doesn't has function {1}",
metadata.ExecuteFilePath, func);
Log.Error(error);
#if (DEBUG)
{
throw new ArgumentException(error);
}
#endif
}
2014-01-10 16:19:14 +00:00
PythonEngine.ReleaseLock(gs);
return json;
}
2014-01-03 15:52:36 +00:00
public void Init(PluginInitContext context)
{
}
}
}