Include debug symbols in Release build, rework exception stack trace.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2020-08-16 16:59:13 +02:00
parent 5a14c712d2
commit 620248f329
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
3 changed files with 61 additions and 32 deletions

View File

@ -3,6 +3,8 @@ project(Arbutils)
# Enable all warnings, and make them error when occurring. # Enable all warnings, and make them error when occurring.
add_compile_options(-Wall -Wextra -Werror) add_compile_options(-Wall -Wextra -Werror)
# Include debug symbols in all builds
add_compile_options(-g -gfull -g3)
# We like new stuff, so set the c++ standard to c++20. # We like new stuff, so set the c++ standard to c++20.
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
@ -43,7 +45,7 @@ endif (WINDOWS)
set(LINKS) set(LINKS)
if (NOT WINDOWS) if (NOT WINDOWS)
set(LINKS ${LINKS} -lbfd -ldl) set(LINKS ${LINKS} -ldw)
endif() endif()
# If we want to link the C and C++ library statically, link those as well. # If we want to link the C and C++ library statically, link those as well.
if (STATICC) if (STATICC)

View File

@ -6,7 +6,7 @@
#include <string> #include <string>
#include <utility> #include <utility>
#if !WINDOWS #if !WINDOWS
#define BACKWARD_HAS_BFD 1 #define BACKWARD_HAS_DW 1
#include "../extern/backward.hpp" #include "../extern/backward.hpp"
#endif #endif
@ -19,7 +19,7 @@ namespace ArbUt {
public: public:
explicit Exception(const std::string& msg) : std::logic_error(msg) { explicit Exception(const std::string& msg) : std::logic_error(msg) {
#if !WINDOWS #if !WINDOWS
_stack.load_here(9); _stack.load_here(32);
#endif #endif
} }
@ -43,9 +43,31 @@ namespace ArbUt {
backward::TraceResolver tr; backward::TraceResolver tr;
tr.load_stacktrace(_stack); tr.load_stacktrace(_stack);
std::stringstream ss; std::stringstream ss;
for (size_t i = 3; i < _stack.size() && i < depth + 3; ++i) { ss << "Stacktrace with depth " << depth << ": " << std::endl;
bool foundExceptionClass = false;
size_t framesAppended = -1;
for (size_t i = 0; i < _stack.size(); ++i) {
backward::ResolvedTrace trace = tr.resolve(_stack[i]); backward::ResolvedTrace trace = tr.resolve(_stack[i]);
if (trace.source.filename.empty()) { if (trace.source.filename.empty()) {
AppendNoSourceStack(ss, trace, include_addr);
} else {
AppendSourceStack(ss, trace, foundExceptionClass);
if (foundExceptionClass){
framesAppended++;
if (framesAppended >= depth)
break;
}
}
}
return ss.str();
#else
return "Stack trace not available on Windows.";
#endif
}
private:
static void AppendNoSourceStack(std::stringstream& ss, const backward::ResolvedTrace& trace,
bool include_addr) {
auto objectName = auto objectName =
(strrchr(trace.object_filename.c_str(), '/') ? strrchr(trace.object_filename.c_str(), '/') + 1 (strrchr(trace.object_filename.c_str(), '/') ? strrchr(trace.object_filename.c_str(), '/') + 1
: trace.object_filename.c_str()); : trace.object_filename.c_str());
@ -59,11 +81,18 @@ namespace ArbUt {
ss << "[" << trace.addr << "]"; ss << "[" << trace.addr << "]";
} }
ss << " " << function << std::endl; ss << " " << function << std::endl;
}
} else { static void AppendSourceStack(std::stringstream& ss, const backward::ResolvedTrace& trace, bool& foundExceptionClass) {
auto fileName = auto fileName =
(strrchr(trace.source.filename.c_str(), '/') ? strrchr(trace.source.filename.c_str(), '/') + 1 (strrchr(trace.source.filename.c_str(), '/') ? strrchr(trace.source.filename.c_str(), '/') + 1
: trace.source.filename.c_str()); : trace.source.filename.c_str());
if (strcmp(fileName, "Exception.hpp") == 0) {
foundExceptionClass = true;
return;
} else if (!foundExceptionClass) {
return;
}
auto function = trace.object_function; auto function = trace.object_function;
if (function.length() > 70) { if (function.length() > 70) {
function = function.substr(0, 67); function = function.substr(0, 67);
@ -71,12 +100,6 @@ namespace ArbUt {
} }
ss << fileName << "[" << trace.source.line << "] " << function << std::endl; ss << fileName << "[" << trace.source.line << "] " << function << std::endl;
} }
}
return ss.str();
#else
return "Stack trace not available on Windows.";
#endif
}
}; };
} }

View File

@ -3,15 +3,19 @@
#include "../src/Exception.hpp" #include "../src/Exception.hpp"
using namespace ArbUt; using namespace ArbUt;
#ifndef WINDOWS
__attribute__((optnone))
#endif
static void Thrower(){
throw ArbUt::Exception("foobar");
}
TEST_CASE("Throw exception get stack trace") { TEST_CASE("Throw exception get stack trace") {
try { try {
throw ArbUt::Exception("foobar"); Thrower();
} catch (const ArbUt::Exception& e) { } catch (const ArbUt::Exception& e) {
#ifndef NDEBUG REQUIRE(e.GetStacktrace(1) == "Stacktrace with depth 1: \n"
REQUIRE(e.GetStacktrace(1) == "ExceptionTests.cpp[8] ____C_A_T_C_H____T_E_S_T____0()\n"); "ExceptionTests.cpp[10] Thrower()\n");
#else
REQUIRE(e.GetStacktrace(1, false) == "ArbutilsTests Catch::RunContext::runTest(Catch::TestCase const&)\n");
#endif
} }
} }