Salome HOME
4887264da1de5a82d84f421efc6a9f106cd2ca6c
[modules/smesh.git] / src / SMESHUtils / SMESH_ComputeError.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  File   : SMESH_ComputeError.hxx
21 //  Author : Edward AGAPOV (eap)
22 //  Module : SMESH
23 //
24 #ifndef SMESH_ComputeError_HeaderFile
25 #define SMESH_ComputeError_HeaderFile
26
27 #include <string>
28 #include <list>
29 #include <boost/shared_ptr.hpp>
30
31 class SMESH_Algo;
32 class SMDS_MeshElement;
33 struct SMESH_ComputeError;
34
35 typedef boost::shared_ptr<SMESH_ComputeError> SMESH_ComputeErrorPtr;
36
37 // =============================================================
38
39 enum SMESH_ComputeErrorName
40 {
41   // If you modify it, pls update SMESH_ComputeError::CommonName() below.
42   // Positive values are for algo specific errors
43   COMPERR_OK               = -1,
44   COMPERR_BAD_INPUT_MESH   = -2,  //!< wrong mesh on lower submesh
45   COMPERR_STD_EXCEPTION    = -3,  //!< some std exception raised
46   COMPERR_OCC_EXCEPTION    = -4,  //!< OCC exception raised
47   COMPERR_SLM_EXCEPTION    = -5,  //!< SALOME exception raised
48   COMPERR_EXCEPTION        = -6,  //!< other exception raised
49   COMPERR_MEMORY_PB        = -7,  //!< std::bad_alloc exception
50   COMPERR_ALGO_FAILED      = -8,  //!< algo failed for some reason
51   COMPERR_BAD_SHAPE        = -9,  //!< bad geometry
52   COMPERR_WARNING          = -10, //!< algo reports error but sub-mesh is computed anyway
53   COMPERR_CANCELED         = -11, //!< compute canceled
54   COMPERR_NO_MESH_ON_SHAPE = -12, //!< no mesh elements assigned to sub-shape
55   COMPERR_BAD_PARMETERS    = -13, //!< incorrect hypotheses parameters
56   COMPERR_LAST_ALGO_ERROR  = -100,//!< terminator of mesh computation errors
57   // Errors of SMESH_MeshEditor follow
58   EDITERR_NO_MEDIUM_ON_GEOM= -101 /* during conversion to quadratic,
59                                      some medium nodes not placed on geometry
60                                      to avoid distorting elements, which are
61                                      stored in SMESH_ComputeError::myBadElements */
62 };
63
64 // =============================================================
65 /*!
66  * \brief Contains an algorithm and description of an occured error
67  */
68 // =============================================================
69
70 struct SMESH_ComputeError
71 {
72   int               myName; //!< SMESH_ComputeErrorName or anything algo specific
73   std::string       myComment;
74   const SMESH_Algo* myAlgo;
75
76   std::list<const SMDS_MeshElement*> myBadElements; //!< to explain COMPERR_BAD_INPUT_MESH
77
78   static SMESH_ComputeErrorPtr New( int               error   = COMPERR_OK,
79                                     std::string       comment = "",
80                                     const SMESH_Algo* algo    = 0)
81   { return SMESH_ComputeErrorPtr( new SMESH_ComputeError( error, comment, algo )); }
82
83   SMESH_ComputeError(int               error   = COMPERR_OK,
84                      std::string       comment = "",
85                      const SMESH_Algo* algo    = 0)
86     :myName(error),myComment(comment),myAlgo(algo) {}
87
88   bool IsOK()        const { return myName == COMPERR_OK; }
89   bool IsKO()        const { return myName != COMPERR_OK && myName != COMPERR_WARNING; }
90   bool IsCommon()    const { return myName < 0 && myName > COMPERR_LAST_ALGO_ERROR; }
91   bool HasBadElems() const { return !myBadElements.empty(); }
92
93   // not inline methods are implemented in   src/SMESHUtils/SMESH_TryCatch.cxx
94
95   // Return myName as text, to be used to dump errors in terminal
96   std::string CommonName() const;
97
98   // Return the most severe error
99   static SMESH_ComputeErrorPtr Worst( SMESH_ComputeErrorPtr er1,
100                                       SMESH_ComputeErrorPtr er2 );
101 };
102
103 #endif