I am new to C, Objective-C, and Core Audio programming on OSX. From the reading that I have done, Core Audio relies heavily on callbacks (and C++, but that's another story). I understand the concept (sort of) of setting up a function that is called by another function repeatedly to accomplish a task. I just don't understand how they get set up and how they actually work. Any examples would be appreciated. Thanks.
|
|
There is no "callback" in C - not more than any other generic programming concept. They're implemented using function pointers. Here's an example:
Here, the populate_ array() function takes a function pointer as its third parameter, and calls it to get the values to populate the array with. We've written the callback "getNextRandomValue()", which returns a random-ish value, and passed a pointer to it to populate_ array(). populate_ array() will call our callback function 10 times and assign the returned values to the elements in the given array. |
||||
|
|
|
Callbacks in C are usually implemented using function pointers and an associated data pointer. You pass your function Callbacks are also used in GUI programming. The GTK+ tutorial has a nice section on the theory of signals and callbacks. |
||
|
|
|
|
Usually this can be done by using a function pointer, that is a special variable that points to the memory location of a function. You can then use this to call the function with specific arguments. So there will probably be a function that sets the callback function. This will accept a function pointer and then store that address somewhere where it can be used. After that when the specified event is triggered, it will call that function. |
||
|
|
|
|
This wikipedia article has an example in C. A good example is that new modules written to augment the Apache Web server register with the main apache process by passing them function pointers so those functions are called back to process web page requests. |
||
|
|
|
|
Here is an example of callbacks in C. Let's say you want to write some code that allows registering callbacks to be called when some event occurs. First define the type of function used for the callback:
Now, define a function that is used to register a callback:
This is what code would look like that registers a callback:
In the internals of the event dispatcher, the callback may be stored in a struct that looks something like this:
This is what the code looks like that executes a callback.
|
||
|
|
