【发布时间】:2021-12-30 16:10:14
【问题描述】:
老实说,我在这个网站上阅读了很多关于 struct 主题的帖子。但我需要你的帮助。
我有 C 风格的结构
struct Time
{
uint16_t year; // year with four digits like 2016
uint8_t month; // 1 .. 12
uint8_t day; // 1 .. 31
uint8_t hour; // 0 .. 23, 24 hour representation
uint8_t minute; // 0 .. 59
uint8_t second; // 0 .. 59
};
以及具有成员函数的类,其实现在 DLL 中。
class DeviceInterface {
virtual uint32_t getTime(Time& time) = 0;
};
其中 uint32_t 值是状态码。
这里是自动生成的 SWIG C++ 代码:
SWIGINTERN PyObject *_wrap_getTime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
PyObject *resultobj = 0;
DeviceInterface *arg1 = (DeviceInterface *) 0 ;
Time *arg2 = 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
PyObject *swig_obj[2] ;
uint32_t result;
if (!SWIG_Python_UnpackTuple(args, "getTime", 2, 2, swig_obj)) SWIG_fail;
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_DeviceInterface, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "getTime" "', argument " "1"" of type '" "DeviceInterface *""'");
}
arg1 = reinterpret_cast< DeviceInterface * >(argp1);
res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_Time, 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "getTime" "', argument " "2"" of type '" "Time &""'");
}
if (!argp2) {
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "getTime" "', argument " "2"" of type '" "Time &""'");
}
arg2 = reinterpret_cast< Time * >(argp2);
result = (uint32_t)(arg1)->getTime(*arg2);
resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
return resultobj;
fail:
return NULL;
}
从上面的代码中,我看不到返回了什么时间值,即 arg2 变量。那么我需要在 SWIG 接口文件中编写什么来获取状态码和时间?
【问题讨论】: