Salome HOME
Merge ASERIS development.
[modules/smesh.git] / src / SMESHUtils / SMESH_TryCatch.cxx
1 // Copyright (C) 2007-2016  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 // ------------------------------------------------------------------
24 #include "SMESH_TryCatch.hxx"
25
26 void SMESH::throwSalomeEx(const char* txt)
27 {
28   throw SALOME_Exception( txt );
29 }
30
31 void SMESH::doNothing(const char* txt)
32 {
33   MESSAGE( txt << " " << __FILE__ << ": " << __LINE__ );
34 }
35
36 const char* SMESH::returnError(const char* txt)
37 {
38   return txt;
39 }
40
41 // ------------------------------------------------------------------
42 #include "SMESH_ComputeError.hxx"
43
44 #define _case2char(err) case err: return #err;
45
46 // Return SMESH_ComputeError::myName as text, to be used to dump errors in terminal
47 std::string SMESH_ComputeError::CommonName() const
48 {
49   switch( myName ) {
50   _case2char(COMPERR_OK              );
51   _case2char(COMPERR_BAD_INPUT_MESH  );
52   _case2char(COMPERR_STD_EXCEPTION   );
53   _case2char(COMPERR_OCC_EXCEPTION   );
54   _case2char(COMPERR_SLM_EXCEPTION   );
55   _case2char(COMPERR_EXCEPTION       );
56   _case2char(COMPERR_MEMORY_PB       );
57   _case2char(COMPERR_ALGO_FAILED     );
58   _case2char(COMPERR_BAD_SHAPE       );
59   _case2char(COMPERR_WARNING         );
60   _case2char(COMPERR_CANCELED        );
61   _case2char(COMPERR_NO_MESH_ON_SHAPE);
62   _case2char(COMPERR_BAD_PARMETERS   );
63   default:;
64   }
65   return "";
66 }
67
68 // Return the most severe error
69 SMESH_ComputeErrorPtr SMESH_ComputeError::Worst( SMESH_ComputeErrorPtr er1,
70                                                  SMESH_ComputeErrorPtr er2 )
71 {
72   if ( !er1 ) return er2;
73   if ( !er2 ) return er1;
74   // both not NULL
75   if ( er1->IsOK() ) return er2;
76   if ( er2->IsOK() ) return er1;
77   // both not OK
78   if ( !er1->IsKO() ) return er2;
79   if ( !er2->IsKO() ) return er1;
80   // both KO
81   bool hasInfo1 = er1->myComment.size() || !er1->myBadElements.empty();
82   bool hasInfo2 = er2->myComment.size() || !er2->myBadElements.empty();
83   if ( er1->myName == er2->myName ||
84        hasInfo1    != hasInfo2 )
85     return hasInfo1 < hasInfo2 ? er2 : er1;
86
87   return er1->myName == COMPERR_CANCELED ? er2 : er1;
88 }