1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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, or (at your option) any later version.
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
23 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 // File : SMESH_Pattern_i.cxx
25 // Created : Fri Aug 20 16:15:49 2004
26 // Author : Edward AGAPOV (eap)
28 #include "SMESH_Pattern_i.hxx"
30 #include "GEOM_Client.hxx"
31 #include "SMESH_Gen_i.hxx"
32 #include "SMESH_Mesh.hxx"
33 #include "SMESH_Mesh_i.hxx"
34 #include "SMESH_PythonDump.hxx"
35 #include "SMDS_MeshFace.hxx"
36 #include "SMDS_MeshVolume.hxx"
38 #include <TopExp_Explorer.hxx>
40 #include <TopoDS_Face.hxx>
42 #include <Standard_Failure.hxx>
43 #include <Standard_ErrorHandler.hxx>
48 using SMESH::TPythonDump;
51 //=======================================================================
52 //function : dumpErrorCode
54 //=======================================================================
56 static void addErrorCode(const char* thePyCommand)
58 TPythonDump() << "if (isDone != 1):";
59 TPythonDump() << "\tprint '" << thePyCommand << " :', pattern.GetErrorCode()";
62 //=============================================================================
64 * SMESH_Gen_i::GetPattern
66 * Create pattern mapper
68 //=============================================================================
70 SMESH::SMESH_Pattern_ptr SMESH_Gen_i::GetPattern()
72 // Update Python script
73 TPythonDump() << "pattern = " << this << ".GetPattern()";
75 SMESH_Pattern_i* i = new SMESH_Pattern_i( this );
76 SMESH::SMESH_Pattern_var anObj = i->_this();
80 //=======================================================================
81 //function : SMESH_Pattern_i
83 //=======================================================================
85 SMESH_Pattern_i::SMESH_Pattern_i( SMESH_Gen_i* theGen_i ):
90 //=======================================================================
93 //=======================================================================
95 ::SMESH_Mesh* SMESH_Pattern_i::getMesh( SMESH::SMESH_Mesh_ptr & theMesh )
97 SMESH_Mesh_i* anImplPtr =
98 dynamic_cast<SMESH_Mesh_i*>( SMESH_Gen_i::GetServant( theMesh ).in() );
100 return & anImplPtr->GetImpl();
105 //=======================================================================
106 //function : LoadFromFile
108 //=======================================================================
110 CORBA::Boolean SMESH_Pattern_i::LoadFromFile(const char* theFileContents)
112 // remove some gabage from the end
113 TCollection_AsciiString patternDescription = (char*) theFileContents;
114 int pos = patternDescription.Length();
115 while (! isdigit( patternDescription.Value( pos )))
117 if ( pos != patternDescription.Length() ) {
118 patternDescription.Trunc( pos );
121 // Update Python script
122 TPythonDump() << "isDone = pattern.LoadFromFile("
123 << TPythonDump::LongStringStart("Pattern")
124 << patternDescription
125 << TPythonDump::LongStringEnd()
127 addErrorCode( "LoadFromFile" );
129 return myPattern.Load( theFileContents );
132 //=======================================================================
133 //function : LoadFromFace
135 //=======================================================================
137 CORBA::Boolean SMESH_Pattern_i::LoadFromFace(SMESH::SMESH_Mesh_ptr theMesh,
138 GEOM::GEOM_Object_ptr theFace,
139 CORBA::Boolean theProject)
141 if ( theMesh->_is_nil() || theFace->_is_nil() )
144 ::SMESH_Mesh* aMesh = getMesh( theMesh );
148 TopoDS_Shape aFace = myGen->GeomObjectToShape( theFace );
149 if ( aFace.IsNull() || aFace.ShapeType() != TopAbs_FACE )
152 // Update Python script
153 TPythonDump() << "isDone = pattern.LoadFromFace( " << theMesh << ".GetMesh(), "
154 << theFace << ", " << theProject << " )";
155 addErrorCode( "LoadFromFace" );
157 return myPattern.Load( aMesh, TopoDS::Face( aFace ), theProject );
160 //=======================================================================
161 //function : LoadFrom3DBlock
163 //=======================================================================
165 CORBA::Boolean SMESH_Pattern_i::LoadFrom3DBlock(SMESH::SMESH_Mesh_ptr theMesh,
166 GEOM::GEOM_Object_ptr theBlock)
168 if ( theMesh->_is_nil() || theBlock->_is_nil() )
171 ::SMESH_Mesh* aMesh = getMesh( theMesh );
175 TopoDS_Shape aShape = myGen->GeomObjectToShape( theBlock );
176 if ( aShape.IsNull())
179 TopExp_Explorer exp ( aShape, TopAbs_SHELL );
183 // Update Python script
184 TPythonDump() << "isDone = pattern.LoadFrom3DBlock( " << theMesh << ".GetMesh(), " << theBlock << " )";
185 addErrorCode( "LoadFrom3DBlock" );
187 return myPattern.Load( aMesh, TopoDS::Shell( exp.Current() ));
190 //=======================================================================
191 //function : ApplyToFace
193 //=======================================================================
195 SMESH::point_array* SMESH_Pattern_i::ApplyToFace(GEOM::GEOM_Object_ptr theFace,
196 GEOM::GEOM_Object_ptr theVertexOnKeyPoint1,
197 CORBA::Boolean theReverse)
199 SMESH::point_array_var points = new SMESH::point_array;
200 list<const gp_XYZ *> xyzList;
202 TopoDS_Shape F = myGen->GeomObjectToShape( theFace );
203 TopoDS_Shape V = myGen->GeomObjectToShape( theVertexOnKeyPoint1 );
205 if (!F.IsNull() && F.ShapeType() == TopAbs_FACE &&
206 !V.IsNull() && V.ShapeType() == TopAbs_VERTEX
208 myPattern.Apply( TopoDS::Face( F ), TopoDS::Vertex( V ), theReverse ) &&
209 myPattern.GetMappedPoints( xyzList ))
211 points->length( xyzList.size() );
212 list<const gp_XYZ *>::iterator xyzIt = xyzList.begin();
213 for ( int i = 0; xyzIt != xyzList.end(); xyzIt++ ) {
214 SMESH::PointStruct & p = points[ i++ ];
215 (*xyzIt)->Coord( p.x, p.y, p.z );
218 // Update Python script
219 TPythonDump() << "pattern.ApplyToFace( " << theFace << ", "
220 << theVertexOnKeyPoint1 << ", " << theReverse << " )";
222 return points._retn();
225 //=======================================================================
226 //function : ApplyTo3DBlock
228 //=======================================================================
230 SMESH::point_array* SMESH_Pattern_i::ApplyTo3DBlock(GEOM::GEOM_Object_ptr theBlock,
231 GEOM::GEOM_Object_ptr theVertex000,
232 GEOM::GEOM_Object_ptr theVertex001)
234 SMESH::point_array_var points = new SMESH::point_array;
235 list<const gp_XYZ *> xyzList;
237 TopExp_Explorer exp( myGen->GeomObjectToShape( theBlock ), TopAbs_SHELL );
238 TopoDS_Shape V000 = myGen->GeomObjectToShape( theVertex000 );
239 TopoDS_Shape V001 = myGen->GeomObjectToShape( theVertex001 );
242 !V000.IsNull() && V000.ShapeType() == TopAbs_VERTEX &&
243 !V001.IsNull() && V001.ShapeType() == TopAbs_VERTEX
245 myPattern.Apply(TopoDS::Shell( exp.Current() ),
246 TopoDS::Vertex( V000 ),
247 TopoDS::Vertex( V001 )) &&
248 myPattern.GetMappedPoints( xyzList ))
250 points->length( xyzList.size() );
251 list<const gp_XYZ *>::iterator xyzIt = xyzList.begin();
252 for ( int i = 0; xyzIt != xyzList.end(); xyzIt++ ) {
253 SMESH::PointStruct & p = points[ i++ ];
254 (*xyzIt)->Coord( p.x, p.y, p.z );
258 // Update Python script
259 TPythonDump() << "pattern.ApplyTo3DBlock( " << theBlock << ", "
260 << theVertex000 << ", " << theVertex001 << " )";
262 return points._retn();
265 //=======================================================================
266 //function : ApplyToMeshFaces
268 //=======================================================================
271 SMESH_Pattern_i::ApplyToMeshFaces(SMESH::SMESH_Mesh_ptr theMesh,
272 const SMESH::long_array& theFacesIDs,
273 CORBA::Long theNodeIndexOnKeyPoint1,
274 CORBA::Boolean theReverse)
276 SMESH::point_array_var points = new SMESH::point_array;
278 ::SMESH_Mesh* aMesh = getMesh( theMesh );
280 return points._retn();
282 list<const gp_XYZ *> xyzList;
283 set<const SMDS_MeshFace*> fset;
284 for (int i = 0; i < theFacesIDs.length(); i++)
286 CORBA::Long index = theFacesIDs[i];
287 const SMDS_MeshElement * elem = aMesh->GetMeshDS()->FindElement(index);
288 if ( elem && elem->GetType() == SMDSAbs_Face )
289 fset.insert( static_cast<const SMDS_MeshFace *>( elem ));
293 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
296 ok = myPattern.Apply( aMesh, fset, theNodeIndexOnKeyPoint1, theReverse );
298 catch (Standard_Failure& exc) {
299 MESSAGE("OCCT Exception in SMESH_Pattern: " << exc.GetMessageString());
301 catch ( std::exception& exc ) {
302 MESSAGE("STD Exception in SMESH_Pattern: << exc.what()");
305 MESSAGE("Unknown Exception in SMESH_Pattern");
308 if ( ok && myPattern.GetMappedPoints( xyzList ))
310 points->length( xyzList.size() );
311 list<const gp_XYZ *>::iterator xyzIt = xyzList.begin();
312 for ( int i = 0; xyzIt != xyzList.end(); xyzIt++ ) {
313 SMESH::PointStruct & p = points[ i++ ];
314 (*xyzIt)->Coord( p.x, p.y, p.z );
318 // Update Python script
319 TPythonDump() << "pattern.ApplyToMeshFaces( " << theMesh << ".GetMesh(), "
320 << theFacesIDs << ", "
321 << TVar( theNodeIndexOnKeyPoint1 ) << ", " << theReverse << " )";
323 return points._retn();
326 //=======================================================================
327 //function : ApplyToHexahedrons
329 //=======================================================================
332 SMESH_Pattern_i::ApplyToHexahedrons(SMESH::SMESH_Mesh_ptr theMesh,
333 const SMESH::long_array& theVolumesIDs,
334 CORBA::Long theNode000Index,
335 CORBA::Long theNode001Index)
337 SMESH::point_array_var points = new SMESH::point_array;
339 ::SMESH_Mesh* aMesh = getMesh( theMesh );
341 return points._retn();
343 list<const gp_XYZ *> xyzList;
344 set<const SMDS_MeshVolume*> vset;
345 for (int i = 0; i < theVolumesIDs.length(); i++)
347 CORBA::Long index = theVolumesIDs[i];
348 const SMDS_MeshElement * elem = aMesh->GetMeshDS()->FindElement(index);
349 if ( elem && elem->GetType() == SMDSAbs_Volume && elem->NbNodes() == 8 )
350 vset.insert( static_cast<const SMDS_MeshVolume *>( elem ));
352 if (myPattern.Apply( vset, theNode000Index, theNode001Index ) &&
353 myPattern.GetMappedPoints( xyzList ))
355 points->length( xyzList.size() );
356 list<const gp_XYZ *>::iterator xyzIt = xyzList.begin();
357 for ( int i = 0; xyzIt != xyzList.end(); xyzIt++ ) {
358 SMESH::PointStruct & p = points[ i++ ];
359 (*xyzIt)->Coord( p.x, p.y, p.z );
363 // Update Python script
364 TPythonDump() << "pattern.ApplyToHexahedrons( " << theMesh << ".GetMesh(), "
365 << theVolumesIDs << ", "
366 << TVar(theNode000Index) << ", " << TVar(theNode001Index) << " )";
368 return points._retn();
371 //=======================================================================
372 //function : MakeMesh
374 //=======================================================================
376 CORBA::Boolean SMESH_Pattern_i::MakeMesh (SMESH::SMESH_Mesh_ptr theMesh,
377 const CORBA::Boolean CreatePolygons,
378 const CORBA::Boolean CreatePolyedrs)
380 ::SMESH_Mesh* aMesh = getMesh( theMesh );
384 // Update Python script
385 TPythonDump() << "isDone = pattern.MakeMesh( " << theMesh << ".GetMesh(), "
386 << CreatePolygons << ", " << CreatePolyedrs << " )";
387 addErrorCode( "MakeMesh" );
389 int nb = aMesh->NbNodes() + aMesh->NbEdges() + aMesh->NbFaces() + aMesh->NbVolumes();
391 bool res = myPattern.MakeMesh( aMesh, CreatePolygons, CreatePolyedrs );
393 if ( nb > 0 && nb != aMesh->NbNodes() + aMesh->NbEdges() + aMesh->NbFaces() + aMesh->NbVolumes())
395 aMesh->SetIsModified(true);
396 aMesh->GetMeshDS()->Modified();
401 //=======================================================================
402 //function : GetString
404 //=======================================================================
406 char* SMESH_Pattern_i::GetString()
409 myPattern.Save( os );
411 return CORBA::string_dup( os.str().c_str() );
414 //=======================================================================
417 //=======================================================================
419 CORBA::Boolean SMESH_Pattern_i::Is2D()
421 return myPattern.Is2D();
424 //=======================================================================
425 //function : GetPoints
427 //=======================================================================
429 SMESH::point_array* SMESH_Pattern_i::GetPoints()
431 SMESH::point_array_var points = new SMESH::point_array;
432 list<const gp_XYZ *> xyzList;
434 if (myPattern.GetPoints( xyzList ))
436 points->length( xyzList.size() );
437 list<const gp_XYZ *>::iterator xyzIt = xyzList.begin();
438 for ( int i = 0; xyzIt != xyzList.end(); xyzIt++ ) {
439 SMESH::PointStruct & p = points[ i++ ];
440 (*xyzIt)->Coord( p.x, p.y, p.z );
444 return points._retn();
447 //=======================================================================
448 //function : GetKeyPoints
450 //=======================================================================
452 SMESH::long_array* SMESH_Pattern_i::GetKeyPoints()
454 SMESH::long_array_var ids = new SMESH::long_array;
455 if ( myPattern.IsLoaded() ) {
456 const list< int > & idList = myPattern.GetKeyPointIDs();
457 ids->length( idList.size() );
458 list< int >::const_iterator iIt = idList.begin();
459 for ( int i = 0; iIt != idList.end(); iIt++, i++ )
465 //=======================================================================
466 //function : GetElementPoints
468 //=======================================================================
470 SMESH::array_of_long_array* SMESH_Pattern_i::GetElementPoints(CORBA::Boolean applied)
472 SMESH::array_of_long_array_var arrayOfArray = new SMESH::array_of_long_array;
474 const list< list< int > >& listOfIdList = myPattern.GetElementPointIDs(applied);
475 arrayOfArray->length( listOfIdList.size() );
476 list< list< int > >::const_iterator llIt = listOfIdList.begin();
477 for ( int i = 0 ; llIt != listOfIdList.end(); llIt++, i++ )
479 const list< int > & idList = (*llIt);
480 SMESH::long_array& ids = arrayOfArray[ i ];
481 ids.length( idList.size() );
482 list< int >::const_iterator iIt = idList.begin();
483 for ( int j = 0; iIt != idList.end(); iIt++, j++ )
486 return arrayOfArray._retn();
489 //=======================================================================
490 //function : GetErrorCode
492 //=======================================================================
494 #define RETCASE(enm) case ::SMESH_Pattern::enm: return SMESH::SMESH_Pattern::enm;
496 SMESH::SMESH_Pattern::ErrorCode SMESH_Pattern_i::GetErrorCode()
498 switch ( myPattern.GetErrorCode() ) {
500 RETCASE( ERR_READ_NB_POINTS );
501 RETCASE( ERR_READ_POINT_COORDS );
502 RETCASE( ERR_READ_TOO_FEW_POINTS );
503 RETCASE( ERR_READ_3D_COORD );
504 RETCASE( ERR_READ_NO_KEYPOINT );
505 RETCASE( ERR_READ_BAD_INDEX );
506 RETCASE( ERR_READ_ELEM_POINTS );
507 RETCASE( ERR_READ_NO_ELEMS );
508 RETCASE( ERR_READ_BAD_KEY_POINT );
509 RETCASE( ERR_SAVE_NOT_LOADED );
510 RETCASE( ERR_LOAD_EMPTY_SUBMESH );
511 RETCASE( ERR_LOADF_NARROW_FACE );
512 RETCASE( ERR_LOADF_CLOSED_FACE );
513 RETCASE( ERR_LOADF_CANT_PROJECT );
514 RETCASE( ERR_LOADV_BAD_SHAPE );
515 RETCASE( ERR_LOADV_COMPUTE_PARAMS );
516 RETCASE( ERR_APPL_NOT_LOADED );
517 RETCASE( ERR_APPL_BAD_DIMENTION );
518 RETCASE( ERR_APPL_BAD_NB_VERTICES );
519 RETCASE( ERR_APPLF_BAD_TOPOLOGY );
520 RETCASE( ERR_APPLF_BAD_VERTEX );
521 RETCASE( ERR_APPLF_INTERNAL_EEROR );
522 RETCASE( ERR_APPLV_BAD_SHAPE );
523 RETCASE( ERR_MAKEM_NOT_COMPUTED );
526 return SMESH::SMESH_Pattern::ERR_OK;