ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 1 | /* -*- mode: c++; c-basic-offset: 4 -*- */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 2 | /* |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 3 | * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 15 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 16 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 17 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 18 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 19 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 20 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 21 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 22 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 | */ |
| 26 | |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 27 | #ifndef WTF_Assertions_h |
| 28 | #define WTF_Assertions_h |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 29 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 30 | /* |
| 31 | no namespaces because this file has to be includable from C and Objective-C |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 32 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 33 | Note, this file uses many GCC extensions, but it should be compatible with |
| 34 | C, Objective C, C++, and Objective C++. |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 35 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 36 | For non-debug builds, everything is disabled by default. |
| 37 | Defining any of the symbols explicitly prevents this from having any effect. |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 38 | |
| 39 | MSVC7 note: variadic macro support was added in MSVC8, so for now we disable |
| 40 | those macros in MSVC7. For more info, see the MSDN document on variadic |
| 41 | macros here: |
| 42 | |
| 43 | http://msdn2.microsoft.com/en-us/library/ms177415(VS.80).aspx |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 44 | */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 45 | |
sfalken | d180c0c | 2006-05-09 21:50:12 +0000 | [diff] [blame] | 46 | #include "Platform.h" |
eseidel | 0a77908 | 2006-10-02 10:57:23 +0000 | [diff] [blame] | 47 | |
ggaren | d789afc | 2007-03-11 23:57:11 +0000 | [diff] [blame] | 48 | #if COMPILER(MSVC) |
| 49 | #include <stddef.h> |
| 50 | #else |
eseidel | 2aed556 | 2006-10-02 10:26:58 +0000 | [diff] [blame] | 51 | #include <inttypes.h> |
eseidel | 0a77908 | 2006-10-02 10:57:23 +0000 | [diff] [blame] | 52 | #endif |
sfalken | d180c0c | 2006-05-09 21:50:12 +0000 | [diff] [blame] | 53 | |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 54 | #ifdef NDEBUG |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 55 | #define ASSERTIONS_DISABLED_DEFAULT 1 |
darin | fc91b7c | 2002-09-11 23:23:14 +0000 | [diff] [blame] | 56 | #else |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 57 | #define ASSERTIONS_DISABLED_DEFAULT 0 |
darin | fc91b7c | 2002-09-11 23:23:14 +0000 | [diff] [blame] | 58 | #endif |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 59 | |
| 60 | #ifndef ASSERT_DISABLED |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 61 | #define ASSERT_DISABLED ASSERTIONS_DISABLED_DEFAULT |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 62 | #endif |
| 63 | |
| 64 | #ifndef ASSERT_ARG_DISABLED |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 65 | #define ASSERT_ARG_DISABLED ASSERTIONS_DISABLED_DEFAULT |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 66 | #endif |
| 67 | |
| 68 | #ifndef FATAL_DISABLED |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 69 | #define FATAL_DISABLED ASSERTIONS_DISABLED_DEFAULT |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 70 | #endif |
| 71 | |
| 72 | #ifndef ERROR_DISABLED |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 73 | #define ERROR_DISABLED ASSERTIONS_DISABLED_DEFAULT |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 74 | #endif |
| 75 | |
| 76 | #ifndef LOG_DISABLED |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 77 | #define LOG_DISABLED ASSERTIONS_DISABLED_DEFAULT |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 78 | #endif |
| 79 | |
mjs | 3bfb61b | 2006-03-02 09:12:06 +0000 | [diff] [blame] | 80 | #if COMPILER(GCC) |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 81 | #define WTF_PRETTY_FUNCTION __PRETTY_FUNCTION__ |
hyatt | 6c974dd | 2006-01-06 22:43:44 +0000 | [diff] [blame] | 82 | #else |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 83 | #define WTF_PRETTY_FUNCTION __FUNCTION__ |
hyatt | 6c974dd | 2006-01-06 22:43:44 +0000 | [diff] [blame] | 84 | #endif |
| 85 | |
mrowe@apple.com | 85aac95 | 2007-11-22 03:08:41 +0000 | [diff] [blame] | 86 | // WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute |
| 87 | // emits a warning when %@ is used in the format string. Until <rdar://problem/5195437> is resolved we can't include |
| 88 | // the attribute when being used from Objective-C code in case it decides to use %@. |
| 89 | #if COMPILER(GCC) && !defined(__OBJC__) |
| 90 | #define WTF_ATTRIBUTE_PRINTF(formatStringArgument, extraArguments) __attribute__((__format__(printf, formatStringArgument, extraArguments))) |
| 91 | #else |
| 92 | #define WTF_ATTRIBUTE_PRINTF(formatStringArgument, extraArguments) |
| 93 | #endif |
| 94 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 95 | /* These helper functions are always declared, but not necessarily always defined if the corresponding function is disabled. */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 96 | |
| 97 | #ifdef __cplusplus |
| 98 | extern "C" { |
| 99 | #endif |
| 100 | |
mjs | bb86351 | 2006-05-09 09:27:55 +0000 | [diff] [blame] | 101 | typedef enum { WTFLogChannelOff, WTFLogChannelOn } WTFLogChannelState; |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 102 | |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 103 | typedef struct { |
| 104 | unsigned mask; |
| 105 | const char *defaultName; |
mjs | bb86351 | 2006-05-09 09:27:55 +0000 | [diff] [blame] | 106 | WTFLogChannelState state; |
| 107 | } WTFLogChannel; |
hyatt | 6c974dd | 2006-01-06 22:43:44 +0000 | [diff] [blame] | 108 | |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 109 | void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion); |
mrowe@apple.com | 85aac95 | 2007-11-22 03:08:41 +0000 | [diff] [blame] | 110 | void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6); |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 111 | void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion); |
mrowe@apple.com | 85aac95 | 2007-11-22 03:08:41 +0000 | [diff] [blame] | 112 | void WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5); |
| 113 | void WTFReportError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5); |
| 114 | void WTFLog(WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(2, 3); |
| 115 | void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6); |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 116 | |
| 117 | #ifdef __cplusplus |
| 118 | } |
| 119 | #endif |
| 120 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 121 | /* CRASH -- gets us into the debugger or the crash reporter -- signals are ignored by the crash reporter so we must do better */ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 122 | |
bdash | c4c84a2 | 2007-03-09 03:11:46 +0000 | [diff] [blame] | 123 | #ifndef CRASH |
sfalken | 88e07be | 2006-08-16 05:19:09 +0000 | [diff] [blame] | 124 | #define CRASH() *(int *)(uintptr_t)0xbbadbeef = 0 |
bdash | c4c84a2 | 2007-03-09 03:11:46 +0000 | [diff] [blame] | 125 | #endif |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 126 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 127 | /* ASSERT, ASSERT_WITH_MESSAGE, ASSERT_NOT_REACHED */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 128 | |
eseidel | b7b8a03 | 2006-04-04 18:10:12 +0000 | [diff] [blame] | 129 | #if PLATFORM(WIN_OS) |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 130 | /* FIXME: Change to use something other than ASSERT to avoid this conflict with win32. */ |
eseidel | b7b8a03 | 2006-04-04 18:10:12 +0000 | [diff] [blame] | 131 | #undef ASSERT |
| 132 | #endif |
| 133 | |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 134 | #if ASSERT_DISABLED |
| 135 | |
| 136 | #define ASSERT(assertion) ((void)0) |
ap | f46e063 | 2006-01-07 10:22:45 +0000 | [diff] [blame] | 137 | #define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 138 | #define ASSERT_NOT_REACHED() ((void)0) |
| 139 | |
| 140 | #else |
| 141 | |
| 142 | #define ASSERT(assertion) do \ |
| 143 | if (!(assertion)) { \ |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 144 | WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 145 | CRASH(); \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 146 | } \ |
| 147 | while (0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 148 | #if COMPILER(MSVC7) |
| 149 | #define ASSERT_WITH_MESSAGE(assertion) ((void)0) |
| 150 | #else |
ap | f46e063 | 2006-01-07 10:22:45 +0000 | [diff] [blame] | 151 | #define ASSERT_WITH_MESSAGE(assertion, ...) do \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 152 | if (!(assertion)) { \ |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 153 | WTFReportAssertionFailureWithMessage(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion, __VA_ARGS__); \ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 154 | CRASH(); \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 155 | } \ |
| 156 | while (0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 157 | #endif // COMPILER(MSVC7) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 158 | #define ASSERT_NOT_REACHED() do { \ |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 159 | WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, 0); \ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 160 | CRASH(); \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 161 | } while (0) |
| 162 | |
| 163 | #endif |
| 164 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 165 | /* ASSERT_ARG */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 166 | |
| 167 | #if ASSERT_ARG_DISABLED |
| 168 | |
| 169 | #define ASSERT_ARG(argName, assertion) ((void)0) |
| 170 | |
| 171 | #else |
| 172 | |
| 173 | #define ASSERT_ARG(argName, assertion) do \ |
| 174 | if (!(assertion)) { \ |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 175 | WTFReportArgumentAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #argName, #assertion); \ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 176 | CRASH(); \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 177 | } \ |
| 178 | while (0) |
| 179 | |
| 180 | #endif |
| 181 | |
kjk | 67f5d5a | 2007-02-17 09:07:39 +0000 | [diff] [blame] | 182 | /* COMPILE_ASSERT */ |
| 183 | #ifndef COMPILE_ASSERT |
| 184 | #define COMPILE_ASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1]; |
| 185 | #endif |
| 186 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 187 | /* FATAL */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 188 | |
| 189 | #if FATAL_DISABLED |
ap | f46e063 | 2006-01-07 10:22:45 +0000 | [diff] [blame] | 190 | #define FATAL(...) ((void)0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 191 | #elif COMPILER(MSVC7) |
| 192 | #define FATAL() ((void)0) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 193 | #else |
ap | f46e063 | 2006-01-07 10:22:45 +0000 | [diff] [blame] | 194 | #define FATAL(...) do { \ |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 195 | WTFReportFatalError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__); \ |
darin | 7b077f2 | 2002-09-13 14:50:00 +0000 | [diff] [blame] | 196 | CRASH(); \ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 197 | } while (0) |
| 198 | #endif |
| 199 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 200 | /* LOG_ERROR */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 201 | |
| 202 | #if ERROR_DISABLED |
darin | d91fb24 | 2006-02-19 17:20:40 +0000 | [diff] [blame] | 203 | #define LOG_ERROR(...) ((void)0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 204 | #elif COMPILER(MSVC7) |
| 205 | #define LOG_ERROR() ((void)0) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 206 | #else |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 207 | #define LOG_ERROR(...) WTFReportError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 208 | #endif |
| 209 | |
ap | 467ab6f | 2006-09-01 20:05:39 +0000 | [diff] [blame] | 210 | /* LOG */ |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 211 | |
| 212 | #if LOG_DISABLED |
ap | f46e063 | 2006-01-07 10:22:45 +0000 | [diff] [blame] | 213 | #define LOG(channel, ...) ((void)0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 214 | #elif COMPILER(MSVC7) |
| 215 | #define LOG() ((void)0) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 216 | #else |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 217 | #define LOG(channel, ...) WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__) |
darin | 7e7b97b | 2002-09-09 06:11:13 +0000 | [diff] [blame] | 218 | #define JOIN_LOG_CHANNEL_WITH_PREFIX(prefix, channel) JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel) |
| 219 | #define JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel) prefix ## channel |
| 220 | #endif |
mjs | cff5e5e | 2005-09-27 22:37:33 +0000 | [diff] [blame] | 221 | |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 222 | /* LOG_VERBOSE */ |
| 223 | |
| 224 | #if LOG_DISABLED |
| 225 | #define LOG_VERBOSE(channel, ...) ((void)0) |
bdash | 010c057 | 2007-10-14 11:55:02 +0000 | [diff] [blame] | 226 | #elif COMPILER(MSVC7) |
| 227 | #define LOG_VERBOSE(channel) ((void)0) |
weinig | cdc6bc9 | 2007-05-31 00:16:27 +0000 | [diff] [blame] | 228 | #else |
| 229 | #define LOG_VERBOSE(channel, ...) WTFLogVerbose(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, &JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__) |
| 230 | #endif |
| 231 | |
mjs | 98cf6e0 | 2006-10-19 02:42:55 +0000 | [diff] [blame] | 232 | #endif // WTF_Assertions_h |