0024836: Stack overflow when raising exception in low memory condition
[occt.git] / src / Standard / Standard_Failure.hxx
CommitLineData
42cf5bc1 1// Created on: 1991-09-05
2// Created by: Philippe COICADAN
3// Copyright (c) 1991-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _Standard_Failure_HeaderFile
18#define _Standard_Failure_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_CString.hxx>
24#include <Standard_Transient.hxx>
25#include <Standard_OStream.hxx>
26#include <Standard_SStream.hxx>
27class Standard_NoSuchObject;
28
29
30class Standard_Failure;
31DEFINE_STANDARD_HANDLE(Standard_Failure, Standard_Transient)
32
33
34//! Forms the root of the entire exception hierarchy.
35class Standard_Failure : public Standard_Transient
36{
37
38public:
39
40
41
42 //! Creates a status object of type "Failure".
43 Standard_EXPORT Standard_Failure();
4db4247a 44
45 //! Copy constructor
46 Standard_EXPORT Standard_Failure (const Standard_Failure& f);
42cf5bc1 47
48 //! Creates a status object of type "Failure".
49 Standard_EXPORT Standard_Failure(const Standard_CString aString);
4db4247a 50
51 //! Assignment operator
52 Standard_EXPORT Standard_Failure& operator= (const Standard_Failure& f);
42cf5bc1 53
4db4247a 54 //! Destructor
55 Standard_EXPORT ~Standard_Failure();
42cf5bc1 56
57 //! Prints on the stream <s> the exception name followed by
58 //! the error message.
59 //! Level: Advanced
60 //! Warning:
61 //! The operator "OStream& operator<< (Standard_OStream&,
62 //! Handle(Standard_Failure)&)"
63 //! is implemented. (This operator uses the method Print)
64 Standard_EXPORT void Print (Standard_OStream& s) const;
42cf5bc1 65
66 //! Returns error message
4db4247a 67 Standard_EXPORT virtual Standard_CString GetMessageString() const;
42cf5bc1 68
69 //! Sets error message
4db4247a 70 Standard_EXPORT virtual void SetMessageString (const Standard_CString aMessage);
42cf5bc1 71
72 Standard_EXPORT void Reraise();
73
74 Standard_EXPORT void Reraise (const Standard_CString aMessage);
75
76 //! Reraises a caught exception and changes its error message.
77 Standard_EXPORT void Reraise (const Standard_SStream& aReason);
78
79 //! Raises an exception of type "Failure" and associates
80 //! an error message to it. The message can be printed
81 //! in an exception handler.
82 Standard_EXPORT static void Raise (const Standard_CString aMessage = "");
83
84 //! Raises an exception of type "Failure" and associates
85 //! an error message to it. The message can be constructed
86 //! at run-time.
87 Standard_EXPORT static void Raise (const Standard_SStream& aReason);
88
89 //! Used to construct an instance of the exception object
90 //! as a handle. Shall be used to protect against possible
91 //! construction of exception object in C stack -- that is
92 //! dangerous since some of methods require that object
93 //! was allocated dynamically.
94 Standard_EXPORT static Handle(Standard_Failure) NewInstance (const Standard_CString aMessage);
95
96 //! Used to throw CASCADE exception from C signal handler.
97 //! On platforms that do not allow throwing C++ exceptions
98 //! from this handler (e.g. Linux), uses longjump to get to
99 //! the current active signal handler, and only then is
100 //! converted to C++ exception.
101 Standard_EXPORT void Jump();
102
103 //! Returns the last caught exception.
104 //! Needed when exceptions are emulated by C longjumps,
105 //! in other cases is also provided for compatibility.
106 Standard_EXPORT static Handle(Standard_Failure) Caught();
107
108
109
92efcf78 110 DEFINE_STANDARD_RTTIEXT(Standard_Failure,Standard_Transient)
42cf5bc1 111
112protected:
113
114
115 //! Used only if standard C++ exceptions are used.
116 //! Throws exception of the same type as this by C++ throw,
117 //! and stores current object as last thrown exception,
118 //! to be accessible by method Caught()
119 Standard_EXPORT virtual void Throw() const;
120
121
122
123private:
124
125
126 Standard_CString myMessage;
127
128
129};
130
4db4247a 131inline Standard_OStream& operator << (Standard_OStream& AStream,
132 const Handle(Standard_Failure)& AFailure)
133{
134 AFailure->Print(AStream);
135 return AStream;
136}
42cf5bc1 137
138#endif // _Standard_Failure_HeaderFile