Let's say I have a class
class Foo:
def __init__(self):
pass
def meth1(self, *args):
do_stuff()
def meth2(self, **kwargs):
more_stuff()
def callme(self):
print "I'm called!"
and I want to smartly modify it so that callme() is called after executing meth1, meth2 and everything else. How do I do that? I've never used either class decorators or metaclasses, so I'm not sure which is the way to go and also how to use them properly.
With metaclasses, I've put together the following:
from types import FunctionType
def addcall_meta(name, bases, dct):
newdct = dict(dct)
for k, v in dct.items():
if isinstance(v, FunctionType) and k not in ('__metaclass__', 'callme'):
# the above can include more filters such as not startswith, etc.
print k, 'is a function!'
def newmethod(self, *args, **kwargs):
v(self, *args, **kwargs)
dct['callme'](self)
newdct[k] = newmethod
return type(name, bases, newdct)
With a class decorator:
def addcall_deco(cls):
dct = {}
for k, v in cls.__dict__.items():
if isinstance(v, FunctionType) and k != 'callme':
def newv(self, *args, **kwargs):
v(self, *args, **kwargs)
self.callme()
cls.k = newv
return cls
Both seem to work for my super-simple example:
In [75]: Foo()
I'm called!
Out[75]: <__main__.Foo instance at 0x21ed680>
Are there obvious reasons to use one and not the other (such as specific corner cases, etc.)? I also figure I could somehow use __new__, but from the common-sense point of view, I want to modify the class, not all of its instances.