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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
/*-
* Copyright (c) 2014-2015 MongoDB, Inc.
* Copyright (c) 2008-2014 WiredTiger, Inc.
* All rights reserved.
*
* See the file LICENSE for redistribution information.
*/
#define WT_DEBUG_POINT ((void *)0xdeadbeef)
#define WT_DEBUG_BYTE (0xab)
/* In DIAGNOSTIC mode, yield in places where we want to encourage races. */
#ifdef HAVE_DIAGNOSTIC
#define WT_HAVE_DIAGNOSTIC_YIELD do { \
__wt_yield(); \
} while (0)
#else
#define WT_HAVE_DIAGNOSTIC_YIELD
#endif
/* Set "ret" and branch-to-err-label tests. */
#define WT_ERR(a) do { \
if ((ret = (a)) != 0) \
goto err; \
} while (0)
#define WT_ERR_MSG(session, v, ...) do { \
ret = (v); \
__wt_err(session, ret, __VA_ARGS__); \
goto err; \
} while (0)
#define WT_ERR_BUSY_OK(a) do { \
if ((ret = (a)) != 0) { \
if (ret == EBUSY) \
ret = 0; \
else \
goto err; \
} \
} while (0)
#define WT_ERR_NOTFOUND_OK(a) do { \
if ((ret = (a)) != 0) { \
if (ret == WT_NOTFOUND) \
ret = 0; \
else \
goto err; \
} \
} while (0)
#define WT_ERR_TEST(a, v) do { \
if (a) { \
ret = (v); \
goto err; \
} \
} while (0)
/* Return tests. */
#define WT_RET(a) do { \
int __ret; \
if ((__ret = (a)) != 0) \
return (__ret); \
} while (0)
#define WT_RET_TEST(a, v) do { \
if (a) \
return (v); \
} while (0)
#define WT_RET_MSG(session, v, ...) do { \
int __ret = (v); \
__wt_err(session, __ret, __VA_ARGS__); \
return (__ret); \
} while (0)
#define WT_RET_BUSY_OK(a) do { \
int __ret; \
if ((__ret = (a)) != 0 && __ret != EBUSY) \
return (__ret); \
} while (0)
#define WT_RET_NOTFOUND_OK(a) do { \
int __ret; \
if ((__ret = (a)) != 0 && __ret != WT_NOTFOUND) \
return (__ret); \
} while (0)
/* Set "ret" if not already set. */
#define WT_TRET(a) do { \
int __ret; \
if ((__ret = (a)) != 0 && \
(__ret == WT_PANIC || \
ret == 0 || ret == WT_DUPLICATE_KEY || ret == WT_NOTFOUND)) \
ret = __ret; \
} while (0)
#define WT_TRET_BUSY_OK(a) do { \
int __ret; \
if ((__ret = (a)) != 0 && __ret != EBUSY && \
(__ret == WT_PANIC || \
ret == 0 || ret == WT_DUPLICATE_KEY || ret == WT_NOTFOUND)) \
ret = __ret; \
} while (0)
#define WT_TRET_NOTFOUND_OK(a) do { \
int __ret; \
if ((__ret = (a)) != 0 && __ret != WT_NOTFOUND && \
(__ret == WT_PANIC || \
ret == 0 || ret == WT_DUPLICATE_KEY || ret == WT_NOTFOUND)) \
ret = __ret; \
} while (0)
/* Return and branch-to-err-label cases for switch statements. */
#define WT_ILLEGAL_VALUE(session) \
default: \
return (__wt_illegal_value(session, NULL))
#define WT_ILLEGAL_VALUE_ERR(session) \
default: \
WT_ERR(__wt_illegal_value(session, NULL))
#define WT_ILLEGAL_VALUE_SET(session) \
default: \
ret = __wt_illegal_value(session, NULL); \
break
#define WT_PANIC_MSG(session, v, ...) do { \
__wt_err(session, v, __VA_ARGS__); \
(void)__wt_panic(session); \
} while (0)
#define WT_PANIC_ERR(session, v, ...) do { \
WT_PANIC_MSG(session, v, __VA_ARGS__); \
WT_ERR(WT_PANIC); \
} while (0)
#define WT_PANIC_RET(session, v, ...) do { \
WT_PANIC_MSG(session, v, __VA_ARGS__); \
/* Return WT_PANIC regardless of earlier return codes. */ \
return (WT_PANIC); \
} while (0)
/*
* WT_ASSERT
* Assert an expression, aborting in diagnostic mode. Otherwise,
* "use" the session to keep the compiler quiet and don't evaluate the
* expression.
*/
#ifdef HAVE_DIAGNOSTIC
#define WT_ASSERT(session, exp) do { \
if (!(exp)) \
__wt_assert(session, 0, __FILE__, __LINE__, "%s", #exp);\
} while (0)
#else
#define WT_ASSERT(session, exp) \
WT_UNUSED(session)
#endif
|