Handling Callbacks in Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-11-07T04:38:39Zhttp://stackoverflow.com/feeds/question/316879http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c3Handling Callbacks in Objective-Cshrads2008-11-25T10:03:58Z2008-11-25T22:26:56Z
<p>Hi,
I have a method in an objective-C class. It has 2 callback functions written in C. The class pointer i.e. <code>self</code> is passed to these functions as <code>void *</code>. In the C functions I create a pointer of type class and assign the <code>void *</code> parameter.
The first callback function executes successfully. But the <code>void *</code> pointer becomes <code>nil</code> in the 2nd callback function. Note that I haven't tweaked pointer in the first callback but still I get <code>nil</code> in 2nd callback.</p>
<p>Any ideas what might be going wrong?</p>
<p>For example:</p>
<pre><code>kr = IOServiceAddMatchingNotification(gNotifyPort, kIOFirstMatchNotification,
matchingDict, RawDeviceAdded, NULL,
&gRawAddedIter);
RawDeviceAdded(NULL, gRawAddedIter, self);
</code></pre>
<p>This works fine. But below function receives <code>self</code> as <code>nil</code>.</p>
<pre><code>kr = IOServiceAddMatchingNotification(gNotifyPort, kIOFirstMatchNotification,
matchingDict, BulkTestDeviceAdded, NULL,
&gBulkTestAddedIter);
BulkTestDeviceAdded(NULL, gBulkTestAddedIter, self);
</code></pre>
http://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c/316892#3168920Answer by Robert Gould for Handling Callbacks in Objective-CRobert Gould2008-11-25T10:08:52Z2008-11-25T10:08:52Z<p>This is what Objective-C's selector is for:
<a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/NSInvocationOperation_Class/Reference/Reference.html" rel="nofollow">http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/NSInvocationOperation_Class</a></p>
<p>The API isn't very intuitive, but its fine once you understand it</p>
<p>You might need to do some refactoring as well, now there might be a better way, but when I had this problem my solution was to refactor and use InvoationOperation.</p>
http://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c/316947#3169471Answer by Chris Hanson for Handling Callbacks in Objective-CChris Hanson2008-11-25T10:31:22Z2008-11-25T10:31:22Z<p>Generally, callbacks in Objective-C are handled by passing a delegate object and a selector to perform on that delegate. For example, this method will call a method on its delegate after logging a message, passing both itself and the message that was logged.</p>
<pre><code>- (void)logMessage:(NSString *)message
delegate:(id)delegate
didLogSelector:(SEL)didLogSelector
{
NSLog(@"%@", message);
if (delegate && didLogSelector && [delegate respondsToSelector:didLogSelector]) {
(void) [delegate performSelector:didLogSelector
withObject:self
withObject:message];
}
}
</code></pre>
<p>You might call it in code like this:</p>
<pre><code>- (void)sayHello
{
[logger logMessage:@"Hello, world"
delegate:self
didLogSelector:@selector(messageLogger:didLogMessage:)];
}
- (void)messageLogger:(id)logger
didLogMessage:(NSString *)message
{
NSLog(@"Message logger %@ logged message '%@'", logger, message);
}
</code></pre>
<p>You can also use <code>objc_msgSend()</code> directly instead, though you need to understand the Objective-C runtime enough to choose which variant to use and how to construct the prototype and function pointer through which to call it. (It's the mechanism by which message sends are actually implemented in Objective-C — what the compiler normally generates calls to in order to represent <code>[]</code> expressions.)</p>
http://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c/317818#3178186Answer by Boaz Stuller for Handling Callbacks in Objective-CBoaz Stuller2008-11-25T15:57:39Z2008-11-25T16:05:58Z<p>Are your problems specifically with the IOKit callback routines? The problem with the specific example you gave is that the IOServiceMatchingCallback takes only 2 parameters, not 3. You need your RawDeviceAdded() and BulkTestDeviceAdded() callback functions to match the IOServiceMatchingCallback prototype and to accept self as the first parameter (refCon), not the 3rd. Also, you need to pass in self as the second-to-last parameter of IOServiceAddMatchingNotification() to get it passed back to you by the callback.</p>
<p>A common method for handling C callbacks in Objective-C code is just to have a static function that forwards the callback to your instance. So, your example callback code would look like this:</p>
<pre><code>static RawDeviceAdded(void* refcon, io_iterator_t iterator)
{
[(MyClass*)refcon rawDeviceAdded:iterator];
}
@implementation MyClass
- (void)setupCallbacks
{
// ... all preceding setup snipped
kr = IOServiceAddMatchingNotification(gNotifyPort,kIOFirstMatchNotification, matchingDict,RawDeviceAdded,(void*)self,&gRawAddedIter );
// call the callback method once to 'arm' the iterator
[self rawDeviceAdded:gRawAddedIterator];
}
- (void)rawDeviceAdded:(io_iterator_t)iterator
{
// take care of the iterator here, making sure to complete iteration to re-arm it
}
@end
</code></pre>