up vote 1 down vote favorite
share [g+] share [fb]
class Widget(models.Model):
    title = models.CharField(max_length=255)

class WidgetFile(models.Model):
    widget = models.ForeignKey(Widget)

    def delete():
        # do some custom hard drive file vodo
        super(WidgetFile, self).delete()

... some code to create a Widget and a WidgetFile to go with it ...

some_widget_instance.delete()

This deletes the Widget and it's related WidgetFile without triggering my special delete method above. Why? and what is the best way to circumvent this.

link|improve this question

This problem arose because when a widget is deleted it doesn't trigger the delete() method on each of it's dependents (classes that have a foreign key reference to it). It simply deletes the related objects from the DB. This makes it more efficient but obviously leads to problems like this. – orokusaki Dec 17 '09 at 19:03
feedback

6 Answers

up vote 4 down vote accepted

I figured it out. I just put this on that Widget model:

def delete(self):
    files = WidgetFile.objects.filter(widget=self)
    if len(files):
        for file in files:
            file.delete()
    super(Widget, self).delete()

This triggered the necessary delete() method on each of the related objects, thus triggering my custom file deleting code. It's more database expensive yes, but when you're trying to delete files on a hard drive anyway, it's not such a big expense to hit the db a few extra times.

link|improve this answer
feedback

Is some_widget_instance and instance of Widget or of WidgetFile ? Because if it is an instance of Widget it won't get your custom delete() function, which is in the WidgetFile class.

link|improve this answer
feedback

This seems only be sense-full if one Widget is connected to one WidgetFile exactly. In that case you should use a OneToOneField

from On-to-one examples:

# Delete the restaurant; the waiter should also be removed
>>> r = Restaurant.objects.get(pk=1)
>>> r.delete()
link|improve this answer
true indeed, but Django does a database level mass delete on all waiters without triggering each of their delete methods, which is less expensive, but also less conventional. – orokusaki Oct 8 '09 at 17:07
feedback

Just to throw in a possible way around this problem: pre-delete signal. (Not in any way implying there's no actual solution.)

link|improve this answer
feedback

Using clear() prior to deleting, removes all objects from the related object set.

see django-following-relationships-backward

example:

group.link_set.clear() 
group.delete()
link|improve this answer
feedback

It should look like described on the django site:

class Blog(models.Model):
    name = models.CharField(max_length=100)
    tagline = models.TextField()
    def save(self, *args, **kwargs):
        do_something()
        super(Blog, self).save(*args, **kwargs) # Call the "real" save() method.
        do_something_else()

http://docs.djangoproject.com/en/dev/topics/db/models/#overriding-predefined-model-methods

you forgot to pass some arguments

link|improve this answer
that's save – orokusaki May 25 '11 at 17:10
feedback

Your Answer

 
or
required, but never shown

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