aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/iterator_pack.h
blob: 388dce3aeb75707b602711daf552c85853855cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "i_document_weight_attribute.h"
#include <vespa/searchlib/queryeval/begin_and_end_id.h>

namespace search {

class BitVector;

class AttributeIteratorPack
{
private:
    std::vector<DocumentWeightIterator> _children;

public:
    AttributeIteratorPack() noexcept : _children() {}
    AttributeIteratorPack(AttributeIteratorPack &&rhs) noexcept = default;
    AttributeIteratorPack &operator=(AttributeIteratorPack &&rhs) noexcept = default;

    explicit AttributeIteratorPack(std::vector<DocumentWeightIterator> &&children);
    ~AttributeIteratorPack();

    uint32_t get_docid(uint16_t ref) const {
        return _children[ref].valid() ? _children[ref].getKey() : endDocId;
    }

    uint32_t seek(uint16_t ref, uint32_t docid) {
        _children[ref].linearSeek(docid);
        if (__builtin_expect(_children[ref].valid(), true)) {
            return _children[ref].getKey();
        }
        return endDocId;
    }

    int32_t get_weight(uint16_t ref, uint32_t) {
        return _children[ref].getData();
    }

    std::unique_ptr<BitVector> get_hits(uint32_t begin_id, uint32_t end_id);
    void or_hits_into(BitVector &result, uint32_t begin_id);

    uint16_t size() const noexcept { return _children.size(); }
    void initRange(uint32_t begin, uint32_t end) {
        (void) end;
        for (auto &child: _children) {
            child.lower_bound(begin);
        }
    }
private:
    uint32_t next(uint16_t ref) {
        ++_children[ref];
        return get_docid(ref);
    }
};


} // namespace search