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