我正在尝试使用 SWIG 包装现有的 C 库以在 Python 中使用。我正在使用 Python 2.7.4 在 Windows XP 上运行 swig 2.0.10。我遇到的问题是我无法调用一个包装的 C 函数,该函数有一个指向 int 的指针作为参数,该参数是存储函数结果的位置。我已将问题提炼为以下示例代码:
convert.c 中的 C 函数:
#include <stdio.h>
#include "convert.h"
#include <stdlib.h>
int convert(char *s, int *i)
{
*i = atoi(s);
return 0;
}
convert.h 中的头文件
#ifndef _convert_h_
#define _convert_h_
int convert(char *, int *);
#endif
convert.i 中的 swig 接口文件
/* File : convert.i */
%module convert
%{
#include "convert.h"
%}
%include "convert.h"
所有这些都使用 Visual C++ 2010 构建到一个 .pyd 文件中。构建完成后,我在构建目录中留下了两个文件:convert.py 和 _convert.pyd。我在此目录中打开一个命令窗口并启动 python 会话并输入以下内容:
Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import *
>>> import convert
>>> dir(convert)
['__builtins__', '__doc__', '__file__', '__name__', '__package__', '_convert', '_newclass', '_object', '_swig_getattr', '_swig_property', '_swig_repr', '_swig_setattr', '_swig_setattr_nondynamic', 'convert']
>>> i = c_int()
>>> i
c_long(0)
>>> convert.convert('1234', byref(i))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: in method 'convert', argument 2 of type 'int *'
为什么我的指针对象被拒绝?我应该怎么做才能完成这项工作?