vote up 2 vote down star

I use a default IDisposable implementation template (pattern) for my code.

snippet:

public void Dispose()
{
    Dispose(true);

    GC.SuppressFinalize(this);
}

protected virtual void Dispose(bool isDisposing)
{
    if (!this.disposed)
    {
        if (isDisposing)
        {
            //cleanup managed resources
        }

        //cleanup unmanaged resources

        this.disposed = true;
    }
}

My question: why is the call "GC.SuppressFinalize(this)" in the Dispose public method? I would place "GC.SuppressFinalize(this)" in the "if (isDisposing)" section of the protected method, after disposing managed resources.

Like this:

protected virtual void Dispose(bool isDisposing)
{
    if (!this.disposed)
    {
       if (isDisposing)
       {
           //cleanup managed resources

           GC.SuppressFinalize(this);
       }

       //cleanup unmanaged resources

       this.disposed = true;
    }
}
flag

44% accept rate
As Stackoverflow supports tagging, you should not prefix your message title with [.NET] ;-) – Fabian Vilers Mar 3 at 9:33

5 Answers

vote up 2 vote down check

I suppose its a clear case of Template Design pattern.

Your abstract class is Designed to take care of all important/necessary tasks required (Here, GC.SuppressFinalize(this)), and allowing a derived class to override only some part of the code.

There are 2 cases here:
Snippet 1, SuppressFinalize, in Dispose
Snippet 2, SuppressFinalize, in Dispose(true)

Here, Snippet 1, always makes sure that GC.SuppressFinalize is executed always. While snippet 2, leaves the execution of GC.SuppressFinalize at the mercy of derived class.

So, by putting GC.SuppressFinalize, in Dispose method, you as a designer of your class will always make sure that irrespective of whatever code written by derived classes, GC.SuppressFinalize will be executed.

This is only the benefit of writing SuppressFinalize in Dispose rather then Dispose(true).

link|flag
I think nils_gate is very much on topic. Unless you dont cae about inheritance, but then edit your question. – Henk Holterman Mar 3 at 11:54
When the derived class omits the base dispose call then more resources are not cleaned up... – Patrick Peters Mar 3 at 12:13
Yes, or if a (hiding/new) Dispose() is implemented and called on a derived class. But that simply breaks the pattern. Solution: Don't Do It. – Henk Holterman Mar 3 at 12:24
I think it is the responsibility of the derived class to implement the base calls correctly, so I still prefer my solution. – Patrick Peters Mar 6 at 9:09
vote up 0 vote down

The idea is that your cleanup code should only be called once. However there are two points of entry: the Dispose method and object finalizers. When Dispose is called, you opt-out of finalization so that your cleanup code is only called once. The code here might illustrate it better.

Quote:

// NOTE: Leave out the finalizer altogether if this class doesn't 
// own unmanaged resources itself, but leave the other methods
// exactly as they are.
link|flag
My example is an complex base class structure with IDisposable. I have searched many scenario's with IDisposable implementations (templates), but didn't find a correct base-class -> derived class example. – Patrick Peters Mar 3 at 10:38
The standard MSDN pattern includes a derived class - that's why Dispose(bool) is virtual. – Henk Holterman Mar 3 at 12:35
it is not a complete example @ MSDN: MSDN shows only the base-class implementation and not a base-class/derived class example. – Patrick Peters Mar 5 at 6:16
vote up 1 vote down

I think either layout could have been chosen, but probably they wanted to emphasize "put all deallocation code in this method" in the protected Dispose method, so they put the other artifact of disposing (Suppressing finalization) elsewhere.

Also, suppose a derived class had another reason for calling the protected Dispose method, but did still want finalization to occur (for whatever imagined reason, I don't know).

link|flag
But what if I call the public Dispose of several times (because that should be possible according the guidelines), the suppress call is also called several times. That shouldn't be the case... In my code example it will be called just once. – Patrick Peters Mar 3 at 10:14
Although Dispose can be called several times, it's generally a symptom of problems elsewhere in the codebase - two or more pieces of code beliefing that they control the life of the object. Similarly, GC.SuppressFinalize can be called multiple times. – Damien_The_Unbeliever Mar 3 at 10:53
Though it could be flaw in code when multiple calls of Dispose is called, it should be programmed defensively so that it can handle it. – Patrick Peters Mar 3 at 11:00
Calling SuppressFinalize multiple times is not a problem. It is a sign of problems elswhere though. – Henk Holterman Mar 3 at 12:01
vote up 1 vote down

Cause .Dispose is when managed code (your code) disposes of the object thereby opting out of finalisation. People usually create another route into Dispose(bool disposing) via a finaliser and the call wouldn't make any sense for the finaliser to make.

link|flag
vote up 3 vote down

The Dispose(bool isDisposing) method isn't part of the IDisposable interface.

You would normally call Dispose(true) from your Dispose method, and call Dispose(false) from your finalizer, as a fallback in the case where the object hasn't already been disposed.

Calling SuppressFinalize tells the GC that there's no need to call your object's finalizer, presumably because all your cleanup was done when Dispose was called.

If you don't have a finalizer on your class, then you don't need to call SuppressFinalize at all, since there's no finalizer to suppress!

Joe Duffy has some great guidelines on disposal, finalization, garbage collection etc.

link|flag
Thanks for the info, but is this on-topic ? Look at my specific question, it's about the location of the suppress call. – Patrick Peters Mar 3 at 10:58
The examples in your question don't have finalizers, and if that's also the case in your "real" code then calling SuppressFinalize is irrelevant/unnecessary wherever you do it, because there's no finalizer to suppress. – Luke Mar 3 at 11:01
It is indeed not part of the IDisposable interface but it is very much part of the Disposable implementation pattern. See MSDN – Henk Holterman Mar 3 at 11:43
@Henk, Absolutely right, I should've made that clear in my answer. The point I'm trying to make is that where you call SuppressFinalize is completely irrelevant if your class doesn't have a finalizer in the first place! – Luke Mar 3 at 11:52
Luke, given the context, Peters class simply needs to have a destructor. – Henk Holterman Mar 3 at 12:15
show 3 more comments

Your Answer

Get an OpenID
or

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