-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistry.h
51 lines (41 loc) · 1.28 KB
/
registry.h
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
#ifndef JWUTIL_REGISTRY_H
#define JWUTIL_REGISTRY_H
#include <unordered_map>
#include <spdlog/fmt/fmt.h>
#include "jw_util/baseexception.h"
#include "jw_util/preparedcontext.h"
namespace jw_util {
template <typename ElementType>
class Registry {
public:
class AccessException : public BaseException {
public:
AccessException(const std::string &key)
: BaseException(fmt::format("Could not find key \"{}\" in registry", key))
{}
};
template <typename... ContextArgs>
Registry(Context<ContextArgs...> context) {
YAML::const_iterator i = context.template get<Config::Node>().begin();
while (i != context.template get<Config::Node>().end()) {
auto res = map.emplace(i->first, context.extend(i->second));
assert(res.second);
i++;
}
}
ElementType &get(const std::string &key) {
typename std::unordered_map<std::string, ElementType>::const_iterator found = map.find(key);
if (found != map.cend()) {
return map;
} else {
throw AccessException(key);
}
}
std::unordered_map<std::string, ElementType> &getMap() {
return map;
}
private:
std::unordered_map<std::string, ElementType> map;
};
}
#endif // JWUTIL_REGISTRY_H