vote up 1 vote down star
1

NSOperationQueue has waitUntilAllOperationsAreFinished, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.

What's the best way to accomplish this?

I can't send notifications from my NSOperations, because I don't know which one is going to be last, and [queue operations] might not be empty yet (or worse - repopulated) when notification is received.

flag

4 Answers

vote up 1 vote down check

What about using KVO to observe the operationCount property of the queue? Then you'd hear about it when the queue went to empty, and also when it stopped being empty. Dealing with the progress indicator might be as simple as just doing something like:

[indicator setHidden:([queue operationCount]==0)]
link|flag
Did this work for you? In my application the NSOperationQueue from 3.1 complains that it is not KVO-compliant for the key operationCount. – zoul Oct 18 at 6:37
I didn't actually try this solution in an app, no. Can't say whether the OP did. But the documentation clearly states that it should work. I'd file a bug report. developer.apple.com/iphone/library/… – Sixten Otto Oct 18 at 17:09
vote up 1 vote down

You can create a new NSThread, or execute a selector in background, and wait in there. When the NSOperationQueue finishes, you can send a notification of your own.

I'm thinking on something like:

- (void)someMethod {
    // Queue everything in your operationQueue (instance variable)
    [self performSelectorInBackground:@selector(waitForQueue)];
    // Continue as usual
}

...

- (void)waitForQueue {
    [operationQueue waitUntilAllOperationsAreFinished];
    [[NSNotificationCenter defaultCenter] postNotification:@"queueFinished"];
}
link|flag
It seems a bit silly to create thread just to put it to sleep. – porneL Jun 26 at 20:24
I agree. Still, I couldn't find another way around it. – pgb Jun 26 at 20:49
How would you ensure that only one thread is waiting? I thought about flag, but that needs to be protected against race conditions, and I've ended up using too much NSLock for my taste. – porneL Jun 26 at 22:11
I think you can wrap the NSOperationQueue in some other object. Whenever you queue an NSOperation, you increment a number and launch a thread. Whenever a thread ends you decrement that number by one. I was thinking on a scenario where you could queue everything beforehand, and then start the queue, so you would need only one waiting thread. – pgb Jun 27 at 13:55
vote up 0 vote down

How about adding an NSOperation that is dependent on all others so it will run last?

link|flag
It might work, but it's a heavyweight solution, and it would be pain to manage if you need to add new tasks to the queue. – porneL Sep 7 at 23:00
vote up 0 vote down

This is how I do it.

Set up the queue, and register for changes in the operations property:

myQueue = [[NSOperationQueue alloc] init];
[myQueue addObserver: self forKeyPath: @"operations" options: NSKeyValueObservingOptionNew context: NULL];

...and the observer (in this case self) implements:

- (void) observeValueForKeyPath:(NSString *) keyPath ofObject:(id) object change:(NSDictionary *) change context:(void *) context {
    if (
        object == myQueue
        &&
        [@"operations" isEqual: keyPath]
    ) {
        NSArray *operations = [change objectForKey:NSKeyValueChangeNewKey];

        if ( [self hasActiveOperations: operations] ) {
            [spinner startAnimating];
        } else {
            [spinner stopAnimating];
        }
    }
}

- (BOOL) hasActiveOperations:(NSArray *) operations {
    for ( id operation in operations ) {
        if ( [operation isExecuting] && ! [operation isCancelled] ) {
            return YES;
        }
    }

    return NO;
}

In this example "spinner" is a UIActivityIndicatorView showing that something is happening. Obviously you can change to suit...

link|flag

Your Answer

Get an OpenID
or

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