/usr/include/newmat/myexcept.h is in libnewmat10-dev 1.10.4-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | /// \ingroup rbd_common
///@{
/// \file myexcept.h
/// Exception handler.
/// The low level classes for
/// - my exception class hierarchy
/// - the functions needed for my simulated exceptions
/// - the Tracer mechanism
/// - routines for checking whether new and delete calls are balanced
///
// A set of classes to simulate exceptions in C++
//
// Partially copied from Carlos Vidal s article in the C users journal
// September 1992, pp 19-28
//
// Operations defined
// Try { }
// Throw ( exception object )
// ReThrow
// Catch ( exception class ) { }
// CatchAll { }
// CatchAndThrow
//
// All catch lists must end with a CatchAll or CatchAndThrow statement
// but not both.
//
// When exceptions are finally implemented replace Try, Throw(E), Rethrow,
// Catch, CatchAll, CatchAndThrow by try, throw E, throw, catch,
// catch(...), and {}.
//
// All exception classes must be derived from BaseException, have no
// non-static variables and must include the statement
//
// static unsigned long Select;
//
// Any constructor in one of these exception classes must include
//
// Select = BaseException::Select;
//
// For each exceptions class, EX_1, some .cpp file must include
//
// unsigned long EX_1::Select;
//
#ifndef EXCEPTION_LIB
#define EXCEPTION_LIB
#include "include.h"
#ifdef use_namespace
namespace RBD_COMMON {
#endif
void Terminate();
//********** classes for setting up exceptions and reporting ************//
class BaseException;
class Tracer // linked list showing how
{ // we got here
const char* entry;
Tracer* previous;
public:
Tracer(const char*);
~Tracer();
void ReName(const char*);
static void PrintTrace(); // for printing trace
static void AddTrace(); // insert trace in exception record
static Tracer* last; // points to Tracer list
friend class BaseException;
};
class BaseException // The base exception class
{
protected:
static char* what_error; // error message
static int SoFar; // no. characters already entered
static int LastOne; // last location in error buffer
public:
static void AddMessage(const char* a_what);
// messages about exception
static void AddInt(int value); // integer to error message
static unsigned long Select; // for identifying exception
BaseException(const char* a_what = 0);
static const char* what() { return what_error; }
// for getting error message
};
#ifdef TypeDefException
typedef BaseException Exception; // for compatibility with my older libraries
#endif
inline Tracer::Tracer(const char* e)
: entry(e), previous(last) { last = this; }
inline Tracer::~Tracer() { last = previous; }
inline void Tracer::ReName(const char* e) { entry=e; }
#ifdef SimulateExceptions // SimulateExceptions
#include <setjmp.h>
//************* the definitions of Try, Throw and Catch *****************//
class JumpItem;
class Janitor;
class JumpBase // pointer to a linked list of jmp_buf s
{
public:
static JumpItem *jl;
static jmp_buf env;
};
class JumpItem // an item in a linked list of jmp_buf s
{
public:
JumpItem *ji;
jmp_buf env;
Tracer* trace; // to keep check on Tracer items
Janitor* janitor; // list of items for cleanup
JumpItem() : ji(JumpBase::jl), trace(0), janitor(0)
{ JumpBase::jl = this; }
~JumpItem() { JumpBase::jl = ji; }
};
void Throw();
inline void Throw(const BaseException&) { Throw(); }
#define Try \
if (!setjmp( JumpBase::jl->env )) { \
JumpBase::jl->trace = Tracer::last; \
JumpItem JI387256156;
#define ReThrow Throw()
#define Catch(EXCEPTION) \
} else if (BaseException::Select == EXCEPTION::Select) {
#define CatchAll } else
#define CatchAndThrow } else Throw();
//****************** cleanup heap following Throw ***********************//
class Janitor
{
protected:
static bool do_not_link; // set when new is called
bool OnStack; // false if created by new
public:
Janitor* NextJanitor;
virtual void CleanUp() {}
Janitor();
virtual ~Janitor();
};
// The tiresome old trick for initializing the Janitor class
// this is needed for classes derived from Janitor which have objects
// declared globally
class JanitorInitializer
{
public:
JanitorInitializer();
private:
static int ref_count;
};
static JanitorInitializer JanInit;
#endif // end of SimulateExceptions
#ifdef UseExceptions
#define Try try
#define Throw(E) throw E
#define ReThrow throw
#define Catch catch
#define CatchAll catch(...)
#define CatchAndThrow {}
#endif // end of UseExceptions
#ifdef DisableExceptions // Disable exceptions
#define Try {
#define ReThrow Throw()
#define Catch(EXCEPTION) } if (false) {
#define CatchAll } if (false)
#define CatchAndThrow }
inline void Throw() { Terminate(); }
inline void Throw(const BaseException&) { Terminate(); }
#endif // end of DisableExceptions
#ifndef SimulateExceptions // ! SimulateExceptions
class Janitor // a dummy version
{
public:
virtual void CleanUp() {}
Janitor() {}
virtual ~Janitor() {}
};
#endif // end of ! SimulateExceptions
//******************** FREE_CHECK and NEW_DELETE ***********************//
#ifdef DO_FREE_CHECK // DO_FREE_CHECK
// Routines for tracing whether new and delete calls are balanced
class FreeCheck;
class FreeCheckLink
{
protected:
FreeCheckLink* next;
void* ClassStore;
FreeCheckLink();
virtual void Report()=0; // print details of link
friend class FreeCheck;
};
class FCLClass : public FreeCheckLink // for registering objects
{
char* ClassName;
FCLClass(void* t, char* name);
void Report();
friend class FreeCheck;
};
class FCLRealArray : public FreeCheckLink // for registering real arrays
{
char* Operation;
int size;
FCLRealArray(void* t, char* o, int s);
void Report();
friend class FreeCheck;
};
class FCLIntArray : public FreeCheckLink // for registering int arrays
{
char* Operation;
int size;
FCLIntArray(void* t, char* o, int s);
void Report();
friend class FreeCheck;
};
class FreeCheck
{
static FreeCheckLink* next;
static int BadDelete;
public:
static void Register(void*, char*);
static void DeRegister(void*, char*);
static void RegisterR(void*, char*, int);
static void DeRegisterR(void*, char*, int);
static void RegisterI(void*, char*, int);
static void DeRegisterI(void*, char*, int);
static void Status();
friend class FreeCheckLink;
friend class FCLClass;
friend class FCLRealArray;
friend class FCLIntArray;
};
#define FREE_CHECK(Class) \
public: \
void* operator new(size_t size) \
{ \
void* t = ::operator new(size); FreeCheck::Register(t,#Class); \
return t; \
} \
void operator delete(void* t) \
{ FreeCheck::DeRegister(t,#Class); ::operator delete(t); }
#ifdef SimulateExceptions // SimulateExceptions
#define NEW_DELETE(Class) \
public: \
void* operator new(size_t size) \
{ \
do_not_link=true; \
void* t = ::operator new(size); FreeCheck::Register(t,#Class); \
return t; \
} \
void operator delete(void* t) \
{ FreeCheck::DeRegister(t,#Class); ::operator delete(t); }
#endif // end of SimulateExceptions
#define MONITOR_REAL_NEW(Operation, Size, Pointer) \
FreeCheck::RegisterR(Pointer, Operation, Size);
#define MONITOR_INT_NEW(Operation, Size, Pointer) \
FreeCheck::RegisterI(Pointer, Operation, Size);
#define MONITOR_REAL_DELETE(Operation, Size, Pointer) \
FreeCheck::DeRegisterR(Pointer, Operation, Size);
#define MONITOR_INT_DELETE(Operation, Size, Pointer) \
FreeCheck::DeRegisterI(Pointer, Operation, Size);
#else // DO_FREE_CHECK not defined
#define FREE_CHECK(Class) public:
#define MONITOR_REAL_NEW(Operation, Size, Pointer) {}
#define MONITOR_INT_NEW(Operation, Size, Pointer) {}
#define MONITOR_REAL_DELETE(Operation, Size, Pointer) {}
#define MONITOR_INT_DELETE(Operation, Size, Pointer) {}
#ifdef SimulateExceptions // SimulateExceptions
#define NEW_DELETE(Class) \
public: \
void* operator new(size_t size) \
{ do_not_link=true; void* t = ::operator new(size); return t; } \
void operator delete(void* t) { ::operator delete(t); }
#endif // end of SimulateExceptions
#endif // end of ! DO_FREE_CHECK
#ifndef SimulateExceptions // ! SimulateExceptions
#define NEW_DELETE(Class) FREE_CHECK(Class)
#endif // end of ! SimulateExceptions
//********************* derived exceptions ******************************//
class Logic_error : public BaseException
{
public:
static unsigned long Select;
Logic_error(const char* a_what = 0);
};
class Runtime_error : public BaseException
{
public:
static unsigned long Select;
Runtime_error(const char* a_what = 0);
};
class Domain_error : public Logic_error
{
public:
static unsigned long Select;
Domain_error(const char* a_what = 0);
};
class Invalid_argument : public Logic_error
{
public:
static unsigned long Select;
Invalid_argument(const char* a_what = 0);
};
class Length_error : public Logic_error
{
public:
static unsigned long Select;
Length_error(const char* a_what = 0);
};
class Out_of_range : public Logic_error
{
public:
static unsigned long Select;
Out_of_range(const char* a_what = 0);
};
//class Bad_cast : public Logic_error
//{
//public:
// static unsigned long Select;
// Bad_cast(const char* a_what = 0);
//};
//class Bad_typeid : public Logic_error
//{
//public:
// static unsigned long Select;
// Bad_typeid(const char* a_what = 0);
//};
class Range_error : public Runtime_error
{
public:
static unsigned long Select;
Range_error(const char* a_what = 0);
};
class Overflow_error : public Runtime_error
{
public:
static unsigned long Select;
Overflow_error(const char* a_what = 0);
};
class Bad_alloc : public BaseException
{
public:
static unsigned long Select;
Bad_alloc(const char* a_what = 0);
};
#ifdef use_namespace
}
#endif
#endif // end of EXCEPTION_LIB
// body file: myexcept.cpp
///@}
|