将多索引转换索引提升为索引上的标记和循环

时间:2018-03-13 15:43:40

标签: c++ boost-mpl boost-multi-index

我有一个模板类(CrMultiIndex),它接收模板参数一个boost多索引(GlobalHash)的定义。我使用c ++ 14

我需要一种方法将index转换为tag(n_to_tag)?并循环CrMultiIndex ctor或Init函数中的索引? 我最初的目的是循环索引并在init处生成带有typeid(T).name()的标签名称字符串。所以我可以根据标签名称

显示统计数据

我有模板类

template <typename KeysType, typename MultiIndexType>
class CrMultiIndex
{

    std::vector<SrStatisticsByIndex> m_StatsByIndex;

public:
    MultiIndexType *m_pMultiIndex=NULL; 

    CrMultiIndex()
    {
        m_pMultiIndex = new MultiIndexType(typename 
        MultiIndexType::ctor_args_list());
    }

这是boost多索引容器的定义:

typedef boost::multi_index::multi_index_container<
  CrUsersKeys,
  UsersKey_hash_indices/*,
  bip::allocator<CrUsersKeys,bip::managed_shared_memory::segment_manager>*/
> GlobalHash;

代码位于http://coliru.stacked-crooked.com/a/d97195a6e4bb7ad4

我在Find boost multi index Tag to index and number of indices

问了一个类似的问题

1 个答案:

答案 0 :(得分:0)

您可以使用以下内容:

<强> Live On Coliru

template<typename MultiIndexContainer,std::size_t N>
std::string static_tag_name()
{
 const std::type_info& i=typeid(
    typename boost::mpl::front<
      typename boost::multi_index::nth_index<MultiIndexContainer,N>::
        type::tag_list
    >::type
  );
  return i.name();
}

template<typename MultiIndexContainer,std::size_t... I>
std::string tag_name(std::size_t n,std::index_sequence<I...>)
{
  static std::array<std::string(*)(),sizeof...(I)> a=
    {{static_tag_name<MultiIndexContainer,I>...}};
  return a[n]();
}

template<typename MultiIndexContainer>
std::string tag_name(std::size_t n)
{
  return tag_name<MultiIndexContainer>(
    n,std::make_index_sequence<
      boost::mpl::size<
        typename MultiIndexContainer::index_type_list
      >::value
    >{}
  );
}