ClickHouse/base/base/demangle.cpp

27 lines
522 B
C++
Raw Normal View History

2021-10-02 07:13:14 +00:00
#include <base/demangle.h>
#include <stdlib.h>
#include <cxxabi.h>
2020-02-04 13:31:15 +00:00
static DemangleResult tryDemangle(const char * name, int & status)
{
2020-02-05 10:24:24 +00:00
return DemangleResult(abi::__cxa_demangle(name, nullptr, nullptr, &status));
}
2020-02-04 13:31:15 +00:00
DemangleResult tryDemangle(const char * name)
{
int status = 0;
2020-02-04 13:31:15 +00:00
return tryDemangle(name, status);
}
std::string demangle(const char * name, int & status)
{
2020-02-04 13:31:15 +00:00
auto result = tryDemangle(name, status);
2020-02-05 10:24:24 +00:00
if (result)
{
2020-02-05 10:24:24 +00:00
return std::string(result.get());
}
return name;
}