X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHUtils%2FSMESH_ComputeError.hxx;h=6e007e3a11719a8c2e4ffd8612e825b096554316;hp=aa2faf7f91a6c948e15fa7fdaf23bb1aada79406;hb=8d3d2084b73d927b857e77ae17ca62e0d74e090a;hpb=bd8f1aee7c78f7d2eb82bd4fec5e08c9e3d280ce diff --git a/src/SMESHUtils/SMESH_ComputeError.hxx b/src/SMESHUtils/SMESH_ComputeError.hxx index aa2faf7f9..6e007e3a1 100644 --- a/src/SMESHUtils/SMESH_ComputeError.hxx +++ b/src/SMESHUtils/SMESH_ComputeError.hxx @@ -1,9 +1,9 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -17,13 +17,15 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// File : SMESH_Hypothesis.hxx +// File : SMESH_ComputeError.hxx // Author : Edward AGAPOV (eap) // Module : SMESH // #ifndef SMESH_ComputeError_HeaderFile #define SMESH_ComputeError_HeaderFile +#include "SMESH_Utils.hxx" + #include #include #include @@ -52,6 +54,7 @@ enum SMESH_ComputeErrorName COMPERR_WARNING = -10, //!< algo reports error but sub-mesh is computed anyway COMPERR_CANCELED = -11, //!< compute canceled COMPERR_NO_MESH_ON_SHAPE = -12, //!< no mesh elements assigned to sub-shape + COMPERR_BAD_PARMETERS = -13, //!< incorrect hypotheses parameters COMPERR_LAST_ALGO_ERROR = -100,//!< terminator of mesh computation errors // Errors of SMESH_MeshEditor follow EDITERR_NO_MEDIUM_ON_GEOM= -101 /* during conversion to quadratic, @@ -66,7 +69,7 @@ enum SMESH_ComputeErrorName */ // ============================================================= -struct SMESH_ComputeError +struct SMESHUtils_EXPORT SMESH_ComputeError { int myName; //!< SMESH_ComputeErrorName or anything algo specific std::string myComment; @@ -88,31 +91,15 @@ struct SMESH_ComputeError bool IsKO() const { return myName != COMPERR_OK && myName != COMPERR_WARNING; } bool IsCommon() const { return myName < 0 && myName > COMPERR_LAST_ALGO_ERROR; } bool HasBadElems() const { return !myBadElements.empty(); } - inline std::string CommonName() const; -}; + // not inline methods are implemented in src/SMESHUtils/SMESH_TryCatch.cxx -#define _case2char(err) case err: return #err; + // Return myName as text, to be used to dump errors in terminal + std::string CommonName() const; -// Return myName as text, to be used to dump errors in terminal -std::string SMESH_ComputeError::CommonName() const -{ - switch( myName ) { - _case2char(COMPERR_OK ); - _case2char(COMPERR_BAD_INPUT_MESH ); - _case2char(COMPERR_STD_EXCEPTION ); - _case2char(COMPERR_OCC_EXCEPTION ); - _case2char(COMPERR_SLM_EXCEPTION ); - _case2char(COMPERR_EXCEPTION ); - _case2char(COMPERR_MEMORY_PB ); - _case2char(COMPERR_ALGO_FAILED ); - _case2char(COMPERR_BAD_SHAPE ); - _case2char(COMPERR_WARNING ); - _case2char(COMPERR_CANCELED ); - _case2char(COMPERR_NO_MESH_ON_SHAPE); - default:; - } - return ""; -} + // Return the most severe error + static SMESH_ComputeErrorPtr Worst( SMESH_ComputeErrorPtr er1, + SMESH_ComputeErrorPtr er2 ); +}; #endif