gpt4 book ai didi

python - 在 Linux 中使用 SWIG for Python 转换字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:52:19 25 4
gpt4 key购买 nike

我有一个能够以普通 ASCII 或宽格式输出字符串的 C++ 类。我想将 Python 中的输出作为字符串获取。我正在使用 SWIG(版本 3.0.4)并阅读了 SWIG 文档。我正在使用以下类型映射将标准 C 字符串转换为我的 C++ 类:

%typemap(out) myNamespace::MyString &
{
$result = PyString_FromString(const char *v);
}

这在使用 VS2010 编译器的 Windows 中运行良好,但在 Linux 中无法完全运行。当我在Linux下编译wrap文件时,出现如下错误:

error: cannot convert ‘std::string*’ to ‘myNamespace::MyString*’ in assignment

所以我尝试在 Linux 接口(interface)文件中添加一个额外的类型映射:

%typemap(in) myNamespace::MyString*
{
$result = PyString_FromString(std::string*);
}

但我仍然得到同样的错误。如果我手动进入包装代码并像这样修复分配:

arg2 = (myNamespace::MyString*) ptr;

然后代码就可以正常编译了。我不明白为什么我的附加类型映射不起作用。任何想法或解决方案将不胜感激。提前致谢。

最佳答案

看起来您的类型映射没有正确使用参数。你应该有这样的东西:

%typemap(out) myNamespace::MyString &
{
$result = PyString_FromString($1);
}

其中“$1”是第一个参数。查看SWIG special variables欲了解更多信息 [ http://www.swig.org/Doc3.0/Typemaps.html#Typemaps_special_variables]

编辑:

要处理输入类型图,您需要这样的东西:

%typemap(in) myNamespace::MyString*
{
const char* pChars = "";
if(PyString_Check($input))
{
pChars = PyString_AsString($input);
}
$1 = new myNamespace::MyString(pChars);
}

您可以使用以下代码进行更多错误检查和处理 Unicode:

%typemap(in) myNamespace::MyString*
{
const char* pChars = "";
PyObject* pyobj = $input;
if(PyString_Check(pyobj))
{
pChars = PyString_AsString(pyobj);
$1 = new myNamespace::MyString(pChars);
}
else if(PyUnicode_Check(pyobj))
{
PyObject* tmp = PyUnicode_AsUTF8String(pyobj);
pChars = PyString_AsString(tmp);
$1 = new myNamespace::MyString(pChars);
}
else
{
std::string strTemp;
int rrr = SWIG_ConvertPtr(pyobj, (void **) &strTemp, $descriptor(String), 0);
if(!SWIG_IsOK(rrr))
SWIG_exception_fail(SWIG_ArgError(rrr), "Expected a String "
"in method '$symname', argument $argnum of type '$type'");
$1 = new myNamespace::MyString(strTemp);
}
}

关于python - 在 Linux 中使用 SWIG for Python 转换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30055267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com