mapping of a contained struct with boost - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T09:14:33Zhttp://stackoverflow.com/feeds/question/962995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/962995/mapping-of-a-contained-struct-with-boost2mapping of a contained struct with boostynimous2009-06-07T23:04:09Z2009-06-08T10:39:05Z
<p>Considering these two structs:</p>
<pre><code>struct point {
int x,y;
};
struct pinfo {
struct point p;
unsigned long flags;
};
</code></pre>
<p>And a function, that changes a point:</p>
<pre><code>void p_map(struct point &p);
</code></pre>
<p>Is it possible to use boost (e.g. boost::bind or boost::lambda) to create a function equivalent with:</p>
<pre><code>void pi_map(struct pinfo &pi) { p_map(pi.p); }
</code></pre>
<p><strong>-edit: update for additional information:</strong></p>
<p>The original intention for this function was to use it in for_each.
For example given this function:</p>
<pre><code>void p_map(struct point &p)
{
p.x += 1;
p.y += 1;
}
</code></pre>
<p>I could write:</p>
<pre><code>void foreach(std::vector<struct pinfo> &pi_vec)
{
for_each(pi_vec.begin(), pi_vec.end(), pi_map);
}
</code></pre>
<p>As it was suggested in an answer, it is possible to bound member variables with
boost::lambda, and to create an alternative for_each version:</p>
<pre><code>void foreach2(std::vector<struct pinfo> &pi_vec)
{
boost::function<void (pinfo&)> pi_map2 = bind(&p_map, bind(&pinfo::p, _1));
for_each(pi_vec.begin(), pi_vec.end(), pi_map2);
}
</code></pre>
<p>My issue with this approach, is that it gcc (v. 4.3.2) does not inline the
pi_map and p_map functions for the foreach2 version.</p>
<p>The x86 code generated for the foreach1 function is:</p>
<pre><code>0000000000400dd0 <foreach(std::vector<pinfo, std::allocator<pinfo> >&)>:
400dd0: 48 8b 57 08 mov 0x8(%rdi),%rdx
400dd4: 48 8b 07 mov (%rdi),%rax
400dd7: 48 39 c2 cmp %rax,%rdx
400dda: 74 14 je 400df0 <foreach(std::vector<pinfo, std::allocator<pinfo> >&)+0x20>
400ddc: 0f 1f 40 00 nopl 0x0(%rax)
400de0: 83 00 01 addl $0x1,(%rax)
400de3: 83 40 04 01 addl $0x1,0x4(%rax)
400de7: 48 83 c0 10 add $0x10,%rax
400deb: 48 39 c2 cmp %rax,%rdx
400dee: 75 f0 jne 400de0 <foreach(std::vector<pinfo, std::allocator<pinfo> >&)+0x10>
400df0: f3 c3 repz retq
</code></pre>
<p>Which implements the for_each, without calling any functions. On the other
hand, the code generated for the foreach2 is more complicated, due to
optimizations, and does not (seem to) inline the mapping functions.</p>
<p>However, this issue seems to be a philosophical, rather than a practical one
with modern desktop processors, since (strangely enough) the performance on my machine
is similar for both versions.</p>
http://stackoverflow.com/questions/962995/mapping-of-a-contained-struct-with-boost/963048#9630486Answer by sth for mapping of a contained struct with booststh2009-06-07T23:47:27Z2009-06-07T23:47:27Z<p>You can do it with boost::lambda, <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/lambda/le%5Fin%5Fdetails.html#lambda.members%5Fvariables%5Fas%5Ftargets" rel="nofollow">member variables can be bound</a> with <code>bind</code> the same way member functions are:</p>
<pre><code> #include <boost/function.hpp>
#include <boost/lambda/bind.hpp>
using namespace boost::lambda;
boost::function<void (pinfo&)> pi_map = bind(&p_map, bind(&pinfo::p, _1));
</code></pre>