ClickHouse/base/common/demangle.h

33 lines
735 B
C++
Raw Normal View History

#pragma once
2020-02-05 15:57:42 +00:00
#include <memory>
#include <string>
/** Demangles C++ symbol name.
* When demangling fails, returns the original name and sets status to non-zero.
* TODO: Write msvc version (now returns the same string)
*/
std::string demangle(const char * name, int & status);
inline std::string demangle(const char * name)
{
int status = 0;
return demangle(name, status);
}
// abi::__cxa_demangle returns a C string of known size that should be deleted
// with free().
2020-02-05 10:24:24 +00:00
struct FreeingDeleter
{
2020-02-05 10:24:24 +00:00
template <typename PointerType>
void operator() (PointerType ptr)
{
2020-02-05 10:24:24 +00:00
std::free(ptr);
}
};
2020-02-05 10:24:24 +00:00
typedef std::unique_ptr<char, FreeingDeleter> DemangleResult;
2020-02-04 13:31:15 +00:00
DemangleResult tryDemangle(const char * name);