Salome HOME
correct a small bug found by the EDF developpement team (PN and AT) :
[modules/smesh.git] / src / SMESH_I / SMESH_MEDMesh_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_MEDMesh_i.hxx
25 //  Module : SMESH
26
27 #ifndef _MED_SMESH_MESH_I_HXX_
28 #define _MED_SMESH_MESH_I_HXX_
29
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(MED)
32 #include <string>
33 #include <vector>
34 #include <map>
35
36 #include "SMESHDS_Mesh.hxx"
37
38 #include "SMDS_MeshElement.hxx"
39 #include "SMDS_MeshNode.hxx"
40
41 #define MED_NBR_GEOMETRIE_MAILLE 15
42 #define MED_NBR_TYPE 5
43
44 class SMESH_Mesh_i;
45
46 class SMESH_MEDMesh_i:
47         public POA_SALOME_MED::MESH, public PortableServer::RefCountServantBase
48 {
49   public: private: protected:
50         // C++ object containing values
51         ::SMESH_Mesh_i * _mesh_i;
52         SMESHDS_Mesh *_meshDS;
53
54         string _meshId;
55         bool _compte;
56         bool _creeFamily;
57         int _indexElts;
58         int _indexEnts;
59         int _famIdent;
60
61         map < SALOME_MED::medGeometryElement, int >_mapIndToSeqElts;
62         SALOME_MED::long_array_var _seq_elemId[MED_NBR_GEOMETRIE_MAILLE];
63
64         map < SALOME_MED::medEntityMesh, int >_mapNbTypes;
65         map < SALOME_MED::medEntityMesh, int >_mapIndToVectTypes;
66         vector < SALOME_MED::medGeometryElement >
67                 _TypesId[MED_NBR_GEOMETRIE_MAILLE];
68
69         vector < SALOME_MED::FAMILY_ptr > _families;
70   public:
71
72         // Constructors and associated internal methods
73         SMESH_MEDMesh_i();
74         SMESH_MEDMesh_i(SMESH_Mesh_i * m);
75         ~SMESH_MEDMesh_i();
76
77         // IDL Methods 
78         char *getName() throw(SALOME::SALOME_Exception);
79         CORBA::Long getSpaceDimension() throw(SALOME::SALOME_Exception);
80
81         CORBA::Long getMeshDimension() throw(SALOME::SALOME_Exception);
82
83         CORBA::Boolean  getIsAGrid() throw (SALOME::SALOME_Exception);
84
85         CORBA::Boolean
86         existConnectivity(SALOME_MED::medConnectivity connectivityType,
87                           SALOME_MED::medEntityMesh entity)
88           throw (SALOME::SALOME_Exception);
89
90         char *getCoordinatesSystem() throw(SALOME::SALOME_Exception);
91
92         CORBA::Double getCoordinate(CORBA::Long Number, CORBA::Long Axis)
93           throw (SALOME::SALOME_Exception);
94
95         SALOME_MED::double_array * getCoordinates(SALOME_MED::medModeSwitch typeSwitch)
96                 throw(SALOME::SALOME_Exception);
97
98         SALOME_MED::string_array * getCoordinatesNames()
99                 throw(SALOME::SALOME_Exception);
100
101         SALOME_MED::string_array * getCoordinatesUnits()
102           throw(SALOME::SALOME_Exception);
103
104         CORBA::Long getNumberOfNodes() throw(SALOME::SALOME_Exception);
105
106         CORBA::Long getNumberOfTypes(SALOME_MED::medEntityMesh entity)
107                 throw(SALOME::SALOME_Exception);
108
109         SALOME_MED::medGeometryElement_array *
110                 getTypes(SALOME_MED::medEntityMesh entity) throw(SALOME::
111                 SALOME_Exception);
112
113         SALOME_MED::medGeometryElement
114         getElementType(SALOME_MED::medEntityMesh entity,
115                        CORBA::Long number)
116           throw   (SALOME::SALOME_Exception);
117
118         CORBA::Long getNumberOfElements(SALOME_MED::medEntityMesh entity,
119                 SALOME_MED::medGeometryElement geomElement)
120                 throw(SALOME::SALOME_Exception);
121
122         SALOME_MED::long_array *
123         getConnectivity(SALOME_MED::medModeSwitch typeSwitch,
124                         SALOME_MED::medConnectivity mode,
125                         SALOME_MED::medEntityMesh entity,
126                         SALOME_MED::medGeometryElement geomElement)
127           throw(SALOME::SALOME_Exception);
128
129         SALOME_MED::long_array *
130         getConnectivityIndex(SALOME_MED::medConnectivity mode,
131                              SALOME_MED::medEntityMesh entity)
132           throw(SALOME::SALOME_Exception);
133
134         SALOME_MED::long_array*
135         getGlobalNumberingIndex(SALOME_MED::medEntityMesh entity)
136           throw (SALOME::SALOME_Exception);
137
138         CORBA::Long getElementNumber(SALOME_MED::medConnectivity mode,
139                 SALOME_MED::medEntityMesh entity,
140                 SALOME_MED::medGeometryElement type,
141                 const SALOME_MED::long_array & connectivity)
142                 throw(SALOME::SALOME_Exception);
143
144         SALOME_MED::long_array *
145                 getReverseConnectivity(SALOME_MED::medConnectivity mode)
146           throw(SALOME::SALOME_Exception);
147
148         SALOME_MED::long_array *
149                 getReverseConnectivityIndex(SALOME_MED::
150                 medConnectivity mode) throw(SALOME::SALOME_Exception);
151
152         // Family and Group
153         CORBA::Long getNumberOfFamilies(SALOME_MED::medEntityMesh entity)
154                 throw(SALOME::SALOME_Exception);
155
156         CORBA::Long getNumberOfGroups(SALOME_MED::medEntityMesh entity)
157                 throw(SALOME::SALOME_Exception);
158
159         SALOME_MED::Family_array *
160         getFamilies(SALOME_MED::medEntityMesh entity)
161           throw(SALOME::SALOME_Exception);
162
163         SALOME_MED::FAMILY_ptr getFamily(SALOME_MED::medEntityMesh entity,
164                 CORBA::Long i) throw(SALOME::SALOME_Exception);
165
166         SALOME_MED::Group_array * getGroups(SALOME_MED::medEntityMesh entity)
167                 throw(SALOME::SALOME_Exception);
168
169         SALOME_MED::GROUP_ptr getGroup(SALOME_MED::medEntityMesh entity,
170                 CORBA::Long i) throw(SALOME::SALOME_Exception);
171
172         SALOME_MED::SUPPORT_ptr
173         getBoundaryElements(SALOME_MED::medEntityMesh entity)
174           throw (SALOME::SALOME_Exception);
175
176         SALOME_MED::SUPPORT_ptr getSkin(SALOME_MED::SUPPORT_ptr mySupport3D)
177           throw (SALOME::SALOME_Exception);
178
179         SALOME_MED::FIELD_ptr getVolume(SALOME_MED::SUPPORT_ptr mySupport)
180                 throw(SALOME::SALOME_Exception);
181
182         SALOME_MED::FIELD_ptr getArea(SALOME_MED::SUPPORT_ptr mySupport)
183                 throw(SALOME::SALOME_Exception);
184
185         SALOME_MED::FIELD_ptr getLength(SALOME_MED::SUPPORT_ptr mySupport)
186                 throw(SALOME::SALOME_Exception);
187
188         SALOME_MED::FIELD_ptr getNormal(SALOME_MED::SUPPORT_ptr mySupport)
189                 throw(SALOME::SALOME_Exception);
190
191         SALOME_MED::FIELD_ptr getBarycenter(SALOME_MED::SUPPORT_ptr mySupport)
192                 throw(SALOME::SALOME_Exception);
193
194         SALOME_MED::FIELD_ptr getNeighbourhood(SALOME_MED::SUPPORT_ptr mySupport)
195                 throw(SALOME::SALOME_Exception);
196
197         // Others
198         void addInStudy(SALOMEDS::Study_ptr myStudy,
199                 SALOME_MED::MESH_ptr myIor) throw(SALOME::SALOME_Exception);
200         CORBA::Long addDriver(SALOME_MED::medDriverTypes driverType,
201                 const char *fileName, const char *meshName)
202                 throw(SALOME::SALOME_Exception);
203         void rmDriver(CORBA::Long i) throw(SALOME::SALOME_Exception);
204         void read(CORBA::Long i) throw(SALOME::SALOME_Exception);
205         void write(CORBA::Long i, const char *driverMeshName)
206                 throw(SALOME::SALOME_Exception);
207
208         //                    Cuisine interne
209         CORBA::Long getCorbaIndex() throw(SALOME::SALOME_Exception);
210
211         SALOME_MED::MESH::meshInfos * getMeshGlobal()
212           throw (SALOME::SALOME_Exception);
213
214         SALOME_MED::MESH::coordinateInfos * getCoordGlobal()
215           throw (SALOME::SALOME_Exception);
216
217         SALOME_MED::MESH::connectivityInfos *
218         getConnectGlobal(SALOME_MED::medEntityMesh entity)
219           throw (SALOME::SALOME_Exception);
220
221         //
222         void calculeNbElts() throw(SALOME::SALOME_Exception);
223         void createFamilies() throw(SALOME::SALOME_Exception);
224 };
225
226 #endif /* _MED_MESH_I_HXX_ */