如何从ctypes Structure或Union字段获取'type'字段描述符

时间:2011-05-19 15:38:46

标签: python types ctypes descriptor

我的结构具有不同的数据类型字段。我想迭代结构字段,检查数据类型,并使用适当的值设置字段。

我可以通过字段的.size和.offset属性访问字段的大小和偏移量。如何获得该字段的“type”属性?使用 type(value)不会打印特定字段的ctypes数据类型。如果我打印值,那么我确实看到了ctypes数据类型,但似乎没有一个属性可以直接访问它。

如何直接访问类型字段描述符?

from ctypes import *

class A(Structure):
    _fields_ = [("one", c_long),
                ("two", c_char),
                ("three", c_byte)]

>>> A.one
<Field type=c_long, ofs=0, size=4>
>>> A.one.offset
0
>>> A.one.size
4
>>> type(A.one)
<class '_ctypes.CField'>

理想情况下,我希望获得与下面的代码段类似的字段类型...

>>> A.one.type
c_long

2 个答案:

答案 0 :(得分:5)

ctypes API似乎不支持此功能。创建Field repr <Field type=c_long ..>后,将从嵌入式类型中检索名称,如下所示:

name = ((PyTypeObject *)self->proto)->tp_name;

对于您的字段,成员self->proto指向c_long,但我在Python 2.7的cfield.c中找不到可以检索self->proto本身值的位置。您可能会被迫:

  1. name - &gt;创建您自己的映射type
  2. (yuck)解析<Field type=X的repr并使用getattr(ctypes, X)来获取类型对象。

  3. 为了跟进选项(1)的示例,这里有一个类装饰器,它为您创建了类型映射,添加了_typeof(cls, fld)类方法:

    from ctypes import *
    
    def typemap(cls):
        _types = dict((getattr(cls, t), v) for t, v in cls._fields_)
        setattr(cls, '_typeof', classmethod(lambda c, f: _types.get(f)))
        return cls
    
    @typemap
    class A(Structure):
        _fields_ = [("one", c_long),
                    ("two", c_char),
                    ("three", c_byte)]
    
    print A._typeof(A.one), A._typeof(A.two), A._typeof(A.three)
    

    结果:

    <class 'ctypes.c_long'> <class 'ctypes.c_char'> <class 'ctypes.c_byte'>
    

答案 1 :(得分:4)

只需使用_fields_列表:

>>> for f,t in A._fields_:
...  a = getattr(A,f)
...  print a,a.offset,a.size,t
...
<Field type=c_long, ofs=0, size=4> 0 4 <class 'ctypes.c_long'>
<Field type=c_char, ofs=4, size=1> 4 1 <class 'ctypes.c_char'>
<Field type=c_byte, ofs=5, size=1> 5 1 <class 'ctypes.c_byte'>