[229e3c] | 1 | /*
|
---|
| 2 | * Assert.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Mar 18, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #include "Helpers/Assert.hpp"
|
---|
| 9 | #include <iostream>
|
---|
| 10 |
|
---|
| 11 | using namespace std;
|
---|
| 12 |
|
---|
[5be0eb] | 13 | namespace Assert{
|
---|
| 14 | AssertionFailure::AssertionFailure(std::string _condition,
|
---|
| 15 | std::string _file,
|
---|
| 16 | int _line,
|
---|
| 17 | std::string _message) :
|
---|
| 18 | condition(_condition),
|
---|
| 19 | file(_file),
|
---|
| 20 | line(_line),
|
---|
| 21 | message(_message)
|
---|
| 22 | {}
|
---|
| 23 |
|
---|
| 24 | std::string AssertionFailure::getFile(){
|
---|
| 25 | return file;
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | int AssertionFailure::getLine(){
|
---|
| 29 | return line;
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | std::string AssertionFailure::getMessage(){
|
---|
| 33 | return message;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | std::ostream& AssertionFailure::operator<<(std::ostream& out){
|
---|
| 37 | out << "Assertion \"" << condition << "\" failed in file " << file << " at line " << line << endl;
|
---|
| 38 | out << "Assertion Message: " << message << std::endl;
|
---|
| 39 | return out;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | const char ActionKeys[] = {'\0','a','t','i'};
|
---|
| 43 | const char* ActionNames[] = {"Ask","Abort","Throw","Ignore"};
|
---|
| 44 | }
|
---|
| 45 |
|
---|
[2c8934] | 46 | #ifndef NDEBUG
|
---|
| 47 |
|
---|
[839e85] | 48 | Assert::Action Assert::_my_assert::defaultAction = Ask;
|
---|
| 49 | std::vector<Assert::hook_t> Assert::_my_assert::hooks;
|
---|
[229e3c] | 50 |
|
---|
[839e85] | 51 | std::map<std::string,bool> Assert::_wrapper::ignores;
|
---|
| 52 | const char* Assert::_wrapper::message_ptr = "source pointer did not point to object of desired type";
|
---|
| 53 | const char* Assert::_wrapper::message_ref = "source reference did not contain object of desired type";
|
---|
[13d5a9] | 54 |
|
---|
| 55 |
|
---|
[839e85] | 56 | bool Assert::_my_assert::check(const bool res,
|
---|
[229e3c] | 57 | const char* condition,
|
---|
| 58 | const char* message,
|
---|
| 59 | const char* filename,
|
---|
| 60 | const int line,
|
---|
| 61 | bool& ignore)
|
---|
| 62 | {
|
---|
| 63 | if(!res){
|
---|
[8d2772] | 64 | cout << "Assertion \"" << condition << "\" failed in file " << filename << " at line " << line << endl;
|
---|
[229e3c] | 65 | cout << "Assertion Message: " << message << std::endl;
|
---|
| 66 | while(true){
|
---|
| 67 | char choice;
|
---|
[839e85] | 68 | if(defaultAction==Assert::Ask) {
|
---|
[5be0eb] | 69 | cout << "Please choose: (a)bort, (t)hrow execption, (i)gnore, al(w)ays ignore" << endl;
|
---|
| 70 | cin >> choice;
|
---|
| 71 | }
|
---|
| 72 | else{
|
---|
| 73 | choice = ActionKeys[defaultAction];
|
---|
| 74 | }
|
---|
[229e3c] | 75 | switch(choice){
|
---|
| 76 | case 'a':
|
---|
| 77 | return true;
|
---|
| 78 | break;
|
---|
| 79 | case 't':
|
---|
[5be0eb] | 80 | throw AssertionFailure(condition,filename,line,message);
|
---|
[229e3c] | 81 | break;
|
---|
| 82 | case 'w':
|
---|
| 83 | ignore = true;
|
---|
| 84 | // fallthrough
|
---|
| 85 | case 'i':
|
---|
| 86 | return false;
|
---|
| 87 | break;
|
---|
| 88 | }
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 | return false;
|
---|
| 92 | }
|
---|
[5be0eb] | 93 |
|
---|
[839e85] | 94 | void Assert::_my_assert::doHooks(){
|
---|
[5be0eb] | 95 | for(vector<hook_t>::reverse_iterator iter = hooks.rbegin(); iter!=hooks.rend(); ++iter ){
|
---|
| 96 | (*iter)();
|
---|
| 97 | }
|
---|
| 98 | }
|
---|
| 99 |
|
---|
[839e85] | 100 | void Assert::_my_assert::addHook(hook_t hook){
|
---|
[5be0eb] | 101 | hooks.push_back(hook);
|
---|
| 102 | }
|
---|
| 103 |
|
---|
[839e85] | 104 | void Assert::_my_assert::removeHook(Assert::hook_t hook){
|
---|
[5be0eb] | 105 | for(vector<hook_t>::iterator iter = hooks.begin(); iter!=hooks.end();){
|
---|
| 106 | if((*iter)==hook){
|
---|
| 107 | iter = hooks.erase(iter);
|
---|
| 108 | }
|
---|
| 109 | else{
|
---|
| 110 | ++iter;
|
---|
| 111 | }
|
---|
| 112 | }
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[839e85] | 115 | void Assert::_my_assert::setDefault(Assert::Action action){
|
---|
[5be0eb] | 116 | defaultAction = action;
|
---|
| 117 | }
|
---|
[839e85] | 118 | Assert::Action Assert::_my_assert::getDefault(){
|
---|
[5be0eb] | 119 | return defaultAction;
|
---|
| 120 | }
|
---|
[839e85] | 121 | std::string Assert::_my_assert::printDefault(){
|
---|
[5be0eb] | 122 | return ActionNames[defaultAction];
|
---|
| 123 | }
|
---|
[2c8934] | 124 |
|
---|
| 125 | #endif
|
---|
| 126 |
|
---|