vote up 3 vote down star
5

In Python 2.5, is there a way to create a decorator that decorates a class? Specifically, I want to use a decorator to add a member to a class and change the constructor to take a value for that member.

Looking for something like the following (which has a syntax error on 'class Foo:':

def getId(self): return self.__id

class addID(original_class):
    def __init__(self, id, *args, **kws):
        self.__id = id
        self.getId = getId
        original_class.__init__(self, *args, **kws)

@addID
class Foo:
    def __init__(self, value1):
        self.value1 = value1

if __name__ == '__main__':
    foo1 = Foo(5,1)
    print foo1.value1, foo1.getId()
    foo2 = Foo(15,2)
    print foo2.value1, foo2.getId()

Thanks, Rob

Edit: Rereading this question, I guess what I'm really after is a way to do something like a C# interface in Python. I need to switch my paradigm I suppose.

flag

Do you know what's funny? The Wikipedia article on the Decorator pattern tells you exactly how to implement a decorator IN PYTHON. en.wikipedia.org/wiki/Decorator_pattern – Randolpho Mar 25 at 15:19
9  
While that's useful, Python decorators are different than the decorator pattern. An unfortunate name I suppose. I may end up going that way, though. Thanks. – Robert Gowland Mar 25 at 15:33
1  
@Robert Gowland: Very diplomatic. – Jarret Hardie Mar 26 at 0:25

4 Answers

vote up 8 vote down check

I would second the notion that you may wish to consider a subclass instead of the approach you've outlined. However, not knowing your specific scenario, YMMV :-)

What you're thinking of is a metaclass. The __new__ function in a metaclass is passed the full proposed definition of the class, which it can then rewrite before the class is created. You can, at that time, sub out the contructor for a new one.

Example:

def substitute_init(self, id, *args, **kwargs):
    pass

class FooMeta(type):

    def __new__(cls, name, bases, attrs):
        attrs['__init__'] = substitute_init
        return super(FooMeta, cls).__new__(cls, name, bases, attrs)

class Foo(object):

    __metaclass__ = FooMeta

    def __init__(self, value1):
        pass

Replacing the constructor is perhaps a bit dramatic, but the language does provide support for this kind of deep introspection and dynamic modification.

link|flag
Thank-you, that's what I'm looking for. A class that can modify any number of other classes such that they all have a particular member. My reasons for not having the classes inherit from a common ID class is that I want to have non-ID versions of the classes as well as ID versions. – Robert Gowland Mar 25 at 15:51
vote up 0 vote down

Is there a reason you're not using inheritance?

link|flag
vote up 8 vote down

That's not a good practice and there is no mechanism to do that because of that. The right way to accomplish what you want is inheritance.

Take a look into the class documentation.

A little example:

class Employee(object):

    def __init__(self, age, sex, siblings=0):
        self.age = age
        self.sex = sex    
        self.siblings = siblings

    def born_on(self):    
        today = datetime.date.today()

        return today - datetime.timedelta(days=self.age*365)


class Boss(Employee):    
    def __init__(self, age, sex, siblings=0, bonus=0):
        self.bonus = bonus
        Employee.__init__(self, age, sex, siblings)

This way Boss has everything Employee has, with also his own __init__ method and own members.

link|flag
I guess what I wanted to was have Boss agnostic of the class that it contains. That is, there may be dozens of different classes that I want to apply Boss features to. Am I left with having these dozen classes inherit from Boss? – Robert Gowland Mar 25 at 15:40
@Robert Gowland: That's why Python has multiple inheritance. Yes, you should inherit various aspects from various parent classes. – S.Lott Mar 25 at 17:16
@S.Lott: In general multiple inheritance is a bad idea, even too much levels of inheritance is bad too. I shall recommend you to stay away from multiple inheritance. – mpeterson Mar 26 at 12:39
mpeterson: Is multiple inheritance in python worse than this approach? What's wrong with python's multiple inheritance? – Arafangion Aug 4 at 2:00
vote up 7 vote down

Apart from the question whether class decorators are the right solution to your problem:

in Python 2.6 and higher, there are class decorators with the @-syntax, so you can write:

@addID
class Foo:
    pass

in older versions, you can do it another way:

class Foo:
    pass

Foo = addID(Foo)

Note however that this works the same as for function decorators, and that the decorator should return the new (or modified original) class, which is not what you're doing in the example. The addID decorator would look like this:

def addID(original_class):
    def __init__(self, id, *args, **kws):
        self.__id = id
        self.getId = getId
        original_class.__init__(self, *args, **kws)

    original_class.__init__ = __init__
    return original_class

You could then use the appropriate syntax for your python version as described above.

But I agree with others that inheritance is better suited if you want to override __init__.

link|flag
+1 for noting that Python 2.6+ has class decorators. – Jarret Hardie Mar 26 at 0:27
... even though the question specifically mentions Python 2.5 :-) – Jarret Hardie Mar 26 at 0:28

Your Answer

Get an OpenID
or

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