aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/retriever/configretriever.cpp
blob: b71cd7f503be60ae0690890279074de3b79dd606 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "configretriever.h"
#include <vespa/config/common/exceptions.h>
#include <vespa/config/subscription/sourcespec.h>
#include <cassert>

namespace config {

const vespalib::duration ConfigRetriever::DEFAULT_SUBSCRIBE_TIMEOUT(60s);
const vespalib::duration ConfigRetriever::DEFAULT_NEXTGENERATION_TIMEOUT(60s);

ConfigRetriever::ConfigRetriever(const ConfigKeySet & bootstrapSet,
                                 std::shared_ptr<IConfigContext> context,
                                 vespalib::duration subscribeTimeout)
    : _bootstrapSubscriber(bootstrapSet, context, subscribeTimeout),
      _configSubscriber(),
      _lock(),
      _subscriptionList(),
      _lastKeySet(),
      _context(context),
      _generation(-1),
      _subscribeTimeout(subscribeTimeout),
      _bootstrapRequired(true),
      _closed(false)
{
}

ConfigRetriever::~ConfigRetriever() = default;

ConfigSnapshot
ConfigRetriever::getBootstrapConfigs(vespalib::duration timeout)
{
    bool ret = _bootstrapSubscriber.nextGeneration(timeout);
    if (!ret) {
        return ConfigSnapshot();
    }
    _bootstrapRequired = false;
    return _bootstrapSubscriber.getConfigSnapshot();
}

ConfigSnapshot
ConfigRetriever::getConfigs(const ConfigKeySet & keySet, vespalib::duration timeout)
{
    if (isClosed())
        return ConfigSnapshot();
    if (_bootstrapRequired) {
        throw ConfigRuntimeException("Cannot change keySet until bootstrap getBootstrapConfigs() has been called");
    }
    assert(!keySet.empty());
    if (keySet != _lastKeySet) {
        _lastKeySet = keySet;
        {
            std::lock_guard guard(_lock);
            if (isClosed())
                return ConfigSnapshot();
            _configSubscriber = std::make_unique<GenericConfigSubscriber>(_context);
        }
        _subscriptionList.clear();
        for (const auto & key : keySet) {
            _subscriptionList.push_back(_configSubscriber->subscribe(key, _subscribeTimeout));
        }
    }
    // Try update the subscribers generation if older than bootstrap
    if (_configSubscriber->getGeneration() < _bootstrapSubscriber.getGeneration())
        _configSubscriber->nextGeneration(timeout);

    // If we failed to get a new generation, the user should call us again.
    if (_configSubscriber->getGeneration() < _bootstrapSubscriber.getGeneration()) {
        return ConfigSnapshot();
    }
    // If we are not in sync, even though we got a new generation, we should get
    // another bootstrap.
    _bootstrapRequired = _configSubscriber->getGeneration() > _bootstrapSubscriber.getGeneration();
    if (_bootstrapRequired)
        return ConfigSnapshot();

    _generation = _configSubscriber->getGeneration();
    return ConfigSnapshot(_subscriptionList, _generation);
}

void
ConfigRetriever::close()
{
    std::lock_guard guard(_lock);
    _closed.store(true, std::memory_order_relaxed);
    _bootstrapSubscriber.close();
    if (_configSubscriber)
        _configSubscriber->close();
}

bool
ConfigRetriever::isClosed() const
{
    return _closed.load(std::memory_order_relaxed);
}

}