Salome HOME
23173: EDF 11552 - Problem using Add 0D element function
[modules/smesh.git] / src / SMESHUtils / SMESH_TryCatch.cxx
1 // Copyright (C) 2007-2015  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 #include "SMESH_ComputeError.hxx"
37
38 #define _case2char(err) case err: return #err;
39
40 // Return SMESH_ComputeError::myName as text, to be used to dump errors in terminal
41 std::string SMESH_ComputeError::CommonName() const
42 {
43   switch( myName ) {
44   _case2char(COMPERR_OK              );
45   _case2char(COMPERR_BAD_INPUT_MESH  );
46   _case2char(COMPERR_STD_EXCEPTION   );
47   _case2char(COMPERR_OCC_EXCEPTION   );
48   _case2char(COMPERR_SLM_EXCEPTION   );
49   _case2char(COMPERR_EXCEPTION       );
50   _case2char(COMPERR_MEMORY_PB       );
51   _case2char(COMPERR_ALGO_FAILED     );
52   _case2char(COMPERR_BAD_SHAPE       );
53   _case2char(COMPERR_WARNING         );
54   _case2char(COMPERR_CANCELED        );
55   _case2char(COMPERR_NO_MESH_ON_SHAPE);
56   _case2char(COMPERR_BAD_PARMETERS   );
57   default:;
58   }
59   return "";
60 }
61
62 // Return the most severe error
63 SMESH_ComputeErrorPtr SMESH_ComputeError::Worst( SMESH_ComputeErrorPtr er1,
64                                                  SMESH_ComputeErrorPtr er2 )
65 {
66   if ( !er1 ) return er2;
67   if ( !er2 ) return er1;
68   // both not NULL
69   if ( er1->IsOK() ) return er2;
70   if ( er2->IsOK() ) return er1;
71   // both not OK
72   if ( !er1->IsKO() ) return er2;
73   if ( !er2->IsKO() ) return er1;
74   // both KO
75   bool hasInfo1 = er1->myComment.size() || !er1->myBadElements.empty();
76   bool hasInfo2 = er2->myComment.size() || !er2->myBadElements.empty();
77   if ( er1->myName == er2->myName ||
78        hasInfo1    != hasInfo2 )
79     return hasInfo1 < hasInfo2 ? er2 : er1;
80
81   return er1->myName == COMPERR_CANCELED ? er2 : er1;
82 }