| [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 | 
 | 
|---|
 | 46 | using namespace Assert;
 | 
|---|
 | 47 | 
 | 
|---|
 | 48 | Action _my_assert::defaultAction = Ask;
 | 
|---|
 | 49 | std::vector<Assert::hook_t> _my_assert::hooks;
 | 
|---|
| [229e3c] | 50 | 
 | 
|---|
 | 51 | bool _my_assert::check(const bool res,
 | 
|---|
 | 52 |                        const char* condition,
 | 
|---|
 | 53 |                        const char* message,
 | 
|---|
 | 54 |                        const char* filename,
 | 
|---|
 | 55 |                        const int line,
 | 
|---|
 | 56 |                        bool& ignore)
 | 
|---|
 | 57 | {
 | 
|---|
 | 58 |   if(!res){
 | 
|---|
 | 59 |     cout << "Assertion " << condition << " failed in file " << filename << " at line " << line << endl;
 | 
|---|
 | 60 |     cout << "Assertion Message: " << message << std::endl;
 | 
|---|
 | 61 |     while(true){
 | 
|---|
 | 62 |       char choice;
 | 
|---|
| [5be0eb] | 63 |       if(defaultAction==Ask) {
 | 
|---|
 | 64 |         cout << "Please choose: (a)bort, (t)hrow execption, (i)gnore, al(w)ays ignore" << endl;
 | 
|---|
 | 65 |         cin >> choice;
 | 
|---|
 | 66 |       }
 | 
|---|
 | 67 |       else{
 | 
|---|
 | 68 |         choice = ActionKeys[defaultAction];
 | 
|---|
 | 69 |       }
 | 
|---|
| [229e3c] | 70 |       switch(choice){
 | 
|---|
 | 71 |         case 'a':
 | 
|---|
 | 72 |           return true;
 | 
|---|
 | 73 |           break;
 | 
|---|
 | 74 |         case 't':
 | 
|---|
| [5be0eb] | 75 |           throw AssertionFailure(condition,filename,line,message);
 | 
|---|
| [229e3c] | 76 |           break;
 | 
|---|
 | 77 |         case 'w':
 | 
|---|
 | 78 |           ignore = true;
 | 
|---|
 | 79 |           // fallthrough
 | 
|---|
 | 80 |         case 'i':
 | 
|---|
 | 81 |           return false;
 | 
|---|
 | 82 |           break;
 | 
|---|
 | 83 |       }
 | 
|---|
 | 84 |     }
 | 
|---|
 | 85 |   }
 | 
|---|
 | 86 |   return false;
 | 
|---|
 | 87 | }
 | 
|---|
| [5be0eb] | 88 | 
 | 
|---|
 | 89 | void _my_assert::doHooks(){
 | 
|---|
 | 90 |   for(vector<hook_t>::reverse_iterator iter = hooks.rbegin(); iter!=hooks.rend(); ++iter ){
 | 
|---|
 | 91 |     (*iter)();
 | 
|---|
 | 92 |   }
 | 
|---|
 | 93 | }
 | 
|---|
 | 94 | 
 | 
|---|
 | 95 | void _my_assert::addHook(hook_t hook){
 | 
|---|
 | 96 |   hooks.push_back(hook);
 | 
|---|
 | 97 | }
 | 
|---|
 | 98 | 
 | 
|---|
 | 99 | void _my_assert::removeHook(Assert::hook_t hook){
 | 
|---|
 | 100 |   for(vector<hook_t>::iterator iter = hooks.begin(); iter!=hooks.end();){
 | 
|---|
 | 101 |     if((*iter)==hook){
 | 
|---|
 | 102 |       iter = hooks.erase(iter);
 | 
|---|
 | 103 |     }
 | 
|---|
 | 104 |     else{
 | 
|---|
 | 105 |       ++iter;
 | 
|---|
 | 106 |     }
 | 
|---|
 | 107 |   }
 | 
|---|
 | 108 | }
 | 
|---|
 | 109 | 
 | 
|---|
 | 110 | void _my_assert::setDefault(Assert::Action action){
 | 
|---|
 | 111 |   defaultAction = action;
 | 
|---|
 | 112 | }
 | 
|---|
 | 113 | Assert::Action _my_assert::getDefault(){
 | 
|---|
 | 114 |   return defaultAction;
 | 
|---|
 | 115 | }
 | 
|---|
 | 116 | std::string _my_assert::printDefault(){
 | 
|---|
 | 117 |   return ActionNames[defaultAction];
 | 
|---|
 | 118 | }
 | 
|---|