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