blob: 148b211bb7bd0e8681ca25de5f864a230c23f898 (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#pragma once
#include <library/cpp/containers/sorted_vector/sorted_vector.h>
#include <util/generic/string.h>
#include <util/generic/strbuf.h>
#include <util/generic/maybe.h>
#include <util/generic/yexception.h>
namespace NYql {
namespace NCommon {
const TString ALL_CLUSTERS = "$all";
template <typename TType, bool RUNTIME = true>
class TConfSetting {
public:
TConfSetting() = default;
TConfSetting(const TType& value) {
PerClusterValue[ALL_CLUSTERS] = value;
}
TConfSetting(const TConfSetting&) = default;
TConfSetting(TConfSetting&&) = default;
~TConfSetting() = default;
bool IsRuntime() const {
return RUNTIME;
}
TType& operator[](const TString& cluster) {
if (ALL_CLUSTERS == cluster) {
PerClusterValue.clear();
}
return PerClusterValue[cluster];
}
TConfSetting& operator =(const TType& value) {
PerClusterValue.clear();
PerClusterValue[ALL_CLUSTERS] = value;
return *this;
}
TConfSetting& operator =(const TConfSetting&) = default;
TConfSetting& operator =(TConfSetting&&) = default;
template <typename TFunc>
void UpdateAll(TFunc func) {
PerClusterValue[ALL_CLUSTERS]; // insert record for all clusters if it is not present
for (auto& it: PerClusterValue) {
func(it.first, it.second);
}
}
TMaybe<TType> Get(const TString& cluster) const {
if (!PerClusterValue.empty()) {
auto it = PerClusterValue.find(cluster);
if (it != PerClusterValue.end()) {
return MakeMaybe(it->second);
}
it = PerClusterValue.find(ALL_CLUSTERS);
if (it != PerClusterValue.end()) {
return MakeMaybe(it->second);
}
}
return Nothing();
}
void Clear() {
PerClusterValue.clear();
}
void Clear(const TString& cluster) {
if (ALL_CLUSTERS == cluster) {
PerClusterValue.clear();
} else {
PerClusterValue.erase(cluster);
}
}
private:
NSorted::TSimpleMap<TString, TType> PerClusterValue; // Uses special '$all' key for all clusters
};
template <typename TType>
class TConfSetting<TType, false> {
public:
TConfSetting() = default;
TConfSetting(const TType& value)
: Value(value)
{
}
TConfSetting(const TConfSetting&) = default;
TConfSetting(TConfSetting&&) = default;
~TConfSetting() = default;
bool IsRuntime() const {
return false;
}
TType& operator[](const TString& cluster) {
if (cluster != ALL_CLUSTERS) {
ythrow yexception() << "Static setting cannot be set for specific cluster";
}
Value.ConstructInPlace();
return Value.GetRef();
}
TConfSetting& operator =(const TType& value) {
Value = value;
return *this;
}
TConfSetting& operator =(const TConfSetting&) = default;
TConfSetting& operator =(TConfSetting&&) = default;
TMaybe<TType> Get() const {
return Value;
}
void Clear() {
Value.Clear();
}
void Clear(const TString&) {
Value.Clear();
}
private:
TMaybe<TType> Value;
};
} // namespace NCommon
} // namespace NYql
|