// Copyright 1997-2006 Omni Development, Inc. All rights reserved.
//
// This software may only be used and reproduced according to the
// terms in the file OmniSourceLicense.html, which should be
// distributed with this project and can also be found at
// .
//#import
#import
//#import
#ifdef OMNI_ASSERTIONS_ON
#warning (Assertions enabled. To disable, undefine OMNI_ASSERTIONS_ON.)
#else
#warning (Assertions disabled. To enable, define OMNI_ASSERTIONS_ON.)
#endif
#ifdef OMNI_ASSERTIONS_ON
static void OBLogAssertionFailure(const char *type, const char *expression, const char *file, unsigned int lineNumber)
{
fprintf(stderr, "%s failed: requires '%s', file %s, line %d\n", type, expression, file, lineNumber);
}
#endif
// Some machines (NT, at least) lose the last stack frame when you call abort(), which makes it difficult to debug assertion failures. We'll call OBAbort() instead of abort() so that you can set a breakpoint on OBAbort() and not lose the stack frame.
#if defined(DEBUG) || defined(OMNI_ASSERTIONS_ON)
#import // For write()
static void OBAbort(const char *type, const char *expression, const char *file, unsigned int lineNumber)
{
OBLogAssertionFailure(type, expression, file, lineNumber);
fflush(stderr);
const char *s = "Aborting (presumably due to assertion failure).\n";
write(2, s, strlen(s));
abort();
}
#endif
//
// The default assertion handler
//
#define OBDefaultAssertionHandler OBLogAssertionFailure
#ifdef OMNI_ASSERTIONS_ON
static NSString *OBShouldAbortOnAssertFailureEnabled = @"OBShouldAbortOnAssertFailureEnabled";
static OBAssertionFailureHandler currentAssertionHandler = OBDefaultAssertionHandler;
void OBSetAssertionFailureHandler(OBAssertionFailureHandler handler)
{
if (handler)
currentAssertionHandler = handler;
else
currentAssertionHandler = OBDefaultAssertionHandler;
}
void OBAssertFailed(const char *type, const char *expression, const char *file, unsigned int lineNumber)
{
currentAssertionHandler(type, expression, file, lineNumber);
}
#endif
// Unless OMNI_PRODUCTION_BUILD is specified, log a message about whether assertions are enabled or not.
#ifndef OMNI_PRODUCTION_BUILD
#if defined(OMNI_ASSERTIONS_ON) || defined(DEBUG)
@interface _OBAssertionWarning : NSObject
@end
@implementation _OBAssertionWarning
+ (void)didLoad;
{
#ifdef OMNI_ASSERTIONS_ON
NSUserDefaults *userDefaults;
fprintf(stderr, "*** Assertions are ON ***\n");
userDefaults = [NSUserDefaults standardUserDefaults];
if ([userDefaults boolForKey:OBShouldAbortOnAssertFailureEnabled])
OBSetAssertionFailureHandler(OBAbort);
else if (NSClassFromString(@"SenTestCase")) {
// If we are running unit tests, abort on assertion failure. We could make assertions throw exceptions, but note that this wouldn't catch cases where you are using 'shouldRaise' and hit an assertion.
OBSetAssertionFailureHandler(OBAbort);
}
#elif DEBUG
fprintf(stderr, "*** Assertions are OFF ***\n");
#endif
}
@end
#endif
#endif // OMNI_PRODUCTION_BUILD