Salome HOME
23607]: [EDF] HYDRO: Copy mesh with geometry - problems of Copy elements
[modules/smesh.git] / src / SMESH_I / SMESH_Gen_i.cxx
1 // Copyright (C) 2007-2016  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 //  File   : SMESH_Gen_i.cxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SMESH
25
26 #include <BRepPrimAPI_MakeBox.hxx>
27 #include <BRepPrimAPI_MakeCylinder.hxx>
28 #include <BRepPrimAPI_MakeSphere.hxx>
29 #include <BRep_Tool.hxx>
30 #include <OSD.hxx>
31 #include <TColStd_MapOfAsciiString.hxx>
32 #include <TCollection_AsciiString.hxx>
33 #include <TopExp.hxx>
34 #include <TopExp_Explorer.hxx>
35 #include <TopTools_IndexedMapOfShape.hxx>
36 #include <TopTools_ListIteratorOfListOfShape.hxx>
37 #include <TopTools_ListOfShape.hxx>
38 #include <TopTools_MapOfShape.hxx>
39 #include <TopoDS.hxx>
40 #include <TopoDS_CompSolid.hxx>
41 #include <TopoDS_Compound.hxx>
42 #include <TopoDS_Edge.hxx>
43 #include <TopoDS_Face.hxx>
44 #include <TopoDS_Iterator.hxx>
45 #include <TopoDS_Shape.hxx>
46 #include <TopoDS_Shell.hxx>
47 #include <TopoDS_Solid.hxx>
48 #include <TopoDS_Vertex.hxx>
49 #include <TopoDS_Wire.hxx>
50 #include <gp_Pnt.hxx>
51
52
53 #ifdef WIN32
54  #include <windows.h>
55  #include <process.h>
56 #else
57  #include <dlfcn.h>
58  #include <libgen.h> // for basename function
59 #endif
60
61 #ifdef WIN32
62  #define LibHandle HMODULE
63  #define LoadLib( name ) LoadLibrary( name )
64  #define GetProc GetProcAddress
65  #define UnLoadLib( handle ) FreeLibrary( handle );
66 #else // WIN32
67  #define LibHandle void*
68  #ifdef DYNLOAD_LOCAL
69   #define LoadLib( name ) dlopen( name, RTLD_LAZY | RTLD_LOCAL )
70  #else // DYNLOAD_LOCAL
71   #define LoadLib( name ) dlopen( name, RTLD_LAZY | RTLD_GLOBAL )
72  #endif // DYNLOAD_LOCAL
73  #define GetProc dlsym
74  #define UnLoadLib( handle ) dlclose( handle );
75 #endif // WIN32
76
77 #include "SMESH_Gen_i.hxx"
78 #include "SMESH_version.h"
79
80 #include "DriverMED_W_SMESHDS_Mesh.h"
81 #include "DriverMED_R_SMESHDS_Mesh.h"
82 #ifdef WITH_CGNS
83 #include "DriverCGNS_Read.hxx"
84 #endif
85 #include "MED_Factory.hxx"
86 #include "SMDS_EdgePosition.hxx"
87 #include "SMDS_FacePosition.hxx"
88 #include "SMDS_SetIterator.hxx"
89 #include "SMDS_SpacePosition.hxx"
90 #include "SMDS_VertexPosition.hxx"
91 #include "SMESHDS_Document.hxx"
92 #include "SMESHDS_Group.hxx"
93 #include "SMESHDS_GroupOnGeom.hxx"
94 #include "SMESH_Algo_i.hxx"
95 #include "SMESH_File.hxx"
96 #include "SMESH_Group.hxx"
97 #include "SMESH_Group_i.hxx"
98 #include "SMESH_Hypothesis.hxx"
99 #include "SMESH_Hypothesis_i.hxx"
100 #include "SMESH_Mesh.hxx"
101 #include "SMESH_MeshEditor.hxx"
102 #include "SMESH_Mesh_i.hxx"
103 #include "SMESH_PreMeshInfo.hxx"
104 #include "SMESH_PythonDump.hxx"
105 #include "SMESH_ControlsDef.hxx"
106
107 // to pass CORBA exception through SMESH_TRY
108 #define SMY_OWN_CATCH catch( SALOME::SALOME_Exception& se ) { throw se; }
109 #include "SMESH_TryCatch.hxx" // to include after OCC headers!
110
111 #include CORBA_SERVER_HEADER(SMESH_Group)
112 #include CORBA_SERVER_HEADER(SMESH_Filter)
113 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
114
115
116 #include <GEOMImpl_Types.hxx>
117 #include <GEOM_Client.hxx>
118
119 #include <Basics_Utils.hxx>
120 #include <Basics_DirUtils.hxx>
121 #include <HDFOI.hxx>
122 #include <OpUtil.hxx>
123 #include <SALOMEDS_Tool.hxx>
124 #include <SALOME_Container_i.hxx>
125 #include <SALOME_LifeCycleCORBA.hxx>
126 #include <SALOME_NamingService.hxx>
127 #include <Utils_CorbaException.hxx>
128 #include <Utils_ExceptHandlers.hxx>
129 #include <Utils_SINGLETON.hxx>
130 #include <utilities.h>
131
132 #include CORBA_CLIENT_HEADER(SALOME_ModuleCatalog)
133 #include CORBA_CLIENT_HEADER(SALOME_Session)
134
135 // helpers about SALOME::GenericObj
136 #include <SALOMEDS_wrap.hxx>
137 #include <SALOMEDS_Attributes_wrap.hxx>
138 #include <GEOM_wrap.hxx>
139
140 #include <map>
141 #include <fstream>
142 #include <cstdio>
143 #include <cstdlib>
144 #include <memory>
145
146 using namespace std;
147 using SMESH::TPythonDump;
148 using SMESH::TVar;
149
150 #define NUM_TMP_FILES 2
151
152 #ifdef _DEBUG_
153 static int MYDEBUG = 0;
154 #else
155 static int MYDEBUG = 0;
156 #endif
157
158 // Static variables definition
159 GEOM::GEOM_Gen_var      SMESH_Gen_i::myGeomGen = GEOM::GEOM_Gen::_nil();
160 CORBA::ORB_var          SMESH_Gen_i::myOrb;
161 PortableServer::POA_var SMESH_Gen_i::myPoa;
162 SALOME_NamingService*   SMESH_Gen_i::myNS  = NULL;
163 SALOME_LifeCycleCORBA*  SMESH_Gen_i::myLCC = NULL;
164 SMESH_Gen_i*            SMESH_Gen_i::mySMESHGen = NULL;
165
166
167 const int nbElemPerDiagonal = 10;
168
169 //=============================================================================
170 /*!
171  *  GetServant [ static ]
172  *
173  *  Get servant of the CORBA object
174  */
175 //=============================================================================
176
177 PortableServer::ServantBase_var SMESH_Gen_i::GetServant( CORBA::Object_ptr theObject )
178 {
179   if( CORBA::is_nil( theObject ) || CORBA::is_nil( GetPOA() ) )
180     return NULL;
181   try {
182     PortableServer::Servant aServant = GetPOA()->reference_to_servant( theObject );
183     return aServant;
184   }
185   catch (PortableServer::POA::ObjectNotActive &ex)
186   {
187     INFOS("GetServant: ObjectNotActive");
188     return NULL;
189   }
190   catch (PortableServer::POA::WrongAdapter &ex)
191   {
192     INFOS("GetServant: WrongAdapter: OK when several servants used to build several mesh in parallel...");
193     return NULL;
194   }
195   catch (PortableServer::POA::WrongPolicy &ex)
196   {
197     INFOS("GetServant: WrongPolicy");
198     return NULL;
199   }
200   catch (...)
201   {
202     INFOS( "GetServant - Unknown exception was caught!!!" );
203     return NULL;
204   }
205 }
206
207 //=============================================================================
208 /*!
209  *  SObjectToObject [ static ]
210  *
211  *  Get CORBA object corresponding to the SALOMEDS::SObject
212  */
213 //=============================================================================
214
215 CORBA::Object_var SMESH_Gen_i::SObjectToObject( SALOMEDS::SObject_ptr theSObject )
216 {
217   SALOMEDS::GenericAttribute_wrap anAttr;
218   CORBA::Object_var anObj;
219   if ( !theSObject->_is_nil() ) {
220     try {
221       if( theSObject->FindAttribute( anAttr.inout(), "AttributeIOR" ) ) {
222         SALOMEDS::AttributeIOR_wrap anIOR  = anAttr;
223         CORBA::String_var aValue = anIOR->Value();
224         if( strcmp( aValue, "" ) != 0 )
225           anObj = GetORB()->string_to_object( aValue );
226       }
227     }
228     catch( ... ) {
229       INFOS( "SObjectToObject - Unknown exception was caught!!!" );
230     }
231   }
232   return anObj;
233 }
234
235 //=============================================================================
236 /*!
237  *  GetNS [ static ]
238  *
239  *  Get SALOME_NamingService object
240  */
241 //=============================================================================
242
243 SALOME_NamingService* SMESH_Gen_i::GetNS()
244 {
245   if ( myNS == NULL ) {
246     myNS = SINGLETON_<SALOME_NamingService>::Instance();
247     ASSERT(SINGLETON_<SALOME_NamingService>::IsAlreadyExisting());
248     myNS->init_orb( GetORB() );
249   }
250   return myNS;
251 }
252
253 //=============================================================================
254 /*!
255  *  GetLCC [ static ]
256  *
257  *  Get SALOME_LifeCycleCORBA object
258  */
259 //=============================================================================
260 SALOME_LifeCycleCORBA*  SMESH_Gen_i::GetLCC() {
261   if ( myLCC == NULL ) {
262     myLCC = new SALOME_LifeCycleCORBA( GetNS() );
263   }
264   return myLCC;
265 }
266
267
268 //=============================================================================
269 /*!
270  *  GetGeomEngine [ static ]
271  *
272  *  Get GEOM::GEOM_Gen reference
273  */
274 //=============================================================================
275 GEOM::GEOM_Gen_var SMESH_Gen_i::GetGeomEngine() {
276   //CCRT GEOM::GEOM_Gen_var aGeomEngine =
277   //CCRT   GEOM::GEOM_Gen::_narrow( GetLCC()->FindOrLoad_Component("FactoryServer","GEOM") );
278   //CCRT return aGeomEngine._retn();
279   if(CORBA::is_nil(myGeomGen))
280   {
281     Engines::EngineComponent_ptr temp=GetLCC()->FindOrLoad_Component("FactoryServer","GEOM");
282     myGeomGen=GEOM::GEOM_Gen::_narrow(temp);
283   }
284   return myGeomGen;
285 }
286
287 //=============================================================================
288 /*!
289  *  SMESH_Gen_i::SMESH_Gen_i
290  *
291  *  Default constructor: not for use
292  */
293 //=============================================================================
294
295 SMESH_Gen_i::SMESH_Gen_i()
296 {
297 }
298
299 //=============================================================================
300 /*!
301  *  SMESH_Gen_i::SMESH_Gen_i
302  *
303  *  Standard constructor, used with Container
304  */
305 //=============================================================================
306
307 SMESH_Gen_i::SMESH_Gen_i( CORBA::ORB_ptr            orb,
308                           PortableServer::POA_ptr   poa,
309                           PortableServer::ObjectId* contId,
310                           const char*               instanceName,
311                           const char*               interfaceName )
312   : Engines_Component_i( orb, poa, contId, instanceName, interfaceName )
313 {
314
315   myOrb = CORBA::ORB::_duplicate(orb);
316   myPoa = PortableServer::POA::_duplicate(poa);
317
318   _thisObj = this ;
319   _id = myPoa->activate_object( _thisObj );
320
321   myIsEmbeddedMode = false;
322   myShapeReader = NULL;  // shape reader
323   mySMESHGen = this;
324   myIsHistoricalPythonDump = true;
325   myToForgetMeshDataOnHypModif = false;
326
327   // set it in standalone mode only
328   //OSD::SetSignal( true );
329
330   // 0020605: EDF 1190 SMESH: Display performance. 80 seconds for 52000 cells.
331   // find out mode (embedded or standalone) here else
332   // meshes created before calling SMESH_Client::GetSMESHGen(), which calls
333   // SMESH_Gen_i::SetEmbeddedMode(), have wrong IsEmbeddedMode flag
334   if ( SALOME_NamingService* ns = GetNS() )
335   {
336     CORBA::Object_var obj = ns->Resolve( "/Kernel/Session" );
337     SALOME::Session_var session = SALOME::Session::_narrow( obj ) ;
338     if ( !session->_is_nil() )
339     {
340       CORBA::String_var str_host = session->getHostname();
341       CORBA::Long        s_pid = session->getPID();
342       string my_host = Kernel_Utils::GetHostname();
343 #ifdef WIN32
344       long    my_pid = (long)_getpid();
345 #else
346       long    my_pid = (long) getpid();
347 #endif
348       SetEmbeddedMode( s_pid == my_pid && my_host == str_host.in() );
349     }
350   }
351 }
352
353 //=============================================================================
354 /*!
355  *  SMESH_Gen_i::~SMESH_Gen_i
356  *
357  *  Destructor
358  */
359 //=============================================================================
360
361 SMESH_Gen_i::~SMESH_Gen_i()
362 {
363   // delete hypothesis creators
364   map<string, GenericHypothesisCreator_i*>::iterator itHyp, itHyp2;
365   for (itHyp = myHypCreatorMap.begin(); itHyp != myHypCreatorMap.end(); itHyp++)
366   {
367     // same creator can be mapped under different names
368     GenericHypothesisCreator_i* creator = (*itHyp).second;
369     if ( !creator )
370       continue;
371     delete creator;
372     for (itHyp2 = itHyp; itHyp2 != myHypCreatorMap.end(); itHyp2++)
373       if ( creator == (*itHyp2).second )
374         (*itHyp2).second = 0;
375   }
376   myHypCreatorMap.clear();
377
378   // Clear study contexts data
379   map<int, StudyContext*>::iterator it;
380   for ( it = myStudyContextMap.begin(); it != myStudyContextMap.end(); ++it ) {
381     delete it->second;
382   }
383   myStudyContextMap.clear();
384   // delete shape reader
385   if ( myShapeReader )
386     delete myShapeReader;
387 }
388 //=============================================================================
389 /*!
390  *  SMESH_Gen_i::getHypothesisCreator
391  *
392  *  Get hypothesis creator
393  */
394 //=============================================================================
395 GenericHypothesisCreator_i* SMESH_Gen_i::getHypothesisCreator(const char* theHypName,
396                                                               const char* theLibName,
397                                                               std::string& thePlatformLibName)
398   throw (SALOME::SALOME_Exception)
399 {
400   std::string aPlatformLibName;
401   /* It's Need to translate lib name for WIN32 or X platform */
402   if ( theLibName && theLibName[0] != '\0'  )
403   {
404     int libNameLen = strlen(theLibName);
405     //check for old format "libXXXXXXX.so"
406     if (libNameLen > 7 &&
407         !strncmp( theLibName, "lib", 3 ) &&
408         !strcmp( theLibName+libNameLen-3, ".so" ))
409     {
410       //the old format
411 #if defined(WIN32)
412       aPlatformLibName = std::string( theLibName+3, libNameLen-6 ) + ".dll";
413 #elif defined(__APPLE__)
414       aPlatformLibName = std::string( theLibName, libNameLen-3 ) + ".dylib";
415 #else
416       aPlatformLibName = theLibName;
417 #endif
418     }
419     else
420     {
421       //try to use new format
422 #if defined(WIN32)
423       aPlatformLibName = theLibName;
424       aPlatformLibName += ".dll";
425 #elif defined(__APPLE__)
426       aPlatformLibName = std::string( "lib" ) + std::string( theLibName ) + ".dylib";
427 #else
428       aPlatformLibName = std::string( "lib" ) + std::string( theLibName ) + ".so";
429 #endif
430     }
431   }
432   thePlatformLibName = aPlatformLibName;
433
434   Unexpect aCatch(SALOME_SalomeException);
435   if(MYDEBUG) MESSAGE( "Create Hypothesis <" << theHypName << "> from " << aPlatformLibName);
436
437   typedef GenericHypothesisCreator_i* (*GetHypothesisCreator)(const char* );
438   GenericHypothesisCreator_i* aCreator;
439   try
440   {
441     // check, if creator for this hypothesis type already exists
442     if (myHypCreatorMap.find(string(theHypName)) == myHypCreatorMap.end())
443     {
444       // load plugin library
445       if(MYDEBUG) MESSAGE("Loading server meshers plugin library ...");
446       LibHandle libHandle = LoadLib( aPlatformLibName.c_str() );
447       if (!libHandle)
448       {
449         // report any error, if occurred
450 #ifndef WIN32
451         const char* anError = dlerror();
452         throw(SALOME_Exception(anError));
453 #else
454         throw(SALOME_Exception(LOCALIZED( "Can't load server meshers plugin library" )));
455 #endif
456       }
457
458       // get method, returning hypothesis creator
459       if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
460       GetHypothesisCreator procHandle =
461         (GetHypothesisCreator)GetProc( libHandle, "GetHypothesisCreator" );
462       if (!procHandle)
463       {
464         throw(SALOME_Exception(LOCALIZED("bad hypothesis plugin library")));
465         UnLoadLib(libHandle);
466       }
467
468       // get hypothesis creator
469       if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << theHypName);
470       aCreator = procHandle(theHypName);
471       if (!aCreator)
472       {
473         throw(SALOME_Exception(LOCALIZED("no such a hypothesis in this plugin")));
474       }
475       // map hypothesis creator to a hypothesis name
476       myHypCreatorMap[string(theHypName)] = aCreator;
477       return aCreator;
478     }
479     else
480     {
481       return myHypCreatorMap[string(theHypName)];
482     }
483   }
484   catch (SALOME_Exception& S_ex)
485   {
486     THROW_SALOME_CORBA_EXCEPTION(S_ex.what(), SALOME::BAD_PARAM);
487   }
488   return aCreator;
489 }
490
491 //=============================================================================
492 /*!
493  *  SMESH_Gen_i::createHypothesis
494  *
495  *  Create hypothesis of given type
496  */
497 //=============================================================================
498 SMESH::SMESH_Hypothesis_ptr SMESH_Gen_i::createHypothesis(const char* theHypName,
499                                                           const char* theLibName)
500 {
501   SMESH_Hypothesis_i* myHypothesis_i = 0;
502   SMESH::SMESH_Hypothesis_var hypothesis_i;
503   std::string aPlatformLibName;
504   GenericHypothesisCreator_i* aCreator =
505     getHypothesisCreator(theHypName, theLibName, aPlatformLibName);
506
507   // create a new hypothesis object, store its ref. in studyContext
508   myHypothesis_i = aCreator->Create(myPoa, GetCurrentStudyID(), &myGen);
509   if (myHypothesis_i)
510   {
511     myHypothesis_i->SetLibName( aPlatformLibName.c_str() ); // for persistency assurance
512     CORBA::String_var hypName = myHypothesis_i->GetName();
513     myHypCreatorMap[ hypName.in() ] = aCreator;
514
515     // activate the CORBA servant of hypothesis
516     hypothesis_i = myHypothesis_i->_this();
517     int nextId = RegisterObject( hypothesis_i );
518     if(MYDEBUG) { MESSAGE( "Add hypo to map with id = "<< nextId ); }
519     else        { nextId = 0; } // avoid "unused variable" warning in release mode
520   }
521   return hypothesis_i._retn();
522 }
523
524 //=============================================================================
525 /*!
526  *  SMESH_Gen_i::createMesh
527  *
528  *  Create empty mesh on shape
529  */
530 //=============================================================================
531 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::createMesh()
532   throw ( SALOME::SALOME_Exception )
533 {
534   Unexpect aCatch(SALOME_SalomeException);
535   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::createMesh" );
536
537   // Get or create the GEOM_Client instance
538   try {
539     // create a new mesh object servant, store it in a map in study context
540     SMESH_Mesh_i* meshServant = new SMESH_Mesh_i( GetPOA(), this, GetCurrentStudyID() );
541     // create a new mesh object
542     if(MYDEBUG) MESSAGE("myIsEmbeddedMode " << myIsEmbeddedMode);
543     meshServant->SetImpl( myGen.CreateMesh( GetCurrentStudyID(), myIsEmbeddedMode ));
544
545     // activate the CORBA servant of Mesh
546     SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( meshServant->_this() );
547     int nextId = RegisterObject( mesh );
548     if(MYDEBUG) { MESSAGE( "Add mesh to map with id = "<< nextId); }
549     else        { nextId = 0; } // avoid "unused variable" warning in release mode
550     return mesh._retn();
551   }
552   catch (SALOME_Exception& S_ex) {
553     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
554   }
555   return SMESH::SMESH_Mesh::_nil();
556 }
557
558 //=============================================================================
559 /*!
560  *  SMESH_Gen_i::GetShapeReader
561  *
562  *  Get shape reader
563  */
564 //=============================================================================
565 GEOM_Client* SMESH_Gen_i::GetShapeReader()
566 {
567   // create shape reader if necessary
568   if ( !myShapeReader )
569     myShapeReader = new GEOM_Client(GetContainerRef());
570   ASSERT( myShapeReader );
571   return myShapeReader;
572 }
573
574 //=============================================================================
575 /*!
576  *  SMESH_Gen_i::SetGeomEngine
577  *
578  *  Set GEOM::GEOM_Gen reference
579  */
580 //=============================================================================
581 //GEOM::GEOM_Gen_ptr SMESH_Gen_i::SetGeomEngine( const char* containerLoc )
582 void SMESH_Gen_i::SetGeomEngine( GEOM::GEOM_Gen_ptr geomcompo )
583 {
584   //Engines::Component_ptr temp=GetLCC()->FindOrLoad_Component(containerLoc,"GEOM");
585   //myGeomGen=GEOM::GEOM_Gen::_narrow(temp);
586   myGeomGen=GEOM::GEOM_Gen::_duplicate(geomcompo);
587   //return myGeomGen;
588 }
589
590 //=============================================================================
591 /*!
592  *  SMESH_Gen_i::SetEmbeddedMode
593  *
594  *  Set current mode
595  */
596 //=============================================================================
597
598 void SMESH_Gen_i::SetEmbeddedMode( CORBA::Boolean theMode )
599 {
600   myIsEmbeddedMode = theMode;
601
602   if ( !myIsEmbeddedMode ) {
603     //PAL10867: disable signals catching with "noexcepthandler" option
604     char* envNoCatchSignals = getenv("NOT_INTERCEPT_SIGNALS");
605     if (!envNoCatchSignals || !atoi(envNoCatchSignals))
606     {
607       bool raiseFPE;
608 #ifdef _DEBUG_
609       raiseFPE = true;
610       char* envDisableFPE = getenv("DISABLE_FPE");
611       if (envDisableFPE && atoi(envDisableFPE))
612         raiseFPE = false;
613 #else
614       raiseFPE = false;
615 #endif
616       OSD::SetSignal( raiseFPE );
617     }
618     // else OSD::SetSignal() is called in GUI
619   }
620 }
621
622 //=============================================================================
623 /*!
624  *  SMESH_Gen_i::IsEmbeddedMode
625  *
626  *  Get current mode
627  */
628 //=============================================================================
629
630 CORBA::Boolean SMESH_Gen_i::IsEmbeddedMode()
631 {
632   return myIsEmbeddedMode;
633 }
634
635 //=============================================================================
636 /*!
637  *  SMESH_Gen_i::SetCurrentStudy
638  *
639  *  Set current study
640  */
641 //=============================================================================
642
643 void SMESH_Gen_i::SetCurrentStudy( SALOMEDS::Study_ptr theStudy )
644 {
645   setCurrentStudy( theStudy );
646 }
647
648 void SMESH_Gen_i::setCurrentStudy( SALOMEDS::Study_ptr theStudy,
649                                    bool                theStudyIsBeingClosed)
650 {
651   int curStudyId = GetCurrentStudyID();
652   MESSAGE("curStudyId " << curStudyId);
653   myCurrentStudy = SALOMEDS::Study::_duplicate( theStudy );
654   // create study context, if it doesn't exist and set current study
655   int studyId = GetCurrentStudyID();
656   MESSAGE("studyId " << studyId);
657   if ( myStudyContextMap.find( studyId ) == myStudyContextMap.end() )
658     myStudyContextMap[ studyId ] = new StudyContext;
659
660   // myCurrentStudy may be nil
661   if ( !theStudyIsBeingClosed && !CORBA::is_nil( myCurrentStudy ) ) {
662     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
663     SALOMEDS::SComponent_wrap GEOM_var = myCurrentStudy->FindComponent( "GEOM" );
664     if( !GEOM_var->_is_nil() )
665       aStudyBuilder->LoadWith( GEOM_var, GetGeomEngine() );
666     // NPAL16168, issue 0020210
667     // Let meshes update their data depending on GEOM groups that could change
668     if ( curStudyId != studyId )
669     {
670       MESSAGE("curStudyId " << curStudyId << " studyId " << studyId);
671       CORBA::String_var compDataType = ComponentDataType();
672       SALOMEDS::SComponent_wrap me = myCurrentStudy->FindComponent( compDataType.in() );
673       if ( !me->_is_nil() ) {
674         SALOMEDS::ChildIterator_wrap anIter = myCurrentStudy->NewChildIterator( me );
675         for ( ; anIter->More(); anIter->Next() ) {
676           SALOMEDS::SObject_wrap so = anIter->Value();
677           CORBA::Object_var     ior = SObjectToObject( so );
678           if ( SMESH_Mesh_i*   mesh = SMESH::DownCast<SMESH_Mesh_i*>( ior ))
679             mesh->CheckGeomModif();
680         }
681       }
682     }
683   }
684 }
685
686 //=============================================================================
687 /*!
688  *  SMESH_Gen_i::GetCurrentStudy
689  *
690  *  Get current study
691  */
692 //=============================================================================
693
694 SALOMEDS::Study_ptr SMESH_Gen_i::GetCurrentStudy()
695 {
696   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetCurrentStudy: study Id = " << GetCurrentStudyID() );
697   if ( GetCurrentStudyID() < 0 )
698     return SALOMEDS::Study::_nil();
699   return SALOMEDS::Study::_duplicate( myCurrentStudy );
700 }
701
702 //=============================================================================
703 /*!
704  *  SMESH_Gen_i::GetCurrentStudyContext
705  *
706  *  Get current study context
707  */
708 //=============================================================================
709 StudyContext* SMESH_Gen_i::GetCurrentStudyContext()
710 {
711   if ( !CORBA::is_nil( myCurrentStudy ) &&
712        myStudyContextMap.find( GetCurrentStudyID() ) != myStudyContextMap.end() )
713     return myStudyContextMap[ myCurrentStudy->StudyId() ];
714   else
715     return 0;
716 }
717
718 //=============================================================================
719 /*!
720  *  SMESH_Gen_i::CreateHypothesis
721  *
722  *  Create hypothesis/algorothm of given type and publish it in the study
723  */
724 //=============================================================================
725
726 SMESH::SMESH_Hypothesis_ptr SMESH_Gen_i::CreateHypothesis( const char* theHypName,
727                                                            const char* theLibName )
728   throw ( SALOME::SALOME_Exception )
729 {
730   Unexpect aCatch(SALOME_SalomeException);
731   // Create hypothesis/algorithm
732   SMESH::SMESH_Hypothesis_var hyp = this->createHypothesis( theHypName, theLibName );
733
734   // Publish hypothesis/algorithm in the study
735   if ( CanPublishInStudy( hyp ) ) {
736     SALOMEDS::SObject_wrap aSO = PublishHypothesis( myCurrentStudy, hyp );
737     if ( !aSO->_is_nil() ) {
738       // Update Python script
739       TPythonDump() << aSO << " = " << this << ".CreateHypothesis('"
740                     << theHypName << "', '" << theLibName << "')";
741     }
742   }
743
744   return hyp._retn();
745 }
746
747 //================================================================================
748 /*!
749  * \brief Return a hypothesis holding parameter values corresponding either to the mesh
750  * existing on the given geometry or to size of the geometry.
751  *  \param theHypType - hypothesis type name
752  *  \param theLibName - plugin library name
753  *  \param theMesh - The mesh of interest
754  *  \param theGeom - The shape to get parameter values from
755  *  \retval SMESH::SMESH_Hypothesis_ptr - The returned hypothesis may be the one existing
756  *     in a study and used to compute the mesh, or a temporary one created just to pass
757  *     parameter values
758  */
759 //================================================================================
760
761 SMESH::SMESH_Hypothesis_ptr
762 SMESH_Gen_i::GetHypothesisParameterValues (const char*           theHypType,
763                                            const char*           theLibName,
764                                            SMESH::SMESH_Mesh_ptr theMesh,
765                                            GEOM::GEOM_Object_ptr theGeom,
766                                            CORBA::Boolean        byMesh)
767   throw ( SALOME::SALOME_Exception )
768 {
769   Unexpect aCatch(SALOME_SalomeException);
770   if ( byMesh && CORBA::is_nil( theMesh ) )
771     return SMESH::SMESH_Hypothesis::_nil();
772   if ( byMesh && CORBA::is_nil( theGeom ) )
773     return SMESH::SMESH_Hypothesis::_nil();
774
775   // -----------------------------------------------
776   // find hypothesis used to mesh theGeom
777   // -----------------------------------------------
778
779   // get mesh and shape
780   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
781   TopoDS_Shape shape = GeomObjectToShape( theGeom );
782   if ( byMesh && ( !meshServant || meshServant->NbNodes()==0 || shape.IsNull() ))
783     return SMESH::SMESH_Hypothesis::_nil();
784   ::SMESH_Mesh* mesh = meshServant ? &meshServant->GetImpl() : (::SMESH_Mesh*)0;
785
786   // create a temporary hypothesis to know its dimension
787   SMESH::SMESH_Hypothesis_var tmpHyp = this->createHypothesis( theHypType, theLibName );
788   SMESH_Hypothesis_i* hypServant = SMESH::DownCast<SMESH_Hypothesis_i*>( tmpHyp );
789   if ( !hypServant )
790     return SMESH::SMESH_Hypothesis::_nil();
791   ::SMESH_Hypothesis* hyp = hypServant->GetImpl();
792
793   if ( byMesh ) {
794     // look for a hypothesis of theHypType used to mesh the shape
795     if ( myGen.GetShapeDim( shape ) == hyp->GetDim() )
796     {
797       // check local shape
798       SMESH::ListOfHypothesis_var aHypList = theMesh->GetHypothesisList( theGeom );
799       int nbLocalHyps = aHypList->length();
800       for ( int i = 0; i < nbLocalHyps; i++ ) {
801         CORBA::String_var hypName = aHypList[i]->GetName();
802         if ( strcmp( theHypType, hypName.in() ) == 0 ) // FOUND local!
803           return SMESH::SMESH_Hypothesis::_duplicate( aHypList[i] );
804       }
805       // check super shapes
806       TopTools_ListIteratorOfListOfShape itShape( mesh->GetAncestors( shape ));
807       while ( nbLocalHyps == 0 && itShape.More() ) {
808         GEOM::GEOM_Object_ptr geomObj = ShapeToGeomObject( itShape.Value() );
809         if ( ! CORBA::is_nil( geomObj )) {
810           SMESH::ListOfHypothesis_var aHypList = theMesh->GetHypothesisList( geomObj );
811           nbLocalHyps = aHypList->length();
812           for ( int i = 0; i < nbLocalHyps; i++ )
813             if ( strcmp( theHypType, aHypList[i]->GetName() ) == 0 ) // FOUND global!
814               return SMESH::SMESH_Hypothesis::_duplicate( aHypList[i] );
815         }
816         itShape.Next();
817       }
818     }
819
820     // let the temporary hypothesis find out somehow parameter values by mesh
821     if ( hyp->SetParametersByMesh( mesh, shape ))
822       return SMESH::SMESH_Hypothesis::_duplicate( tmpHyp );
823   }
824   else {
825     double diagonal = 0;
826     if ( mesh )
827       diagonal = mesh->GetShapeDiagonalSize();
828     else
829       diagonal = ::SMESH_Mesh::GetShapeDiagonalSize( shape );
830     ::SMESH_Hypothesis::TDefaults dflts;
831     dflts._elemLength = diagonal / myGen.GetBoundaryBoxSegmentation();
832     dflts._nbSegments = myGen.GetDefaultNbSegments();
833     dflts._shape      = &shape;
834     // let the temporary hypothesis initialize it's values
835     if ( hyp->SetParametersByDefaults( dflts, mesh ))
836       return SMESH::SMESH_Hypothesis::_duplicate( tmpHyp );
837   }
838
839   return SMESH::SMESH_Hypothesis::_nil();
840 }
841
842 //=============================================================================
843 /*!
844  * Returns \c True if a hypothesis is assigned to a sole sub-mesh in a current Study
845  *  \param [in] theHyp - the hypothesis of interest
846  *  \param [out] theMesh - the sole mesh using \a theHyp
847  *  \param [out] theShape - the sole geometry \a theHyp is assigned to
848  *  \return boolean - \c True if \a theMesh and \a theShape are sole using \a theHyp
849  *
850  * If two meshes on same shape have theHyp assigned to the same sub-shape, they are
851  * considered as SAME sub-mesh => result is \c true.
852  * This method ids used to initialize SMESHGUI_GenericHypothesisCreator with
853  * a shape to which an hyp being edited is assigned.
854  */
855 //=============================================================================
856
857 CORBA::Boolean SMESH_Gen_i::GetSoleSubMeshUsingHyp( SMESH::SMESH_Hypothesis_ptr theHyp,
858                                                     SMESH::SMESH_Mesh_out       theMesh,
859                                                     GEOM::GEOM_Object_out       theShape)
860 {
861   if ( GetCurrentStudyID() < 0 || CORBA::is_nil( theHyp ))
862     return false;
863
864   // get Mesh component SO
865   CORBA::String_var compDataType = ComponentDataType();
866   SALOMEDS::SComponent_wrap comp = myCurrentStudy->FindComponent( compDataType.in() );
867   if ( CORBA::is_nil( comp ))
868     return false;
869
870   // look for child SO of meshes
871   SMESH::SMESH_Mesh_var foundMesh;
872   TopoDS_Shape          foundShape;
873   bool                  isSole = true;
874   SALOMEDS::ChildIterator_wrap meshIter = myCurrentStudy->NewChildIterator( comp );
875   for ( ; meshIter->More() && isSole; meshIter->Next() )
876   {
877     SALOMEDS::SObject_wrap curSO = meshIter->Value();
878     CORBA::Object_var        obj = SObjectToObject( curSO );
879     SMESH_Mesh_i*         mesh_i = SMESH::DownCast< SMESH_Mesh_i* >( obj );
880     if ( ! mesh_i )
881       continue;
882
883     // look for a sole shape where theHyp is assigned
884     bool isHypFound = false;
885     const ShapeToHypothesis & s2hyps = mesh_i->GetImpl().GetMeshDS()->GetHypotheses();
886     ShapeToHypothesis::Iterator s2hypsIt( s2hyps );
887     for ( ; s2hypsIt.More() && isSole; s2hypsIt.Next() )
888     {
889       const THypList& hyps = s2hypsIt.Value();
890       THypList::const_iterator h = hyps.begin();
891       for ( ; h != hyps.end(); ++h )
892         if ( (*h)->GetID() == theHyp->GetId() )
893           break;
894       if ( h != hyps.end()) // theHyp found
895       {
896         isHypFound = true;
897         if ( ! foundShape.IsNull() &&
898              ! foundShape.IsSame( s2hypsIt.Key() )) // not a sole sub-shape
899         {
900           foundShape.Nullify();
901           isSole = false;
902           break;
903         }
904         foundShape = s2hypsIt.Key();
905       }
906     } // loop on assigned hyps
907
908     if ( isHypFound && !foundShape.IsNull() ) // a mesh using theHyp is found
909     {
910       if ( !foundMesh->_is_nil() ) // not a sole mesh
911       {
912         if ( !foundMesh->HasShapeToMesh() ||
913              !mesh_i   ->HasShapeToMesh() )
914         {
915           isSole = ( foundMesh->HasShapeToMesh() == mesh_i->HasShapeToMesh() );
916         }
917         else
918         {
919           GEOM::GEOM_Object_var s1 = mesh_i   ->GetShapeToMesh();
920           GEOM::GEOM_Object_var s2 = foundMesh->GetShapeToMesh();
921           isSole = s1->IsSame( s2 );
922         }
923       }
924       foundMesh = SMESH::SMESH_Mesh::_narrow( obj );
925     }
926
927   } // loop on meshes
928
929   if ( isSole &&
930        ! foundMesh->_is_nil() &&
931        ! foundShape.IsNull() )
932   {
933     theMesh  = foundMesh._retn();
934     theShape = ShapeToGeomObject( foundShape );
935     return ( !theMesh->_is_nil() && !theShape->_is_nil() );
936   }
937   return false;
938 }
939
940 //=============================================================================
941 /*!
942  * Sets number of segments per diagonal of boundary box of geometry by which
943  * default segment length of appropriate 1D hypotheses is defined
944  */
945 //=============================================================================
946
947 void SMESH_Gen_i::SetBoundaryBoxSegmentation( CORBA::Long theNbSegments )
948   throw ( SALOME::SALOME_Exception )
949 {
950   if ( theNbSegments > 0 )
951     myGen.SetBoundaryBoxSegmentation( int( theNbSegments ));
952   else
953     THROW_SALOME_CORBA_EXCEPTION( "non-positive number of segments", SALOME::BAD_PARAM );
954 }
955 //=============================================================================
956   /*!
957    * \brief Sets default number of segments per edge
958    */
959 //=============================================================================
960 void SMESH_Gen_i::SetDefaultNbSegments(CORBA::Long theNbSegments)
961   throw ( SALOME::SALOME_Exception )
962 {
963   if ( theNbSegments > 0 )
964     myGen.SetDefaultNbSegments( int(theNbSegments) );
965   else
966     THROW_SALOME_CORBA_EXCEPTION( "non-positive number of segments", SALOME::BAD_PARAM );
967 }
968
969 //=============================================================================
970 /*!
971   Set an option value
972 */
973 //=============================================================================
974
975 void SMESH_Gen_i::SetOption(const char* name, const char* value)
976 {
977   if ( name && value && strlen( value ) > 0 )
978   {
979     string msgToGUI;
980     if ( strcmp(name, "historical_python_dump") == 0 )
981     {
982       myIsHistoricalPythonDump = ( value[0] == '1' || toupper(value[0]) == 'T' ); // 1 || true
983       msgToGUI = "preferences/SMESH/historical_python_dump/";
984       msgToGUI += myIsHistoricalPythonDump ? "true" : "false";
985     }
986     else if ( strcmp(name, "forget_mesh_on_hyp_modif") == 0 )
987     {
988       myToForgetMeshDataOnHypModif = ( value[0] == '1' || toupper(value[0]) == 'T' ); // 1 || true
989       msgToGUI = "preferences/SMESH/forget_mesh_on_hyp_modif/";
990       msgToGUI += myToForgetMeshDataOnHypModif ? "true" : "false";
991     }
992     else if ( strcmp(name, "default_grp_color") == 0 )
993     {
994       vector<int> color;
995       string str = value;
996       // color must be presented as a string of following form:
997       if ( str.at(0) == '#' && str.length() == 7 ) { // hexadecimal color ("#ffaa00", for example)
998         str = str.substr(1);
999         for ( size_t i = 0; i < str.length()/2; i++ )
1000           if ( str.at(i*2) >= '0' && str.at(i*2) <= 'f' && str.at(i*2+1) >= '0' && str.at(i*2+1) <= 'f' )
1001             color.push_back( strtol( str.substr( i*2, 2 ).c_str(), NULL, 16 ) );
1002       }
1003       else if ( value ) { // rgb color ("255,170,0", for example)
1004         string tempValue( value );
1005         char* colorValue = strtok( &tempValue[0], "," );
1006         while ( colorValue != NULL ) {
1007           int c_value = atoi( colorValue );
1008           if ( c_value >= 0 && c_value <= 255 )
1009             color.push_back( c_value );
1010           colorValue = strtok( NULL, "," );
1011         }
1012       }
1013       if ( color.size() == 3 ) { // color must have three valid component
1014         SMESHDS_GroupBase::SetDefaultColor( Quantity_Color( color[0]/255., color[1]/255., color[2]/255., Quantity_TOC_RGB ) );
1015         myDefaultGroupColor = value;
1016         msgToGUI = "preferences/SMESH/default_grp_color/";
1017         msgToGUI += value;
1018       }
1019     }
1020
1021     // update preferences in case if SetOption() is invoked from python console
1022     if ( !msgToGUI.empty() )
1023     {
1024       CORBA::Object_var obj = SMESH_Gen_i::GetNS()->Resolve( "/Kernel/Session" );
1025       SALOME::Session_var session = SALOME::Session::_narrow( obj );
1026       if ( !CORBA::is_nil( session ) )
1027         session->emitMessageOneWay(msgToGUI.c_str());
1028     }
1029   }
1030 }
1031
1032 //=============================================================================
1033 /*!
1034   Return an option value
1035 */
1036 //=============================================================================
1037
1038 char* SMESH_Gen_i::GetOption(const char* name)
1039 {
1040   if ( name )
1041   {
1042     if ( strcmp(name, "historical_python_dump") == 0 )
1043     {
1044       return CORBA::string_dup( myIsHistoricalPythonDump ? "true" : "false" );
1045     }
1046     if ( strcmp(name, "forget_mesh_on_hyp_modif") == 0 )
1047     {
1048       return CORBA::string_dup( myToForgetMeshDataOnHypModif ? "true" : "false" );
1049     }
1050     if ( strcmp(name, "default_grp_color") == 0 )
1051     {
1052       return CORBA::string_dup( myDefaultGroupColor.c_str() );
1053     }
1054   }
1055   return CORBA::string_dup( "" );
1056 }
1057
1058 //=============================================================================
1059 /*!
1060  *  SMESH_Gen_i::CreateMesh
1061  *
1062  *  Create empty mesh on a shape and publish it in the study
1063  */
1064 //=============================================================================
1065
1066 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMesh( GEOM::GEOM_Object_ptr theShapeObject )
1067      throw ( SALOME::SALOME_Exception )
1068 {
1069   Unexpect aCatch(SALOME_SalomeException);
1070   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMesh" );
1071   // create mesh
1072   SMESH::SMESH_Mesh_var mesh = this->createMesh();
1073   // set shape
1074   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
1075   ASSERT( meshServant );
1076   meshServant->SetShape( theShapeObject );
1077
1078   // publish mesh in the study
1079   if ( CanPublishInStudy( mesh ) ) {
1080     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1081     aStudyBuilder->NewCommand();  // There is a transaction
1082     SALOMEDS::SObject_wrap aSO = PublishMesh( myCurrentStudy, mesh.in() );
1083     aStudyBuilder->CommitCommand();
1084     if ( !aSO->_is_nil() ) {
1085       // Update Python script
1086       TPythonDump() << aSO << " = " << this << ".CreateMesh(" << theShapeObject << ")";
1087     }
1088   }
1089
1090   return mesh._retn();
1091 }
1092
1093 //=============================================================================
1094 /*!
1095  *  SMESH_Gen_i::CreateEmptyMesh
1096  *
1097  *  Create empty mesh
1098  */
1099 //=============================================================================
1100
1101 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateEmptyMesh()
1102      throw ( SALOME::SALOME_Exception )
1103 {
1104   Unexpect aCatch(SALOME_SalomeException);
1105   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMesh" );
1106   // create mesh
1107   SMESH::SMESH_Mesh_var mesh = this->createMesh();
1108
1109   // publish mesh in the study
1110   if ( CanPublishInStudy( mesh ) ) {
1111     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1112     aStudyBuilder->NewCommand();  // There is a transaction
1113     SALOMEDS::SObject_wrap aSO = PublishMesh( myCurrentStudy, mesh.in() );
1114     aStudyBuilder->CommitCommand();
1115     if ( !aSO->_is_nil() ) {
1116       // Update Python script
1117       TPythonDump() << aSO << " = " << this << ".CreateEmptyMesh()";
1118     }
1119   }
1120
1121   return mesh._retn();
1122 }
1123
1124 namespace
1125 {
1126   //================================================================================
1127   /*!
1128    * \brief Throws an exception in case if the file can't be read
1129    */
1130   //================================================================================
1131
1132   void checkFileReadable( const char* theFileName ) throw ( SALOME::SALOME_Exception )
1133   {
1134     SMESH_File f ( theFileName );
1135     if ( !f )
1136     {
1137       if ( !f.error().empty() )
1138         THROW_SALOME_CORBA_EXCEPTION( f.error().c_str(), SALOME::BAD_PARAM);
1139
1140       THROW_SALOME_CORBA_EXCEPTION
1141         (( SMESH_Comment("Can't open for reading the file ") << theFileName ).c_str(),
1142          SALOME::BAD_PARAM );
1143     }
1144   }
1145 }
1146
1147 //=============================================================================
1148 /*!
1149  *  SMESH_Gen_i::CreateMeshFromUNV
1150  *
1151  *  Create mesh and import data from UNV file
1152  */
1153 //=============================================================================
1154
1155 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMeshesFromUNV( const char* theFileName )
1156   throw ( SALOME::SALOME_Exception )
1157 {
1158   Unexpect aCatch(SALOME_SalomeException);
1159
1160   checkFileReadable( theFileName );
1161
1162   SMESH::SMESH_Mesh_var aMesh = createMesh();
1163   string aFileName;
1164   // publish mesh in the study
1165   if ( CanPublishInStudy( aMesh ) ) {
1166     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1167     aStudyBuilder->NewCommand();  // There is a transaction
1168     SALOMEDS::SObject_wrap aSO = PublishMesh( myCurrentStudy, aMesh.in(), aFileName.c_str() );
1169     aStudyBuilder->CommitCommand();
1170     if ( !aSO->_is_nil() ) {
1171       // Update Python script
1172       TPythonDump() << aSO << " = " << this << ".CreateMeshesFromUNV(r'" << theFileName << "')";
1173     }
1174   }
1175
1176   SMESH_Mesh_i* aServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( aMesh ).in() );
1177   ASSERT( aServant );
1178   aServant->ImportUNVFile( theFileName );
1179
1180   // Dump creation of groups
1181   SMESH::ListOfGroups_var groups = aServant->GetGroups();
1182
1183   aServant->GetImpl().GetMeshDS()->Modified();
1184   return aMesh._retn();
1185 }
1186
1187 //=============================================================================
1188 /*!
1189  *  SMESH_Gen_i::CreateMeshFromMED
1190  *
1191  *  Create mesh and import data from MED file
1192  */
1193 //=============================================================================
1194
1195 SMESH::mesh_array* SMESH_Gen_i::CreateMeshesFromMEDorSAUV( const char* theFileName,
1196                                                            SMESH::DriverMED_ReadStatus& theStatus,
1197                                                            const char* theCommandNameForPython,
1198                                                            const char* theFileNameForPython)
1199 {
1200 #ifdef WIN32
1201   char bname[ _MAX_FNAME ];
1202   _splitpath( theFileNameForPython, NULL, NULL, bname, NULL );
1203   string aFileName = bname;
1204 #else
1205   string aFileName = basename( const_cast<char *>(theFileNameForPython) );
1206 #endif
1207   // Retrieve mesh names from the file
1208   DriverMED_R_SMESHDS_Mesh myReader;
1209   myReader.SetFile( theFileName );
1210   myReader.SetMeshId( -1 );
1211   Driver_Mesh::Status aStatus;
1212   list<string> aNames = myReader.GetMeshNames(aStatus);
1213   SMESH::mesh_array_var aResult = new SMESH::mesh_array();
1214   theStatus = (SMESH::DriverMED_ReadStatus)aStatus;
1215
1216   { // open a new scope to make aPythonDump die before PythonDump in SMESH_Mesh::GetGroups()
1217
1218   // Python Dump
1219   TPythonDump aPythonDump;
1220   aPythonDump << "([";
1221
1222   if (theStatus == SMESH::DRS_OK) {
1223     SALOMEDS::StudyBuilder_var aStudyBuilder;
1224     if ( GetCurrentStudyID() > -1 )
1225     {
1226       aStudyBuilder = myCurrentStudy->NewBuilder();
1227       aStudyBuilder->NewCommand();  // There is a transaction
1228     }
1229     aResult->length( aNames.size() );
1230     int i = 0;
1231
1232     // Iterate through all meshes and create mesh objects
1233     for ( list<string>::iterator it = aNames.begin(); it != aNames.end(); it++ )
1234     {
1235       // Python Dump
1236       if (i > 0) aPythonDump << ", ";
1237
1238       // create mesh
1239       SMESH::SMESH_Mesh_var mesh = createMesh();
1240
1241       // publish mesh in the study
1242       SALOMEDS::SObject_wrap aSO;
1243       if ( CanPublishInStudy( mesh ) )
1244         // little trick: for MED file theFileName and theFileNameForPython are the same, but they are different for SAUV
1245         // - as names of meshes are stored in MED file, we use them for data publishing
1246         // - as mesh name is not stored in UNV file, we use file name as name of mesh when publishing data
1247         aSO = PublishMesh( myCurrentStudy, mesh.in(), ( theFileName == theFileNameForPython ) ? (*it).c_str() : aFileName.c_str() );
1248
1249       // Python Dump
1250       if ( !aSO->_is_nil() ) {
1251         aPythonDump << aSO;
1252       } else {
1253         aPythonDump << "mesh_" << i;
1254       }
1255
1256       // Read mesh data (groups are published automatically by ImportMEDFile())
1257       SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( mesh ).in() );
1258       ASSERT( meshServant );
1259       SMESH::DriverMED_ReadStatus status1 =
1260         meshServant->ImportMEDFile( theFileName, (*it).c_str() );
1261       if (status1 > theStatus)
1262         theStatus = status1;
1263
1264       aResult[i++] = SMESH::SMESH_Mesh::_duplicate( mesh );
1265       meshServant->GetImpl().GetMeshDS()->Modified();
1266     }
1267     if ( !aStudyBuilder->_is_nil() )
1268       aStudyBuilder->CommitCommand();
1269   }
1270
1271   // Update Python script
1272   aPythonDump << "], status) = " << this << "." << theCommandNameForPython << "(r'" << theFileNameForPython << "')";
1273   }
1274   // Dump creation of groups
1275   for ( CORBA::ULong  i = 0; i < aResult->length(); ++i )
1276     SMESH::ListOfGroups_var groups = aResult[ i ]->GetGroups();
1277
1278   return aResult._retn();
1279 }
1280
1281 SMESH::mesh_array* SMESH_Gen_i::CreateMeshesFromMED( const char* theFileName,
1282                                                      SMESH::DriverMED_ReadStatus& theStatus)
1283   throw ( SALOME::SALOME_Exception )
1284 {
1285   Unexpect aCatch(SALOME_SalomeException);
1286   checkFileReadable( theFileName );
1287
1288   SMESH::mesh_array* result = CreateMeshesFromMEDorSAUV(theFileName, theStatus, "CreateMeshesFromMED", theFileName);
1289   return result;
1290 }
1291
1292 //=============================================================================
1293 /*!
1294  *  SMESH_Gen_i::CreateMeshFromSAUV
1295  *
1296  *  Create mesh and import data from SAUV file
1297  */
1298 //=============================================================================
1299
1300 SMESH::mesh_array* SMESH_Gen_i::CreateMeshesFromSAUV( const char* theFileName,
1301                                                       SMESH::DriverMED_ReadStatus& theStatus)
1302      throw ( SALOME::SALOME_Exception )
1303 {
1304   Unexpect aCatch(SALOME_SalomeException);
1305   checkFileReadable( theFileName );
1306
1307   std::string sauvfilename(theFileName);
1308   std::string medfilename(theFileName);
1309   medfilename += ".med";
1310   std::string cmd;
1311 #ifdef WIN32
1312   cmd = "%PYTHONBIN% ";
1313 #else
1314   cmd = "python ";
1315 #endif
1316   cmd += "-c \"";
1317   cmd += "from medutilities import convert ; convert(r'" + sauvfilename + "', 'GIBI', 'MED', 1, r'" + medfilename + "')";
1318   cmd += "\"";
1319   system(cmd.c_str());
1320   SMESH::mesh_array* result = CreateMeshesFromMEDorSAUV(medfilename.c_str(), theStatus, "CreateMeshesFromSAUV", sauvfilename.c_str());
1321 #ifdef WIN32
1322   cmd = "%PYTHONBIN% ";
1323 #else
1324   cmd = "python ";
1325 #endif
1326   cmd += "-c \"";
1327   cmd += "from medutilities import my_remove ; my_remove(r'" + medfilename + "')";
1328   cmd += "\"";
1329   system(cmd.c_str());
1330   return result;
1331 }
1332
1333 //=============================================================================
1334 /*!
1335  *  SMESH_Gen_i::CreateMeshFromSTL
1336  *
1337  *  Create mesh and import data from STL file
1338  */
1339 //=============================================================================
1340
1341 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMeshesFromSTL( const char* theFileName )
1342   throw ( SALOME::SALOME_Exception )
1343 {
1344   Unexpect aCatch(SALOME_SalomeException);
1345   checkFileReadable( theFileName );
1346
1347   SMESH::SMESH_Mesh_var aMesh = createMesh();
1348   //string aFileName;
1349 #ifdef WIN32
1350   char bname[ _MAX_FNAME ];
1351   _splitpath( theFileName, NULL, NULL, bname, NULL );
1352   string aFileName = bname;
1353 #else
1354   string aFileName = basename( const_cast<char *>(theFileName) );
1355 #endif
1356   // publish mesh in the study
1357   if ( CanPublishInStudy( aMesh ) ) {
1358     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1359     aStudyBuilder->NewCommand();  // There is a transaction
1360     SALOMEDS::SObject_wrap aSO = PublishInStudy
1361       ( myCurrentStudy, SALOMEDS::SObject::_nil(), aMesh.in(), aFileName.c_str() );
1362     aStudyBuilder->CommitCommand();
1363     if ( !aSO->_is_nil() ) {
1364       // Update Python script
1365       TPythonDump() << aSO << " = " << this << ".CreateMeshesFromSTL(r'" << theFileName << "')";
1366     }
1367   }
1368
1369   SMESH_Mesh_i* aServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( aMesh ).in() );
1370   ASSERT( aServant );
1371   aServant->ImportSTLFile( theFileName );
1372   aServant->GetImpl().GetMeshDS()->Modified();
1373   return aMesh._retn();
1374 }
1375
1376 //================================================================================
1377 /*!
1378  * \brief Create meshes and import data from the CGSN file
1379  */
1380 //================================================================================
1381
1382 SMESH::mesh_array* SMESH_Gen_i::CreateMeshesFromCGNS( const char* theFileName,
1383                                                       SMESH::DriverMED_ReadStatus& theStatus)
1384   throw ( SALOME::SALOME_Exception )
1385 {
1386   Unexpect aCatch(SALOME_SalomeException);
1387   checkFileReadable( theFileName );
1388
1389   SMESH::mesh_array_var aResult = new SMESH::mesh_array();
1390
1391 #ifdef WITH_CGNS
1392   // Retrieve nb meshes from the file
1393   DriverCGNS_Read myReader;
1394   myReader.SetFile( theFileName );
1395   Driver_Mesh::Status aStatus;
1396   int nbMeshes = myReader.GetNbMeshes(aStatus);
1397   theStatus = (SMESH::DriverMED_ReadStatus)aStatus;
1398
1399   aResult->length( nbMeshes );
1400
1401   { // open a new scope to make aPythonDump die before PythonDump in SMESH_Mesh::GetGroups()
1402
1403     // Python Dump
1404     TPythonDump aPythonDump;
1405     aPythonDump << "([";
1406
1407     if (theStatus == SMESH::DRS_OK)
1408     {
1409       SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1410       aStudyBuilder->NewCommand();  // There is a transaction
1411
1412       int i = 0;
1413
1414       // Iterate through all meshes and create mesh objects
1415       for ( ; i < nbMeshes; ++i )
1416       {
1417         // Python Dump
1418         if (i > 0) aPythonDump << ", ";
1419
1420         // create mesh
1421         SMESH::SMESH_Mesh_var mesh = createMesh();
1422         aResult[i] = SMESH::SMESH_Mesh::_duplicate( mesh );
1423
1424         // Read mesh data (groups are published automatically by ImportMEDFile())
1425         SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( mesh ).in() );
1426         ASSERT( meshServant );
1427         string meshName;
1428         SMESH::DriverMED_ReadStatus status1 =
1429           meshServant->ImportCGNSFile( theFileName, i, meshName );
1430         if (status1 > theStatus)
1431           theStatus = status1;
1432
1433         meshServant->GetImpl().GetMeshDS()->Modified();
1434         // publish mesh in the study
1435         SALOMEDS::SObject_wrap aSO;
1436         if ( CanPublishInStudy( mesh ) )
1437           aSO = PublishMesh( myCurrentStudy, mesh.in(), meshName.c_str() );
1438
1439         // Python Dump
1440         if ( !aSO->_is_nil() ) {
1441           aPythonDump << aSO;
1442         }
1443         else {
1444           aPythonDump << "mesh_" << i;
1445         }
1446       }
1447       aStudyBuilder->CommitCommand();
1448     }
1449
1450     aPythonDump << "], status) = " << this << ".CreateMeshesFromCGNS(r'" << theFileName << "')";
1451   }
1452   // Dump creation of groups
1453   for ( CORBA::ULong i = 0; i < aResult->length(); ++i )
1454     SMESH::ListOfGroups_var groups = aResult[ i ]->GetGroups();
1455 #else
1456   THROW_SALOME_CORBA_EXCEPTION("CGNS library is unavailable", SALOME::INTERNAL_ERROR);
1457 #endif
1458
1459   return aResult._retn();
1460 }
1461
1462 //================================================================================
1463 /*!
1464  * \brief Create a mesh and import data from a GMF file
1465  */
1466 //================================================================================
1467
1468 SMESH::SMESH_Mesh_ptr
1469 SMESH_Gen_i::CreateMeshesFromGMF( const char*             theFileName,
1470                                   CORBA::Boolean          theMakeRequiredGroups,
1471                                   SMESH::ComputeError_out theError)
1472     throw ( SALOME::SALOME_Exception )
1473 {
1474   Unexpect aCatch(SALOME_SalomeException);
1475   checkFileReadable( theFileName );
1476
1477   SMESH::SMESH_Mesh_var aMesh = createMesh();
1478 #ifdef WIN32
1479   char bname[ _MAX_FNAME ];
1480   _splitpath( theFileName, NULL, NULL, bname, NULL );
1481   string aFileName = bname;
1482 #else
1483   string aFileName = basename( const_cast<char *>(theFileName) );
1484 #endif
1485   // publish mesh in the study
1486   if ( CanPublishInStudy( aMesh ) ) {
1487     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
1488     aStudyBuilder->NewCommand();  // There is a transaction
1489     SALOMEDS::SObject_wrap aSO = PublishInStudy
1490       ( myCurrentStudy, SALOMEDS::SObject::_nil(), aMesh.in(), aFileName.c_str() );
1491     aStudyBuilder->CommitCommand();
1492     if ( !aSO->_is_nil() ) {
1493       // Update Python script
1494       TPythonDump() << "("<< aSO << ", error) = " << this << ".CreateMeshesFromGMF(r'"
1495                     << theFileName << "', "
1496                     << theMakeRequiredGroups << " )";
1497     }
1498   }
1499   SMESH_Mesh_i* aServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( aMesh ).in() );
1500   ASSERT( aServant );
1501   theError = aServant->ImportGMFFile( theFileName, theMakeRequiredGroups );
1502   aServant->GetImpl().GetMeshDS()->Modified();
1503   return aMesh._retn();
1504 }
1505
1506
1507 //=============================================================================
1508 /*!
1509  *  SMESH_Gen_i::IsReadyToCompute
1510  *
1511  *  Returns true if mesh contains enough data to be computed
1512  */
1513 //=============================================================================
1514
1515 CORBA::Boolean SMESH_Gen_i::IsReadyToCompute( SMESH::SMESH_Mesh_ptr theMesh,
1516                                               GEOM::GEOM_Object_ptr theShapeObject )
1517   throw ( SALOME::SALOME_Exception )
1518 {
1519   Unexpect aCatch(SALOME_SalomeException);
1520   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IsReadyToCompute" );
1521
1522   if ( CORBA::is_nil( theShapeObject ) )
1523     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference",
1524                                   SALOME::BAD_PARAM );
1525
1526   if ( CORBA::is_nil( theMesh ) )
1527     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
1528                                   SALOME::BAD_PARAM );
1529
1530   try {
1531     // get mesh servant
1532     SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
1533     ASSERT( meshServant );
1534     if ( meshServant ) {
1535       // get local TopoDS_Shape
1536       TopoDS_Shape myLocShape = GeomObjectToShape( theShapeObject );
1537       // call implementation
1538       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1539       return myGen.CheckAlgoState( myLocMesh, myLocShape );
1540     }
1541   }
1542   catch ( SALOME_Exception& S_ex ) {
1543     INFOS( "catch exception "<< S_ex.what() );
1544   }
1545   return false;
1546 }
1547
1548 //================================================================================
1549 /*!
1550  * \brief  Find SObject for an algo
1551  */
1552 //================================================================================
1553
1554 SALOMEDS::SObject_ptr SMESH_Gen_i::GetAlgoSO(const ::SMESH_Algo* algo)
1555 {
1556   if ( algo ) {
1557     if ( !myCurrentStudy->_is_nil() ) {
1558       // find algo in the study
1559       CORBA::String_var compDataType  = ComponentDataType();
1560       SALOMEDS::SComponent_wrap father = myCurrentStudy->FindComponent( compDataType.in() );
1561       if ( !father->_is_nil() ) {
1562         SALOMEDS::ChildIterator_wrap itBig = myCurrentStudy->NewChildIterator( father );
1563         for ( ; itBig->More(); itBig->Next() ) {
1564           SALOMEDS::SObject_wrap gotBranch = itBig->Value();
1565           if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
1566             SALOMEDS::ChildIterator_wrap algoIt = myCurrentStudy->NewChildIterator( gotBranch );
1567             for ( ; algoIt->More(); algoIt->Next() ) {
1568               SALOMEDS::SObject_wrap algoSO = algoIt->Value();
1569               CORBA::Object_var     algoIOR = SObjectToObject( algoSO );
1570               if ( !CORBA::is_nil( algoIOR )) {
1571                 SMESH_Hypothesis_i* impl = SMESH::DownCast<SMESH_Hypothesis_i*>( algoIOR );
1572                 if ( impl && impl->GetImpl() == algo )
1573                   return algoSO._retn();
1574               }
1575             } // loop on algo SO's
1576             break;
1577           } // if algo tag
1578         } // SMESH component iterator
1579       }
1580     }
1581   }
1582   return SALOMEDS::SObject::_nil();
1583 }
1584
1585 //================================================================================
1586 /*!
1587  * \brief Return errors of mesh computation
1588  */
1589 //================================================================================
1590
1591 SMESH::compute_error_array* SMESH_Gen_i::GetComputeErrors( SMESH::SMESH_Mesh_ptr theMesh,
1592                                                            GEOM::GEOM_Object_ptr theSubObject )
1593   throw ( SALOME::SALOME_Exception )
1594 {
1595   Unexpect aCatch(SALOME_SalomeException);
1596   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetComputeErrors()" );
1597
1598   if ( CORBA::is_nil( theSubObject ) && theMesh->HasShapeToMesh())
1599     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
1600
1601   if ( CORBA::is_nil( theMesh ) )
1602     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1603
1604   SMESH::compute_error_array_var error_array = new SMESH::compute_error_array;
1605   try {
1606     if ( SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh ))
1607     {
1608       TopoDS_Shape shape;
1609       if(theMesh->HasShapeToMesh())
1610         shape = GeomObjectToShape( theSubObject );
1611       else
1612         shape = SMESH_Mesh::PseudoShape();
1613
1614       ::SMESH_Mesh& mesh = meshServant->GetImpl();
1615
1616       error_array->length( mesh.GetMeshDS()->MaxShapeIndex() );
1617       int nbErr = 0;
1618
1619       SMESH_subMesh *sm = mesh.GetSubMesh(shape);
1620       const bool includeSelf = true, complexShapeFirst = true;
1621       SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator(includeSelf,
1622                                                                complexShapeFirst);
1623       while ( smIt->more() )
1624       {
1625         sm = smIt->next();
1626         // if ( sm->GetSubShape().ShapeType() == TopAbs_VERTEX )
1627         //   break;
1628         SMESH_ComputeErrorPtr error = sm->GetComputeError();
1629         if ( error && !error->IsOK() )
1630         {
1631           if ( !( error->myAlgo ) &&
1632                !( error->myAlgo = sm->GetAlgo() ))
1633             continue;
1634           SMESH::ComputeError & errStruct = error_array[ nbErr++ ];
1635           errStruct.code       = -( error->myName < 0 ? error->myName + 1: error->myName ); // -1 -> 0
1636           errStruct.comment    = error->myComment.c_str();
1637           errStruct.subShapeID = sm->GetId();
1638           SALOMEDS::SObject_wrap algoSO = GetAlgoSO( error->myAlgo );
1639           if ( !algoSO->_is_nil() ) {
1640             CORBA::String_var algoName = algoSO->GetName();
1641             errStruct.algoName = algoName;
1642           }
1643           else {
1644             errStruct.algoName = error->myAlgo->GetName();
1645           }
1646           errStruct.hasBadMesh = error->HasBadElems();
1647         }
1648       }
1649       error_array->length( nbErr );
1650     }
1651   }
1652   catch ( SALOME_Exception& S_ex ) {
1653     INFOS( "catch exception "<< S_ex.what() );
1654   }
1655
1656   return error_array._retn();
1657 }
1658
1659 //================================================================================
1660 /*!
1661  * \brief Return mesh elements preventing computation of a subshape
1662  */
1663 //================================================================================
1664
1665 SMESH::MeshPreviewStruct*
1666 SMESH_Gen_i::GetBadInputElements( SMESH::SMESH_Mesh_ptr theMesh,
1667                                   CORBA::Short          theSubShapeID )
1668   throw ( SALOME::SALOME_Exception )
1669 {
1670   Unexpect aCatch(SALOME_SalomeException);
1671   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetBadInputElements()" );
1672
1673   if ( CORBA::is_nil( theMesh ) )
1674     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1675
1676   SMESH::MeshPreviewStruct_var result = new SMESH::MeshPreviewStruct;
1677   try {
1678     // mesh servant
1679     if ( SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh ))
1680     {
1681       // mesh implementation
1682       ::SMESH_Mesh& mesh = meshServant->GetImpl();
1683       // submesh by subshape id
1684       if ( SMESH_subMesh * sm = mesh.GetSubMeshContaining( theSubShapeID ))
1685       {
1686         // compute error
1687         SMESH_ComputeErrorPtr error = sm->GetComputeError();
1688         if ( error && error->HasBadElems() )
1689         {
1690           typedef map<const SMDS_MeshElement*, int > TNode2LocalIDMap;
1691           typedef TNode2LocalIDMap::iterator         TNodeLocalID;
1692
1693           // get nodes of elements and count elements
1694           TNode2LocalIDMap mapNode2LocalID;
1695           list< TNodeLocalID > connectivity;
1696           int i, nbElements = 0, nbConnNodes = 0;
1697
1698           const list<const SMDS_MeshElement*>& badElems =
1699             static_cast<SMESH_BadInputElements*>( error.get() )->myBadElements;
1700           list<const SMDS_MeshElement*>::const_iterator elemIt  = badElems.begin();
1701           list<const SMDS_MeshElement*>::const_iterator elemEnd = badElems.end();
1702           for ( ; elemIt != elemEnd; ++elemIt, ++nbElements )
1703           {
1704             SMDS_ElemIteratorPtr nIt = (*elemIt)->nodesIterator();
1705             while ( nIt->more() )
1706               connectivity.push_back
1707                 ( mapNode2LocalID.insert( make_pair( nIt->next(), ++nbConnNodes)).first );
1708           }
1709           // fill node coords and assign local ids to the nodes
1710           int nbNodes = mapNode2LocalID.size();
1711           result->nodesXYZ.length( nbNodes );
1712           TNodeLocalID node2ID = mapNode2LocalID.begin();
1713           for ( i = 0; i < nbNodes; ++i, ++node2ID ) {
1714             node2ID->second = i;
1715             const SMDS_MeshNode* node = (const SMDS_MeshNode*) node2ID->first;
1716             result->nodesXYZ[i].x = node->X();
1717             result->nodesXYZ[i].y = node->Y();
1718             result->nodesXYZ[i].z = node->Z();
1719           }
1720           // fill connectivity
1721           result->elementConnectivities.length( nbConnNodes );
1722           list< TNodeLocalID >::iterator connIt = connectivity.begin();
1723           for ( i = 0; i < nbConnNodes; ++i, ++connIt ) {
1724             result->elementConnectivities[i] = (*connIt)->second;
1725           }
1726           // fill element types
1727           result->elementTypes.length( nbElements );
1728           for ( i = 0, elemIt = badElems.begin(); i <nbElements; ++i, ++elemIt )
1729           {
1730             const SMDS_MeshElement* elem = *elemIt;
1731             result->elementTypes[i].SMDS_ElementType = (SMESH::ElementType) elem->GetType();
1732             result->elementTypes[i].isPoly           = elem->IsPoly();
1733             result->elementTypes[i].nbNodesInElement = elem->NbNodes();
1734           }
1735         }
1736       }
1737     }
1738   }
1739   catch ( SALOME_Exception& S_ex ) {
1740     INFOS( "catch exception "<< S_ex.what() );
1741   }
1742
1743   return result._retn();
1744 }
1745
1746 //================================================================================
1747 /*!
1748  * \brief Create a group of elements preventing computation of a sub-shape
1749  */
1750 //================================================================================
1751
1752 SMESH::ListOfGroups*
1753 SMESH_Gen_i::MakeGroupsOfBadInputElements( SMESH::SMESH_Mesh_ptr theMesh,
1754                                            CORBA::Short          theSubShapeID,
1755                                            const char*           theGroupName )
1756   throw ( SALOME::SALOME_Exception )
1757 {
1758   Unexpect aCatch(SALOME_SalomeException);
1759
1760   SMESH::ListOfGroups_var groups;
1761
1762   if ( CORBA::is_nil( theMesh ) )
1763     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1764
1765   try {
1766     if ( SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh ))
1767     {
1768       groups = meshServant->MakeGroupsOfBadInputElements( theSubShapeID, theGroupName );
1769       TPythonDump() << groups << " = " << this
1770                     << ".MakeGroupsOfBadInputElements( "
1771                     << theMesh << ", " << theSubShapeID << ", '" << theGroupName << "' )";
1772     }
1773   }
1774   catch ( SALOME_Exception& S_ex ) {
1775     INFOS( "catch exception "<< S_ex.what() );
1776   }
1777   return groups._retn();
1778 }
1779
1780 //================================================================================
1781 /*!
1782  * \brief Returns errors of hypotheses definition
1783  * \param theMesh - the mesh
1784  * \param theSubObject - the main or sub- shape
1785  * \retval SMESH::algo_error_array* - sequence of errors
1786  */
1787 //================================================================================
1788
1789 SMESH::algo_error_array* SMESH_Gen_i::GetAlgoState( SMESH::SMESH_Mesh_ptr theMesh,
1790                                                     GEOM::GEOM_Object_ptr theSubObject )
1791       throw ( SALOME::SALOME_Exception )
1792 {
1793   Unexpect aCatch(SALOME_SalomeException);
1794   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetAlgoState()" );
1795
1796   if ( CORBA::is_nil( theSubObject ) && theMesh->HasShapeToMesh())
1797     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
1798
1799   if ( CORBA::is_nil( theMesh ) )
1800     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1801
1802   SMESH::algo_error_array_var error_array = new SMESH::algo_error_array;
1803   try {
1804     SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
1805     ASSERT( meshServant );
1806     if ( meshServant ) {
1807       TopoDS_Shape myLocShape;
1808       if(theMesh->HasShapeToMesh())
1809         myLocShape = GeomObjectToShape( theSubObject );
1810       else
1811         myLocShape = SMESH_Mesh::PseudoShape();
1812
1813       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1814       list< ::SMESH_Gen::TAlgoStateError > error_list;
1815       list< ::SMESH_Gen::TAlgoStateError >::iterator error;
1816       // call ::SMESH_Gen::GetAlgoState()
1817       myGen.GetAlgoState( myLocMesh, myLocShape, error_list );
1818       error_array->length( error_list.size() );
1819       int i = 0;
1820       for ( error = error_list.begin(); error != error_list.end(); ++error )
1821       {
1822         // fill AlgoStateError structure
1823         SMESH::AlgoStateError & errStruct = error_array[ i++ ];
1824         errStruct.state        = SMESH_Mesh_i::ConvertHypothesisStatus( error->_name );
1825         errStruct.algoDim      = error->_algoDim;
1826         errStruct.isGlobalAlgo = error->_isGlobalAlgo;
1827         errStruct.algoName     = "";
1828         SALOMEDS::SObject_wrap algoSO = GetAlgoSO( error->_algo );
1829         if ( !algoSO->_is_nil() ) {
1830           CORBA::String_var algoName = algoSO->GetName();
1831           errStruct.algoName = algoName.in();
1832         }
1833       }
1834     }
1835   }
1836   catch ( SALOME_Exception& S_ex ) {
1837     INFOS( "catch exception "<< S_ex.what() );
1838   }
1839   return error_array._retn();
1840 }
1841
1842 //=============================================================================
1843 /*!
1844  *  SMESH_Gen_i::GetSubShapesId
1845  *
1846  *  Get sub-shapes unique ID's list
1847  */
1848 //=============================================================================
1849
1850 SMESH::long_array*
1851 SMESH_Gen_i::GetSubShapesId( GEOM::GEOM_Object_ptr      theMainShapeObject,
1852                              const SMESH::object_array& theListOfSubShapeObject )
1853   throw ( SALOME::SALOME_Exception )
1854 {
1855   Unexpect aCatch(SALOME_SalomeException);
1856   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetSubShapesId" );
1857
1858   SMESH::long_array_var shapesId = new SMESH::long_array;
1859   set<int> setId;
1860
1861   if ( CORBA::is_nil( theMainShapeObject ) )
1862     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
1863
1864   try
1865   {
1866     TopoDS_Shape myMainShape = GeomObjectToShape(theMainShapeObject);
1867     TopTools_IndexedMapOfShape myIndexToShape;
1868     TopExp::MapShapes(myMainShape,myIndexToShape);
1869
1870     for ( CORBA::ULong i = 0; i < theListOfSubShapeObject.length(); i++ )
1871     {
1872       GEOM::GEOM_Object_var aShapeObject
1873         = GEOM::GEOM_Object::_narrow(theListOfSubShapeObject[i]);
1874       if ( CORBA::is_nil( aShapeObject ) )
1875         THROW_SALOME_CORBA_EXCEPTION ("bad shape object reference",     \
1876                                       SALOME::BAD_PARAM );
1877
1878       TopoDS_Shape locShape  = GeomObjectToShape(aShapeObject);
1879       for (TopExp_Explorer exp(locShape,TopAbs_FACE); exp.More(); exp.Next())
1880       {
1881         const TopoDS_Face& F = TopoDS::Face(exp.Current());
1882         setId.insert(myIndexToShape.FindIndex(F));
1883         if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(F));
1884       }
1885       for (TopExp_Explorer exp(locShape,TopAbs_EDGE); exp.More(); exp.Next())
1886       {
1887         const TopoDS_Edge& E = TopoDS::Edge(exp.Current());
1888         setId.insert(myIndexToShape.FindIndex(E));
1889         if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(E));
1890       }
1891       for (TopExp_Explorer exp(locShape,TopAbs_VERTEX); exp.More(); exp.Next())
1892       {
1893         const TopoDS_Vertex& V = TopoDS::Vertex(exp.Current());
1894         setId.insert(myIndexToShape.FindIndex(V));
1895         if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(V));
1896       }
1897     }
1898     shapesId->length(setId.size());
1899     set<int>::iterator iind;
1900     int i=0;
1901     for (iind = setId.begin(); iind != setId.end(); iind++)
1902     {
1903       if(MYDEBUG) SCRUTE((*iind));
1904       shapesId[i] = (*iind);
1905       if(MYDEBUG) SCRUTE(shapesId[i]);
1906       i++;
1907     }
1908   }
1909   catch (SALOME_Exception& S_ex)
1910   {
1911     THROW_SALOME_CORBA_EXCEPTION(S_ex.what(), SALOME::BAD_PARAM);
1912   }
1913
1914   return shapesId._retn();
1915 }
1916
1917 //=============================================================================
1918 /*!
1919  *  SMESH_Gen_i::Compute
1920  *
1921  *  Compute mesh on a shape
1922  */
1923 //=============================================================================
1924
1925 CORBA::Boolean SMESH_Gen_i::Compute( SMESH::SMESH_Mesh_ptr theMesh,
1926                                      GEOM::GEOM_Object_ptr theShapeObject )
1927      throw ( SALOME::SALOME_Exception )
1928 {
1929   //MEMOSTAT;
1930   Unexpect aCatch(SALOME_SalomeException);
1931   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Compute" );
1932
1933   if ( CORBA::is_nil( theShapeObject ) && theMesh->HasShapeToMesh())
1934     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference",
1935                                   SALOME::BAD_PARAM );
1936
1937   if ( CORBA::is_nil( theMesh ) )
1938     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
1939                                   SALOME::BAD_PARAM );
1940
1941   // Update Python script
1942   TPythonDump() << "isDone = " << this << ".Compute( "
1943                 << theMesh << ", " << theShapeObject << ")";
1944
1945   try {
1946     // get mesh servant
1947     SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
1948     ASSERT( meshServant );
1949     if ( meshServant ) {
1950       meshServant->Load();
1951       // NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
1952       meshServant->CheckGeomModif();
1953       // get local TopoDS_Shape
1954       TopoDS_Shape myLocShape;
1955       if(theMesh->HasShapeToMesh())
1956         myLocShape = GeomObjectToShape( theShapeObject );
1957       else
1958         myLocShape = SMESH_Mesh::PseudoShape();
1959       // call implementation compute
1960       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1961       myGen.PrepareCompute( myLocMesh, myLocShape );
1962       int how = ::SMESH_Gen::COMPACT_MESH;
1963       if ( myLocShape != myLocMesh.GetShapeToMesh() ) // compute a sub-mesh
1964         how |= ::SMESH_Gen::SHAPE_ONLY;
1965       bool ok = myGen.Compute( myLocMesh, myLocShape, how );
1966       meshServant->CreateGroupServants(); // algos can create groups (issue 0020918)
1967       myLocMesh.GetMeshDS()->Modified();
1968       if ( ok )
1969         HighLightInvalid( theMesh, /*isInvalid=*/false );
1970       return ok;
1971     }
1972   }
1973   catch ( std::bad_alloc ) {
1974     INFOS( "Compute(): lack of memory" );
1975   }
1976   catch ( SALOME_Exception& S_ex ) {
1977     INFOS( "Compute(): catch exception "<< S_ex.what() );
1978   }
1979   catch ( ... ) {
1980     INFOS( "Compute(): unknown exception " );
1981   }
1982   return false;
1983 }
1984
1985 //=============================================================================
1986 /*!
1987  *  SMESH_Gen_i::CancelCompute
1988  *
1989  *  Cancel Compute mesh on a shape
1990  */
1991 //=============================================================================
1992
1993 void SMESH_Gen_i::CancelCompute( SMESH::SMESH_Mesh_ptr theMesh,
1994                                  GEOM::GEOM_Object_ptr theShapeObject )
1995 {
1996   SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
1997   ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1998   TopoDS_Shape myLocShape;
1999   if(theMesh->HasShapeToMesh())
2000     myLocShape = GeomObjectToShape( theShapeObject );
2001   else
2002     myLocShape = SMESH_Mesh::PseudoShape();
2003   myGen.CancelCompute( myLocMesh, myLocShape);
2004 }
2005
2006 //=============================================================================
2007 /*!
2008  *  SMESH_Gen_i::Precompute
2009  *
2010  *  Compute mesh as preview till indicated dimension on shape
2011  */
2012 //=============================================================================
2013
2014 SMESH::MeshPreviewStruct* SMESH_Gen_i::Precompute( SMESH::SMESH_Mesh_ptr theMesh,
2015                                                    GEOM::GEOM_Object_ptr theShapeObject,
2016                                                    SMESH::Dimension      theDimension,
2017                                                    SMESH::long_array&    theShapesId)
2018      throw ( SALOME::SALOME_Exception )
2019 {
2020   Unexpect aCatch(SALOME_SalomeException);
2021   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Precompute" );
2022
2023   if ( CORBA::is_nil( theShapeObject ) && theMesh->HasShapeToMesh())
2024     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference",
2025                                   SALOME::BAD_PARAM );
2026
2027   if ( CORBA::is_nil( theMesh ) )
2028     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
2029                                   SALOME::BAD_PARAM );
2030
2031   SMESH::MeshPreviewStruct_var result = new SMESH::MeshPreviewStruct;
2032   try {
2033     // get mesh servant
2034     SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
2035     meshServant->Load();
2036     ASSERT( meshServant );
2037     if ( meshServant ) {
2038       // NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
2039       meshServant->CheckGeomModif();
2040       // get local TopoDS_Shape
2041       TopoDS_Shape myLocShape;
2042       if(theMesh->HasShapeToMesh())
2043         myLocShape = GeomObjectToShape( theShapeObject );
2044       else
2045         return result._retn();;
2046
2047       // call implementation compute
2048       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
2049       TSetOfInt shapeIds;
2050       ::MeshDimension aDim = (MeshDimension)theDimension;
2051       if ( myGen.Compute( myLocMesh, myLocShape, ::SMESH_Gen::COMPACT_MESH, aDim, &shapeIds ) )
2052       {
2053         int nbShapeId = shapeIds.size();
2054         theShapesId.length( nbShapeId );
2055         // iterates on shapes and collect mesh entities into mesh preview
2056         TSetOfInt::const_iterator idIt = shapeIds.begin();
2057         TSetOfInt::const_iterator idEnd = shapeIds.end();
2058         std::map< int, int > mapOfShIdNb;
2059         std::set< SMESH_TLink > setOfEdge;
2060         std::list< SMDSAbs_ElementType > listOfElemType;
2061         typedef map<const SMDS_MeshElement*, int > TNode2LocalIDMap;
2062         typedef TNode2LocalIDMap::iterator         TNodeLocalID;
2063         TNode2LocalIDMap mapNode2LocalID;
2064         list< TNodeLocalID > connectivity;
2065         int i, nbConnNodes = 0;
2066         std::set< const SMESH_subMesh* > setOfVSubMesh;
2067         // iterates on shapes
2068         for ( ; idIt != idEnd; idIt++ )
2069         {
2070           if ( mapOfShIdNb.find( *idIt ) != mapOfShIdNb.end() )
2071             continue;
2072           SMESH_subMesh* sm = myLocMesh.GetSubMeshContaining(*idIt);
2073           if ( !sm || !sm->IsMeshComputed() )
2074             continue;
2075
2076           const TopoDS_Shape& aSh = sm->GetSubShape();
2077           const int shDim = myGen.GetShapeDim( aSh );
2078           if ( shDim < 1 || shDim > theDimension )
2079             continue;
2080
2081           mapOfShIdNb[ *idIt ] = 0;
2082           theShapesId[ mapOfShIdNb.size() - 1 ] = *idIt;
2083
2084           SMESHDS_SubMesh* smDS = sm->GetSubMeshDS();
2085           if ( !smDS ) continue;
2086
2087           if ( theDimension == SMESH::DIM_2D )
2088           {
2089             SMDS_ElemIteratorPtr faceIt = smDS->GetElements();
2090             while ( faceIt->more() )
2091             {
2092               const SMDS_MeshElement* face = faceIt->next();
2093               int aNbNode = face->NbNodes();
2094               if ( aNbNode > 4 )
2095                 aNbNode /= 2; // do not take into account additional middle nodes
2096
2097               SMDS_MeshNode* node1 = (SMDS_MeshNode*)face->GetNode( 0 );
2098               for ( int nIndx = 0; nIndx < aNbNode; nIndx++ )
2099               {
2100                 SMDS_MeshNode* node2 = (SMDS_MeshNode*)face->GetNode( nIndx+1 < aNbNode ? nIndx+1 : 0 );
2101                 if ( setOfEdge.insert( SMESH_TLink ( node1, node2 ) ).second )
2102                 {
2103                   listOfElemType.push_back( SMDSAbs_Edge );
2104                   connectivity.push_back
2105                     ( mapNode2LocalID.insert( make_pair( node1, ++nbConnNodes)).first );
2106                   connectivity.push_back
2107                     ( mapNode2LocalID.insert( make_pair( node2, ++nbConnNodes)).first );
2108                 }
2109                 node1 = node2;
2110               }
2111             }
2112           }
2113           else if ( theDimension == SMESH::DIM_1D )
2114           {
2115             SMDS_NodeIteratorPtr nodeIt = smDS->GetNodes();
2116             while ( nodeIt->more() )
2117             {
2118               listOfElemType.push_back( SMDSAbs_Node );
2119               connectivity.push_back
2120                 ( mapNode2LocalID.insert( make_pair( nodeIt->next(), ++nbConnNodes)).first );
2121             }
2122             // add corner nodes by first vertex from edge
2123             SMESH_subMeshIteratorPtr edgeSmIt =
2124               sm->getDependsOnIterator(/*includeSelf*/false,
2125                                        /*complexShapeFirst*/false);
2126             while ( edgeSmIt->more() )
2127             {
2128               SMESH_subMesh* vertexSM = edgeSmIt->next();
2129               // check that vertex is not already treated
2130               if ( !setOfVSubMesh.insert( vertexSM ).second )
2131                 continue;
2132               if ( vertexSM->GetSubShape().ShapeType() != TopAbs_VERTEX )
2133                 continue;
2134
2135               const SMESHDS_SubMesh* vertexSmDS = vertexSM->GetSubMeshDS();
2136               SMDS_NodeIteratorPtr nodeIt = vertexSmDS->GetNodes();
2137               while ( nodeIt->more() )
2138               {
2139                 listOfElemType.push_back( SMDSAbs_Node );
2140                 connectivity.push_back
2141                   ( mapNode2LocalID.insert( make_pair( nodeIt->next(), ++nbConnNodes)).first );
2142               }
2143             }
2144           }
2145         }
2146
2147         // fill node coords and assign local ids to the nodes
2148         int nbNodes = mapNode2LocalID.size();
2149         result->nodesXYZ.length( nbNodes );
2150         TNodeLocalID node2ID = mapNode2LocalID.begin();
2151         for ( i = 0; i < nbNodes; ++i, ++node2ID ) {
2152           node2ID->second = i;
2153           const SMDS_MeshNode* node = (const SMDS_MeshNode*) node2ID->first;
2154           result->nodesXYZ[i].x = node->X();
2155           result->nodesXYZ[i].y = node->Y();
2156           result->nodesXYZ[i].z = node->Z();
2157         }
2158         // fill connectivity
2159         result->elementConnectivities.length( nbConnNodes );
2160         list< TNodeLocalID >::iterator connIt = connectivity.begin();
2161         for ( i = 0; i < nbConnNodes; ++i, ++connIt ) {
2162           result->elementConnectivities[i] = (*connIt)->second;
2163         }
2164
2165         // fill element types
2166         result->elementTypes.length( listOfElemType.size() );
2167         std::list< SMDSAbs_ElementType >::const_iterator typeIt = listOfElemType.begin();
2168         std::list< SMDSAbs_ElementType >::const_iterator typeEnd = listOfElemType.end();
2169         for ( i = 0; typeIt != typeEnd; ++i, ++typeIt )
2170         {
2171           SMDSAbs_ElementType elemType = *typeIt;
2172           result->elementTypes[i].SMDS_ElementType = (SMESH::ElementType)elemType;
2173           result->elementTypes[i].isPoly           = false;
2174           result->elementTypes[i].nbNodesInElement = elemType == SMDSAbs_Edge ? 2 : 1;
2175         }
2176
2177         // correct number of shapes
2178         theShapesId.length( mapOfShIdNb.size() );
2179       }
2180     }
2181   }
2182   catch ( std::bad_alloc ) {
2183     INFOS( "Precompute(): lack of memory" );
2184   }
2185   catch ( SALOME_Exception& S_ex ) {
2186     INFOS( "Precompute(): catch exception "<< S_ex.what() );
2187   }
2188   catch ( ... ) {
2189     INFOS( "Precompute(): unknown exception " );
2190   }
2191   return result._retn();
2192 }
2193
2194
2195 //=============================================================================
2196 /*!
2197  *  SMESH_Gen_i::Evaluate
2198  *
2199  *  Evaluate mesh on a shape
2200  */
2201 //=============================================================================
2202
2203 SMESH::long_array* SMESH_Gen_i::Evaluate(SMESH::SMESH_Mesh_ptr theMesh,
2204                                          GEOM::GEOM_Object_ptr theShapeObject)
2205 //                                     SMESH::long_array& theNbElems)
2206      throw ( SALOME::SALOME_Exception )
2207 {
2208   Unexpect aCatch(SALOME_SalomeException);
2209   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Evaluate" );
2210
2211   if ( CORBA::is_nil( theShapeObject ) && theMesh->HasShapeToMesh())
2212     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference",
2213                                   SALOME::BAD_PARAM );
2214
2215   if ( CORBA::is_nil( theMesh ) )
2216     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
2217                                   SALOME::BAD_PARAM );
2218
2219   SMESH::long_array_var nbels = new SMESH::long_array;
2220   nbels->length(SMESH::Entity_Last);
2221   int i = SMESH::Entity_Node;
2222   for (; i < SMESH::Entity_Last; i++)
2223     nbels[i] = 0;
2224
2225   // Update Python script
2226   TPythonDump() << "theNbElems = " << this << ".Evaluate( "
2227                 << theMesh << ", " << theShapeObject << ")";
2228
2229   try {
2230     // get mesh servant
2231     SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
2232     ASSERT( meshServant );
2233     if ( meshServant ) {
2234       meshServant->Load();
2235       // NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
2236       meshServant->CheckGeomModif();
2237       // get local TopoDS_Shape
2238       TopoDS_Shape myLocShape;
2239       if(theMesh->HasShapeToMesh())
2240         myLocShape = GeomObjectToShape( theShapeObject );
2241       else
2242         myLocShape = SMESH_Mesh::PseudoShape();
2243       // call implementation compute
2244       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
2245       MapShapeNbElems aResMap;
2246       /*CORBA::Boolean ret =*/ myGen.Evaluate( myLocMesh, myLocShape, aResMap);
2247       MapShapeNbElemsItr anIt = aResMap.begin();
2248       for(; anIt!=aResMap.end(); anIt++) {
2249         const vector<int>& aVec = (*anIt).second;
2250         for ( i = SMESH::Entity_Node; i < (int)aVec.size(); i++ ) {
2251           int nbElem = aVec[i];
2252           if ( nbElem < 0 ) // algo failed, check that it has reported a message
2253           {
2254             SMESH_subMesh*            sm = anIt->first;
2255             SMESH_ComputeErrorPtr& error = sm->GetComputeError();
2256             const SMESH_Algo*       algo = sm->GetAlgo();
2257             if ( (algo && !error.get()) || error->IsOK() )
2258               error.reset( new SMESH_ComputeError( COMPERR_ALGO_FAILED,"Failed to evaluate",algo));
2259           }
2260           else
2261           {
2262             nbels[i] += aVec[i];
2263           }
2264         }
2265       }
2266       return nbels._retn();
2267     }
2268   }
2269   catch ( std::bad_alloc ) {
2270     INFOS( "Evaluate(): lack of memory" );
2271   }
2272   catch ( SALOME_Exception& S_ex ) {
2273     INFOS( "Evaluate(): catch exception "<< S_ex.what() );
2274   }
2275   catch ( ... ) {
2276     INFOS( "Evaluate(): unknown exception " );
2277   }
2278
2279   return nbels._retn();
2280 }
2281
2282 //================================================================================
2283 /*!
2284  * \brief Return geometrical object the given element is built on
2285  *  \param theMesh - the mesh the element is in
2286  *  \param theElementID - the element ID
2287  *  \param theGeomName - the name of the result geom object if it is not yet published
2288  *  \retval GEOM::GEOM_Object_ptr - the found or just published geom object (no need to UnRegister())
2289  */
2290 //================================================================================
2291
2292 GEOM::GEOM_Object_ptr
2293 SMESH_Gen_i::GetGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
2294                                        CORBA::Long            theElementID,
2295                                        const char*            theGeomName)
2296   throw ( SALOME::SALOME_Exception )
2297 {
2298   Unexpect aCatch(SALOME_SalomeException);
2299
2300   GEOM::GEOM_Object_wrap geom = FindGeometryByMeshElement(theMesh, theElementID);
2301   if ( !geom->_is_nil() ) {
2302     GEOM::GEOM_Object_var mainShape = theMesh->GetShapeToMesh();
2303     GEOM::GEOM_Gen_ptr    geomGen   = GetGeomEngine();
2304
2305     // try to find the corresponding SObject
2306     SALOMEDS::SObject_wrap SObj = ObjectToSObject( myCurrentStudy, geom.in() );
2307     if ( SObj->_is_nil() ) // submesh can be not found even if published
2308     {
2309       // try to find published submesh
2310       GEOM::ListOfLong_var list = geom->GetSubShapeIndices();
2311       if ( !geom->IsMainShape() && list->length() == 1 ) {
2312         SALOMEDS::SObject_wrap mainSO = ObjectToSObject( myCurrentStudy, mainShape );
2313         SALOMEDS::ChildIterator_wrap it;
2314         if ( !mainSO->_is_nil() ) {
2315           it = myCurrentStudy->NewChildIterator( mainSO );
2316         }
2317         if ( !it->_is_nil() ) {
2318           for ( it->InitEx(true); it->More(); it->Next() ) {
2319             SALOMEDS::SObject_wrap      so = it->Value();
2320             CORBA::Object_var         obj = SObjectToObject( so );
2321             GEOM::GEOM_Object_var subGeom = GEOM::GEOM_Object::_narrow( obj );
2322             if ( !subGeom->_is_nil() ) {
2323               GEOM::ListOfLong_var subList = subGeom->GetSubShapeIndices();
2324               if ( subList->length() == 1 && list[0] == subList[0] ) {
2325                 SObj = so;
2326                 geom = subGeom;
2327                 break;
2328               }
2329             }
2330           }
2331         }
2332       }
2333     }
2334     if ( SObj->_is_nil() ) // publish a new subshape
2335       SObj = geomGen->AddInStudy( myCurrentStudy, geom, theGeomName, mainShape );
2336
2337     // return only published geometry
2338     if ( !SObj->_is_nil() ) {
2339       //return geom._retn(); -- servant of geom must be UnRegister()ed;
2340       CORBA::Object_var    obj = SObjectToObject( SObj );
2341       GEOM::GEOM_Object_var go = GEOM::GEOM_Object::_narrow( obj );
2342       return go._retn();
2343     }
2344   }
2345   return GEOM::GEOM_Object::_nil();
2346 }
2347
2348 //================================================================================
2349 /*!
2350  * \brief Return geometrical object the given element is built on.
2351  *  \param theMesh - the mesh the element is in
2352  *  \param theElementID - the element ID
2353  *  \retval GEOM::GEOM_Object_ptr - the found or created (UnRegister()!) geom object
2354  */
2355 //================================================================================
2356
2357 GEOM::GEOM_Object_ptr
2358 SMESH_Gen_i::FindGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
2359                                         CORBA::Long            theElementID)
2360   throw ( SALOME::SALOME_Exception )
2361 {
2362   Unexpect aCatch(SALOME_SalomeException);
2363   if ( CORBA::is_nil( theMesh ) )
2364     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference", SALOME::BAD_PARAM );
2365
2366   GEOM::GEOM_Object_var mainShape = theMesh->GetShapeToMesh();
2367   GEOM::GEOM_Gen_ptr    geomGen   = GetGeomEngine();
2368
2369   // get a core mesh DS
2370   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
2371   if ( meshServant && !geomGen->_is_nil() && !mainShape->_is_nil() )
2372   {
2373     ::SMESH_Mesh & mesh = meshServant->GetImpl();
2374     SMESHDS_Mesh* meshDS = mesh.GetMeshDS();
2375     // find the element in mesh
2376     if ( const SMDS_MeshElement * elem = meshDS->FindElement( theElementID ) ) {
2377       // find a shape id by the element
2378       if ( int shapeID = ::SMESH_MeshEditor( &mesh ).FindShape( elem )) {
2379         // get a geom object by the shape id
2380         GEOM::GEOM_Object_var geom = ShapeToGeomObject( meshDS->IndexToShape( shapeID ));
2381         if ( geom->_is_nil() ) {
2382           // try to find a published sub-shape
2383           SALOMEDS::SObject_wrap mainSO = ObjectToSObject( myCurrentStudy, mainShape );
2384           SALOMEDS::ChildIterator_wrap it;
2385           if ( !mainSO->_is_nil() ) {
2386             it = myCurrentStudy->NewChildIterator( mainSO );
2387           }
2388           if ( !it->_is_nil() ) {
2389             for ( it->InitEx(true); it->More(); it->Next() ) {
2390               SALOMEDS::SObject_wrap      so = it->Value();
2391               CORBA::Object_var         obj = SObjectToObject( so );
2392               GEOM::GEOM_Object_var subGeom = GEOM::GEOM_Object::_narrow( obj );
2393               if ( !subGeom->_is_nil() ) {
2394                 GEOM::ListOfLong_var subList = subGeom->GetSubShapeIndices();
2395                 if ( subList->length() == 1 && shapeID == subList[0] ) {
2396                   geom = subGeom;
2397                   break;
2398                 }
2399               }
2400             }
2401           }
2402         }
2403         if ( geom->_is_nil() ) {
2404           // explode
2405           GEOM::GEOM_IShapesOperations_wrap op =
2406             geomGen->GetIShapesOperations( GetCurrentStudyID() );
2407           if ( !op->_is_nil() )
2408             geom = op->GetSubShape( mainShape, shapeID );
2409         }
2410         else {
2411           geom->Register();
2412         }
2413         if ( !geom->_is_nil() ) {
2414           GeomObjectToShape( geom ); // let geom client remember the found shape
2415           return geom._retn();
2416         }
2417       }
2418     }
2419   }
2420   return GEOM::GEOM_Object::_nil();
2421 }
2422
2423 //================================================================================
2424 /*!
2425  *  SMESH_Gen_i::Concatenate
2426  *
2427  *  Concatenate the given meshes into one mesh
2428  */
2429 //================================================================================
2430
2431 SMESH::SMESH_Mesh_ptr
2432 SMESH_Gen_i::Concatenate(const SMESH::ListOfIDSources& theMeshesArray,
2433                          CORBA::Boolean                theUniteIdenticalGroups,
2434                          CORBA::Boolean                theMergeNodesAndElements,
2435                          CORBA::Double                 theMergeTolerance)
2436   throw ( SALOME::SALOME_Exception )
2437 {
2438   return ConcatenateCommon(theMeshesArray,
2439                            theUniteIdenticalGroups,
2440                            theMergeNodesAndElements,
2441                            theMergeTolerance,
2442                            false);
2443 }
2444
2445 //================================================================================
2446 /*!
2447  *  SMESH_Gen_i::ConcatenateWithGroups
2448  *
2449  *  Concatenate the given meshes into one mesh
2450  *  Create the groups of all elements from initial meshes
2451  */
2452 //================================================================================
2453
2454 SMESH::SMESH_Mesh_ptr
2455 SMESH_Gen_i::ConcatenateWithGroups(const SMESH::ListOfIDSources& theMeshesArray,
2456                                    CORBA::Boolean                theUniteIdenticalGroups,
2457                                    CORBA::Boolean                theMergeNodesAndElements,
2458                                    CORBA::Double                 theMergeTolerance)
2459   throw ( SALOME::SALOME_Exception )
2460 {
2461   return ConcatenateCommon(theMeshesArray,
2462                            theUniteIdenticalGroups,
2463                            theMergeNodesAndElements,
2464                            theMergeTolerance,
2465                            true);
2466 }
2467
2468 //================================================================================
2469 /*!
2470  *  SMESH_Gen_i::ConcatenateCommon
2471  *
2472  *  Concatenate the given meshes into one mesh
2473  */
2474 //================================================================================
2475
2476 SMESH::SMESH_Mesh_ptr
2477 SMESH_Gen_i::ConcatenateCommon(const SMESH::ListOfIDSources& theMeshesArray,
2478                                CORBA::Boolean                theUniteIdenticalGroups,
2479                                CORBA::Boolean                theMergeNodesAndElements,
2480                                CORBA::Double                 theMergeTolerance,
2481                                CORBA::Boolean                theCommonGroups)
2482   throw ( SALOME::SALOME_Exception )
2483 {
2484   std::unique_ptr< TPythonDump > pPythonDump( new TPythonDump );
2485   TPythonDump& pythonDump = *pPythonDump; // prevent dump of called methods
2486
2487   // create mesh
2488   SMESH::SMESH_Mesh_var newMesh = CreateEmptyMesh();
2489   SMESH_Mesh_i*         newImpl = SMESH::DownCast<SMESH_Mesh_i*>( newMesh );
2490   if ( !newImpl ) return newMesh._retn();
2491
2492   ::SMESH_Mesh&   locMesh = newImpl->GetImpl();
2493   SMESHDS_Mesh* newMeshDS = locMesh.GetMeshDS();
2494
2495   typedef std::list<SMESH::SMESH_Group_var>          TListOfNewGroups;
2496   typedef std::pair<string, SMESH::ElementType >     TNameAndType;
2497   typedef std::map< TNameAndType, TListOfNewGroups > TGroupsMap;
2498   TGroupsMap       groupsMap;
2499   TListOfNewGroups listOfNewGroups;
2500
2501   ::SMESH_MeshEditor               newEditor( &locMesh );
2502   ::SMESH_MeshEditor::ElemFeatures elemType;
2503
2504   // loop on sub-meshes
2505   for ( CORBA::ULong i = 0; i < theMeshesArray.length(); i++ )
2506   {
2507     if ( CORBA::is_nil( theMeshesArray[i] )) continue;
2508     SMESH::SMESH_Mesh_var initMesh = theMeshesArray[i]->GetMesh();
2509     SMESH_Mesh_i*         initImpl = SMESH::DownCast<SMESH_Mesh_i*>( initMesh );
2510     if ( !initImpl ) continue;
2511     initImpl->Load();
2512
2513     // assure that IDs increments by one during iteration
2514     ::SMESH_Mesh& initLocMesh = initImpl->GetImpl();
2515     SMESHDS_Mesh*  initMeshDS = initLocMesh.GetMeshDS();
2516     if ( initMeshDS->MaxNodeID()    > initMeshDS->NbNodes() ||
2517          initMeshDS->MaxElementID() > initMeshDS->NbElements() )
2518     {
2519       initMeshDS->Modified();
2520       initMeshDS->CompactMesh();
2521     }
2522
2523     // remember nb of elements before filling in
2524     SMESH::long_array_var prevState =  newMesh->GetNbElementsByType();
2525
2526     // copy nodes
2527
2528     std::vector< const SMDS_MeshElement* > newNodes( initMeshDS->NbNodes() + 1, 0 );
2529     SMDS_ElemIteratorPtr elemIt = initImpl->GetElements( theMeshesArray[i], SMESH::NODE );
2530     while ( elemIt->more() )
2531     {
2532       SMESH_NodeXYZ node = elemIt->next();
2533       newNodes[ node->GetID() ] = newMeshDS->AddNode( node.X(), node.Y(), node.Z() );
2534     }
2535
2536     // copy elements
2537
2538     std::vector< const SMDS_MeshElement* > newElems( initMeshDS->NbElements() + 1, 0 );
2539     elemIt = initImpl->GetElements( theMeshesArray[i], SMESH::ALL );
2540     while ( elemIt->more() )
2541     {
2542       const SMDS_MeshElement* elem = elemIt->next();
2543       elemType.myNodes.resize( elem->NbNodes() );
2544
2545       SMDS_NodeIteratorPtr itNodes = elem->nodeIterator();
2546       for ( int k = 0; itNodes->more(); k++)
2547       {
2548         const SMDS_MeshNode* node = itNodes->next();
2549         elemType.myNodes[ k ] = static_cast< const SMDS_MeshNode*> ( newNodes[ node->GetID() ]);
2550       }
2551
2552       // creates a corresponding element on existent nodes in new mesh
2553       newElems[ elem->GetID() ] =
2554         newEditor.AddElement( elemType.myNodes, elemType.Init( elem, /*basicOnly=*/false ));
2555     }
2556     newEditor.ClearLastCreated(); // forget the history
2557
2558
2559     // create groups of just added elements
2560     SMESH::SMESH_Group_var newGroup;
2561     SMESH::ElementType     groupType;
2562     if ( theCommonGroups )
2563     {
2564       // type names
2565       const char* typeNames[] = { "All","Nodes","Edges","Faces","Volumes","0DElems","Balls" };
2566       { // check of typeNames: compilation failure mains that NB_ELEMENT_TYPES changed:
2567         const int nbNames = sizeof(typeNames) / sizeof(const char*);
2568         int _assert[( nbNames == SMESH::NB_ELEMENT_TYPES ) ? 2 : -1 ]; _assert[0]=_assert[1]=0;
2569       }
2570
2571       SMESH::long_array_var curState = newMesh->GetNbElementsByType();
2572
2573       for( groupType = SMESH::NODE;
2574            groupType < SMESH::NB_ELEMENT_TYPES;
2575            groupType = (SMESH::ElementType)( groupType + 1 ))
2576       {
2577         if ( curState[ groupType ] <= prevState[ groupType ])
2578           continue; // no elements of groupType added from the i-th mesh
2579
2580         // make a group name
2581         std::string groupName = "Gr";
2582         SALOMEDS::SObject_wrap meshSO = ObjectToSObject( myCurrentStudy, theMeshesArray[i] );
2583         if ( meshSO ) {
2584           CORBA::String_var name = meshSO->GetName();
2585           groupName += name;
2586         }
2587         groupName += "_";
2588         groupName += typeNames[ groupType ];
2589
2590         // make and fill a group
2591         newGroup = newImpl->CreateGroup( groupType, groupName.c_str() );
2592         std::vector< const SMDS_MeshElement* > & elemVec =
2593           ( groupType == SMESH::NODE ) ? newNodes : newElems;
2594         if ( SMESH_Group_i* grp_i = SMESH::DownCast<SMESH_Group_i*>( newGroup ))
2595         {
2596           if ( SMESHDS_Group* grpDS = dynamic_cast<SMESHDS_Group*>( grp_i->GetGroupDS() ))
2597           {
2598             for ( size_t j = 0; j < elemVec.size(); ++j )
2599             {
2600               if ( elemVec[j] && elemVec[j]->GetType() == grpDS->GetType() )
2601                 grpDS->Add( elemVec[j] );
2602             }
2603           }
2604         }
2605         listOfNewGroups.clear();
2606         listOfNewGroups.push_back( newGroup );
2607         groupsMap.insert( std::make_pair( TNameAndType( groupName, groupType ),
2608                                           listOfNewGroups ));
2609       }
2610     }
2611
2612     if ( SMESH_Mesh_i* initImpl = SMESH::DownCast<SMESH_Mesh_i*>( theMeshesArray[i] ))
2613     {
2614       // copy groups
2615
2616       SMESH::SMESH_GroupBase_ptr group;
2617       CORBA::String_var          groupName;
2618       SMESH::long_array_var newIDs = new SMESH::long_array();
2619
2620       // loop on groups of a source mesh
2621       SMESH::ListOfGroups_var listOfGroups = initImpl->GetGroups();
2622       for ( CORBA::ULong iG = 0; iG < listOfGroups->length(); iG++ )
2623       {
2624         group     = listOfGroups[iG];
2625         groupType = group->GetType();
2626         groupName = group->GetName();
2627         std::string name = groupName.in();
2628
2629         // convert a list of IDs
2630         newIDs->length( group->Size() );
2631         std::vector< const SMDS_MeshElement* > & elemVec =
2632           ( groupType == SMESH::NODE ) ? newNodes : newElems;
2633         SMDS_ElemIteratorPtr itGrElems = initImpl->GetElements( group, SMESH::ALL );
2634         int nbElems = 0;
2635         while ( itGrElems->more() )
2636         {
2637           const SMDS_MeshElement*    elem = itGrElems->next();
2638           const SMDS_MeshElement* newElem = elemVec[ elem->GetID() ];
2639           if ( newElem )
2640             newIDs[ nbElems++ ] = newElem->GetID();
2641         }
2642         newIDs->length( nbElems );
2643
2644         // check that a current group name and type don't have identical ones in final mesh
2645         listOfNewGroups.clear();
2646         TNameAndType nameAndType( name, groupType );
2647         TGroupsMap::iterator anIter = groupsMap.find( nameAndType );
2648         if ( anIter == groupsMap.end() )
2649         {
2650           // add a new group in the mesh
2651           newGroup = newImpl->CreateGroup( groupType, groupName.in() );
2652           newGroup->Add( newIDs );
2653
2654           listOfNewGroups.push_back( newGroup );
2655           groupsMap.insert( std::make_pair( nameAndType, listOfNewGroups ));
2656         }
2657         else if ( theUniteIdenticalGroups )
2658         {
2659           // unite identical groups
2660           TListOfNewGroups& aNewGroups = anIter->second;
2661           aNewGroups.front()->Add( newIDs );
2662         }
2663         else
2664         {
2665           // rename identical groups
2666           newGroup = newImpl->CreateGroup( groupType, groupName );
2667           newGroup->Add( newIDs );
2668
2669           TListOfNewGroups& newGroups = anIter->second;
2670           std::string newGroupName;
2671           if ( newGroups.size() == 1 )
2672           {
2673             newGroupName = name + "_1";
2674             newGroups.front()->SetName( newGroupName.c_str() );
2675           }
2676           newGroupName = name + "_" + SMESH_Comment( newGroups.size() + 1 );
2677           newGroup->SetName( newGroupName.c_str() );
2678           newGroups.push_back( newGroup );
2679         }
2680       } // loop on groups
2681     } // if an IDSource is a mesh
2682   } //meshes loop
2683
2684   if ( theMergeNodesAndElements ) // merge nodes
2685   {
2686     TIDSortedNodeSet meshNodes; // no input nodes == treat all
2687     SMESH_MeshEditor::TListOfListOfNodes groupsOfNodes;
2688     newEditor.FindCoincidentNodes( meshNodes, theMergeTolerance, groupsOfNodes,
2689                                    /*SeparateCornersAndMedium=*/ false );
2690     newEditor.MergeNodes( groupsOfNodes );
2691     // merge elements
2692     newEditor.MergeEqualElements();
2693   }
2694
2695   // Update Python script
2696   pythonDump << newMesh << " = " << this
2697              << "." << ( theCommonGroups ? "ConcatenateWithGroups" : "Concatenate" ) << "("
2698              << theMeshesArray << ", "
2699              << theUniteIdenticalGroups << ", "
2700              << theMergeNodesAndElements << ", "
2701              << TVar( theMergeTolerance ) << ")";
2702
2703   pPythonDump.reset(); // enable python dump from GetGroups()
2704
2705   // 0020577: EDF 1164 SMESH: Bad dump of concatenate with create common groups
2706   if ( !newMesh->_is_nil() )
2707   {
2708     SMESH::ListOfGroups_var groups = newMesh->GetGroups();
2709   }
2710
2711   // IPAL21468 Change icon of compound because it need not be computed.
2712   SALOMEDS::SObject_wrap meshSO = ObjectToSObject( myCurrentStudy, newMesh );
2713   SetPixMap( meshSO, "ICON_SMESH_TREE_MESH" );
2714
2715   newMeshDS->Modified();
2716
2717   return newMesh._retn();
2718 }
2719
2720 //================================================================================
2721 /*!
2722  * \brief Create a mesh by copying a part of another mesh
2723  *  \param meshPart - a part of mesh to copy
2724  *  \param toCopyGroups - to create in the new mesh groups
2725  *                        the copied elements belongs to
2726  *  \param toKeepIDs - to preserve IDs of the copied elements or not
2727  *  \retval SMESH::SMESH_Mesh_ptr - the new mesh
2728  */
2729 //================================================================================
2730
2731 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CopyMesh(SMESH::SMESH_IDSource_ptr meshPart,
2732                                             const char*               meshName,
2733                                             CORBA::Boolean            toCopyGroups,
2734                                             CORBA::Boolean            toKeepIDs)
2735   throw ( SALOME::SALOME_Exception )
2736 {
2737   Unexpect aCatch(SALOME_SalomeException);
2738
2739   TPythonDump* pyDump = new TPythonDump; // prevent dump from CreateMesh()
2740   std::unique_ptr<TPythonDump> pyDumpDeleter( pyDump );
2741
2742   // 1. Get source mesh
2743
2744   if ( CORBA::is_nil( meshPart ))
2745     THROW_SALOME_CORBA_EXCEPTION( "bad IDSource", SALOME::BAD_PARAM );
2746
2747   SMESH::SMESH_Mesh_var srcMesh = meshPart->GetMesh();
2748   SMESH_Mesh_i*       srcMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( srcMesh );
2749   if ( !srcMesh_i )
2750     THROW_SALOME_CORBA_EXCEPTION( "bad mesh of IDSource", SALOME::BAD_PARAM );
2751
2752   SMESHDS_Mesh* srcMeshDS = srcMesh_i->GetImpl().GetMeshDS();
2753
2754   // 2. Make a new mesh
2755
2756   SMESH::SMESH_Mesh_var newMesh = CreateMesh(GEOM::GEOM_Object::_nil());
2757   SMESH_Mesh_i*       newMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( newMesh );
2758   if ( !newMesh_i )
2759     THROW_SALOME_CORBA_EXCEPTION( "can't create a mesh", SALOME::INTERNAL_ERROR );
2760   SALOMEDS::SObject_wrap meshSO = ObjectToSObject(myCurrentStudy, newMesh );
2761   if ( !meshSO->_is_nil() )
2762   {
2763     SetName( meshSO, meshName, "Mesh" );
2764     SetPixMap( meshSO, "ICON_SMESH_TREE_MESH_IMPORTED");
2765   }
2766   SMESHDS_Mesh* newMeshDS = newMesh_i->GetImpl().GetMeshDS();
2767   ::SMESH_MeshEditor editor( &newMesh_i->GetImpl() );
2768   ::SMESH_MeshEditor::ElemFeatures elemType;
2769
2770   // 3. Get elements to copy
2771
2772   SMDS_ElemIteratorPtr srcElemIt; SMDS_NodeIteratorPtr srcNodeIt;
2773   TIDSortedElemSet srcElems;
2774   SMESH::array_of_ElementType_var srcElemTypes = meshPart->GetTypes();
2775   if ( SMESH::DownCast<SMESH_Mesh_i*>( meshPart ))
2776   {
2777     srcMesh_i->Load();
2778     srcElemIt = srcMeshDS->elementsIterator();
2779     srcNodeIt = srcMeshDS->nodesIterator();
2780   }
2781   else
2782   {
2783     SMESH::long_array_var ids = meshPart->GetIDs();
2784     if ( srcElemTypes->length() == 1 && srcElemTypes[0] == SMESH::NODE ) // group of nodes
2785     {
2786       for ( CORBA::ULong i=0; i < ids->length(); i++ )
2787         if ( const SMDS_MeshElement * elem = srcMeshDS->FindNode( ids[i] ))
2788           srcElems.insert( elem );
2789     }
2790     else
2791     {
2792       for ( CORBA::ULong i = 0; i < ids->length(); i++ )
2793         if ( const SMDS_MeshElement * elem = srcMeshDS->FindElement( ids[i] ))
2794           srcElems.insert( elem );
2795     }
2796     if ( srcElems.empty() )
2797       return newMesh._retn();
2798
2799     typedef SMDS_SetIterator< SMDS_pElement, TIDSortedElemSet::const_iterator > ElIter;
2800     srcElemIt = SMDS_ElemIteratorPtr( new ElIter( srcElems.begin(), srcElems.end() ));
2801   }
2802
2803   // 4. Copy elements
2804
2805   typedef map<SMDS_pElement, SMDS_pElement, TIDCompare> TE2EMap;
2806   TE2EMap e2eMapByType[ SMDSAbs_NbElementTypes ];
2807   TE2EMap& n2nMap = e2eMapByType[ SMDSAbs_Node ];
2808   int iN;
2809   const SMDS_MeshNode *nSrc, *nTgt;
2810   vector< const SMDS_MeshNode* > nodes;
2811   while ( srcElemIt->more() )
2812   {
2813     const SMDS_MeshElement * elem = srcElemIt->next();
2814     // find / add nodes
2815     nodes.resize( elem->NbNodes());
2816     SMDS_ElemIteratorPtr nIt = elem->nodesIterator();
2817     if ( toKeepIDs ) {
2818       for ( iN = 0; nIt->more(); ++iN )
2819       {
2820         nSrc = static_cast<const SMDS_MeshNode*>( nIt->next() );
2821         nTgt = newMeshDS->FindNode( nSrc->GetID());
2822         if ( !nTgt )
2823           nTgt = newMeshDS->AddNodeWithID( nSrc->X(), nSrc->Y(), nSrc->Z(), nSrc->GetID());
2824         nodes[ iN ] = nTgt;
2825       }
2826     }
2827     else {
2828       for ( iN = 0; nIt->more(); ++iN )
2829       {
2830         nSrc = static_cast<const SMDS_MeshNode*>( nIt->next() );
2831         TE2EMap::iterator n2n = n2nMap.insert( make_pair( nSrc, SMDS_pNode(0) )).first;
2832         if ( !n2n->second )
2833           n2n->second = newMeshDS->AddNode( nSrc->X(), nSrc->Y(), nSrc->Z() );
2834         nodes[ iN ] = (const SMDS_MeshNode*) n2n->second;
2835       }
2836     }
2837     // add elements
2838     if ( elem->GetType() != SMDSAbs_Node )
2839     {
2840       elemType.Init( elem, /*basicOnly=*/false );
2841       if ( toKeepIDs ) elemType.SetID( elem->GetID() );
2842
2843       const SMDS_MeshElement * newElem = editor.AddElement( nodes, elemType );
2844       if ( toCopyGroups && !toKeepIDs )
2845         e2eMapByType[ elem->GetType() ].insert( make_pair( elem, newElem ));
2846     }
2847   } // while ( srcElemIt->more() )
2848
2849   // 4(b). Copy free nodes
2850
2851   if ( srcNodeIt && srcMeshDS->NbNodes() != newMeshDS->NbNodes() )
2852   {
2853     while ( srcNodeIt->more() )
2854     {
2855       nSrc = srcNodeIt->next();
2856       if ( nSrc->NbInverseElements() == 0 )
2857       {
2858         if ( toKeepIDs )
2859           nTgt = newMeshDS->AddNodeWithID( nSrc->X(), nSrc->Y(), nSrc->Z(), nSrc->GetID());
2860         else
2861           n2nMap[ nSrc ] = newMeshDS->AddNode( nSrc->X(), nSrc->Y(), nSrc->Z() );
2862       }
2863     }
2864   }
2865
2866   // 5. Copy groups
2867
2868   int nbNewGroups = 0;
2869   if ( toCopyGroups )
2870   {
2871     SMESH_Mesh::GroupIteratorPtr gIt = srcMesh_i->GetImpl().GetGroups();
2872     while ( gIt->more() )
2873     {
2874       SMESH_Group* group = gIt->next();
2875       const SMESHDS_GroupBase* groupDS = group->GetGroupDS();
2876
2877       // Check group type. We copy nodal groups containing nodes of copied element
2878       SMDSAbs_ElementType groupType = groupDS->GetType();
2879       if ( groupType != SMDSAbs_Node &&
2880            newMeshDS->GetMeshInfo().NbElements( groupType ) == 0 )
2881         continue; // group type differs from types of meshPart
2882
2883       // Find copied elements in the group
2884       vector< const SMDS_MeshElement* > groupElems;
2885       SMDS_ElemIteratorPtr eIt = groupDS->GetElements();
2886       if ( toKeepIDs )
2887       {
2888         const SMDS_MeshElement* foundElem;
2889         if ( groupType == SMDSAbs_Node )
2890         {
2891           while ( eIt->more() )
2892             if (( foundElem = newMeshDS->FindNode( eIt->next()->GetID() )))
2893               groupElems.push_back( foundElem );
2894         }
2895         else
2896         {
2897           while ( eIt->more() )
2898             if (( foundElem = newMeshDS->FindElement( eIt->next()->GetID() )))
2899               groupElems.push_back( foundElem );
2900         }
2901       }
2902       else
2903       {
2904         TE2EMap & e2eMap = e2eMapByType[ groupDS->GetType() ];
2905         if ( e2eMap.empty() ) continue;
2906         int minID = e2eMap.begin()->first->GetID();
2907         int maxID = e2eMap.rbegin()->first->GetID();
2908         TE2EMap::iterator e2e;
2909         while ( eIt->more() && groupElems.size() < e2eMap.size())
2910         {
2911           const SMDS_MeshElement* e = eIt->next();
2912           if ( e->GetID() < minID || e->GetID() > maxID ) continue;
2913           if ((e2e = e2eMap.find( e )) != e2eMap.end())
2914             groupElems.push_back( e2e->second );
2915         }
2916       }
2917       // Make a new group
2918       if ( !groupElems.empty() )
2919       {
2920         SMESH::SMESH_Group_var newGroupObj =
2921           newMesh->CreateGroup( SMESH::ElementType(groupType), group->GetName() );
2922         if ( SMESH_GroupBase_i* newGroup_i = SMESH::DownCast<SMESH_GroupBase_i*>( newGroupObj))
2923         {
2924           SMESHDS_GroupBase * newGroupDS = newGroup_i->GetGroupDS();
2925           SMDS_MeshGroup& smdsGroup = ((SMESHDS_Group*)newGroupDS)->SMDSGroup();
2926           for ( unsigned i = 0; i < groupElems.size(); ++i )
2927             smdsGroup.Add( groupElems[i] );
2928
2929           nbNewGroups++;
2930         }
2931       }
2932     }
2933   }
2934
2935   newMeshDS->Modified();
2936
2937   *pyDump << newMesh << " = " << this
2938           << ".CopyMesh( " << meshPart << ", "
2939           << "'" << meshName << "', "
2940           << toCopyGroups << ", "
2941           << toKeepIDs << ")";
2942
2943   pyDumpDeleter.reset(); // allow dump in GetGroups()
2944
2945   if ( nbNewGroups > 0 ) // dump created groups
2946     SMESH::ListOfGroups_var groups = newMesh->GetGroups();
2947
2948   return newMesh._retn();
2949 }
2950
2951
2952 namespace // utils for CopyMeshWithGeom()
2953 {
2954   typedef std::map< std::string, std::string >             TStr2StrMap;
2955   typedef std::map< std::string, std::set< std::string > > TStr2StrSetMap;
2956
2957   //================================================================================
2958   /*!
2959    * \brief Return a new sub-shape corresponding to an old one
2960    */
2961   //================================================================================
2962
2963   struct ShapeMapper
2964   {
2965     SMESH_Mesh_i* mySrcMesh_i;
2966     SMESH_Mesh_i* myNewMesh_i;
2967     SMESH_Gen_i*  myGen_i;
2968     bool          myToPublish;
2969     bool          myIsSameGeom;
2970
2971     TStr2StrMap   myOld2NewEntryMap; // map of study entries
2972
2973     bool                       myGIPMapDone;
2974     GEOM::ListOfListOfLong_var myGIPMap; // filled by GetInPlaceMap()
2975
2976     // not directly relating to shape search
2977     TStr2StrSetMap myInvalidMap; // blame shape -> invalid objects
2978
2979     //================================================================================
2980     /*!
2981      * \brief Constructor
2982      */
2983     ShapeMapper( SMESH_Mesh_i* srcMesh_i,
2984                  SMESH_Mesh_i* newMesh_i,
2985                  SMESH_Gen_i*  smeshGen_i )
2986       : mySrcMesh_i( srcMesh_i ),
2987         myNewMesh_i( newMesh_i ),
2988         myGen_i    ( smeshGen_i ),
2989         myToPublish( !smeshGen_i->GetCurrentStudy()->_is_nil() ),
2990         myGIPMapDone( false )
2991     {
2992       // retrieve from the study shape mapping made thanks to
2993       // "Set presentation parameters and sub-shapes from arguments" option
2994
2995       SALOMEDS::Study_var study = smeshGen_i->GetCurrentStudy();
2996       GEOM::GEOM_Object_var mainShapeNew = myNewMesh_i->GetShapeToMesh();
2997       GEOM::GEOM_Object_var mainShapeOld = mySrcMesh_i->GetShapeToMesh();
2998       SALOMEDS::SObject_wrap oldSO = myGen_i->ObjectToSObject( study, mainShapeOld );
2999       SALOMEDS::SObject_wrap newSO = myGen_i->ObjectToSObject( study, mainShapeNew );
3000       if ( newSO->_is_nil() )
3001       {
3002         myToPublish = false;
3003         return;
3004       }
3005       if (( myIsSameGeom = mainShapeNew->_is_equivalent( mainShapeOld )))
3006         return;
3007       CORBA::String_var oldEntry = oldSO->GetID();
3008       CORBA::String_var newEntry = newSO->GetID();
3009       myOld2NewEntryMap.insert( std::make_pair( std::string( oldEntry.in() ),
3010                                                 std::string( newEntry.in() )));
3011
3012       GEOM::GEOM_Gen_var           geomGen = myGen_i->GetGeomEngine();
3013       GEOM::GEOM_IShapesOperations_wrap op = geomGen->GetIShapesOperations( myGen_i->GetCurrentStudyID() );
3014       GEOM::ListOfGO_var         subShapes = op->GetExistingSubObjects( mainShapeNew,
3015                                                                         /*groupsOnly=*/false );
3016       for ( CORBA::ULong i = 0; i < subShapes->length(); ++i )
3017       {
3018         newSO = myGen_i->ObjectToSObject( study, subShapes[ i ]);
3019         SALOMEDS::ChildIterator_wrap anIter = study->NewChildIterator( newSO );
3020         for ( ; anIter->More(); anIter->Next() )
3021         {
3022           SALOMEDS::SObject_wrap so = anIter->Value();
3023           if ( so->ReferencedObject( oldSO.inout() ))
3024           {
3025             oldEntry = oldSO->GetID();
3026             newEntry = newSO->GetID();
3027             myOld2NewEntryMap.insert( std::make_pair( std::string( oldEntry.in() ),
3028                                                       std::string( newEntry.in() )));
3029           }
3030         }
3031       }
3032     }
3033
3034     //================================================================================
3035     /*!
3036      * \brief Find a new sub-shape corresponding to an old one
3037      */
3038     GEOM::GEOM_Object_ptr FindNew( GEOM::GEOM_Object_ptr oldShape )
3039     {
3040       if ( myIsSameGeom )
3041         return GEOM::GEOM_Object::_duplicate( oldShape );
3042
3043       GEOM::GEOM_Object_var newShape;
3044
3045       if ( CORBA::is_nil( oldShape ))
3046         return newShape._retn();
3047
3048       if ( !isChildOfOld( oldShape ))
3049         return GEOM::GEOM_Object::_duplicate( oldShape ); // shape independent of the old shape
3050
3051       GEOM::GEOM_Object_var mainShapeNew = myNewMesh_i->GetShapeToMesh();
3052       GEOM::GEOM_Gen_var         geomGen = myGen_i->GetGeomEngine();
3053
3054       // try to find by entry
3055       if ( myToPublish )
3056       {
3057         CORBA::String_var  oldEntry = oldShape->GetStudyEntry();
3058         TStr2StrMap::iterator o2nID = myOld2NewEntryMap.find( oldEntry.in() );
3059         if ( o2nID != myOld2NewEntryMap.end() )
3060         {
3061           newShape = getShapeByEntry( o2nID->second );
3062         }
3063       }
3064
3065       if ( newShape->_is_nil() )
3066       {
3067         // try to construct a new sub-shape using myGIPMap
3068         buildGIPMap();
3069         std::vector< int >   newIndices;
3070         GEOM::ListOfLong_var oldIndices = oldShape->GetSubShapeIndices();
3071         for ( CORBA::ULong i = 0; i < oldIndices->length(); ++i )
3072         {
3073           findNewIDs( oldIndices[i], newIndices );
3074         }
3075         if ( !newIndices.empty() )
3076         {
3077           try
3078           {
3079             if ( newIndices.size() > 1 || oldShape->GetType() == GEOM_GROUP )
3080             {
3081               int groupType = getShapeType( myNewMesh_i, newIndices[0] );
3082
3083               GEOM::GEOM_IGroupOperations_wrap grOp = geomGen->GetIGroupOperations( myGen_i->GetCurrentStudyID() );
3084               newShape = grOp->CreateGroup( mainShapeNew, groupType );
3085
3086               GEOM::ListOfLong_var  newIndicesList = new GEOM::ListOfLong();
3087               newIndicesList->length( newIndices.size() );
3088               for ( size_t i = 0; i < newIndices.size(); ++i )
3089                 newIndicesList[ i ] = newIndices[ i ];
3090               grOp->UnionIDs( newShape, newIndicesList );
3091             }
3092             else
3093             {
3094               GEOM::GEOM_IShapesOperations_wrap shOp = geomGen->GetIShapesOperations(myGen_i->GetCurrentStudyID() );
3095               newShape = shOp->GetSubShape( mainShapeNew, newIndices[0] );
3096             }
3097           }
3098           catch (...)
3099           {
3100           }
3101         }
3102       }
3103
3104       if ( !newShape->_is_nil() && myToPublish )
3105       {
3106         CORBA::String_var oldEntry, newEntry = newShape->GetStudyEntry();
3107         if ( !newEntry.in() || !newEntry.in()[0] )
3108         {
3109           SALOMEDS::Study_var study = myGen_i->GetCurrentStudy();
3110           CORBA::String_var    name = oldShape->GetName();
3111           SALOMEDS::SObject_wrap so = geomGen->AddInStudy( study, newShape, name, mainShapeNew );
3112           newEntry = newShape->GetStudyEntry();
3113           oldEntry = oldShape->GetStudyEntry();
3114           myOld2NewEntryMap.insert( std::make_pair( std::string( oldEntry.in() ),
3115                                                     std::string( newEntry.in() )));
3116         }
3117       }
3118
3119       return newShape._retn();
3120     }
3121
3122     //================================================================================
3123     /*!
3124      * \brief Return a study entry of a new shape by study entry of the old one
3125      */
3126     std::string FindNew( const std::string & oldEntry )
3127     {
3128       if ( myIsSameGeom )
3129         return oldEntry;
3130
3131       TStr2StrMap::iterator o2nID = myOld2NewEntryMap.find( oldEntry );
3132       if ( o2nID != myOld2NewEntryMap.end() )
3133         return o2nID->second;
3134
3135       GEOM::GEOM_Object_var oldShape = getShapeByEntry( oldEntry );
3136       if ( oldShape->_is_nil() || !isChildOfOld( oldShape ))
3137         return oldEntry;
3138
3139       GEOM::GEOM_Object_ptr newShape = FindNew( oldShape );
3140       if ( newShape->_is_nil() )
3141         return std::string();
3142
3143       CORBA::String_var newEntry = newShape->GetStudyEntry();
3144       return newEntry.in();
3145     }
3146
3147     //================================================================================
3148     /*!
3149      * \brief Return a sub-shape ID of a new shape by a sub-shape ID of the old one.
3150      *        Return zero if not found or there are more than one new ID
3151      */
3152     int FindNew( int oldID )
3153     {
3154       if ( myIsSameGeom )
3155         return oldID;
3156
3157       buildGIPMap();
3158
3159       int newID = 0;
3160
3161       if ( 0 < oldID && oldID < (int)myGIPMap->length() )
3162       {
3163         if (( myGIPMap[ oldID ].length() == 1 ) ||
3164             ( myGIPMap[ oldID ].length() > 1 &&
3165               getShapeType( mySrcMesh_i, oldID ) == TopAbs_VERTEX ))
3166         {
3167           newID = myGIPMap[ oldID ][ 0 ];
3168         }
3169       }
3170       return newID;
3171     }
3172
3173     //================================================================================
3174     /*!
3175      * \brief Return a sub-shape ID of a new shape by an old sub-mesh.
3176      *        Return zero if the old shape is not kept as is in the new shape.
3177      */
3178     int FindNewNotChanged( SMESH_subMesh* oldSM )
3179     {
3180       if ( myIsSameGeom )
3181         return oldSM->GetId();
3182
3183       int newID = FindNew( oldSM->GetId() );
3184       if ( !newID )
3185         return 0;
3186
3187       SMESH_subMesh* newSM = myNewMesh_i->GetImpl().GetSubMeshContaining( newID );
3188       if ( !newSM )
3189         return 0;
3190
3191       // consider a sub-shape as not changed if all its sub-shapes are mapped into
3192       // one new sub-shape of the same type.
3193
3194       if ( oldSM->DependsOn().size() !=
3195            newSM->DependsOn().size() )
3196         return 0;
3197
3198       SMESH_subMeshIteratorPtr srcSMIt = oldSM->getDependsOnIterator( /*includeSelf=*/true );
3199       while ( srcSMIt->more() )
3200       {
3201         oldSM = srcSMIt->next();
3202         int newSubID = FindNew( oldSM->GetId() );
3203         if ( getShapeType( myNewMesh_i, newSubID ) !=
3204              getShapeType( mySrcMesh_i, oldSM->GetId() ))
3205           return 0;
3206       }
3207       return newID;
3208     }
3209
3210     //================================================================================
3211     /*!
3212      * \brief Return shape by study entry
3213      */
3214     GEOM::GEOM_Object_ptr getShapeByEntry( const std::string & entry )
3215     {
3216       GEOM::GEOM_Object_var shape;
3217       SALOMEDS::Study_var study = myGen_i->GetCurrentStudy();
3218       if ( !study->_is_nil() )
3219       {
3220         SALOMEDS::SObject_wrap so = study->FindObjectID( entry.c_str() );
3221         if ( !so->_is_nil() )
3222         {
3223           CORBA::Object_var obj = so->GetObject();
3224           shape = GEOM::GEOM_Object::_narrow( obj );
3225         }
3226       }
3227       return shape._retn();
3228     }
3229
3230     //================================================================================
3231     /*!
3232      * \brief Fill myGIPMap by calling GetInPlaceMap()
3233      */
3234     void buildGIPMap()
3235     {
3236       if ( !myGIPMapDone )
3237       {
3238         myGIPMapDone = true;
3239
3240         GEOM::GEOM_Object_var   mainShapeNew = myNewMesh_i->GetShapeToMesh();
3241         GEOM::GEOM_Object_var   mainShapeOld = mySrcMesh_i->GetShapeToMesh();
3242         GEOM::GEOM_Gen_var           geomGen = myGen_i->GetGeomEngine();
3243         GEOM::GEOM_IShapesOperations_wrap op = geomGen->GetIShapesOperations(myGen_i->GetCurrentStudyID() );
3244         try
3245         {
3246           myGIPMap = op->GetInPlaceMap( mainShapeNew, mainShapeOld );
3247         }
3248         catch( ... )
3249         {
3250           myGIPMap = new GEOM::ListOfListOfLong();
3251         }
3252       }
3253     }
3254
3255     //================================================================================
3256     /*!
3257      * \brief Find a new sub-shape indices by an old one in myGIPMap. Return
3258      *        number of found IDs
3259      */
3260     int findNewIDs( int oldID, std::vector< int >& newIDs  )
3261     {
3262       size_t prevNbIDs = newIDs.size();
3263
3264       if ( 0 < oldID && oldID < (int) myGIPMap->length() )
3265       {
3266         for ( CORBA::ULong i = 0; i < myGIPMap[ oldID ].length(); ++i )
3267           newIDs.push_back( myGIPMap[ oldID ][ i ]);
3268       }
3269       return newIDs.size() - prevNbIDs;
3270     }
3271
3272     //================================================================================
3273     /*!
3274      * \brief Check if an object relates to the old shape
3275      */
3276     bool isChildOfOld( GEOM::GEOM_Object_ptr oldShape )
3277     {
3278       if ( CORBA::is_nil( oldShape ))
3279         return false;
3280       GEOM::GEOM_Object_var mainShapeOld1 = mySrcMesh_i->GetShapeToMesh();
3281       GEOM::GEOM_Object_var mainShapeOld2 = oldShape->GetMainShape();
3282       return ( mainShapeOld1->_is_equivalent( mainShapeOld2 ) ||
3283                mainShapeOld1->_is_equivalent( oldShape ));
3284     }
3285
3286     //================================================================================
3287     /*!
3288      * \brief Return shape type by shape ID
3289      */
3290     TopAbs_ShapeEnum getShapeType( SMESH_Mesh_i* mesh_i, int shapeID )
3291     {
3292       SMESHDS_Mesh* meshDS = mesh_i->GetImpl().GetMeshDS();
3293       const TopoDS_Shape& shape = meshDS->IndexToShape( shapeID );
3294       return shape.IsNull() ? TopAbs_SHAPE : shape.ShapeType();
3295     }
3296
3297     //================================================================================
3298     /*!
3299      * \brief Store a source sub-shape for which a counterpart not found and
3300      *        a smesh object invalid due to that
3301      */
3302     void AddInvalid( GEOM::GEOM_Object_var  srcShape,
3303                      SALOMEDS::SObject_wrap smeshSO )
3304     {
3305       CORBA::String_var geomEntry = srcShape->GetStudyEntry();
3306       if ( geomEntry.in()[0] && !smeshSO->_is_nil() )
3307       {
3308         CORBA::String_var smeshEntry = smeshSO->GetID();
3309         myInvalidMap[ geomEntry.in() ].insert( smeshEntry.in() );
3310       }
3311     }
3312
3313     //================================================================================
3314     /*!
3315      * \brief Store a source sub-shape for which a counterpart not found and
3316      *        a smesh object invalid due to that
3317      */
3318     void AddInvalid( std::string            geomEntry,
3319                      SALOMEDS::SObject_wrap smeshSO )
3320     {
3321       if ( !geomEntry.empty() )
3322       {
3323         CORBA::String_var smeshEntry = smeshSO->GetID();
3324         myInvalidMap[ geomEntry ].insert( smeshEntry.in() );
3325       }
3326     }
3327
3328     //================================================================================
3329     /*!
3330      * \brief Store a source sub-shape for which a counterpart not found and
3331      *        a smesh object invalid due to that
3332      */
3333     void AddInvalid( int                    oldGeomID,
3334                      SALOMEDS::SObject_wrap smeshSO )
3335     {
3336       int shapeType = getShapeType( mySrcMesh_i, oldGeomID );
3337       if ( shapeType < 0 || shapeType > TopAbs_SHAPE )
3338         return;
3339
3340       const char* typeName[] = { "COMPOUND","COMPSOLID","SOLID","SHELL",
3341                                  "FACE","WIRE","EDGE","VERTEX","SHAPE" };
3342
3343       SMESH_Comment geomName( typeName[ shapeType ]);
3344       geomName << " #" << oldGeomID;
3345
3346       CORBA::String_var smeshEntry = smeshSO->GetID();
3347       myInvalidMap[ geomName ].insert( smeshEntry.in() );
3348     }
3349
3350     //================================================================================
3351     /*!
3352      * \brief Return entries of a source sub-shape for which a counterpart not found and
3353      *        of smesh objects invalid due to that
3354      */
3355     void GetInvalid( SMESH::string_array_out &               theInvalidEntries,
3356                      std::vector< SALOMEDS::SObject_wrap > & theInvalidMeshSObjects)
3357     {
3358       SALOMEDS::Study_var study = myGen_i->GetCurrentStudy();
3359       if ( study->_is_nil() )
3360         return;
3361       int nbSO = 0;
3362       TStr2StrSetMap::iterator entry2entrySet = myInvalidMap.begin();
3363       for ( ; entry2entrySet != myInvalidMap.end(); ++entry2entrySet )
3364       {
3365         nbSO += 1 + entry2entrySet->second.size();
3366       }
3367       int iSO = theInvalidMeshSObjects.size(), iEntry = 0;
3368       theInvalidEntries->length  ( nbSO );
3369       theInvalidMeshSObjects.resize( theInvalidMeshSObjects.size() + nbSO - myInvalidMap.size() );
3370
3371       entry2entrySet = myInvalidMap.begin();
3372       for ( ; entry2entrySet != myInvalidMap.end(); ++entry2entrySet )
3373       {
3374         theInvalidEntries[ iEntry++ ] = entry2entrySet->first.c_str();
3375
3376         std::set< std::string > & entrySet = entry2entrySet->second;
3377         std::set< std::string >::iterator entry = entrySet.begin();
3378         for ( ; entry != entrySet.end(); ++entry )
3379         {
3380           theInvalidEntries[ iEntry++ ] = entry->c_str();
3381
3382           SALOMEDS::SObject_wrap so = study->FindObjectID( entry->c_str() );
3383           if ( !so->_is_nil() )
3384             theInvalidMeshSObjects[ iSO++ ] = so;
3385         }
3386       }
3387     }
3388
3389   }; // struct ShapeMapper
3390
3391   //================================================================================
3392   /*!
3393    * \brief Append an item to a CORBA sequence
3394    */
3395   template < class CORBA_seq, class ITEM >
3396   void append( CORBA_seq& seq, ITEM item )
3397   {
3398     if ( !CORBA::is_nil( item ))
3399     {
3400       seq->length( 1 + seq->length() );
3401       seq[ seq->length() - 1 ] = item;
3402     }
3403   }
3404 }
3405
3406 //================================================================================
3407 /*!
3408  * \brief Create a mesh by copying definitions of another mesh to a given geometry
3409  *  \param [in] sourceMesh - a mesh to copy
3410  *  \param [in] newGeometry - a new geometry
3411  *  \param [in] toCopyGroups - to create groups in the new mesh
3412  *  \param [in] toReuseHypotheses - if True, existing hypothesis will be used by the new mesh,
3413  *         otherwise new hypotheses with the same parameters will be created for the new mesh.
3414  *  \param [in] toCopyElements - to copy mesh elements of same sub-shapes of the two geometries
3415  *  \param [out] newMesh - return a new mesh
3416  *  \param [out] newGroups - return new groups
3417  *  \param [out] newSubmeshes - return new sub-meshes
3418  *  \param [out] newHypotheses - return new algorithms and hypotheses
3419  *  \param [out] invalidEntries - return study entries of objects whose
3420  *         counterparts are not found in the newGeometry, followed by entries
3421  *         of mesh sub-objects that are invalid because they depend on a not found
3422  *         preceeding sub-shape
3423  *  \return CORBA::Boolean - is a success
3424  */
3425 //================================================================================
3426
3427 CORBA::Boolean SMESH_Gen_i::CopyMeshWithGeom( SMESH::SMESH_Mesh_ptr       theSourceMesh,
3428                                               GEOM::GEOM_Object_ptr       theNewGeometry,
3429                                               const char*                 theMeshName,
3430                                               CORBA::Boolean              theToCopyGroups,
3431                                               CORBA::Boolean              theToReuseHypotheses,
3432                                               CORBA::Boolean              theToCopyElements,
3433                                               SMESH::SMESH_Mesh_out       theNewMesh,
3434                                               SMESH::ListOfGroups_out     theNewGroups,
3435                                               SMESH::submesh_array_out    theNewSubmeshes,
3436                                               SMESH::ListOfHypothesis_out theNewHypotheses,
3437                                               SMESH::string_array_out     theInvalidEntries)
3438 throw ( SALOME::SALOME_Exception )
3439 {
3440   if ( CORBA::is_nil( theSourceMesh ) ||
3441        CORBA::is_nil( theNewGeometry ))
3442     THROW_SALOME_CORBA_EXCEPTION( "NULL arguments", SALOME::BAD_PARAM );
3443
3444   if ( !theSourceMesh->HasShapeToMesh() )
3445     THROW_SALOME_CORBA_EXCEPTION( "Source mesh not on geometry", SALOME::BAD_PARAM );
3446
3447   bool ok = true;
3448   SMESH_TRY;
3449
3450   TPythonDump pyDump; // prevent dump from CreateMesh()
3451
3452   theNewMesh        = CreateMesh( theNewGeometry );
3453   theNewGroups      = new SMESH::ListOfGroups();
3454   theNewSubmeshes   = new SMESH::submesh_array();
3455   theNewHypotheses  = new SMESH::ListOfHypothesis();
3456   theInvalidEntries = new SMESH::string_array();
3457
3458   std::vector< SALOMEDS::SObject_wrap > invalidSObjects;
3459
3460   GEOM::GEOM_Object_var srcGeom = theSourceMesh->GetShapeToMesh();
3461   GEOM::GEOM_Object_var geom, newGeom;
3462   SALOMEDS::SObject_wrap so;
3463   SALOMEDS::Study_var study = GetCurrentStudy();
3464
3465   SMESH_Mesh_i* srcMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( theSourceMesh );
3466   SMESH_Mesh_i* newMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( theNewMesh );
3467   srcMesh_i->Load();
3468
3469   ShapeMapper shapeMapper( srcMesh_i, newMesh_i, this );
3470
3471   // treat hypotheses of mesh and sub-meshes
3472   SMESH::submesh_array_var smList = theSourceMesh->GetSubMeshes();
3473   for ( CORBA::ULong iSM = 0; iSM <= smList->length(); ++iSM )
3474   {
3475     bool isSubMesh = ( iSM < smList->length() );
3476     if ( isSubMesh )
3477     {
3478       // create a new sub-mesh
3479       SMESH::SMESH_subMesh_var newSM;
3480       geom = smList[iSM]->GetSubShape();
3481       so   = ObjectToSObject( study, smList[iSM] );
3482       CORBA::String_var name;
3483       if ( !so->_is_nil() )
3484         name = so->GetName();
3485       newGeom = shapeMapper.FindNew( geom );
3486       if ( newGeom->_is_nil() )
3487       {
3488         newSM = createInvalidSubMesh( theNewMesh, geom, name.in() );
3489         shapeMapper.AddInvalid( geom, ObjectToSObject( study, newSM ));
3490         ok = false;
3491       }
3492       else
3493       {
3494         newSM = theNewMesh->GetSubMesh( newGeom, name.in() );
3495       }
3496       append( theNewSubmeshes, newSM );
3497
3498       if ( newGeom->_is_nil() )
3499         continue; // don't assign hypotheses
3500     }
3501     else
3502     {
3503       newGeom = GEOM::GEOM_Object::_duplicate( theNewGeometry );
3504       geom    = srcGeom;
3505       so      = ObjectToSObject( study, theNewMesh );
3506       SetName( so, theMeshName, "Mesh" );
3507     }
3508
3509     // assign hypotheses
3510     SMESH::ListOfHypothesis_var hypList = theSourceMesh->GetHypothesisList( geom );
3511     for ( CORBA::ULong iHyp = 0; iHyp < hypList->length(); ++iHyp )
3512     {
3513       SMESH::SMESH_Hypothesis_var hyp = hypList[ iHyp ];
3514       SMESH_Hypothesis_i*       hyp_i = SMESH::DownCast< SMESH_Hypothesis_i* >( hyp );
3515
3516       // get geometry hyp depends on
3517       std::vector< std::string > entryArray;
3518       std::vector< int >         subIDArray;
3519       bool dependsOnGeom = hyp_i->getObjectsDependOn( entryArray, subIDArray );
3520
3521       if ( !theToReuseHypotheses || dependsOnGeom )
3522       {
3523         // create a new hypothesis
3524         CORBA::String_var type = hyp->GetName();
3525         CORBA::String_var lib  = hyp->GetLibName();
3526         CORBA::String_var data = hyp_i->SaveTo();
3527         if ( data.in()[0] )
3528         {
3529           hyp   = CreateHypothesis( type, lib );
3530           hyp_i = SMESH::DownCast< SMESH_Hypothesis_i* >( hyp );
3531           hyp_i->LoadFrom( data.in() );
3532           append( theNewHypotheses, hyp );
3533         }
3534       }
3535
3536       // update geometry hyp depends on
3537       if ( dependsOnGeom )
3538       {
3539         for ( size_t iGeo = 0; iGeo < entryArray.size(); ++iGeo )
3540         {
3541           if ( !entryArray[ iGeo ].empty() )
3542           {
3543             std::string newEntry = shapeMapper.FindNew( entryArray[ iGeo ]);
3544             if ( newEntry.empty() )
3545             {
3546               ok = false;
3547               shapeMapper.AddInvalid( entryArray[ iGeo ], ObjectToSObject( study, hyp ));
3548               shapeMapper.AddInvalid( entryArray[ iGeo ], so ); // sub-mesh
3549             }
3550             entryArray[ iGeo ] = newEntry;
3551           }
3552         }
3553         for ( size_t iGeo = 0; iGeo < subIDArray.size(); ++iGeo )
3554         {
3555           if ( subIDArray[ iGeo ] > 0 )
3556           {
3557             int newID = shapeMapper.FindNew( subIDArray[ iGeo ]);
3558             if ( newID < 1 )
3559             {
3560               ok = false;
3561               shapeMapper.AddInvalid( subIDArray[ iGeo ], ObjectToSObject( study, hyp ));
3562               shapeMapper.AddInvalid( subIDArray[ iGeo ], so ); // sub-mesh
3563             }
3564             subIDArray[ iGeo ] = newID;
3565           }
3566         }
3567         if ( !hyp_i->setObjectsDependOn( entryArray, subIDArray ))
3568           ok = false;
3569       }
3570
3571       CORBA::String_var errorText;
3572       theNewMesh->AddHypothesis( newGeom, hyp, errorText.out() );
3573       if ( errorText.in()[0] )
3574         ok = false;
3575
3576     } // loop on hypotheses
3577   } // loop on sub-meshes and mesh
3578
3579
3580   // copy mesh elements, keeping IDs
3581   SMESHDS_Mesh* newMeshDS = newMesh_i->GetImpl().GetMeshDS();
3582   if ( theToCopyElements && theSourceMesh->NbNodes() > 0 )
3583   {
3584     ::SMESH_MeshEditor editor( &newMesh_i->GetImpl() );
3585     ::SMESH_MeshEditor::ElemFeatures elemData;
3586
3587     SMESH_subMesh*         srcMainSM = srcMesh_i->GetImpl().GetSubMeshContaining( 1 );
3588     SMESH_subMeshIteratorPtr srcSMIt = srcMainSM->getDependsOnIterator( /*includeSelf=*/true,
3589                                                                         /*vertexLast=*/false);
3590     while ( srcSMIt->more() )
3591     {
3592       SMESH_subMesh* srcSM = srcSMIt->next();
3593       if ( srcSM->IsEmpty() )
3594         continue; // not yet computed
3595       int newID = shapeMapper.FindNewNotChanged( srcSM );
3596       if ( newID < 1 )
3597         continue;
3598
3599       SMESHDS_SubMesh* srcSMDS = srcSM->GetSubMeshDS();
3600       SMDS_NodeIteratorPtr nIt = srcSMDS->GetNodes();
3601       while ( nIt->more() )
3602       {
3603         SMESH_NodeXYZ node( nIt->next() );
3604         const SMDS_MeshNode* newNode = newMeshDS->AddNodeWithID( node.X(), node.Y(), node.Z(),
3605                                                                  node->GetID() );
3606         const SMDS_PositionPtr pos = node->GetPosition();
3607         const double*           uv = pos->GetParameters();
3608         switch ( pos->GetTypeOfPosition() )
3609         {
3610         case SMDS_TOP_3DSPACE: newMeshDS->SetNodeInVolume( newNode, newID );               break;
3611         case SMDS_TOP_FACE:    newMeshDS->SetNodeOnFace  ( newNode, newID, uv[0], uv[1] ); break;
3612         case SMDS_TOP_EDGE:    newMeshDS->SetNodeOnEdge  ( newNode, newID, uv[0] );        break;
3613         case SMDS_TOP_VERTEX:  newMeshDS->SetNodeOnVertex( newNode, newID );               break;
3614         default: ;
3615         }
3616       }
3617       SMDS_ElemIteratorPtr eIt = srcSMDS->GetElements();
3618       while( eIt->more() )
3619       {
3620         const SMDS_MeshElement* e = eIt->next();
3621         elemData.Init( e, /*basicOnly=*/false );
3622         elemData.SetID( e->GetID() );
3623         elemData.myNodes.resize( e->NbNodes() );
3624         SMDS_NodeIteratorPtr nnIt = e->nodeIterator();
3625         size_t iN;
3626         for ( iN = 0; nnIt->more(); ++iN )
3627         {
3628           const SMDS_MeshNode* srcNode = nnIt->next();
3629           elemData.myNodes[ iN ] = newMeshDS->FindNode( srcNode->GetID() );
3630           if ( !elemData.myNodes[ iN ])
3631             break;
3632         }
3633         if ( iN == elemData.myNodes.size() )
3634           if ( const SMDS_MeshElement * newElem = editor.AddElement( elemData.myNodes, elemData ))
3635             newMeshDS->SetMeshElementOnShape( newElem, newID );
3636       }
3637       if ( SMESH_subMesh* newSM = newMesh_i->GetImpl().GetSubMeshContaining( newID ))
3638         newSM->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
3639     }
3640   }
3641
3642
3643   // treat groups
3644
3645   TStr2StrMap old2newGroupMap;
3646
3647   SALOME::GenericObj_wrap< SMESH::FilterManager > filterMgr = CreateFilterManager();
3648
3649   SMESH::ListOfGroups_var groups = theSourceMesh->GetGroups();
3650   CORBA::ULong nbGroups = groups->length(), nbAddedGroups = 0;
3651   for ( CORBA::ULong i = 0; i < nbGroups + nbAddedGroups; ++i )
3652   {
3653     SMESH::SMESH_Group_var         stdlGroup = SMESH::SMESH_Group::_narrow        ( groups[ i ]);
3654     SMESH::SMESH_GroupOnGeom_var   geomGroup = SMESH::SMESH_GroupOnGeom::_narrow  ( groups[ i ]);
3655     SMESH::SMESH_GroupOnFilter_var fltrGroup = SMESH::SMESH_GroupOnFilter::_narrow( groups[ i ]);
3656
3657     CORBA::String_var      name = groups[ i ]->GetName();
3658     SMESH::ElementType elemType = groups[ i ]->GetType();
3659
3660     SMESH::SMESH_GroupBase_var newGroup;
3661
3662     if ( !stdlGroup->_is_nil() )
3663     {
3664       if ( newMeshDS->GetMeshInfo().NbElements( SMDSAbs_ElementType( elemType )) > 0 )
3665       {
3666         SMESH::long_array_var elemIDs = stdlGroup->GetIDs();
3667         CORBA::ULong iE = 0;
3668         for ( ; iE < elemIDs->length(); ++iE ) // check if elements have been copied
3669           if ( newMeshDS->GetElementType( elemIDs[ iE ], elemType != SMESH::NODE ))
3670             break;
3671         if ( iE < elemIDs->length() )
3672         {
3673           stdlGroup = theNewMesh->CreateGroup( elemType, name );
3674           stdlGroup->Add( elemIDs );
3675           newGroup = SMESH::SMESH_GroupBase::_narrow( stdlGroup );
3676         }
3677       }
3678     }
3679     else if ( !geomGroup->_is_nil() )
3680     {
3681       GEOM::GEOM_Object_var    geom = geomGroup->GetShape();
3682       GEOM::GEOM_Object_var newGeom = shapeMapper.FindNew( geom );
3683       if ( newGeom->_is_nil() )
3684       {
3685         newGroup = theNewMesh->CreateGroup( elemType, name ); // just to notify the user
3686         shapeMapper.AddInvalid( geom, ObjectToSObject( study, newGroup ));
3687         ok = false;
3688       }
3689       else
3690       {
3691         newGroup = theNewMesh->CreateGroupFromGEOM( elemType, name, newGeom );
3692       }
3693     }
3694     else if ( !fltrGroup->_is_nil() )
3695     {
3696       // replace geometry in a filter
3697       SMESH::Filter_var filter = fltrGroup->GetFilter();
3698       SMESH::Filter::Criteria_var criteria;
3699       filter->GetCriteria( criteria.out() );
3700
3701       bool isMissingGroup = false;
3702       std::vector< std::string > badEntries;
3703
3704       for ( CORBA::ULong iCr = 0; iCr < criteria->length(); ++iCr )
3705       {
3706         const char* thresholdID = criteria[ iCr ].ThresholdID.in();
3707         switch ( criteria[ iCr ].Type )
3708         {
3709         case SMESH::FT_BelongToMeshGroup:
3710         {
3711           SALOME::GenericObj_wrap< SMESH::BelongToMeshGroup > btgg = filterMgr->CreateBelongToMeshGroup();
3712           btgg->SetGroupID( thresholdID );
3713           SMESH::SMESH_GroupBase_ptr refGroup = btgg->GetGroup();
3714           SALOMEDS::SObject_wrap   refGroupSO = ObjectToSObject( study, refGroup );
3715           if ( refGroupSO->_is_nil() )
3716             break;
3717           CORBA::String_var     refID = refGroupSO->GetID();
3718           TStr2StrMap::iterator o2nID = old2newGroupMap.find( refID.in() );
3719           if ( o2nID == old2newGroupMap.end() )
3720           {
3721             isMissingGroup = true; // corresponding new group not yet created
3722             break;
3723           }
3724           criteria[ iCr ].ThresholdID = o2nID->second.c_str();
3725
3726           if ( o2nID->second.empty() ) // new referred group is invalid
3727             badEntries.push_back( refID.in() );
3728           break;
3729         }
3730         case SMESH::FT_BelongToGeom:
3731         case SMESH::FT_BelongToPlane:
3732         case SMESH::FT_BelongToCylinder:
3733         case SMESH::FT_BelongToGenSurface:
3734         case SMESH::FT_LyingOnGeom:
3735         {
3736           std::string newID = shapeMapper.FindNew( thresholdID );
3737           criteria[ iCr ].ThresholdID = newID.c_str();
3738           if ( newID.empty() )
3739             badEntries.push_back( thresholdID );
3740           break;
3741         }
3742         case SMESH::FT_ConnectedElements:
3743         {
3744           if ( thresholdID && thresholdID[0] )
3745           {
3746             std::string newID = shapeMapper.FindNew( thresholdID );
3747             criteria[ iCr ].ThresholdID = newID.c_str();
3748             if ( newID.empty() )
3749               badEntries.push_back( thresholdID );
3750           }
3751           break;
3752         }
3753         default:;
3754         }
3755       } // loop on criteria
3756
3757       if ( isMissingGroup && i < nbGroups )
3758       {
3759         // to treat the group again
3760         append( groups, SMESH::SMESH_GroupBase::_duplicate( groups[ i ]));
3761         ++nbAddedGroups;
3762         continue;
3763       }
3764       SMESH::Filter_var newFilter = filterMgr->CreateFilter();
3765       newFilter->SetCriteria( criteria );
3766
3767       newGroup = theNewMesh->CreateGroupFromFilter( elemType, name, newFilter );
3768       newFilter->UnRegister();
3769
3770       SALOMEDS::SObject_wrap newSO = ObjectToSObject( study, newGroup );
3771       for ( size_t iEnt = 0; iEnt < badEntries.size(); ++iEnt )
3772         shapeMapper.AddInvalid( badEntries[ iEnt ], newSO );
3773
3774       if ( isMissingGroup ) // all groups treated but a referred groups still not found
3775       {
3776         invalidSObjects.push_back( ObjectToSObject( study, newGroup ));
3777         ok = false;
3778       }
3779       if ( !badEntries.empty() )
3780         ok = false;
3781
3782     } // treat a group on filter
3783
3784     append( theNewGroups, newGroup );
3785
3786     // fill old2newGroupMap
3787     SALOMEDS::SObject_wrap srcSO = ObjectToSObject( study, groups[i] );
3788     SALOMEDS::SObject_wrap newSO = ObjectToSObject( study, newGroup );
3789     if ( !srcSO->_is_nil() )
3790     {
3791       CORBA::String_var srcID, newID("");
3792       srcID = srcSO->GetID();
3793       if ( !newSO->_is_nil() )
3794         newID = newSO->GetID();
3795       old2newGroupMap.insert( std::make_pair( std::string( srcID.in() ),
3796                                               std::string( newID.in() )));
3797     }
3798
3799     if ( newGroup->_is_nil() )
3800       ok = false;
3801
3802   } // loop on groups
3803
3804   // set mesh name
3805   SALOMEDS::SObject_wrap soNew = ObjectToSObject( study, theNewMesh );
3806   SALOMEDS::SObject_wrap soOld = ObjectToSObject( study, theSourceMesh );
3807   CORBA::String_var oldName = soOld->GetName();
3808   SetName( soNew, oldName.in(), "Mesh" );
3809
3810   // mark invalid objects
3811   shapeMapper.GetInvalid( theInvalidEntries, invalidSObjects );
3812
3813   for ( size_t i = 0; i < invalidSObjects.size(); ++i )
3814     highLightInvalid( invalidSObjects[i].in(), true );
3815
3816   pyDump << "ok, "
3817          << theNewMesh << ", "
3818          << theNewGroups << ", "
3819          << *theNewSubmeshes.ptr() << ", "
3820          << *theNewHypotheses.ptr() << ", "
3821          << "invalidEntries = " << this << ".CopyMeshWithGeom( "
3822          << theSourceMesh << ", "
3823          << theNewGeometry << ", "
3824          << "'" << theMeshName << "', "
3825          << theToCopyGroups << ", "
3826          << theToReuseHypotheses << ", "
3827          << theToCopyElements << " )";
3828
3829   SMESH_CATCH( SMESH::throwCorbaException );
3830
3831   return ok;
3832 }
3833
3834 //================================================================================
3835 /*!
3836  *  SMESH_Gen_i::GetMEDVersion
3837  *
3838  *  Get MED version of the file by its name
3839  */
3840 //================================================================================
3841 CORBA::Boolean SMESH_Gen_i::GetMEDVersion(const char* theFileName,
3842                                           SMESH::MED_VERSION& theVersion)
3843 {
3844   theVersion = SMESH::MED_V2_1;
3845   MED::EVersion aVersion = MED::GetVersionId( theFileName );
3846   switch( aVersion ) {
3847     case MED::eV2_1     : theVersion = SMESH::MED_V2_1;    return true;
3848     case MED::eV2_2     : theVersion = SMESH::MED_V2_2;    return true;
3849     case MED::eLATEST   : theVersion = SMESH::MED_LATEST;  return true;
3850     case MED::eMINOR_0  : theVersion = SMESH::MED_MINOR_0; return true;
3851     case MED::eMINOR_1  : theVersion = SMESH::MED_MINOR_1; return true;
3852     case MED::eMINOR_2  : theVersion = SMESH::MED_MINOR_2; return true;
3853     case MED::eMINOR_3  : theVersion = SMESH::MED_MINOR_3; return true;
3854     case MED::eMINOR_4  : theVersion = SMESH::MED_MINOR_4; return true;
3855     case MED::eMINOR_5  : theVersion = SMESH::MED_MINOR_5; return true;
3856     case MED::eMINOR_6  : theVersion = SMESH::MED_MINOR_6; return true;
3857     case MED::eMINOR_7  : theVersion = SMESH::MED_MINOR_7; return true;
3858     case MED::eMINOR_8  : theVersion = SMESH::MED_MINOR_8; return true;
3859     case MED::eMINOR_9  : theVersion = SMESH::MED_MINOR_9; return true;
3860     case MED::eVUnknown : return false;
3861   }
3862   return false;
3863 }
3864
3865 //================================================================================
3866 /*!
3867  *  SMESH_Gen_i::GetMeshNames
3868  *
3869  *  Get names of meshes defined in file with the specified name
3870  */
3871 //================================================================================
3872 SMESH::string_array* SMESH_Gen_i::GetMeshNames(const char* theFileName)
3873 {
3874   SMESH::string_array_var aResult = new SMESH::string_array();
3875   MED::PWrapper aMed = MED::CrWrapper( theFileName );
3876   MED::TErr anErr;
3877   MED::TInt aNbMeshes = aMed->GetNbMeshes( &anErr );
3878   if( anErr >= 0 ) {
3879     aResult->length( aNbMeshes );
3880     for( MED::TInt i = 0; i < aNbMeshes; i++ ) {
3881       MED::PMeshInfo aMeshInfo = aMed->GetPMeshInfo( i+1 );
3882       aResult[i] = CORBA::string_dup( aMeshInfo->GetName().c_str() );
3883     }
3884   }
3885   return aResult._retn();
3886 }
3887
3888 //=============================================================================
3889 /*!
3890  *  SMESH_Gen_i::Save
3891  *
3892  *  Save SMESH module's data
3893  */
3894 //=============================================================================
3895 SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent,
3896                                       const char*              theURL,
3897                                       bool                     isMultiFile )
3898 {
3899   //  ASSERT( theComponent->GetStudy()->StudyId() == myCurrentStudy->StudyId() )
3900   // san -- in case <myCurrentStudy> differs from theComponent's study,
3901   // use that of the component
3902   if ( theComponent->GetStudy()->StudyId() != GetCurrentStudyID() )
3903     SetCurrentStudy( theComponent->GetStudy() );
3904
3905   // Store study contents as a set of python commands
3906   SavePython(myCurrentStudy);
3907
3908   StudyContext* myStudyContext = GetCurrentStudyContext();
3909
3910   // Declare a byte stream
3911   SALOMEDS::TMPFile_var aStreamFile;
3912
3913   // Obtain a temporary dir
3914   TCollection_AsciiString tmpDir =
3915     ( isMultiFile ) ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
3916
3917   // Create a sequence of files processed
3918   SALOMEDS::ListOfFileNames_var aFileSeq = new SALOMEDS::ListOfFileNames;
3919   aFileSeq->length( NUM_TMP_FILES );
3920
3921   TCollection_AsciiString aStudyName( "" );
3922   if ( isMultiFile )
3923     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( myCurrentStudy->URL() ).c_str() );
3924
3925   // Set names of temporary files
3926   TCollection_AsciiString filename =
3927     aStudyName + TCollection_AsciiString( "_SMESH.hdf" );        // for SMESH data itself
3928   TCollection_AsciiString meshfile =
3929     aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );   // for mesh data to be stored in MED file
3930   aFileSeq[ 0 ] = CORBA::string_dup( filename.ToCString() );
3931   aFileSeq[ 1 ] = CORBA::string_dup( meshfile.ToCString() );
3932   filename = tmpDir + filename;
3933   meshfile = tmpDir + meshfile;
3934
3935   HDFfile*    aFile;
3936   HDFdataset* aDataset;
3937   HDFgroup*   aTopGroup;
3938   HDFgroup*   aGroup;
3939   HDFgroup*   aSubGroup;
3940   HDFgroup*   aSubSubGroup;
3941   hdf_size    aSize[ 1 ];
3942
3943
3944   //Remove the files if they exist: BugID: 11225
3945 #ifndef WIN32 /* unix functionality */
3946   TCollection_AsciiString cmd("rm -f \"");
3947 #else /* windows */
3948   TCollection_AsciiString cmd("del /F \"");
3949 #endif
3950
3951   cmd+=filename;
3952   cmd+="\" \"";
3953   cmd+=meshfile;
3954   cmd+="\"";
3955   system(cmd.ToCString());
3956
3957   // MED writer to be used by storage process
3958   DriverMED_W_SMESHDS_Mesh myWriter;
3959   myWriter.SetFile( meshfile.ToCString() );
3960
3961   // IMP issue 20918
3962   // SetStoreName() to groups before storing hypotheses to let them refer to
3963   // groups using "store name", which is "Group <group_persistent_id>"
3964   {
3965     SALOMEDS::ChildIterator_wrap itBig = myCurrentStudy->NewChildIterator( theComponent );
3966     for ( ; itBig->More(); itBig->Next() ) {
3967       SALOMEDS::SObject_wrap gotBranch = itBig->Value();
3968       if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
3969         CORBA::Object_var anObject = SObjectToObject( gotBranch );
3970         if ( !CORBA::is_nil( anObject ) ) {
3971           SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
3972           if ( !myMesh->_is_nil() ) {
3973             myMesh->Load(); // load from study file if not yet done
3974             TPythonDump pd; // not to dump GetGroups()
3975             SMESH::ListOfGroups_var groups = myMesh->GetGroups();
3976             pd << ""; // to avoid optimizing pd out
3977             for ( CORBA::ULong i = 0; i < groups->length(); ++i )
3978             {
3979               SMESH_GroupBase_i* grImpl = SMESH::DownCast<SMESH_GroupBase_i*>( groups[i]);
3980               if ( grImpl )
3981               {
3982                 CORBA::String_var objStr = GetORB()->object_to_string( grImpl->_this() );
3983                 int anId = myStudyContext->findId( string( objStr.in() ) );
3984                 char grpName[ 30 ];
3985                 sprintf( grpName, "Group %d", anId );
3986                 SMESHDS_GroupBase* aGrpBaseDS = grImpl->GetGroupDS();
3987                 aGrpBaseDS->SetStoreName( grpName );
3988               }
3989             }
3990           }
3991         }
3992       }
3993     }
3994   }
3995
3996   // Write data
3997   // ---> create HDF file
3998   aFile = new HDFfile( (char*) filename.ToCString() );
3999   aFile->CreateOnDisk();
4000
4001   // --> iterator for top-level objects
4002   SALOMEDS::ChildIterator_wrap itBig = myCurrentStudy->NewChildIterator( theComponent );
4003   for ( ; itBig->More(); itBig->Next() ) {
4004     SALOMEDS::SObject_wrap gotBranch = itBig->Value();
4005
4006     // --> hypotheses root branch (only one for the study)
4007     if ( gotBranch->Tag() == GetHypothesisRootTag() ) {
4008       // create hypotheses root HDF group
4009       aTopGroup = new HDFgroup( "Hypotheses", aFile );
4010       aTopGroup->CreateOnDisk();
4011
4012       // iterator for all hypotheses
4013       SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( gotBranch );
4014       for ( ; it->More(); it->Next() ) {
4015         SALOMEDS::SObject_wrap mySObject = it->Value();
4016         CORBA::Object_var anObject = SObjectToObject( mySObject );
4017         if ( !CORBA::is_nil( anObject ) ) {
4018           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
4019           if ( !myHyp->_is_nil() ) {
4020             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
4021             if ( myImpl ) {
4022               CORBA::String_var hn = myHyp->GetName(), ln = myHyp->GetLibName();
4023               std::string hypname = hn.in();
4024               std::string libname = ln.in();
4025               // BUG SWP13062
4026               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
4027               // WIN32 and ".so" for X-system) must be deleted
4028               int libname_len = libname.length();
4029 #ifdef WIN32
4030               if( libname_len > 4 )
4031                 libname.resize( libname_len - 4 );
4032 #else
4033               // PAL17753 (Regression: missing hypothesis in restored study)
4034               // "lib" also should be removed from the beginning
4035               //if( libname_len > 3 )
4036               //libname.resize( libname_len - 3 );
4037               if( libname_len > 6 )
4038                 libname = libname.substr( 3, libname_len - 3 - 3 );
4039 #endif
4040               CORBA::String_var  objStr = GetORB()->object_to_string( anObject );
4041               CORBA::String_var hypdata = myImpl->SaveTo();
4042               int                    id = myStudyContext->findId( string( objStr.in() ));
4043
4044               // for each hypothesis create HDF group basing on its id
4045               char hypGrpName[30];
4046               sprintf( hypGrpName, "Hypothesis %d", id );
4047               aGroup = new HDFgroup( hypGrpName, aTopGroup );
4048               aGroup->CreateOnDisk();
4049               // --> type name of hypothesis
4050               aSize[ 0 ] = hypname.length() + 1;
4051               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
4052               aDataset->CreateOnDisk();
4053               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
4054               aDataset->CloseOnDisk();
4055               // --> server plugin library name of hypothesis
4056               aSize[ 0 ] = libname.length() + 1;
4057               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
4058               aDataset->CreateOnDisk();
4059               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
4060               aDataset->CloseOnDisk();
4061               // --> persistent data of hypothesis
4062               aSize[ 0 ] = strlen( hypdata.in() ) + 1;
4063               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
4064               aDataset->CreateOnDisk();
4065               aDataset->WriteOnDisk( ( char* )( hypdata.in() ) );
4066               aDataset->CloseOnDisk();
4067               // close hypothesis HDF group
4068               aGroup->CloseOnDisk();
4069             }
4070           }
4071         }
4072       }
4073       // close hypotheses root HDF group
4074       aTopGroup->CloseOnDisk();
4075     }
4076     // --> algorithms root branch (only one for the study)
4077     else if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
4078       // create algorithms root HDF group
4079       aTopGroup = new HDFgroup( "Algorithms", aFile );
4080       aTopGroup->CreateOnDisk();
4081
4082       // iterator for all algorithms
4083       SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( gotBranch );
4084       for ( ; it->More(); it->Next() ) {
4085         SALOMEDS::SObject_wrap mySObject = it->Value();
4086         CORBA::Object_var anObject = SObjectToObject( mySObject );
4087         if ( !CORBA::is_nil( anObject ) ) {
4088           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
4089           if ( !myHyp->_is_nil() ) {
4090             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
4091             if ( myImpl ) {
4092               CORBA::String_var hn = myHyp->GetName(), ln = myHyp->GetLibName();
4093               std::string hypname = hn.in();
4094               std::string libname = ln.in();
4095               // BUG SWP13062
4096               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
4097               // WIN32 and ".so" for X-system) must be deleted
4098               int libname_len = libname.length();
4099 #ifdef WIN32
4100               if( libname_len > 4 )
4101                 libname.resize( libname_len - 4 );
4102 #else
4103               // PAL17753 (Regression: missing hypothesis in restored study)
4104               // "lib" also should be removed from the beginning
4105               //if( libname_len > 3 )
4106               //libname.resize( libname_len - 3 );
4107               if( libname_len > 6 )
4108                 libname = libname.substr( 3, libname_len - 3 - 3 );
4109 #endif
4110               CORBA::String_var  objStr = GetORB()->object_to_string( anObject );
4111               CORBA::String_var hypdata = myImpl->SaveTo();
4112               int                    id = myStudyContext->findId( string( objStr.in() ) );
4113
4114               // for each algorithm create HDF group basing on its id
4115               char hypGrpName[30];
4116               sprintf( hypGrpName, "Algorithm %d", id );
4117               aGroup = new HDFgroup( hypGrpName, aTopGroup );
4118               aGroup->CreateOnDisk();
4119               // --> type name of algorithm
4120               aSize[0] = hypname.length() + 1;
4121               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
4122               aDataset->CreateOnDisk();
4123               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
4124               aDataset->CloseOnDisk();
4125               // --> server plugin library name of hypothesis
4126               aSize[0] = libname.length() + 1;
4127               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
4128               aDataset->CreateOnDisk();
4129               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
4130               aDataset->CloseOnDisk();
4131               // --> persistent data of algorithm
4132               aSize[0] = strlen( hypdata.in() ) + 1;
4133               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
4134               aDataset->CreateOnDisk();
4135               aDataset->WriteOnDisk( ( char* )( hypdata.in() ));
4136               aDataset->CloseOnDisk();
4137               // close algorithm HDF group
4138               aGroup->CloseOnDisk();
4139             }
4140           }
4141         }
4142       }
4143       // close algorithms root HDF group
4144       aTopGroup->CloseOnDisk();
4145     }
4146     // --> mesh objects roots branches
4147     else if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
4148       CORBA::Object_var anObject = SObjectToObject( gotBranch );
4149       if ( !CORBA::is_nil( anObject ) ) {
4150         SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
4151         if ( !myMesh->_is_nil() ) {
4152           SMESH_Mesh_i* myImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myMesh ).in() );
4153           if ( myImpl ) {
4154             CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4155             int id = myStudyContext->findId( string( objStr.in() ) );
4156             ::SMESH_Mesh& myLocMesh = myImpl->GetImpl();
4157             SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
4158             bool hasShape = myLocMesh.HasShapeToMesh();
4159
4160             // for each mesh open the HDF group basing on its id
4161             char meshGrpName[ 30 ];
4162             sprintf( meshGrpName, "Mesh %d", id );
4163             aTopGroup = new HDFgroup( meshGrpName, aFile );
4164             aTopGroup->CreateOnDisk();
4165
4166             // --> put dataset to hdf file which is a flag that mesh has data
4167             string strHasData = "0";
4168             // check if the mesh is not empty
4169             if ( mySMESHDSMesh->NbNodes() > 0 ) {
4170               // write mesh data to med file
4171               myWriter.SetMesh( mySMESHDSMesh );
4172               myWriter.SetMeshId( id );
4173               strHasData = "1";
4174             }
4175             aSize[ 0 ] = strHasData.length() + 1;
4176             aDataset = new HDFdataset( "Has data", aTopGroup, HDF_STRING, aSize, 1 );
4177             aDataset->CreateOnDisk();
4178             aDataset->WriteOnDisk( ( char* )( strHasData.c_str() ) );
4179             aDataset->CloseOnDisk();
4180
4181             // ouv : NPAL12872
4182             // for each mesh open the HDF group basing on its auto color parameter
4183             char meshAutoColorName[ 30 ];
4184             sprintf( meshAutoColorName, "AutoColorMesh %d", id );
4185             int anAutoColor[1];
4186             anAutoColor[0] = myImpl->GetAutoColor();
4187             aSize[ 0 ] = 1;
4188             aDataset = new HDFdataset( meshAutoColorName, aTopGroup, HDF_INT32, aSize, 1 );
4189             aDataset->CreateOnDisk();
4190             aDataset->WriteOnDisk( anAutoColor );
4191             aDataset->CloseOnDisk();
4192
4193             // issue 0020693. Store _isModified flag
4194             int isModified = myLocMesh.GetIsModified();
4195             aSize[ 0 ] = 1;
4196             aDataset = new HDFdataset( "_isModified", aTopGroup, HDF_INT32, aSize, 1 );
4197             aDataset->CreateOnDisk();
4198             aDataset->WriteOnDisk( &isModified );
4199             aDataset->CloseOnDisk();
4200
4201             // issue 20918. Store Persistent Id of SMESHDS_Mesh
4202             int meshPersistentId = mySMESHDSMesh->GetPersistentId();
4203             aSize[ 0 ] = 1;
4204             aDataset = new HDFdataset( "meshPersistentId", aTopGroup, HDF_INT32, aSize, 1 );
4205             aDataset->CreateOnDisk();
4206             aDataset->WriteOnDisk( &meshPersistentId );
4207             aDataset->CloseOnDisk();
4208
4209             // write reference on a shape if exists
4210             SALOMEDS::SObject_wrap myRef;
4211             bool shapeRefFound = false;
4212             bool found = gotBranch->FindSubObject( GetRefOnShapeTag(), myRef.inout() );
4213             if ( found ) {
4214               SALOMEDS::SObject_wrap myShape;
4215               bool ok = myRef->ReferencedObject( myShape.inout() );
4216               if ( ok ) {
4217                 CORBA::Object_var shapeObj = myShape->GetObject();
4218                 shapeRefFound = (! CORBA::is_nil( shapeObj ));
4219                 CORBA::String_var myRefOnObject = myShape->GetID();
4220                 if ( shapeRefFound && myRefOnObject.in()[0] ) {
4221                   aSize[ 0 ] = strlen( myRefOnObject.in() ) + 1;
4222                   aDataset = new HDFdataset( "Ref on shape", aTopGroup, HDF_STRING, aSize, 1 );
4223                   aDataset->CreateOnDisk();
4224                   aDataset->WriteOnDisk( ( char* )( myRefOnObject.in() ) );
4225                   aDataset->CloseOnDisk();
4226                 }
4227               }
4228             }
4229
4230             // write applied hypotheses if exist
4231             SALOMEDS::SObject_wrap myHypBranch;
4232             found = gotBranch->FindSubObject( GetRefOnAppliedHypothesisTag(), myHypBranch.inout() );
4233             if ( found && !shapeRefFound && hasShape ) { // remove applied hyps
4234               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myHypBranch );
4235             }
4236             if ( found && (shapeRefFound || !hasShape) ) {
4237               aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
4238               aGroup->CreateOnDisk();
4239
4240               SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( myHypBranch );
4241               int hypNb = 0;
4242               for ( ; it->More(); it->Next() ) {
4243                 SALOMEDS::SObject_wrap mySObject = it->Value();
4244                 SALOMEDS::SObject_wrap myRefOnHyp;
4245                 bool ok = mySObject->ReferencedObject( myRefOnHyp.inout() );
4246                 if ( ok ) {
4247                   // san - it is impossible to recover applied hypotheses
4248                   //       using their entries within Load() method,
4249                   // for there are no AttributeIORs in the study when Load() is working.
4250                   // Hence, it is better to store persistent IDs of hypotheses as references to them
4251
4252                   //string myRefOnObject = myRefOnHyp->GetID();
4253                   CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
4254                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4255                   int id = myStudyContext->findId( string( objStr.in() ) );
4256                   //if ( myRefOnObject.length() > 0 ) {
4257                   //aSize[ 0 ] = myRefOnObject.length() + 1;
4258                   char hypName[ 30 ], hypId[ 30 ];
4259                   sprintf( hypName, "Hyp %d", ++hypNb );
4260                   sprintf( hypId, "%d", id );
4261                   aSize[ 0 ] = strlen( hypId ) + 1;
4262                   aDataset = new HDFdataset( hypName, aGroup, HDF_STRING, aSize, 1 );
4263                   aDataset->CreateOnDisk();
4264                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4265                   aDataset->WriteOnDisk( hypId );
4266                   aDataset->CloseOnDisk();
4267                   //}
4268                 }
4269               }
4270               aGroup->CloseOnDisk();
4271             }
4272
4273             // write applied algorithms if exist
4274             SALOMEDS::SObject_wrap myAlgoBranch;
4275             found = gotBranch->FindSubObject( GetRefOnAppliedAlgorithmsTag(),
4276                                               myAlgoBranch.inout() );
4277             if ( found && !shapeRefFound && hasShape) { // remove applied algos
4278               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myAlgoBranch );
4279             }
4280             if ( found && (shapeRefFound || !hasShape)) {
4281               aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
4282               aGroup->CreateOnDisk();
4283
4284               SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( myAlgoBranch );
4285               int algoNb = 0;
4286               for ( ; it->More(); it->Next() ) {
4287                 SALOMEDS::SObject_wrap mySObject = it->Value();
4288                 SALOMEDS::SObject_wrap myRefOnAlgo;
4289                 bool ok = mySObject->ReferencedObject( myRefOnAlgo.inout() );
4290                 if ( ok ) {
4291                   // san - it is impossible to recover applied algorithms
4292                   //       using their entries within Load() method,
4293                   // for there are no AttributeIORs in the study when Load() is working.
4294                   // Hence, it is better to store persistent IDs of algorithms as references to them
4295
4296                   //string myRefOnObject = myRefOnAlgo->GetID();
4297                   CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
4298                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4299                   int id = myStudyContext->findId( string( objStr.in() ) );
4300                   //if ( myRefOnObject.length() > 0 ) {
4301                   //aSize[ 0 ] = myRefOnObject.length() + 1;
4302                   char algoName[ 30 ], algoId[ 30 ];
4303                   sprintf( algoName, "Algo %d", ++algoNb );
4304                   sprintf( algoId, "%d", id );
4305                   aSize[ 0 ] = strlen( algoId ) + 1;
4306                   aDataset = new HDFdataset( algoName, aGroup, HDF_STRING, aSize, 1 );
4307                   aDataset->CreateOnDisk();
4308                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4309                   aDataset->WriteOnDisk( algoId );
4310                   aDataset->CloseOnDisk();
4311                   //}
4312                 }
4313               }
4314               aGroup->CloseOnDisk();
4315             }
4316
4317             // --> submesh objects sub-branches
4318
4319             for ( int i = GetSubMeshOnVertexTag(); i <= GetSubMeshOnCompoundTag(); i++ ) {
4320               SALOMEDS::SObject_wrap mySubmeshBranch;
4321               found = gotBranch->FindSubObject( i, mySubmeshBranch.inout() );
4322
4323               if ( found ) // check if there is shape reference in submeshes
4324               {
4325                 bool hasShapeRef = false;
4326                 SALOMEDS::ChildIterator_wrap itSM =
4327                   myCurrentStudy->NewChildIterator( mySubmeshBranch );
4328                 for ( ; itSM->More(); itSM->Next() ) {
4329                   SALOMEDS::SObject_wrap mySubRef, myShape, mySObject = itSM->Value();
4330                   if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ))
4331                     mySubRef->ReferencedObject( myShape.inout() );
4332                   if ( !CORBA::is_nil( myShape ) && !CORBA::is_nil( myShape->GetObject() ))
4333                     hasShapeRef = true;
4334                   else
4335                   { // remove one submesh
4336                     if ( shapeRefFound )
4337                     { // unassign hypothesis
4338                       SMESH::SMESH_subMesh_var mySubMesh =
4339                         SMESH::SMESH_subMesh::_narrow( SObjectToObject( mySObject ));
4340                       if ( !mySubMesh->_is_nil() ) {
4341                         int shapeID = mySubMesh->GetId();
4342                         TopoDS_Shape S = mySMESHDSMesh->IndexToShape( shapeID );
4343                         const list<const SMESHDS_Hypothesis*>& hypList =
4344                           mySMESHDSMesh->GetHypothesis( S );
4345                         list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
4346                         while ( hyp != hypList.end() ) {
4347                           int hypID = (*hyp++)->GetID(); // goto next hyp here because
4348                           myLocMesh.RemoveHypothesis( S, hypID ); // hypList changes here
4349                         }
4350                       }
4351                     }
4352                     myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySObject );
4353                   }
4354                 } // loop on submeshes of a type
4355                 if ( !shapeRefFound || !hasShapeRef ) { // remove the whole submeshes branch
4356                   myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySubmeshBranch );
4357                   found = false;
4358                 }
4359               }  // end check if there is shape reference in submeshes
4360               if ( found ) {
4361                 char name_meshgroup[ 30 ];
4362                 if ( i == GetSubMeshOnVertexTag() )
4363                   strcpy( name_meshgroup, "SubMeshes On Vertex" );
4364                 else if ( i == GetSubMeshOnEdgeTag() )
4365                   strcpy( name_meshgroup, "SubMeshes On Edge" );
4366                 else if ( i == GetSubMeshOnWireTag() )
4367                   strcpy( name_meshgroup, "SubMeshes On Wire" );
4368                 else if ( i == GetSubMeshOnFaceTag() )
4369                   strcpy( name_meshgroup, "SubMeshes On Face" );
4370                 else if ( i == GetSubMeshOnShellTag() )
4371                   strcpy( name_meshgroup, "SubMeshes On Shell" );
4372                 else if ( i == GetSubMeshOnSolidTag() )
4373                   strcpy( name_meshgroup, "SubMeshes On Solid" );
4374                 else if ( i == GetSubMeshOnCompoundTag() )
4375                   strcpy( name_meshgroup, "SubMeshes On Compound" );
4376
4377                 // for each type of submeshes create container HDF group
4378                 aGroup = new HDFgroup( name_meshgroup, aTopGroup );
4379                 aGroup->CreateOnDisk();
4380
4381                 // iterator for all submeshes of given type
4382                 SALOMEDS::ChildIterator_wrap itSM = myCurrentStudy->NewChildIterator( mySubmeshBranch );
4383                 for ( ; itSM->More(); itSM->Next() ) {
4384                   SALOMEDS::SObject_wrap mySObject = itSM->Value();
4385                   CORBA::Object_var anSubObject = SObjectToObject( mySObject );
4386                   if ( !CORBA::is_nil( anSubObject ))
4387                   {
4388                     SMESH::SMESH_subMesh_var mySubMesh = SMESH::SMESH_subMesh::_narrow( anSubObject ) ;
4389                     CORBA::String_var objStr = GetORB()->object_to_string( anSubObject );
4390                     int subid = myStudyContext->findId( string( objStr.in() ) );
4391
4392                     // for each mesh open the HDF group basing on its id
4393                     char submeshGrpName[ 30 ];
4394                     sprintf( submeshGrpName, "SubMesh %d", subid );
4395                     aSubGroup = new HDFgroup( submeshGrpName, aGroup );
4396                     aSubGroup->CreateOnDisk();
4397
4398                     // write reference on a shape, already checked if it exists
4399                     SALOMEDS::SObject_wrap mySubRef, myShape;
4400                     if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ))
4401                       mySubRef->ReferencedObject( myShape.inout() );
4402                     string myRefOnObject = myShape->GetID();
4403                     if ( myRefOnObject.length() > 0 ) {
4404                       aSize[ 0 ] = myRefOnObject.length() + 1;
4405                       aDataset = new HDFdataset( "Ref on shape", aSubGroup, HDF_STRING, aSize, 1 );
4406                       aDataset->CreateOnDisk();
4407                       aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4408                       aDataset->CloseOnDisk();
4409                     }
4410
4411                     // write applied hypotheses if exist
4412                     SALOMEDS::SObject_wrap mySubHypBranch;
4413                     found = mySObject->FindSubObject( GetRefOnAppliedHypothesisTag(),
4414                                                       mySubHypBranch.inout() );
4415                     if ( found ) {
4416                       aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
4417                       aSubSubGroup->CreateOnDisk();
4418
4419                       SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( mySubHypBranch );
4420                       int hypNb = 0;
4421                       for ( ; it->More(); it->Next() ) {
4422                         SALOMEDS::SObject_wrap mySubSObject = it->Value();
4423                         SALOMEDS::SObject_wrap myRefOnHyp;
4424                         bool ok = mySubSObject->ReferencedObject( myRefOnHyp.inout() );
4425                         if ( ok ) {
4426                           //string myRefOnObject = myRefOnHyp->GetID();
4427                           CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
4428                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4429                           int id = myStudyContext->findId( string( objStr.in() ) );
4430                           //if ( myRefOnObject.length() > 0 ) {
4431                           //aSize[ 0 ] = myRefOnObject.length() + 1;
4432                           char hypName[ 30 ], hypId[ 30 ];
4433                           sprintf( hypName, "Hyp %d", ++hypNb );
4434                           sprintf( hypId, "%d", id );
4435                           aSize[ 0 ] = strlen( hypId ) + 1;
4436                           aDataset = new HDFdataset( hypName, aSubSubGroup, HDF_STRING, aSize, 1 );
4437                           aDataset->CreateOnDisk();
4438                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4439                           aDataset->WriteOnDisk( hypId );
4440                           aDataset->CloseOnDisk();
4441                           //}
4442                         }
4443                       }
4444                       aSubSubGroup->CloseOnDisk();
4445                     }
4446
4447                     // write applied algorithms if exist
4448                     SALOMEDS::SObject_wrap mySubAlgoBranch;
4449                     found = mySObject->FindSubObject( GetRefOnAppliedAlgorithmsTag(),
4450                                                       mySubAlgoBranch.inout() );
4451                     if ( found ) {
4452                       aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
4453                       aSubSubGroup->CreateOnDisk();
4454
4455                       SALOMEDS::ChildIterator_wrap it =
4456                         myCurrentStudy->NewChildIterator( mySubAlgoBranch );
4457                       int algoNb = 0;
4458                       for ( ; it->More(); it->Next() ) {
4459                         SALOMEDS::SObject_wrap mySubSObject = it->Value();
4460                         SALOMEDS::SObject_wrap myRefOnAlgo;
4461                         bool ok = mySubSObject->ReferencedObject( myRefOnAlgo.inout() );
4462                         if ( ok ) {
4463                           //string myRefOnObject = myRefOnAlgo->GetID();
4464                           CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
4465                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4466                           int id = myStudyContext->findId( string( objStr.in() ) );
4467                           //if ( myRefOnObject.length() > 0 ) {
4468                           //aSize[ 0 ] = myRefOnObject.length() + 1;
4469                           char algoName[ 30 ], algoId[ 30 ];
4470                           sprintf( algoName, "Algo %d", ++algoNb );
4471                           sprintf( algoId, "%d", id );
4472                           aSize[ 0 ] = strlen( algoId ) + 1;
4473                           aDataset = new HDFdataset( algoName, aSubSubGroup, HDF_STRING, aSize, 1 );
4474                           aDataset->CreateOnDisk();
4475                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4476                           aDataset->WriteOnDisk( algoId );
4477                           aDataset->CloseOnDisk();
4478                           //}
4479                         }
4480                       }
4481                       aSubSubGroup->CloseOnDisk();
4482                     }
4483                     // close submesh HDF group
4484                     aSubGroup->CloseOnDisk();
4485                   }
4486                 }
4487                 // close container of submeshes by type HDF group
4488                 aGroup->CloseOnDisk();
4489               }
4490             }
4491             // All sub-meshes will be stored in MED file
4492             // .. will NOT (PAL 12992)
4493             //if ( shapeRefFound )
4494             //myWriter.AddAllSubMeshes();
4495
4496             // store submesh order if any
4497             const TListOfListOfInt& theOrderIds = myLocMesh.GetMeshOrder();
4498             if ( theOrderIds.size() ) {
4499               char order_list[ 30 ];
4500               strcpy( order_list, "Mesh Order" );
4501               // count number of submesh ids
4502               int nbIDs = 0;
4503               TListOfListOfInt::const_iterator idIt = theOrderIds.begin();
4504               for ( ; idIt != theOrderIds.end(); idIt++ )
4505                 nbIDs += (*idIt).size();
4506               // number of values = number of IDs +
4507               //                    number of lists (for separators) - 1
4508               int* smIDs = new int [ nbIDs + theOrderIds.size() - 1 ];
4509               idIt = theOrderIds.begin();
4510               for ( int i = 0; idIt != theOrderIds.end(); idIt++ ) {
4511                 const TListOfInt& idList = *idIt;
4512                 if (idIt != theOrderIds.begin()) // not first list
4513                   smIDs[ i++ ] = -1/* *idList.size()*/; // separator between lists
4514                 // dump submesh ids from current list
4515                 TListOfInt::const_iterator id_smId = idList.begin();
4516                 for( ; id_smId != idList.end(); id_smId++ )
4517                   smIDs[ i++ ] = *id_smId;
4518               }
4519               // write HDF group
4520               aSize[ 0 ] = nbIDs + theOrderIds.size() - 1;
4521
4522               aDataset = new HDFdataset( order_list, aTopGroup, HDF_INT32, aSize, 1 );
4523               aDataset->CreateOnDisk();
4524               aDataset->WriteOnDisk( smIDs );
4525               aDataset->CloseOnDisk();
4526               //
4527               delete[] smIDs;
4528             }
4529
4530             // groups root sub-branch
4531             SALOMEDS::SObject_wrap myGroupsBranch;
4532             for ( int i = GetNodeGroupsTag(); i <= GetBallElementsGroupsTag(); i++ ) {
4533               found = gotBranch->FindSubObject( i, myGroupsBranch.inout() );
4534               if ( found ) {
4535                 char name_group[ 30 ];
4536                 if ( i == GetNodeGroupsTag() )
4537                   strcpy( name_group, "Groups of Nodes" );
4538                 else if ( i == GetEdgeGroupsTag() )
4539                   strcpy( name_group, "Groups of Edges" );
4540                 else if ( i == GetFaceGroupsTag() )
4541                   strcpy( name_group, "Groups of Faces" );
4542                 else if ( i == GetVolumeGroupsTag() )
4543                   strcpy( name_group, "Groups of Volumes" );
4544                 else if ( i == Get0DElementsGroupsTag() )
4545                   strcpy( name_group, "Groups of 0D Elements" );
4546                 else if ( i == GetBallElementsGroupsTag() )
4547                   strcpy( name_group, "Groups of Balls" );
4548
4549                 aGroup = new HDFgroup( name_group, aTopGroup );
4550                 aGroup->CreateOnDisk();
4551
4552                 SALOMEDS::ChildIterator_wrap it = myCurrentStudy->NewChildIterator( myGroupsBranch );
4553                 for ( ; it->More(); it->Next() ) {
4554                   SALOMEDS::SObject_wrap mySObject = it->Value();
4555                   CORBA::Object_var aSubObject = SObjectToObject( mySObject );
4556                   if ( !CORBA::is_nil( aSubObject ) ) {
4557                     SMESH_GroupBase_i* myGroupImpl =
4558                       dynamic_cast<SMESH_GroupBase_i*>( GetServant( aSubObject ).in() );
4559                     if ( !myGroupImpl )
4560                       continue;
4561                     SMESHDS_GroupBase* aGrpBaseDS = myGroupImpl->GetGroupDS();
4562                     if ( !aGrpBaseDS )
4563                       continue;
4564
4565                     CORBA::String_var objStr = GetORB()->object_to_string( aSubObject );
4566                     int anId = myStudyContext->findId( string( objStr.in() ) );
4567
4568                     // For each group, create a dataset named "Group <group_persistent_id>"
4569                     // and store the group's user name into it
4570                     const char*         grpName = aGrpBaseDS->GetStoreName();
4571                     CORBA::String_var aUserName = myGroupImpl->GetName();
4572                     aSize[ 0 ] = strlen( aUserName ) + 1;
4573
4574                     aDataset = new HDFdataset( grpName, aGroup, HDF_STRING, aSize, 1 );
4575                     aDataset->CreateOnDisk();
4576                     aDataset->WriteOnDisk( aUserName );
4577                     aDataset->CloseOnDisk();
4578
4579                     // ouv : NPAL12872
4580                     // For each group, create a dataset named "Group <group_persistent_id> Color"
4581                     // and store the group's color into it
4582                     char grpColorName[ 30 ];
4583                     sprintf( grpColorName, "ColorGroup %d", anId );
4584                     SALOMEDS::Color aColor = myGroupImpl->GetColor();
4585                     double anRGB[3];
4586                     anRGB[ 0 ] = aColor.R;
4587                     anRGB[ 1 ] = aColor.G;
4588                     anRGB[ 2 ] = aColor.B;
4589                     aSize[ 0 ] = 3;
4590                     aDataset = new HDFdataset( grpColorName, aGroup, HDF_FLOAT64, aSize, 1 );
4591                     aDataset->CreateOnDisk();
4592                     aDataset->WriteOnDisk( anRGB );
4593                     aDataset->CloseOnDisk();
4594
4595                     // Pass SMESHDS_Group to MED writer
4596                     SMESHDS_Group* aGrpDS = dynamic_cast<SMESHDS_Group*>( aGrpBaseDS );
4597                     if ( aGrpDS )
4598                       myWriter.AddGroup( aGrpDS );
4599
4600                     // write reference on a shape if exists
4601                     SMESHDS_GroupOnGeom* aGeomGrp =
4602                       dynamic_cast<SMESHDS_GroupOnGeom*>( aGrpBaseDS );
4603                     if ( aGeomGrp ) {
4604                       SALOMEDS::SObject_wrap mySubRef, myShape;
4605                       if (mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ) &&
4606                           mySubRef->ReferencedObject( myShape.inout() ) &&
4607                           !CORBA::is_nil( myShape->GetObject() ))
4608                       {
4609                         CORBA::String_var myRefOnObject = myShape->GetID();
4610                         if ( myRefOnObject.in()[0] ) {
4611                           char aRefName[ 30 ];
4612                           sprintf( aRefName, "Ref on shape %d", anId);
4613                           aSize[ 0 ] = strlen( myRefOnObject.in() ) + 1;
4614                           aDataset = new HDFdataset(aRefName, aGroup, HDF_STRING, aSize, 1);
4615                           aDataset->CreateOnDisk();
4616                           aDataset->WriteOnDisk( ( char* )( myRefOnObject.in() ));
4617                           aDataset->CloseOnDisk();
4618                         }
4619                       }
4620                       else // shape ref is invalid:
4621                       {
4622                         // save a group on geometry as ordinary group
4623                         myWriter.AddGroup( aGeomGrp );
4624                       }
4625                     }
4626                     else if ( SMESH_GroupOnFilter_i* aFilterGrp_i =
4627                               dynamic_cast<SMESH_GroupOnFilter_i*>( myGroupImpl ))
4628                     {
4629                       std::string str = aFilterGrp_i->FilterToString();
4630                       std::string hdfGrpName = "Filter " + SMESH_Comment(anId);
4631                       aSize[ 0 ] = str.length() + 1;
4632                       aDataset = new HDFdataset( hdfGrpName.c_str(), aGroup, HDF_STRING, aSize, 1);
4633                       aDataset->CreateOnDisk();
4634                       aDataset->WriteOnDisk( ( char* )( str.c_str() ) );
4635                       aDataset->CloseOnDisk();
4636                     }
4637                   }
4638                 }
4639                 aGroup->CloseOnDisk();
4640               }
4641             } // loop on groups
4642
4643             if ( strcmp( strHasData.c_str(), "1" ) == 0 )
4644             {
4645               // Flush current mesh information into MED file
4646               myWriter.Perform();
4647
4648               // save info on nb of elements
4649               SMESH_PreMeshInfo::SaveToFile( myImpl, id, aFile );
4650
4651               // maybe a shape was deleted in the study
4652               if ( !shapeRefFound && !mySMESHDSMesh->ShapeToMesh().IsNull() && hasShape) {
4653                 TopoDS_Shape nullShape;
4654                 myLocMesh.ShapeToMesh( nullShape ); // remove shape referring data
4655               }
4656
4657               SMESHDS_SubMeshIteratorPtr smIt = mySMESHDSMesh->SubMeshes();
4658               if ( smIt->more() )
4659               {
4660                 // Store submeshes
4661                 // ----------------
4662                 aGroup = new HDFgroup( "Submeshes", aTopGroup );
4663                 aGroup->CreateOnDisk();
4664
4665                 // each element belongs to one or none submesh,
4666                 // so for each node/element, we store a submesh ID
4667
4668                 // Store submesh IDs
4669                 for ( int isNode = 0; isNode < 2; ++isNode )
4670                 {
4671                   SMDS_ElemIteratorPtr eIt =
4672                     mySMESHDSMesh->elementsIterator( isNode ? SMDSAbs_Node : SMDSAbs_All );
4673                   int nbElems = isNode ? mySMESHDSMesh->NbNodes() : mySMESHDSMesh->GetMeshInfo().NbElements();
4674                   if ( nbElems < 1 )
4675                     continue;
4676                   std::vector<int> smIDs; smIDs.reserve( nbElems );
4677                   while ( eIt->more() )
4678                     if ( const SMDS_MeshElement* e = eIt->next())
4679                       smIDs.push_back( e->getshapeId() );
4680                   // write HDF group
4681                   aSize[ 0 ] = nbElems;
4682                   string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
4683                   aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
4684                   aDataset->CreateOnDisk();
4685                   aDataset->WriteOnDisk( & smIDs[0] );
4686                   aDataset->CloseOnDisk();
4687                 }
4688
4689                 aGroup->CloseOnDisk();
4690
4691                 // Store node positions on sub-shapes (SMDS_Position):
4692                 // ----------------------------------------------------
4693
4694                 aGroup = new HDFgroup( "Node Positions", aTopGroup );
4695                 aGroup->CreateOnDisk();
4696
4697                 // in aGroup, create 5 datasets to contain:
4698                 // "Nodes on Edges" - ID of node on edge
4699                 // "Edge positions" - U parameter on node on edge
4700                 // "Nodes on Faces" - ID of node on face
4701                 // "Face U positions" - U parameter of node on face
4702                 // "Face V positions" - V parameter of node on face
4703
4704                 // Find out nb of nodes on edges and faces
4705                 // Collect corresponding sub-meshes
4706                 int nbEdgeNodes = 0, nbFaceNodes = 0;
4707                 list<SMESHDS_SubMesh*> aEdgeSM, aFaceSM;
4708                 // loop on SMESHDS_SubMesh'es
4709                 while ( smIt->more() )
4710                 {
4711                   SMESHDS_SubMesh* aSubMesh = const_cast< SMESHDS_SubMesh* >( smIt->next() );
4712                   if ( aSubMesh->IsComplexSubmesh() )
4713                     continue; // submesh containing other submeshs
4714                   int nbNodes = aSubMesh->NbNodes();
4715                   if ( nbNodes == 0 ) continue;
4716
4717                   int aShapeID = aSubMesh->GetID();
4718                   if ( aShapeID < 1 || aShapeID > mySMESHDSMesh->MaxShapeIndex() )
4719                     continue;
4720                   int aShapeType = mySMESHDSMesh->IndexToShape( aShapeID ).ShapeType();
4721                   // write only SMDS_FacePosition and SMDS_EdgePosition
4722                   switch ( aShapeType ) {
4723                   case TopAbs_FACE:
4724                     nbFaceNodes += nbNodes;
4725                     aFaceSM.push_back( aSubMesh );
4726                     break;
4727                   case TopAbs_EDGE:
4728                     nbEdgeNodes += nbNodes;
4729                     aEdgeSM.push_back( aSubMesh );
4730                     break;
4731                   default:
4732                     continue;
4733                   }
4734                 }
4735                 // Treat positions on edges or faces
4736                 for ( int onFace = 0; onFace < 2; onFace++ )
4737                 {
4738                   // Create arrays to store in datasets
4739                   int iNode = 0, nbNodes = ( onFace ? nbFaceNodes : nbEdgeNodes );
4740                   if (!nbNodes) continue;
4741                   int* aNodeIDs = new int [ nbNodes ];
4742                   double* aUPos = new double [ nbNodes ];
4743                   double* aVPos = ( onFace ? new double[ nbNodes ] : 0 );
4744
4745                   // Fill arrays
4746                   // loop on sub-meshes
4747                   list<SMESHDS_SubMesh*> * pListSM = ( onFace ? &aFaceSM : &aEdgeSM );
4748                   list<SMESHDS_SubMesh*>::iterator itSM = pListSM->begin();
4749                   for ( ; itSM != pListSM->end(); itSM++ )
4750                   {
4751                     SMESHDS_SubMesh* aSubMesh = (*itSM);
4752
4753                     SMDS_NodeIteratorPtr itNode = aSubMesh->GetNodes();
4754                     // loop on nodes in aSubMesh
4755                     while ( itNode->more() )
4756                     {
4757                       //node ID
4758                       const SMDS_MeshNode* node = itNode->next();
4759                       aNodeIDs [ iNode ] = node->GetID();
4760
4761                       // Position
4762                       const SMDS_PositionPtr pos = node->GetPosition();
4763                       if ( onFace ) { // on FACE
4764                         SMDS_FacePositionPtr fPos = pos;
4765                         if ( fPos ) {
4766                           aUPos[ iNode ] = fPos->GetUParameter();
4767                           aVPos[ iNode ] = fPos->GetVParameter();
4768                           iNode++;
4769                         }
4770                         else
4771                           nbNodes--;
4772                       }
4773                       else { // on EDGE
4774                         SMDS_EdgePositionPtr ePos = pos;
4775                         if ( ePos ) {
4776                           aUPos[ iNode ] = ePos->GetUParameter();
4777                           iNode++;
4778                         }
4779                         else
4780                           nbNodes--;
4781                       }
4782                     } // loop on nodes in aSubMesh
4783                   } // loop on sub-meshes
4784
4785                   // Write datasets
4786                   if ( nbNodes )
4787                   {
4788                     aSize[ 0 ] = nbNodes;
4789                     // IDS
4790                     string aDSName( onFace ? "Nodes on Faces" : "Nodes on Edges");
4791                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
4792                     aDataset->CreateOnDisk();
4793                     aDataset->WriteOnDisk( aNodeIDs );
4794                     aDataset->CloseOnDisk();
4795
4796                     // U Positions
4797                     aDSName = ( onFace ? "Face U positions" : "Edge positions");
4798                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_FLOAT64, aSize, 1);
4799                     aDataset->CreateOnDisk();
4800                     aDataset->WriteOnDisk( aUPos );
4801                     aDataset->CloseOnDisk();
4802                     // V Positions
4803                     if ( onFace ) {
4804                       aDataset = new HDFdataset( "Face V positions", aGroup, HDF_FLOAT64, aSize, 1);
4805                       aDataset->CreateOnDisk();
4806                       aDataset->WriteOnDisk( aVPos );
4807                       aDataset->CloseOnDisk();
4808                     }
4809                   }
4810                   delete [] aNodeIDs;
4811                   delete [] aUPos;
4812                   if ( aVPos ) delete [] aVPos;
4813
4814                 } // treat positions on edges or faces
4815
4816                 // close "Node Positions" group
4817                 aGroup->CloseOnDisk();
4818
4819               } // if ( there are submeshes in SMESHDS_Mesh )
4820             } // if ( hasData )
4821
4822             // close mesh HDF group
4823             aTopGroup->CloseOnDisk();
4824           }
4825         }
4826       }
4827     }
4828   }
4829
4830   // close HDF file
4831   aFile->CloseOnDisk();
4832   delete aFile;
4833
4834   // Convert temporary files to stream
4835   aStreamFile = SALOMEDS_Tool::PutFilesToStream( tmpDir.ToCString(), aFileSeq.in(), isMultiFile );
4836
4837   // Remove temporary files and directory
4838   if ( !isMultiFile )
4839     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
4840
4841   return aStreamFile._retn();
4842 }
4843
4844 //=============================================================================
4845 /*!
4846  *  SMESH_Gen_i::SaveASCII
4847  *
4848  *  Save SMESH module's data in ASCII format
4849  */
4850 //=============================================================================
4851
4852 SALOMEDS::TMPFile* SMESH_Gen_i::SaveASCII( SALOMEDS::SComponent_ptr theComponent,
4853                                            const char*              theURL,
4854                                            bool                     isMultiFile ) {
4855   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
4856   SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
4857   return aStreamFile._retn();
4858
4859   //after usual saving needs to encipher binary to text string
4860   //Any binary symbol will be represent as "|xx" () hexadecimal format number
4861   int size = aStreamFile.in().length();
4862   _CORBA_Octet* buffer = new _CORBA_Octet[size*3+1];
4863   for ( int i = 0; i < size; i++ )
4864     sprintf( (char*)&(buffer[i*3]), "|%02x", aStreamFile[i] );
4865
4866   buffer[size * 3] = '\0';
4867
4868   SALOMEDS::TMPFile_var anAsciiStreamFile = new SALOMEDS::TMPFile(size*3, size*3, buffer, 1);
4869
4870   return anAsciiStreamFile._retn();
4871 }
4872
4873 //=============================================================================
4874 /*!
4875  *  SMESH_Gen_i::loadGeomData
4876  *
4877  *  Load GEOM module data
4878  */
4879 //=============================================================================
4880
4881 void SMESH_Gen_i::loadGeomData( SALOMEDS::SComponent_ptr theCompRoot )
4882 {
4883   if ( theCompRoot->_is_nil() )
4884     return;
4885
4886   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theCompRoot->GetStudy() );
4887   if ( aStudy->_is_nil() )
4888     return;
4889
4890   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder();
4891   aStudyBuilder->LoadWith( theCompRoot, GetGeomEngine() );
4892 }
4893
4894 //=============================================================================
4895 /*!
4896  *  SMESH_Gen_i::Load
4897  *
4898  *  Load SMESH module's data
4899  */
4900 //=============================================================================
4901
4902 bool SMESH_Gen_i::Load( SALOMEDS::SComponent_ptr theComponent,
4903                         const SALOMEDS::TMPFile& theStream,
4904                         const char*              theURL,
4905                         bool                     isMultiFile )
4906 {
4907   if ( theComponent->GetStudy()->StudyId() != GetCurrentStudyID() )
4908     SetCurrentStudy( theComponent->GetStudy() );
4909
4910   /*  if( !theComponent->_is_nil() )
4911       {
4912       //SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theComponent->GetStudy() );
4913       if( !myCurrentStudy->FindComponent( "GEOM" )->_is_nil() )
4914       loadGeomData( myCurrentStudy->FindComponent( "GEOM" ) );
4915       }*/
4916
4917   StudyContext* myStudyContext = GetCurrentStudyContext();
4918
4919   // Get temporary files location
4920   TCollection_AsciiString tmpDir =
4921     ( char* )( isMultiFile ? theURL : SALOMEDS_Tool::GetTmpDir().c_str() );
4922
4923   // Convert the stream into sequence of files to process
4924   SALOMEDS::ListOfFileNames_var aFileSeq = SALOMEDS_Tool::PutStreamToFiles( theStream,
4925                                                                             tmpDir.ToCString(),
4926                                                                             isMultiFile );
4927   TCollection_AsciiString aStudyName( "" );
4928   if ( isMultiFile ) {
4929     CORBA::String_var url = myCurrentStudy->URL();
4930     aStudyName = (char*)SALOMEDS_Tool::GetNameFromPath( url.in() ).c_str();
4931   }
4932   // Set names of temporary files
4933   TCollection_AsciiString filename = tmpDir + aStudyName + "_SMESH.hdf";
4934   TCollection_AsciiString meshfile = tmpDir + aStudyName + "_SMESH_Mesh.med";
4935
4936   int size;
4937   HDFfile*    aFile;
4938   HDFdataset* aDataset;
4939   HDFgroup*   aTopGroup;
4940   HDFgroup*   aGroup;
4941   HDFgroup*   aSubGroup;
4942   HDFgroup*   aSubSubGroup;
4943
4944   // Read data
4945   // ---> open HDF file
4946   aFile = new HDFfile( (char*) filename.ToCString() );
4947   try {
4948     aFile->OpenOnDisk( HDF_RDONLY );
4949   }
4950   catch ( HDFexception ) {
4951     INFOS( "Load(): " << filename << " not found!" );
4952     return false;
4953   }
4954
4955   TPythonDump pd; // prevent dump during loading
4956
4957   // DriverMED_R_SMESHDS_Mesh myReader;
4958   // myReader.SetFile( meshfile.ToCString() );
4959
4960   // For PAL13473 ("Repetitive mesh") implementation.
4961   // New dependencies between SMESH objects are established:
4962   // now hypotheses can refer to meshes, shapes and other hypotheses.
4963   // To keep data consistent, the following order of data restoration
4964   // imposed:
4965   // 1. Create hypotheses
4966   // 2. Create all meshes
4967   // 3. Load hypotheses' data
4968   // 4. All the rest
4969
4970   list< pair< SMESH_Hypothesis_i*, string > >    hypDataList;
4971   list< pair< SMESH_Mesh_i*,       HDFgroup* > > meshGroupList;
4972   list< SMESH::Filter_var >                      filters;
4973
4974   // get total number of top-level groups
4975   int aNbGroups = aFile->nInternalObjects();
4976   if ( aNbGroups > 0 ) {
4977     // --> in first turn we should read&create hypotheses
4978     if ( aFile->ExistInternalObject( "Hypotheses" ) ) {
4979       // open hypotheses root HDF group
4980       aTopGroup = new HDFgroup( "Hypotheses", aFile );
4981       aTopGroup->OpenOnDisk();
4982
4983       // get number of hypotheses
4984       int aNbObjects = aTopGroup->nInternalObjects();
4985       for ( int j = 0; j < aNbObjects; j++ ) {
4986         // try to identify hypothesis
4987         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
4988         aTopGroup->InternalObjectIndentify( j, hypGrpName );
4989
4990         if ( string( hypGrpName ).substr( 0, 10 ) == string( "Hypothesis" ) ) {
4991           // open hypothesis group
4992           aGroup = new HDFgroup( hypGrpName, aTopGroup );
4993           aGroup->OpenOnDisk();
4994
4995           // --> get hypothesis id
4996           int    id = atoi( string( hypGrpName ).substr( 10 ).c_str() );
4997           string hypname;
4998           string libname;
4999           string hypdata;
5000
5001           // get number of datasets
5002           int aNbSubObjects = aGroup->nInternalObjects();
5003           for ( int k = 0; k < aNbSubObjects; k++ ) {
5004             // identify dataset
5005             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
5006             aGroup->InternalObjectIndentify( k, name_of_subgroup );
5007             // --> get hypothesis name
5008             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
5009               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5010               aDataset->OpenOnDisk();
5011               size = aDataset->GetSize();
5012               char* hypname_str = new char[ size ];
5013               aDataset->ReadFromDisk( hypname_str );
5014               hypname = string( hypname_str );
5015               delete [] hypname_str;
5016               aDataset->CloseOnDisk();
5017             }
5018             // --> get hypothesis plugin library name
5019             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
5020               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5021               aDataset->OpenOnDisk();
5022               size = aDataset->GetSize();
5023               char* libname_str = new char[ size ];
5024               aDataset->ReadFromDisk( libname_str );
5025               if(MYDEBUG) SCRUTE( libname_str );
5026               libname = string( libname_str );
5027               delete [] libname_str;
5028               aDataset->CloseOnDisk();
5029             }
5030             // --> get hypothesis data
5031             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
5032               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5033               aDataset->OpenOnDisk();
5034               size = aDataset->GetSize();
5035               char* hypdata_str = new char[ size ];
5036               aDataset->ReadFromDisk( hypdata_str );
5037               hypdata = string( hypdata_str );
5038               delete [] hypdata_str;
5039               aDataset->CloseOnDisk();
5040             }
5041           }
5042           // close hypothesis HDF group
5043           aGroup->CloseOnDisk();
5044
5045           // --> restore hypothesis from data
5046           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
5047             if(MYDEBUG) MESSAGE("VSR - load hypothesis : id = " << id <<
5048                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
5049             SMESH::SMESH_Hypothesis_var myHyp;
5050
5051             try { // protect persistence mechanism against exceptions
5052               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
5053             }
5054             catch (...) {
5055               INFOS( "Exception during hypothesis creation" );
5056             }
5057
5058             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
5059             if ( myImpl ) {
5060               // myImpl->LoadFrom( hypdata.c_str() );
5061               hypDataList.push_back( make_pair( myImpl, hypdata ));
5062               CORBA::String_var iorString = GetORB()->object_to_string( myHyp );
5063               int newId = myStudyContext->findId( iorString.in() );
5064               myStudyContext->mapOldToNew( id, newId );
5065             }
5066             else
5067               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
5068           }
5069         }
5070       }
5071       // close hypotheses root HDF group
5072       aTopGroup->CloseOnDisk();
5073       aTopGroup = 0;
5074     }
5075
5076     // --> then we should read&create algorithms
5077     if ( aFile->ExistInternalObject( "Algorithms" ) ) {
5078       // open algorithms root HDF group
5079       aTopGroup = new HDFgroup( "Algorithms", aFile );
5080       aTopGroup->OpenOnDisk();
5081
5082       // get number of algorithms
5083       int aNbObjects = aTopGroup->nInternalObjects();
5084       for ( int j = 0; j < aNbObjects; j++ ) {
5085         // try to identify algorithm
5086         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
5087         aTopGroup->InternalObjectIndentify( j, hypGrpName );
5088
5089         if ( string( hypGrpName ).substr( 0, 9 ) == string( "Algorithm" ) ) {
5090           // open algorithm group
5091           aGroup = new HDFgroup( hypGrpName, aTopGroup );
5092           aGroup->OpenOnDisk();
5093
5094           // --> get algorithm id
5095           int    id = atoi( string( hypGrpName ).substr( 9 ).c_str() );
5096           string hypname;
5097           string libname;
5098           string hypdata;
5099
5100           // get number of datasets
5101           int aNbSubObjects = aGroup->nInternalObjects();
5102           for ( int k = 0; k < aNbSubObjects; k++ ) {
5103             // identify dataset
5104             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
5105             aGroup->InternalObjectIndentify( k, name_of_subgroup );
5106             // --> get algorithm name
5107             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
5108               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5109               aDataset->OpenOnDisk();
5110               size = aDataset->GetSize();
5111               char* hypname_str = new char[ size ];
5112               aDataset->ReadFromDisk( hypname_str );
5113               hypname = string( hypname_str );
5114               delete [] hypname_str;
5115               aDataset->CloseOnDisk();
5116             }
5117             // --> get algorithm plugin library name
5118             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
5119               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5120               aDataset->OpenOnDisk();
5121               size = aDataset->GetSize();
5122               char* libname_str = new char[ size ];
5123               aDataset->ReadFromDisk( libname_str );
5124               if(MYDEBUG) SCRUTE( libname_str );
5125               libname = string( libname_str );
5126               delete [] libname_str;
5127               aDataset->CloseOnDisk();
5128             }
5129             // --> get algorithm data
5130             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
5131               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5132               aDataset->OpenOnDisk();
5133               size = aDataset->GetSize();
5134               char* hypdata_str = new char[ size ];
5135               aDataset->ReadFromDisk( hypdata_str );
5136               if(MYDEBUG) SCRUTE( hypdata_str );
5137               hypdata = string( hypdata_str );
5138               delete [] hypdata_str;
5139               aDataset->CloseOnDisk();
5140             }
5141           }
5142           // close algorithm HDF group
5143           aGroup->CloseOnDisk();
5144
5145           // --> restore algorithm from data
5146           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
5147             if(MYDEBUG) MESSAGE("VSR - load algo : id = " << id <<
5148                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
5149             SMESH::SMESH_Hypothesis_var myHyp;
5150
5151             try { // protect persistence mechanism against exceptions
5152               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
5153             }
5154             catch (...) {
5155               INFOS( "Exception during hypothesis creation" );
5156             }
5157
5158             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
5159             if ( myImpl ) {
5160               //myImpl->LoadFrom( hypdata.c_str() );
5161               hypDataList.push_back( make_pair( myImpl, hypdata ));
5162               CORBA::String_var iorString = GetORB()->object_to_string( myHyp );
5163               int newId = myStudyContext->findId( iorString.in() );
5164               myStudyContext->mapOldToNew( id, newId );
5165             }
5166             else
5167               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
5168           }
5169         }
5170       }
5171       // close algorithms root HDF group
5172       aTopGroup->CloseOnDisk();
5173       aTopGroup = 0;
5174     }
5175
5176     // --> the rest groups should be meshes
5177     for ( int i = 0; i < aNbGroups; i++ ) {
5178       // identify next group
5179       char meshName[ HDF_NAME_MAX_LEN+1 ];
5180       aFile->InternalObjectIndentify( i, meshName );
5181
5182       if ( string( meshName ).substr( 0, 4 ) == string( "Mesh" ) ) {
5183         // --> get mesh id
5184         int id = atoi( string( meshName ).substr( 4 ).c_str() );
5185         if ( id <= 0 )
5186           continue;
5187
5188         // open mesh HDF group
5189         aTopGroup = new HDFgroup( meshName, aFile );
5190         aTopGroup->OpenOnDisk();
5191
5192         // get number of child HDF objects
5193         int aNbObjects = aTopGroup->nInternalObjects();
5194         if ( aNbObjects > 0 ) {
5195           // create mesh
5196           if(MYDEBUG) MESSAGE( "VSR - load mesh : id = " << id );
5197           SMESH::SMESH_Mesh_var myNewMesh = this->createMesh();
5198           SMESH_Mesh_i* myNewMeshImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myNewMesh ).in() );
5199           if ( !myNewMeshImpl )
5200             continue;
5201           meshGroupList.push_back( make_pair( myNewMeshImpl, aTopGroup ));
5202
5203           CORBA::String_var iorString = GetORB()->object_to_string( myNewMesh );
5204           int newId = myStudyContext->findId( iorString.in() );
5205           myStudyContext->mapOldToNew( id, newId );
5206
5207           // ouv : NPAL12872
5208           // try to read and set auto color flag
5209           char aMeshAutoColorName[ 30 ];
5210           sprintf( aMeshAutoColorName, "AutoColorMesh %d", id);
5211           if( aTopGroup->ExistInternalObject( aMeshAutoColorName ) )
5212           {
5213             aDataset = new HDFdataset( aMeshAutoColorName, aTopGroup );
5214             aDataset->OpenOnDisk();
5215             size = aDataset->GetSize();
5216             int* anAutoColor = new int[ size ];
5217             aDataset->ReadFromDisk( anAutoColor );
5218             aDataset->CloseOnDisk();
5219             myNewMeshImpl->GetImpl().SetAutoColor( (bool)anAutoColor[0] );
5220             delete [] anAutoColor;
5221           }
5222
5223           // try to read and set reference to shape
5224           GEOM::GEOM_Object_var aShapeObject;
5225           if ( aTopGroup->ExistInternalObject( "Ref on shape" ) ) {
5226             // load mesh "Ref on shape" - it's an entry to SObject
5227             aDataset = new HDFdataset( "Ref on shape", aTopGroup );
5228             aDataset->OpenOnDisk();
5229             size = aDataset->GetSize();
5230             char* refFromFile = new char[ size ];
5231             aDataset->ReadFromDisk( refFromFile );
5232             aDataset->CloseOnDisk();
5233             if ( strlen( refFromFile ) > 0 ) {
5234               SALOMEDS::SObject_wrap shapeSO = myCurrentStudy->FindObjectID( refFromFile );
5235
5236               // Make sure GEOM data are loaded first
5237               //loadGeomData( shapeSO->GetFatherComponent() );
5238
5239               CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
5240               if ( !CORBA::is_nil( shapeObject ) ) {
5241                 aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
5242                 if ( !aShapeObject->_is_nil() )
5243                   myNewMeshImpl->SetShape( aShapeObject );
5244               }
5245             }
5246             delete [] refFromFile;
5247           }
5248
5249           // issue 20918. Restore Persistent Id of SMESHDS_Mesh
5250           if( aTopGroup->ExistInternalObject( "meshPersistentId" ) )
5251           {
5252             aDataset = new HDFdataset( "meshPersistentId", aTopGroup );
5253             aDataset->OpenOnDisk();
5254             size = aDataset->GetSize();
5255             int* meshPersistentId = new int[ size ];
5256             aDataset->ReadFromDisk( meshPersistentId );
5257             aDataset->CloseOnDisk();
5258             myNewMeshImpl->GetImpl().GetMeshDS()->SetPersistentId( *meshPersistentId );
5259             delete [] meshPersistentId;
5260           }
5261         }
5262       }
5263     } // reading MESHes
5264
5265     // As all object that can be referred by hypothesis are created,
5266     // we can restore hypothesis data
5267
5268     list< pair< SMESH_Hypothesis_i*, string > >::iterator hyp_data;
5269     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
5270     {
5271       SMESH_Hypothesis_i* hyp  = hyp_data->first;
5272       string &            data = hyp_data->second;
5273       hyp->LoadFrom( data.c_str() );
5274     }
5275
5276     // Restore the rest mesh data
5277
5278     list< pair< SMESH_Mesh_i*, HDFgroup* > >::iterator meshi_group;
5279     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
5280     {
5281       aTopGroup                   = meshi_group->second;
5282       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
5283       //::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
5284       //SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
5285
5286       GEOM::GEOM_Object_var aShapeObject = myNewMeshImpl->GetShapeToMesh();
5287       bool hasData = false;
5288
5289       // get mesh old id
5290       CORBA::String_var iorString = GetORB()->object_to_string( myNewMeshImpl->_this() );
5291       int newId = myStudyContext->findId( iorString.in() );
5292       int id = myStudyContext->getOldId( newId );
5293
5294       // try to find mesh data dataset
5295       if ( aTopGroup->ExistInternalObject( "Has data" ) ) {
5296         // load mesh "has data" flag
5297         aDataset = new HDFdataset( "Has data", aTopGroup );
5298         aDataset->OpenOnDisk();
5299         size = aDataset->GetSize();
5300         char* strHasData = new char[ size ];
5301         aDataset->ReadFromDisk( strHasData );
5302         aDataset->CloseOnDisk();
5303         if ( strcmp( strHasData, "1") == 0 ) {
5304           // read mesh data from MED file
5305           // myReader.SetMesh( mySMESHDSMesh );
5306           // myReader.SetMeshId( id );
5307           // myReader.Perform();
5308           hasData = true;
5309         }
5310         delete [] strHasData;
5311       }
5312
5313       // Try to get applied ALGORITHMS (mesh is not cleared by algo addition because
5314       // nodes and elements are not yet put into sub-meshes)
5315       if ( aTopGroup->ExistInternalObject( "Applied Algorithms" ) ) {
5316         aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
5317         aGroup->OpenOnDisk();
5318         // get number of applied algorithms
5319         int aNbSubObjects = aGroup->nInternalObjects();
5320         if(MYDEBUG) MESSAGE( "VSR - number of applied algos " << aNbSubObjects );
5321         for ( int j = 0; j < aNbSubObjects; j++ ) {
5322           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5323           aGroup->InternalObjectIndentify( j, name_dataset );
5324           // check if it is an algorithm
5325           if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
5326             aDataset = new HDFdataset( name_dataset, aGroup );
5327             aDataset->OpenOnDisk();
5328             size = aDataset->GetSize();
5329             char* refFromFile = new char[ size ];
5330             aDataset->ReadFromDisk( refFromFile );
5331             aDataset->CloseOnDisk();
5332             // san - it is impossible to recover applied algorithms using their entries within Load() method
5333             //SALOMEDS::SObject_wrap hypSO = myCurrentStudy->FindObjectID( refFromFile );
5334             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
5335             int id = atoi( refFromFile );
5336             delete [] refFromFile;
5337             string anIOR = myStudyContext->getIORbyOldId( id );
5338             if ( !anIOR.empty() ) {
5339               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5340               if ( !CORBA::is_nil( hypObject ) ) {
5341                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5342                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
5343                                            || !myNewMeshImpl->HasShapeToMesh()) )
5344                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
5345               }
5346             }
5347           }
5348         }
5349         aGroup->CloseOnDisk();
5350       }
5351
5352       // try to get applied hypotheses
5353       if ( aTopGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
5354         aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
5355         aGroup->OpenOnDisk();
5356         // get number of applied hypotheses
5357         int aNbSubObjects = aGroup->nInternalObjects();
5358         for ( int j = 0; j < aNbSubObjects; j++ ) {
5359           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5360           aGroup->InternalObjectIndentify( j, name_dataset );
5361           // check if it is a hypothesis
5362           if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
5363             aDataset = new HDFdataset( name_dataset, aGroup );
5364             aDataset->OpenOnDisk();
5365             size = aDataset->GetSize();
5366             char* refFromFile = new char[ size ];
5367             aDataset->ReadFromDisk( refFromFile );
5368             aDataset->CloseOnDisk();
5369             // san - it is impossible to recover applied hypotheses using their entries within Load() method
5370             //SALOMEDS::SObject_wrap hypSO = myCurrentStudy->FindObjectID( refFromFile );
5371             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
5372             int id = atoi( refFromFile );
5373             delete [] refFromFile;
5374             string anIOR = myStudyContext->getIORbyOldId( id );
5375             if ( !anIOR.empty() ) {
5376               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5377               if ( !CORBA::is_nil( hypObject ) ) {
5378                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5379                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
5380                                            || !myNewMeshImpl->HasShapeToMesh()) )
5381                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
5382               }
5383             }
5384           }
5385         }
5386         aGroup->CloseOnDisk();
5387       }
5388
5389       // --> try to find SUB-MESHES containers for each type of submesh
5390       for ( int j = GetSubMeshOnVertexTag(); j <= GetSubMeshOnCompoundTag(); j++ ) {
5391         const char* name_meshgroup = 0;
5392         if ( j == GetSubMeshOnVertexTag() )
5393           name_meshgroup = "SubMeshes On Vertex";
5394         else if ( j == GetSubMeshOnEdgeTag() )
5395           name_meshgroup = "SubMeshes On Edge";
5396         else if ( j == GetSubMeshOnWireTag() )
5397           name_meshgroup = "SubMeshes On Wire";
5398         else if ( j == GetSubMeshOnFaceTag() )
5399           name_meshgroup = "SubMeshes On Face";
5400         else if ( j == GetSubMeshOnShellTag() )
5401           name_meshgroup = "SubMeshes On Shell";
5402         else if ( j == GetSubMeshOnSolidTag() )
5403           name_meshgroup = "SubMeshes On Solid";
5404         else if ( j == GetSubMeshOnCompoundTag() )
5405           name_meshgroup = "SubMeshes On Compound";
5406
5407         // try to get submeshes container HDF group
5408         if ( aTopGroup->ExistInternalObject( name_meshgroup ) ) {
5409           // open submeshes containers HDF group
5410           aGroup = new HDFgroup( name_meshgroup, aTopGroup );
5411           aGroup->OpenOnDisk();
5412
5413           // get number of submeshes
5414           int aNbSubMeshes = aGroup->nInternalObjects();
5415           for ( int k = 0; k < aNbSubMeshes; k++ ) {
5416             // identify submesh
5417             char name_submeshgroup[ HDF_NAME_MAX_LEN+1 ];
5418             aGroup->InternalObjectIndentify( k, name_submeshgroup );
5419             if ( strncmp( name_submeshgroup, "SubMesh", 7 ) == 0 ) {
5420               // --> get submesh id
5421               int subid = atoi( name_submeshgroup + 7 );
5422               if ( subid <= 0 )
5423                 continue;
5424               // open submesh HDF group
5425               aSubGroup = new HDFgroup( name_submeshgroup, aGroup );
5426               aSubGroup->OpenOnDisk();
5427
5428               // try to read and set reference to subshape
5429               GEOM::GEOM_Object_var aSubShapeObject;
5430               SMESH::SMESH_subMesh_var aSubMesh;
5431
5432               if ( aSubGroup->ExistInternalObject( "Ref on shape" ) ) {
5433                 // load submesh "Ref on shape" - it's an entry to SObject
5434                 aDataset = new HDFdataset( "Ref on shape", aSubGroup );
5435                 aDataset->OpenOnDisk();
5436                 size = aDataset->GetSize();
5437                 char* refFromFile = new char[ size ];
5438                 aDataset->ReadFromDisk( refFromFile );
5439                 aDataset->CloseOnDisk();
5440                 if ( strlen( refFromFile ) > 0 ) {
5441                   SALOMEDS::SObject_wrap subShapeSO = myCurrentStudy->FindObjectID( refFromFile );
5442                   CORBA::Object_var subShapeObject = SObjectToObject( subShapeSO );
5443                   if ( !CORBA::is_nil( subShapeObject ) ) {
5444                     aSubShapeObject = GEOM::GEOM_Object::_narrow( subShapeObject );
5445                     if ( !aSubShapeObject->_is_nil() )
5446                       aSubMesh = SMESH::SMESH_subMesh::_duplicate
5447                         ( myNewMeshImpl->createSubMesh( aSubShapeObject ) );
5448                     if ( aSubMesh->_is_nil() )
5449                       continue;
5450                     string iorSubString = GetORB()->object_to_string( aSubMesh );
5451                     int newSubId = myStudyContext->findId( iorSubString );
5452                     myStudyContext->mapOldToNew( subid, newSubId );
5453                   }
5454                 }
5455                 delete [] refFromFile;
5456               }
5457
5458               if ( aSubMesh->_is_nil() )
5459                 continue;
5460
5461               // try to get applied algorithms
5462               if ( aSubGroup->ExistInternalObject( "Applied Algorithms" ) ) {
5463                 // open "applied algorithms" HDF group
5464                 aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
5465                 aSubSubGroup->OpenOnDisk();
5466                 // get number of applied algorithms
5467                 int aNbSubObjects = aSubSubGroup->nInternalObjects();
5468                 for ( int l = 0; l < aNbSubObjects; l++ ) {
5469                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5470                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
5471                   // check if it is an algorithm
5472                   if ( strncmp( name_dataset, "Algo", 4 ) == 0 ) {
5473                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
5474                     aDataset->OpenOnDisk();
5475                     size = aDataset->GetSize();
5476                     char* refFromFile = new char[ size ];
5477                     aDataset->ReadFromDisk( refFromFile );
5478                     aDataset->CloseOnDisk();
5479
5480                     int id = atoi( refFromFile );
5481                     string anIOR = myStudyContext->getIORbyOldId( id );
5482                     if ( !anIOR.empty() ) {
5483                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5484                       if ( !CORBA::is_nil( hypObject ) ) {
5485                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5486                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
5487                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
5488                       }
5489                     }
5490                     delete [] refFromFile;
5491                   }
5492                 }
5493                 // close "applied algorithms" HDF group
5494                 aSubSubGroup->CloseOnDisk();
5495               }
5496
5497               // try to get applied hypotheses
5498               if ( aSubGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
5499                 // open "applied hypotheses" HDF group
5500                 aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
5501                 aSubSubGroup->OpenOnDisk();
5502                 // get number of applied hypotheses
5503                 int aNbSubObjects = aSubSubGroup->nInternalObjects();
5504                 for ( int l = 0; l < aNbSubObjects; l++ ) {
5505                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5506                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
5507                   // check if it is a hypothesis
5508                   if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
5509                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
5510                     aDataset->OpenOnDisk();
5511                     size = aDataset->GetSize();
5512                     char* refFromFile = new char[ size ];
5513                     aDataset->ReadFromDisk( refFromFile );
5514                     aDataset->CloseOnDisk();
5515
5516                     int id = atoi( refFromFile );
5517                     string anIOR = myStudyContext->getIORbyOldId( id );
5518                     if ( !anIOR.empty() ) {
5519                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5520                       if ( !CORBA::is_nil( hypObject ) ) {
5521                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5522                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
5523                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
5524                       }
5525                     }
5526                     delete [] refFromFile;
5527                   }
5528                 }
5529                 // close "APPLIED HYPOTHESES" hdf group
5530                 aSubSubGroup->CloseOnDisk();
5531               }
5532
5533               // close SUB-MESH hdf group
5534               aSubGroup->CloseOnDisk();
5535             }
5536           }
5537           // close SUB-MESHES containers hdf group
5538           aGroup->CloseOnDisk();
5539         }
5540       }
5541
5542       // try to get GROUPS
5543       for ( int ii = GetNodeGroupsTag(); ii <= GetBallElementsGroupsTag(); ii++ ) {
5544         char name_group[ 30 ];
5545         if ( ii == GetNodeGroupsTag() )
5546           strcpy( name_group, "Groups of Nodes" );
5547         else if ( ii == GetEdgeGroupsTag() )
5548           strcpy( name_group, "Groups of Edges" );
5549         else if ( ii == GetFaceGroupsTag() )
5550           strcpy( name_group, "Groups of Faces" );
5551         else if ( ii == GetVolumeGroupsTag() )
5552           strcpy( name_group, "Groups of Volumes" );
5553         else if ( ii == Get0DElementsGroupsTag() )
5554           strcpy( name_group, "Groups of 0D Elements" );
5555         else if ( ii == GetBallElementsGroupsTag() )
5556           strcpy( name_group, "Groups of Balls" );
5557
5558         if ( aTopGroup->ExistInternalObject( name_group ) ) {
5559           aGroup = new HDFgroup( name_group, aTopGroup );
5560           aGroup->OpenOnDisk();
5561           // PAL23514: get all names from the HDFgroup to avoid iteration on its contents
5562           // within aGroup->ExistInternalObject( name )
5563           std::vector< std::string > subNames;
5564           TColStd_MapOfAsciiString mapOfNames;
5565           aGroup->GetAllObjects( subNames );
5566           for ( size_t iN = 0; iN < subNames.size(); ++iN )
5567             mapOfNames.Add( subNames[ iN ].c_str() );
5568           // loop on groups
5569           for ( size_t j = 0; j < subNames.size(); j++ ) {
5570             const std::string& name_dataset = subNames[ j ];
5571             // check if it is a group
5572             if ( name_dataset.substr( 0, 5 ) == "Group" ) {
5573               // --> get group id
5574               int subid = atoi( name_dataset.substr( 5 ).c_str() );
5575               if ( subid <= 0 )
5576                 continue;
5577               aDataset = new HDFdataset( name_dataset.c_str(), aGroup );
5578               aDataset->OpenOnDisk();
5579
5580               // Retrieve actual group name
5581               size = aDataset->GetSize();
5582               char* nameFromFile = new char[ size ];
5583               aDataset->ReadFromDisk( nameFromFile );
5584               aDataset->CloseOnDisk();
5585
5586               // Try to find a shape reference
5587               TopoDS_Shape aShape;
5588               char aRefName[ 30 ];
5589               sprintf( aRefName, "Ref on shape %d", subid);
5590               if ( mapOfNames.Contains( aRefName ))
5591               {
5592                 // load mesh "Ref on shape" - it's an entry to SObject
5593                 aDataset = new HDFdataset( aRefName, aGroup );
5594                 aDataset->OpenOnDisk();
5595                 size = aDataset->GetSize();
5596                 char* refFromFile = new char[ size ];
5597                 aDataset->ReadFromDisk( refFromFile );
5598                 aDataset->CloseOnDisk();
5599                 if ( strlen( refFromFile ) > 0 ) {
5600                   SALOMEDS::SObject_wrap shapeSO = myCurrentStudy->FindObjectID( refFromFile );
5601                   CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
5602                   if ( !CORBA::is_nil( shapeObject ) ) {
5603                     aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
5604                     if ( !aShapeObject->_is_nil() )
5605                       aShape = GeomObjectToShape( aShapeObject );
5606                   }
5607                 }
5608                 delete [] refFromFile;
5609               }
5610               // Try to read a filter of SMESH_GroupOnFilter
5611               SMESH::Filter_var filter;
5612               SMESH_PredicatePtr predicate;
5613               std::string hdfGrpName = ( SMESH_Comment( "Filter ") << subid );
5614               if ( mapOfNames.Contains( hdfGrpName.c_str() ))
5615               {
5616                 aDataset = new HDFdataset( hdfGrpName.c_str(), aGroup );
5617                 aDataset->OpenOnDisk();
5618                 size = aDataset->GetSize();
5619                 char* persistStr = new char[ size ];
5620                 aDataset->ReadFromDisk( persistStr );
5621                 aDataset->CloseOnDisk();
5622                 if ( strlen( persistStr ) > 0 ) {
5623                   filter = SMESH_GroupOnFilter_i::StringToFilter( persistStr );
5624                   predicate = SMESH_GroupOnFilter_i::GetPredicate( filter );
5625                   filters.push_back( filter );
5626                 }
5627                 delete [] persistStr;
5628               }
5629
5630               // Create group servant
5631               SMESH::ElementType type = (SMESH::ElementType)(ii - GetNodeGroupsTag() + 1);
5632               SMESH::SMESH_GroupBase_var aNewGroup = SMESH::SMESH_GroupBase::_duplicate
5633                 ( myNewMeshImpl->createGroup( type, nameFromFile, aShape, predicate ) );
5634               delete [] nameFromFile;
5635               // Obtain a SMESHDS_Group object
5636               if ( aNewGroup->_is_nil() )
5637                 continue;
5638
5639               string iorSubString = GetORB()->object_to_string( aNewGroup );
5640               int        newSubId = myStudyContext->findId( iorSubString );
5641               myStudyContext->mapOldToNew( subid, newSubId );
5642
5643               SMESH_GroupBase_i* aGroupImpl = SMESH::DownCast< SMESH_GroupBase_i*>( aNewGroup );
5644               if ( !aGroupImpl )
5645                 continue;
5646
5647               if ( SMESH_GroupOnFilter_i* aFilterGroup =
5648                    dynamic_cast< SMESH_GroupOnFilter_i*>( aGroupImpl ))
5649               {
5650                 aFilterGroup->SetFilter( filter );
5651                 filter->UnRegister();
5652               }
5653               SMESHDS_GroupBase* aGroupBaseDS = aGroupImpl->GetGroupDS();
5654               if ( !aGroupBaseDS )
5655                 continue;
5656
5657               aGroupBaseDS->SetStoreName( name_dataset.c_str() );
5658
5659               // ouv : NPAL12872
5660               // Read color of the group
5661               char aGroupColorName[ 30 ];
5662               sprintf( aGroupColorName, "ColorGroup %d", subid);
5663               if ( mapOfNames.Contains( aGroupColorName ))
5664               {
5665                 aDataset = new HDFdataset( aGroupColorName, aGroup );
5666                 aDataset->OpenOnDisk();
5667                 size = aDataset->GetSize();
5668                 double* anRGB = new double[ size ];
5669                 aDataset->ReadFromDisk( anRGB );
5670                 aDataset->CloseOnDisk();
5671                 Quantity_Color aColor( anRGB[0], anRGB[1], anRGB[2], Quantity_TOC_RGB );
5672                 aGroupBaseDS->SetColor( aColor );
5673                 delete [] anRGB;
5674               }
5675             }
5676           }
5677           aGroup->CloseOnDisk();
5678         }
5679       } // reading GROUPs
5680
5681       // instead of reading mesh data, we read only brief information of all
5682       // objects: mesh, groups, sub-meshes (issue 0021208 )
5683       if ( hasData )
5684       {
5685         SMESH_PreMeshInfo::LoadFromFile( myNewMeshImpl, id,
5686                                          meshfile.ToCString(), filename.ToCString(),
5687                                          !isMultiFile );
5688       }
5689
5690       // read Sub-Mesh ORDER if any
5691       if ( aTopGroup->ExistInternalObject( "Mesh Order" )) {
5692         aDataset = new HDFdataset( "Mesh Order", aTopGroup );
5693         aDataset->OpenOnDisk();
5694         size = aDataset->GetSize();
5695         int* smIDs = new int[ size ];
5696         aDataset->ReadFromDisk( smIDs );
5697         aDataset->CloseOnDisk();
5698         TListOfListOfInt anOrderIds;
5699         anOrderIds.push_back( TListOfInt() );
5700         for ( int i = 0; i < size; i++ )
5701           if ( smIDs[ i ] < 0 ) // is separator
5702             anOrderIds.push_back( TListOfInt() );
5703           else
5704             anOrderIds.back().push_back(smIDs[ i ]);
5705
5706         myNewMeshImpl->GetImpl().SetMeshOrder( anOrderIds );
5707         delete [] smIDs;
5708       }
5709     } // loop on meshes
5710
5711     // update hyps needing full mesh data restored (issue 20918)
5712     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
5713     {
5714       SMESH_Hypothesis_i* hyp  = hyp_data->first;
5715       hyp->UpdateAsMeshesRestored();
5716     }
5717
5718     // notify algos on completed restoration to set sub-mesh event listeners
5719     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
5720     {
5721       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
5722       ::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
5723
5724       TopoDS_Shape myLocShape;
5725       if(myLocMesh.HasShapeToMesh())
5726         myLocShape = myLocMesh.GetShapeToMesh();
5727       else
5728         myLocShape = SMESH_Mesh::PseudoShape();
5729
5730       myLocMesh.GetSubMesh(myLocShape)->
5731         ComputeStateEngine (SMESH_subMesh::SUBMESH_RESTORED);
5732     }
5733
5734     // let filters detect dependency on mesh groups via FT_BelongToMeshGroup predicate (22877)
5735     list< SMESH::Filter_var >::iterator f = filters.begin();
5736     for ( ; f != filters.end(); ++f )
5737       if ( SMESH::Filter_i * fi = SMESH::DownCast< SMESH::Filter_i*>( *f ))
5738         fi->FindBaseObjects();
5739
5740
5741     // close mesh group
5742     if(aTopGroup)
5743       aTopGroup->CloseOnDisk();
5744   }
5745   // close HDF file
5746   aFile->CloseOnDisk();
5747   delete aFile;
5748
5749   // Remove temporary files created from the stream
5750   if ( !isMultiFile )
5751   {
5752     SMESH_File meshFile( meshfile.ToCString() );
5753     if ( !meshFile ) // no meshfile exists
5754     {
5755       SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
5756     }
5757     else
5758     {
5759       Engines::Container_var container = GetContainerRef();
5760       if ( Engines_Container_i* container_i = SMESH::DownCast<Engines_Container_i*>( container ))
5761       {
5762         container_i->registerTemporaryFile( filename.ToCString() );
5763         container_i->registerTemporaryFile( meshfile.ToCString() );
5764         container_i->registerTemporaryFile( tmpDir.ToCString() );
5765       }
5766     }
5767   }
5768   pd << ""; // prevent optimizing pd out
5769
5770   // creation of tree nodes for all data objects in the study
5771   // to support tree representation customization and drag-n-drop:
5772   SALOMEDS::Study_var                    study = theComponent->GetStudy();
5773   SALOMEDS::UseCaseBuilder_wrap useCaseBuilder = study->GetUseCaseBuilder();
5774   if ( !useCaseBuilder->IsUseCaseNode( theComponent ) ) {
5775     useCaseBuilder->SetRootCurrent();
5776     useCaseBuilder->Append( theComponent ); // component object is added as the top level item
5777     SALOMEDS::ChildIterator_wrap it = study->NewChildIterator( theComponent );
5778     for (it->InitEx(true); it->More(); it->Next()) {
5779       useCaseBuilder->AppendTo( it->Value()->GetFather(), it->Value() );
5780     }
5781   }
5782
5783   return true;
5784 }
5785
5786 //=============================================================================
5787 /*!
5788  *  SMESH_Gen_i::LoadASCII
5789  *
5790  *  Load SMESH module's data in ASCII format
5791  */
5792 //=============================================================================
5793
5794 bool SMESH_Gen_i::LoadASCII( SALOMEDS::SComponent_ptr theComponent,
5795                              const SALOMEDS::TMPFile& theStream,
5796                              const char*              theURL,
5797                              bool                     isMultiFile ) {
5798   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
5799   return Load( theComponent, theStream, theURL, isMultiFile );
5800
5801   //before call main ::Load method it's need for decipher text format to
5802   //binary ( "|xx" => x' )
5803   int size = theStream.length();
5804   if ( int((size / 3 )*3) != size ) //error size of buffer
5805     return false;
5806
5807   int real_size = int(size / 3);
5808
5809   _CORBA_Octet* buffer = new _CORBA_Octet[real_size];
5810   char tmp[3];
5811   tmp[2]='\0';
5812   unsigned int c = -1;
5813   for ( int i = 0; i < real_size; i++ )
5814   {
5815     memcpy( &(tmp[0]), &(theStream[i*3+1]), 2 );
5816     sscanf( tmp, "%x", &c );
5817     sprintf( (char*)&(buffer[i]), "%c", (char)c );
5818   }
5819
5820   SALOMEDS::TMPFile_var aRealStreamFile = new SALOMEDS::TMPFile(real_size, real_size, buffer, 1);
5821
5822   return Load( theComponent, *(aRealStreamFile._retn()), theURL, isMultiFile );
5823 }
5824
5825 //=============================================================================
5826 /*!
5827  *  SMESH_Gen_i::Close
5828  *
5829  *  Clears study-connected data when it is closed
5830  */
5831 //=============================================================================
5832
5833 void SMESH_Gen_i::Close( SALOMEDS::SComponent_ptr theComponent )
5834 {
5835   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Close" );
5836
5837   // set correct current study
5838   SALOMEDS::Study_var study = theComponent->GetStudy();
5839   if ( study->StudyId() != GetCurrentStudyID())
5840     setCurrentStudy( study, /*IsBeingClosed=*/true );
5841
5842   // Clear study contexts data
5843   int studyId = GetCurrentStudyID();
5844   if ( myStudyContextMap.find( studyId ) != myStudyContextMap.end() ) {
5845     delete myStudyContextMap[ studyId ];
5846     myStudyContextMap.erase( studyId );
5847   }
5848
5849   // remove the tmp files meshes are loaded from
5850   SMESH_PreMeshInfo::RemoveStudyFiles_TMP_METHOD( theComponent );
5851
5852   myCurrentStudy = SALOMEDS::Study::_nil();
5853   return;
5854 }
5855
5856 //=============================================================================
5857 /*!
5858  *  SMESH_Gen_i::ComponentDataType
5859  *
5860  *  Get component data type
5861  */
5862 //=============================================================================
5863
5864 char* SMESH_Gen_i::ComponentDataType()
5865 {
5866   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::ComponentDataType" );
5867   return CORBA::string_dup( "SMESH" );
5868 }
5869
5870
5871 //=============================================================================
5872 /*!
5873  *  SMESH_Gen_i::IORToLocalPersistentID
5874  *
5875  *  Transform data from transient form to persistent
5876  */
5877 //=============================================================================
5878
5879 char* SMESH_Gen_i::IORToLocalPersistentID( SALOMEDS::SObject_ptr /*theSObject*/,
5880                                            const char*           IORString,
5881                                            CORBA::Boolean        /*isMultiFile*/,
5882                                            CORBA::Boolean        /*isASCII*/ )
5883 {
5884   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IORToLocalPersistentID" );
5885   StudyContext* myStudyContext = GetCurrentStudyContext();
5886
5887   if ( myStudyContext && strcmp( IORString, "" ) != 0 ) {
5888     int anId = myStudyContext->findId( IORString );
5889     if ( anId ) {
5890       if(MYDEBUG) MESSAGE( "VSR " << anId )
5891       char strId[ 20 ];
5892       sprintf( strId, "%d", anId );
5893       return  CORBA::string_dup( strId );
5894     }
5895   }
5896   return CORBA::string_dup( "" );
5897 }
5898
5899 //=============================================================================
5900 /*!
5901  *  SMESH_Gen_i::LocalPersistentIDToIOR
5902  *
5903  *  Transform data from persistent form to transient
5904  */
5905 //=============================================================================
5906
5907 char* SMESH_Gen_i::LocalPersistentIDToIOR( SALOMEDS::SObject_ptr /*theSObject*/,
5908                                            const char*           aLocalPersistentID,
5909                                            CORBA::Boolean        /*isMultiFile*/,
5910                                            CORBA::Boolean        /*isASCII*/ )
5911 {
5912   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LocalPersistentIDToIOR(): id = " << aLocalPersistentID );
5913   StudyContext* myStudyContext = GetCurrentStudyContext();
5914
5915   if ( myStudyContext && strcmp( aLocalPersistentID, "" ) != 0 ) {
5916     int anId = atoi( aLocalPersistentID );
5917     return CORBA::string_dup( myStudyContext->getIORbyOldId( anId ).c_str() );
5918   }
5919   return CORBA::string_dup( "" );
5920 }
5921
5922 //=======================================================================
5923 //function : RegisterObject
5924 //purpose  :
5925 //=======================================================================
5926
5927 int SMESH_Gen_i::RegisterObject(CORBA::Object_ptr theObject)
5928 {
5929   StudyContext* myStudyContext = GetCurrentStudyContext();
5930   if ( myStudyContext && !CORBA::is_nil( theObject )) {
5931     CORBA::String_var iorString = GetORB()->object_to_string( theObject );
5932     return myStudyContext->addObject( string( iorString.in() ) );
5933   }
5934   return 0;
5935 }
5936
5937 //================================================================================
5938 /*!
5939  * \brief Return id of registered object
5940   * \param theObject - the Object
5941   * \retval int - Object id
5942  */
5943 //================================================================================
5944
5945 CORBA::Long SMESH_Gen_i::GetObjectId(CORBA::Object_ptr theObject)
5946 {
5947   StudyContext* myStudyContext = GetCurrentStudyContext();
5948   if ( myStudyContext && !CORBA::is_nil( theObject )) {
5949     string iorString = GetORB()->object_to_string( theObject );
5950     return myStudyContext->findId( iorString );
5951   }
5952   return 0;
5953 }
5954
5955 //=============================================================================
5956 /*!
5957  *  SMESH_Gen_i::SetName
5958  *
5959  *  Set a new object name
5960  */
5961 //=============================================================================
5962 void SMESH_Gen_i::SetName(const char* theIOR,
5963                           const char* theName)
5964 {
5965   if ( theIOR && strcmp( theIOR, "" ) ) {
5966     CORBA::Object_var anObject = GetORB()->string_to_object( theIOR );
5967     SALOMEDS::SObject_wrap aSO = ObjectToSObject( myCurrentStudy, anObject );
5968     if ( !aSO->_is_nil() ) {
5969       SetName( aSO, theName );
5970     }
5971   }
5972 }
5973
5974 int SMESH_Gen_i::GetCurrentStudyID()
5975 {
5976   return myCurrentStudy->_is_nil() || myCurrentStudy->_non_existent() ? -1 : myCurrentStudy->StudyId();
5977 }
5978
5979 // Version information
5980 char* SMESH_Gen_i::getVersion()
5981 {
5982 #if SMESH_DEVELOPMENT
5983   return CORBA::string_dup(SMESH_VERSION_STR"dev");
5984 #else
5985   return CORBA::string_dup(SMESH_VERSION_STR);
5986 #endif
5987 }
5988
5989 //=================================================================================
5990 // function : Move()
5991 // purpose  : Moves objects to the specified position.
5992 //            Is used in the drag-n-drop functionality.
5993 //=================================================================================
5994 void SMESH_Gen_i::Move( const SMESH::sobject_list& what,
5995                         SALOMEDS::SObject_ptr      where,
5996                         CORBA::Long                row )
5997 {
5998   if ( CORBA::is_nil( where ) ) return;
5999
6000   SALOMEDS::Study_var study = where->GetStudy();
6001   SALOMEDS::StudyBuilder_var studyBuilder = study->NewBuilder();
6002   SALOMEDS::UseCaseBuilder_var useCaseBuilder = study->GetUseCaseBuilder();
6003   SALOMEDS::SComponent_var father = where->GetFatherComponent();
6004   std::string dataType = father->ComponentDataType();
6005   if ( dataType != "SMESH" ) return; // not a SMESH component
6006
6007   SALOMEDS::SObject_var objAfter;
6008   if ( row >= 0 && useCaseBuilder->HasChildren( where ) ) {
6009     // insert at given row -> find insertion position
6010     SALOMEDS::UseCaseIterator_var useCaseIt = useCaseBuilder->GetUseCaseIterator( where );
6011     int i;
6012     for ( i = 0; i < row && useCaseIt->More(); i++, useCaseIt->Next() );
6013     if ( i == row && useCaseIt->More() ) {
6014       objAfter = useCaseIt->Value();
6015     }
6016   }
6017
6018   for ( CORBA::ULong i = 0; i < what.length(); i++ ) {
6019     SALOMEDS::SObject_var sobj = what[i];
6020     if ( CORBA::is_nil( sobj ) ) continue; // skip bad object
6021     // insert the object to the use case tree
6022     if ( !CORBA::is_nil( objAfter ) )
6023       useCaseBuilder->InsertBefore( sobj, objAfter ); // insert at given row
6024     else
6025       useCaseBuilder->AppendTo( where, sobj );        // append to the end of list
6026   }
6027 }
6028 //================================================================================
6029 /*!
6030  * \brief Returns true if algorithm can be used to mesh a given geometry
6031  *  \param [in] theAlgoType - the algorithm type
6032  *  \param [in] theLibName - a name of the Plug-in library implementing the algorithm
6033  *  \param [in] theGeomObject - the geometry to mesh
6034  *  \param [in] toCheckAll - if \c True, returns \c True if all shapes are meshable,
6035  *         else, returns \c True if at least one shape is meshable
6036  *  \return CORBA::Boolean - can or can't
6037  */
6038 //================================================================================
6039
6040 CORBA::Boolean SMESH_Gen_i::IsApplicable ( const char*           theAlgoType,
6041                                            const char*           theLibName,
6042                                            GEOM::GEOM_Object_ptr theGeomObject,
6043                                            CORBA::Boolean        toCheckAll)
6044 {
6045   SMESH_TRY;
6046
6047   std::string aPlatformLibName;
6048   typedef GenericHypothesisCreator_i* (*GetHypothesisCreator)(const char*);
6049   GenericHypothesisCreator_i* aCreator =
6050     getHypothesisCreator(theAlgoType, theLibName, aPlatformLibName);
6051   if (aCreator)
6052   {
6053     TopoDS_Shape shape = GeomObjectToShape( theGeomObject );
6054     return shape.IsNull() || aCreator->IsApplicable( shape, toCheckAll );
6055   }
6056   else
6057   {
6058     return false;
6059   }
6060
6061   SMESH_CATCH( SMESH::doNothing );
6062
6063 #ifdef _DEBUG_
6064   cout << "SMESH_Gen_i::IsApplicable(): exception in " << ( theAlgoType ? theAlgoType : "") << endl;
6065 #endif
6066   return true;
6067 }
6068
6069 //=================================================================================
6070 // function : GetInsideSphere
6071 // purpose  : Collect indices of elements, which are located inside the sphere
6072 //=================================================================================
6073 SMESH::long_array* SMESH_Gen_i::GetInsideSphere( SMESH::SMESH_IDSource_ptr meshPart,
6074                                                  SMESH::ElementType     theElemType,
6075                                                  CORBA::Double         theX,
6076                                                  CORBA::Double         theY,
6077                                                  CORBA::Double         theZ,
6078                                                  CORBA::Double         theR)
6079 {
6080   SMESH::long_array_var aResult = new SMESH::long_array();
6081   if ( meshPart->_is_nil() )
6082     return aResult._retn();
6083
6084   // 1. Create geometrical object
6085   gp_Pnt aP( theX, theY, theZ );
6086   TopoDS_Shape aShape = BRepPrimAPI_MakeSphere( aP, theR ).Shape();
6087
6088   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6089
6090   if ( lst.size() > 0 ) {
6091     aResult->length( lst.size() );
6092     for ( size_t i = 0; i < lst.size(); i++ ) {
6093       aResult[i] = lst[i];
6094     }
6095   }
6096   return aResult._retn();
6097 }
6098
6099 SMESH::long_array* SMESH_Gen_i::GetInsideBox( SMESH::SMESH_IDSource_ptr meshPart,
6100                                               SMESH::ElementType        theElemType,
6101                                               CORBA::Double             theX1,
6102                                               CORBA::Double             theY1,
6103                                               CORBA::Double             theZ1,
6104                                               CORBA::Double             theX2,
6105                                               CORBA::Double             theY2,
6106                                               CORBA::Double             theZ2) {
6107   SMESH::long_array_var aResult = new SMESH::long_array();
6108   if( meshPart->_is_nil() )
6109     return aResult._retn();
6110
6111   TopoDS_Shape aShape = BRepPrimAPI_MakeBox( gp_Pnt( theX1, theY1, theZ1 ), gp_Pnt( theX2, theY2, theZ2 ) ).Shape();
6112
6113   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6114
6115   if( lst.size() > 0 ) {
6116     aResult->length( lst.size() );
6117     for ( size_t i = 0; i < lst.size(); i++ ) {
6118       aResult[i] = lst[i];
6119     }
6120   }
6121   return aResult._retn();
6122 }
6123
6124 SMESH::long_array* SMESH_Gen_i::GetInsideCylinder( SMESH::SMESH_IDSource_ptr meshPart,
6125                                                    SMESH::ElementType        theElemType,
6126                                                    CORBA::Double             theX,
6127                                                    CORBA::Double             theY,
6128                                                    CORBA::Double             theZ,
6129                                                    CORBA::Double             theDX,
6130                                                    CORBA::Double             theDY,
6131                                                    CORBA::Double             theDZ,
6132                                                    CORBA::Double             theH,
6133                                                    CORBA::Double             theR ){
6134   SMESH::long_array_var aResult = new SMESH::long_array();
6135   if( meshPart->_is_nil() )
6136     return aResult._retn();
6137
6138   gp_Pnt aP( theX, theY, theZ );
6139   gp_Vec aV( theDX, theDY, theDZ );
6140   gp_Ax2 anAxes (aP, aV);
6141
6142   TopoDS_Shape aShape = BRepPrimAPI_MakeCylinder(anAxes, theR, Abs(theH)).Shape();
6143
6144   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6145
6146   if( lst.size() > 0 ) {
6147     aResult->length( lst.size() );
6148     for ( size_t i = 0; i < lst.size(); i++ ) {
6149       aResult[i] = lst[i];
6150     }
6151   }
6152   return aResult._retn();
6153 }
6154
6155 SMESH::long_array* SMESH_Gen_i::GetInside( SMESH::SMESH_IDSource_ptr meshPart,
6156                                            SMESH::ElementType        theElemType,
6157                                            GEOM::GEOM_Object_ptr     theGeom,
6158                                            CORBA::Double             theTolerance ) {
6159   SMESH::long_array_var aResult = new SMESH::long_array();
6160   if( meshPart->_is_nil() || theGeom->_is_nil() )
6161     return aResult._retn();
6162
6163   TopoDS_Shape aShape = GeomObjectToShape( theGeom );
6164
6165   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape, &theTolerance);
6166
6167   if( lst.size() > 0 ) {
6168     aResult->length( lst.size() );
6169     for ( size_t i = 0; i < lst.size(); i++ ) {
6170       aResult[i] = lst[i];
6171     }
6172   }
6173   return aResult._retn();
6174 }
6175
6176
6177
6178 std::vector<long> SMESH_Gen_i::_GetInside( SMESH::SMESH_IDSource_ptr meshPart,
6179                                            SMESH::ElementType theElemType,
6180                                            TopoDS_Shape& aShape,
6181                                            double* theTolerance) {
6182
6183   std::vector<long> res;
6184   SMESH::SMESH_Mesh_var mesh = meshPart->GetMesh();
6185
6186   if ( mesh->_is_nil() )
6187     return res;
6188
6189   SMESH_Mesh_i* anImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( mesh ).in() );
6190   if ( !anImpl )
6191     return res;
6192
6193   const SMDS_Mesh* meshDS = anImpl->GetImpl().GetMeshDS();
6194
6195   if ( !meshDS )
6196     return res;
6197
6198   SMDSAbs_ElementType aType = SMDSAbs_ElementType(theElemType);
6199   SMESH::Controls::ElementsOnShape* anElementsOnShape = new SMESH::Controls::ElementsOnShape();
6200   anElementsOnShape->SetAllNodes( true );
6201   anElementsOnShape->SetMesh( meshDS );
6202   anElementsOnShape->SetShape( aShape, aType );
6203
6204   if(theTolerance)
6205     anElementsOnShape->SetTolerance(*theTolerance);
6206
6207   SMESH::SMESH_Mesh_var msource = SMESH::SMESH_Mesh::_narrow(meshPart);
6208   if ( !msource->_is_nil() ) { // Mesh case
6209     SMDS_ElemIteratorPtr elemIt = meshDS->elementsIterator( aType );
6210     if ( elemIt ) {
6211       while ( elemIt->more() ) {
6212         const SMDS_MeshElement* anElem = elemIt->next();
6213         long anId = anElem->GetID();
6214         if ( anElementsOnShape->IsSatisfy( anId ) )
6215           res.push_back( anId );
6216       }
6217     }
6218   }
6219   SMESH::SMESH_Group_var gsource = SMESH::SMESH_Group::_narrow(meshPart);
6220   if ( !gsource->_is_nil() ) {
6221     if(theElemType == SMESH::NODE) {
6222       SMESH::long_array_var nodes = gsource->GetNodeIDs();
6223       for ( CORBA::ULong i = 0; i < nodes->length(); ++i ) {
6224         if ( const SMDS_MeshNode* node = meshDS->FindNode( nodes[i] )) {
6225           long anId = node->GetID();
6226           if ( anElementsOnShape->IsSatisfy( anId ) )
6227             res.push_back( anId );
6228         }
6229       }
6230     } else if (gsource->GetType() == theElemType || theElemType == SMESH::ALL ) {
6231       SMESH::long_array_var elems = gsource->GetListOfID();
6232       for ( CORBA::ULong i = 0; i < elems->length(); ++i ) {
6233         if ( const SMDS_MeshElement* elem = meshDS->FindElement( elems[i] )) {
6234           long anId = elem->GetID();
6235           if ( anElementsOnShape->IsSatisfy( anId ) )
6236             res.push_back( anId );
6237         }
6238       }
6239     }
6240   }
6241   SMESH::SMESH_subMesh_var smsource = SMESH::SMESH_subMesh::_narrow(meshPart);
6242   if ( !smsource->_is_nil() ) {
6243     SMESH::long_array_var elems = smsource->GetElementsByType( theElemType );
6244     for ( CORBA::ULong i = 0; i < elems->length(); ++i ) {
6245       const SMDS_MeshElement* elem = ( theElemType == SMESH::NODE ) ? meshDS->FindNode( elems[i] ) : meshDS->FindElement( elems[i] );
6246       if (elem) {
6247         long anId = elem->GetID();
6248         if ( anElementsOnShape->IsSatisfy( anId ) )
6249           res.push_back( anId );
6250       }
6251     }
6252   }
6253   return res;
6254 }
6255
6256
6257 //=============================================================================
6258 /*!
6259  *  SMESHEngine_factory
6260  *
6261  *  C factory, accessible with dlsym, after dlopen
6262  */
6263 //=============================================================================
6264
6265 extern "C"
6266 { SMESH_I_EXPORT
6267   PortableServer::ObjectId* SMESHEngine_factory( CORBA::ORB_ptr            orb,
6268                                                  PortableServer::POA_ptr   poa,
6269                                                  PortableServer::ObjectId* contId,
6270                                                  const char*               instanceName,
6271                                                  const char*               interfaceName )
6272   {
6273     if(MYDEBUG) MESSAGE( "PortableServer::ObjectId* SMESHEngine_factory()" );
6274     if(MYDEBUG) SCRUTE(interfaceName);
6275     SMESH_Gen_i* aSMESHGen = new SMESH_Gen_i(orb, poa, contId, instanceName, interfaceName);
6276     return aSMESHGen->getId() ;
6277   }
6278 }