smesh/src/SMESH/SMESH_Gen.hxx

182 lines
6.0 KiB
C++
Raw Normal View History

2013-04-01 19:05:47 +06:00
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2003-07-10 16:13:42 +06:00
//
2012-08-09 16:03:55 +06:00
// 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.
2003-07-10 16:13:42 +06:00
//
2012-08-09 16:03:55 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2003-07-10 16:13:42 +06:00
//
2012-08-09 16:03:55 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2003-07-10 16:13:42 +06:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESH : implementaion of SMESH idl descriptions
2003-07-10 16:13:42 +06:00
// File : SMESH_Gen.hxx
// Author : Paul RASCLE, EDF
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
2003-05-19 19:18:36 +06:00
#ifndef _SMESH_GEN_HXX_
#define _SMESH_GEN_HXX_
#include "SMESH_SMESH.hxx"
2003-05-19 19:18:36 +06:00
#include "Utils_SALOME_Exception.hxx"
#include "SMESH_Hypothesis.hxx"
#include "SMESH_ComputeError.hxx"
2003-05-19 19:18:36 +06:00
#include "SMESH_Algo.hxx"
#include "SMESH_Mesh.hxx"
2012-08-09 16:03:55 +06:00
#include "chrono.hxx"
2003-05-19 19:18:36 +06:00
#include <TopoDS_Shape.hxx>
#include <map>
2009-02-17 10:27:49 +05:00
#include <list>
2012-10-08 17:56:59 +06:00
#include <vector>
#include <string>
2004-12-01 15:48:31 +05:00
class SMESHDS_Document;
typedef SMESH_Hypothesis::Hypothesis_Status TAlgoStateErrorName;
2003-05-19 19:18:36 +06:00
typedef struct studyContextStruct
{
std::map < int, SMESH_Hypothesis * >mapHypothesis;
std::map < int, SMESH_Mesh * >mapMesh;
SMESHDS_Document * myDocument;
} StudyContextStruct;
2003-05-19 19:18:36 +06:00
2009-02-17 10:27:49 +05:00
typedef std::set<int> TSetOfInt;
class SMESH_EXPORT SMESH_Gen
2003-05-19 19:18:36 +06:00
{
2012-08-09 16:03:55 +06:00
public:
2004-06-18 14:55:35 +06:00
SMESH_Gen();
~SMESH_Gen();
SMESH_Mesh* CreateMesh(int theStudyId, bool theIsEmbeddedMode)
2004-06-18 14:55:35 +06:00
throw(SALOME_Exception);
2009-02-17 10:27:49 +05:00
/*!
* \brief Computes aMesh on aShape
* \param anUpward - compute from vertices up to more complex shape (internal usage)
* \param aDim - upper level dimension of the mesh computation
* \param aShapesId - list of shapes with computed mesh entities (elements or nodes)
* \retval bool - true if none submesh failed to compute
*/
bool Compute(::SMESH_Mesh & aMesh,
const TopoDS_Shape & aShape,
const bool anUpward=false,
2012-08-09 16:03:55 +06:00
const ::MeshDimension aDim=::MeshDim_3D,
TSetOfInt* aShapesId=0);
#ifdef WITH_SMESH_CANCEL_COMPUTE
void PrepareCompute(::SMESH_Mesh & aMesh,
const TopoDS_Shape & aShape);
void CancelCompute(::SMESH_Mesh & aMesh,
const TopoDS_Shape & aShape);
#endif
/*!
* \brief evaluates size of prospective mesh on a shape
* \param aMesh - the mesh
* \param aShape - the shape
* \param aResMap - map for prospective numbers of elements
* \retval bool - is a success
*/
bool Evaluate(::SMESH_Mesh & aMesh,
const TopoDS_Shape & aShape,
MapShapeNbElems& aResMap,
const bool anUpward=false,
TSetOfInt* aShapesId=0);
2004-06-18 14:55:35 +06:00
bool CheckAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
// notify on bad state of attached algos, return false
// if Compute() would fail because of some algo bad state
2009-02-17 10:27:49 +05:00
/*!
* \brief Sets number of segments per diagonal of boundary box of geometry by which
* default segment length of appropriate 1D hypotheses is defined
*/
void SetBoundaryBoxSegmentation( int theNbSegments ) { _segmentation = theNbSegments; }
int GetBoundaryBoxSegmentation() const { return _segmentation; }
/*!
* \brief Sets default number of segments per edge
*/
void SetDefaultNbSegments(int nb) { _nbSegments = nb; }
int GetDefaultNbSegments() const { return _nbSegments; }
2012-08-09 16:03:55 +06:00
2005-11-14 14:11:54 +05:00
struct TAlgoStateError
{
TAlgoStateErrorName _name;
const SMESH_Algo* _algo;
int _algoDim;
bool _isGlobalAlgo;
TAlgoStateError(): _algoDim(0),_algo(0),_name(SMESH_Hypothesis::HYP_OK) {}
2005-11-14 14:11:54 +05:00
void Set(TAlgoStateErrorName name, const SMESH_Algo* algo, bool isGlobal)
{ _name = name; _algo = algo; _algoDim = algo->GetDim(); _isGlobalAlgo = isGlobal; }
void Set(TAlgoStateErrorName name, const int algoDim, bool isGlobal)
{ _name = name; _algo = 0; _algoDim = algoDim; _isGlobalAlgo = isGlobal; }
};
bool GetAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
std::list< SMESH_Gen::TAlgoStateError > & theErrors);
// notify on bad state of attached algos, return false
// if Compute() would fail because of some algo bad state
// theErrors list contains problems description
2004-06-18 14:55:35 +06:00
StudyContextStruct *GetStudyContext(int studyId);
static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
static int GetShapeDim(const TopoDS_Shape & aShape)
{ return GetShapeDim( aShape.ShapeType() ); }
2012-10-08 17:56:59 +06:00
2009-02-17 10:27:49 +05:00
SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, TopoDS_Shape* assignedTo=0);
2012-10-08 17:56:59 +06:00
static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh);
2004-06-18 14:55:35 +06:00
2012-10-08 17:56:59 +06:00
static std::vector< std::string > GetPluginXMLPaths();
2004-06-18 14:55:35 +06:00
int GetANewId();
2004-12-01 15:48:31 +05:00
std::map < int, SMESH_Algo * >_mapAlgo;
std::map < int, SMESH_0D_Algo * >_map0D_Algo;
2004-12-01 15:48:31 +05:00
std::map < int, SMESH_1D_Algo * >_map1D_Algo;
std::map < int, SMESH_2D_Algo * >_map2D_Algo;
std::map < int, SMESH_3D_Algo * >_map3D_Algo;
2004-06-18 14:55:35 +06:00
2012-08-09 16:03:55 +06:00
private:
2004-06-18 14:55:35 +06:00
2012-08-09 16:03:55 +06:00
int _localId; // unique Id of created objects, within SMESH_Gen entity
2004-12-01 15:48:31 +05:00
std::map < int, StudyContextStruct * >_mapStudyContext;
2004-06-18 14:55:35 +06:00
// hypotheses managing
int _hypId;
2009-02-17 10:27:49 +05:00
// number of segments per diagonal of boundary box of geometry by which
// default segment length of appropriate 1D hypotheses is defined
int _segmentation;
// default of segments
int _nbSegments;
2012-08-09 16:03:55 +06:00
counters *_counters;
#ifdef WITH_SMESH_CANCEL_COMPUTE
volatile bool _compute_canceled;
SMESH_subMesh* _sm_current;
#endif
2003-05-19 19:18:36 +06:00
};
#endif