aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/common/configupdate.h
blob: 2c7ee419eb686b2d8f55715c960f1852c7e43e7a (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "configvalue.h"

namespace config {

/**
 * A config update contains a config value, and metadata saying if the value is
 * changed or not.
 */
class ConfigUpdate
{
public:
    ConfigUpdate(ConfigValue value, bool changed, int64_t generation);
    ConfigUpdate(const ConfigUpdate &) = delete;
    ConfigUpdate & operator = (const ConfigUpdate &) = delete;
    ~ConfigUpdate();
    const ConfigValue & getValue() const noexcept { return _value; }
    bool hasChanged() const noexcept { return _hasChanged; }
    int64_t getGeneration() const noexcept { return _generation; }
    void merge(const ConfigUpdate & b) noexcept { _hasChanged = _hasChanged || b.hasChanged(); }
private:
    ConfigValue _value;
    bool        _hasChanged;
    int64_t     _generation;
};

} // namespace config