[229e3c] | 1 | /*
|
---|
| 2 | * Assert.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Mar 18, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef ASSERT_HPP_
|
---|
| 9 | #define ASSERT_HPP_
|
---|
| 10 |
|
---|
| 11 | #include<string>
|
---|
[5be0eb] | 12 | #include<vector>
|
---|
| 13 |
|
---|
| 14 | namespace Assert{
|
---|
| 15 |
|
---|
| 16 | typedef void (*hook_t)(void);
|
---|
[229e3c] | 17 |
|
---|
[5be0eb] | 18 |
|
---|
| 19 | enum Action {Ask,Abort,Throw,Ignore,MAX_ACTION};
|
---|
| 20 | extern const char ActionKeys[MAX_ACTION];
|
---|
| 21 | extern const char* ActionNames[MAX_ACTION];
|
---|
| 22 |
|
---|
| 23 | class AssertionFailure{
|
---|
| 24 | public:
|
---|
| 25 | AssertionFailure(std::string _condition, std::string _file, int _line, std::string _message);
|
---|
| 26 | std::string getFile();
|
---|
| 27 | int getLine();
|
---|
| 28 | std::string getMessage();
|
---|
| 29 |
|
---|
| 30 | std::ostream& operator<<(std::ostream&);
|
---|
| 31 | private:
|
---|
| 32 | std::string condition;
|
---|
| 33 | std::string file;
|
---|
| 34 | int line;
|
---|
| 35 | std::string message;
|
---|
| 36 | };
|
---|
| 37 | }
|
---|
[229e3c] | 38 |
|
---|
| 39 | #ifndef NDEBUG
|
---|
| 40 | #ifndef STRINGIFY
|
---|
| 41 | #define STRINGIFY(x) #x
|
---|
| 42 | #endif
|
---|
| 43 |
|
---|
| 44 | #ifdef __GNUC__
|
---|
| 45 | // on gcc we know how to exit to the Debugger
|
---|
| 46 | #define DEBUG_BREAK __builtin_trap()
|
---|
| 47 | #else
|
---|
| 48 | #define DEBUG_BREAK exit(1)
|
---|
| 49 | #endif
|
---|
| 50 |
|
---|
| 51 | #define ASSERT(condition,message) \
|
---|
| 52 | do{\
|
---|
| 53 | static bool ignore = false;\
|
---|
| 54 | if(!ignore){\
|
---|
[5be0eb] | 55 | if(_my_assert::check((condition),STRINGIFY(condition),(message),__FILE__,__LINE__,ignore)){\
|
---|
| 56 | _my_assert::doHooks();\
|
---|
[229e3c] | 57 | DEBUG_BREAK;\
|
---|
[5be0eb] | 58 | }\
|
---|
[229e3c] | 59 | } \
|
---|
| 60 | }while(0)
|
---|
| 61 |
|
---|
[5be0eb] | 62 | #define ASSERT_DO(action) do{_my_assert::setDefault(action);}while(0)
|
---|
| 63 | #define ASSERT_HOOK(hook) do{_my_assert::addHook(hook);}while(0)
|
---|
| 64 | #define ASSERT_UNHOOK(hook) do{_my_assert::removeHook(hook);}while(0)
|
---|
| 65 | #define ASSERT_DEFAULT (_myAssert::printDefault())
|
---|
[229e3c] | 66 | #else
|
---|
| 67 | // we need to do something, so this is the usual solution (e.g. assert.h)
|
---|
| 68 | #define ASSERT(condition,message) (void)(0)
|
---|
[5be0eb] | 69 | #define ASSERT_DO(action) (void)(0)
|
---|
| 70 | #define ASSERT_HOOK(hook) (void)(0)
|
---|
| 71 | #define ASSERT_UNHOOK(hook) (void)(0)
|
---|
| 72 | #define ASSERT_DEFAULT std::string("Deactivated")
|
---|
[229e3c] | 73 | #endif
|
---|
| 74 |
|
---|
| 75 | //! @cond
|
---|
| 76 | class _my_assert{
|
---|
| 77 | public:
|
---|
| 78 | static bool check(const bool res,
|
---|
| 79 | const char* condition,
|
---|
| 80 | const char* message,
|
---|
| 81 | const char* filename,
|
---|
| 82 | const int line,
|
---|
| 83 | bool& ignore);
|
---|
[5be0eb] | 84 | static void addHook(Assert::hook_t hook);
|
---|
| 85 | static void removeHook(Assert::hook_t hook);
|
---|
| 86 | static void doHooks();
|
---|
| 87 | static void setDefault(Assert::Action);
|
---|
| 88 | static Assert::Action getDefault();
|
---|
| 89 | static std::string printDefault();
|
---|
| 90 | private:
|
---|
| 91 | static Assert::Action defaultAction;
|
---|
| 92 | static std::vector<Assert::hook_t> hooks;
|
---|
[229e3c] | 93 | };
|
---|
| 94 | //! @endcond
|
---|
| 95 |
|
---|
| 96 |
|
---|
| 97 | #endif /* ASSERT_HPP_ */
|
---|