summaryrefslogtreecommitdiffstats
path: root/vsm/src/vespa/vsm/searcher/intfieldsearcher.h
blob: a2b17a87f4b7ebaa787b8b813f640e3f214988b3 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "fieldsearcher.h"

namespace vsm {

class IntFieldSearcher : public FieldSearcher
{
public:
    std::unique_ptr<FieldSearcher> duplicate() const override;
    IntFieldSearcher(FieldIdT fId=0);
    ~IntFieldSearcher();
    void prepare(search::streaming::QueryTermList & qtl, const SharedSearcherBuf & buf) override;
    void onValue(const document::FieldValue & fv) override;
protected:
    class IntInfo
    {
    public:
        IntInfo(int64_t low, int64_t high, bool v) : _lower(low), _upper(high), _valid(v) { if (low > high) { _lower = high; _upper = low; } }
        bool cmp(int64_t key) const { return (_lower <= key) && (key <= _upper); }
        bool valid()          const { return _valid; }
    private:
        int64_t _lower;
        int64_t _upper;
        bool    _valid;
    };
    typedef std::vector<IntInfo> IntInfoListT;
    IntInfoListT _intTerm;
};

}