Boost Fusion Types offsetof

Posted

技术标签:

【中文标题】Boost Fusion Types offsetof【英文标题】: 【发布时间】:2015-08-25 13:53:54 【问题描述】:

我目前正在尝试在 boost fusion 适应结构中计算数据成员的偏移量,但我不确定是否有一种优雅的方法可以这样做。我想做类似以下的事情:

#include <iostream> 
#include <boost/fusion/adapted/struct/adapt_struct.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/fusion/sequence/intrinsic/at.hpp>
#include <boost/fusion/include/at.hpp>
#include <cstddef.h>

   struct test 
      int a;  
      char c;  
      double b;  
    ;

BOOST_FUSION_ADAPT_STRUCT(
  test, 
  (int, a)
  (char, c)
  (double, b)
)

int main() 
test s1, 2, 3.0; 
// The following code doesn't work... I'm just trying to get my point across
std::cout << "offset is :" << offsetof(test, at<1>(s)) << std::endl;

关键是我不想在 offsetof 函数中明确声明“a”或“b”或“c”。这本身并没有那么有用,但我想在 boost for_each 循环中使用它,这样我就可以在编译时计算任何结构的所有数据成员的偏移量。

如果您有任何想法,我很想听听!

【问题讨论】:

This 可能不是一个好方法,但既然你想听听想法......:P。 fusion::for_each 使用 c++14 lambda,如果您不能使用它们,则需要使用模板仿函数(类似于 this)。 @cv_and_he 哇。印象深刻。这很漂亮(对我来说,PP 宏是一个障碍;很高兴看到你走过那些) 太酷了!感谢分享代码! 你缺少 boost-fusion 标签 @sehe 完成。我想我已经设法简化了一点。 【参考方案1】:

我不是专家,但我认为由于offsetof 的性质,如果不使用宏就无法实现您想要的。下面的示例简单地使用宏为结构的每个成员创建一个特征,该特征在您访问它时返回其预先计算的偏移量。

Running on Wandbox

#include <iostream> 
#include <string>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/fusion/include/at.hpp>
#include <boost/fusion/include/for_each.hpp>
#include <boost/fusion/include/mpl.hpp>

#include <boost/mpl/range_c.hpp>

#include <cstddef>

namespace not_fusion

    template <typename StructName, int N>
    struct offset_of;


//Actually creates each respective 'offset_of' trait 
//you could change 'BOOST_STATIC_CONSTANT(std::size_t,...)'
//with a 'static constexpr std::size_t ...' or whatever you like
#define CREATE_OFFSET_TRAIT(R,STRUCT_NAME,INDEX,MEMBER) \
template <> struct offset_of<STRUCT_NAME, INDEX> BOOST_STATIC_CONSTANT(std::size_t, value = offsetof(STRUCT_NAME,MEMBER)); ;

//Iterates the struct members in order to create the corresponding 'offset_of' traits
#define NOT_FUSION_SAVE_OFFSETS(STRUCT_NAME,MEMBERS) \
namespace not_fusion  \
BOOST_PP_SEQ_FOR_EACH_I(CREATE_OFFSET_TRAIT,STRUCT_NAME,MEMBERS) \


//Simply "invokes" 'BOOST_FUSION_ADAPT_STRUCT' and 'NOT_FUSION_SAVE_OFFSETS'
#define ADAPT_STRUCT_AND_SAVE_OFFSETS(TYPE,...) \
BOOST_FUSION_ADAPT_STRUCT(TYPE,__VA_ARGS__) \
NOT_FUSION_SAVE_OFFSETS(TYPE,BOOST_PP_VARIADIC_TO_SEQ(__VA_ARGS__))

struct test1 
    int a;  
    char c;  
    double b;  
;

struct test2 
    char c;
    short s;
    int i;
;

ADAPT_STRUCT_AND_SAVE_OFFSETS(test1,a,c,b);
ADAPT_STRUCT_AND_SAVE_OFFSETS(test2,c,s,i);


template <typename Struct>
void print_offsets(const std::string& name,const Struct&)

    //This could be changed to use 'std::integer_sequence' instead of mpl
    std::cout << "Offsets for " << name << ":" << std::endl;
    typedef boost::mpl::range_c<unsigned, 0, boost::fusion::result_of::size<Struct>::value > Indices; 
    boost::fusion::for_each(Indices(),
        [](auto index)
         
            std::cout << boost::fusion::extension::struct_member_name<Struct,index>::call() << " -> " << not_fusion::offset_of<Struct,index>::value << std::endl;
        
    );


int main() 
    test1 t11, 2, 3.0; 
    test2 t21,2,3;

    print_offsets("test1",t1);
    print_offsets("test2",t2);

【讨论】:

以上是关于Boost Fusion Types offsetof的主要内容,如果未能解决你的问题,请参考以下文章

访问 boost fusion map 字段名称

c_cpp boost_signals2_plus_fusion.cc

std::variant 是不是提供类似于 boost::variant<>::types 的功能?

字符串的类型特征

Boost::Variant 和其中的 function_types:如何将函数放入 Boost::variant?

无法通过 boost::logger 进行编译