Salome HOME
PR: merged from V5_1_4rc1
[modules/smesh.git] / src / SMESH / SMESH_Mesh.hxx
1 //  Copyright (C) 2007-2010  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.
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 : implementaion of SMESH idl descriptions
24 //  File   : SMESH_Mesh.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //
28 #ifndef _SMESH_MESH_HXX_
29 #define _SMESH_MESH_HXX_
30
31 #include "SMESH_SMESH.hxx"
32
33 #include "SMESH_Hypothesis.hxx"
34
35 #include "SMESHDS_Mesh.hxx"
36 #include "SMESHDS_Command.hxx"
37 #include "SMDSAbs_ElementType.hxx"
38
39 #include "Utils_SALOME_Exception.hxx"
40
41 #include <TopoDS_Shape.hxx>
42 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
43
44 #include <map>
45 #include <list>
46
47 #ifdef WNT
48 #pragma warning(disable:4251) // Warning DLL Interface ...
49 #pragma warning(disable:4290) // Warning Exception ...
50 #endif
51
52 class SMESH_Gen;
53 class SMESHDS_Document;
54 class SMESH_Group;
55 class TopTools_ListOfShape;
56 class SMESH_subMesh;
57 class SMESH_HypoFilter;
58 class TopoDS_Solid;
59
60 typedef std::list<int> TListOfInt;
61 typedef std::list<TListOfInt> TListOfListOfInt;
62
63 class SMESH_EXPORT SMESH_Mesh
64 {
65 public:
66   SMESH_Mesh(int               theLocalId, 
67              int               theStudyId, 
68              SMESH_Gen*        theGen,
69              bool              theIsEmbeddedMode,
70              SMESHDS_Document* theDocument);
71   
72   virtual ~SMESH_Mesh();
73   
74   /*!
75    * \brief Set geometry to be meshed
76    */
77   void ShapeToMesh(const TopoDS_Shape & aShape);
78   /*!
79    * \brief Return geometry to be meshed. (It may be a PseudoShape()!)
80    */
81   TopoDS_Shape GetShapeToMesh() const;
82   /*!
83    * \brief Return true if there is a geometry to be meshed, not PseudoShape()
84    */
85   bool HasShapeToMesh() const { return _isShapeToMesh; }
86   /*!
87    * \brief Return diagonal size of bounding box of shape to mesh.
88    */
89   double GetShapeDiagonalSize() const;
90   /*!
91    * \brief Return diagonal size of bounding box of a shape.
92    */
93   static double GetShapeDiagonalSize(const TopoDS_Shape & aShape);
94   /*!
95    * \brief Return a solid which is returned by GetShapeToMesh() if
96    *        a real geometry to be meshed was not set
97    */
98   static const TopoDS_Solid& PseudoShape();
99
100   /*!
101    * \brief Remove all nodes and elements
102    */
103   void Clear();
104
105   /*!
106    * \brief Remove all nodes and elements of indicated shape
107    */
108   void ClearSubMesh(const int theShapeId);
109
110   int UNVToMesh(const char* theFileName);
111   /*!
112    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
113    */
114   int MEDToMesh(const char* theFileName, const char* theMeshName);
115   
116   int STLToMesh(const char* theFileName);
117
118   SMESH_Hypothesis::Hypothesis_Status
119   AddHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
120     throw(SALOME_Exception);
121   
122   SMESH_Hypothesis::Hypothesis_Status
123   RemoveHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
124     throw(SALOME_Exception);
125   
126   const std::list <const SMESHDS_Hypothesis * >&
127   GetHypothesisList(const TopoDS_Shape & aSubShape) const
128     throw(SALOME_Exception);
129
130   const SMESH_Hypothesis * GetHypothesis(const TopoDS_Shape &    aSubShape,
131                                          const SMESH_HypoFilter& aFilter,
132                                          const bool              andAncestors,
133                                          TopoDS_Shape*           assignedTo=0) const;
134   
135   int GetHypotheses(const TopoDS_Shape &                     aSubShape,
136                     const SMESH_HypoFilter&                  aFilter,
137                     std::list <const SMESHDS_Hypothesis * >& aHypList,
138                     const bool                               andAncestors) const;
139
140   const std::list<SMESHDS_Command*> & GetLog() throw(SALOME_Exception);
141   
142   void ClearLog() throw(SALOME_Exception);
143   
144   int GetId()                { return _id; }
145   
146   SMESHDS_Mesh * GetMeshDS() { return _myMeshDS; }
147   
148   SMESH_Gen *GetGen()        { return _gen; }
149   
150   SMESH_subMesh *GetSubMesh(const TopoDS_Shape & aSubShape)
151     throw(SALOME_Exception);
152   
153   SMESH_subMesh *GetSubMeshContaining(const TopoDS_Shape & aSubShape) const
154     throw(SALOME_Exception);
155   
156   SMESH_subMesh *GetSubMeshContaining(const int aShapeID) const
157     throw(SALOME_Exception);
158   /*!
159    * \brief Return submeshes of groups containing the given subshape
160    */
161   std::list<SMESH_subMesh*> GetGroupSubMeshesContaining(const TopoDS_Shape & shape) const
162     throw(SALOME_Exception);
163   /*!
164    * \brief Say all submeshes that theChangedHyp has been modified
165    */
166   void NotifySubMeshesHypothesisModification(const SMESH_Hypothesis* theChangedHyp);
167
168   const std::list < SMESH_subMesh * >&
169   GetSubMeshUsingHypothesis(SMESHDS_Hypothesis * anHyp) throw(SALOME_Exception);
170   /*!
171    * \brief Return True if anHyp is used to mesh aSubShape
172    */
173   bool IsUsedHypothesis(SMESHDS_Hypothesis *  anHyp,
174                         const SMESH_subMesh * aSubMesh);
175   /*!
176    * \brief check if a hypothesis alowing notconform mesh is present
177    */
178   bool IsNotConformAllowed() const;
179   
180   bool IsMainShape(const TopoDS_Shape& theShape) const;
181   /*!
182    * \brief Return list of ancestors of theSubShape in the order
183    *        that lower dimention shapes come first
184    */
185   const TopTools_ListOfShape& GetAncestors(const TopoDS_Shape& theSubShape) const;
186
187   void SetAutoColor(bool theAutoColor) throw(SALOME_Exception);
188
189   bool GetAutoColor() throw(SALOME_Exception);
190
191   /*!
192    * \brief Return data map of descendant to ancestor shapes
193    */
194   typedef TopTools_IndexedDataMapOfShapeListOfShape TAncestorMap;
195   const TAncestorMap& GetAncestorMap() const { return _mapAncestors; }
196   /*!
197    * \brief Check group names for duplications.
198    *  Consider maximum group name length stored in MED file
199    */
200   bool HasDuplicatedGroupNamesMED();
201
202   void ExportMED(const char *file, 
203                  const char* theMeshName = NULL, 
204                  bool theAutoGroups = true, 
205                  int theVersion = 0) 
206     throw(SALOME_Exception);
207
208   void ExportDAT(const char *file) throw(SALOME_Exception);
209   void ExportUNV(const char *file) throw(SALOME_Exception);
210   void ExportSTL(const char *file, const bool isascii) throw(SALOME_Exception);
211   
212   int NbNodes() throw(SALOME_Exception);
213   
214   int Nb0DElements() throw(SALOME_Exception);
215   
216   int NbEdges(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
217   
218   int NbFaces(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
219   
220   int NbTriangles(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
221   
222   int NbQuadrangles(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
223
224   int NbPolygons() throw(SALOME_Exception);
225   
226   int NbVolumes(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
227   
228   int NbTetras(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
229   
230   int NbHexas(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
231   
232   int NbPyramids(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
233
234   int NbPrisms(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
235   
236   int NbPolyhedrons() throw(SALOME_Exception);
237   
238   int NbSubMesh() throw(SALOME_Exception);
239   
240   int NbGroup() const { return _mapGroup.size(); }
241   
242   SMESH_Group* AddGroup (const SMDSAbs_ElementType theType,
243                          const char*               theName,
244                          int&                      theId,
245                          const TopoDS_Shape&       theShape=TopoDS_Shape());
246   
247   typedef boost::shared_ptr< SMDS_Iterator<SMESH_Group*> > GroupIteratorPtr;
248   GroupIteratorPtr GetGroups() const;
249   
250   std::list<int> GetGroupIds() const;
251   
252   SMESH_Group* GetGroup (const int theGroupID);
253
254   void RemoveGroup (const int theGroupID);
255
256   SMESH_Group* ConvertToStandalone ( int theGroupID );
257
258   SMDSAbs_ElementType GetElementType( const int id, const bool iselem );
259
260   void ClearMeshOrder();
261   void SetMeshOrder(const TListOfListOfInt& theOrder );
262   const TListOfListOfInt& GetMeshOrder() const;
263
264   /*!
265    * \brief sort submeshes according to stored mesh order
266    * \param theListToSort in out list to be sorted
267    * \return FALSE if nothing sorted
268    */
269   bool SortByMeshOrder(std::list<SMESH_subMesh*>& theListToSort) const;
270
271   //
272   
273   ostream& Dump(ostream & save);
274   
275 private:
276
277   void fillAncestorsMap(const TopoDS_Shape& theShape);
278   std::list<SMESH_subMesh*> getAncestorsSubMeshes
279     (const TopoDS_Shape& theSubShape) const;
280   
281 protected:
282   int                        _id;           // id given by creator (unique within the creator instance)
283   int                        _studyId;
284   int                        _idDoc;        // id given by SMESHDS_Document
285   int                        _groupId;      // id generator for group objects
286   int                        _nbSubShapes;  // initial nb of subshapes in the shape to mesh
287   bool                       _isShapeToMesh;// set to true when a shape is given (only once)
288   std::list <SMESH_subMesh*> _subMeshesUsingHypothesisList;
289   SMESHDS_Document *         _myDocument;
290   SMESHDS_Mesh *             _myMeshDS;
291   std::map <int, SMESH_subMesh*> _mapSubMesh;
292   std::map <int, SMESH_Group*>   _mapGroup;
293   SMESH_Gen *                _gen;
294   
295   bool                       _isAutoColor;
296
297   double                     _shapeDiagonal; //!< diagonal size of bounding box of shape to mesh
298   
299   TopTools_IndexedDataMapOfShapeListOfShape _mapAncestors;
300
301   TListOfListOfInt           _mySubMeshOrder;
302
303 protected:
304   SMESH_Mesh() {};
305   SMESH_Mesh(const SMESH_Mesh&) {};
306 };
307
308 #endif