callable as instancemethod? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:16:15Zhttp://stackoverflow.com/feeds/question/815947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/815947/callable-as-instancemethod1callable as instancemethod?David Alan2009-05-02T23:58:32Z2009-05-03T19:37:57Z
<p>Let's say we've got a metaclass <code>CallableWrappingMeta</code> which walks the body of a new class, wrapping its methods with a class, <code>InstanceMethodWrapper</code>:</p>
<pre><code>import types
class CallableWrappingMeta(type):
def __new__(mcls, name, bases, cls_dict):
for k, v in cls_dict.iteritems():
if isinstance(v, types.FunctionType):
cls_dict[k] = InstanceMethodWrapper(v)
return type.__new__(mcls, name, bases, cls_dict)
class InstanceMethodWrapper(object):
def __init__(self, method):
self.method = method
def __call__(self, *args, **kw):
print "InstanceMethodWrapper.__call__( %s, *%r, **%r )" % (self, args, kw)
return self.method(*args, **kw)
class Bar(object):
__metaclass__ = CallableWrappingMeta
def __init__(self):
print 'bar!'
</code></pre>
<p>Our dummy wrapper just prints the arguments as they come in. But you'll notice something conspicuous: the method isn't passed the instance-object receiver, because even though <code>InstanceMethodWrapper</code> is callable, it is not treated as a function for the purpose of being converted to an instance method during class creation (after our metaclass is done with it).</p>
<p>A potential solution is to use a decorator instead of a class to wrap the methods -- that function will become an instance method. But in the real world, <code>InstanceMethodWrapper</code> is much more complex: it provides an API and publishes method-call events. A class is more convenient (and more performant, not that this matters much).</p>
<p>I also tried some dead-ends. Subclassing <code>types.MethodType</code> and <code>types.UnboundMethodType</code> didn't go anywhere. A little introspection, and it appears they decend from <code>type</code>. So I tried using both as a metaclass, but no luck there either. It might be the case that they have special demands as a metaclass, but it seems we're in undocumented territory at this point.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/815947/callable-as-instancemethod/815982#8159820Answer by David Alan for callable as instancemethod?David Alan2009-05-03T00:26:02Z2009-05-03T01:16:36Z<p><strong>Edit</strong>: I lie yet again. The <code>__?attr__</code> attributes on functions are readonly, but apparently do not always throw an <code>AttributeException</code> exception when you assign? I dunno. Back to square one!</p>
<p><strong>Edit</strong>: This doesn't actually solve the problem, as the wrapping function won't proxy attribute requests to the <code>InstanceMethodWrapper</code>. I could, of course, duck-punch the <code>__?attr__</code> attributes in the decorator--and it is what I'm doing now--but that's ugly. Better ideas are very welcome.</p>
<p><hr /></p>
<p>Of course, I immediately realized that combining a simple decorator with our classes will do the trick:</p>
<pre><code>def methodize(method, callable):
"Circumvents the fact that callables are not converted to instance methods."
@wraps(method)
def wrapper(*args, **kw):
return wrapper._callable(*args, **kw)
wrapper._callable = callable
return wrapper
</code></pre>
<p>Then you add the decorator to the call to <code>InstanceMethodWrapper</code> in the metaclass:</p>
<pre><code>cls_dict[k] = methodize(v, InstanceMethodWrapper(v))
</code></pre>
<p>Poof. A little oblique, but it works.</p>
http://stackoverflow.com/questions/815947/callable-as-instancemethod/816072#8160720Answer by Unknown for callable as instancemethod?Unknown2009-05-03T01:41:18Z2009-05-03T01:41:18Z<p>I'm guessing you are trying to make a metaclass that wraps every method in the class with a custom function.</p>
<p>Here is my version which I think is a little bit less oblique.</p>
<pre><code>import types
class CallableWrappingMeta(type):
def __new__(mcls, name, bases, cls_dict):
instance = type.__new__(mcls, name, bases, cls_dict)
for k in dir(instance):
v = getattr(instance, k)
if isinstance(v, types.MethodType):
setattr(instance, k, instanceMethodWrapper(v))
return instance
def instanceMethodWrapper(function):
def customfunc(*args, **kw):
print "instanceMethodWrapper(*%r, **%r )" % (args, kw)
return function(*args, **kw)
return customfunc
class Bar(object):
__metaclass__ = CallableWrappingMeta
def method(self, a, b):
print a,b
a = Bar()
a.method("foo","bar")
</code></pre>
http://stackoverflow.com/questions/815947/callable-as-instancemethod/817108#8171080Answer by fivebells for callable as instancemethod?fivebells2009-05-03T13:53:23Z2009-05-03T13:53:23Z<p>I think you need to be more specific about your problem. The original question talks about wrapping a function, but your subsequent answer seems to talk about preserving function attributes, which seems to be a new factor. If you spelled out your design goals more clearly, it might be easier to answer your question.</p>
http://stackoverflow.com/questions/815947/callable-as-instancemethod/817815#8178151Answer by Alex Martelli for callable as instancemethod?Alex Martelli2009-05-03T19:37:57Z2009-05-03T19:37:57Z<p>Just enrich you <code>InstanceMethodWrapper</code> class with a <code>__get__</code> (which can perfectly well just <code>return self</code>) -- that is, make that class into a <em>descriptor</em> type, so that its instances are descriptor objects. See <a href="http://users.rcn.com/python/download/Descriptor.htm" rel="nofollow">http://users.rcn.com/python/download/Descriptor.htm</a> for background and details.</p>
<p>BTW, if you're on Python 2.6 or better, consider using a class-decorator instead of that metaclass -- we added class decorators exactly because so many metaclasses were being used just for such decoration purposes, and decorators are really much simpler to use.</p>