-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathException.h
414 lines (337 loc) · 11.1 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
#ifndef BaseLib_Exception_h_Included
#define BaseLib_Exception_h_Included
#include "BaseLib/CommonDefines.h"
#ifdef USE_GCC
#include <execinfo.h>
#endif
#include <exception>
#include <iostream>
#include <ostream>
#include <string>
#include <sstream>
#include <stdexcept>
#include"BaseLib/Export.h"
namespace BaseLib
{
/*-----------------------------------------------------------------------
ExceptionTracer class
-> Exception classes inherit from this class
-> The constructor creates a stack trace when en exception is thrown
------------------------------------------------------------------------- */
class DLL_STATE ExceptionTracer
{
public:
ExceptionTracer();
virtual ~ExceptionTracer();
virtual std::string GetExceptionTrace() const throw();
private:
std::string exceptionTrace_;
};
/*-----------------------------------------------------------------------
ExceptionBase class
------------------------------------------------------------------------- */
class DLL_STATE ExceptionBase //: ObjectBase
{
public:
enum class DLL_STATE ExceptionType
{
GeneralException = 0,
Exception,
IOException,
ErrorException,
WarningException,
CriticalException,
FatalException,
DeadlockException,
CancelException,
InterruptedException,
UnsupportedException
};
public:
ExceptionBase(ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::GeneralException);
virtual ~ExceptionBase() throw();
virtual ExceptionBase::ExceptionType GetExceptionType() const throw();
private:
ExceptionType exceptionType_;
};
DLL_STATE std::ostream& operator<<(std::ostream &str, const ExceptionBase::ExceptionType &type) throw();
/*-----------------------------------------------------------------------
General Exception class
------------------------------------------------------------------------- */
class DLL_STATE GeneralException
: public std::runtime_error
, public ExceptionTracer
, public ExceptionBase
{
public:
GeneralException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::GeneralException);
virtual ~GeneralException() throw();
std::string msg() const throw();
virtual const char* what() const throw();
friend std::ostream& operator<<(std::ostream& ostr, const GeneralException &e)
{
ostr << e.GetExceptionType() << ": " << e.exceptionMsg_ << std::endl << "Trace:" << std::endl << e.GetExceptionTrace();
return ostr;
}
protected:
std::string exceptionMsg_;
};
/*-----------------------------------------------------------------------
specialized exception classes
------------------------------------------------------------------------- */
class DLL_STATE Exception : public GeneralException
{
public:
Exception(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::Exception);
};
class DLL_STATE IOException : public GeneralException
{
public:
IOException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::IOException);
};
class DLL_STATE ErrorException : public GeneralException
{
public:
ErrorException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::ErrorException);
};
class DLL_STATE WarningException : public GeneralException
{
public:
WarningException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::WarningException);
};
class DLL_STATE CriticalException : public GeneralException
{
public:
CriticalException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::CriticalException);
};
class DLL_STATE FatalException : public GeneralException
{
public:
FatalException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::FatalException);
};
class DLL_STATE DeadlockException : public GeneralException
{
public:
DeadlockException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::DeadlockException);
};
class DLL_STATE CancelException : public GeneralException
{
public:
CancelException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::CancelException);
};
class DLL_STATE InterruptedException : public GeneralException
{
public:
InterruptedException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::InterruptedException);
};
class DLL_STATE UnsupportedException : public GeneralException
{
public:
UnsupportedException(std::string txt, ExceptionBase::ExceptionType type = ExceptionBase::ExceptionType::UnsupportedException);
};
/*
class AlreadyClosedError : public GeneralException, public std::logic_error
{
public:
explicit AlreadyClosedError(const std::string& msg);
AlreadyClosedError(const AlreadyClosedError& src);
virtual ~AlreadyClosedError() throw ();
public:
virtual const char* what() const throw ();
};
class IllegalOperationError : public GeneralException, public std::logic_error
{
public:
explicit IllegalOperationError(const std::string& msg);
IllegalOperationError(const IllegalOperationError& src);
virtual ~IllegalOperationError() throw ();
public:
virtual const char* what() const throw ();
};
class ImmutablePolicyError : public GeneralException, public std::logic_error
{
public:
explicit ImmutablePolicyError(const std::string& msg);
ImmutablePolicyError(const ImmutablePolicyError& src);
virtual ~ImmutablePolicyError() throw ();
public:
virtual const char* what() const throw ();
};
class InconsistentPolicyError : public GeneralException, public std::logic_error
{
public:
explicit InconsistentPolicyError(const std::string& msg);
InconsistentPolicyError(const InconsistentPolicyError& src);
virtual ~InconsistentPolicyError() throw ();
public:
virtual const char* what() const throw ();
};
class InvalidArgumentError : public GeneralException, public std::invalid_argument
{
public:
explicit InvalidArgumentError(const std::string& msg);
InvalidArgumentError(const InvalidArgumentError& src);
virtual ~InvalidArgumentError() throw ();
public:
virtual const char* what() const throw ();
};
class NotEnabledError : public GeneralException, public std::logic_error
{
public:
explicit NotEnabledError(const std::string& msg);
NotEnabledError(const NotEnabledError& src);
virtual ~NotEnabledError() throw ();
public:
virtual const char* what() const throw ();
};
class OutOfResourcesError : public GeneralException, public std::runtime_error
{
public:
explicit OutOfResourcesError(const std::string& msg);
OutOfResourcesError(const OutOfResourcesError& src);
virtual ~OutOfResourcesError() throw ();
public:
virtual const char* what() const throw ();
};
class PreconditionNotMetError : public GeneralException, public std::logic_error
{
public:
explicit PreconditionNotMetError(const std::string& msg);
PreconditionNotMetError(const PreconditionNotMetError& src);
virtual ~PreconditionNotMetError() throw ();
public:
virtual const char* what() const throw ();
};
class TimeoutError : public GeneralException, public std::runtime_error
{
public:
explicit TimeoutError(const std::string& msg);
TimeoutError(const TimeoutError& src);
virtual ~TimeoutError() throw ();
public:
virtual const char* what() const throw ();
};
class UnsupportedError : public GeneralException, public std::logic_error
{
public:
explicit UnsupportedError(const std::string& msg);
UnsupportedError(const UnsupportedError& src);
virtual ~UnsupportedError() throw ();
public:
virtual const char* what() const throw ();
};
class InvalidDowncastError : public GeneralException, public std::runtime_error
{
public:
explicit InvalidDowncastError(const std::string& msg);
InvalidDowncastError(const InvalidDowncastError& src);
virtual ~InvalidDowncastError() throw();
public:
virtual const char* what() const throw ();
};
class NullReferenceError : public GeneralException, public std::runtime_error
{
public:
explicit NullReferenceError(const std::string& msg);
NullReferenceError(const NullReferenceError& src);
virtual ~NullReferenceError() throw();
public:
virtual const char* what() const throw ();
};
class InvalidDataError : public GeneralException, public std::logic_error
{
public:
explicit InvalidDataError(const std::string& msg);
InvalidDataError(const UnsupportedError& src);
virtual ~InvalidDataError() throw ();
public:
virtual const char* what() const throw ();
};*/
/*-----------------------------------------------------------------------
Handling signal exceptions
------------------------------------------------------------------------- */
/*template <class SignalExceptionClass> class SignalTranslator
{
private:
class SingleTonTranslator
{
public:
SingleTonTranslator()
{
signal(SignalExceptionClass::GetSignalNumber(), SignalHandler);
}
static void SignalHandler(int)
{
throw SignalExceptionClass();
}
};
public:
SignalTranslator()
{
static SingleTonTranslator s_objTranslator;
}
};
// An example for SIGSEGV
class SegmentationFault : public ExceptionTracer, public exception
{
public:
static int GetSignalNumber() {return SIGSEGV;}
};
SignalTranslator<SegmentationFault> g_objSegmentationFaultTranslator;
// An example for SIGFPE
class FloatingPointException : public ExceptionTracer, public exception
{
public:
static int GetSignalNumber() {return SIGFPE;}
};
SignalTranslator<FloatingPointException> g_objFloatingPointExceptionTranslator;
//Listing 3. Handling exceptions in a constructor
// Before defining any global variable, we define a dummy instance
// of ExceptionHandler object to make sure that
// ExceptionHandler::SingleTonHandler::SingleTonHandler() is invoked
//ExceptionHandler g_objExceptionHandler;
//A g_a;
class ExceptionHandler
{
private:
class SingleTonHandler
{
public:
SingleTonHandler()
{
set_terminate(Handler);
}
static void Handler()
{
// Exception from construction/destruction of global variables
try
{
// re-throw
throw;
}
catch (SegmentationFault &)
{
IDEBUG() << "SegmentationFault" ;
}
catch (FloatingPointException &)
{
IDEBUG() << "FloatingPointException" ;
}
catch (...)
{
IDEBUG() << "Unknown Exception" ;
}
//if this is a thread performing some core activity
abort();
// else if this is a thread used to service requests
// pthread_exit();
}
};
public:
ExceptionHandler()
{
static SingleTonHandler s_objHandler;
}
};*/
}
#endif // BaseLib_Exception_h_Included