this is killing me, and I'm not sure I know how to approach debugging it.

I'm using Mac FSEvents API to monitor a given folder on the file system. However, occasionally, some folders stop sending any notification events. So far, this has only happened for folders inside ~/Dropbox, and has affected just a few users of my app (and also regularly affects me as well).

The crazy part is that the way to 'cure' the file system is to do:

mv ~/Dropbox/some/stuck/folder ~/Dropbox/some/stuck/folder.0
mkdir ~/Dropbox/some/stuck/folder
mv ~/Dropbox/some/stuck/folder.0/* ~/Dropbox/some/stuck/folder/
rmdir ~/Dropbox/some/stuck/folder.0

After running these commands, the folder gets unstuck and starts sending events! It takes a few tries to find which of the parent folders is the culprit, but it's always some folder inside Dropbox. (Quitting Dropbox or rebooting does not cure it.)

I'm doing nothing special in my code. Monitoring is started using:

FSEventStreamContext context;
context.version = 0;
context.info = self;
context.retain = NULL;
context.release = NULL;
context.copyDescription = NULL;

_streamRef = FSEventStreamCreate(nil,
                                 (FSEventStreamCallback)FSMonitorEventStreamCallback,
                                 &context,
                                 (CFArrayRef)paths,
                                 kFSEventStreamEventIdSinceNow,
                                 0.25,
                                 kFSEventStreamCreateFlagUseCFTypes);
if (!_streamRef) {
    NSLog(@"Failed to start monitoring of %@ (FSEventStreamCreate error)", _path);
}

FSEventStreamScheduleWithRunLoop(_streamRef, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
if (!FSEventStreamStart(_streamRef)) {
    NSLog(@"Failed to start monitoring of %@ (FSEventStreamStart error)", _path);
}

and the callback looks like this (not that it matters):

static void FSMonitorEventStreamCallback(ConstFSEventStreamRef streamRef, FSMonitor *monitor, size_t numEvents, NSArray *eventPaths, const FSEventStreamEventFlags eventFlags[], const FSEventStreamEventId eventIds[]) {
    for (int i = 0; i < numEvents; i++) {
        NSString *path = [eventPaths objectAtIndex:i];
        FSEventStreamEventFlags flags = eventFlags[i];
        [monitor sendChangeEventWithPath:path flags:flags];
    }
}

Happens on both 10.6 and 10.7. No fancy stuff like FileVault is active.

This does look like an OS bug to me, but I haven't found any mentions of this problem on the web.

Questions are:

1) Have you ever experienced something like this? Any findings?

2) What would be the steps to further diagnose this before using a tech support incident?

link|improve this question

80% accept rate
Uhm, it sounds like a conflict between your app and Dropbox. Note that Dropbox also uses FSEvents to watch the change inside the Dropbox folder. – Yuji Jul 27 '11 at 15:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.