Branch data Line data Source code
1 : : // Copyright (c) 2022 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <util/check.h>
6 : :
7 : : #include <bitcoin-build-config.h> // IWYU pragma: keep
8 : :
9 : : #include <clientversion.h>
10 : : #include <tinyformat.h>
11 : :
12 : : #include <cstdio>
13 : : #include <cstdlib>
14 : : #include <string>
15 : : #include <string_view>
16 : :
17 : : bool g_fuzzing = false;
18 : :
19 : 9 : std::string StrFormatInternalBug(std::string_view msg, std::string_view file, int line, std::string_view func)
20 : : {
21 : 9 : return strprintf("Internal bug detected: %s\n%s:%d (%s)\n"
22 : : "%s %s\n"
23 : : "Please report this issue here: %s\n",
24 [ + - ]: 18 : msg, file, line, func, CLIENT_NAME, FormatFullVersion(), CLIENT_BUGREPORT);
25 : : }
26 : :
27 : 9 : NonFatalCheckError::NonFatalCheckError(std::string_view msg, std::string_view file, int line, std::string_view func)
28 [ + - ]: 9 : : std::runtime_error{StrFormatInternalBug(msg, file, line, func)}
29 : : {
30 : 9 : }
31 : :
32 : 0 : void assertion_fail(std::string_view file, int line, std::string_view func, std::string_view assertion)
33 : : {
34 : 0 : auto str = strprintf("%s:%s %s: Assertion `%s' failed.\n", file, line, func, assertion);
35 [ # # ]: 0 : fwrite(str.data(), 1, str.size(), stderr);
36 : 0 : std::abort();
37 : 0 : }
|