-
Notifications
You must be signed in to change notification settings - Fork 3
/
assert.hpp
114 lines (86 loc) · 3.43 KB
/
assert.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright 2022-2023 Laurynas Biveinis
#ifndef UNODB_DETAIL_ASSERT_HPP
#define UNODB_DETAIL_ASSERT_HPP
#include "global.hpp"
#include <iostream>
#include <sstream>
#include <string>
#include <thread>
#if defined(__linux__) && !defined(__clang__)
#define BOOST_STACKTRACE_USE_BACKTRACE
#elif defined(__APPLE__)
#define BOOST_STACKTRACE_GNU_SOURCE_NOT_REQUIRED
#endif
#include <boost/stacktrace.hpp>
#include "test_heap.hpp"
namespace unodb::detail {
// LCOV_EXCL_START
UNODB_DETAIL_DISABLE_MSVC_WARNING(26447)
[[noreturn, gnu::cold]] UNODB_DETAIL_NOINLINE inline void msg_stacktrace_abort(
const std::string &msg) noexcept {
UNODB_DETAIL_FAIL_ON_NTH_ALLOCATION(0);
std::ostringstream buf;
buf << msg << boost::stacktrace::stacktrace();
std::cerr << buf.str();
std::abort();
}
[[noreturn, gnu::cold]] UNODB_DETAIL_C_STRING_ARG(1)
UNODB_DETAIL_C_STRING_ARG(3)
UNODB_DETAIL_NOINLINE inline void crash(const char *file, int line,
const char *func) noexcept {
UNODB_DETAIL_FAIL_ON_NTH_ALLOCATION(0);
std::ostringstream buf;
buf << "Crash requested at " << file << ':' << line << ", function \"" << func
<< "\", thread " << std::this_thread::get_id() << '\n';
msg_stacktrace_abort(buf.str());
}
UNODB_DETAIL_RESTORE_MSVC_WARNINGS()
#ifndef NDEBUG
UNODB_DETAIL_DISABLE_MSVC_WARNING(26447)
[[noreturn, gnu::cold]] UNODB_DETAIL_NOINLINE UNODB_DETAIL_C_STRING_ARG(1)
UNODB_DETAIL_C_STRING_ARG(3)
UNODB_DETAIL_C_STRING_ARG(4) inline void assert_failure(
const char *file, int line, const char *func,
const char *condition) noexcept {
unodb::test::allocation_failure_injector::fail_on_nth_allocation(0);
std::ostringstream buf;
buf << "Assertion \"" << condition << "\" failed at " << file << ':' << line
<< ", function \"" << func << "\", thread " << std::this_thread::get_id()
<< '\n';
msg_stacktrace_abort(buf.str());
}
[[noreturn]] UNODB_DETAIL_C_STRING_ARG(1)
UNODB_DETAIL_C_STRING_ARG(3) inline void cannot_happen(
const char *file, int line, const char *func) noexcept {
unodb::test::allocation_failure_injector::fail_on_nth_allocation(0);
std::ostringstream buf;
buf << "Execution reached an unreachable point at " << file << ':' << line
<< ": function \"" << func << "\", thread " << std::this_thread::get_id()
<< '\n';
msg_stacktrace_abort(buf.str());
}
UNODB_DETAIL_RESTORE_MSVC_WARNINGS()
#define UNODB_DETAIL_ASSERT(condition) \
UNODB_DETAIL_UNLIKELY(!(condition)) \
? unodb::detail::assert_failure(__FILE__, __LINE__, __func__, #condition) \
: ((void)0)
#define UNODB_DETAIL_DEBUG_CRASH() UNODB_DETAIL_CRASH()
#else // #ifndef NDEBUG
[[noreturn]] UNODB_DETAIL_C_STRING_ARG(1) UNODB_DETAIL_C_STRING_ARG(
3) inline void cannot_happen(const char *, int, const char *) noexcept {
UNODB_DETAIL_UNREACHABLE();
}
#define UNODB_DETAIL_ASSERT(condition) ((void)0)
#define UNODB_DETAIL_DEBUG_CRASH()
#endif // #ifndef NDEBUG
} // namespace unodb::detail
#define UNODB_DETAIL_ASSUME(x) \
do { \
UNODB_DETAIL_ASSERT(x); \
UNODB_DETAIL_BUILTIN_ASSUME(x); \
} while (0)
#define UNODB_DETAIL_CANNOT_HAPPEN() \
unodb::detail::cannot_happen(__FILE__, __LINE__, __func__)
#define UNODB_DETAIL_CRASH() unodb::detail::crash(__FILE__, __LINE__, __func__)
// LCOV_EXCL_STOP
#endif