我有一些C ++代码,一些python代码和一些cython代码。 在C ++中,我有一个执行的异步回调,我想要执行python代码。
这就是我的所作所为。 在python中,我编写了一个带有2个参数的函数:
def fn(x,y):
print("hello")
print(x)
print(y)
然后,在C ++中,我想调用这个函数" fn"异步作为回调。 所以我创建了一个名为" PythonCallback"的C ++函数。包装回调。
class PythonCallback{
public:
PyObject *_pyfunc;
PythonCallback(PyObject *pyfunc);
void presentCallback(_bstr_t EventName, BYTE* CallbackData);
void addCallbackToGUID( PyObject* Py_GUID );
}
//Constructor
PythonCallback::PythonCallback(PyObject *pyfunc){
if( PyCallable_Check(pyfunc)){
Py_INCREF(pyfunc);
_pyfunc = pyfunc;
}else{
throw -1;
}
};
void PythonCallback::presentCallback(_bstr_t EventName, BYTE* pCallbackData)
{
PyGILState_STATE gstate;
gstate = PyGILState_Ensure();
EventData* evData = (EventData*)pCallbackData;
PyObject *args = Py_BuildValue("(ss)", EventName, EventName);
const wchar_t* wstring(EventName);
PyObject_CallObject(_pyfunc, args );
std::wstring w;
w.append(EventName);
// PyObject_CallFunction( _pyfunc, "(ss)", wstring, wstring);
// PyObject_CallFunction( _pyfunc, "(ss)", w.c_str(),w.c_str());
// PyObject_CallFunction( _pyfunc, "(s)", w.c_str() );
// PyObject_CallFunction( _pyfunc, "" );
// PyObject_CallFunction( _pyfunc, "ss", wstring, wstring );
PyGILState_Release(gstate);
};
所有这一切都与Cython紧密结合在一起。 在Cython中,我创建了一个将python函数发送到C ++的类
cdef class CallbackInformation:
cdef PythonCallback *thisptr
def __cinit__(self, object func):
self.thisptr = new PythonCallback(func)
# temp = PythonCallback(func)
def __dealloc__(self):
del self.thisptr
def addCallbackToGUID(self,guid):
self.thisptr.addCallbackToGUID(guid)
那么,我要做的是创建CallbackInformation
的新实例并将其传递给fn
。即instance = CallbackInformation(fn)
当我调用python回调函数fn
时会出现问题。
我没有立即得到错误,但是当我尝试在python控制台中检查fn
时,即如果我只是在控制台中输入fn,我会收到以下错误:
文件" C:/Users/eric/PycharmProjects/SuperResolution/Startup3dCalibration.py" ;,>第62行,in fn 打印("你好&#34) UnicodeDecodeError:' utf-8'编解码器不能解码位置0中的字节0xf8:无效>起始字节
如果我再做一次, 我得到了他的消息
hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello
最后,如果我第三次这样做,我得到预期的输出:
<function fn at 0x0000000002281048>
我哪里出错了?
答案 0 :(得分:0)
然而,在您发布问题之后,问题就出现了:
所以我意识到使用Py_BuildValue
,char *
字符串和unicode字符串之间存在根本区别。因此,只需将PyObject *args = Py_BuildValue("(ss)", EventName, EventName);
替换为PyObject *args = Py_BuildValue("(uu)", EventName, EventName);
即可修复我的问题。
我认为关于不可转换的unicode的错误最终会有意义。