aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/dfa_string_comparator.cpp
blob: e9710553ef1704247def3fb87b835f447aac9675 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "dfa_string_comparator.h"
#include <vespa/searchlib/util/foldedstringcompare.h>

namespace search::attribute {

DfaStringComparator::DfaStringComparator(const DataStoreType& data_store, const std::vector<uint32_t>& candidate)
    : ParentType(data_store),
      _candidate(std::cref(candidate))
{
}

bool
DfaStringComparator::less(const vespalib::datastore::EntryRef lhs, const vespalib::datastore::EntryRef rhs) const
{
    if (lhs.valid()) {
        if (rhs.valid()) {
            return FoldedStringCompare::compareFolded<true, true>(get(lhs), get(rhs)) < 0;
        } else {
            return FoldedStringCompare::compareFolded<true, false>(get(lhs), _candidate) < 0;
        }
    } else {
        if (rhs.valid()) {
            return FoldedStringCompare::compareFolded<false, true>(_candidate, get(rhs)) < 0;
        } else {
            return false;
        }
    }
}

}