aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/multi_string_enum_hint_search_context.h
blob: daccc99104cbdc61b81d25d38385271ef1e59233 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "multi_string_enum_search_context.h"
#include "enumhintsearchcontext.h"
#include <vespa/vespalib/fuzzy/fuzzy_matching_algorithm.h>


namespace search::attribute {

/*
 * MultiStringEnumHintSearchContext handles the creation of search iterators
 * for a query term on a multi value string enumerated attribute vector using
 * dictionary information to eliminate searches for nonexisting words.
 */
template <typename M>
class MultiStringEnumHintSearchContext : public MultiStringEnumSearchContext<M>,
                                         public EnumHintSearchContext
{
public:
    MultiStringEnumHintSearchContext(std::unique_ptr<QueryTermSimple> qTerm, bool cased,
                                     vespalib::FuzzyMatchingAlgorithm fuzzy_matching_algorithm,
                                     const AttributeVector& toBeSearched,
                                     MultiValueMappingReadView<M> mv_mapping_read_view,
                                     const EnumStoreT<const char*>& enum_store,
                                     uint32_t doc_id_limit, uint64_t num_values);
    ~MultiStringEnumHintSearchContext() override;
};

}