There is no way to directly declare forward-references in Python, but there are several workarounds, a few of which are reasonable:
1) Add the subclasses manually after they are defined.
- Pros: easy to do; Base.subs is updated in one place
- Cons: easy to forget (plus you don't want to do it this way)
Example:
class Base(object):
pass
class Sub1(Base):
pass
class Sub2(Base):
pass
class Sub3(Base):
pass
Base.subs = [sub3, sub1]
2) Create Base.subs with str values, and use a class decorator to substitute the actual subclasses (this can be a class method on Base or a function -- I'm showing the function version, although I would probably use the method version).
- Pros: easy to do
- Cons: somewhat easy to forget;
Example:
def register_with_Base(cls):
name = cls.__name__
index = Base.subs.index(name)
Base.subs[index] = cls
return cls
class Base(object):
subs = ['Sub3', 'Sub1']
@register_with_Base
class Sub1(Base):
pass
class Sub2(Base):
pass
@register_with_Base
class Sub3(Base):
pass
3) Create Base.subs with str values, and have the method that uses Base.subs do the substitution.
- Pros: no extra work in decorators, no forgetting to update `subs` later
- Cons: small amount of extra work when accessing `subs`
Example:
class Base(object):
subs = ['Sub3', 'Sub1']
def select_sub(self, criteria):
for sub in self.subs:
sub = globals()[sub]
if #sub matches criteria#:
break
else:
# use a default, raise an exception, whatever
# use sub, which is the class defined below
class Sub1(Base):
pass
class Sub2(Base):
pass
class Sub3(Base):
pass
I would use option 3 myself, as it keeps the functionality and the data all in one place. The only thing you have to do is keep subs up to date (and write the appropriate subclasses, of course).
subslist, or more specifically, what determines whether and in what order the subclasses get put in it? @S.Lott's critique may be valid depending on exactly what you're trying to achieve, but more information is required to actually make such a judgment. Depending on what that is, it might be possible to make the base class and subclasses cooperate without having to modify the base class every time you add a subclass -- a weakness of the approach you're now using. – martineau Nov 12 '10 at 17:50