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