libcruft-util/backtrace_execinfo.cpp

41 lines
972 B
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
#include "backtrace.hpp"
#include "debug.hpp"
#include "types/casts.hpp"
2011-05-23 17:18:52 +10:00
#include <cstdlib>
#include <execinfo.h>
#include <algorithm>
#include <memory>
using namespace std;
debug::backtrace::backtrace (void):
m_frames (DEFAULT_DEPTH) {
2014-07-02 15:38:05 +10:00
size_t last;
size_t size = m_frames.size ();
2011-05-23 17:18:52 +10:00
2014-07-02 15:38:05 +10:00
while ((last = ::backtrace (&m_frames[0], m_frames.size ())) == size)
m_frames.resize (size = m_frames.size () * 2);
CHECK_HARD (last > 0);
m_frames.resize (last);
2011-05-23 17:18:52 +10:00
}
ostream&
2012-05-10 16:53:29 +10:00
debug::operator <<(ostream &os, const debug::backtrace &rhs) {
2011-05-23 17:18:52 +10:00
const auto frames = rhs.frames ();
// We don't use the array form of unique_ptr as clang fails on ambigious constructors
typedef unique_ptr<char *, decltype(&std::free)> unique_str;
unique_str names (backtrace_symbols (frames.data (), frames.size ()), ::free);
2011-05-23 17:18:52 +10:00
for (unsigned int i = 0; i < frames.size (); ++i)
os << frames[i] << "\t" << names.get()[i] << "\n";
2011-05-23 17:18:52 +10:00
return os;
}