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