SWIG的-builtin选项具有更快的优势,并且可以免除多重继承的错误。
挫折是我无法在生成的类或任何子类上设置任何属性:
- 我可以通过子类化扩展python内置类型,如list,没有麻烦:
class Thing(list):
pass
Thing.myattr = 'anything' # No problem
- 但是在SWIG内置类型上使用相同的方法,会发生以下情况:
class Thing(SWIGBuiltinClass):
pass
Thing.myattr = 'anything'
AttributeError: type object 'Thing' has no attribute 'myattr'
我如何解决这个问题?
答案 0 :(得分:4)
我偶然发现了一个解决方案。我正在尝试使用元类,认为我可以设法覆盖子类中内置类型的 setattr 和 getattr 函数。
这样做我发现内置类已经有了一个元类(SwigPyObjectType),所以我的元类必须继承它。
就是这样。仅这就解决了这个问题。如果有人能解释原因,我会很高兴:
SwigPyObjectType = type(SWIGBuiltinClass)
class Meta(SwigPyObjectType):
pass
class Thing(SWIGBuiltinClass):
__metaclass__ = Meta
Thing.myattr = 'anything' # Works fine this time
答案 1 :(得分:0)
问题出在swig如何将“ -builtin”中的类实现为类似于内置类(因此得名)。
内置类不可扩展-尝试添加或修改“ str”的成员,而python将不允许您修改属性字典。
我有一个已经使用了几年的解决方案。
我不确定是否可以推荐它,因为:
但是..我喜欢它能很好地解决我们想要调试的一些晦涩的功能。
最初的想法不是我的,我来自: https://gist.github.com/mahmoudimus/295200,作者:Mahmoud Abdelkader
基本思想是在swig创建的类型对象中以非const字典的形式访问const字典,并添加/覆盖任何所需的方法。
仅供参考,类的运行时修改技术称为Monkeypatching,请参见https://en.wikipedia.org/wiki/Monkey_patch
首先-这是“ monkeypatch.py”:
''' monkeypatch.py:
I got this from https://gist.github.com/mahmoudimus/295200 by Mahmoud Abdelkader,
his comment: "found this from Armin R. on Twitter, what a beautiful gem ;)"
I made a few changes for coding style preferences
- Rudy Albachten April 30 2015
'''
import ctypes
from types import DictProxyType, MethodType
# figure out the size of _Py_ssize_t
_Py_ssize_t = ctypes.c_int64 if hasattr(ctypes.pythonapi, 'Py_InitModule4_64') else ctypes.c_int
# python without tracing
class _PyObject(ctypes.Structure):
pass
_PyObject._fields_ = [
('ob_refcnt', _Py_ssize_t),
('ob_type', ctypes.POINTER(_PyObject))
]
# fixup for python with tracing
if object.__basicsize__ != ctypes.sizeof(_PyObject):
class _PyObject(ctypes.Structure):
pass
_PyObject._fields_ = [
('_ob_next', ctypes.POINTER(_PyObject)),
('_ob_prev', ctypes.POINTER(_PyObject)),
('ob_refcnt', _Py_ssize_t),
('ob_type', ctypes.POINTER(_PyObject))
]
class _DictProxy(_PyObject):
_fields_ = [('dict', ctypes.POINTER(_PyObject))]
def reveal_dict(proxy):
if not isinstance(proxy, DictProxyType):
raise TypeError('dictproxy expected')
dp = _DictProxy.from_address(id(proxy))
ns = {}
ctypes.pythonapi.PyDict_SetItem(ctypes.py_object(ns), ctypes.py_object(None), dp.dict)
return ns[None]
def get_class_dict(cls):
d = getattr(cls, '__dict__', None)
if d is None:
raise TypeError('given class does not have a dictionary')
if isinstance(d, DictProxyType):
return reveal_dict(d)
return d
def test():
import random
d = get_class_dict(str)
d['foo'] = lambda x: ''.join(random.choice((c.upper, c.lower))() for c in x)
print "and this is monkey patching str".foo()
if __name__ == '__main__':
test()
这是一个使用Monkeypatch的虚构示例:
我在模块“ mystuff”中有一个用swig -python -builtin包装的类“ myclass”
我想添加一个额外的运行时方法“ namelen”,该方法返回myclass.getName()返回的名称的长度
import mystuff
import monkeypatch
# add a "namelen" method to all "myclass" objects
def namelen(self):
return len(self.getName())
d = monkeypatch.get_class_dict(mystuff.myclass)
d['namelen'] = namelen
x = mystuff.myclass("xxxxxxxx")
print "namelen:", x.namelen()
请注意,这也可以用于扩展或覆盖内置python类上的方法,如Monkeypatch.py中的测试所示:它向内置str类添加方法“ foo”,以返回原始副本带有大小写随机字母的字符串
我可能会替换:
# add a "namelen" method to all "myclass" objects
def namelen(self):
return len(self.getName())
d = monkeypatch.get_class_dict(mystuff.myclass)
d['namelen'] = namelen
使用
# add a "namelen" method to all "myclass" objects
monkeypatch.get_class_dict(mystuff.myclass)['namelen'] = lambda self: return len(self.getName())
避免额外的全局变量