aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/single_small_numeric_search_context.h
blob: 37b5f9f76389ce322ff423be0e719a8a69bd912c (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 "numeric_search_context.h"
#include "numeric_range_matcher.h"
#include <vespa/vespalib/util/atomic.h>

namespace search::attribute {

/*
 * SingleSmallNumericSearchContext handles the creation of search iterators for
 * a query term on a single value small numeric attribute vector.
 */
class SingleSmallNumericSearchContext : public NumericSearchContext<NumericRangeMatcher<int8_t>>
{
private:
    using Word = uint32_t;
    using T = int8_t;
    const Word *_wordData;
    Word _valueMask;
    uint32_t _valueShiftShift;
    uint32_t _valueShiftMask;
    uint32_t _wordShift;
    uint32_t _docid_limit;

    int32_t onFind(DocId docId, int32_t elementId, int32_t & weight) const override {
        return find(docId, elementId, weight);
    }

    int32_t onFind(DocId docId, int32_t elementId) const override {
        return find(docId, elementId);
    }

public:
    SingleSmallNumericSearchContext(std::unique_ptr<QueryTermSimple> qTerm, const AttributeVector& toBeSearched, const Word* word_data, Word value_mask, uint32_t value_shift_shift, uint32_t value_shift_mask, uint32_t word_shift, uint32_t docid_limit);

    int32_t find(DocId docId, int32_t elemId, int32_t & weight) const {
        if ( elemId != 0) return -1;
        const Word &word = _wordData[docId >> _wordShift];
        uint32_t valueShift = (docId & _valueShiftMask) << _valueShiftShift;
        T v = (vespalib::atomic::load_ref_relaxed(word) >> valueShift) & _valueMask;
        weight = 1;
        return match(v) ? 0 : -1;
    }

    int32_t find(DocId docId, int32_t elemId) const {
        if ( elemId != 0) return -1;
        const Word &word = _wordData[docId >> _wordShift];
        uint32_t valueShift = (docId & _valueShiftMask) << _valueShiftShift;
        T v = (vespalib::atomic::load_ref_relaxed(word) >> valueShift) & _valueMask;
        return match(v) ? 0 : -1;
    }

    std::unique_ptr<queryeval::SearchIterator>
    createFilterIterator(fef::TermFieldMatchData* matchData, bool strict) override;
    uint32_t get_committed_docid_limit() const noexcept override;
};

}