summaryrefslogtreecommitdiffstats
path: root/storageserver/src/vespa/storageserver/app/memfileservicelayerprocess.cpp
blob: bf5a4a73df4c6999378dd10f1eee3e030c0dea15 (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
106
107
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "memfileservicelayerprocess.h"

#include <vespa/log/log.h>
LOG_SETUP(".process.servicelayer");

namespace storage {

// MemFileServiceLayerProcess implementation

MemFileServiceLayerProcess::MemFileServiceLayerProcess(
        const config::ConfigUri & configUri)
    : ServiceLayerProcess(configUri),
      _changed(false)
{
}

void
MemFileServiceLayerProcess::shutdown()
{
    ServiceLayerProcess::shutdown();
    _provider.reset(0);
}

void
MemFileServiceLayerProcess::setupConfig(uint64_t subscribeTimeout)
{
    ServiceLayerProcess::setupConfig(subscribeTimeout);
    _configFetcher.reset(new config::ConfigFetcher(_configUri.getContext()));
    _configFetcher->subscribe<vespa::config::storage::StorDevicesConfig>(_configUri.getConfigId(), this, subscribeTimeout);
    _configFetcher->subscribe<vespa::config::storage::StorMemfilepersistenceConfig>(_configUri.getConfigId(), this, subscribeTimeout);
    _configFetcher->subscribe<vespa::config::content::PersistenceConfig>(_configUri.getConfigId(), this, subscribeTimeout);
    _configFetcher->start();
}

void
MemFileServiceLayerProcess::removeConfigSubscriptions()
{
    _configFetcher.reset(0);
}

void
MemFileServiceLayerProcess::setupProvider()
{
    _provider.reset(new memfile::MemFilePersistenceProvider(
            _context.getComponentRegister(), _configUri));
    _provider->setDocumentRepo(*getTypeRepo());
}

bool
MemFileServiceLayerProcess::configUpdated()
{
    if (ServiceLayerProcess::configUpdated()) return true;
    vespalib::LockGuard guard(_lock);
    return _changed;
}

void
MemFileServiceLayerProcess::updateConfig()
{
    ServiceLayerProcess::updateConfig();
    LOG(info, "Config updated. Sending new config to memfile provider");
    vespalib::LockGuard guard(_lock);
    if (_changed) {
        LOG(debug, "Memfile or device config changed too.");
        if (_nextMemfilepersistence) {
            _provider->setConfig(std::move(_nextMemfilepersistence));
        }
        if (_nextPersistence) {
            _provider->setConfig(std::move(_nextPersistence));
        }
        if (_nextDevices) {
            _provider->setConfig(std::move(_nextDevices));
        }
    }
    _provider->setDocumentRepo(*getTypeRepo());
    _changed = false;
}

void
MemFileServiceLayerProcess::configure(
        std::unique_ptr<vespa::config::storage::StorMemfilepersistenceConfig> config)
{
    vespalib::LockGuard guard(_lock);
    _nextMemfilepersistence = std::move(config);
    _changed = true;
}

void
MemFileServiceLayerProcess::configure(
        std::unique_ptr<vespa::config::content::PersistenceConfig> config)
{
    vespalib::LockGuard guard(_lock);
    _nextPersistence = std::move(config);
    _changed = true;
}

void
MemFileServiceLayerProcess::configure(std::unique_ptr<vespa::config::storage::StorDevicesConfig> config)
{
    vespalib::LockGuard guard(_lock);
    _nextDevices = std::move(config);
    _changed = true;
}

} // storage