Salome HOME
#18963 Minimize compiler warnings
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ProjectionSource2D_i.cxx
1 // Copyright (C) 2007-2020  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, or (at your option) any later version.
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_I : idl implementation based on 'SMESH' unit's classes
24 //  File   : StdMeshers_ProjectionSource2D_i.cxx
25 //  Author : Edward AGAPOV
26 //  Module : SMESH
27 //
28 #include "StdMeshers_ProjectionSource2D_i.hxx"
29
30 #include "SMESH_Gen_i.hxx"
31 #include "SMESH_Gen.hxx"
32 #include "SMESH_PythonDump.hxx"
33
34 #include "Utils_CorbaException.hxx"
35 #include "utilities.h"
36
37 #include "StdMeshers_ObjRefUlils.hxx"
38
39 using namespace std;
40
41 //=============================================================================
42 /*!
43  *  StdMeshers_ProjectionSource2D_i::StdMeshers_ProjectionSource2D_i
44  *
45  *  Constructor
46  */
47 //=============================================================================
48
49 StdMeshers_ProjectionSource2D_i::StdMeshers_ProjectionSource2D_i
50 ( PortableServer::POA_ptr thePOA,
51   ::SMESH_Gen*            theGenImpl ) : SALOME::GenericObj_i( thePOA ), 
52                                          SMESH_Hypothesis_i( thePOA )
53 {
54   myBaseImpl = new ::StdMeshers_ProjectionSource2D( theGenImpl->GetANewId(),
55                                                     theGenImpl );
56 }
57
58 //=============================================================================
59 /*!
60  *  StdMeshers_ProjectionSource2D_i::~StdMeshers_ProjectionSource2D_i
61  *
62  *  Destructor
63  */
64 //=============================================================================
65
66 StdMeshers_ProjectionSource2D_i::~StdMeshers_ProjectionSource2D_i()
67 {
68 }
69
70 //=============================================================================
71   /*!
72    * Sets a source <face> to take a mesh pattern from
73    */
74 //=============================================================================
75
76 void StdMeshers_ProjectionSource2D_i::SetSourceFace(GEOM::GEOM_Object_ptr face)
77 {
78   ASSERT( myBaseImpl );
79   try {
80     this->GetImpl()->SetSourceFace( StdMeshers_ObjRefUlils::GeomObjectToShape( face ));
81     CORBA::String_var entry = face->GetStudyEntry();
82     myShapeEntries[ SRC_FACE ] = entry.in();
83   }
84   catch ( SALOME_Exception& S_ex ) {
85     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
86   }
87   // Update Python script
88   SMESH::TPythonDump() << _this() << ".SetSourceFace( " << face << " )";
89 }
90
91 //=============================================================================
92 /*!
93  * Sets source <mesh> to take a mesh pattern from
94  */
95 //=============================================================================
96
97 void StdMeshers_ProjectionSource2D_i::SetSourceMesh(SMESH::SMESH_Mesh_ptr theMesh)
98 {
99   ASSERT( myBaseImpl );
100
101   ::SMESH_Mesh* mesh = 0;
102
103   if ( !CORBA::is_nil( theMesh ))
104   {
105     SMESH_Mesh_i* mesh_i = SMESH::DownCast< SMESH_Mesh_i* >( theMesh );
106     if ( !mesh_i )
107       THROW_SALOME_CORBA_EXCEPTION( "bad mesh", SALOME::BAD_PARAM );
108     mesh = &mesh_i->GetImpl();
109   }
110
111   try {
112     this->GetImpl()->SetSourceMesh ( mesh );
113   }
114   catch ( SALOME_Exception& S_ex ) {
115     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
116   }
117
118   myCorbaMesh = SMESH::SMESH_Mesh::_duplicate( theMesh );
119
120   // Update Python script
121   SMESH::TPythonDump() << _this() << ".SetSourceMesh( " << theMesh << " )";
122 }
123
124 //=============================================================================
125 /*!
126  * Return source mesh
127  */
128 //=============================================================================
129
130 SMESH::SMESH_Mesh_ptr StdMeshers_ProjectionSource2D_i::GetSourceMesh()
131 {
132   SMESH::SMESH_Mesh_var mesh = myCorbaMesh;
133   return mesh._retn();
134 }
135
136 //=============================================================================
137 /*!
138  * Sets vertex association between the source face and the target one.
139  * This parameter is optional.
140  * Two vertices must belong to one edge of a face
141  */
142 //=============================================================================
143
144 void StdMeshers_ProjectionSource2D_i::SetVertexAssociation(GEOM::GEOM_Object_ptr sourceVertex1,
145                                                            GEOM::GEOM_Object_ptr sourceVertex2,
146                                                            GEOM::GEOM_Object_ptr targetVertex1,
147                                                            GEOM::GEOM_Object_ptr targetVertex2)
148 {
149   ASSERT( myBaseImpl );
150   try {
151     TopoDS_Shape v1 = StdMeshers_ObjRefUlils::GeomObjectToShape( sourceVertex1 );
152     TopoDS_Shape v2 = StdMeshers_ObjRefUlils::GeomObjectToShape( sourceVertex2 );
153     TopoDS_Shape v3 = StdMeshers_ObjRefUlils::GeomObjectToShape( targetVertex1 );
154     TopoDS_Shape v4 = StdMeshers_ObjRefUlils::GeomObjectToShape( targetVertex2 );
155     this->GetImpl()->SetVertexAssociation( v1, v2, v3, v4 );
156
157     myShapeEntries[ SRC_VERTEX1 ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( sourceVertex1 );
158     myShapeEntries[ SRC_VERTEX2 ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( sourceVertex2 );
159     myShapeEntries[ TGT_VERTEX1 ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( targetVertex1 );
160     myShapeEntries[ TGT_VERTEX2 ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( targetVertex2 );
161   }
162   catch ( SALOME_Exception& S_ex ) {
163     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
164   }
165   // Update Python script
166   SMESH::TPythonDump() << _this() << ".SetVertexAssociation( "
167                        << sourceVertex1 << ", "
168                        << sourceVertex2 << ", "
169                        << targetVertex1 << ", "
170                        << targetVertex2 << " )";
171 }
172
173 //=============================================================================
174 /*!
175  * Returns the source face
176  */
177 //=============================================================================
178
179 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource2D_i::GetSourceFace()
180 {
181   ASSERT( myBaseImpl );
182   return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
183     ( myShapeEntries[ SRC_FACE ],
184       this->GetImpl()->GetSourceFace() );
185 }
186
187 //=============================================================================
188 /*!
189  * Returns the vertex associated with the target vertex.
190  * Result may be nil if association not set
191  */
192 //=============================================================================
193
194 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource2D_i::GetSourceVertex(CORBA::Long i)
195 {
196   ASSERT( myBaseImpl );
197   return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
198     ( myShapeEntries[ i == 1 ? SRC_VERTEX1 : SRC_VERTEX2 ],
199       this->GetImpl()->GetSourceVertex((int) i ));
200 }
201
202 //=============================================================================
203 /*!
204  * Returns the <i>-th target vertex associated with the <i>-th source vertex.
205  * Result may be nil if association not set.
206  */
207 //=============================================================================
208
209 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource2D_i::GetTargetVertex(CORBA::Long i)
210 {
211   ASSERT( myBaseImpl );
212   return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
213     ( myShapeEntries[ i == 1 ? TGT_VERTEX1 : TGT_VERTEX2 ],
214       this->GetImpl()->GetTargetVertex( (int)i ));
215 }
216
217 //=============================================================================
218 /*!
219  *  StdMeshers_ProjectionSource2D_i::GetImpl
220  *
221  *  Get implementation
222  */
223 //=============================================================================
224
225 ::StdMeshers_ProjectionSource2D* StdMeshers_ProjectionSource2D_i::GetImpl()
226 {
227   return ( ::StdMeshers_ProjectionSource2D* )myBaseImpl;
228 }
229
230 //================================================================================
231 /*!
232  * \brief Verify whether hypothesis supports given entity type 
233   * \param type - dimension (see SMESH::Dimension enumeration)
234   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
235  * 
236  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
237  */
238 //================================================================================  
239 CORBA::Boolean StdMeshers_ProjectionSource2D_i::IsDimSupported( SMESH::Dimension type )
240 {
241   return type == SMESH::DIM_2D;
242 }
243
244 //================================================================================
245 /*!
246  * \brief Write parameters in a string
247   * \retval char* - resulting string
248  */
249 //================================================================================
250
251 char* StdMeshers_ProjectionSource2D_i::SaveTo()
252 {
253   ASSERT( myBaseImpl );
254   std::ostringstream os;
255
256   for ( int i = 0; i < NB_SHAPES; ++i )
257     StdMeshers_ObjRefUlils::SaveToStream( myShapeEntries[ i ], os );
258   StdMeshers_ObjRefUlils::SaveToStream( GetSourceMesh(), os );
259
260   myBaseImpl->SaveTo( os );
261
262   return CORBA::string_dup( os.str().c_str() );
263 }
264
265 //================================================================================
266 /*!
267  * \brief Retrieve parameters from the string
268   * \param theStream - the input string
269  */
270 //================================================================================
271
272 void StdMeshers_ProjectionSource2D_i::LoadFrom( const char* theStream )
273 {
274   ASSERT( myBaseImpl );
275   std::istringstream is( theStream );
276
277   TopoDS_Shape shapes[ NB_SHAPES ];
278   for ( int i = 0; i < NB_SHAPES; ++i )
279     shapes[ i ] = StdMeshers_ObjRefUlils::LoadFromStream( is );
280   SMESH::SMESH_Mesh_var mesh = 
281     StdMeshers_ObjRefUlils::LoadObjectFromStream< SMESH::SMESH_Mesh >( is );
282
283   ::SMESH_Mesh* meshImpl = 0;
284
285   if ( !CORBA::is_nil( mesh ))
286   {
287     SMESH_Mesh_i* mesh_i = SMESH::DownCast< SMESH_Mesh_i* >( mesh );
288     if ( mesh_i )
289       meshImpl = &mesh_i->GetImpl();
290   }
291
292   myCorbaMesh = SMESH::SMESH_Mesh::_duplicate( mesh );
293
294   try {
295     GetImpl()->SetSourceMesh       ( meshImpl );
296     GetImpl()->SetSourceFace       ( shapes[ SRC_FACE ] );
297     GetImpl()->SetVertexAssociation( shapes[ SRC_VERTEX1 ],
298                                      shapes[ SRC_VERTEX2 ],
299                                      shapes[ TGT_VERTEX1 ],
300                                      shapes[ TGT_VERTEX2 ]);
301   }
302   catch( ... ) {
303   }
304   myBaseImpl->LoadFrom( is );
305
306   std::istringstream str( theStream );
307   for ( int i = 0; i < NB_SHAPES; ++i )
308     str >> myShapeEntries[ i ];
309 }
310
311 //================================================================================
312 /*!
313  * \brief Return geometry this hypothesis depends on. Return false if there is no geometry parameter
314  */
315 //================================================================================
316
317 bool
318 StdMeshers_ProjectionSource2D_i::getObjectsDependOn( std::vector< std::string > & entryArray,
319                                                      std::vector< int >         & /*subIDArray*/ ) const
320 {
321   for ( int i = 0; i < NB_SHAPES; ++i )
322     entryArray.push_back( myShapeEntries[ i ]);
323
324   return true;
325 }
326
327 //================================================================================
328 /*!
329  * \brief Set new geometry instead of that returned by getObjectsDependOn()
330  */
331 //================================================================================
332
333 bool
334 StdMeshers_ProjectionSource2D_i::setObjectsDependOn( std::vector< std::string > & entryArray,
335                                                      std::vector< int >         & /*subIDArray*/ )
336 {
337   TopoDS_Shape shapes[ NB_SHAPES ];
338   for ( int i = 0; i < NB_SHAPES; ++i )
339   {
340     myShapeEntries[ i ] = entryArray[ i ];
341     shapes[ i ] = StdMeshers_ObjRefUlils::EntryToShape( entryArray[ i ]);
342   }
343
344   try {
345     GetImpl()->SetSourceFace       ( shapes[ SRC_FACE ] );
346     GetImpl()->SetVertexAssociation( shapes[ SRC_VERTEX1 ],
347                                      shapes[ SRC_VERTEX2 ],
348                                      shapes[ TGT_VERTEX1 ],
349                                      shapes[ TGT_VERTEX2 ]);
350   }
351   catch (...) {
352     return false;
353   }
354   return true;
355 }