Salome HOME
4552a1e7f9126381348342826674fbc6e2afbe4f
[modules/smesh.git] / src / SMESHUtils / SMESH_TryCatch.cxx
1 // Copyright (C) 2007-2021  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   (void)txt; // unused in release mode
34   MESSAGE( txt << " " << __FILE__ << ": " << __LINE__ );
35 }
36
37 const char* SMESH::returnError(const char* txt)
38 {
39   return txt;
40 }
41
42 // ------------------------------------------------------------------
43
44 #include "SMESH_ComputeError.hxx"
45 #include "SMDS_SetIterator.hxx"
46 #include <boost/make_shared.hpp>
47
48 #define _case2char(err) case err: return #err;
49
50 // Return SMESH_ComputeError::myName as text, to be used to dump errors in terminal
51 std::string SMESH_ComputeError::CommonName() const
52 {
53   switch( myName ) {
54   _case2char(COMPERR_OK              );
55   _case2char(COMPERR_BAD_INPUT_MESH  );
56   _case2char(COMPERR_STD_EXCEPTION   );
57   _case2char(COMPERR_OCC_EXCEPTION   );
58   _case2char(COMPERR_SLM_EXCEPTION   );
59   _case2char(COMPERR_EXCEPTION       );
60   _case2char(COMPERR_MEMORY_PB       );
61   _case2char(COMPERR_ALGO_FAILED     );
62   _case2char(COMPERR_BAD_SHAPE       );
63   _case2char(COMPERR_WARNING         );
64   _case2char(COMPERR_CANCELED        );
65   _case2char(COMPERR_NO_MESH_ON_SHAPE);
66   _case2char(COMPERR_BAD_PARMETERS   );
67   default:;
68   }
69   return "";
70 }
71
72 // Return the most severe error
73 SMESH_ComputeErrorPtr SMESH_ComputeError::Worst( SMESH_ComputeErrorPtr er1,
74                                                  SMESH_ComputeErrorPtr er2 )
75 {
76   if ( !er1 ) return er2;
77   if ( !er2 ) return er1;
78   // both not NULL
79   if ( er1->IsOK() ) return er2;
80   if ( er2->IsOK() ) return er1;
81   // both not OK
82   if ( !er1->IsKO() ) return er2;
83   if ( !er2->IsKO() ) return er1;
84   // both KO
85   bool hasInfo1 = er1->myComment.size() || er1->HasBadElems();
86   bool hasInfo2 = er2->myComment.size() || er2->HasBadElems();
87   if ( er1->myName == er2->myName ||
88        hasInfo1    != hasInfo2 )
89     return hasInfo1 < hasInfo2 ? er2 : er1;
90
91   return er1->myName == COMPERR_CANCELED ? er2 : er1;
92 }
93
94 // Return bad elements
95 SMDS_ElemIteratorPtr SMESH_BadInputElements::getElements()
96 {
97   typedef SMDS_SetIterator< const SMDS_MeshElement*,
98                             std::list< const SMDS_MeshElement* >::const_iterator> TIterator;
99   return boost::make_shared< TIterator >( myBadElements.begin(), myBadElements.end() );
100 }
101
102 // Temporary remove its elements before the mesh compacting
103 void SMESH_BadInputElements::tmpClear()
104 {
105   myBadElements.clear();
106 }
107
108 // Re-add elements after the mesh compacting
109 void SMESH_BadInputElements::add( const SMDS_MeshElement* element )
110 {
111   myBadElements.push_back( element );
112 }