aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/searchcontext.cpp
blob: 6fcf1418a6d1af136124fc53f5f05c0c5a67dc5e (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "searchcontext.h"

using search::queryeval::Searchable;
using searchcorespi::IndexSearchable;

namespace proton {

IndexSearchable &
SearchContext::getIndexes()
{
    return *_indexSearchable;
}

Searchable &
SearchContext::getAttributes()
{
    return _attributeBlueprintFactory;
}

uint32_t SearchContext::getDocIdLimit()
{
    return _docIdLimit;
}

SearchContext::SearchContext(const std::shared_ptr<IndexSearchable> &indexSearchable, uint32_t docIdLimit)
    : _indexSearchable(indexSearchable),
      _attributeBlueprintFactory(),
      _docIdLimit(docIdLimit)
{
}

SearchContext::~SearchContext() = default;

} // namespace proton