aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/summaryadapter.h
blob: 58ce639a8b7925685c1166d0bd93e3d834670e3b (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "isummaryadapter.h"

namespace proton {

class SummaryManager;
class ISummaryManager;

class SummaryAdapter : public ISummaryAdapter {
private:
    std::shared_ptr<SummaryManager>  _mgr;
    SerialNum                        _lastSerial;

    bool ignore(search::SerialNum serialNum) const;
    ISummaryManager & imgr() const;

public:
    explicit SummaryAdapter(std::shared_ptr<SummaryManager> mgr);
    ~SummaryAdapter() override;

    void put(SerialNum serialNum, const DocumentIdT lid, const Document &doc) override;
    void put(SerialNum serialNum, const DocumentIdT lid, const vespalib::nbostream &doc) override;
    void remove(SerialNum serialNum, const DocumentIdT lid) override;
    void heartBeat(SerialNum serialNum) override;
    const search::IDocumentStore &getDocumentStore() const override;
    std::unique_ptr<document::Document> get(const DocumentIdT lid, const DocumentTypeRepo &repo) override;
    void compactLidSpace(uint32_t wantedDocIdLimit) override;
};

} // namespace proton