source: molecuilder/src/Helpers/Assert.cpp@ 13743e

Last change on this file since 13743e was 1561e2, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Added macros that allow type safe casting using the Assert mechanism

  • Property mode set to 100644
File size: 3.0 KB
Line 
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
11using namespace std;
12
13namespace 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
46using namespace Assert;
47
48Action _my_assert::defaultAction = Ask;
49std::vector<Assert::hook_t> _my_assert::hooks;
50
51std::map<std::string,bool> _wrapper::ignores;
52const char* _wrapper::message_ptr = "source pointer did not point to object of desired type";
53const char* _wrapper::message_ref = "source reference did not contain object of desired type";
54
55
56
57bool _my_assert::check(const bool res,
58 const char* condition,
59 const char* message,
60 const char* filename,
61 const int line,
62 bool& ignore)
63{
64 if(!res){
65 cout << "Assertion " << condition << " failed in file " << filename << " at line " << line << endl;
66 cout << "Assertion Message: " << message << std::endl;
67 while(true){
68 char choice;
69 if(defaultAction==Ask) {
70 cout << "Please choose: (a)bort, (t)hrow execption, (i)gnore, al(w)ays ignore" << endl;
71 cin >> choice;
72 }
73 else{
74 choice = ActionKeys[defaultAction];
75 }
76 switch(choice){
77 case 'a':
78 return true;
79 break;
80 case 't':
81 throw AssertionFailure(condition,filename,line,message);
82 break;
83 case 'w':
84 ignore = true;
85 // fallthrough
86 case 'i':
87 return false;
88 break;
89 }
90 }
91 }
92 return false;
93}
94
95void _my_assert::doHooks(){
96 for(vector<hook_t>::reverse_iterator iter = hooks.rbegin(); iter!=hooks.rend(); ++iter ){
97 (*iter)();
98 }
99}
100
101void _my_assert::addHook(hook_t hook){
102 hooks.push_back(hook);
103}
104
105void _my_assert::removeHook(Assert::hook_t hook){
106 for(vector<hook_t>::iterator iter = hooks.begin(); iter!=hooks.end();){
107 if((*iter)==hook){
108 iter = hooks.erase(iter);
109 }
110 else{
111 ++iter;
112 }
113 }
114}
115
116void _my_assert::setDefault(Assert::Action action){
117 defaultAction = action;
118}
119Assert::Action _my_assert::getDefault(){
120 return defaultAction;
121}
122std::string _my_assert::printDefault(){
123 return ActionNames[defaultAction];
124}
Note: See TracBrowser for help on using the repository browser.