mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
68 lines
1.6 KiB
C++
68 lines
1.6 KiB
C++
#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <execinfo.h>
|
|
#include <string.h>
|
|
|
|
#include <sstream>
|
|
|
|
#include <Common/StackTrace.h>
|
|
#include <Common/demangle.h>
|
|
|
|
|
|
StackTrace::StackTrace()
|
|
{
|
|
frames_size = backtrace(frames, STACK_TRACE_MAX_DEPTH);
|
|
}
|
|
|
|
std::string StackTrace::toString() const
|
|
{
|
|
char ** symbols = backtrace_symbols(frames, frames_size);
|
|
std::stringstream res;
|
|
|
|
if (!symbols)
|
|
return "Cannot get symbols for stack trace.\n";
|
|
|
|
try
|
|
{
|
|
for (size_t i = 0, size = frames_size; i < size; ++i)
|
|
{
|
|
/// We do "demangling" of names. The name is in parenthesis, before the '+' character.
|
|
|
|
char * name_start = nullptr;
|
|
char * name_end = nullptr;
|
|
std::string demangled_name;
|
|
int status = 0;
|
|
|
|
if (nullptr != (name_start = strchr(symbols[i], '('))
|
|
&& nullptr != (name_end = strchr(name_start, '+')))
|
|
{
|
|
++name_start;
|
|
*name_end = '\0';
|
|
demangled_name = demangle(name_start, status);
|
|
*name_end = '+';
|
|
}
|
|
|
|
res << i << ". ";
|
|
|
|
if (0 == status && name_start && name_end)
|
|
{
|
|
res.write(symbols[i], name_start - symbols[i]);
|
|
res << demangled_name << name_end;
|
|
}
|
|
else
|
|
res << symbols[i];
|
|
|
|
res << std::endl;
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
free(symbols);
|
|
throw;
|
|
}
|
|
|
|
free(symbols);
|
|
return res.str();
|
|
}
|