【问题标题】:equal_range in boost::multi_index_container composite key with comparision operatorboost::multi_index_container 复合键中的 equal_range 与比较运算符
【发布时间】:2018-05-29 04:35:14
【问题描述】:

我正在尝试从值类型是三个元素的结构的多索引容器中查询结果。第一个值是给定的,但第二个和第三个必须大于或小于查询参数。

四处搜索后,我发现必须实现一个自定义密钥提取器,这里的一些链接建议相同,但我无法实现它:

谁能帮我让它工作?

下面是我的结构和多索引实现:

#define RANKFILTERVIEW 0

struct TPQ {
    int UID;
    int Value;
    int Rank;
    TPQ():UID(0),Value(0),Rank(0)
    { }
    TPQ(int _T, int _V, int _R):UID(_T),Value(_V),Rank(_R)
    { }
};

typedef bip::allocator<
    TPQ,bip::managed_shared_memory::segment_manager
> shared_struct_allocator;

typedef bmi::multi_index_container<
    TPQ,
    bmi::indexed_by<
        bmi::ordered_unique<bmi::tag<struct Composite>,
            bmi::composite_key<TPQ,
                bmi::member<TPQ, int,&TPQ::UID>,
                bmi::member<TPQ, int,&TPQ::Value>,
                bmi::member<TPQ, int,&TPQ::Rank>
        > >
    >,
    shared_struct_allocator
> Rank_Set;

typedef nth_index<Rank_Set, RANKFILTERVIEW>::type Rank_view;

int main()
{
    bip::managed_shared_memory segment(bip::open_only,"RANKSOTRE");

    int UID =52478;

    std::pair<Rank_Set*, std::size_t> RankOrderRecord=segment.find<Rank_Set>("RANKDATARECORD");

    /// Here I want the result as stated below.
    auto range = RankOrderRecord.first->get<Composite>().equal_range(boost::make_tuple(UID,_2>500,_3>5));

}

我有一组指令可以忽略排序或重新排列。

【问题讨论】:

  • "我有一组指令,可以忽略排序或重新排列。" - 你是什么意思?你的意思是,你应该实际使用索引...?

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


【解决方案1】:

你几乎明白了。事实上,在订单索引中,您可以通过 partial 键进行查询。由于字段是常规整数类型,因此很容易得出一个好的下限和上限:

auto range = boost::make_iterator_range(
    view.lower_bound(boost::make_tuple(UID, 501, 6)),
    view.lower_bound(boost::make_tuple(UID+1)));

这是一个完整的演示:

Live On Coliru

#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/multi_index/ordered_index.hpp>

#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/managed_mapped_file.hpp> // for Coliru

#include <boost/range/iterator_range.hpp>

#include <iostream>

namespace bmi = boost::multi_index;
namespace bip = boost::interprocess;

struct TPQ {
    int UID   = 0;
    int Value = 0;
    int Rank  = 0;

    TPQ() = default;
    TPQ(int _T, int _V, int _R) : UID(_T), Value(_V), Rank(_R) {}
};

static inline std::ostream& operator<<(std::ostream& os, TPQ const& tpq) {
    return os << "{ UID: " << tpq.UID
              << ", Value: " << tpq.Value
              << ", Rank: " << tpq.Rank << "}";
}

using shared_struct_allocator = bip::allocator<TPQ, bip::managed_mapped_file::segment_manager>;

using Rank_Set = bmi::multi_index_container<
    TPQ,
    bmi::indexed_by<
        bmi::ordered_unique<
            bmi::tag<struct RankFilterView>,
            bmi::composite_key<TPQ,
                bmi::member<TPQ, int, &TPQ::UID>, 
                bmi::member<TPQ, int, &TPQ::Value>,
                bmi::member<TPQ, int, &TPQ::Rank>
            >
        >
    >,
    shared_struct_allocator>;

using Rank_view = bmi::index<Rank_Set, RankFilterView>::type;

int main() {
    bip::managed_mapped_file segment(bip::open_or_create, "RANKSOTRE", 10*1024);
    auto& table = *segment.find_or_construct<Rank_Set>("RANKDATARECORD")(segment.get_segment_manager());

    table.insert({
        {52478, 501, 6}, // Match!
        {52478, 500, 6}, // - Value too small
        {52479, 0,   0}, // - UID too high
        {52478, 502, 6}, // Match!
        {52478, 502, 7}, // Match!
        {52478, 501, 5}, // - Rank too small
        {52477, 502, 7}, // - UID too small
        {52478, 999, 9}, // Match!
    });

    int UID = 52478;
    Rank_view& view = table.get<RankFilterView>(); 

    auto range = boost::make_iterator_range(
        view.lower_bound(boost::make_tuple(UID, 501, 6)),
        view.upper_bound(UID));

    for (TPQ const& tpq : range) {
        std::cout << tpq << "\n";
    }

}

如预期的那样只会打印:

{ UID: 52478, Value: 501, Rank: 6}
{ UID: 52478, Value: 502, Rank: 6}
{ UID: 52478, Value: 502, Rank: 7}
{ UID: 52478, Value: 999, Rank: 9}

【讨论】:

  • 可以使用view.upper_bound(boost::make_tuple(UID))而不是view.lower_bound(boost::make_tuple(UID+1)),它不依赖于UID的完整性。
  • 另外,你可以不用make_tuple,直接写view.upper_bound(UID)
  • 我很惊讶你不需要定义RankFilterView(只声明它)。你有解释为什么可以吗?
  • @JoaquínMLópezMuñoz 嗯。我过去在 upper_bound 方法上出错了。我不确定这是否与 Boost MultiIndex 一起使用,因此可能需要一段时间才能“摆脱”这些畸形之一。 (测试后更新了答案:))
  • @Caleth 是的。这只是一个前向声明。只要没有操作要求类型完整(例如sizeof(RankFilterView)),就不需要定义它。这是标签类型的一个很常见的习惯用法
猜你喜欢
  • 2013-12-06
  • 1970-01-01
  • 2011-03-10
  • 2023-04-08
  • 1970-01-01
  • 2019-12-29
  • 2015-07-02
  • 2018-05-27
相关资源
最近更新 更多