98 lines
3.0 KiB
C++
98 lines
3.0 KiB
C++
/*
|
|
* Copyright 2015 - 2024 gary@drinkingtea.net
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if defined(OX_USE_STDLIB)
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#include "def.hpp"
|
|
#include "defines.hpp"
|
|
#include "error.hpp"
|
|
#include "realstd.hpp"
|
|
#include "stacktrace.hpp"
|
|
#include "trace.hpp"
|
|
#include "typetraits.hpp"
|
|
|
|
namespace ox {
|
|
|
|
void panic(StringViewCR file, int line, StringViewCR panicMsg, const Error &err = OxError(0)) noexcept;
|
|
|
|
constexpr void constexprPanic(StringViewCR file, int line, StringViewCR panicMsg, const Error &err = OxError(0)) noexcept {
|
|
if (!std::is_constant_evaluated()) {
|
|
panic(file, line, panicMsg, err);
|
|
} else {
|
|
while (true);
|
|
}
|
|
}
|
|
|
|
constexpr void assertFunc(StringViewCR file, int line, bool pass, [[maybe_unused]]StringViewCR assertTxt, [[maybe_unused]]StringViewCR msg) noexcept {
|
|
if (!pass) {
|
|
if (!std::is_constant_evaluated()) {
|
|
#ifdef OX_USE_STDLIB
|
|
auto output = sfmt("\n\033[31;1;1mASSERT FAILURE:\033[0m [{}:{}]: {}\n", file, line, msg);
|
|
output += genStackTrace(2);
|
|
oxTracef("assert", "Failed assert: {} ({}) [{}:{}]", msg, assertTxt, file, line);
|
|
std::abort();
|
|
#else
|
|
oxErrf("\n\033[31;1;1mASSERT FAILURE:\033[0m [{}:{}]: {}\n", file, line, msg);
|
|
oxTracef("assert", "Failed assert: {} ({}) [{}:{}]", msg, assertTxt, file, line);
|
|
constexprPanic(file, line, msg);
|
|
#endif
|
|
} else {
|
|
while (true);
|
|
}
|
|
}
|
|
}
|
|
|
|
constexpr void assertFunc(StringViewCR file, int line, const Error &err, StringViewCR, StringViewCR assertMsg) noexcept {
|
|
if (err) {
|
|
if (!std::is_constant_evaluated()) {
|
|
#if defined(OX_USE_STDLIB)
|
|
auto msg = sfmt("\n\033[31;1;1mASSERT FAILURE:\033[0m [{}:{}]: {}\n", file, line, assertMsg);
|
|
if (err.msg) {
|
|
msg += sfmt("\tError Message:\t{}\n", err.msg);
|
|
}
|
|
msg += sfmt("\tError Code:\t{}\n", static_cast<ErrorCode>(err));
|
|
if (err.file != nullptr) {
|
|
msg += sfmt("\tError Location:\t{}:{}\n", err.file, err.line);
|
|
}
|
|
msg += genStackTrace(2);
|
|
oxErr(msg);
|
|
oxTracef("assert", "Failed assert: {} [{}:{}]", assertMsg, file, line);
|
|
std::abort();
|
|
#else
|
|
constexprPanic(file, line, assertMsg);
|
|
#endif
|
|
} else {
|
|
while (true);
|
|
}
|
|
}
|
|
}
|
|
|
|
constexpr void expect(StringViewCR file, int line, const auto &actual, const auto &expected) noexcept {
|
|
if (actual != expected) {
|
|
if (!std::is_constant_evaluated()) {
|
|
#if defined(OX_USE_STDLIB)
|
|
oxErrf("\n\033[31;1;1mASSERT FAILURE:\033[0m [{}:{}]: {}\n", file, line, "Value incorrect");
|
|
oxErrf("expected: {}\nactual: {}\n", detail::toStringView<true>(expected), detail::toStringView<true>(actual));
|
|
printStackTrace(2);
|
|
oxTracef("assert.expect", "Failed assert: {} == {} [{}:{}]", detail::toStringView<true>(actual), detail::toStringView<true>(expected), file, line);
|
|
std::abort();
|
|
#else
|
|
constexprPanic(file, line, "Comparison failed");
|
|
#endif
|
|
} else {
|
|
while (true);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|