1 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : SMESH_Mesh_i.hxx
25 // Author : Paul RASCLE, EDF
29 #ifndef _SMESH_MESH_I_HXX_
30 #define _SMESH_MESH_I_HXX_
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36 #include CORBA_SERVER_HEADER(SMESH_Group)
37 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
38 #include CORBA_CLIENT_HEADER(GEOM_Gen)
39 #include CORBA_CLIENT_HEADER(MED)
41 #include "SMESH_Hypothesis.hxx"
42 #include "SMESH_Mesh.hxx"
43 //#include "SMESH_subMesh_i.hxx"
44 #include "SMESH_subMesh.hxx"
46 #include "SALOME_GenericObj_i.hh"
49 class SMESH_GroupBase_i;
50 class SMESH_subMesh_i;
54 class SMESH_I_EXPORT SMESH_Mesh_i:
55 public virtual POA_SMESH::SMESH_Mesh,
56 public virtual SALOME::GenericObj_i
59 SMESH_Mesh_i(const SMESH_Mesh_i&);
61 SMESH_Mesh_i( PortableServer::POA_ptr thePOA,
63 CORBA::Long studyId );
65 virtual ~SMESH_Mesh_i();
68 void SetShape( GEOM::GEOM_Object_ptr theShapeObject )
69 throw (SALOME::SALOME_Exception);
71 CORBA::Boolean HasShapeToMesh()
72 throw (SALOME::SALOME_Exception);
74 GEOM::GEOM_Object_ptr GetShapeToMesh()
75 throw (SALOME::SALOME_Exception);
78 throw (SALOME::SALOME_Exception);
80 SMESH::Hypothesis_Status AddHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
81 SMESH::SMESH_Hypothesis_ptr anHyp)
82 throw (SALOME::SALOME_Exception);
84 SMESH::Hypothesis_Status RemoveHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
85 SMESH::SMESH_Hypothesis_ptr anHyp)
86 throw (SALOME::SALOME_Exception);
88 SMESH::ListOfHypothesis* GetHypothesisList(GEOM::GEOM_Object_ptr aSubShapeObject)
89 throw (SALOME::SALOME_Exception);
91 SMESH::SMESH_subMesh_ptr GetSubMesh(GEOM::GEOM_Object_ptr aSubShapeObject, const char* theName)
92 throw (SALOME::SALOME_Exception);
94 void RemoveSubMesh( SMESH::SMESH_subMesh_ptr theSubMesh )
95 throw (SALOME::SALOME_Exception);
97 SMESH::SMESH_Group_ptr CreateGroup( SMESH::ElementType theElemType, const char* theName )
98 throw (SALOME::SALOME_Exception);
100 SMESH::SMESH_GroupOnGeom_ptr CreateGroupFromGEOM(SMESH::ElementType theElemType,
102 GEOM::GEOM_Object_ptr theGeomObj )
103 throw (SALOME::SALOME_Exception);
105 void RemoveGroup( SMESH::SMESH_GroupBase_ptr theGroup )
106 throw (SALOME::SALOME_Exception);
108 void RemoveGroupWithContents( SMESH::SMESH_GroupBase_ptr theGroup )
109 throw (SALOME::SALOME_Exception);
111 SMESH::ListOfGroups* GetGroups()
112 throw (SALOME::SALOME_Exception);
114 CORBA::Long NbGroups()
115 throw (SALOME::SALOME_Exception);
117 SMESH::SMESH_Group_ptr UnionGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
118 SMESH::SMESH_GroupBase_ptr theGroup2,
119 const char* theName )
120 throw (SALOME::SALOME_Exception);
122 SMESH::SMESH_Group_ptr IntersectGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
123 SMESH::SMESH_GroupBase_ptr theGroup2,
124 const char* theName )
125 throw (SALOME::SALOME_Exception);
127 SMESH::SMESH_Group_ptr CutGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
128 SMESH::SMESH_GroupBase_ptr theGroup2,
129 const char* theName )
130 throw (SALOME::SALOME_Exception);
132 // SMESH::string_array* GetLog(CORBA::Boolean clearAfterGet)
133 // throw (SALOME::SALOME_Exception);
135 SMESH::log_array* GetLog(CORBA::Boolean clearAfterGet)
136 throw (SALOME::SALOME_Exception);
138 SMESH::SMESH_MeshEditor_ptr GetMeshEditor();
140 SMESH::SMESH_MeshEditor_ptr GetMeshEditPreviewer();
143 throw (SALOME::SALOME_Exception);
146 throw (SALOME::SALOME_Exception);
148 CORBA::Long GetStudyId()
149 throw (SALOME::SALOME_Exception);
152 void SetImpl(::SMESH_Mesh* impl);
153 ::SMESH_Mesh& GetImpl(); // :: force no namespace here
155 SMESH_Gen_i* GetGen() { return _gen_i; }
157 int ImportUNVFile( const char* theFileName )
158 throw (SALOME::SALOME_Exception);
160 int ImportSTLFile( const char* theFileName )
161 throw (SALOME::SALOME_Exception);
164 * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
166 SMESH::DriverMED_ReadStatus ImportMEDFile( const char* theFileName, const char* theMeshName )
167 throw (SALOME::SALOME_Exception);
172 void SetAutoColor(CORBA::Boolean theAutoColor)
173 throw (SALOME::SALOME_Exception);
175 CORBA::Boolean GetAutoColor()
176 throw (SALOME::SALOME_Exception);
178 /*! Check group names for duplications.
179 * Consider maximum group name length stored in MED file.
181 CORBA::Boolean HasDuplicatedGroupNamesMED();
183 * Return string representation of a MED file version comprising nbDigits
185 char* GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
187 void ExportToMED( const char* file, CORBA::Boolean auto_groups, SMESH::MED_VERSION theVersion )
188 throw (SALOME::SALOME_Exception);
189 void ExportMED( const char* file, CORBA::Boolean auto_groups )
190 throw (SALOME::SALOME_Exception);
192 void ExportDAT( const char* file )
193 throw (SALOME::SALOME_Exception);
194 void ExportUNV( const char* file )
195 throw (SALOME::SALOME_Exception);
196 void ExportSTL( const char* file, bool isascii )
197 throw (SALOME::SALOME_Exception);
199 SALOME_MED::MESH_ptr GetMEDMesh()
200 throw (SALOME::SALOME_Exception);
202 CORBA::Long NbNodes()
203 throw (SALOME::SALOME_Exception);
205 CORBA::Long NbElements()
206 throw (SALOME::SALOME_Exception);
208 CORBA::Long NbEdges()
209 throw (SALOME::SALOME_Exception);
211 CORBA::Long NbEdgesOfOrder(SMESH::ElementOrder order)
212 throw (SALOME::SALOME_Exception);
214 CORBA::Long NbFaces()
215 throw (SALOME::SALOME_Exception);
217 CORBA::Long NbFacesOfOrder(SMESH::ElementOrder order)
218 throw (SALOME::SALOME_Exception);
220 CORBA::Long NbTriangles()
221 throw (SALOME::SALOME_Exception);
223 CORBA::Long NbTrianglesOfOrder(SMESH::ElementOrder order)
224 throw (SALOME::SALOME_Exception);
226 CORBA::Long NbQuadrangles()
227 throw (SALOME::SALOME_Exception);
229 CORBA::Long NbQuadranglesOfOrder(SMESH::ElementOrder order)
230 throw (SALOME::SALOME_Exception);
232 CORBA::Long NbPolygons()
233 throw (SALOME::SALOME_Exception);
235 CORBA::Long NbVolumes()
236 throw (SALOME::SALOME_Exception);
238 CORBA::Long NbVolumesOfOrder(SMESH::ElementOrder order)
239 throw (SALOME::SALOME_Exception);
241 CORBA::Long NbTetras()
242 throw (SALOME::SALOME_Exception);
244 CORBA::Long NbTetrasOfOrder(SMESH::ElementOrder order)
245 throw (SALOME::SALOME_Exception);
247 CORBA::Long NbHexas()
248 throw (SALOME::SALOME_Exception);
250 CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
251 throw (SALOME::SALOME_Exception);
253 CORBA::Long NbPyramids()
254 throw (SALOME::SALOME_Exception);
256 CORBA::Long NbPyramidsOfOrder(SMESH::ElementOrder order)
257 throw (SALOME::SALOME_Exception);
259 CORBA::Long NbPrisms()
260 throw (SALOME::SALOME_Exception);
262 CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
263 throw (SALOME::SALOME_Exception);
265 CORBA::Long NbPolyhedrons()
266 throw (SALOME::SALOME_Exception);
268 CORBA::Long NbSubMesh()
269 throw (SALOME::SALOME_Exception);
271 SMESH::long_array* GetElementsId()
272 throw (SALOME::SALOME_Exception);
274 SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
275 throw (SALOME::SALOME_Exception);
277 SMESH::long_array* GetNodesId()
278 throw (SALOME::SALOME_Exception);
280 SMESH::ElementType GetElementType( CORBA::Long id, bool iselem )
281 throw (SALOME::SALOME_Exception);
284 * Returns ID of elements for given submesh
286 SMESH::long_array* GetSubMeshElementsId(CORBA::Long ShapeID)
287 throw (SALOME::SALOME_Exception);
290 * Returns ID of nodes for given submesh
291 * If param all==true - returns all nodes, else -
292 * returns only nodes on shapes.
294 SMESH::long_array* GetSubMeshNodesId(CORBA::Long ShapeID, CORBA::Boolean all)
295 throw (SALOME::SALOME_Exception);
298 * Returns type of elements for given submesh
300 SMESH::ElementType GetSubMeshElementType(CORBA::Long ShapeID)
301 throw (SALOME::SALOME_Exception);
305 // Internal methods not available through CORBA
306 // They are called by corresponding interface methods
307 SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
308 SMESH::SMESH_Hypothesis_ptr anHyp);
310 SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
311 SMESH::SMESH_Hypothesis_ptr anHyp);
313 static SMESH::Hypothesis_Status
314 ConvertHypothesisStatus (SMESH_Hypothesis::Hypothesis_Status theStatus);
316 static void PrepareForWriting (const char* file);
318 //int importMEDFile( const char* theFileName, const char* theMeshName );
320 SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
322 void removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
323 GEOM::GEOM_Object_ptr theSubShapeObject );
325 SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType theElemType,
327 const TopoDS_Shape& theShape = TopoDS_Shape());
329 void removeGroup( const int theId );
331 SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
332 // return an existing subMesh object for the shapeID. shapeID == submeshID.
334 const std::map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
335 // return an existing group object.
338 * \brief Update hypotheses assigned to geom groups if the latter change
340 * NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
342 void CheckGeomGroupModif();
344 virtual SMESH::long_array* GetIDs();
346 CORBA::LongLong GetMeshPtr();
349 * \brief Assure that all groups are published
351 void CreateGroupServants();
354 * \brief Return groups cantained in _mapGroups by their IDs
356 SMESH::ListOfGroups* GetGroups(const std::list<int>& groupIDs) const;
359 * Get XYZ coordinates of node as list of double
360 * If there is not node for given ID - returns empty list
362 SMESH::double_array* GetNodeXYZ(CORBA::Long id);
365 * For given node returns list of IDs of inverse elements
366 * If there is not node for given ID - returns empty list
368 SMESH::long_array* GetNodeInverseElements(CORBA::Long id);
371 * \brief Return position of a node on shape
373 SMESH::NodePosition* GetNodePosition(CORBA::Long NodeID);
376 * If given element is node returns IDs of shape from position
377 * If there is not node for given ID - returns -1
379 CORBA::Long GetShapeID(CORBA::Long id);
382 * For given element returns ID of result shape after
383 * ::FindShape() from SMESH_MeshEditor
384 * If there is not element for given ID - returns -1
386 CORBA::Long GetShapeIDForElem(CORBA::Long id);
389 * Returns number of nodes for given element
390 * If there is not element for given ID - returns -1
392 CORBA::Long GetElemNbNodes(CORBA::Long id);
395 * Returns IDs of nodes of given element
397 SMESH::long_array* GetElemNodes(CORBA::Long id);
400 * Returns ID of node by given index for given element
401 * If there is not element for given ID - returns -1
402 * If there is not node for given index - returns -2
404 CORBA::Long GetElemNode(CORBA::Long id, CORBA::Long index);
407 * Returns true if given node is medium node
408 * in given quadratic element
410 CORBA::Boolean IsMediumNode(CORBA::Long ide, CORBA::Long idn);
413 * Returns true if given node is medium node
414 * in one of quadratic elements
416 CORBA::Boolean IsMediumNodeOfAnyElem(CORBA::Long idn,
417 SMESH::ElementType theElemType);
420 * Returns number of edges for given element
422 CORBA::Long ElemNbEdges(CORBA::Long id);
425 * Returns number of faces for given element
427 CORBA::Long ElemNbFaces(CORBA::Long id);
430 * Returns true if given element is polygon
432 CORBA::Boolean IsPoly(CORBA::Long id);
435 * Returns true if given element is quadratic
437 CORBA::Boolean IsQuadratic(CORBA::Long id);
440 * Returns bary center for given element
442 SMESH::double_array* BaryCenter(CORBA::Long id);
445 * Returns information about imported MED file
447 virtual SALOME_MED::MedFileInfo* GetMEDFileInfo();
449 std::map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
450 std::map<int, ::SMESH_subMesh*> _mapSubMesh; //NRI
454 static int myIdGenerator;
455 ::SMESH_Mesh* _impl; // :: force no namespace here
457 int _id; // id given by creator (unique within the creator instance)
459 std::map<int, SMESH::SMESH_subMesh_ptr> _mapSubMeshIor;
460 std::map<int, SMESH::SMESH_GroupBase_ptr> _mapGroups;
461 std::map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
462 SALOME_MED::MedFileInfo_var myFileInfo;