I have 2 functions f() and g(). I want to call them in order every time. Can I get a boost::function to do this? E.g. something like:

boost::function functor = boost::bind( boost::bind(f), boost::bind(g) );

Extend this further, say it takes arguments, then what I need is a chain of responsibility. Each node does something with arguments, then followed by next node of chain. How do I do that?


Update Thanks for Seth Carnegie's comments. I think what I really want is how to construct a chain of responsibility into a single boost::function, each node of chain can be constructed by using boost::bind().

link|improve this question

50% accept rate
bind is for binding arguments to functions, not for binding functions together in a chain – Seth Carnegie Jan 27 at 3:36
Do you mean f( g( x ) ), or f( x ); g( x )? – David Rodríguez - dribeas Jan 27 at 3:37
boost::bind isn't really the right tool. Maybe boost.signals or boost.signals2? – Managu Jan 27 at 3:39
What you describe matches the semantics of Twisted's Deferred object. There are c++ implementations of it that might be worth looking at: twistedmatrix.com/pipermail/twisted-python/2008-October/… – vsekhar Jan 27 at 3:48
@David Rodríguez - dribeas: I meant f(x); g(x); that's why I added independent. – JQ. Jan 27 at 5:05
show 2 more comments
feedback

2 Answers

Have you considered using boost::signal ?

With boost::signal you can connect multiple function calls into one.

#include <boost/signal.hpp> 
#include <iostream> 

void f() 
{ 
  std::cout << " Hello" << std::flush; 
} 

void g() 
{ 
  std::cout << " World" << std::endl; 
} 

int main() 
{ 
  boost::signal<void ()> s; 
  s.connect(f); 
  s.connect(g); 
  s(); 
} 
link|improve this answer
thanks, but this is not quite what I wanted. not simple enough – JQ. Feb 1 at 3:32
feedback

Why not something like this?

#include <functional>

template <typename FirstFunctor, typename SecondFunctor>
void chainFunctionImpl(FirstFunctor first, SecondFunctor second)
{
   first();
   second();
}

template <typename FirstFunctor, typename SecondFunctor>
std::function<void(void)> chainFunction(FirstFunctor first, SecondFunctor second)
{
   return std::bind(chainFunctionImpl<FirstFunctor,SecondFunctor>,first,second);
}

Use should be relatively simple, just binding the functions in sequence, then calling the result. Theoretically any length of functions could be chained up.

Note that is theoretically possible to do this with passing an argument down the chain as well, but that level of template foo is way beyond me. http://ideone.com/Xvp5U is where I gave up.

link|improve this answer
For the template foo, my advice would be to avoid function templates end go for class templates that implement a static function. If your compiler supports variable templates the implementation is actually quite simple. – David Rodríguez - dribeas Jan 27 at 12:48
thanks, but this is not quite what I wanted. not simple enough – JQ. Feb 1 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.