Python: wrapping method invocations with pre and post methods - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T05:10:22Zhttp://stackoverflow.com/feeds/question/258119http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods3Python: wrapping method invocations with pre and post methodsMark Harrison2008-11-03T08:23:10Z2009-02-22T20:45:09Z
<p>I am instantiating a class A (which I am importing from somebody
else, so I can't modify it) into my class X.</p>
<p>Is there a way I can intercept or wrape calls to methods in A?
I.e., in the code below can I call</p>
<pre><code>x.a.p1()
</code></pre>
<p>and get the output</p>
<pre><code>X.pre
A.p1
X.post
</code></pre>
<p>Many TIA!</p>
<pre><code>class A:
# in my real application, this is an imported class
# that I cannot modify
def p1(self): print 'A.p1'
class X:
def __init__(self):
self.a=A()
def pre(self): print 'X.pre'
def post(self): print 'X.post'
x=X()
x.a.p1()
</code></pre>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258125#2581251Answer by Tomalak for Python: wrapping method invocations with pre and post methodsTomalak2008-11-03T08:26:27Z2008-11-03T08:26:27Z<p>The no-whistles-or-bells solution would be to write a wrapper class for class A that does just that.</p>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258179#2581790Answer by Peter Hoffmann for Python: wrapping method invocations with pre and post methodsPeter Hoffmann2008-11-03T09:06:35Z2008-11-03T10:23:08Z<p>You could just modify the A instance and replace the p1 function with a wrapper function:</p>
<pre><code>def wrapped(pre, post, f):
def wrapper(*args, **kwargs):
pre()
retval = f(*args, **kwargs)
post()
return retval
return wrapper
class Y:
def __init__(self):
self.a=A()
self.a.p1 = wrapped(self.pre, self.post, self.a.p1)
def pre(self): print 'X.pre'
def post(self): print 'X.post'
</code></pre>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258253#2582530Answer by Nethanel for Python: wrapping method invocations with pre and post methodsNethanel2008-11-03T10:00:30Z2008-11-06T16:56:02Z<p>I've just recently read about decorators in python, I'm not understanding them yet but it seems to me that they can be a solution to your problem. see Bruce Eckel intro to decorators at:
<a href="http://www.artima.com/weblogs/viewpost.jsp?thread=240808" rel="nofollow">http://www.artima.com/weblogs/viewpost.jsp?thread=240808</a></p>
<p>He has a few more posts on that topic there.</p>
<p>Edit: Three days later I stumble upon this article, which shows how to do a similar task without decorators, what's the problems with it and then introduces decorators and develop a quite full solution:
<a href="http://wordaligned.org/articles/echo" rel="nofollow">http://wordaligned.org/articles/echo</a></p>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258259#2582590Answer by Mark Harrison for Python: wrapping method invocations with pre and post methodsMark Harrison2008-11-03T10:07:25Z2008-11-03T10:07:25Z<p>Here's what I've received from Steven D'Aprano on comp.lang.python.</p>
<pre><code># Define two decorator factories.
def precall(pre):
def decorator(f):
def newf(*args, **kwargs):
pre()
return f(*args, **kwargs)
return newf
return decorator
def postcall(post):
def decorator(f):
def newf(*args, **kwargs):
x = f(*args, **kwargs)
post()
return x
return newf
return decorator
</code></pre>
<p>Now you can monkey patch class A if you want. It's probably not a great
idea to do this in production code, as it will effect class A everywhere.
[this is ok for my application, as it is basically a protocol converter and there's exactly one instance of each class being processed.]</p>
<pre><code>class A:
# in my real application, this is an imported class
# that I cannot modify
def p1(self): print 'A.p1'
class X:
def __init__(self):
self.a=A()
A.p1 = precall(self.pre)(postcall(self.post)(A.p1))
def pre(self): print 'X.pre'
def post(self): print 'X.post'
x=X()
x.a.p1()
</code></pre>
<p>Gives the desired result.</p>
<pre><code>X.pre
A.p1
X.post
</code></pre>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258274#2582743Answer by Thomas Watnedal for Python: wrapping method invocations with pre and post methodsThomas Watnedal2008-11-03T10:18:21Z2009-02-22T20:45:09Z<p>Here is the solution I and my colleagues came up with:</p>
<pre><code>from types import MethodType
class PrePostCaller:
def __init__(self, other):
self.other = other
def pre(self): print 'pre'
def post(self): print 'post'
def __getattr__(self, name):
if hasattr(self.other, name):
func = getattr(self.other, name)
return lambda *args, **kwargs: self._wrap(func, args, kwargs)
raise AttributeError(name)
def _wrap(self, func, args, kwargs):
self.pre()
if type(func) == MethodType:
result = func( *args, **kwargs)
else:
result = func(self.other, *args, **kwargs)
self.post()
return result
#Examples of use
class Foo:
def stuff(self):
print 'stuff'
a = PrePostCaller(Foo())
a.stuff()
a = PrePostCaller([1,2,3])
print a.count()
</code></pre>
<p>Gives:</p>
<pre><code>pre
stuff
post
pre
post
0
</code></pre>
<p>So when creating an instance of your object, wrap it with the PrePostCaller object. After that you continue using the object as if it was an instance of the wrapped object. With this solution you can do the wrapping on a per instance basis.</p>
http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258283#2582831Answer by Anders Sandvig for Python: wrapping method invocations with pre and post methodsAnders Sandvig2008-11-03T10:27:04Z2008-11-03T10:27:04Z<p>As others have mentioned, the wrapper/decorator solution is probably be the easiest one. I don't recommend modifyng the wrapped class itself, for the same reasons that you point out.</p>
<p>If you have many external classes you can write a code generator to generate the wrapper classes for you. Since you are doing this in Python you can probably even implement the generator as a part of the program, generating the wrappers at startup, or something.</p>