2010-12-27 21:49:19 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 27/12/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*
|
2011-02-16 19:58:15 +01:00
|
|
|
* Provides a BreakIntoDebugger() macro for Windows and Mac (so far)
|
2010-12-27 21:49:19 +01:00
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_DEBUGGER_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_DEBUGGER_HPP_INCLUDED
|
|
|
|
|
2011-01-18 10:20:06 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2012-01-14 20:12:58 +01:00
|
|
|
#if defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
|
2011-03-21 13:36:58 +01:00
|
|
|
#define CATCH_PLATFORM_MAC
|
2012-01-14 20:12:58 +01:00
|
|
|
#elif defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
|
|
|
|
#define CATCH_PLATFORM_IPHONE
|
2011-03-21 13:36:58 +01:00
|
|
|
#elif defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER)
|
|
|
|
#define CATCH_PLATFORM_WINDOWS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CATCH_PLATFORM_MAC
|
2010-12-27 21:49:19 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch{
|
|
|
|
|
2010-12-27 21:49:19 +01:00
|
|
|
// The following function is taken directly from the following technical note:
|
|
|
|
// http://developer.apple.com/library/mac/#qa/qa2004/qa1361.html
|
|
|
|
|
|
|
|
// Returns true if the current process is being debugged (either
|
|
|
|
// running under the debugger or has a debugger attached post facto).
|
2012-05-15 09:02:36 +02:00
|
|
|
inline bool isDebuggerActive(){
|
|
|
|
|
2010-12-27 21:49:19 +01:00
|
|
|
int junk;
|
|
|
|
int mib[4];
|
|
|
|
struct kinfo_proc info;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
// Initialize the flags so that, if sysctl fails for some bizarre
|
|
|
|
// reason, we get a predictable result.
|
|
|
|
|
|
|
|
info.kp_proc.p_flag = 0;
|
|
|
|
|
|
|
|
// Initialize mib, which tells sysctl the info we want, in this case
|
|
|
|
// we're looking for information about a specific process ID.
|
|
|
|
|
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_PROC;
|
|
|
|
mib[2] = KERN_PROC_PID;
|
|
|
|
mib[3] = getpid();
|
|
|
|
|
|
|
|
// Call sysctl.
|
|
|
|
|
|
|
|
size = sizeof(info);
|
|
|
|
junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
|
|
|
|
assert(junk == 0);
|
|
|
|
|
|
|
|
// We're being debugged if the P_TRACED flag is set.
|
|
|
|
|
|
|
|
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following code snippet taken from:
|
|
|
|
// http://cocoawithlove.com/2008/03/break-into-debugger.html
|
|
|
|
#ifdef DEBUG
|
2011-01-31 11:10:20 +01:00
|
|
|
#if defined(__ppc64__) || defined(__ppc__)
|
2011-02-16 19:58:15 +01:00
|
|
|
#define BreakIntoDebugger() \
|
2012-05-15 09:02:36 +02:00
|
|
|
if( Catch::isDebuggerActive() ) { \
|
2010-12-27 21:49:19 +01:00
|
|
|
__asm__("li r0, 20\nsc\nnop\nli r0, 37\nli r4, 2\nsc\nnop\n" \
|
|
|
|
: : : "memory","r0","r3","r4" ); \
|
|
|
|
}
|
|
|
|
#else
|
2011-03-24 20:23:28 +01:00
|
|
|
#define BreakIntoDebugger() if( Catch::isDebuggerActive() ) {__asm__("int $3\n" : : );}
|
2010-12-27 21:49:19 +01:00
|
|
|
#endif
|
2011-02-20 01:03:42 +01:00
|
|
|
#else
|
2011-02-24 10:55:11 +01:00
|
|
|
inline void BreakIntoDebugger(){}
|
2010-12-27 21:49:19 +01:00
|
|
|
#endif
|
|
|
|
|
2011-07-04 10:09:03 +02:00
|
|
|
#elif defined(_MSC_VER)
|
2011-03-21 13:36:58 +01:00
|
|
|
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
|
2011-03-24 20:23:28 +01:00
|
|
|
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); }
|
2012-05-15 09:02:36 +02:00
|
|
|
inline bool isDebuggerActive() {
|
2011-03-29 09:05:47 +02:00
|
|
|
return IsDebuggerPresent() != 0;
|
2011-03-24 20:23:28 +01:00
|
|
|
}
|
2012-05-10 22:29:50 +02:00
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
|
|
|
|
extern "C" __declspec(dllimport) void __stdcall DebugBreak();
|
|
|
|
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { DebugBreak(); }
|
2012-05-15 09:02:36 +02:00
|
|
|
inline bool isDebuggerActive() {
|
2012-05-10 22:29:50 +02:00
|
|
|
return IsDebuggerPresent() != 0;
|
|
|
|
}
|
2011-02-16 19:58:15 +01:00
|
|
|
#else
|
2013-03-08 10:26:20 +01:00
|
|
|
inline void BreakIntoDebugger(){}
|
|
|
|
inline bool isDebuggerActive() { return false; }
|
2010-12-27 21:49:19 +01:00
|
|
|
#endif
|
|
|
|
|
2011-12-27 11:59:41 +01:00
|
|
|
#ifdef CATCH_PLATFORM_WINDOWS
|
|
|
|
extern "C" __declspec(dllimport) void __stdcall OutputDebugStringA( const char* );
|
2012-05-15 09:02:36 +02:00
|
|
|
inline void writeToDebugConsole( const std::string& text ) {
|
2011-12-27 11:59:41 +01:00
|
|
|
::OutputDebugStringA( text.c_str() );
|
|
|
|
}
|
2011-03-21 13:36:58 +01:00
|
|
|
#else
|
2012-05-15 09:02:36 +02:00
|
|
|
inline void writeToDebugConsole( const std::string& text ) {
|
2011-01-18 10:20:06 +01:00
|
|
|
// !TBD: Need a version for Mac/ XCode and other IDEs
|
|
|
|
std::cout << text;
|
|
|
|
}
|
2011-12-27 11:59:41 +01:00
|
|
|
#endif // CATCH_PLATFORM_WINDOWS
|
2010-12-27 21:49:19 +01:00
|
|
|
|
2011-02-16 19:58:15 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_DEBUGGER_HPP_INCLUDED
|