Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/smesh.git] / src / SMESH_I / SMESH_Mesh_i.hxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_Mesh_i.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_MESH_I_HXX_
30 #define _SMESH_MESH_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
34 #include CORBA_SERVER_HEADER(SMESH_Group)
35 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
36 #include CORBA_CLIENT_HEADER(GEOM_Gen)
37 #include CORBA_CLIENT_HEADER(MED)
38
39 #include "SMESH_Hypothesis.hxx"
40 #include "SMESH_Mesh.hxx"
41 #include "SMESH_subMesh_i.hxx"
42 #include "SMESH_subMesh.hxx"
43
44 #include "SALOME_GenericObj_i.hh"
45
46 class SMESH_Gen_i;
47 class SMESH_GroupBase_i;
48
49 #include <map>
50
51 class SMESH_Mesh_i:
52   public virtual POA_SMESH::SMESH_Mesh,
53   public virtual SALOME::GenericObj_i
54 {
55   SMESH_Mesh_i();
56   SMESH_Mesh_i(const SMESH_Mesh_i&);
57 public:
58   SMESH_Mesh_i( PortableServer::POA_ptr thePOA,
59                 SMESH_Gen_i*            myGen_i,
60                 CORBA::Long             studyId );
61
62   virtual ~SMESH_Mesh_i();
63
64   // --- CORBA
65   void SetShape( GEOM::GEOM_Object_ptr theShapeObject )
66     throw (SALOME::SALOME_Exception);
67
68   GEOM::GEOM_Object_ptr GetShapeToMesh()
69     throw (SALOME::SALOME_Exception);
70
71   SMESH::Hypothesis_Status AddHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
72                                          SMESH::SMESH_Hypothesis_ptr anHyp)
73     throw (SALOME::SALOME_Exception);
74
75   SMESH::Hypothesis_Status RemoveHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
76                                             SMESH::SMESH_Hypothesis_ptr anHyp)
77     throw (SALOME::SALOME_Exception);
78
79   SMESH::ListOfHypothesis* GetHypothesisList(GEOM::GEOM_Object_ptr aSubShapeObject)
80     throw (SALOME::SALOME_Exception);
81
82   SMESH::SMESH_subMesh_ptr GetSubMesh(GEOM::GEOM_Object_ptr aSubShapeObject, const char* theName)
83     throw (SALOME::SALOME_Exception);
84
85   void RemoveSubMesh( SMESH::SMESH_subMesh_ptr theSubMesh )
86     throw (SALOME::SALOME_Exception);
87
88   SMESH::SMESH_Group_ptr CreateGroup( SMESH::ElementType theElemType, const char* theName )
89     throw (SALOME::SALOME_Exception);
90   
91   SMESH::SMESH_GroupOnGeom_ptr CreateGroupFromGEOM(SMESH::ElementType    theElemType,
92                                                    const char*           theName,
93                                                    GEOM::GEOM_Object_ptr theGeomObj )
94     throw (SALOME::SALOME_Exception);
95
96   void RemoveGroup( SMESH::SMESH_GroupBase_ptr theGroup )
97     throw (SALOME::SALOME_Exception);
98   
99   void RemoveGroupWithContents( SMESH::SMESH_GroupBase_ptr theGroup )
100     throw (SALOME::SALOME_Exception);
101   
102   SMESH::SMESH_Group_ptr UnionGroups( SMESH::SMESH_GroupBase_ptr theGroup1, 
103                                       SMESH::SMESH_GroupBase_ptr theGroup2, 
104                                       const char* theName )
105     throw (SALOME::SALOME_Exception);
106   
107   SMESH::SMESH_Group_ptr IntersectGroups( SMESH::SMESH_GroupBase_ptr theGroup1, 
108                                           SMESH::SMESH_GroupBase_ptr theGroup2, 
109                                           const char* theName )
110     throw (SALOME::SALOME_Exception);
111   
112   SMESH::SMESH_Group_ptr CutGroups( SMESH::SMESH_GroupBase_ptr theGroup1, 
113                                     SMESH::SMESH_GroupBase_ptr theGroup2, 
114                                    const char* theName )
115     throw (SALOME::SALOME_Exception);
116
117 //    SMESH::string_array* GetLog(CORBA::Boolean clearAfterGet)
118 //      throw (SALOME::SALOME_Exception);
119
120   SMESH::log_array* GetLog(CORBA::Boolean clearAfterGet)
121     throw (SALOME::SALOME_Exception);
122
123   SMESH::SMESH_MeshEditor_ptr GetMeshEditor();
124
125   void ClearLog()
126     throw (SALOME::SALOME_Exception);
127
128   CORBA::Long GetId()
129     throw (SALOME::SALOME_Exception);
130
131   CORBA::Long GetStudyId()
132     throw (SALOME::SALOME_Exception);
133
134   // --- C++ interface
135   void SetImpl(::SMESH_Mesh* impl);
136   ::SMESH_Mesh& GetImpl();         // :: force no namespace here
137
138   SMESH_Gen_i* GetGen() { return _gen_i; }
139
140   int ImportUNVFile( const char* theFileName )
141     throw (SALOME::SALOME_Exception);
142
143   int ImportSTLFile( const char* theFileName )
144     throw (SALOME::SALOME_Exception);
145
146   /*!
147    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
148    */
149   SMESH::DriverMED_ReadStatus ImportMEDFile( const char* theFileName, const char* theMeshName )
150     throw (SALOME::SALOME_Exception);
151
152   /*! Check group names for duplications.
153    *  Consider maximum group name length stored in MED file.
154    */
155   CORBA::Boolean HasDuplicatedGroupNamesMED();
156
157   void ExportToMED( const char* file, CORBA::Boolean auto_groups, SMESH::MED_VERSION theVersion )
158     throw (SALOME::SALOME_Exception);
159   void ExportMED( const char* file, CORBA::Boolean auto_groups )
160     throw (SALOME::SALOME_Exception);
161
162   void ExportDAT( const char* file )
163     throw (SALOME::SALOME_Exception);
164   void ExportUNV( const char* file )
165     throw (SALOME::SALOME_Exception);
166   void ExportSTL( const char* file, const bool isascii )
167     throw (SALOME::SALOME_Exception);
168
169   SALOME_MED::MESH_ptr GetMEDMesh()
170     throw (SALOME::SALOME_Exception);
171
172   CORBA::Long NbNodes()
173     throw (SALOME::SALOME_Exception);
174
175   CORBA::Long NbElements()
176     throw (SALOME::SALOME_Exception);
177
178   CORBA::Long NbEdges()
179     throw (SALOME::SALOME_Exception);
180
181   CORBA::Long NbFaces()
182     throw (SALOME::SALOME_Exception);
183
184   CORBA::Long NbTriangles()
185     throw (SALOME::SALOME_Exception);
186
187   CORBA::Long NbQuadrangles()
188     throw (SALOME::SALOME_Exception);
189
190   CORBA::Long NbPolygons()
191     throw (SALOME::SALOME_Exception);
192
193   CORBA::Long NbVolumes()
194     throw (SALOME::SALOME_Exception);
195
196   CORBA::Long NbTetras()
197     throw (SALOME::SALOME_Exception);
198
199   CORBA::Long NbHexas()
200     throw (SALOME::SALOME_Exception);
201
202   CORBA::Long NbPyramids()
203     throw (SALOME::SALOME_Exception);
204
205   CORBA::Long NbPrisms()
206     throw (SALOME::SALOME_Exception);
207
208   CORBA::Long NbPolyhedrons()
209     throw (SALOME::SALOME_Exception);
210
211   CORBA::Long NbSubMesh()
212     throw (SALOME::SALOME_Exception);
213
214   SMESH::long_array* GetElementsId()
215     throw (SALOME::SALOME_Exception);
216
217   SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
218     throw (SALOME::SALOME_Exception);
219   
220   SMESH::long_array* GetNodesId()
221     throw (SALOME::SALOME_Exception);
222   
223   SMESH::ElementType GetElementType( const CORBA::Long id, const bool iselem )
224     throw (SALOME::SALOME_Exception);
225   
226   char* Dump();
227   
228   // Internal methods not available through CORBA
229   // They are called by corresponding interface methods
230   SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
231                                                     SMESH::SMESH_Hypothesis_ptr anHyp);
232
233   SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
234                                                        SMESH::SMESH_Hypothesis_ptr anHyp);
235   
236   int importMEDFile( const char* theFileName, const char* theMeshName );
237
238   SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
239
240   void removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
241                      GEOM::GEOM_Object_ptr theSubShapeObject );
242
243   SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType  theElemType,
244                                          const char*         theName,
245                                          const TopoDS_Shape& theShape = TopoDS_Shape());
246
247   void removeGroup( const int theId );
248
249   SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
250   // return an existing subMesh object for the shapeID. shapeID == submeshID.
251
252   const map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
253   // return an existing group object.
254
255   virtual SMESH::long_array* GetIDs();
256
257   CORBA::Long GetMeshPtr();
258
259   map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
260   map<int, ::SMESH_subMesh*> _mapSubMesh;   //NRI
261
262 private:
263   static int myIdGenerator;
264   ::SMESH_Mesh* _impl;  // :: force no namespace here
265   SMESH_Gen_i* _gen_i;
266   int _id;          // id given by creator (unique within the creator instance)
267   int _studyId;
268   map<int, SMESH::SMESH_subMesh_ptr>    _mapSubMeshIor;
269   map<int, SMESH::SMESH_GroupBase_ptr>  _mapGroups;
270   map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
271 };
272
273 #endif
274