I regularly use plug-ins (loaded NSBundles) to encapsulate some functionality. I now want to use NSMetadataQuery in one of my plug-ins, but ran into threading problems I'm unable to solve.
Inside the main class of the plug-in, I set up the query like this:
NSMetadataQuery *mdQuery = [[NSMetadataQuery alloc] init];
[mdQuery setPredicate:[NSPredicate predicateWithFormat:@"(kMDItemFSName LIKE 'Project *')"]];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(processQuery:)
name:nil
object:mdQuery];
[mdQuery startQuery];
And the notifications are caught by:
- (void)processQuery:(NSNotification *)notification
{
NSMetadataQuery *mdQuery = [notification object];
if ([[notification name] isEqualToString:NSMetadataQueryDidStartGatheringNotification]) {
NSLog(@"%@ %@ Query started", [self class], NSStringFromSelector(_cmd));
} else if ([[notification name] isEqualToString:NSMetadataQueryGatheringProgressNotification]) {
NSLog(@"%@ %@ %ld", [self class], NSStringFromSelector(_cmd), (long)[mdQuery resultCount]);
} else if ([[notification name] isEqualToString: NSMetadataQueryDidFinishGatheringNotification]) {
NSUInteger theResultCount = [mdQuery resultCount];
theResultCount = 10; //for now
for (NSUInteger i; i < theResultCount; i++) {
NSLog(@"%@ %@ %ld %@", [self class], NSStringFromSelector(_cmd), (long)i, [mdQuery resultAtIndex:i]);
}
} else {
NSLog(@"%@ %@ NSMetadataQueryDidUpdateNotification: %@", [self class], NSStringFromSelector(_cmd), notification);
}
}
This code works fine running in an app, but when run from with the plug-in, only NSMetadataQueryDidStartGatheringNotification is ever received, nothing else.
I found one or two posts of people wrestling with the same problem, and one of them (James Bucanek in Oh notification, where are you?) solved his problem by calling CFRunLoopRun(); right after the startQuery and CFRunLoopStop(CFRunLoopGetCurrent ()); when the query was done. One problem is that the run loop thus started is synchronous while NSMetadataQuery clearly is asynchronous, the other was that in the plug-in it never got past NSMetadataQueryGatheringProgressNotification. I then tried giving NSMetadataQuery its own thread but again, only NSMetadataQueryDidStartGatheringNotification was ever received. I don't know if the problem can be solved, but I would really like some input.