blob: e0eebc0b274fd3e43e3f58f5b7ad78be601348d1 (
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
|
/*
* This source code is released into the public domain.
*/
module;
/*
* The configuration store. There should only be one of these.
*/
#include <coroutine>
#include <filesystem>
#include <format>
#include <map>
export module nihil.config:store;
import :error;
import :option;
namespace nihil::config {
// Exception thrown on an attempt to fetch an undefined option.
export struct unknown_option final : error {
unknown_option(std::string_view option_name)
: error(std::format("unknown configuration variable '{}'",
option_name))
, _option_name(option_name)
{}
auto option_name(this unknown_option const &self) -> std::string_view
{
return self._option_name;
}
private:
std::string _option_name;
};
struct store final {
/*
* Get the global config store.
*/
static auto get() -> store& {
if (instance == nullptr)
instance = new store;
return *instance;
}
/*
* Register a new value with the config store.
*/
auto register_option(this store &self, option *object) -> void
{
auto [it, okay] = self.options.insert(
std::pair{object->name(), object});
if (!okay)
throw error(std::format(
"INTERNAL ERROR: attempt to register "
"duplicate config value '{0}'",
object->name()));
}
/*
* Remove a value from the config store.
*/
auto unregister_option(this store &self, option *object) -> void
{
auto it = self.options.find(object->name());
if (it == self.options.end())
throw error(std::format(
"INTERNAL ERROR: attempt to unregister "
"non-existent config value '{}'",
object->name()));
self.options.erase(it);
}
/*
* Fetch an existing value in the config store.
*/
auto fetch(this store const &self, std::string_view name)
-> option &
{
if (auto it = self.options.find(name); it != self.options.end())
return *it->second;
throw unknown_option(name);
}
/*
* Fetch all values in the configuration store.
*/
auto all(this auto &&self) -> nihil::generator<option const &>
{
for (auto &&it : self.options)
co_yield *it.second;
}
// Not movable or copyable.
store(store const &) = delete;
store(store &&) = delete;
store& operator=(store const &) = delete;
store& operator=(store &&) = delete;
private:
/*
* The global configuration store, created by init() and accessed via
* get().
*/
inline static store *instance = nullptr;
std::map<std::string_view, option *> options;
store() = default;
};
/*
* The public API.
*/
export auto get_option(std::string_view option_name) -> option &
{
return store::get().fetch(option_name);
}
} // namespace nihil::config
|