Salome HOME
Splitting gen compute seq/para + clean up + remove int argument + solve bug (commente...
[modules/smesh.git] / src / SMESH / SMESH_Gen.hxx
1 // Copyright (C) 2007-2022  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 //  SMESH SMESH : implementation of SMESH idl descriptions
24 //  File   : SMESH_Gen.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //
28 #ifndef _SMESH_GEN_HXX_
29 #define _SMESH_GEN_HXX_
30
31 #include "SMESH_SMESH.hxx"
32
33 #include "Utils_SALOME_Exception.hxx"
34
35 #include "SMESH_Algo.hxx"
36 #include "SMESH_ComputeError.hxx"
37 #include "SMESH_subMesh.hxx"
38
39 #include <map>
40 #include <list>
41 #include <set>
42 #include <vector>
43 #include <string>
44
45
46 #include <TopoDS_Shape.hxx>
47 #include <TopTools_IndexedMapOfShape.hxx>
48
49 class SMESHDS_Document;
50 class SMESH_Algo;
51 class SMESH_Mesh;
52 class TopoDS_Shape;
53
54
55 typedef SMESH_Hypothesis::Hypothesis_Status TAlgoStateErrorName;
56
57 typedef struct studyContextStruct
58 {
59   std::map < int, SMESH_Hypothesis * >mapHypothesis;
60   std::map < int, SMESH_Mesh * >mapMesh;
61   SMESHDS_Document * myDocument;
62 } StudyContextStruct;
63
64 typedef std::set<int> TSetOfInt;
65
66 class SMESH_EXPORT SMESH_Gen
67 {
68 public:
69   SMESH_Gen();
70   ~SMESH_Gen();
71
72   SMESH_Mesh* CreateMesh(bool theIsEmbeddedMode);
73
74   enum ComputeFlags
75   {
76     SHAPE_ONLY        = 1, // to ignore algo->OnlyUnaryInput() feature and to compute a given shape only.
77     UPWARD            = 2, // to compute from vertices up to more complex shape (internal usage)
78     COMPACT_MESH      = 4, // to compact the mesh at the end
79     SHAPE_ONLY_UPWARD = 3  // SHAPE_ONLY | UPWARD
80   };
81   /*!
82    * \brief Computes aMesh on aShape
83    *  \param aMesh - the mesh.
84    *  \param aShape - the shape.
85    *  \param aFlags - ComputeFlags. By default compute the whole mesh and compact at the end.
86    *  \param aDim - upper level dimension of the mesh computation (for preview)
87    *  \param aShapesId - list of shapes with computed mesh entities (elements or nodes)
88    *  \param anAllowedSubShapes - shapes to mesh only. Mesh all if empty or nullptr
89    *  \retval bool - true if none sub-mesh failed to compute
90    */
91   bool Compute(::SMESH_Mesh &              aMesh,
92                const TopoDS_Shape &        aShape,
93                const int                   aFlags = COMPACT_MESH,
94                const ::MeshDimension       aDim=::MeshDim_3D,
95                TSetOfInt*                  aShapesId=0,
96                TopTools_IndexedMapOfShape* anAllowedSubShapes=0);
97
98   void PrepareCompute(::SMESH_Mesh &        aMesh,
99                       const TopoDS_Shape &  aShape);
100   void CancelCompute(::SMESH_Mesh &        aMesh,
101                      const TopoDS_Shape &  aShape);
102
103   const SMESH_subMesh* GetCurrentSubMesh() const;
104
105   /*!
106    * \brief evaluates size of prospective mesh on a shape
107    * \param aMesh - the mesh
108    * \param aShape - the shape
109    * \param aResMap - map for prospective numbers of elements
110    * \retval bool - is a success
111    */
112   bool Evaluate(::SMESH_Mesh &        aMesh,
113                 const TopoDS_Shape &  aShape,
114                 MapShapeNbElems&      aResMap,
115                 const bool            anUpward=false,
116                 TSetOfInt*            aShapesId=0);
117
118   bool CheckAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
119   // notify on bad state of attached algos, return false
120   // if Compute() would fail because of some algo bad state
121
122   /*!
123    * \brief Sets number of segments per diagonal of boundary box of geometry by which
124    *        default segment length of appropriate 1D hypotheses is defined
125    */
126   void SetBoundaryBoxSegmentation( int theNbSegments ) { _segmentation = theNbSegments; }
127   int  GetBoundaryBoxSegmentation() const { return _segmentation; }
128   /*!
129    * \brief Sets default number of segments per edge
130    */
131   void SetDefaultNbSegments(int nb) { _nbSegments = nb; }
132   int GetDefaultNbSegments() const { return _nbSegments; }
133
134   struct TAlgoStateError
135   {
136     TAlgoStateErrorName _name;
137     const SMESH_Algo*   _algo;
138     int                 _algoDim;
139     bool                _isGlobalAlgo;
140
141     TAlgoStateError(): _name(SMESH_Hypothesis::HYP_OK), _algo(0), _algoDim(0) {}
142     void Set(TAlgoStateErrorName name, const SMESH_Algo* algo, bool isGlobal)
143     { _name = name; _algo = algo; _algoDim = algo->GetDim(); _isGlobalAlgo = isGlobal; }
144     void Set(TAlgoStateErrorName name, const int algoDim,      bool isGlobal)
145     { _name = name; _algo = 0;    _algoDim = algoDim;        _isGlobalAlgo = isGlobal; }
146   };
147
148   bool GetAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
149                     std::list< SMESH_Gen::TAlgoStateError > & theErrors);
150   // notify on bad state of attached algos, return false
151   // if Compute() would fail because of some algo bad state
152   // theErrors list contains problems description
153
154   StudyContextStruct *GetStudyContext();
155
156   static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
157   static int GetShapeDim(const TopoDS_Shape &     aShape)
158   { return GetShapeDim( aShape.ShapeType() ); }
159   static int GetFlatShapeDim(const TopoDS_Shape &aShape);
160
161   SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, TopoDS_Shape* assignedTo=0);
162   SMESH_Algo* GetAlgo(SMESH_subMesh * aSubMesh, TopoDS_Shape* assignedTo=0);
163
164   static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh);
165
166   static std::vector< std::string > GetPluginXMLPaths();
167
168   int GetANewId();
169
170 private:
171
172
173   bool parallelComputeSubMeshes(
174           SMESH_Mesh & aMesh,
175           const TopoDS_Shape & aShape,
176           const ::MeshDimension       aDim,
177           TSetOfInt*                  aShapesId,
178           TopTools_IndexedMapOfShape* allowedSubShapes,
179           SMESH_subMesh::compute_event &computeEvent,
180           const bool includeSelf,
181           const bool complexShapeFirst,
182           const bool   aShapeOnly);
183
184   bool sequentialComputeSubMeshes(
185           SMESH_Mesh & aMesh,
186           const TopoDS_Shape & aShape,
187           const ::MeshDimension       aDim,
188           TSetOfInt*                  aShapesId /*=0*/,
189           TopTools_IndexedMapOfShape* allowedSubShapes,
190           SMESH_subMesh::compute_event &computeEvent,
191           const bool includeSelf,
192           const bool complexShapeFirst,
193           const bool aShapeOnly);
194   int _localId;                         // unique Id of created objects, within SMESH_Gen entity
195   StudyContextStruct* _studyContext;
196
197   // hypotheses managing
198   int _hypId;
199
200   // number of segments per diagonal of boundary box of geometry by which
201   // default segment length of appropriate 1D hypotheses is defined
202   int _segmentation;
203   // default number of segments
204   int _nbSegments;
205
206   void setCurrentSubMesh(SMESH_subMesh* sm);
207   void resetCurrentSubMesh();
208
209   volatile bool               _compute_canceled;
210   std::list< SMESH_subMesh* > _sm_current;
211 };
212
213 #endif