10 #include <unordered_map> 11 #include <unordered_set> 13 uint64_t handleObjectId(
const Object *
object) {
14 return object ?
object->id() : 0;
19 std::unordered_map<std::string, std::shared_ptr<Type>> names;
20 std::unordered_map<std::type_index, std::shared_ptr<Type>> ids;
21 static const std::shared_ptr<TypeRegistry> &instance() {
22 static auto ret = std::make_shared<TypeRegistry>();
27 void Type::_registerType(
const std::shared_ptr<Type> &t) {
28 auto reg = TypeRegistry::instance();
29 std::unique_lock<std::mutex> lock(reg->mutex);
30 reg->names[t->name()] = t;
31 reg->ids[t->typeId()] = t;
34 std::shared_ptr<Type> Type::tryFind(
const std::string &name) {
35 auto reg = TypeRegistry::instance();
36 std::unique_lock<std::mutex> lock(reg->mutex);
37 auto iter = reg->names.find(name);
38 if (iter != reg->names.end()) {
45 std::shared_ptr<Type> Type::find(
const std::string &name) {
46 if (
auto ret = tryFind(name)) {
49 throw std::runtime_error(
"type not found: " + name);
53 std::shared_ptr<Type> Type::tryFind(
const std::type_index &
id) {
54 auto reg = TypeRegistry::instance();
55 std::unique_lock<std::mutex> lock(reg->mutex);
56 auto iter = reg->ids.find(
id);
57 if (iter != reg->ids.end()) {
64 std::shared_ptr<Type> Type::find(
const std::type_index &
id) {
65 if (
auto ret = tryFind(
id)) {
68 throw std::runtime_error(std::string() +
"type not found: " +
id.name());
72 std::vector<std::shared_ptr<Type>> Type::list()
const {
73 auto reg = TypeRegistry::instance();
74 std::unique_lock<std::mutex> lock(reg->mutex);
75 std::vector<std::shared_ptr<Type>> ret;
76 for (
auto &p : reg->ids) {
78 for (
auto base = type; base; base = base->base()) {
79 if (base.get() ==
this) {