FSEvents weirdness on OS X Leopard - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T22:12:57Zhttp://stackoverflow.com/feeds/question/913401http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/913401/fsevents-weirdness-on-os-x-leopard0FSEvents weirdness on OS X Leopardpsychotik2009-05-27T00:18:29Z2009-06-30T17:02:36Z
<p>I want to monitor file-system events for a couple of directories on the mac. The directories I want to monitor might change at runtime, so using FSEvents here's what my app does:</p>
<ul>
<li>creates a global callback function to handle callbacks</li>
<li>create a new FSEventStreamRef per folder, associating it with the callback created above and adding a context to the eventStream that helps me associate the change callback with this folder</li>
</ul>
<p>Stuff seems to mostly work, but I've noticed some weirdness in when the callbacks are invoked and the 'eventPaths' values being sent to the callback.</p>
<p>For instance, if I've created StreamRefs for /Foo and /Bar, if I add a file in /Bar my callback is invoked almost immediately but the eventPaths points to a location in /Foo, and the context I associated with the StreamRef is also that of /Foo.</p>
<p>Or, say I'm monitoring /Foo and /Bar and then remove /Bar (by stopping and closing the StreamRef for /Bar correctly). I now create a new FSEventStreamRef for /Fee and associate with the same callback. Any changes I make to /Fee don't cause the callback to be invoked but changes to /Foo continue raising the callback.</p>
<p>Any example or documentation I've seen online only talks of monitoring a single folder. Is something busted with how I'm associating the single callbacks with multiple FSEventStreamRefs? It sounds like that shouldn't be a problem though...</p>
<p>Has anyone done something similar in a way that works reliably, or any suggestions for what I might try differently?</p>
<p>One thing I did attempt to do as I was experimenting with this is use a single FSEventStreamRef and pass it a CFArrayRef with all the paths I wanted, and when my watch list changes close and re-create a new FSEventStreamRef - this works even worse that the above.</p>
http://stackoverflow.com/questions/913401/fsevents-weirdness-on-os-x-leopard/913636#9136361Answer by Peter Hosey for FSEvents weirdness on OS X LeopardPeter Hosey2009-05-27T02:12:03Z2009-05-27T02:12:03Z<p><a href="https://bitbucket.org/boredzo/fs-notifier/" rel="nofollow">Works for me.</a> I emulated these characteristics:</p>
<ol>
<li>One path per stream</li>
<li>One context per path/stream</li>
<li>One callback for all streams</li>
</ol>
<p>Can you show the code that's failing?</p>