python: Share generated methods between objects.
* lang/python/pyme/util.py (GpgmeWrapper.__getattr__): Monkey-patch the class. * lang/python/tests/t-wrapper.py: Demonstrate the sharing. Signed-off-by: Justus Winter <justus@gnupg.org>
This commit is contained in:
parent
c5d118b2a7
commit
11314f0db6
@ -74,19 +74,25 @@ class GpgmeWrapper(object):
|
|||||||
if key[0] == '_' or self._getnameprepend() == None:
|
if key[0] == '_' or self._getnameprepend() == None:
|
||||||
return None
|
return None
|
||||||
name = self._getnameprepend() + key
|
name = self._getnameprepend() + key
|
||||||
|
func = getattr(pygpgme, name)
|
||||||
|
|
||||||
if self._errorcheck(name):
|
if self._errorcheck(name):
|
||||||
def _funcwrap(*args, **kwargs):
|
def _funcwrap(slf, *args, **kwargs):
|
||||||
args = [self.wrapped] + list(args)
|
return errorcheck(func(slf.wrapped, *args, **kwargs),
|
||||||
return errorcheck(getattr(pygpgme, name)(*args, **kwargs),
|
|
||||||
"Invocation of " + name)
|
"Invocation of " + name)
|
||||||
else:
|
else:
|
||||||
def _funcwrap(*args, **kwargs):
|
def _funcwrap(slf, *args, **kwargs):
|
||||||
args = [self.wrapped] + list(args)
|
return func(slf.wrapped, *args, **kwargs)
|
||||||
return getattr(pygpgme, name)(*args, **kwargs)
|
|
||||||
|
|
||||||
_funcwrap.__doc__ = getattr(getattr(pygpgme, name), "__doc__")
|
_funcwrap.__doc__ = getattr(func, "__doc__")
|
||||||
|
|
||||||
# Cache the wrapper function.
|
# Monkey-patch the class.
|
||||||
setattr(self, key, _funcwrap)
|
setattr(self.__class__, key, _funcwrap)
|
||||||
return _funcwrap
|
|
||||||
|
# Bind the method to 'self'.
|
||||||
|
def wrapper(*args, **kwargs):
|
||||||
|
return _funcwrap(self, *args, **kwargs)
|
||||||
|
_funcwrap.__doc__ = getattr(func, "__doc__")
|
||||||
|
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
@ -20,4 +20,6 @@
|
|||||||
from pyme import core
|
from pyme import core
|
||||||
|
|
||||||
d0 = core.Data()
|
d0 = core.Data()
|
||||||
|
d0.seek # trigger on-demand-wrapping
|
||||||
assert d0.seek == d0.seek, "Generated wrapper functions are not cached"
|
assert d0.seek == d0.seek, "Generated wrapper functions are not cached"
|
||||||
|
assert hasattr(core.Data, 'seek'), "Generated wrapper functions are not shared"
|
||||||
|
Loading…
Reference in New Issue
Block a user