我正在尝试将一些Python内容实现到我的程序中,我决定使用Boost :: Python,所以我根据说明编译它,使用bjam,使用mingw / gcc,获取dll和.a文件
我正在使用Code :: Blocks,所以我把dll放在我项目的工作目录中,我使用的其余dll都是,并决定运行boost::python::exec("b = 5");
我马上就崩溃了。想法?
#include <boost/python.hpp>
float func(int a)
{
return a*a-0.5;
}
BOOST_PYTHON_MODULE(test_module)
{
using namespace boost::python;
def("func", func);
}
int main()
{
//Try one
boost::python::exec("b = 5");
//Crash
//Try two
Py_Initialize();
boost::python::exec("b = 5");
//Works fine
//Try three
Py_Initialize();
boost::python::exec("import test_module");
//Throws boost::python::error_already_set and crashes
/*
Something along the lines of
boost::python::exec("import test_module\n"
"var = test_module.func( 3 )\n");
*/
}
在我的项目的构建选项部分下,我添加了libboost_python3-mgw48-d-1_54.dll
和libpython33
以进行链接,以便进行编译。
想法?
答案 0 :(得分:1)
嵌入Python时,几乎所有对Python或Boost.Python的调用都应在使用Py_Initialize()
初始化解释器后进行。尝试在初始化之前调用解释器(例如使用boost::python::exec()
)将导致未定义的行为。
虽然它确定了崩溃的来源,但是有一些微妙的细节可以实现嵌入Python和模块的最终目标,然后exec
导入嵌入式模块。
test_module
时,需要明确添加其初始化,以便import
在搜索内置模块时可以找到它。import
语句使用__import__
函数。此函数需要在exec
的全局变量中可用。以下是演示如何完成此操作的完整示例:
#include <boost/python.hpp>
float func(int a)
{
return a*a-0.5;
}
BOOST_PYTHON_MODULE(test_module)
{
using namespace boost::python;
def("func", func);
}
// Use macros to account for changes in Python 2 and 3:
// - Python's C API for embedding requires different naming conventions for
// module initialization functions.
// - The builtins module was renamed.
#if PY_VERSION_HEX >= 0x03000000
# define MODULE_INIT_FN(name) BOOST_PP_CAT(PyInit_, name)
# define PYTHON_BUILTINS "builtins"
#else
# define MODULE_INIT_FN(name) BOOST_PP_CAT(init, name)
# define PYTHON_BUILTINS "__builtin__"
#endif
int main()
{
// Add the test_module module to the list of built-in modules. This
// allows it to be imported with 'import test_module'.
PyImport_AppendInittab("test_module", &MODULE_INIT_FN(test_module));
Py_Initialize();
namespace python = boost::python;
try
{
// Create an empty dictionary that will function as a namespace.
python::dict ns;
// The 'import' statement depends on the __import__ function. Thus,
// to enable 'import' to function the context of 'exec', the builtins
// module needs to be within the namespace being used.
ns["__builtins__"] = python::import(PYTHON_BUILTINS);
// Execute code. Modifications to variables will be reflected in
// the ns.
python::exec("b = 5", ns);
std::cout << "b is " << python::extract<int>(ns["b"]) << std::endl;
// Execute code using the built-in test_module.
python::exec(
"import test_module\n"
"var = test_module.func(b)\n",
ns);
std::cout << "var is " << python::extract<float>(ns["var"]) << std::endl;
}
catch (python::error_already_set&)
{
PyErr_Print();
}
}
执行时,其输出为:
b is 5
var is 24.5