SWIG 错误的编码字符串使 Python 崩溃



我有一个问题,我所有处理字符串的 SWIG 包装器都崩溃了如果我在 std::string 中传递错误的编码字符串,我的意思是包含 èé 等的字符串,这些字符对当前区域设置有效,但 UTF-8 无效。

在我的代码方面,我已经解决了将输入解析为宽字符串并将它们转换为 UTF-8 的问题,但我想用异常而不是崩溃来捕获这些错误,难道不应该PyUnicode_Check失败这些字符串吗?

调用 PyString_AsStringAndSize(( 时,Swig 实际上在 SWIG_AsCharPtrAndSize(( 中崩溃,这是 swig 生成的代码:

    SWIGINTERN int
SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
{
#if PY_VERSION_HEX>=0x03000000
#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
  if (PyBytes_Check(obj))
#else
  if (PyUnicode_Check(obj))
#endif
#else  
  if (PyString_Check(obj))
#endif
  {
    char *cstr; Py_ssize_t len;
#if PY_VERSION_HEX>=0x03000000
#if !defined(SWIG_PYTHON_STRICT_BYTE_CHAR)
    if (!alloc && cptr) {
        /* We can't allow converting without allocation, since the internal
           representation of string in Python 3 is UCS-2/UCS-4 but we require
           a UTF-8 representation.
           TODO(bhy) More detailed explanation */
        return SWIG_RuntimeError;
    }
    obj = PyUnicode_AsUTF8String(obj);
    if(alloc) *alloc = SWIG_NEWOBJ;
#endif
    PyBytes_AsStringAndSize(obj, &cstr, &len);
#else
    PyString_AsStringAndSize(obj, &cstr, &len);
#endif
    if (cptr) {

崩溃恰好进入最后可见PyString_AsStringAndSize。我指出字符串作为 std::string 传递,但也发生在常量字符*中,没有任何区别。

谢谢你的建议!

无法复制。 编辑您的问题并添加一个最小、完整、可验证的示例(如果此示例不能解决您的问题并需要进一步帮助(:

测试.i

%module test
%include <std_string.i>
%inline %{
#include <string>
std::string func(std::string s)
{
    return '[' + s + ']';
}
%}

演示:

Python 3.3.5 (v3.3.5:62cf4e77f785, Mar  9 2014, 10:35:05) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import test
>>> test.func('ábc')
'[ábc]'

问题是我们仍在使用的 3.3.0 版本,更新到 3.3.7 解决了这个问题,在 Python 发行说明中修复了几个关于PyUnicode_Check

的错误

相关内容

  • 没有找到相关文章

最新更新