blob: 74ea91c32444e263f1bd1fc6826073c3a5775253 [file] [log] [blame]
ap467ab6f2006-09-01 20:05:39 +00001/* -*- mode: c++; c-basic-offset: 4 -*- */
darin7e7b97b2002-09-09 06:11:13 +00002/*
weinigcdc6bc92007-05-31 00:16:27 +00003 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved.
darin7e7b97b2002-09-09 06:11:13 +00004 *
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
mjs98cf6e02006-10-19 02:42:55 +000027#ifndef WTF_Assertions_h
28#define WTF_Assertions_h
mjscff5e5e2005-09-27 22:37:33 +000029
ap467ab6f2006-09-01 20:05:39 +000030/*
31 no namespaces because this file has to be includable from C and Objective-C
mjscff5e5e2005-09-27 22:37:33 +000032
ap467ab6f2006-09-01 20:05:39 +000033 Note, this file uses many GCC extensions, but it should be compatible with
34 C, Objective C, C++, and Objective C++.
darin7e7b97b2002-09-09 06:11:13 +000035
ap467ab6f2006-09-01 20:05:39 +000036 For non-debug builds, everything is disabled by default.
37 Defining any of the symbols explicitly prevents this from having any effect.
bdash010c0572007-10-14 11:55:02 +000038
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
ap467ab6f2006-09-01 20:05:39 +000044*/
darin7e7b97b2002-09-09 06:11:13 +000045
sfalkend180c0c2006-05-09 21:50:12 +000046#include "Platform.h"
eseidel0a779082006-10-02 10:57:23 +000047
ggarend789afc2007-03-11 23:57:11 +000048#if COMPILER(MSVC)
49#include <stddef.h>
50#else
eseidel2aed5562006-10-02 10:26:58 +000051#include <inttypes.h>
eseidel0a779082006-10-02 10:57:23 +000052#endif
sfalkend180c0c2006-05-09 21:50:12 +000053
darin7e7b97b2002-09-09 06:11:13 +000054#ifdef NDEBUG
mjscff5e5e2005-09-27 22:37:33 +000055#define ASSERTIONS_DISABLED_DEFAULT 1
darinfc91b7c2002-09-11 23:23:14 +000056#else
mjscff5e5e2005-09-27 22:37:33 +000057#define ASSERTIONS_DISABLED_DEFAULT 0
darinfc91b7c2002-09-11 23:23:14 +000058#endif
darin7e7b97b2002-09-09 06:11:13 +000059
60#ifndef ASSERT_DISABLED
mjscff5e5e2005-09-27 22:37:33 +000061#define ASSERT_DISABLED ASSERTIONS_DISABLED_DEFAULT
darin7e7b97b2002-09-09 06:11:13 +000062#endif
63
64#ifndef ASSERT_ARG_DISABLED
mjscff5e5e2005-09-27 22:37:33 +000065#define ASSERT_ARG_DISABLED ASSERTIONS_DISABLED_DEFAULT
darin7e7b97b2002-09-09 06:11:13 +000066#endif
67
68#ifndef FATAL_DISABLED
mjscff5e5e2005-09-27 22:37:33 +000069#define FATAL_DISABLED ASSERTIONS_DISABLED_DEFAULT
darin7e7b97b2002-09-09 06:11:13 +000070#endif
71
72#ifndef ERROR_DISABLED
mjscff5e5e2005-09-27 22:37:33 +000073#define ERROR_DISABLED ASSERTIONS_DISABLED_DEFAULT
darin7e7b97b2002-09-09 06:11:13 +000074#endif
75
76#ifndef LOG_DISABLED
mjscff5e5e2005-09-27 22:37:33 +000077#define LOG_DISABLED ASSERTIONS_DISABLED_DEFAULT
darin7e7b97b2002-09-09 06:11:13 +000078#endif
79
mjs3bfb61b2006-03-02 09:12:06 +000080#if COMPILER(GCC)
mjs98cf6e02006-10-19 02:42:55 +000081#define WTF_PRETTY_FUNCTION __PRETTY_FUNCTION__
hyatt6c974dd2006-01-06 22:43:44 +000082#else
mjs98cf6e02006-10-19 02:42:55 +000083#define WTF_PRETTY_FUNCTION __FUNCTION__
hyatt6c974dd2006-01-06 22:43:44 +000084#endif
85
mrowe@apple.com85aac952007-11-22 03:08:41 +000086// 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
ap467ab6f2006-09-01 20:05:39 +000095/* These helper functions are always declared, but not necessarily always defined if the corresponding function is disabled. */
darin7e7b97b2002-09-09 06:11:13 +000096
97#ifdef __cplusplus
98extern "C" {
99#endif
100
mjsbb863512006-05-09 09:27:55 +0000101typedef enum { WTFLogChannelOff, WTFLogChannelOn } WTFLogChannelState;
mjscff5e5e2005-09-27 22:37:33 +0000102
darin7e7b97b2002-09-09 06:11:13 +0000103typedef struct {
104 unsigned mask;
105 const char *defaultName;
mjsbb863512006-05-09 09:27:55 +0000106 WTFLogChannelState state;
107} WTFLogChannel;
hyatt6c974dd2006-01-06 22:43:44 +0000108
weinigcdc6bc92007-05-31 00:16:27 +0000109void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion);
mrowe@apple.com85aac952007-11-22 03:08:41 +0000110void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
weinigcdc6bc92007-05-31 00:16:27 +0000111void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion);
mrowe@apple.com85aac952007-11-22 03:08:41 +0000112void WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5);
113void WTFReportError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5);
114void WTFLog(WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(2, 3);
115void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
darin7e7b97b2002-09-09 06:11:13 +0000116
117#ifdef __cplusplus
118}
119#endif
120
ap467ab6f2006-09-01 20:05:39 +0000121/* CRASH -- gets us into the debugger or the crash reporter -- signals are ignored by the crash reporter so we must do better */
darin7b077f22002-09-13 14:50:00 +0000122
bdashc4c84a22007-03-09 03:11:46 +0000123#ifndef CRASH
sfalken88e07be2006-08-16 05:19:09 +0000124#define CRASH() *(int *)(uintptr_t)0xbbadbeef = 0
bdashc4c84a22007-03-09 03:11:46 +0000125#endif
darin7b077f22002-09-13 14:50:00 +0000126
ap467ab6f2006-09-01 20:05:39 +0000127/* ASSERT, ASSERT_WITH_MESSAGE, ASSERT_NOT_REACHED */
darin7e7b97b2002-09-09 06:11:13 +0000128
eseidelb7b8a032006-04-04 18:10:12 +0000129#if PLATFORM(WIN_OS)
ap467ab6f2006-09-01 20:05:39 +0000130/* FIXME: Change to use something other than ASSERT to avoid this conflict with win32. */
eseidelb7b8a032006-04-04 18:10:12 +0000131#undef ASSERT
132#endif
133
darin7e7b97b2002-09-09 06:11:13 +0000134#if ASSERT_DISABLED
135
136#define ASSERT(assertion) ((void)0)
apf46e0632006-01-07 10:22:45 +0000137#define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0)
darin7e7b97b2002-09-09 06:11:13 +0000138#define ASSERT_NOT_REACHED() ((void)0)
139
140#else
141
142#define ASSERT(assertion) do \
143 if (!(assertion)) { \
mjs98cf6e02006-10-19 02:42:55 +0000144 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \
darin7b077f22002-09-13 14:50:00 +0000145 CRASH(); \
darin7e7b97b2002-09-09 06:11:13 +0000146 } \
147while (0)
bdash010c0572007-10-14 11:55:02 +0000148#if COMPILER(MSVC7)
149#define ASSERT_WITH_MESSAGE(assertion) ((void)0)
150#else
apf46e0632006-01-07 10:22:45 +0000151#define ASSERT_WITH_MESSAGE(assertion, ...) do \
darin7e7b97b2002-09-09 06:11:13 +0000152 if (!(assertion)) { \
mjs98cf6e02006-10-19 02:42:55 +0000153 WTFReportAssertionFailureWithMessage(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion, __VA_ARGS__); \
darin7b077f22002-09-13 14:50:00 +0000154 CRASH(); \
darin7e7b97b2002-09-09 06:11:13 +0000155 } \
156while (0)
bdash010c0572007-10-14 11:55:02 +0000157#endif // COMPILER(MSVC7)
darin7e7b97b2002-09-09 06:11:13 +0000158#define ASSERT_NOT_REACHED() do { \
mjs98cf6e02006-10-19 02:42:55 +0000159 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, 0); \
darin7b077f22002-09-13 14:50:00 +0000160 CRASH(); \
darin7e7b97b2002-09-09 06:11:13 +0000161} while (0)
162
163#endif
164
ap467ab6f2006-09-01 20:05:39 +0000165/* ASSERT_ARG */
darin7e7b97b2002-09-09 06:11:13 +0000166
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)) { \
mjs98cf6e02006-10-19 02:42:55 +0000175 WTFReportArgumentAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #argName, #assertion); \
darin7b077f22002-09-13 14:50:00 +0000176 CRASH(); \
darin7e7b97b2002-09-09 06:11:13 +0000177 } \
178while (0)
179
180#endif
181
kjk67f5d5a2007-02-17 09:07:39 +0000182/* COMPILE_ASSERT */
183#ifndef COMPILE_ASSERT
184#define COMPILE_ASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
185#endif
186
ap467ab6f2006-09-01 20:05:39 +0000187/* FATAL */
darin7e7b97b2002-09-09 06:11:13 +0000188
189#if FATAL_DISABLED
apf46e0632006-01-07 10:22:45 +0000190#define FATAL(...) ((void)0)
bdash010c0572007-10-14 11:55:02 +0000191#elif COMPILER(MSVC7)
192#define FATAL() ((void)0)
darin7e7b97b2002-09-09 06:11:13 +0000193#else
apf46e0632006-01-07 10:22:45 +0000194#define FATAL(...) do { \
mjs98cf6e02006-10-19 02:42:55 +0000195 WTFReportFatalError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__); \
darin7b077f22002-09-13 14:50:00 +0000196 CRASH(); \
darin7e7b97b2002-09-09 06:11:13 +0000197} while (0)
198#endif
199
ap467ab6f2006-09-01 20:05:39 +0000200/* LOG_ERROR */
darin7e7b97b2002-09-09 06:11:13 +0000201
202#if ERROR_DISABLED
darind91fb242006-02-19 17:20:40 +0000203#define LOG_ERROR(...) ((void)0)
bdash010c0572007-10-14 11:55:02 +0000204#elif COMPILER(MSVC7)
205#define LOG_ERROR() ((void)0)
darin7e7b97b2002-09-09 06:11:13 +0000206#else
mjs98cf6e02006-10-19 02:42:55 +0000207#define LOG_ERROR(...) WTFReportError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__)
darin7e7b97b2002-09-09 06:11:13 +0000208#endif
209
ap467ab6f2006-09-01 20:05:39 +0000210/* LOG */
darin7e7b97b2002-09-09 06:11:13 +0000211
212#if LOG_DISABLED
apf46e0632006-01-07 10:22:45 +0000213#define LOG(channel, ...) ((void)0)
bdash010c0572007-10-14 11:55:02 +0000214#elif COMPILER(MSVC7)
215#define LOG() ((void)0)
darin7e7b97b2002-09-09 06:11:13 +0000216#else
weinigcdc6bc92007-05-31 00:16:27 +0000217#define LOG(channel, ...) WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__)
darin7e7b97b2002-09-09 06:11:13 +0000218#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
mjscff5e5e2005-09-27 22:37:33 +0000221
weinigcdc6bc92007-05-31 00:16:27 +0000222/* LOG_VERBOSE */
223
224#if LOG_DISABLED
225#define LOG_VERBOSE(channel, ...) ((void)0)
bdash010c0572007-10-14 11:55:02 +0000226#elif COMPILER(MSVC7)
227#define LOG_VERBOSE(channel) ((void)0)
weinigcdc6bc92007-05-31 00:16:27 +0000228#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
mjs98cf6e02006-10-19 02:42:55 +0000232#endif // WTF_Assertions_h