Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the exact reason for using dispatch_once in the shared instance accessor of a singleton under ARC?

+ (MyClass *)sharedInstance
{
    //  Static local predicate must be initialized to 0
    static MyClass *sharedInstance = nil;
    static dispatch_once_t onceToken = 0;
    dispatch_once(&onceToken, ^{
        sharedInstance = [[MyClass alloc] init];
        // Do any other initialisation stuff here
    });
    return sharedInstance;
}

Isn't it a bad idea to instantiate the singleton asynchronously in the background? I mean what happens if I request that shared instance and rely on it immediately, but dispatch_once takes until Christmas to create my object? It doesn't return immediately right? At least that seems to be the whole point of Grand Central Dispatch.

So why are they doing this?

share|improve this question

3 Answers

up vote 124 down vote accepted

dispatch_once() is absolutely synchronous. Not all GCD methods do things asynchronously (case in point, dispatch_sync() is synchronous). The use of dispatch_once() replaces the following idiom:

+ (MyClass *)sharedInstance {
    static MyClass *sharedInstance;
    @synchronized(self) {
        if (sharedInstance == nil) {
            sharedInstance = [[MyClass alloc] init];
        }
    }
    return sharedInstance;
}

The benefit of dispatch_once() over this is that it's faster. It's also semantically cleaner, because the entire idea of dispatch_once() is "perform something once and only once", which is precisely what we're doing.

share|improve this answer

Because it will only run once. So if you try and access it twice from different threads it won't cause a problem.

Mike Ash has a full description in his Care and Feeding of Singletons blog post.

Not all GCD blocks are run asynchronously.

share|improve this answer
4  
Kevin's is a better answer, but I'm leaving mine to keep the link to Mike Ash's post. – Abizern Feb 2 '12 at 20:07

In addition to Kevin's answer, I believe your code has a bug that the memory manager is likely masking (by returning a page that's been zero'd). If you don't get lucky, the code will probably not execute as expected. From the comments on dispatch_once (follow it with "Jump to Definition"):

 * @abstract
 * A predicate for use with dispatch_once(). It must be initialized to zero.
 * Note: static and global variables default to zero.
 */
typedef long dispatch_once_t;

I also believe the comment on statics and globals is misleading. I don't believe C/C++ requires static locals to be initialized to anything, so it does not apply to statics within a block. In your example, sharedInstance is a block, and the predicate is a static local.

Raymond Chen has a good discussion on what can go wrong when leaving things like this to chance at http://blogs.msdn.com/b/oldnewthing/archive/2004/03/08/85901.aspx. You are covering most of the bases with dispatch_once, though.

share|improve this answer
1  
Wrong, the C standard guarantees that statics and global variables are initialized to 0 if there is no explicit initialization. – Sven May 3 at 0:36
Sven - Is it the case the initialization is guaranteed for both local and global statics? I've never been clear on it (but I don't spend too much time reading the standard). – noloader May 4 at 7:15
Yes it is. The C standard doesn't distinguish between local and global statics. It talks about objects with static storage duration which are all statics and global variables. – Sven May 4 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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