我正在尝试使用Python ctypes初始化.h头文件中的结构ExternalInputs_add_two
。头文件是:
typedef struct {
int32_T Input; /* '<Root>/Input' */
int32_T Input1; /* '<Root>/Input1' */
} ExternalInputs_add_two;
我需要初始化此结构,因为此成员声明使用输入的结构值:
extern ExternalInputs_add_two add_two_U;
什么ctypes函数初始化结构?到目前为止,我的Python代码是:
class ModelOutput(Structure):
_fields_ = [("Output", c_int)]
class ModelInput(Structure):
_fields_ = [("Input", c_int),
("Input1", c_int)]
#define the functions
initiateModel = cdll.add_two_win32.add_two_initialize
stepModel = cdll.add_two_win32.add_two_step
terminateModel = cdll.add_two_win32.add_two_terminate
#define the pointers to the functions
initiateModel.restype = c_void_p
stepModel.restype = c_void_p
terminateModel.restype = c_void_p
#initialize the model with value of 1
print "\n\nInitialize"
errMsg = initiateModel(1)
print "initateModel reports:", errMsg
#Set the input
test_input = ModelInput(1,2)
input_ptr = pointer(test_input)
#This probably doesn't work since ExternalInputs_add_two is a structure, not a function.
cdll.add_two_win32.ExternalInputs_add_two = input_ptr
#Get the output pointer from add_two_U
output = POINTER(ModelOutput)
results = output.in_dll(cdll.add_two_win32,"add_two_U")
print "got results", results.Output
昨天我问了如何从成员add_two_U
获取输出。大卫很高兴昨天回答这个问题(使用in_dll
函数)。
我搜索了ctypes文档,并在线搜索了一个使用ctype设置结构的示例或函数。到目前为止我还没有找到任何东西。
感谢您的帮助。
感谢您的帮助和回答。不幸的是,以这种方式设置输入结构不起作用。我忘了提到编写了一个Matlab脚本来使用dll并且它可以工作。我正在尝试转换为Python。要初始化结构ExternalInputs_add_two,Matlab使用以下语句:
sm.Input = 1
sm.Input1 = 2
sp = libpointer('ExternalInputs_add_two', sm)
然后调用函数add_two_U:
sp = calllib('add_two_win32', 'add_two_U')
sp.value
get(sp, 'Value')
sp.Value.Input = 3
sp.Value.Input1 = 2
如果删除初始化ExternalInputs_add_two结构的Matlab语句,则会出错。
Python ctypes相当于初始化结构的内容是什么?如果我好像是害虫,我很抱歉。
答案 0 :(得分:0)
您似乎将结构定义与结构实例混淆。正如头文件中声明的那样,ExternalInputs_add_two
是类型,而add_two_U
是实例。 DLL不导出类型,只导出类型的实例。因此,Python代码中的以下行是荒谬的:
cdll.add_two_win32.ExternalInputs_add_two = input_ptr
您可能需要修改名为ExternalInputs_add_two
的{{1}}的实例。要执行此操作,请按照David先前的建议做出并使用add_two_U
函数:
in_dll
答案 1 :(得分:0)
我的建议是停止从DLL导出变量。相反,您应该从DLL中导出两个函数:一个用于读取变量,另一个用于写入变量。