aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/searchhandlerproxy.h
blob: 4eaf15b3b1cfc6f9b63c1c86e541c90b692818e9 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchcore/proton/summaryengine/isearchhandler.h>
#include <vespa/searchcore/proton/common/monitored_refcount.h>

namespace proton {

class DocumentDB;

class SearchHandlerProxy : public ISearchHandler
{
private:
    std::shared_ptr<DocumentDB> _documentDB;
    RetainGuard                 _retainGuard;
public:
    SearchHandlerProxy(std::shared_ptr<DocumentDB> documentDB);

    ~SearchHandlerProxy() override;
    std::unique_ptr<DocsumReply> getDocsums(const DocsumRequest & request) override;
    std::unique_ptr<SearchReply> match(const SearchRequest &req, ThreadBundle &threadBundle) const override;
};

} // namespace proton