how boost::function and boost:::bind work - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:36:07Zhttp://stackoverflow.com/feeds/question/527413http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/527413/how-boostfunction-and-boostbind-work7how boost::function and boost:::bind workFire Lancer2009-02-09T08:28:45Z2009-02-09T12:40:47Z
<p>I dislike haveing magic boxes scattered all over my code...how exactly do these two classes work to allow basicly any function to be mapped to a function object even if the function<> has a completly diffrent parameter set to the one im passing to boost::bind</p>
<p>It even works with diffrent calling conventions (ie member methods are __thiscall under VC, but "normal" functions are generally __cdecl or __stdcall for those that need to be compatible with C.</p>
http://stackoverflow.com/questions/527413/how-boostfunction-and-boostbind-work/527983#52798313Answer by jpalecek for how boost::function and boost:::bind workjpalecek2009-02-09T12:40:47Z2009-02-09T12:40:47Z<p>boost::function allows anything with an <code>operator()</code> with the right signature to be bound as the parameter, and the result of your bind can be called with a parameter <code>int</code>, so it can be bound to <code>function<void(int)></code>.</p>
<p>This is how it works:</p>
<p><code>boost::bind(&klass::member, instance, 0, _1)</code> returns an object like this</p>
<pre><code>struct unspecified_type
{
... some members ...
return_type operator()(int i) const { return instance->*&klass::member(0, i);
}
</code></pre>
<p>where the <code>return_type</code> and <code>int</code> are inferred from the signature of <code>klass::member</code>, and the function pointer and bound parameter are in fact stored in the object, but that's not important</p>
<p>Now, <code>boost::function</code> doesn't do any type checking: It will take any object and any signature you provide in its template parameter, and create an object that's callable according to your signature and calls the object. If that's impossible, it's a compile error.</p>
<p><code>boost::function</code> is actually an object like this:</p>
<pre><code>template <class Sig>
class function
{
function_impl<Sig>* f;
public:
return_type operator()(argument_type arg0) const { return (*f)(arg0); }
};
</code></pre>
<p>where the <code>return_type</code> and <code>argument_type</code> are extracted from <code>Sig</code>, and <code>f</code> is dynamically allocated on the heap. That's needed to allow completely unrelated objects with different sizes bind to <code>boost::function</code>.</p>
<p><code>function_impl</code> is just an abstract class</p>
<pre><code>template <class Sig>
class function_impl
{
public:
virtual return_type operator()(argument_type arg0) const=0;
};
</code></pre>
<p>The class that does all the work, is a concrete class derived from <code>boost::function</code>. There is one for each type of object you assign to <code>boost::function</code></p>
<pre><code>template <class Sig, class Object>
class function_impl_concrete : public function_impl<Sig>
{
Object o
public:
virtual return_type operator()(argument_type arg0) const=0 { return o(arg0); }
};
</code></pre>
<p>That means in your case, the assignment to boost function:</p>
<ol>
<li>instantiates a type <code>function_impl_concrete<void(int), unsepcified_type></code> (that's compile time, of course)</li>
<li>creates a new object of that type on the heap</li>
<li>assigns this object to the f member of boost::function</li>
</ol>
<p>When you call the function object, it calls the virtual function of its implementation object, which will direct the call to your original function.</p>
<p>DISCLAIMER: Note that the names in this explanation are deliberately made up. Any resemblance to real persons or characters ... you know it. The purpose was to illustreate the principles.</p>