]> SALOME platform Git repositories - modules/kernel.git/blob - src/Utils/Utils_ExceptHandlers.hxx
Salome HOME
55558245e2f54d05cc8eb988553421d2fd9811d8
[modules/kernel.git] / src / Utils / Utils_ExceptHandlers.hxx
1 //  KERNEL Utils : common utils for KERNEL
2 //  Copyright (C) 2003  CEA
3 //
4 //  This library is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU Lesser General Public
6 //  License as published by the Free Software Foundation; either
7 //  version 2.1 of the License.
8 //
9
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : Utils_ExceptHandlers.hxx
24 //  Author : Oksana Tchebanova
25 //  Module : KERNEL
26 //  $Header:
27
28
29 #ifndef Utils_ExceptHandlers_HeaderFile
30 #define Utils_ExceptHandlers_HeaderFile
31
32 #include <stdexcept>
33 #include <utilities.h>
34
35 typedef void (*PVF)();
36
37 class Unexpect { //save / retrieve unexpected exceptions treatment
38   PVF old;
39   public :
40     Unexpect( PVF f ) 
41       { old = set_unexpected(f); }
42   ~Unexpect() { set_unexpected(old); }
43 };
44
45 class Terminate {//save / retrieve terminate function
46   
47   PVF old;
48   public :
49     Terminate( PVF f ) 
50       { old = set_terminate(f); }
51   ~Terminate() { set_terminate(old); }
52 };
53
54 #define UNEXPECT_CATCH(FuncName, ExceptionConstructor) \
55 void FuncName () {\
56    throw ExceptionConstructor (); \
57 }
58 //Example of the usage 
59
60 // void DTC_NotFound () {
61 //   throw (SALOME_DataTypeCatalog::NotFound());
62 // }
63 // or the same :
64 //
65 // UNEXPECT_CATCH( DTC_NotFound , SALOME_DataTypeCatalog::NotFound)
66 // in the function body :
67 // ....
68 // Unexpect aCatch(DTC_NotFound) // redefinition of the unexpect exceptions handler
69 // ....
70
71
72 //Definitions :
73 extern void SalomeException();
74 extern void SALOME_SalomeException();
75 #endif