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