I have a problem using DiskArbitration framework, to catch disk image mounting I register for DARegisterDiskMountApprovalCallback. The problem is that each time a disk image is mounted, the callback is called twice. Why is that and how can I solve this?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 1 down vote accepted

I end up coding something to detect the 2nd mount and ignore it, thanks for your help people.

link|improve this answer
feedback

Did you put a breakpoint in your callback to see what are the call-stack when it is called ? It can gives you some hints on what is going on.

link|improve this answer
Most the time I hit the breakpoint only once.. – Nyx0uf May 26 '10 at 20:50
@Nyxem When it is hit twice, does the callstack gives you some information ? – Laurent Etiemble May 26 '10 at 20:55
feedback

I use these the catch that. I'm not sure of the difference these are to what you're doing but they work.

[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(mediaMounted:) name:NSWorkspaceDidMountNotification object:[NSWorkspace sharedWorkspace]];

[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(mediaUnmounted:) name:NSWorkspaceWillUnmountNotification object:[NSWorkspace sharedWorkspace]];
link|improve this answer
1  
I can't use NSWorkspace, it comes from appKit which isn't not daemon safe, and I need to run this as a daemon. – Nyx0uf May 26 '10 at 18:23
feedback

Your Answer

 
or
required, but never shown

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