-
Notifications
You must be signed in to change notification settings - Fork 3
/
Exception.H
194 lines (159 loc) · 6.94 KB
/
Exception.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
* Copyright (c) 2005-2011, Guillaume Gimenez <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of G.Gimenez nor the names of its contributors may
* be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL G.GIMENEZ BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Authors:
* * Guillaume Gimenez <[email protected]>
*
*/
#ifndef __EXCEPTION_H__
#define __EXCEPTION_H__
#include "Object.H"
#include <cxxabi.h>
#include <typeinfo>
//#include <iostream>
namespace std {
// Helper for exception objects in <except>
void
__throw_bad_exception(void) __attribute__((__noreturn__));
// Helper for exception objects in <new>
void
__throw_bad_alloc(void) __attribute__((__noreturn__));
// Helper for exception objects in <typeinfo>
void
__throw_bad_cast(void) __attribute__((__noreturn__));
void
__throw_bad_typeid(void) __attribute__((__noreturn__));
// Helpers for exception objects in <stdexcept>
void
__throw_logic_error(const char*) __attribute__((__noreturn__));
void
__throw_domain_error(const char*) __attribute__((__noreturn__));
void
__throw_invalid_argument(const char*) __attribute__((__noreturn__));
void
__throw_length_error(const char*) __attribute__((__noreturn__));
void
__throw_out_of_range(const char*) __attribute__((__noreturn__));
void
__throw_runtime_error(const char*) __attribute__((__noreturn__));
void
__throw_range_error(const char*) __attribute__((__noreturn__));
void
__throw_overflow_error(const char*) __attribute__((__noreturn__));
void
__throw_underflow_error(const char*) __attribute__((__noreturn__));
// Helpers for exception objects in basic_ios
void
__throw_ios_failure(const char*) __attribute__((__noreturn__));
}
namespace raii {
class String;
namespace error {
class Throwable : public std::exception {
char *message_;
public:
//Vector<void*> stackTrace_;
void *stackTrace[1024];
int depth;
int start;
private:
virtual String getName() const;
public:
int level;
explicit Throwable(const char *message=NULL);
explicit Throwable(const String& message);
virtual ~Throwable() throw();
static String demangle(const String& sym);
virtual String getMessage() const;
virtual void setMessage(const String& message);
virtual String getLocalizedMessage() const;
virtual String toString() const;
void fillInStackTrace();
String getStackTrace(bool prettyPrint=false) const;
virtual const char *what() const throw();
void poorManPrintStackTrace(bool dem=true) const;
void printStackTrace() const;
void setFaultPosition(void*pos);
};
#define DECLARE_EXCEPTION(Derived,Base) \
class Derived : public Base { \
public: \
explicit Derived(const char *message=NULL) : Base(message) { level++; } \
explicit Derived(const raii::String& message) : Base(message) { level++; } \
~Derived() throw() {}; \
};
DECLARE_EXCEPTION(RequestHandling,Throwable);
DECLARE_EXCEPTION(RequestOK,RequestHandling);
DECLARE_EXCEPTION(RequestDONE,RequestHandling);
DECLARE_EXCEPTION(RequestDECLINED,RequestHandling);
DECLARE_EXCEPTION(RequestERROR,RequestHandling);
DECLARE_EXCEPTION(ResetRaii,RequestHandling);
DECLARE_EXCEPTION(Exception, Throwable);
DECLARE_EXCEPTION(Signal,Exception);
DECLARE_EXCEPTION(IllegalInstruction,Signal);
DECLARE_EXCEPTION(FloatingPointException,Signal);
DECLARE_EXCEPTION(SegmentationFault,Signal);
DECLARE_EXCEPTION(BusError,Signal);
DECLARE_EXCEPTION(Abort,Signal);
DECLARE_EXCEPTION(DumpStack,Signal);
DECLARE_EXCEPTION(LogicException,Exception);
DECLARE_EXCEPTION(OverflowException,LogicException);
DECLARE_EXCEPTION(UnderflowException,LogicException);
DECLARE_EXCEPTION(NullPointerException,LogicException);
DECLARE_EXCEPTION(ArithmeticException,LogicException);
DECLARE_EXCEPTION(IllegalArgumentException,LogicException);
DECLARE_EXCEPTION(NumberFormatException,LogicException);
DECLARE_EXCEPTION(DomainException,LogicException);
DECLARE_EXCEPTION(RangeException,LogicException);
DECLARE_EXCEPTION(OutOfRangeException,LogicException);
DECLARE_EXCEPTION(LengthException,LogicException);
DECLARE_EXCEPTION(RuntimeException,Exception);
DECLARE_EXCEPTION(CookieFormatException,RuntimeException);
DECLARE_EXCEPTION(IOException,RuntimeException);
DECLARE_EXCEPTION(ResponseException,IOException);
DECLARE_EXCEPTION(IOSFailureException,IOException);
DECLARE_EXCEPTION(IllegalStateException,RuntimeException);
DECLARE_EXCEPTION(ServletException,RuntimeException);
DECLARE_EXCEPTION(UnavailableException,RuntimeException);
DECLARE_EXCEPTION(UnsupportedEncodingException,RuntimeException);
DECLARE_EXCEPTION(MalformedURLException,RuntimeException);
DECLARE_EXCEPTION(SQLException,RuntimeException);
DECLARE_EXCEPTION(InvalidSessionException,RuntimeException);
DECLARE_EXCEPTION(NotImplementedException,RuntimeException);
DECLARE_EXCEPTION(RaiiException,Exception);
DECLARE_EXCEPTION(DynamicLinkerException,RaiiException);
DECLARE_EXCEPTION(BuildException,RaiiException);
DECLARE_EXCEPTION(ApacheException,RaiiException);
DECLARE_EXCEPTION(BadAllocException,RaiiException);
DECLARE_EXCEPTION(BadCastException,RaiiException);
DECLARE_EXCEPTION(BadTypeIdException,RaiiException);
DECLARE_EXCEPTION(TerminateException,RaiiException);
DECLARE_EXCEPTION(UnexpectedException,RaiiException);
DECLARE_EXCEPTION(VeryBadException,RaiiException);
} //error
using namespace error;
} //raii
#endif /* __EXCEPTION_H__ */