所以,StackOverflow,我很难过。
我拥有的代码是带有嵌入式Python的C ++函数。我在C ++端生成一条消息,将其发送到python,获取不同的消息。我得到了它的工作,我测试了,到目前为止,这么好。
下一步是我需要Python自己生成消息并将它们发送到C ++。这是我开始陷入困境的地方。在花了几个小时困惑文档后,似乎最好的方法是定义一个模块来保存我的功能。所以我写了下面的存根:
static PyMethodDef mailbox_methods[] = {
{ "send_external_message",
[](PyObject *caller, PyObject *args) -> PyObject *
{
classname *interface = (classname *)
PyCapsule_GetPointer(PyTuple_GetItem(args, 0), "turkey");
class_field_type toReturn;
toReturn = class_field_type.python2cpp(PyTuple_GetItem(args, 1));
interface ->send_message(toReturn);
Py_INCREF(Py_None);
return Py_None;
},
METH_VARARGS,
"documentation" },
{ NULL, NULL, 0, NULL }
};
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"turkey",
"documentation",
-1,
mailbox_methods
};
//defined in header file, just noting its existence here
PyObject *Module;
PyMODINIT_FUNC PyInit_turkey()
{
Module = PyModule_Create(&moduledef);
return Module;
}
在Python方面,我有以下接收器代码:
import turkey
我收到以下回复:
ImportError: No module named 'turkey'
现在,这是我真的很困惑的部分。这是我初始化函数中的代码:
PyInit_turkey();
PyObject *interface = PyCapsule_New(this, "instance", NULL);
char *repr = PyUnicode_AsUTF8(PyObject_Repr(Module));
cout << "REPR: " << repr << "\n";
if (PyErr_Occurred())
PyErr_Print();
打印出来
REPR: <module 'turkey'>
Traceback (most recent call last):
<snipped>
import turkey
ImportError: No module named 'turkey'
所以模块存在,但它并没有被传递到Python的任何地方。我找不到关于如何传入它并在Python端初始化它的文档。我意识到我可能只是错过了一个微不足道的步骤,但我不能为我的生活找出它是什么。有人可以帮忙吗?
答案 0 :(得分:1)
答案最终是我失踪的一个功能。在我调用Py_Initialize之前包含在初始化函数的开头:
PyImport_AppendInittab("facade", initfunc);
Py_Initialize();
PyEval_InitThreads();
Python文档除了传递之外没有提及PyImport_AppendInittab,这就是我在跳跃时遇到这么困难的原因。
对于将来发现这一点的任何人:您不需要创建DLL来扩展python或使用预先构建的库将模块带入Python。它可以比那容易得多。