summaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/dummy_document_sub_db.h
blob: 9c3bc57bbdf171a4eeb6599c1cd59d8b60051dfe (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/searchcore/proton/server/idocumentsubdb.h>
#include <vespa/searchcore/proton/server/executorthreadingservice.h>
#include <vespa/searchcore/proton/docsummary/isummarymanager.h>
#include <vespa/searchcorespi/index/iindexmanager.h>
#include <vespa/searchcore/proton/documentmetastore/documentmetastorecontext.h>
#include <vespa/searchcore/proton/server/document_subdb_initializer.h>
#include <vespa/searchcore/proton/server/isummaryadapter.h>
#include <vespa/searchcore/proton/index/i_index_writer.h>
#include <vespa/searchcore/proton/server/ifeedview.h>
#include <vespa/searchcore/proton/matching/sessionmanager.h>
#include <vespa/searchcore/proton/summaryengine/isearchhandler.h>
#include <vespa/searchcore/proton/persistenceengine/i_document_retriever.h>
#include <vespa/searchcore/proton/server/reconfig_params.h>



namespace proton {

namespace test {

struct DummyDocumentSubDb : public IDocumentSubDB
{
    using IIndexManager = searchcorespi::IIndexManager;
    uint32_t                 _subDbId;
    DocumentMetaStoreContext _metaStoreCtx;
    ISummaryManager::SP      _summaryManager;
    IIndexManager::SP        _indexManager;
    ISummaryAdapter::SP      _summaryAdapter;
    IIndexWriter::SP         _indexWriter;
    std::unique_ptr<ExecutorThreadingService> _writeService;

    DummyDocumentSubDb(std::shared_ptr<BucketDBOwner> bucketDB, uint32_t subDbId)
        : _subDbId(subDbId),
          _metaStoreCtx(bucketDB),
          _summaryManager(),
          _indexManager(),
          _summaryAdapter(),
          _indexWriter(),
          _writeService(std::make_unique<ExecutorThreadingService>(1))
    {
    }
    void close() override { }
    virtual uint32_t getSubDbId() const override { return _subDbId; }
    virtual vespalib::string getName() const override { return "dummysubdb"; }
    virtual DocumentSubDbInitializer::UP
    createInitializer(const DocumentDBConfig &,
                      SerialNum,
                      const Schema::SP &,
                      const vespa::config::search::core::ProtonConfig::
                      Summary &,
                      const vespa::config::search::core::
                      ProtonConfig::Index &) const override {
        return std::make_unique<DocumentSubDbInitializer>
            (const_cast<DummyDocumentSubDb &>(*this),
             _writeService->master());
    }
    virtual void setup(const DocumentSubDbInitializerResult &) override {}
    virtual void initViews(const DocumentDBConfig &,
                           const proton::matching::SessionManager::SP &) override {}
    virtual IReprocessingTask::List applyConfig(const DocumentDBConfig &,
                                                const DocumentDBConfig &,
                                                SerialNum,
                                                const ReconfigParams &) override {
        return IReprocessingTask::List();
    }
    virtual ISearchHandler::SP getSearchView() const override { return ISearchHandler::SP(); }
    virtual IFeedView::SP getFeedView() const override { return IFeedView::SP(); }
    virtual void clearViews() override {}
    virtual const ISummaryManager::SP &getSummaryManager() const override { return _summaryManager; }
    virtual proton::IAttributeManager::SP getAttributeManager() const override {
        return proton::IAttributeManager::SP();
    }
    virtual const IIndexManager::SP &getIndexManager() const override { return _indexManager; }
    virtual const ISummaryAdapter::SP &getSummaryAdapter() const override { return _summaryAdapter; }
    virtual const IIndexWriter::SP &getIndexWriter() const override { return _indexWriter; }
    virtual IDocumentMetaStoreContext &getDocumentMetaStoreContext() override { return _metaStoreCtx; }
    virtual IFlushTarget::List getFlushTargets() override { return IFlushTarget::List(); }
    virtual size_t getNumDocs() const override { return 0; }
    virtual size_t getNumActiveDocs() const override { return 0; }
    virtual bool hasDocument(const document::DocumentId &) override { return false; }
    virtual void onReplayDone() override {}
    virtual void onReprocessDone(SerialNum) override { }
    virtual SerialNum getOldestFlushedSerial() override { return 0; }
    virtual SerialNum getNewestFlushedSerial() override { return 0; }
    virtual void wipeHistory(SerialNum, const Schema &, const Schema &) override { }
    virtual void setIndexSchema(const Schema::SP &, const Schema::SP &) override { }
    virtual search::SearchableStats getSearchableStats() const override {
        return search::SearchableStats();
    }
    virtual IDocumentRetriever::UP getDocumentRetriever() override {
        return IDocumentRetriever::UP();
    }
    virtual matching::MatchingStats getMatcherStats(const vespalib::string &) const override {
        return matching::MatchingStats();
    }

};

} // namespace test

} // namespace proton