mapping of a contained struct with boost - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:14:33Z http://stackoverflow.com/feeds/question/962995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/962995/mapping-of-a-contained-struct-with-boost 2 mapping of a contained struct with boost ynimous 2009-06-07T23:04:09Z 2009-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 &amp;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 &amp;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 &amp;p) { p.x += 1; p.y += 1; } </code></pre> <p>I could write:</p> <pre><code>void foreach(std::vector&lt;struct pinfo&gt; &amp;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&lt;struct pinfo&gt; &amp;pi_vec) { boost::function&lt;void (pinfo&amp;)&gt; pi_map2 = bind(&amp;p_map, bind(&amp;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 &lt;foreach(std::vector&lt;pinfo, std::allocator&lt;pinfo&gt; &gt;&amp;)&gt;: 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 &lt;foreach(std::vector&lt;pinfo, std::allocator&lt;pinfo&gt; &gt;&amp;)+0x20&gt; 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 &lt;foreach(std::vector&lt;pinfo, std::allocator&lt;pinfo&gt; &gt;&amp;)+0x10&gt; 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#963048 6 Answer by sth for mapping of a contained struct with boost sth 2009-06-07T23:47:27Z 2009-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 &lt;boost/function.hpp&gt; #include &lt;boost/lambda/bind.hpp&gt; using namespace boost::lambda; boost::function&lt;void (pinfo&amp;)&gt; pi_map = bind(&amp;p_map, bind(&amp;pinfo::p, _1)); </code></pre>