views:

457

answers:

2

I have a question on thread safety while using NSMutableDictionary

Main thread is reading data from NSMutableDictionary where key is Nsstring value is UIImage

Async thread is writing data to above dictionary (using NSOperationQueue)

how do I make above dictionary thread safe

Should I make Property NSMutableDictionary as "Atomic" or do I need to make any additional changes

@property(retain) NSMutableDictionary *dicNamesWithPhotos;

+6  A: 

NSMutableDictionary isn't designed to be thread-safe data structure, and simply marking the property as atomic, doesn't ensure that the underlying data operations are actually performed atomically (in a safe manner).

To ensure that each operation is done in a safe manner, you would need to guard each operation on the dictionary with a lock:

// in initialization
self.dictionary = [[NSMutableDictionary alloc] init];
// create a lock object for the dictionary
self.dictionary_lock = [[NSLock alloc] init];


// at every access or modification:
[object.dictionary_lock lock];
[object.dictionary setObject:image forKey:name];
[object.dictionary_lock unlock];

You should consider rolling your own NSDictionary that simply delegates calls to NSMutableDictionary while holding a lock:

@interface SafeMutableDictionary : NSMutableDictionary
{
    NSLock *lock;
    NSMutableDictionary *underlyingDictionary;
}

@end

@implementation SafeMutableDictionary

- (id)init
{
    if (self = [super init]) {
        lock = [[NSLock alloc] init];
        underlyingDictionary = [[NSMutableDictionary alloc] init];
    }
    return self;
}

- (void) dealloc
{
   [lock_ release];
   [underlyingDictionary release];
   [super dealloc];
}

// forward all the calls with the lock held
- (retval_t) forward: (SEL) sel : (arglist_t) args
{
    [lock lock]
    @try {
        return [underlyingDictionary performv:sel : args];
    }
    @finally {
        [lock unlock];
    }
}

@end

Please note that because each operation requires waiting for the lock and holding it, it's not quite scalable, but it might be good enough in your case.

If you want to use a proper threaded library, you can use TransactionKit library as they have TKMutableDictionary which is a multi-threaded safe library. I personally haven't used it, and it seems that it's a work in progress library, but you might want to give it a try.

notnoop
+1 fabulous answer
Dave DeLong
This looks like a great method but I can't get it to compile. I'm getting `"expected ')' before 'retval_t'"` on the line `- (retval_t) forward: (SEL) sel : (arglist_t) args` Any ideas?
Michael Waterfall
+1  A: 

notnoop's answer is quite excellent.

I wanted to add that I have written up details on "Atomic, properties, threading and/or custom setter/getter" on my weblog.

You might find it interesting.

bbum