From 99e735b7601716caf9e5b6dbac0ae22b2ab99b3d Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 9 Aug 2024 23:38:25 -0400 Subject: [PATCH] silly --- CMakeLists.txt | 2 +- src/blt/std/assert.cpp | 37 ++++++++++++++++++++++++++++--------- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6be78fd..cd8a335 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 0.18.26) +set(BLT_VERSION 0.18.27) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/src/blt/std/assert.cpp b/src/blt/std/assert.cpp index 4ab9dd2..3d03a23 100644 --- a/src/blt/std/assert.cpp +++ b/src/blt/std/assert.cpp @@ -11,12 +11,20 @@ #include #include #include +#include struct abort_exception : public std::exception { public: - explicit abort_exception(const char* error): error(error) - {} + explicit abort_exception(const char* what) + { + auto len = std::strlen(what) + 1; + error = static_cast(std::malloc(len)); + std::memcpy(static_cast(error), what, len); + } + + abort_exception(const abort_exception& copy) = delete; + abort_exception& operator=(const abort_exception& copy) = delete; [[nodiscard]] const char* what() const noexcept override { @@ -24,15 +32,21 @@ struct abort_exception : public std::exception return "Abort called"; return error; } + + ~abort_exception() override + { + std::free(static_cast(error)); + } private: - const char* error{nullptr}; + char* error{nullptr}; }; #if defined(__GNUC__) && !defined(__EMSCRIPTEN__) #include #include + #endif #if defined(__GNUC__) && !defined(__EMSCRIPTEN__) @@ -47,16 +61,20 @@ struct abort_exception : public std::exception #define BLT_FREE_STACK_TRACE() void(); #endif -namespace blt { +namespace blt +{ #if defined(__GNUC__) && !defined(__EMSCRIPTEN__) - static inline std::string _macro_filename(const std::string& path){ + + static inline std::string _macro_filename(const std::string& path) + { auto paths = blt::string::split(path, "/"); - auto final = paths[paths.size()-1]; + auto final = paths[paths.size() - 1]; if (final == "/") - return paths[paths.size()-2]; + return paths[paths.size() - 2]; return final; } + #endif void b_throw(const char* what, const char* path, int line) @@ -105,7 +123,8 @@ namespace blt { if (messages == nullptr) return; #if defined(__GNUC__) && !defined(__EMSCRIPTEN__) - for (int i = 1; i < size; i++){ + for (int i = 1; i < size; i++) + { int tabs = i - 1; std::string buffer; for (int j = 0; j < tabs; j++) @@ -135,7 +154,7 @@ namespace blt { buffer += " in "; buffer += loc; - + BLT_ERROR(buffer); } #else