mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-30 13:07:32 -03:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
// Copyright (c) 2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <util/check.h>
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config/bitcoin-config.h>
|
|
#endif
|
|
|
|
#include <clientversion.h>
|
|
#include <tinyformat.h>
|
|
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
std::string StrFormatInternalBug(std::string_view msg, std::string_view file, int line, std::string_view func)
|
|
{
|
|
return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\n"
|
|
"%s %s\n"
|
|
"Please report this issue here: %s\n",
|
|
msg, file, line, func, PACKAGE_NAME, FormatFullVersion(), PACKAGE_BUGREPORT);
|
|
}
|
|
|
|
NonFatalCheckError::NonFatalCheckError(std::string_view msg, std::string_view file, int line, std::string_view func)
|
|
: std::runtime_error{StrFormatInternalBug(msg, file, line, func)}
|
|
{
|
|
}
|
|
|
|
void assertion_fail(std::string_view file, int line, std::string_view func, std::string_view assertion)
|
|
{
|
|
auto str = strprintf("%s:%s %s: Assertion `%s' failed.\n", file, line, func, assertion);
|
|
fwrite(str.data(), 1, str.size(), stderr);
|
|
std::abort();
|
|
}
|