Salome HOME
Merge remote-tracking branch 'origin/vsr/fix_single_study_pb' into pre/fix_single_study
[modules/gui.git] / src / SalomeApp / SalomeApp_ExceptionHandler.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "SalomeApp_ExceptionHandler.h"
24 #include "Utils_CorbaException.hxx"
25
26 #include "CASCatch.hxx"
27 #include "Basics_OCCTVersion.hxx"
28
29 #include <OSD.hxx>
30
31 #include <stdexcept>
32 #include <exception>
33
34 #include <QString>
35
36 #if OCC_VERSION_LARGE > 0x06010000
37   #include <Standard_ErrorHandler.hxx>
38   #include <Standard_Failure.hxx>
39 #else
40   #include "CASCatch.hxx"
41 #endif
42
43 /*!Constructor. Initialize by \a floatSignal.*/
44 SalomeApp_ExceptionHandler::SalomeApp_ExceptionHandler( const bool floatSignal )
45 : SUIT_ExceptionHandler()
46 {
47   // JFA 2006-09-28: PAL10867: suppress signal catching,
48   // if environment variable DISABLE_SIGNALS_CATCHING is set to 1.
49   // Commonly this is used with "noexcepthandler" option.
50   char* envNoCatchSignals = getenv("NOT_INTERCEPT_SIGNALS");
51   if (!envNoCatchSignals || !atoi(envNoCatchSignals))
52   {
53     OSD::SetSignal( floatSignal );
54   }
55 }
56
57 /*!Try to call SUIT_ExceptionHandler::internalHandle(o, e), catch if failure.*/
58 bool SalomeApp_ExceptionHandler::handleSignals( QObject* o, QEvent* e )
59 {
60 #if OCC_VERSION_LARGE > 0x06010000
61   try {
62     OCC_CATCH_SIGNALS;
63 #else
64   CASCatch_TRY {
65 #endif
66     SUIT_ExceptionHandler::internalHandle( o, e );
67   }
68 #if OCC_VERSION_LARGE > 0x06010000
69   catch(Standard_Failure) {
70 #else
71   CASCatch_CATCH(Standard_Failure) {
72 #endif
73     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
74     throw Standard_Failure( aFail->GetMessageString() );
75   }
76
77   return true;
78 }
79
80 /*!Try to call handleSignals( o, e ), catch and show error message.*/
81 bool SalomeApp_ExceptionHandler::handle( QObject* o, QEvent* e )
82 {
83   bool res = false;
84   QString title( "Fatal error" );
85
86   try {
87     res = handleSignals( o, e );
88   }
89   catch( std::exception& ex )
90   {
91     showMessage( title, QString( ex.what() ) );
92   }
93   catch( Standard_Failure& e )
94   {
95     showMessage( title, QString( e.GetMessageString() ) );
96   }
97   catch( SALOME::SALOME_Exception& ex)
98   {
99     showMessage( title, QString( ex.details.text));
100   }
101 #ifndef WIN32
102   catch(...)
103   {
104     showMessage( title, "Unknown Exception" );
105   }
106 #endif
107
108   return res;
109 }
110
111 /*!Create new SUIT_ExceptionHandler*/
112 extern "C" SALOMEAPP_EXPORT SUIT_ExceptionHandler* getExceptionHandler()
113 {
114   // MSV 2006-04-26: work around PAL12004 "VTK window => SIGFPE Arithmetic Exception Detected"
115   // We disable FPE signal as it was in earlier versions of SALOME. It is enabled
116   // only in debug mode if the environment variable DISABLE_FPE is not set to 1.
117   bool raiseFPE;
118   raiseFPE = false;
119
120 #if defined(_DEBUG_) | defined(_DEBUG) //the Last for WIN32 default settings
121   char* envEnableFPE = getenv("ENABLE_FPE");
122   if (envEnableFPE && atoi(envEnableFPE))
123     raiseFPE = true;
124 #endif
125
126   return new SalomeApp_ExceptionHandler( raiseFPE );
127 }