将C对象(CFFI)传递给.NET(Pythonnet)

时间:2017-08-23 10:16:24

标签: python c++ .net python.net python-cffi

使用Python,我想使用dll中定义的C或C ++结构,并将它们传递给用C#编写的.NET dll。使用cffi添加C或C ++ dll,使用pythonnet加载.NET。

结构的定义在两个dll中都是相同的。

这是float2的一个简单示例,当然现实更复杂:)

import sys
import clr
import numpy as np

sys.path.append('my_dot_net.dll')

#load the .NET dll
clr.AddReference("dot_net_dll")

from cffi import FFI
ffi = FFI()

#load C dll
lib = ffi.dlopen('c.dll')

# definition of a simple struct, there is an identical one in .NET
ffi.cdef('''typedef struct
            {
                float x;
                float y;
            } float2;''')

from dot_net_namespace import float2

#float2 type in dot net
dotnet_float2 = float2()
dotnet_float2.x = 1.0
dotnet_float2.y = 2.0

#float2 in the c dll
c_float2 = ffi.new("float2 *") # usually numpy array
c_float2.x  = 1.0
c_float2.y  = 2.0

现在我想...创建.NET数据类型的数组或将对象分配给.NET中可用的结构,并将C类型对象分配给它:

dot_net_float2_array = System.Array.CreateInstance(dot_net_float2, 100)
dot_net_float2_array[0] = c_float2 #does not work

dot_net_struct.xy = c_float2 #does not work

我收到了不同的错误消息,例如

TypeError: Cannot convert <cdata 'float2[]' owning 8240 bytes> to dot_net_namespace.float2[]

'_cffi_backend.CDataOwn' value cannot be converted to dot_net_namespace.float2

TypeError: initializer for ctype 'float2' must be a list or tuple or dict or struct-cdata, not float2

我不知道如何解决这个问题。我正在处理的真正代码应该使用包含结构数组的结构,我甚至无法运行这个简单的例子:)

当然可以逐字段复制结构,但有更方便的方法吗?这有可能吗?

是否可以使用ffi.castffi.buffer

1 个答案:

答案 0 :(得分:1)

我最终传递了指向.NET的指针。它们可以按照我在其他问题中的描述进行投射。一旦我的编辑被审核并被接受,完整答案就会变得清晰可见。

How to cast a pointer to a Python cffi struct to System.IntPtr (.NET)?

在此Marshal.PtrToStructure Method (IntPtr, Type)之后用于重新组装.NET中的结构。