boost python で公開されている関数の戻り値の型として const wchar_t* をサポートする方法を見つけようとしました。私のブーストバージョンは1.52で、違いがあればpython 2.7で作業しています。
どういうわけか、変換関数を受け入れることができません。インターネットでこの問題の解決策の断片を見てきましたが、実際に機能するものや、正しく行う方法を詳しく説明しているものはありません。
これが私の些細な非動作例です:
#include <string>
#include <boost/python.hpp>
using namespace boost::python;
struct wchar_t_to_python_str
{
static PyObject* convert(const wchar_t* )
{
std::string s = "I'm more interested in the function signature than how to do wide char to non-wide char conversion";
return boost::python::incref(boost::python::object(s).ptr());
}
};
void init_module()
{
to_python_converter<const wchar_t*, wchar_t_to_python_str>();
}
const wchar_t* testWchar() {
return L"Hello World";
}
const char* testChar() {
return "Hello World";
}
BOOST_PYTHON_MODULE(test)
{
// This works nicely, const char* is supported
def("testChar", testChar);
// This doesn't work, fails with this error
// 'awBoost::python::detail::specify_a_return_value_policy_to_wrap_functions_returning<T>'
// def("testWchar", testWchar);
// Throwing in a return value policy fires a compile time assert make_instance_impl
// BOOST_MPL_ASSERT((mpl::or_<is_class<T>, is_union<T> >));
// It seems like it gets confused by wchar_t not being a class, but it's hard to know
def("testWchar", testWchar, return_value_policy<reference_existing_object>());
}