I've got a working callback system that uses boost::signal. I'm extending it into a more flexible and efficient callback manager which uses a vector of shared_ptr's to my signals. I've been able to successfully create and add callbacks to the list, but I'm unclear as to how to actually execute the signals.

...

// Signal aliases
typedef boost::signal<void (float *, int32_t)> Callback;
typedef std::shared_ptr<Callback> CallbackRef;

// The callback list
std::vector<CallbackRef> mCallbacks;

// Adds a callback to the list
template<typename T>
void addCallback(void (T::* callbackFunction)(float * data, int32_t size), T * callbackObject) 
{
    CallbackRef mCallback = CallbackRef(new Callback());
    mCallback->connect(boost::function<void (float *, int32_t)>(boost::bind(callbackFunction, callbackObject, _1, _2)));
    mCallbacks.push_back(mCallback);
}

// Pass the float array and its size to the callbacks
void execute(float * data, int32_t size)
{

    // Iterate through the callback list
    for (vector<CallbackRef>::iterator i = mCallbacks.begin(); i != mCallbacks.end(); ++i)
    {

        // What do I do here?
        // (* i)(data, size); // <-- Dereferencing doesn't work

    }   

}

...

All of this code works. I'm just not sure how to run the call from within a shared_ptr from with a vector. Any help would be neat-o. Thanks, in advance.

link|improve this question

57% accept rate
Does mCallback.connect(b...); work? Shouldn't that be mCallback->connect(...); – Mic Jan 18 '11 at 2:31
Shoot, sorry, no. You're right. The real code is longish in its context, so I typed all this in by hand. Fixed it. – BTR Jan 18 '11 at 3:45
feedback

1 Answer

up vote 4 down vote accepted

That's because dereferencing results in a shared_ptr, not the callback object:

        // (* i)(data, size); // <-- Dereferencing doesn't work

Try dereferencing twice:

        (**i)(data, size);

optionally you can call:

        (*i)->operator()(data, size);
link|improve this answer
Dereferencing twice did it. Thanks! – BTR Jan 18 '11 at 3:33
feedback

Your Answer

 
or
required, but never shown

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