Is there a way to determine what the 'real' class of a Django database object is, after it has been returned from a query for on a base class?

For instance, if I have these models...

class Animal(models.Model):
    name= models.CharField(max_length=128)

class Person(Animal):
    pants_size = models.IntegerField(null=True)

class Dog(Animal):
    panting_rate = models.IntegerField(null=True)

And create these instances...

Person(name='Dave').save()
Dog(name='Mr. Rufflesworth').save()

If I do a query like Animal.objects.all(), I end up with two Animal instances, not an instance of Person and an instance of Dog. Is there any way to determine which instance is of which type?


FYI: I already tried doing this...

isinstance(Animal.objects.get(name='Dave'),Person) # <-- Returns false!

But that doesn't seem to work.

link|improve this question

Welcome to Dja... oh screw it. Here it is, plain and simple. Django model inheritance is broken, and can't be fixed without a lot of work. – Ignacio Vazquez-Abrams Mar 7 '11 at 22:03
Errr, oh dear, that's not exactly the answer I was hoping for. Does that mean a lot of work from the guys at the Django Project, or does that mean a lot of work by me to hack around the issue? – Chris W. Mar 7 '11 at 22:46
feedback

2 Answers

up vote 2 down vote accepted

I had a similar problem in the past and eventually found a satisfactory solution thanks to this answer.

By implementing an abstract class that stores the real class and have it inherited by your parent class, once can cast each parent class instance to the actual type. (The abstract class used in that answer is now available in django-model-utils.)

For example, once you have the abstract class defined (or if you have django-model-utils), you can simply do:

class Animal(InheritanceCastModel):
    name= models.CharField(max_length=128)

class Person(Animal):
    pants_size = models.IntegerField(null=True)

class Dog(Animal):
    panting_rate = models.IntegerField(null=True)

Using it is trivial:

>>> from zoo.models import Animal, Person, Dog
>>> Animal(name='Malcolm').save()
>>> Person(name='Dave').save()
>>> Dog(name='Mr. Rufflesworth').save()
>>> for obj in Animal.objects.all():
...     print obj.name, type(obj.cast())
...
Malcolm <class 'zoo.models.Animal'>
Dave <class 'zoo.models.Person'>
Mr. Rufflesworth <class 'zoo.models.Dog'>
link|improve this answer
Looks like I'm going to be going with django-model-utils' InheritanceCastModel. Thanks a lot! – Chris W. Mar 9 '11 at 18:38
You're welcome! – Shawn Chin Mar 9 '11 at 19:54
Unless you're using Django < 1.2, you should not use InheritanceCastModel -- see comment on my answer. – DrMeers Mar 9 '11 at 20:04
feedback

Yes, this can be done -- you just need to query the automatic reverse OneToOneField relations. E.g.:

a = Animal.objects.select_related('person', 'dog')[0]
a = a.person or a.dog or a # whichever is not None
print a
print isinstance(a, Person)

The use of select_related here allows this to be done in a single query, rather than having to test for DoesNotExist exceptions when you access the subclass attributes/relations.

See also my answer here and the InheritanceManager in django-model-utils for a more elegant/long-term solution.

We're looking at ways of making this easier in Django's core.

link|improve this answer
Thanks for your answer, for my purposes though I wont actually know ahead of time all the possible class names to try to reference, as such, I'll need to use django-model-utils. – Chris W. Mar 9 '11 at 18:37
That's why I recommended it for the long-term. Note however that you're better of the InheritanceManager I mentioned above than InheritanceCastModel as suggested in your accepted answer, unless you're using a version of Django older than 1.2 -- InheritanceCastModel is less convenient and less efficient. – DrMeers Mar 9 '11 at 20:03
feedback

Your Answer

 
or
required, but never shown

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