aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/index/index_manager_initializer.cpp
blob: 6522b8e9209ee86925516cd1c2454b5c0617f531 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "index_manager_initializer.h"
#include <vespa/vespalib/io/fileutil.h>
#include <filesystem>

#include <vespa/log/log.h>
LOG_SETUP(".proton.index.indexmanagerinitializer");

namespace proton {

IndexManagerInitializer::
IndexManagerInitializer(const vespalib::string &baseDir,
                        const index::IndexConfig & indexCfg,
                        const search::index::Schema &schema,
                        search::SerialNum serialNum,
                        searchcorespi::IIndexManager::Reconfigurer & reconfigurer,
                        searchcorespi::index::IThreadingService & threadingService,
                        vespalib::Executor & warmupExecutor,
                        const search::TuneFileIndexManager & tuneFileIndexManager,
                        const search::TuneFileAttributes &tuneFileAttributes,
                        const search::common::FileHeaderContext & fileHeaderContext,
                        std::shared_ptr<searchcorespi::IIndexManager::SP> indexManager)
    : _baseDir(baseDir),
      _indexConfig(indexCfg),
      _schema(schema),
      _serialNum(serialNum),
      _reconfigurer(reconfigurer),
      _threadingService(threadingService),
      _warmupExecutor(warmupExecutor),
      _tuneFileIndexManager(tuneFileIndexManager),
      _tuneFileAttributes(tuneFileAttributes),
      _fileHeaderContext(fileHeaderContext),
      _indexManager(indexManager)
{
}

IndexManagerInitializer::~IndexManagerInitializer() = default;

void
IndexManagerInitializer::run()
{
    LOG(debug, "About to create proton::IndexManager with %u index field(s)", _schema.getNumIndexFields());
    std::filesystem::create_directory(std::filesystem::path(_baseDir));
    vespalib::File::sync(vespalib::dirname(_baseDir));
    *_indexManager = std::make_shared<index::IndexManager>
                    (_baseDir, _indexConfig, _schema, _serialNum, _reconfigurer, _threadingService,
                     _warmupExecutor, _tuneFileIndexManager, _tuneFileAttributes, _fileHeaderContext);
}


} // namespace proton