vote up 11 vote down star
2

I am trying to write a decorator to do logging:

def logger(myFunc):
    def new(*args, **keyargs):
        print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__)
        return myFunc(*args, **keyargs)

    return new

class C(object):
    @logger
    def f():
        pass

C().f()

I would like this to print:

Entering C.f

but instead I get this error message:

AttributeError: 'function' object has no attribute 'im_class'

Presumably this is something to do with the scope of 'myFunc' inside 'logger', but I've no idea what.

flag

5 Answers

vote up 9 vote down check

Claudiu's answer is correct, but you can also cheat by getting the class name off of the self argument. This will give misleading log statements in cases of inheritance, but will tell you the class of the object whose method is being called. For example:

from functools import wraps  # use this to preserve function signatures and docstrings
def logger(func):
    @wraps(func)
    def with_logging(*args, **kwargs):
        print "Entering %s.%s" % (args[0].__class__.__name__, func.__name__)
        return func(*args, **kwargs)
    return with_logging

class C(object):
    @logger
    def f(self):
        pass

C().f()

As I said, this won't work properly in cases where you've inherited a function from a parent class; in this case you might say

class B(C):
    pass

b = B()
b.f()

and get the message Entering B.f where you actually want to get the message Entering C.f since that's the correct class. On the other hand, this might be acceptable, in which case I'd recommend this approach over Claudiu's suggestion.

link|flag
typo:you forgot return with_logging in the logger function. – Piotr Lesnicki Nov 20 '08 at 20:14
by the way, functools.wraps does not preserve the im_* attributes. Do you think this ommission could be considered a bug? – Piotr Lesnicki Nov 20 '08 at 20:21
I can't pretend I fully understand what's going on with the @wraps yet, but it certainly fixes my problem. Thanks very much. – Charles Anderson Nov 21 '08 at 11:00
Piotr: Thanks for pointing out the missing return; I edited my post to fix that. As for the im_* attributes, I'd have to think about all the implications of copying those attributes before saying it's definitely a bug. However, I can't think of a good reason offhand for omitting them. – Eli Courtwright Nov 21 '08 at 14:39
Charles: I've posted another question on Stack Overflow explaining the use of wraps: stackoverflow.com/questions/308999/… – Eli Courtwright Nov 21 '08 at 14:57
vote up 4 vote down

Class functions should always take self as their first argument, so you can use that instead of im_class.

def logger(myFunc):
    def new(self, *args, **keyargs):
        print 'Entering %s.%s' % (self.__class__.__name__, myFunc.__name__)
        return myFunc(self, *args, **keyargs)

    return new 

class C(object):
    @logger
    def f(self):
        pass
C().f()

at first I wanted to use self.__name__ but that doesn't work because the instance has no name. you must use self.__class__.__name__ to get the name of the class.

link|flag
vote up 3 vote down

It seems that while the class is being created, Python creates regular function objects. They only get turned into unbound method objects afterwards. Knowing that, this is the only way I could find to do what you want:

def logger(myFunc):
    def new(*args, **keyargs):
        print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__)
        return myFunc(*args, **keyargs)

    return new

class C(object):
    def f(self):
        pass
C.f = logger(C.f)
C().f()

This outputs the desired result.

If you want to wrap all the methods in a class, then you probably want to create a wrapClass function, which you could then use like this:

C = wrapClass(C)
link|flag
wrapclass should be careful due to static method. – Piotr Lesnicki Nov 20 '08 at 20:16
This looks like a good use case for class decorators (new in Python 2.6). They work in exactly the same way as function decorators. – wilberforce Nov 21 '08 at 7:47
vote up 3 vote down

Functions only become methods at runtime. That is, when you get C.f you get a bound function (and C.f.im_class is C). At the time your function is defined it is just a plain function, it is not bound to any class. This unbound and disassociated function is what is decorated by logger.

self.__class__.__name__ will give you the name of the class, but you can also use descriptors to accomplish this in a somewhat more general way. This pattern is described in a blog post on Decorators and Descriptors, and an implementation of your logger decorator in particular would look like:

class logger(object):
    def __init__(self, func):
        self.func = func
    def __get__(self, obj, type=None):
        return self.__class__(self.func.__get__(obj, type))
    def __call__(self, *args, **kw):
        print 'Entering %s' % self.func
        return self.func(*args, **keyargs)

class C(object):
    @logger
    def f(self, x, y):
        return x+y

C().f(1, 2)
# => Entering <bound method C.f of <__main__.C object at 0x...>>

Obviously the output can be improved (by using, for example, getattr(self.func, 'im_class', None)), but this general pattern will work for both methods and functions. However it will not work for old-style classes (but just don't use those ;)

link|flag
vote up 0 vote down

You can also use new.instancemethod() to create an instance method (either bound or unbound) from a function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.