Salome HOME
PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
[modules/smesh.git] / src / SMESH / SMESH_Mesh.hxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  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. 
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 //  File   : SMESH_Mesh.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_MESH_HXX_
30 #define _SMESH_MESH_HXX_
31
32 #include "SMESH_Hypothesis.hxx"
33 //#include "SMESH_subMesh.hxx"
34
35 #include "SMESHDS_Document.hxx"
36 #include "SMESHDS_Mesh.hxx"
37 #include "SMESHDS_Command.hxx"
38 #include "SMDSAbs_ElementType.hxx"
39
40 //#include "NMTTools_IndexedDataMapOfShapeIndexedMapOfShape.hxx"
41 #include "SMESH_IndexedDataMapOfShapeIndexedMapOfShape.hxx"
42
43 #include "Utils_SALOME_Exception.hxx"
44
45 #include <TopExp.hxx>
46 #include <TopExp_Explorer.hxx>
47 #include <TopoDS.hxx>
48 #include <TopoDS_Iterator.hxx>
49 #include <TopoDS_Compound.hxx>
50 #include <TopoDS_CompSolid.hxx>
51 #include <TopoDS_Solid.hxx>
52 #include <TopoDS_Shell.hxx>
53 #include <TopoDS_Face.hxx>
54 #include <TopoDS_Wire.hxx>
55 #include <TopoDS_Edge.hxx>
56 #include <TopoDS_Vertex.hxx>
57 #include <TopoDS_Shape.hxx>
58 #include <TopTools_IndexedMapOfShape.hxx>
59 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
60
61 #include <vector>
62 #include <list>
63 #include <map>
64
65 #include <string>
66 #include <iostream>
67
68 class SMESH_Gen;
69 class SMESH_Group;
70 class TopTools_ListOfShape;
71 class SMESH_subMesh;
72 class SMESH_HypoFilter;
73 class TopoDS_Solid;
74
75 typedef SMESH_IndexedDataMapOfShapeIndexedMapOfShape IndexedMapOfChain;
76
77 class SMESH_Mesh
78 {
79 public:
80   SMESH_Mesh(int               theLocalId, 
81              int               theStudyId, 
82              SMESH_Gen*        theGen,
83              bool              theIsEmbeddedMode,
84              SMESHDS_Document* theDocument);
85   
86   virtual ~SMESH_Mesh();
87   
88   /*!
89    * \brief Set geometry to be meshed
90    */
91   void ShapeToMesh(const TopoDS_Shape & aShape);
92   /*!
93    * \brief Return geometry to be meshed. (It may be a PseudoShape()!)
94    */
95   TopoDS_Shape GetShapeToMesh() const;
96   /*!
97    * \brief Return true if there is a geometry to be meshed, not PseudoShape()
98    */
99   bool HasShapeToMesh() const { return _isShapeToMesh; }
100   /*!
101    * \brief Return a solid which is returned by GetShapeToMesh() if
102    *        a real geometry to be meshed was not set
103    */
104   static const TopoDS_Solid& PseudoShape();
105
106
107   int UNVToMesh(const char* theFileName);
108   /*!
109    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
110    */
111   int MEDToMesh(const char* theFileName, const char* theMeshName);
112   
113   int STLToMesh(const char* theFileName);
114
115   SMESH_Hypothesis::Hypothesis_Status
116   AddHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
117     throw(SALOME_Exception);
118   
119   SMESH_Hypothesis::Hypothesis_Status
120   RemoveHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
121     throw(SALOME_Exception);
122   
123   const list <const SMESHDS_Hypothesis * >&
124   GetHypothesisList(const TopoDS_Shape & aSubShape) const
125     throw(SALOME_Exception);
126
127   const SMESH_Hypothesis * GetHypothesis(const TopoDS_Shape &    aSubShape,
128                                          const SMESH_HypoFilter& aFilter,
129                                          const bool              andAncestors) const;
130   
131   int GetHypotheses(const TopoDS_Shape &                aSubShape,
132                     const SMESH_HypoFilter&             aFilter,
133                     list <const SMESHDS_Hypothesis * >& aHypList,
134                     const bool                          andAncestors) const;
135
136   const list<SMESHDS_Command*> & GetLog() throw(SALOME_Exception);
137   
138   void ClearLog() throw(SALOME_Exception);
139   
140   int GetId()                { return _id; }
141   
142   SMESHDS_Mesh * GetMeshDS() { return _myMeshDS; }
143   
144   SMESH_Gen *GetGen()        { return _gen; }
145   
146   SMESH_subMesh *GetSubMesh(const TopoDS_Shape & aSubShape)
147     throw(SALOME_Exception);
148   
149   SMESH_subMesh *GetSubMeshContaining(const TopoDS_Shape & aSubShape)
150     throw(SALOME_Exception);
151   
152   SMESH_subMesh *GetSubMeshContaining(const int aShapeID)
153     throw(SALOME_Exception);
154   
155   void NotifySubMeshesHypothesisModification(const SMESH_Hypothesis* theChangedHyp);
156   // Say all submeshes that theChangedHyp has been modified
157
158   const list < SMESH_subMesh * >&
159   GetSubMeshUsingHypothesis(SMESHDS_Hypothesis * anHyp)
160     throw(SALOME_Exception);
161   
162   bool IsUsedHypothesis(SMESHDS_Hypothesis *  anHyp,
163                         const SMESH_subMesh * aSubMesh);
164   // Return True if anHyp is used to mesh aSubShape
165   
166   bool IsNotConformAllowed() const;
167   // check if a hypothesis alowing notconform mesh is present
168   
169   bool IsMainShape(const TopoDS_Shape& theShape) const;
170
171   const TopTools_ListOfShape& GetAncestors(const TopoDS_Shape& theSubShape) const;
172   // return list of ancestors of theSubShape in the order
173   // that lower dimention shapes come first.
174
175   /*! Check group names for duplications.
176    *  Consider maximum group name length stored in MED file.
177    */
178   bool HasDuplicatedGroupNamesMED();
179
180   void ExportMED(const char *file, 
181                  const char* theMeshName = NULL, 
182                  bool theAutoGroups = true, 
183                  int theVersion = 0) 
184     throw(SALOME_Exception);
185
186   void ExportDAT(const char *file) throw(SALOME_Exception);
187   void ExportUNV(const char *file) throw(SALOME_Exception);
188   void ExportSTL(const char *file, const bool isascii) throw(SALOME_Exception);
189   
190   int NbNodes() throw(SALOME_Exception);
191   
192   /*!
193    * ElementOrder points out entities of what order are requested
194    */
195   enum ElementOrder {
196     ORDER_ANY,          /*! entities of any order */
197     ORDER_LINEAR,       /*! entities of 1st order */
198     ORDER_QUADRATIC     /*! entities of 2nd order */
199   };
200
201   int NbEdges(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
202   
203   int NbFaces(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
204   
205   int NbTriangles(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
206   
207   int NbQuadrangles(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
208
209   int NbPolygons() throw(SALOME_Exception);
210   
211   int NbVolumes(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
212   
213   int NbTetras(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
214   
215   int NbHexas(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
216   
217   int NbPyramids(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
218
219   int NbPrisms(ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
220   
221   int NbPolyhedrons() throw(SALOME_Exception);
222   
223   int NbSubMesh() throw(SALOME_Exception);
224   
225   int NbGroup() const { return _mapGroup.size(); }
226   
227   SMESH_Group* AddGroup (const SMDSAbs_ElementType theType,
228                          const char*               theName,
229                          int&                      theId,
230                          const TopoDS_Shape&       theShape=TopoDS_Shape());
231   
232   SMESH_Group* GetGroup (const int theGroupID);
233   
234   list<int> GetGroupIds();
235   
236   void RemoveGroup (const int theGroupID);
237
238  
239   SMDSAbs_ElementType GetElementType( const int id, const bool iselem );
240
241   //
242   
243   ostream& Dump(ostream & save);
244   
245 private:
246   
247 protected:
248   int                        _id;           // id given by creator (unique within the creator instance)
249   int                        _studyId;
250   int                        _idDoc;        // id given by SMESHDS_Document
251   int                        _groupId;      // id generator for group objects
252   bool                       _isShapeToMesh;// set to true when a shape is given (only once)
253   list <SMESH_subMesh *>     _subMeshesUsingHypothesisList;
254   SMESHDS_Document *         _myDocument;
255   SMESHDS_Mesh *             _myMeshDS;
256   map <int, SMESH_subMesh *> _mapSubMesh;
257   map <int, SMESH_Group *>   _mapGroup;
258   SMESH_Gen *                _gen;
259   
260   TopTools_IndexedDataMapOfShapeListOfShape _mapAncestors;
261
262 protected:
263   SMESH_Mesh() {};
264   SMESH_Mesh(const SMESH_Mesh&) {};
265 };
266
267 #endif