mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
python plugin test
This commit is contained in:
@@ -23,19 +23,10 @@ char* Exec(char* directory, char* file, char* method, char* para)
|
||||
PyObject *pName, *pModule, *pDict, *pFunc, *pValue, *pClass, *pInstance;
|
||||
char *error;
|
||||
|
||||
//PyThreadState* global_state = PyThreadState_Get();
|
||||
//PyThreadState* ts = Py_NewInterpreter();
|
||||
//PyThreadState_Swap(ts);
|
||||
PyGILState_STATE gstate = PyGILState_Ensure();
|
||||
|
||||
// Initialise the Python interpreter
|
||||
|
||||
// Create GIL/enable threads
|
||||
|
||||
PyGILState_STATE gstate = PyGILState_Ensure();
|
||||
// // Get the default thread state
|
||||
// PyThreadState* state = PyThreadState_Get();
|
||||
// // Once in each thread
|
||||
//PyThreadState* stateForNewThread = PyThreadState_New(state->interp);
|
||||
//PyEval_RestoreThread(stateForNewThread);
|
||||
|
||||
// Build the name object
|
||||
PyObject *sys = PyImport_ImportModule("sys");
|
||||
@@ -98,27 +89,36 @@ char* Exec(char* directory, char* file, char* method, char* para)
|
||||
// Finish the Python Interpreter
|
||||
|
||||
//PyErr_Clear();
|
||||
//Py_EndInterpreter(ts);
|
||||
//PyThreadState_Swap(global_state);
|
||||
|
||||
|
||||
printf("My thread is finishing... %s \n",para);
|
||||
PyGILState_Release(gstate);
|
||||
return str_ret;
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
char* directory = "d:\\Personal\\WinAlfred\\WinAlfred\\bin\\Debug\\Plugins\\p4pperson\\";
|
||||
char* directory = "d:\\github\\WinAlfred\\WinAlfred\\bin\\Debug\\Plugins\\p";
|
||||
char* file = "main";
|
||||
char* method = "query";
|
||||
char* para = "p q";
|
||||
char* para1 = "p 1";
|
||||
char* para2 = "p 2";
|
||||
char* para3 = "p 3";
|
||||
char* para4 = "p 4";
|
||||
int i = 0;
|
||||
// <20><>ʼ<EFBFBD><CABC>
|
||||
Py_Initialize();
|
||||
// <20><>ʼ<EFBFBD><CABC><EFBFBD>߳<EFBFBD>֧<EFBFBD><D6A7>
|
||||
PyEval_InitThreads();
|
||||
for(int i=0;i++;i<10){
|
||||
auto future = std::async(Exec,directory,file,method,para);
|
||||
printf("%s",future.get());
|
||||
}
|
||||
Py_Finalize();
|
||||
PyEval_ReleaseLock();
|
||||
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD>ǰִ<C7B0>У<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ͷ<EFBFBD>PyEval_InitThreads<64><73><EFBFBD>õ<EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߳̿<DFB3><CCBF><EFBFBD><EFBFBD><EFBFBD><DEB7><EFBFBD>ȡ<EFBFBD><C8A1>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
//std::async(Exec,directory,file,method,para);
|
||||
std::async(Exec,directory,file,method,para1);
|
||||
std::async(Exec,directory,file,method,para2);
|
||||
std::async(Exec,directory,file,method,para3);
|
||||
std::async(Exec,directory,file,method,para4);
|
||||
// <20><>֤<EFBFBD><D6A4><EFBFBD>̵߳<DFB3><CCB5>ö<EFBFBD><C3B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
//PyGILState_Ensure();
|
||||
getchar();
|
||||
Py_Finalize();
|
||||
return 0;
|
||||
}
|
||||
@@ -7,9 +7,10 @@ int i = 0;
|
||||
|
||||
extern "C" __declspec(dllexport) void InitPythonEnv()
|
||||
{
|
||||
i++;
|
||||
Py_Initialize();
|
||||
PyEval_InitThreads();
|
||||
PyEval_ReleaseLock();
|
||||
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD>ǰִ<C7B0>У<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ͷ<EFBFBD>PyEval_InitThreads<64><73><EFBFBD>õ<EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߳̿<DFB3><CCBF><EFBFBD><EFBFBD><EFBFBD><DEB7><EFBFBD>ȡ<EFBFBD><C8A1>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
}
|
||||
|
||||
char* GetErrorMessage()
|
||||
@@ -30,25 +31,11 @@ char* Exec(char* directory, char* file, char* method, char* para)
|
||||
{
|
||||
PyObject *pName, *pModule, *pDict, *pFunc, *pValue, *pClass, *pInstance;
|
||||
char *error;
|
||||
i++;
|
||||
|
||||
PyThreadState* global_state = PyThreadState_Get();
|
||||
PyThreadState* ts = Py_NewInterpreter();
|
||||
PyThreadState_Swap(ts);
|
||||
// Initialise the Python interpreter
|
||||
|
||||
// Create GIL/enable threads
|
||||
|
||||
//PyGILState_STATE gstate = PyGILState_Ensure();
|
||||
// // Get the default thread state
|
||||
// PyThreadState* state = PyThreadState_Get();
|
||||
// // Once in each thread
|
||||
//PyThreadState* stateForNewThread = PyThreadState_New(state->interp);
|
||||
//PyEval_RestoreThread(stateForNewThread);
|
||||
PyGILState_STATE gstate = PyGILState_Ensure();
|
||||
|
||||
// Build the name object
|
||||
PyObject *sys = PyImport_ImportModule("sys");
|
||||
PyObject *path = PyObject_GetAttrString(sys, "path");
|
||||
PyObject *path = PySys_GetObject("path");
|
||||
PyList_Append(path, PyString_FromString(directory));
|
||||
|
||||
pName = PyString_FromString(file);
|
||||
@@ -102,19 +89,17 @@ char* Exec(char* directory, char* file, char* method, char* para)
|
||||
|
||||
char * str_ret = PyString_AsString(pValue);
|
||||
|
||||
//PyEval_SaveThread();
|
||||
|
||||
// Finish the Python Interpreter
|
||||
|
||||
PyErr_Clear();
|
||||
Py_EndInterpreter(ts);
|
||||
PyThreadState_Swap(global_state);
|
||||
//PyErr_Clear();
|
||||
PyGILState_Release(gstate);
|
||||
|
||||
return str_ret;
|
||||
}
|
||||
|
||||
extern "C" __declspec(dllexport) char* ExecPython(char* directory, char* file, char* method, char* para)
|
||||
{
|
||||
auto future = std::async(Exec,directory,file,method,para);
|
||||
return future.get();
|
||||
char* s = Exec(directory,file,method,para);
|
||||
PyGILState_Ensure();
|
||||
return s;
|
||||
//auto future = std::async(Exec,directory,file,method,para);
|
||||
//return future.get();
|
||||
}
|
||||
@@ -68,8 +68,8 @@ namespace WinAlfred
|
||||
private void TextBoxBase_OnTextChanged(object sender, TextChangedEventArgs e)
|
||||
{
|
||||
string query = tbQuery.Text;
|
||||
//ThreadPool.QueueUserWorkItem(state =>
|
||||
//{
|
||||
ThreadPool.QueueUserWorkItem(state =>
|
||||
{
|
||||
results.Clear();
|
||||
foreach (PluginPair pair in plugins)
|
||||
{
|
||||
@@ -98,7 +98,7 @@ namespace WinAlfred
|
||||
resultCtrl.AddResults(results.OrderByDescending(o => o.Score).ToList());
|
||||
resultCtrl.SelectFirst();
|
||||
}));
|
||||
//});
|
||||
});
|
||||
}
|
||||
|
||||
private void HideWinAlfred()
|
||||
|
||||
Reference in New Issue
Block a user