-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.h
73 lines (59 loc) · 1.73 KB
/
utility.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef AUTOWIRED_UTILITY_H
#define AUTOWIRED_UTILITY_H
#include <memory>
#include <string>
#include <type_traits>
#ifndef _MSC_VER
#include <cxxabi.h>
#endif
namespace auto_wired {
class Utility {
public:
template <typename T>
static std::string GetClassTypeName(std::string_view custom_name = "") {
return getClassTypeName<T>(custom_name, false);
}
template <typename T>
static std::string GetPrettyClassTypeName(std::string_view custom_name = "") {
return getClassTypeName<T>(custom_name, true);
}
private:
template <typename T>
static std::string getClassTypeName(std::string_view custom_name, bool is_pretty) {
if constexpr (std::is_pointer_v<T>) {
return getClassTypeName<std::remove_pointer_t<T>>(custom_name, is_pretty);
}
std::string res = "";
res += typeid(T).name();
if (is_pretty) {
res = demangle(res.data());
}
if (!custom_name.empty()) {
res += ".";
res += custom_name;
}
return res;
}
static std::string demangle(const char* mangled_name) {
#ifndef _MSC_VER
std::size_t len = 0;
int status = 0;
std::unique_ptr<char, decltype(&std::free)> ptr(
__cxxabiv1::__cxa_demangle(mangled_name, nullptr, &len, &status), &std::free);
if (status == 0) {
return std::string(ptr.get());
}
// fallback
return mangled_name;
#else
auto pos = strstr(mangled_name, " ");
if (pos == nullptr) {
return std::string{mangled_name};
} else {
return std::string{pos + 1};
}
#endif
}
};
} // namespace auto_wired
#endif // AUTOWIRED_UTILITY_H