Which one synchronization method to use to ensure a singleton remains a singleton?

+(Foo*)sharedInstance
{
   @synchronized(self)
   {
      if (nil == _sharedInstance)
      {
         _sharedInstance = [[Foo alloc] init];
         ...
      }
   }
   return _sharedInstance;
}

or using a mutex?

#import <pthread.h>

static pthread_mutex_t _mutex = PTHREAD_MUTEX_INITIALIZER;

+(Foo*)sharedInstance
{
   pthread_mutex_lock(&_mutex);
   if (nil == _sharedInstance)
   {
      _sharedInstance = [[Foo alloc] init];
      ...
   }
   pthread_mutex_unlock(&_mutex);
   return _sharedInstance;
}

Hmmm.. any comments on this?

link|improve this question

71% accept rate
1  
You might be interested in reading this (steve.yegge.googlepages.com/singleton-considered-stupid). – sand Feb 4 '10 at 15:18
Despite yegge's hate for singletons, they definitely server a purpose on the iPhone. But if you are simply creating a 'namespace', use class methods instead. – bentford Jul 15 '11 at 5:48
feedback

4 Answers

up vote 28 down vote accepted

Keep in mind that for both Colin's and Harald's otherwise correct answers, there is a very subtle race condition that could lead you to a world of woe.

Namely, if the -init of the class being allocated happens to call the sharedInstance method, it will do so before the variable is set. In both cases it will lead to a deadlock.

This is the one time that you want to separate the alloc and the init. Cribbing Colin's code because it is the best solution (assuming Mac OS X):

+(MyClass *)sharedInstance
{   
    static MyClass *sharedInstance = nil;
    static dispatch_once_t pred;

    dispatch_once(&pred, ^{
        sharedInstance = [[MyClass alloc] init];
    });

    return sharedInstance;
}

note this only works on Mac OS X; X 10.6+ and iOS 4.0+, in particular. On older operating systems, where blocks are not available, use a lock or one of the various means of doing something once that isn't blocks based.

link|improve this answer
Thanks for this one, although it took me half an hour to find the correct reference to the blocks (^) syntax developer.apple.com/Mac/library/documentation/Cocoa/Conceptual/…, which for some reason is not included in their Objective C documentation – Harald Scheirich Feb 5 '10 at 5:18
Thanks. It was the first thing too I was thinking about while seeing your answer. I did not know there is a possibility to write such blocks in objective c (like anonymous class implementation in Java or delegates in C#). This is the answer for my other problem here: stackoverflow.com/questions/2118728/… Instead of using callbacks I now use blocks. :) Perhaps, I initialize my singleton in the AppDelegate and actually don't care about thread concurrency. The instance is simple there, when needed. It is a kind of cache for few things like images etc. – MacTouch Feb 5 '10 at 20:50
2  
@bbum, (1) why would -init call +sharedInstance, and (2) why do you include the line if (sharedInstance) return sharedInstance;? – MattDiPasquale Jul 10 '11 at 12:38
4  
Just for completeness - the above works on iOS 4 and above when blocks were introduced on iOS. – Hunter Jul 17 '11 at 2:35
I would suggest removing the "if(sharedInstance) return sharedInstance", it is Double Checked Locking and does not work (see aristeia.com/Papers/DDJ_Jul_Aug_2004_revised.pdf) – Jochen Nov 29 '11 at 1:49
show 4 more comments
feedback

The fastest thread safe way to do this is with Grand Central Dispatch ( libdispatch ) and dispatch_once()

+(MyClass *)sharedInstance
{   
    static MyClass *sharedInstance = nil;
    static dispatch_once_t pred;

    dispatch_once(&pred, ^{
        sharedInstance = [[MyClass alloc] init];
    });

    return sharedInstance;
}
link|improve this answer
feedback

This CocoaDev page can be useful for your need.

link|improve this answer
Thanks. Hmm.. I did not think about the possibility to retain or overrelease a singleton. Hell, who does such things? :) – MacTouch Feb 4 '10 at 11:28
feedback

If anyone cares, here is a Macro for the same thing:

   /*!
    * @function Singleton GCD Macro
    */
    #ifndef SINGLETON_GCD
    #define SINGLETON_GCD(classname)                            \
                                                                \
    + (classname *)shared##classname {                          \
                                                                \
        static dispatch_once_t pred;                            \
        static classname * shared##classname = nil;             \
        dispatch_once( &pred, ^{                                \
            shared##classname = [[self alloc] init];            \
        });                                                     \
        return shared##classname;                               \
    }                                                           
    #endif
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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