从函数C++ stacktrace引发异常?

我可以利用海湾合作委员会的回溯在程序的任何给定点获得堆栈跟踪,但我想从堆栈在引发异常时的任何帧中获得跟踪,即在堆栈之前平仓。从函数C++ stacktrace引发异常?

例如,下面的块

func() { 

throw std::exception();

}

try {

func();

}

catch (std::exception) {

std::cout << print_trace();

//do stuff

}

应该仍然能够保留FUNC帧()以某种方式。

这一直是asked before,但它涉及一个未处理的异常,可能会终止程序,并可能不会给调用堆栈放松的机会?

有没有办法做到这一点,但仍然能够捕捉和处理异常通常?

可能有一种方法,如为所有异常处理程序,除了生成跟踪并重新抛出异常外什么也不做。理想情况下,我应该能够在Exception类的构造函数中生成跟踪,但在这里我不一定能够控制可能遇到的异常。

回答:

您可能对开发中的Boost库感兴趣:Portable Backtrace。例如:

#include <boost/backtrace.hpp> 

#include <iostream>

int foo()

{

throw boost::runtime_error("My Error");

return 10;

}

int bar()

{

return foo()+20;

}

int main()

{

try {

std::cout << bar() << std::endl;

}

catch(std::exception const &e)

{

std::cerr << e.what() << std::endl;

std::cerr << boost::trace(e);

}

}

打印:

My Error 

0x403fe1: boost::stack_trace::trace(void**, int) + 0x1b in ./test_backtrace

0x405451: boost::backtrace::backtrace(unsigned long) + 0x65 in ./test_backtrace

0x4054d2: boost::runtime_error::runtime_error(std::string const&) + 0x32 in ./test_backtrace

0x40417e: foo() + 0x44 in ./test_backtrace

0x40425c: bar() + 0x9 in ./test_backtrace

0x404271: main + 0x10 in ./test_backtrace

0x7fd612ecd1a6: __libc_start_main + 0xe6 in /lib/libc.so.6

0x403b39: __gxx_personality_v0 + 0x99 in ./test_backtrace

希望这有助于!

以上是 从函数C++ stacktrace引发异常? 的全部内容, 来源链接: utcz.com/qa/263160.html

回到顶部