-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy pathsettings.cpp
45 lines (33 loc) · 1.4 KB
/
settings.cpp
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
#include <userver/error_injection/settings.hpp>
#include <unordered_map>
#include <userver/formats/parse/common_containers.hpp>
#include <userver/formats/yaml/value.hpp>
#include <userver/logging/log.hpp>
#include <userver/utils/trivial_map.hpp>
USERVER_NAMESPACE_BEGIN
namespace error_injection {
Verdict Parse(const yaml_config::YamlConfig& yaml, formats::parse::To<Verdict>) {
const auto value = yaml.As<std::string>();
static constexpr utils::TrivialBiMap kValues = [](auto selector) {
return selector()
.Case("timeout", Verdict::Timeout)
.Case("error", Verdict::Error)
.Case("max-delay", Verdict::MaxDelay)
.Case("random-delay", Verdict::RandomDelay);
};
auto v = kValues.TryFind(value);
if (v) return *v;
throw std::runtime_error(fmt::format(
"Can't parse error_injection::Verdict from '{}'. Expecting one of: {}", value, kValues.DescribeFirst()
));
}
Settings Parse(const yaml_config::YamlConfig& value, formats::parse::To<Settings>) {
Settings settings;
settings.enabled = value["enabled"].As<bool>();
settings.probability = value["probability"].As<double>();
settings.possible_verdicts = value["verdicts"].As<std::vector<Verdict>>();
LOG_DEBUG() << "enabled = " << settings.enabled << " probability = " << settings.probability;
return settings;
}
} // namespace error_injection
USERVER_NAMESPACE_END