Salome HOME
#16866: [CEA 13186] smesh Exception during hypothesis creation
[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.empty() )
3113         {
3114           try
3115           {
3116             if ( newIndices.size() > 1 || oldShape->GetType() == GEOM_GROUP )
3117             {
3118               int groupType = getShapeType( myNewMesh_i, newIndices[0] );
3119
3120               GEOM::GEOM_IGroupOperations_wrap grOp = geomGen->GetIGroupOperations();
3121               newShape = grOp->CreateGroup( mainShapeNew, groupType );
3122
3123               GEOM::ListOfLong_var  newIndicesList = new GEOM::ListOfLong();
3124               newIndicesList->length( newIndices.size() );
3125               for ( size_t i = 0; i < newIndices.size(); ++i )
3126                 newIndicesList[ i ] = newIndices[ i ];
3127               grOp->UnionIDs( newShape, newIndicesList );
3128             }
3129             else
3130             {
3131               GEOM::GEOM_IShapesOperations_wrap shOp = geomGen->GetIShapesOperations();
3132               newShape = shOp->GetSubShape( mainShapeNew, newIndices[0] );
3133             }
3134           }
3135           catch (...)
3136           {
3137           }
3138         }
3139       }
3140
3141       if ( !newShape->_is_nil() && myToPublish )
3142       {
3143         CORBA::String_var oldEntry, newEntry = newShape->GetStudyEntry();
3144         if ( !newEntry.in() || !newEntry.in()[0] )
3145         {
3146           CORBA::String_var    name = oldShape->GetName();
3147           SALOMEDS::SObject_wrap so = geomGen->AddInStudy( newShape, name, mainShapeNew );
3148           newEntry = newShape->GetStudyEntry();
3149           oldEntry = oldShape->GetStudyEntry();
3150           myOld2NewEntryMap.insert( std::make_pair( std::string( oldEntry.in() ),
3151                                                     std::string( newEntry.in() )));
3152         }
3153       }
3154
3155       return newShape._retn();
3156     }
3157
3158     //================================================================================
3159     /*!
3160      * \brief Return a study entry of a new shape by study entry of the old one
3161      */
3162     std::string FindNew( const std::string & oldEntry )
3163     {
3164       if ( myIsSameGeom )
3165         return oldEntry;
3166
3167       TStr2StrMap::iterator o2nID = myOld2NewEntryMap.find( oldEntry );
3168       if ( o2nID != myOld2NewEntryMap.end() )
3169         return o2nID->second;
3170
3171       GEOM::GEOM_Object_var oldShape = getShapeByEntry( oldEntry );
3172       if ( oldShape->_is_nil() || !isChildOfOld( oldShape ))
3173         return oldEntry;
3174
3175       GEOM::GEOM_Object_ptr newShape = FindNew( oldShape );
3176       if ( newShape->_is_nil() )
3177         return std::string();
3178
3179       CORBA::String_var newEntry = newShape->GetStudyEntry();
3180       return newEntry.in();
3181     }
3182
3183     //================================================================================
3184     /*!
3185      * \brief Return a sub-shape ID of a new shape by a sub-shape ID of the old one.
3186      *        Return zero if not found or there are more than one new ID
3187      */
3188     int FindNew( int oldID )
3189     {
3190       if ( myIsSameGeom )
3191         return oldID;
3192
3193       buildGIPMap();
3194
3195       int newID = 0;
3196
3197       if ( 0 < oldID && oldID < (int)myGIPMap->length() )
3198       {
3199         if ( myGIPMap[ oldID ].length() == 1 )
3200         {
3201           newID = myGIPMap[ oldID ][ 0 ];
3202         }
3203         else if ( myGIPMap[ oldID ].length() > 1 &&
3204                   getShapeType( mySrcMesh_i, oldID ) == TopAbs_VERTEX )
3205         {
3206           // select a meshed VERTEX
3207           SMESH_subMesh* newSM;
3208           for ( CORBA::ULong i = 0; i < myGIPMap[ oldID ].length() && !newID; ++i )
3209             if (( newSM = myNewMesh_i->GetImpl().GetSubMeshContaining( myGIPMap[ oldID ][ i ] )) &&
3210                 ( !newSM->IsEmpty() ))
3211               newID = myGIPMap[ oldID ][ i ];
3212         }
3213       }
3214       return newID;
3215     }
3216
3217     //================================================================================
3218     /*!
3219      * \brief Return a sub-shape ID of a new shape by an old sub-mesh.
3220      *        Return zero if the old shape is not kept as is in the new shape.
3221      */
3222     int FindNewNotChanged( SMESH_subMesh* oldSM )
3223     {
3224       if ( myIsSameGeom )
3225         return oldSM->GetId();
3226
3227       int newID = FindNew( oldSM->GetId() );
3228       if ( !newID )
3229         return 0;
3230
3231       SMESH_subMesh* newSM = myNewMesh_i->GetImpl().GetSubMeshContaining( newID );
3232       if ( !newSM )
3233         return 0;
3234
3235       // consider a sub-shape as not changed if all its sub-shapes are mapped into
3236       // one new sub-shape of the same type.
3237
3238       if ( oldSM->DependsOn().size() !=
3239            newSM->DependsOn().size() )
3240         return 0;
3241
3242       SMESH_subMeshIteratorPtr srcSMIt = oldSM->getDependsOnIterator( /*includeSelf=*/true );
3243       while ( srcSMIt->more() )
3244       {
3245         oldSM = srcSMIt->next();
3246         int newSubID = FindNew( oldSM->GetId() );
3247         if ( getShapeType( myNewMesh_i, newSubID ) !=
3248              getShapeType( mySrcMesh_i, oldSM->GetId() ))
3249           return 0;
3250       }
3251       return newID;
3252     }
3253
3254     //================================================================================
3255     /*!
3256      * \brief Return shape by study entry
3257      */
3258     GEOM::GEOM_Object_ptr getShapeByEntry( const std::string & entry )
3259     {
3260       GEOM::GEOM_Object_var shape;
3261       SALOMEDS::SObject_wrap so = myGen_i->getStudyServant()->FindObjectID( entry.c_str() );
3262       if ( !so->_is_nil() )
3263       {
3264         CORBA::Object_var obj = so->GetObject();
3265         shape = GEOM::GEOM_Object::_narrow( obj );
3266       }
3267       return shape._retn();
3268     }
3269
3270     //================================================================================
3271     /*!
3272      * \brief Fill myGIPMap by calling GetInPlaceMap()
3273      */
3274     void buildGIPMap()
3275     {
3276       if ( !myGIPMapDone )
3277       {
3278         myGIPMapDone = true;
3279
3280         GEOM::GEOM_Object_var   mainShapeNew = myNewMesh_i->GetShapeToMesh();
3281         GEOM::GEOM_Object_var   mainShapeOld = mySrcMesh_i->GetShapeToMesh();
3282         GEOM::GEOM_Gen_var           geomGen = myGen_i->GetGeomEngine();
3283         GEOM::GEOM_IShapesOperations_wrap op = geomGen->GetIShapesOperations();
3284         try
3285         {
3286           myGIPMap = op->GetInPlaceMap( mainShapeNew, mainShapeOld );
3287         }
3288         catch( ... )
3289         {
3290           myGIPMap = new GEOM::ListOfListOfLong();
3291         }
3292       }
3293     }
3294
3295     //================================================================================
3296     /*!
3297      * \brief Find a new sub-shape indices by an old one in myGIPMap. Return
3298      *        number of found IDs
3299      */
3300     int findNewIDs( int oldID, std::vector< int >& newIDs  )
3301     {
3302       size_t prevNbIDs = newIDs.size();
3303
3304       if ( 0 < oldID && oldID < (int) myGIPMap->length() )
3305       {
3306         for ( CORBA::ULong i = 0; i < myGIPMap[ oldID ].length(); ++i )
3307           newIDs.push_back( myGIPMap[ oldID ][ i ]);
3308       }
3309       return newIDs.size() - prevNbIDs;
3310     }
3311
3312     //================================================================================
3313     /*!
3314      * \brief Check if an object relates to the old shape
3315      */
3316     bool isChildOfOld( GEOM::GEOM_Object_ptr oldShape )
3317     {
3318       if ( CORBA::is_nil( oldShape ))
3319         return false;
3320       GEOM::GEOM_Object_var mainShapeOld1 = mySrcMesh_i->GetShapeToMesh();
3321       GEOM::GEOM_Object_var mainShapeOld2 = oldShape->GetMainShape();
3322       return ( mainShapeOld1->_is_equivalent( mainShapeOld2 ) ||
3323                mainShapeOld1->_is_equivalent( oldShape ));
3324     }
3325
3326     //================================================================================
3327     /*!
3328      * \brief Return shape type by shape ID
3329      */
3330     TopAbs_ShapeEnum getShapeType( SMESH_Mesh_i* mesh_i, int shapeID )
3331     {
3332       SMESHDS_Mesh* meshDS = mesh_i->GetImpl().GetMeshDS();
3333       const TopoDS_Shape& shape = meshDS->IndexToShape( shapeID );
3334       return shape.IsNull() ? TopAbs_SHAPE : shape.ShapeType();
3335     }
3336
3337     //================================================================================
3338     /*!
3339      * \brief Store a source sub-shape for which a counterpart not found and
3340      *        a smesh object invalid due to that
3341      */
3342     void AddInvalid( GEOM::GEOM_Object_var  srcShape,
3343                      SALOMEDS::SObject_wrap smeshSO )
3344     {
3345       CORBA::String_var geomEntry = srcShape->GetStudyEntry();
3346       if ( geomEntry.in()[0] && !smeshSO->_is_nil() )
3347       {
3348         CORBA::String_var smeshEntry = smeshSO->GetID();
3349         myInvalidMap[ geomEntry.in() ].insert( smeshEntry.in() );
3350       }
3351     }
3352
3353     //================================================================================
3354     /*!
3355      * \brief Store a source sub-shape for which a counterpart not found and
3356      *        a smesh object invalid due to that
3357      */
3358     void AddInvalid( std::string            geomEntry,
3359                      SALOMEDS::SObject_wrap smeshSO )
3360     {
3361       if ( !geomEntry.empty() )
3362       {
3363         CORBA::String_var smeshEntry = smeshSO->GetID();
3364         myInvalidMap[ geomEntry ].insert( smeshEntry.in() );
3365       }
3366     }
3367
3368     //================================================================================
3369     /*!
3370      * \brief Store a source sub-shape for which a counterpart not found and
3371      *        a smesh object invalid due to that
3372      */
3373     void AddInvalid( int                    oldGeomID,
3374                      SALOMEDS::SObject_wrap smeshSO )
3375     {
3376       int shapeType = getShapeType( mySrcMesh_i, oldGeomID );
3377       if ( shapeType < 0 || shapeType > TopAbs_SHAPE )
3378         return;
3379
3380       const char* typeName[] = { "COMPOUND","COMPSOLID","SOLID","SHELL",
3381                                  "FACE","WIRE","EDGE","VERTEX","SHAPE" };
3382
3383       SMESH_Comment geomName( typeName[ shapeType ]);
3384       geomName << " #" << oldGeomID;
3385
3386       CORBA::String_var smeshEntry = smeshSO->GetID();
3387       myInvalidMap[ geomName ].insert( smeshEntry.in() );
3388     }
3389
3390     //================================================================================
3391     /*!
3392      * \brief Return entries of a source sub-shape for which a counterpart not found and
3393      *        of smesh objects invalid due to that
3394      */
3395     void GetInvalid( SMESH::string_array_out &               theInvalidEntries,
3396                      std::vector< SALOMEDS::SObject_wrap > & theInvalidMeshSObjects)
3397     {
3398       int nbSO = 0;
3399       TStr2StrSetMap::iterator entry2entrySet = myInvalidMap.begin();
3400       for ( ; entry2entrySet != myInvalidMap.end(); ++entry2entrySet )
3401       {
3402         nbSO += 1 + entry2entrySet->second.size();
3403       }
3404       int iSO = theInvalidMeshSObjects.size(), iEntry = 0;
3405       theInvalidEntries->length  ( nbSO );
3406       theInvalidMeshSObjects.resize( theInvalidMeshSObjects.size() + nbSO - myInvalidMap.size() );
3407
3408       entry2entrySet = myInvalidMap.begin();
3409       for ( ; entry2entrySet != myInvalidMap.end(); ++entry2entrySet )
3410       {
3411         theInvalidEntries[ iEntry++ ] = entry2entrySet->first.c_str();
3412
3413         std::set< std::string > & entrySet = entry2entrySet->second;
3414         std::set< std::string >::iterator entry = entrySet.begin();
3415         for ( ; entry != entrySet.end(); ++entry )
3416         {
3417           theInvalidEntries[ iEntry++ ] = entry->c_str();
3418
3419           SALOMEDS::SObject_wrap so = myGen_i->getStudyServant()->FindObjectID( entry->c_str() );
3420           if ( !so->_is_nil() )
3421             theInvalidMeshSObjects[ iSO++ ] = so;
3422         }
3423       }
3424     }
3425
3426   }; // struct ShapeMapper
3427
3428   //================================================================================
3429   /*!
3430    * \brief Append an item to a CORBA sequence
3431    */
3432   template < class CORBA_seq, class ITEM >
3433   void append( CORBA_seq& seq, ITEM item )
3434   {
3435     if ( !CORBA::is_nil( item ))
3436     {
3437       seq->length( 1 + seq->length() );
3438       seq[ seq->length() - 1 ] = item;
3439     }
3440   }
3441 } // namespace // utils for CopyMeshWithGeom()
3442
3443 //================================================================================
3444 /*!
3445  * \brief Create a mesh by copying definitions of another mesh to a given geometry
3446  *  \param [in] sourceMesh - a mesh to copy
3447  *  \param [in] newGeometry - a new geometry
3448  *  \param [in] toCopyGroups - to create groups in the new mesh
3449  *  \param [in] toReuseHypotheses - if True, existing hypothesis will be used by the new mesh,
3450  *         otherwise new hypotheses with the same parameters will be created for the new mesh.
3451  *  \param [in] toCopyElements - to copy mesh elements of same sub-shapes of the two geometries
3452  *  \param [out] newMesh - return a new mesh
3453  *  \param [out] newGroups - return new groups
3454  *  \param [out] newSubmeshes - return new sub-meshes
3455  *  \param [out] newHypotheses - return new algorithms and hypotheses
3456  *  \param [out] invalidEntries - return study entries of objects whose
3457  *         counterparts are not found in the newGeometry, followed by entries
3458  *         of mesh sub-objects that are invalid because they depend on a not found
3459  *         preceding sub-shape
3460  *  \return CORBA::Boolean - is a success
3461  */
3462 //================================================================================
3463
3464 CORBA::Boolean SMESH_Gen_i::CopyMeshWithGeom( SMESH::SMESH_Mesh_ptr       theSourceMesh,
3465                                               GEOM::GEOM_Object_ptr       theNewGeometry,
3466                                               const char*                 theMeshName,
3467                                               CORBA::Boolean              theToCopyGroups,
3468                                               CORBA::Boolean              theToReuseHypotheses,
3469                                               CORBA::Boolean              theToCopyElements,
3470                                               SMESH::SMESH_Mesh_out       theNewMesh,
3471                                               SMESH::ListOfGroups_out     theNewGroups,
3472                                               SMESH::submesh_array_out    theNewSubmeshes,
3473                                               SMESH::ListOfHypothesis_out theNewHypotheses,
3474                                               SMESH::string_array_out     theInvalidEntries)
3475 throw ( SALOME::SALOME_Exception )
3476 {
3477   if ( CORBA::is_nil( theSourceMesh ) ||
3478        CORBA::is_nil( theNewGeometry ))
3479     THROW_SALOME_CORBA_EXCEPTION( "NULL arguments", SALOME::BAD_PARAM );
3480
3481   if ( !theSourceMesh->HasShapeToMesh() )
3482     THROW_SALOME_CORBA_EXCEPTION( "Source mesh not on geometry", SALOME::BAD_PARAM );
3483
3484   bool ok = true;
3485   SMESH_TRY;
3486
3487   TPythonDump pyDump; // prevent dump from CreateMesh()
3488
3489   theNewMesh        = CreateMesh( theNewGeometry );
3490   theNewGroups      = new SMESH::ListOfGroups();
3491   theNewSubmeshes   = new SMESH::submesh_array();
3492   theNewHypotheses  = new SMESH::ListOfHypothesis();
3493   theInvalidEntries = new SMESH::string_array();
3494
3495   std::vector< SALOMEDS::SObject_wrap > invalidSObjects;
3496
3497   GEOM::GEOM_Object_var srcGeom = theSourceMesh->GetShapeToMesh();
3498   GEOM::GEOM_Object_var geom, newGeom;
3499   SALOMEDS::SObject_wrap so;
3500
3501   SMESH_Mesh_i* srcMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( theSourceMesh );
3502   SMESH_Mesh_i* newMesh_i = SMESH::DownCast<SMESH_Mesh_i*>( theNewMesh );
3503   srcMesh_i->Load();
3504
3505   ShapeMapper shapeMapper( srcMesh_i, newMesh_i, this );
3506
3507   // treat hypotheses of mesh and sub-meshes
3508   SMESH::submesh_array_var smList = theSourceMesh->GetSubMeshes();
3509   for ( CORBA::ULong iSM = 0; iSM <= smList->length(); ++iSM )
3510   {
3511     bool isSubMesh = ( iSM < smList->length() );
3512     if ( isSubMesh )
3513     {
3514       // create a new sub-mesh
3515       SMESH::SMESH_subMesh_var newSM;
3516       geom = smList[iSM]->GetSubShape();
3517       so   = ObjectToSObject( smList[iSM] );
3518       CORBA::String_var name;
3519       if ( !so->_is_nil() )
3520         name = so->GetName();
3521       newGeom = shapeMapper.FindNew( geom );
3522       if ( newGeom->_is_nil() )
3523       {
3524         newSM = createInvalidSubMesh( theNewMesh, geom, name.in() );
3525         shapeMapper.AddInvalid( geom, ObjectToSObject( newSM ));
3526         ok = false;
3527       }
3528       else
3529       {
3530         newSM = theNewMesh->GetSubMesh( newGeom, name.in() );
3531       }
3532       append( theNewSubmeshes, newSM );
3533
3534       if ( newGeom->_is_nil() )
3535         continue; // don't assign hypotheses
3536     }
3537     else
3538     {
3539       newGeom = GEOM::GEOM_Object::_duplicate( theNewGeometry );
3540       geom    = srcGeom;
3541       so      = ObjectToSObject( theNewMesh );
3542       SetName( so, theMeshName, "Mesh" );
3543     }
3544
3545     // assign hypotheses
3546     SMESH::ListOfHypothesis_var hypList = theSourceMesh->GetHypothesisList( geom );
3547     for ( CORBA::ULong iHyp = 0; iHyp < hypList->length(); ++iHyp )
3548     {
3549       SMESH::SMESH_Hypothesis_var hyp = hypList[ iHyp ];
3550       SMESH_Hypothesis_i*       hyp_i = SMESH::DownCast< SMESH_Hypothesis_i* >( hyp );
3551
3552       // get geometry hyp depends on
3553       std::vector< std::string > entryArray;
3554       std::vector< int >         subIDArray;
3555       bool dependsOnGeom = hyp_i->getObjectsDependOn( entryArray, subIDArray );
3556
3557       if ( !theToReuseHypotheses || dependsOnGeom )
3558       {
3559         // create a new hypothesis
3560         CORBA::String_var type = hyp->GetName();
3561         CORBA::String_var lib  = hyp->GetLibName();
3562         CORBA::String_var data = hyp_i->SaveTo();
3563         if ( data.in()[0] )
3564         {
3565           hyp   = CreateHypothesis( type, lib );
3566           hyp_i = SMESH::DownCast< SMESH_Hypothesis_i* >( hyp );
3567           hyp_i->LoadFrom( data.in() );
3568           append( theNewHypotheses, hyp );
3569         }
3570       }
3571
3572       // update geometry hyp depends on
3573       if ( dependsOnGeom )
3574       {
3575         for ( size_t iGeo = 0; iGeo < entryArray.size(); ++iGeo )
3576         {
3577           if ( !entryArray[ iGeo ].empty() )
3578           {
3579             std::string newEntry = shapeMapper.FindNew( entryArray[ iGeo ]);
3580             if ( newEntry.empty() )
3581             {
3582               ok = false;
3583               shapeMapper.AddInvalid( entryArray[ iGeo ], ObjectToSObject( hyp ));
3584               shapeMapper.AddInvalid( entryArray[ iGeo ], so ); // sub-mesh
3585             }
3586             entryArray[ iGeo ] = newEntry;
3587           }
3588         }
3589         for ( size_t iGeo = 0; iGeo < subIDArray.size(); ++iGeo )
3590         {
3591           if ( subIDArray[ iGeo ] > 0 )
3592           {
3593             int newID = shapeMapper.FindNew( subIDArray[ iGeo ]);
3594             if ( newID < 1 )
3595             {
3596               ok = false;
3597               shapeMapper.AddInvalid( subIDArray[ iGeo ], ObjectToSObject( hyp ));
3598               shapeMapper.AddInvalid( subIDArray[ iGeo ], so ); // sub-mesh
3599             }
3600             subIDArray[ iGeo ] = newID;
3601           }
3602         }
3603         if ( !hyp_i->setObjectsDependOn( entryArray, subIDArray ))
3604           ok = false;
3605       }
3606
3607       CORBA::String_var errorText;
3608       theNewMesh->AddHypothesis( newGeom, hyp, errorText.out() );
3609       if ( errorText.in()[0] )
3610         ok = false;
3611
3612     } // loop on hypotheses
3613   } // loop on sub-meshes and mesh
3614
3615
3616   // copy mesh elements, keeping IDs
3617   SMESHDS_Mesh* newMeshDS = newMesh_i->GetImpl().GetMeshDS();
3618   if ( theToCopyElements && theSourceMesh->NbNodes() > 0 )
3619   {
3620     ::SMESH_MeshEditor editor( &newMesh_i->GetImpl() );
3621     ::SMESH_MeshEditor::ElemFeatures elemData;
3622
3623     SMESH_subMesh*         srcMainSM = srcMesh_i->GetImpl().GetSubMeshContaining( 1 );
3624     SMESH_subMeshIteratorPtr srcSMIt = srcMainSM->getDependsOnIterator( /*includeSelf=*/true,
3625                                                                         /*vertexLast=*/false);
3626     while ( srcSMIt->more() )
3627     {
3628       SMESH_subMesh* srcSM = srcSMIt->next();
3629       if ( srcSM->IsEmpty() )
3630         continue; // not yet computed
3631       int newID = shapeMapper.FindNewNotChanged( srcSM );
3632       if ( newID < 1 )
3633         continue;
3634
3635       SMESHDS_SubMesh* srcSMDS = srcSM->GetSubMeshDS();
3636       SMDS_NodeIteratorPtr nIt = srcSMDS->GetNodes();
3637       while ( nIt->more() )
3638       {
3639         SMESH_NodeXYZ node( nIt->next() );
3640         const SMDS_MeshNode* newNode = newMeshDS->AddNodeWithID( node.X(), node.Y(), node.Z(),
3641                                                                  node->GetID() );
3642         const SMDS_PositionPtr pos = node->GetPosition();
3643         const double*           uv = pos->GetParameters();
3644         switch ( pos->GetTypeOfPosition() )
3645         {
3646         case SMDS_TOP_3DSPACE: newMeshDS->SetNodeInVolume( newNode, newID );               break;
3647         case SMDS_TOP_FACE:    newMeshDS->SetNodeOnFace  ( newNode, newID, uv[0], uv[1] ); break;
3648         case SMDS_TOP_EDGE:    newMeshDS->SetNodeOnEdge  ( newNode, newID, uv[0] );        break;
3649         case SMDS_TOP_VERTEX:  newMeshDS->SetNodeOnVertex( newNode, newID );               break;
3650         default: ;
3651         }
3652       }
3653       SMDS_ElemIteratorPtr eIt = srcSMDS->GetElements();
3654       while( eIt->more() )
3655       {
3656         const SMDS_MeshElement* e = eIt->next();
3657         elemData.Init( e, /*basicOnly=*/false );
3658         elemData.SetID( e->GetID() );
3659         elemData.myNodes.resize( e->NbNodes() );
3660         SMDS_NodeIteratorPtr nnIt = e->nodeIterator();
3661         size_t iN;
3662         for ( iN = 0; nnIt->more(); ++iN )
3663         {
3664           const SMDS_MeshNode* srcNode = nnIt->next();
3665           elemData.myNodes[ iN ] = newMeshDS->FindNode( srcNode->GetID() );
3666           if ( !elemData.myNodes[ iN ])
3667             break;
3668         }
3669         if ( iN == elemData.myNodes.size() )
3670           if ( const SMDS_MeshElement * newElem = editor.AddElement( elemData.myNodes, elemData ))
3671             newMeshDS->SetMeshElementOnShape( newElem, newID );
3672       }
3673       if ( SMESH_subMesh* newSM = newMesh_i->GetImpl().GetSubMeshContaining( newID ))
3674         newSM->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
3675     }
3676
3677     newMeshDS->Modified();
3678   }
3679
3680
3681   // treat groups
3682
3683   TStr2StrMap old2newGroupMap;
3684
3685   SALOME::GenericObj_wrap< SMESH::FilterManager > filterMgr = CreateFilterManager();
3686
3687   SMESH::ListOfGroups_var groups = theSourceMesh->GetGroups();
3688   CORBA::ULong nbGroups = theToCopyGroups ? groups->length() : 0, nbAddedGroups = 0;
3689   for ( CORBA::ULong i = 0; i < nbGroups + nbAddedGroups; ++i )
3690   {
3691     SMESH::SMESH_Group_var         stdlGroup = SMESH::SMESH_Group::_narrow        ( groups[ i ]);
3692     SMESH::SMESH_GroupOnGeom_var   geomGroup = SMESH::SMESH_GroupOnGeom::_narrow  ( groups[ i ]);
3693     SMESH::SMESH_GroupOnFilter_var fltrGroup = SMESH::SMESH_GroupOnFilter::_narrow( groups[ i ]);
3694
3695     CORBA::String_var      name = groups[ i ]->GetName();
3696     SMESH::ElementType elemType = groups[ i ]->GetType();
3697
3698     SMESH::SMESH_GroupBase_var newGroup;
3699
3700     if ( !stdlGroup->_is_nil() )
3701     {
3702       if ( newMeshDS->GetMeshInfo().NbElements( SMDSAbs_ElementType( elemType )) > 0 )
3703       {
3704         SMESH::long_array_var elemIDs = stdlGroup->GetIDs();
3705         const bool isElem = ( elemType != SMESH::NODE );
3706         CORBA::ULong iE = 0;
3707         for ( ; iE < elemIDs->length(); ++iE ) // check if any element has been copied
3708           if ( newMeshDS->GetElementType( elemIDs[ iE ], isElem ) != SMDSAbs_All )
3709             break;
3710         if ( iE < elemIDs->length() )
3711         {
3712           stdlGroup = theNewMesh->CreateGroup( elemType, name );
3713           stdlGroup->Add( elemIDs );
3714           newGroup = SMESH::SMESH_GroupBase::_narrow( stdlGroup );
3715         }
3716       }
3717     }
3718     else if ( !geomGroup->_is_nil() )
3719     {
3720       GEOM::GEOM_Object_var    geom = geomGroup->GetShape();
3721       GEOM::GEOM_Object_var newGeom = shapeMapper.FindNew( geom );
3722       if ( newGeom->_is_nil() )
3723       {
3724         newGroup = theNewMesh->CreateGroup( elemType, name ); // just to notify the user
3725         shapeMapper.AddInvalid( geom, ObjectToSObject( newGroup ));
3726         ok = false;
3727       }
3728       else
3729       {
3730         newGroup = theNewMesh->CreateGroupFromGEOM( elemType, name, newGeom );
3731       }
3732     }
3733     else if ( !fltrGroup->_is_nil() )
3734     {
3735       // replace geometry in a filter
3736       SMESH::Filter_var filter = fltrGroup->GetFilter();
3737       SMESH::Filter::Criteria_var criteria;
3738       filter->GetCriteria( criteria.out() );
3739
3740       bool isMissingGroup = false;
3741       std::vector< std::string > badEntries;
3742
3743       for ( CORBA::ULong iCr = 0; iCr < criteria->length(); ++iCr )
3744       {
3745         const char* thresholdID = criteria[ iCr ].ThresholdID.in();
3746         switch ( criteria[ iCr ].Type )
3747         {
3748         case SMESH::FT_BelongToMeshGroup:
3749         {
3750           SALOME::GenericObj_wrap< SMESH::BelongToMeshGroup > btgg = filterMgr->CreateBelongToMeshGroup();
3751           btgg->SetGroupID( thresholdID );
3752           SMESH::SMESH_GroupBase_ptr refGroup = btgg->GetGroup();
3753           SALOMEDS::SObject_wrap   refGroupSO = ObjectToSObject( refGroup );
3754           if ( refGroupSO->_is_nil() )
3755             break;
3756           CORBA::String_var     refID = refGroupSO->GetID();
3757           TStr2StrMap::iterator o2nID = old2newGroupMap.find( refID.in() );
3758           if ( o2nID == old2newGroupMap.end() )
3759           {
3760             isMissingGroup = true; // corresponding new group not yet created
3761             break;
3762           }
3763           criteria[ iCr ].ThresholdID = o2nID->second.c_str();
3764
3765           if ( o2nID->second.empty() ) // new referred group is invalid
3766             badEntries.push_back( refID.in() );
3767           break;
3768         }
3769         case SMESH::FT_BelongToGeom:
3770         case SMESH::FT_BelongToPlane:
3771         case SMESH::FT_BelongToCylinder:
3772         case SMESH::FT_BelongToGenSurface:
3773         case SMESH::FT_LyingOnGeom:
3774         {
3775           std::string newID = shapeMapper.FindNew( thresholdID );
3776           criteria[ iCr ].ThresholdID = newID.c_str();
3777           if ( newID.empty() )
3778             badEntries.push_back( thresholdID );
3779           break;
3780         }
3781         case SMESH::FT_ConnectedElements:
3782         {
3783           if ( thresholdID && thresholdID[0] )
3784           {
3785             std::string newID = shapeMapper.FindNew( thresholdID );
3786             criteria[ iCr ].ThresholdID = newID.c_str();
3787             if ( newID.empty() )
3788               badEntries.push_back( thresholdID );
3789           }
3790           break;
3791         }
3792         default:;
3793         }
3794       } // loop on criteria
3795
3796       if ( isMissingGroup && i < nbGroups )
3797       {
3798         // to treat the group again
3799         append( groups, SMESH::SMESH_GroupBase::_duplicate( groups[ i ]));
3800         ++nbAddedGroups;
3801         continue;
3802       }
3803       SMESH::Filter_var newFilter = filterMgr->CreateFilter();
3804       newFilter->SetCriteria( criteria );
3805
3806       newGroup = theNewMesh->CreateGroupFromFilter( elemType, name, newFilter );
3807       newFilter->UnRegister();
3808
3809       SALOMEDS::SObject_wrap newSO = ObjectToSObject( newGroup );
3810       for ( size_t iEnt = 0; iEnt < badEntries.size(); ++iEnt )
3811         shapeMapper.AddInvalid( badEntries[ iEnt ], newSO );
3812
3813       if ( isMissingGroup ) // all groups treated but a referred groups still not found
3814       {
3815         invalidSObjects.push_back( ObjectToSObject( newGroup ));
3816         ok = false;
3817       }
3818       if ( !badEntries.empty() )
3819         ok = false;
3820
3821     } // treat a group on filter
3822
3823     append( theNewGroups, newGroup );
3824
3825     // fill old2newGroupMap
3826     SALOMEDS::SObject_wrap srcSO = ObjectToSObject( groups[i] );
3827     SALOMEDS::SObject_wrap newSO = ObjectToSObject( newGroup );
3828     if ( !srcSO->_is_nil() )
3829     {
3830       CORBA::String_var srcID, newID("");
3831       srcID = srcSO->GetID();
3832       if ( !newSO->_is_nil() )
3833         newID = newSO->GetID();
3834       old2newGroupMap.insert( std::make_pair( std::string( srcID.in() ),
3835                                               std::string( newID.in() )));
3836     }
3837
3838     if ( newGroup->_is_nil() )
3839       ok = false;
3840
3841   } // loop on groups
3842
3843   newMeshDS->CompactMesh();
3844
3845   // set mesh name
3846   if ( !theMeshName || !theMeshName[0] )
3847   {
3848     SALOMEDS::SObject_wrap soNew = ObjectToSObject( theNewMesh );
3849     SALOMEDS::SObject_wrap soOld = ObjectToSObject( theSourceMesh );
3850     CORBA::String_var oldName = soOld->GetName();
3851     SetName( soNew, oldName.in(), "Mesh" );
3852   }
3853   // mark invalid objects
3854   shapeMapper.GetInvalid( theInvalidEntries, invalidSObjects );
3855
3856   for ( size_t i = 0; i < invalidSObjects.size(); ++i )
3857     highLightInvalid( invalidSObjects[i].in(), true );
3858
3859   pyDump << "ok, "
3860          << theNewMesh << ", "
3861          << theNewGroups << ", "
3862          << *theNewSubmeshes.ptr() << ", "
3863          << *theNewHypotheses.ptr() << ", "
3864          << "invalidEntries = " << this << ".CopyMeshWithGeom( "
3865          << theSourceMesh << ", "
3866          << theNewGeometry << ", "
3867          << "'" << theMeshName << "', "
3868          << theToCopyGroups << ", "
3869          << theToReuseHypotheses << ", "
3870          << theToCopyElements << " )";
3871
3872   SMESH_CATCH( SMESH::throwCorbaException );
3873
3874   return ok;
3875 }
3876
3877 //================================================================================
3878 /*!
3879  * \brief Get version of MED format being used.
3880  */
3881 //================================================================================
3882
3883 char* SMESH_Gen_i::GetMEDFileVersion()
3884 {
3885   MED::TInt majeur, mineur, release;
3886   majeur =  mineur = release = 0;
3887   MED::GetVersionRelease(majeur, mineur, release);
3888   std::ostringstream version;
3889   version << majeur << "." << mineur << "." << release;
3890   return CORBA::string_dup( version.str().c_str() );
3891 }
3892
3893 //================================================================================
3894 /*!
3895  *  SMESH_Gen_i::GetMEDVersion
3896  *
3897  *  Get MED version of the file by its name
3898  */
3899 //================================================================================
3900 char* SMESH_Gen_i::GetMEDVersion(const char* theFileName)
3901 {
3902   std::string version = MED::GetMEDVersion( theFileName );
3903   return CORBA::string_dup( version.c_str() );
3904 }
3905
3906 //================================================================================
3907 /*!
3908  *  SMESH_Gen_i::CheckCompatibility
3909  *
3910  *  Check compatibility of file with MED format being used, read only.
3911  */
3912 //================================================================================
3913 CORBA::Boolean SMESH_Gen_i::CheckCompatibility(const char* theFileName)
3914 {
3915   return MED::CheckCompatibility( theFileName );
3916 }
3917
3918 //================================================================================
3919 /*!
3920  *  SMESH_Gen_i::CheckWriteCompatibility
3921  *
3922  *  Check compatibility of file with MED format being used, for append on write.
3923  */
3924 //================================================================================
3925 CORBA::Boolean SMESH_Gen_i::CheckWriteCompatibility(const char* theFileName)
3926 {
3927   return MED::CheckCompatibility( theFileName, true );
3928 }
3929
3930 //================================================================================
3931 /*!
3932  *  SMESH_Gen_i::GetMeshNames
3933  *
3934  *  Get names of meshes defined in file with the specified name
3935  */
3936 //================================================================================
3937 SMESH::string_array* SMESH_Gen_i::GetMeshNames(const char* theFileName)
3938 {
3939   //MESSAGE("GetMeshNames " << theFileName);
3940   SMESH::string_array_var aResult = new SMESH::string_array();
3941   MED::PWrapper aMed = MED::CrWrapperR( theFileName );
3942   MED::TErr anErr;
3943   MED::TInt aNbMeshes = aMed->GetNbMeshes( &anErr );
3944   //MESSAGE("---" << aNbMeshes);
3945   if( anErr >= 0 ) {
3946     aResult->length( aNbMeshes );
3947     for( MED::TInt i = 0; i < aNbMeshes; i++ ) {
3948       MED::PMeshInfo aMeshInfo = aMed->GetPMeshInfo( i+1 );
3949       aResult[i] = CORBA::string_dup( aMeshInfo->GetName().c_str() );
3950     }
3951   }
3952   return aResult._retn();
3953 }
3954
3955 //=============================================================================
3956 /*!
3957  *  SMESH_Gen_i::Save
3958  *
3959  *  Save SMESH module's data
3960  */
3961 //=============================================================================
3962 SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent,
3963                                       const char*              theURL,
3964                                       bool                     isMultiFile )
3965 {
3966   if (!myStudyContext)
3967     UpdateStudy();
3968
3969   // Store study contents as a set of python commands
3970   SavePython();
3971
3972   SALOMEDS::Study_var aStudy = getStudyServant();
3973
3974   // Declare a byte stream
3975   SALOMEDS::TMPFile_var aStreamFile;
3976
3977   // Obtain a temporary dir
3978   TCollection_AsciiString tmpDir =
3979     ( isMultiFile ) ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
3980
3981   // Create a sequence of files processed
3982   SALOMEDS_Tool::ListOfFiles aFileSeq;
3983   aFileSeq.reserve( NUM_TMP_FILES );
3984
3985   TCollection_AsciiString aStudyName( "" );
3986   if ( isMultiFile )
3987     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( Kernel_Utils::encode(aStudy->URL()) ).c_str() );
3988
3989   // Set names of temporary files
3990   TCollection_AsciiString filename =
3991     aStudyName + TCollection_AsciiString( "_SMESH.hdf" );        // for SMESH data itself
3992   TCollection_AsciiString meshfile =
3993     aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );   // for mesh data to be stored in MED file
3994   aFileSeq.push_back(CORBA::string_dup( filename.ToCString() ));
3995   aFileSeq.push_back(CORBA::string_dup( meshfile.ToCString() ));
3996   filename = tmpDir + filename;
3997   meshfile = tmpDir + meshfile;
3998
3999   HDFfile*    aFile;
4000   HDFdataset* aDataset;
4001   HDFgroup*   aTopGroup;
4002   HDFgroup*   aGroup;
4003   HDFgroup*   aSubGroup;
4004   HDFgroup*   aSubSubGroup;
4005   hdf_size    aSize[ 1 ];
4006
4007
4008   //Remove the files if they exist: BugID: 11225
4009 #ifndef WIN32 /* unix functionality */
4010   TCollection_AsciiString cmd("rm -f \"");
4011 #else /* windows */
4012   TCollection_AsciiString cmd("del /F \"");
4013 #endif
4014
4015   cmd+=filename;
4016   cmd+="\" \"";
4017   cmd+=meshfile;
4018   cmd+="\"";
4019 #ifdef WIN32
4020   cmd+=" 2>NUL";
4021 #endif
4022   system(cmd.ToCString());
4023
4024   // MED writer to be used by storage process
4025   DriverMED_W_SMESHDS_Mesh myWriter;
4026   myWriter.SetFile( meshfile.ToCString() );
4027
4028   // IMP issue 20918
4029   // SetStoreName() to groups before storing hypotheses to let them refer to
4030   // groups using "store name", which is "Group <group_persistent_id>"
4031   {
4032     SALOMEDS::ChildIterator_wrap itBig = aStudy->NewChildIterator( theComponent );
4033     for ( ; itBig->More(); itBig->Next() ) {
4034       SALOMEDS::SObject_wrap gotBranch = itBig->Value();
4035       if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
4036         CORBA::Object_var anObject = SObjectToObject( gotBranch );
4037         if ( !CORBA::is_nil( anObject ) ) {
4038           SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
4039           if ( !myMesh->_is_nil() ) {
4040             myMesh->Load(); // load from study file if not yet done
4041             TPythonDump pd; // not to dump GetGroups()
4042             SMESH::ListOfGroups_var groups = myMesh->GetGroups();
4043             for ( CORBA::ULong i = 0; i < groups->length(); ++i )
4044             {
4045               SMESH_GroupBase_i* grImpl = SMESH::DownCast<SMESH_GroupBase_i*>( groups[i]);
4046               if ( grImpl )
4047               {
4048                 CORBA::String_var objStr = GetORB()->object_to_string( grImpl->_this() );
4049                 int anId = myStudyContext->findId( string( objStr.in() ) );
4050                 char grpName[ 30 ];
4051                 sprintf( grpName, "Group %d %d", anId, grImpl->GetLocalID() );
4052                 SMESHDS_GroupBase* aGrpBaseDS = grImpl->GetGroupDS();
4053                 aGrpBaseDS->SetStoreName( grpName );
4054               }
4055             }
4056           }
4057         }
4058       }
4059     }
4060   }
4061
4062   // Write data
4063   // ---> create HDF file
4064   aFile = new HDFfile( (char*) filename.ToCString() );
4065   aFile->CreateOnDisk();
4066
4067   // --> iterator for top-level objects
4068   SALOMEDS::ChildIterator_wrap itBig = aStudy->NewChildIterator( theComponent );
4069   for ( ; itBig->More(); itBig->Next() ) {
4070     SALOMEDS::SObject_wrap gotBranch = itBig->Value();
4071
4072     // --> hypotheses root branch (only one for the study)
4073     if ( gotBranch->Tag() == GetHypothesisRootTag() ) {
4074       // create hypotheses root HDF group
4075       aTopGroup = new HDFgroup( "Hypotheses", aFile );
4076       aTopGroup->CreateOnDisk();
4077
4078       // iterator for all hypotheses
4079       SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( gotBranch );
4080       for ( ; it->More(); it->Next() ) {
4081         SALOMEDS::SObject_wrap mySObject = it->Value();
4082         CORBA::Object_var anObject = SObjectToObject( mySObject );
4083         if ( !CORBA::is_nil( anObject ) ) {
4084           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
4085           if ( !myHyp->_is_nil() ) {
4086             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
4087             if ( myImpl ) {
4088               CORBA::String_var hn = myHyp->GetName(), ln = myHyp->GetLibName();
4089               std::string hypname = hn.in();
4090               std::string libname = ln.in();
4091               // BUG SWP13062
4092               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
4093               // WIN32 and ".so" for X-system) must be deleted
4094               int libname_len = libname.length();
4095 #ifdef WIN32
4096               if( libname_len > 4 )
4097                 libname.resize( libname_len - 4 );
4098 #else
4099               // PAL17753 (Regression: missing hypothesis in restored study)
4100               // "lib" also should be removed from the beginning
4101               //if( libname_len > 3 )
4102               //libname.resize( libname_len - 3 );
4103               if( libname_len > 6 )
4104                 libname = libname.substr( 3, libname_len - 3 - 3 );
4105 #endif
4106               CORBA::String_var  objStr = GetORB()->object_to_string( anObject );
4107               CORBA::String_var hypdata = myImpl->SaveTo();
4108               int                    id = myStudyContext->findId( string( objStr.in() ));
4109
4110               // for each hypothesis create HDF group basing on its id
4111               char hypGrpName[30];
4112               sprintf( hypGrpName, "Hypothesis %d", id );
4113               aGroup = new HDFgroup( hypGrpName, aTopGroup );
4114               aGroup->CreateOnDisk();
4115               // --> type name of hypothesis
4116               aSize[ 0 ] = hypname.length() + 1;
4117               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
4118               aDataset->CreateOnDisk();
4119               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
4120               aDataset->CloseOnDisk();
4121               // --> server plugin library name of hypothesis
4122               aSize[ 0 ] = libname.length() + 1;
4123               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
4124               aDataset->CreateOnDisk();
4125               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
4126               aDataset->CloseOnDisk();
4127               // --> persistent data of hypothesis
4128               aSize[ 0 ] = strlen( hypdata.in() ) + 1;
4129               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
4130               aDataset->CreateOnDisk();
4131               aDataset->WriteOnDisk( ( char* )( hypdata.in() ) );
4132               aDataset->CloseOnDisk();
4133               // close hypothesis HDF group
4134               aGroup->CloseOnDisk();
4135             }
4136           }
4137         }
4138       }
4139       // close hypotheses root HDF group
4140       aTopGroup->CloseOnDisk();
4141     }
4142     // --> algorithms root branch (only one for the study)
4143     else if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
4144       // create algorithms root HDF group
4145       aTopGroup = new HDFgroup( "Algorithms", aFile );
4146       aTopGroup->CreateOnDisk();
4147
4148       // iterator for all algorithms
4149       SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( gotBranch );
4150       for ( ; it->More(); it->Next() ) {
4151         SALOMEDS::SObject_wrap mySObject = it->Value();
4152         CORBA::Object_var anObject = SObjectToObject( mySObject );
4153         if ( !CORBA::is_nil( anObject ) ) {
4154           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
4155           if ( !myHyp->_is_nil() ) {
4156             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
4157             if ( myImpl ) {
4158               CORBA::String_var hn = myHyp->GetName(), ln = myHyp->GetLibName();
4159               std::string hypname = hn.in();
4160               std::string libname = ln.in();
4161               // BUG SWP13062
4162               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
4163               // WIN32 and ".so" for X-system) must be deleted
4164               int libname_len = libname.length();
4165 #ifdef WIN32
4166               if( libname_len > 4 )
4167                 libname.resize( libname_len - 4 );
4168 #else
4169               // PAL17753 (Regression: missing hypothesis in restored study)
4170               // "lib" also should be removed from the beginning
4171               //if( libname_len > 3 )
4172               //libname.resize( libname_len - 3 );
4173               if( libname_len > 6 )
4174                 libname = libname.substr( 3, libname_len - 3 - 3 );
4175 #endif
4176               CORBA::String_var  objStr = GetORB()->object_to_string( anObject );
4177               CORBA::String_var hypdata = myImpl->SaveTo();
4178               int                    id = myStudyContext->findId( string( objStr.in() ) );
4179
4180               // for each algorithm create HDF group basing on its id
4181               char hypGrpName[30];
4182               sprintf( hypGrpName, "Algorithm %d", id );
4183               aGroup = new HDFgroup( hypGrpName, aTopGroup );
4184               aGroup->CreateOnDisk();
4185               // --> type name of algorithm
4186               aSize[0] = hypname.length() + 1;
4187               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
4188               aDataset->CreateOnDisk();
4189               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
4190               aDataset->CloseOnDisk();
4191               // --> server plugin library name of hypothesis
4192               aSize[0] = libname.length() + 1;
4193               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
4194               aDataset->CreateOnDisk();
4195               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
4196               aDataset->CloseOnDisk();
4197               // --> persistent data of algorithm
4198               aSize[0] = strlen( hypdata.in() ) + 1;
4199               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
4200               aDataset->CreateOnDisk();
4201               aDataset->WriteOnDisk( ( char* )( hypdata.in() ));
4202               aDataset->CloseOnDisk();
4203               // close algorithm HDF group
4204               aGroup->CloseOnDisk();
4205             }
4206           }
4207         }
4208       }
4209       // close algorithms root HDF group
4210       aTopGroup->CloseOnDisk();
4211     }
4212     // --> mesh objects roots branches
4213     else if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
4214       CORBA::Object_var anObject = SObjectToObject( gotBranch );
4215       if ( !CORBA::is_nil( anObject ) ) {
4216         SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
4217         if ( !myMesh->_is_nil() ) {
4218           SMESH_Mesh_i* myImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myMesh ).in() );
4219           if ( myImpl ) {
4220             CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4221             int id = myStudyContext->findId( string( objStr.in() ) );
4222             ::SMESH_Mesh& myLocMesh = myImpl->GetImpl();
4223             SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
4224             bool hasShape = myLocMesh.HasShapeToMesh();
4225
4226             // for each mesh open the HDF group basing on its id
4227             char meshGrpName[ 30 ];
4228             sprintf( meshGrpName, "Mesh %d", id );
4229             aTopGroup = new HDFgroup( meshGrpName, aFile );
4230             aTopGroup->CreateOnDisk();
4231
4232             // --> put dataset to hdf file which is a flag that mesh has data
4233             string strHasData = "0";
4234             // check if the mesh is not empty
4235             if ( mySMESHDSMesh->NbNodes() > 0 ) {
4236               // write mesh data to med file
4237               myWriter.SetMesh( mySMESHDSMesh );
4238               myWriter.SetMeshId( id );
4239               strHasData = "1";
4240             }
4241             aSize[ 0 ] = strHasData.length() + 1;
4242             aDataset = new HDFdataset( "Has data", aTopGroup, HDF_STRING, aSize, 1 );
4243             aDataset->CreateOnDisk();
4244             aDataset->WriteOnDisk( ( char* )( strHasData.c_str() ) );
4245             aDataset->CloseOnDisk();
4246
4247             // ouv : NPAL12872
4248             // for each mesh open the HDF group basing on its auto color parameter
4249             char meshAutoColorName[ 30 ];
4250             sprintf( meshAutoColorName, "AutoColorMesh %d", id );
4251             int anAutoColor[1];
4252             anAutoColor[0] = myImpl->GetAutoColor();
4253             aSize[ 0 ] = 1;
4254             aDataset = new HDFdataset( meshAutoColorName, aTopGroup, HDF_INT32, aSize, 1 );
4255             aDataset->CreateOnDisk();
4256             aDataset->WriteOnDisk( anAutoColor );
4257             aDataset->CloseOnDisk();
4258
4259             // issue 0020693. Store _isModified flag
4260             int isModified = myLocMesh.GetIsModified();
4261             aSize[ 0 ] = 1;
4262             aDataset = new HDFdataset( "_isModified", aTopGroup, HDF_INT32, aSize, 1 );
4263             aDataset->CreateOnDisk();
4264             aDataset->WriteOnDisk( &isModified );
4265             aDataset->CloseOnDisk();
4266
4267             // issue 20918. Store Persistent Id of SMESHDS_Mesh
4268             int meshPersistentId = mySMESHDSMesh->GetPersistentId();
4269             aSize[ 0 ] = 1;
4270             aDataset = new HDFdataset( "meshPersistentId", aTopGroup, HDF_INT32, aSize, 1 );
4271             aDataset->CreateOnDisk();
4272             aDataset->WriteOnDisk( &meshPersistentId );
4273             aDataset->CloseOnDisk();
4274
4275             // write reference on a shape if exists
4276             SALOMEDS::SObject_wrap myRef;
4277             bool shapeRefFound = false;
4278             bool found = gotBranch->FindSubObject( GetRefOnShapeTag(), myRef.inout() );
4279             if ( found ) {
4280               SALOMEDS::SObject_wrap myShape;
4281               bool ok = myRef->ReferencedObject( myShape.inout() );
4282               if ( ok ) {
4283                 CORBA::Object_var shapeObj = myShape->GetObject();
4284                 shapeRefFound = (! CORBA::is_nil( shapeObj ));
4285                 CORBA::String_var myRefOnObject = myShape->GetID();
4286                 if ( shapeRefFound && myRefOnObject.in()[0] ) {
4287                   aSize[ 0 ] = strlen( myRefOnObject.in() ) + 1;
4288                   aDataset = new HDFdataset( "Ref on shape", aTopGroup, HDF_STRING, aSize, 1 );
4289                   aDataset->CreateOnDisk();
4290                   aDataset->WriteOnDisk( ( char* )( myRefOnObject.in() ) );
4291                   aDataset->CloseOnDisk();
4292                 }
4293               }
4294             }
4295
4296             // Store file info
4297             std::string info = myImpl->FileInfoToString();
4298             if ( !info.empty() )
4299             {
4300               aSize[ 0 ] = info.size();
4301               aDataset = new HDFdataset( "file info", aTopGroup, HDF_STRING, aSize, 1 );
4302               aDataset->CreateOnDisk();
4303               aDataset->WriteOnDisk( (char*) info.data() );
4304               aDataset->CloseOnDisk();
4305             }
4306
4307             // write applied hypotheses if exist
4308             SALOMEDS::SObject_wrap myHypBranch;
4309             found = gotBranch->FindSubObject( GetRefOnAppliedHypothesisTag(), myHypBranch.inout() );
4310             if ( found && !shapeRefFound && hasShape ) { // remove applied hyps
4311               aStudy->NewBuilder()->RemoveObjectWithChildren( myHypBranch );
4312             }
4313             if ( found && (shapeRefFound || !hasShape) ) {
4314               aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
4315               aGroup->CreateOnDisk();
4316
4317               SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( myHypBranch );
4318               int hypNb = 0;
4319               for ( ; it->More(); it->Next() ) {
4320                 SALOMEDS::SObject_wrap mySObject = it->Value();
4321                 SALOMEDS::SObject_wrap myRefOnHyp;
4322                 bool ok = mySObject->ReferencedObject( myRefOnHyp.inout() );
4323                 if ( ok ) {
4324                   // san - it is impossible to recover applied hypotheses
4325                   //       using their entries within Load() method,
4326                   // for there are no AttributeIORs in the study when Load() is working.
4327                   // Hence, it is better to store persistent IDs of hypotheses as references to them
4328
4329                   //string myRefOnObject = myRefOnHyp->GetID();
4330                   CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
4331                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4332                   int id = myStudyContext->findId( string( objStr.in() ) );
4333                   //if ( myRefOnObject.length() > 0 ) {
4334                   //aSize[ 0 ] = myRefOnObject.length() + 1;
4335                   char hypName[ 30 ], hypId[ 30 ];
4336                   sprintf( hypName, "Hyp %d", ++hypNb );
4337                   sprintf( hypId, "%d", id );
4338                   aSize[ 0 ] = strlen( hypId ) + 1;
4339                   aDataset = new HDFdataset( hypName, aGroup, HDF_STRING, aSize, 1 );
4340                   aDataset->CreateOnDisk();
4341                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4342                   aDataset->WriteOnDisk( hypId );
4343                   aDataset->CloseOnDisk();
4344                   //}
4345                 }
4346               }
4347               aGroup->CloseOnDisk();
4348             }
4349
4350             // write applied algorithms if exist
4351             SALOMEDS::SObject_wrap myAlgoBranch;
4352             found = gotBranch->FindSubObject( GetRefOnAppliedAlgorithmsTag(),
4353                                               myAlgoBranch.inout() );
4354             if ( found && !shapeRefFound && hasShape) { // remove applied algos
4355               aStudy->NewBuilder()->RemoveObjectWithChildren( myAlgoBranch );
4356             }
4357             if ( found && (shapeRefFound || !hasShape)) {
4358               aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
4359               aGroup->CreateOnDisk();
4360
4361               SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( myAlgoBranch );
4362               int algoNb = 0;
4363               for ( ; it->More(); it->Next() ) {
4364                 SALOMEDS::SObject_wrap mySObject = it->Value();
4365                 SALOMEDS::SObject_wrap myRefOnAlgo;
4366                 bool ok = mySObject->ReferencedObject( myRefOnAlgo.inout() );
4367                 if ( ok ) {
4368                   // san - it is impossible to recover applied algorithms
4369                   //       using their entries within Load() method,
4370                   // for there are no AttributeIORs in the study when Load() is working.
4371                   // Hence, it is better to store persistent IDs of algorithms as references to them
4372
4373                   //string myRefOnObject = myRefOnAlgo->GetID();
4374                   CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
4375                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4376                   int id = myStudyContext->findId( string( objStr.in() ) );
4377                   //if ( myRefOnObject.length() > 0 ) {
4378                   //aSize[ 0 ] = myRefOnObject.length() + 1;
4379                   char algoName[ 30 ], algoId[ 30 ];
4380                   sprintf( algoName, "Algo %d", ++algoNb );
4381                   sprintf( algoId, "%d", id );
4382                   aSize[ 0 ] = strlen( algoId ) + 1;
4383                   aDataset = new HDFdataset( algoName, aGroup, HDF_STRING, aSize, 1 );
4384                   aDataset->CreateOnDisk();
4385                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4386                   aDataset->WriteOnDisk( algoId );
4387                   aDataset->CloseOnDisk();
4388                   //}
4389                 }
4390               }
4391               aGroup->CloseOnDisk();
4392             }
4393
4394             // --> submesh objects sub-branches
4395
4396             for ( int i = GetSubMeshOnVertexTag(); i <= GetSubMeshOnCompoundTag(); i++ ) {
4397               SALOMEDS::SObject_wrap mySubmeshBranch;
4398               found = gotBranch->FindSubObject( i, mySubmeshBranch.inout() );
4399
4400               if ( found ) // check if there is shape reference in submeshes
4401               {
4402                 bool hasShapeRef = false;
4403                 SALOMEDS::ChildIterator_wrap itSM =
4404                   aStudy->NewChildIterator( mySubmeshBranch );
4405                 for ( ; itSM->More(); itSM->Next() ) {
4406                   SALOMEDS::SObject_wrap mySubRef, myShape, mySObject = itSM->Value();
4407                   if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ))
4408                     mySubRef->ReferencedObject( myShape.inout() );
4409                   if ( !CORBA::is_nil( myShape ) && !CORBA::is_nil( myShape->GetObject() ))
4410                     hasShapeRef = true;
4411                   else
4412                   { // remove one submesh
4413                     if ( shapeRefFound )
4414                     { // unassign hypothesis
4415                       SMESH::SMESH_subMesh_var mySubMesh =
4416                         SMESH::SMESH_subMesh::_narrow( SObjectToObject( mySObject ));
4417                       if ( !mySubMesh->_is_nil() ) {
4418                         int shapeID = mySubMesh->GetId();
4419                         TopoDS_Shape S = mySMESHDSMesh->IndexToShape( shapeID );
4420                         const list<const SMESHDS_Hypothesis*>& hypList =
4421                           mySMESHDSMesh->GetHypothesis( S );
4422                         list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
4423                         while ( hyp != hypList.end() ) {
4424                           int hypID = (*hyp++)->GetID(); // goto next hyp here because
4425                           myLocMesh.RemoveHypothesis( S, hypID ); // hypList changes here
4426                         }
4427                       }
4428                     }
4429                     aStudy->NewBuilder()->RemoveObjectWithChildren( mySObject );
4430                   }
4431                 } // loop on submeshes of a type
4432                 if ( !shapeRefFound || !hasShapeRef ) { // remove the whole submeshes branch
4433                   aStudy->NewBuilder()->RemoveObjectWithChildren( mySubmeshBranch );
4434                   found = false;
4435                 }
4436               }  // end check if there is shape reference in submeshes
4437               if ( found ) {
4438                 char name_meshgroup[ 30 ];
4439                 if ( i == GetSubMeshOnVertexTag() )
4440                   strcpy( name_meshgroup, "SubMeshes On Vertex" );
4441                 else if ( i == GetSubMeshOnEdgeTag() )
4442                   strcpy( name_meshgroup, "SubMeshes On Edge" );
4443                 else if ( i == GetSubMeshOnWireTag() )
4444                   strcpy( name_meshgroup, "SubMeshes On Wire" );
4445                 else if ( i == GetSubMeshOnFaceTag() )
4446                   strcpy( name_meshgroup, "SubMeshes On Face" );
4447                 else if ( i == GetSubMeshOnShellTag() )
4448                   strcpy( name_meshgroup, "SubMeshes On Shell" );
4449                 else if ( i == GetSubMeshOnSolidTag() )
4450                   strcpy( name_meshgroup, "SubMeshes On Solid" );
4451                 else if ( i == GetSubMeshOnCompoundTag() )
4452                   strcpy( name_meshgroup, "SubMeshes On Compound" );
4453
4454                 // for each type of submeshes create container HDF group
4455                 aGroup = new HDFgroup( name_meshgroup, aTopGroup );
4456                 aGroup->CreateOnDisk();
4457
4458                 // iterator for all submeshes of given type
4459                 SALOMEDS::ChildIterator_wrap itSM = aStudy->NewChildIterator( mySubmeshBranch );
4460                 for ( ; itSM->More(); itSM->Next() ) {
4461                   SALOMEDS::SObject_wrap mySObject = itSM->Value();
4462                   CORBA::Object_var anSubObject = SObjectToObject( mySObject );
4463                   if ( !CORBA::is_nil( anSubObject ))
4464                   {
4465                     SMESH::SMESH_subMesh_var mySubMesh = SMESH::SMESH_subMesh::_narrow( anSubObject ) ;
4466                     CORBA::String_var objStr = GetORB()->object_to_string( anSubObject );
4467                     int subid = myStudyContext->findId( string( objStr.in() ) );
4468
4469                     // for each mesh open the HDF group basing on its id
4470                     char submeshGrpName[ 30 ];
4471                     sprintf( submeshGrpName, "SubMesh %d", subid );
4472                     aSubGroup = new HDFgroup( submeshGrpName, aGroup );
4473                     aSubGroup->CreateOnDisk();
4474
4475                     // write reference on a shape, already checked if it exists
4476                     SALOMEDS::SObject_wrap mySubRef, myShape;
4477                     if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ))
4478                       mySubRef->ReferencedObject( myShape.inout() );
4479                     string myRefOnObject = myShape->GetID();
4480                     if ( myRefOnObject.length() > 0 ) {
4481                       aSize[ 0 ] = myRefOnObject.length() + 1;
4482                       aDataset = new HDFdataset( "Ref on shape", aSubGroup, HDF_STRING, aSize, 1 );
4483                       aDataset->CreateOnDisk();
4484                       aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4485                       aDataset->CloseOnDisk();
4486                     }
4487
4488                     // write applied hypotheses if exist
4489                     SALOMEDS::SObject_wrap mySubHypBranch;
4490                     found = mySObject->FindSubObject( GetRefOnAppliedHypothesisTag(),
4491                                                       mySubHypBranch.inout() );
4492                     if ( found ) {
4493                       aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
4494                       aSubSubGroup->CreateOnDisk();
4495
4496                       SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( mySubHypBranch );
4497                       int hypNb = 0;
4498                       for ( ; it->More(); it->Next() ) {
4499                         SALOMEDS::SObject_wrap mySubSObject = it->Value();
4500                         SALOMEDS::SObject_wrap myRefOnHyp;
4501                         bool ok = mySubSObject->ReferencedObject( myRefOnHyp.inout() );
4502                         if ( ok ) {
4503                           //string myRefOnObject = myRefOnHyp->GetID();
4504                           CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
4505                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4506                           int id = myStudyContext->findId( string( objStr.in() ) );
4507                           //if ( myRefOnObject.length() > 0 ) {
4508                           //aSize[ 0 ] = myRefOnObject.length() + 1;
4509                           char hypName[ 30 ], hypId[ 30 ];
4510                           sprintf( hypName, "Hyp %d", ++hypNb );
4511                           sprintf( hypId, "%d", id );
4512                           aSize[ 0 ] = strlen( hypId ) + 1;
4513                           aDataset = new HDFdataset( hypName, aSubSubGroup, HDF_STRING, aSize, 1 );
4514                           aDataset->CreateOnDisk();
4515                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4516                           aDataset->WriteOnDisk( hypId );
4517                           aDataset->CloseOnDisk();
4518                           //}
4519                         }
4520                       }
4521                       aSubSubGroup->CloseOnDisk();
4522                     }
4523
4524                     // write applied algorithms if exist
4525                     SALOMEDS::SObject_wrap mySubAlgoBranch;
4526                     found = mySObject->FindSubObject( GetRefOnAppliedAlgorithmsTag(),
4527                                                       mySubAlgoBranch.inout() );
4528                     if ( found ) {
4529                       aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
4530                       aSubSubGroup->CreateOnDisk();
4531
4532                       SALOMEDS::ChildIterator_wrap it =
4533                         aStudy->NewChildIterator( mySubAlgoBranch );
4534                       int algoNb = 0;
4535                       for ( ; it->More(); it->Next() ) {
4536                         SALOMEDS::SObject_wrap mySubSObject = it->Value();
4537                         SALOMEDS::SObject_wrap myRefOnAlgo;
4538                         bool ok = mySubSObject->ReferencedObject( myRefOnAlgo.inout() );
4539                         if ( ok ) {
4540                           //string myRefOnObject = myRefOnAlgo->GetID();
4541                           CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
4542                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
4543                           int id = myStudyContext->findId( string( objStr.in() ) );
4544                           //if ( myRefOnObject.length() > 0 ) {
4545                           //aSize[ 0 ] = myRefOnObject.length() + 1;
4546                           char algoName[ 30 ], algoId[ 30 ];
4547                           sprintf( algoName, "Algo %d", ++algoNb );
4548                           sprintf( algoId, "%d", id );
4549                           aSize[ 0 ] = strlen( algoId ) + 1;
4550                           aDataset = new HDFdataset( algoName, aSubSubGroup, HDF_STRING, aSize, 1 );
4551                           aDataset->CreateOnDisk();
4552                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
4553                           aDataset->WriteOnDisk( algoId );
4554                           aDataset->CloseOnDisk();
4555                           //}
4556                         }
4557                       }
4558                       aSubSubGroup->CloseOnDisk();
4559                     }
4560                     // close submesh HDF group
4561                     aSubGroup->CloseOnDisk();
4562                   }
4563                 }
4564                 // close container of submeshes by type HDF group
4565                 aGroup->CloseOnDisk();
4566               }
4567             }
4568             // All sub-meshes will be stored in MED file
4569             // .. will NOT (PAL 12992)
4570             //if ( shapeRefFound )
4571             //myWriter.AddAllSubMeshes();
4572
4573             // store submesh order if any
4574             const TListOfListOfInt& theOrderIds = myLocMesh.GetMeshOrder();
4575             if ( theOrderIds.size() ) {
4576               char order_list[ 30 ];
4577               strcpy( order_list, "Mesh Order" );
4578               // count number of submesh ids
4579               int nbIDs = 0;
4580               TListOfListOfInt::const_iterator idIt = theOrderIds.begin();
4581               for ( ; idIt != theOrderIds.end(); idIt++ )
4582                 nbIDs += (*idIt).size();
4583               // number of values = number of IDs +
4584               //                    number of lists (for separators) - 1
4585               int* smIDs = new int [ nbIDs + theOrderIds.size() - 1 ];
4586               idIt = theOrderIds.begin();
4587               for ( int i = 0; idIt != theOrderIds.end(); idIt++ ) {
4588                 const TListOfInt& idList = *idIt;
4589                 if (idIt != theOrderIds.begin()) // not first list
4590                   smIDs[ i++ ] = -1/* *idList.size()*/; // separator between lists
4591                 // dump submesh ids from current list
4592                 TListOfInt::const_iterator id_smId = idList.begin();
4593                 for( ; id_smId != idList.end(); id_smId++ )
4594                   smIDs[ i++ ] = *id_smId;
4595               }
4596               // write HDF group
4597               aSize[ 0 ] = nbIDs + theOrderIds.size() - 1;
4598
4599               aDataset = new HDFdataset( order_list, aTopGroup, HDF_INT32, aSize, 1 );
4600               aDataset->CreateOnDisk();
4601               aDataset->WriteOnDisk( smIDs );
4602               aDataset->CloseOnDisk();
4603               //
4604               delete[] smIDs;
4605             }
4606
4607             // groups root sub-branch
4608             SALOMEDS::SObject_wrap myGroupsBranch;
4609             for ( int i = GetNodeGroupsTag(); i <= GetBallElementsGroupsTag(); i++ ) {
4610               found = gotBranch->FindSubObject( i, myGroupsBranch.inout() );
4611               if ( found ) {
4612                 char name_group[ 30 ];
4613                 if ( i == GetNodeGroupsTag() )
4614                   strcpy( name_group, "Groups of Nodes" );
4615                 else if ( i == GetEdgeGroupsTag() )
4616                   strcpy( name_group, "Groups of Edges" );
4617                 else if ( i == GetFaceGroupsTag() )
4618                   strcpy( name_group, "Groups of Faces" );
4619                 else if ( i == GetVolumeGroupsTag() )
4620                   strcpy( name_group, "Groups of Volumes" );
4621                 else if ( i == Get0DElementsGroupsTag() )
4622                   strcpy( name_group, "Groups of 0D Elements" );
4623                 else if ( i == GetBallElementsGroupsTag() )
4624                   strcpy( name_group, "Groups of Balls" );
4625
4626                 aGroup = new HDFgroup( name_group, aTopGroup );
4627                 aGroup->CreateOnDisk();
4628
4629                 SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( myGroupsBranch );
4630                 for ( ; it->More(); it->Next() ) {
4631                   SALOMEDS::SObject_wrap mySObject = it->Value();
4632                   CORBA::Object_var aSubObject = SObjectToObject( mySObject );
4633                   if ( !CORBA::is_nil( aSubObject ) ) {
4634                     SMESH_GroupBase_i* myGroupImpl =
4635                       dynamic_cast<SMESH_GroupBase_i*>( GetServant( aSubObject ).in() );
4636                     if ( !myGroupImpl )
4637                       continue;
4638                     SMESHDS_GroupBase* aGrpBaseDS = myGroupImpl->GetGroupDS();
4639                     if ( !aGrpBaseDS )
4640                       continue;
4641
4642                     CORBA::String_var objStr = GetORB()->object_to_string( aSubObject );
4643                     int anId = myStudyContext->findId( string( objStr.in() ) );
4644
4645                     // For each group, create a dataset named "Group <group_persistent_id>"
4646                     // and store the group's user name into it
4647                     const char*         grpName = aGrpBaseDS->GetStoreName();
4648                     CORBA::String_var aUserName = myGroupImpl->GetName();
4649                     aSize[ 0 ] = strlen( aUserName ) + 1;
4650
4651                     aDataset = new HDFdataset( grpName, aGroup, HDF_STRING, aSize, 1 );
4652                     aDataset->CreateOnDisk();
4653                     aDataset->WriteOnDisk( aUserName );
4654                     aDataset->CloseOnDisk();
4655
4656                     // ouv : NPAL12872
4657                     // For each group, create a dataset named "Group <group_persistent_id> Color"
4658                     // and store the group's color into it
4659                     char grpColorName[ 30 ];
4660                     sprintf( grpColorName, "ColorGroup %d", anId );
4661                     SALOMEDS::Color aColor = myGroupImpl->GetColor();
4662                     double anRGB[3];
4663                     anRGB[ 0 ] = aColor.R;
4664                     anRGB[ 1 ] = aColor.G;
4665                     anRGB[ 2 ] = aColor.B;
4666                     aSize[ 0 ] = 3;
4667                     aDataset = new HDFdataset( grpColorName, aGroup, HDF_FLOAT64, aSize, 1 );
4668                     aDataset->CreateOnDisk();
4669                     aDataset->WriteOnDisk( anRGB );
4670                     aDataset->CloseOnDisk();
4671
4672                     // Pass SMESHDS_Group to MED writer
4673                     SMESHDS_Group* aGrpDS = dynamic_cast<SMESHDS_Group*>( aGrpBaseDS );
4674                     if ( aGrpDS )
4675                       myWriter.AddGroup( aGrpDS );
4676
4677                     // write reference on a shape if exists
4678                     SMESHDS_GroupOnGeom* aGeomGrp =
4679                       dynamic_cast<SMESHDS_GroupOnGeom*>( aGrpBaseDS );
4680                     if ( aGeomGrp ) {
4681                       SALOMEDS::SObject_wrap mySubRef, myShape;
4682                       if (mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef.inout() ) &&
4683                           mySubRef->ReferencedObject( myShape.inout() ) &&
4684                           !CORBA::is_nil( myShape->GetObject() ))
4685                       {
4686                         CORBA::String_var myRefOnObject = myShape->GetID();
4687                         if ( myRefOnObject.in()[0] ) {
4688                           char aRefName[ 30 ];
4689                           sprintf( aRefName, "Ref on shape %d", anId);
4690                           aSize[ 0 ] = strlen( myRefOnObject.in() ) + 1;
4691                           aDataset = new HDFdataset(aRefName, aGroup, HDF_STRING, aSize, 1);
4692                           aDataset->CreateOnDisk();
4693                           aDataset->WriteOnDisk( ( char* )( myRefOnObject.in() ));
4694                           aDataset->CloseOnDisk();
4695                         }
4696                       }
4697                       else // shape ref is invalid:
4698                       {
4699                         // save a group on geometry as ordinary group
4700                         myWriter.AddGroup( aGeomGrp );
4701                       }
4702                     }
4703                     else if ( SMESH_GroupOnFilter_i* aFilterGrp_i =
4704                               dynamic_cast<SMESH_GroupOnFilter_i*>( myGroupImpl ))
4705                     {
4706                       std::string str = aFilterGrp_i->FilterToString();
4707                       std::string hdfGrpName = "Filter " + SMESH_Comment(anId);
4708                       aSize[ 0 ] = str.length() + 1;
4709                       aDataset = new HDFdataset( hdfGrpName.c_str(), aGroup, HDF_STRING, aSize, 1);
4710                       aDataset->CreateOnDisk();
4711                       aDataset->WriteOnDisk( ( char* )( str.c_str() ) );
4712                       aDataset->CloseOnDisk();
4713                     }
4714                   }
4715                 }
4716                 aGroup->CloseOnDisk();
4717               }
4718             } // loop on groups
4719
4720             if ( strcmp( strHasData.c_str(), "1" ) == 0 )
4721             {
4722               // Flush current mesh information into MED file
4723               myWriter.Perform();
4724
4725               // save info on nb of elements
4726               SMESH_PreMeshInfo::SaveToFile( myImpl, id, aFile );
4727
4728               // maybe a shape was deleted in the study
4729               if ( !shapeRefFound && !mySMESHDSMesh->ShapeToMesh().IsNull() && hasShape) {
4730                 TopoDS_Shape nullShape;
4731                 myLocMesh.ShapeToMesh( nullShape ); // remove shape referring data
4732               }
4733
4734               SMESHDS_SubMeshIteratorPtr smIt = mySMESHDSMesh->SubMeshes();
4735               if ( smIt->more() )
4736               {
4737                 // Store submeshes
4738                 // ----------------
4739                 aGroup = new HDFgroup( "Submeshes", aTopGroup );
4740                 aGroup->CreateOnDisk();
4741
4742                 // each element belongs to one or none submesh,
4743                 // so for each node/element, we store a submesh ID
4744
4745                 // Store submesh IDs
4746                 for ( int isNode = 0; isNode < 2; ++isNode )
4747                 {
4748                   SMDS_ElemIteratorPtr eIt =
4749                     mySMESHDSMesh->elementsIterator( isNode ? SMDSAbs_Node : SMDSAbs_All );
4750                   int nbElems = isNode ? mySMESHDSMesh->NbNodes() : mySMESHDSMesh->GetMeshInfo().NbElements();
4751                   if ( nbElems < 1 )
4752                     continue;
4753                   std::vector<int> smIDs; smIDs.reserve( nbElems );
4754                   while ( eIt->more() )
4755                     if ( const SMDS_MeshElement* e = eIt->next())
4756                       smIDs.push_back( e->getshapeId() );
4757                   // write HDF group
4758                   aSize[ 0 ] = nbElems;
4759                   string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
4760                   aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
4761                   aDataset->CreateOnDisk();
4762                   aDataset->WriteOnDisk( & smIDs[0] );
4763                   aDataset->CloseOnDisk();
4764                 }
4765
4766                 aGroup->CloseOnDisk();
4767
4768                 // Store node positions on sub-shapes (SMDS_Position):
4769                 // ----------------------------------------------------
4770
4771                 aGroup = new HDFgroup( "Node Positions", aTopGroup );
4772                 aGroup->CreateOnDisk();
4773
4774                 // in aGroup, create 5 datasets to contain:
4775                 // "Nodes on Edges" - ID of node on edge
4776                 // "Edge positions" - U parameter on node on edge
4777                 // "Nodes on Faces" - ID of node on face
4778                 // "Face U positions" - U parameter of node on face
4779                 // "Face V positions" - V parameter of node on face
4780
4781                 // Find out nb of nodes on edges and faces
4782                 // Collect corresponding sub-meshes
4783                 int nbEdgeNodes = 0, nbFaceNodes = 0;
4784                 list<SMESHDS_SubMesh*> aEdgeSM, aFaceSM;
4785                 // loop on SMESHDS_SubMesh'es
4786                 while ( smIt->more() )
4787                 {
4788                   SMESHDS_SubMesh* aSubMesh = const_cast< SMESHDS_SubMesh* >( smIt->next() );
4789                   if ( aSubMesh->IsComplexSubmesh() )
4790                     continue; // submesh containing other submeshs
4791                   int nbNodes = aSubMesh->NbNodes();
4792                   if ( nbNodes == 0 ) continue;
4793
4794                   int aShapeID = aSubMesh->GetID();
4795                   if ( aShapeID < 1 || aShapeID > mySMESHDSMesh->MaxShapeIndex() )
4796                     continue;
4797                   int aShapeType = mySMESHDSMesh->IndexToShape( aShapeID ).ShapeType();
4798                   // write only SMDS_FacePosition and SMDS_EdgePosition
4799                   switch ( aShapeType ) {
4800                   case TopAbs_FACE:
4801                     nbFaceNodes += nbNodes;
4802                     aFaceSM.push_back( aSubMesh );
4803                     break;
4804                   case TopAbs_EDGE:
4805                     nbEdgeNodes += nbNodes;
4806                     aEdgeSM.push_back( aSubMesh );
4807                     break;
4808                   default:
4809                     continue;
4810                   }
4811                 }
4812                 // Treat positions on edges or faces
4813                 for ( int onFace = 0; onFace < 2; onFace++ )
4814                 {
4815                   // Create arrays to store in datasets
4816                   int iNode = 0, nbNodes = ( onFace ? nbFaceNodes : nbEdgeNodes );
4817                   if (!nbNodes) continue;
4818                   int* aNodeIDs = new int [ nbNodes ];
4819                   double* aUPos = new double [ nbNodes ];
4820                   double* aVPos = ( onFace ? new double[ nbNodes ] : 0 );
4821
4822                   // Fill arrays
4823                   // loop on sub-meshes
4824                   list<SMESHDS_SubMesh*> * pListSM = ( onFace ? &aFaceSM : &aEdgeSM );
4825                   list<SMESHDS_SubMesh*>::iterator itSM = pListSM->begin();
4826                   for ( ; itSM != pListSM->end(); itSM++ )
4827                   {
4828                     SMESHDS_SubMesh* aSubMesh = (*itSM);
4829
4830                     SMDS_NodeIteratorPtr itNode = aSubMesh->GetNodes();
4831                     // loop on nodes in aSubMesh
4832                     while ( itNode->more() )
4833                     {
4834                       //node ID
4835                       const SMDS_MeshNode* node = itNode->next();
4836                       aNodeIDs [ iNode ] = node->GetID();
4837
4838                       // Position
4839                       const SMDS_PositionPtr pos = node->GetPosition();
4840                       if ( onFace ) { // on FACE
4841                         SMDS_FacePositionPtr fPos = pos;
4842                         if ( fPos ) {
4843                           aUPos[ iNode ] = fPos->GetUParameter();
4844                           aVPos[ iNode ] = fPos->GetVParameter();
4845                           iNode++;
4846                         }
4847                         else
4848                           nbNodes--;
4849                       }
4850                       else { // on EDGE
4851                         SMDS_EdgePositionPtr ePos = pos;
4852                         if ( ePos ) {
4853                           aUPos[ iNode ] = ePos->GetUParameter();
4854                           iNode++;
4855                         }
4856                         else
4857                           nbNodes--;
4858                       }
4859                     } // loop on nodes in aSubMesh
4860                   } // loop on sub-meshes
4861
4862                   // Write datasets
4863                   if ( nbNodes )
4864                   {
4865                     aSize[ 0 ] = nbNodes;
4866                     // IDS
4867                     string aDSName( onFace ? "Nodes on Faces" : "Nodes on Edges");
4868                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
4869                     aDataset->CreateOnDisk();
4870                     aDataset->WriteOnDisk( aNodeIDs );
4871                     aDataset->CloseOnDisk();
4872
4873                     // U Positions
4874                     aDSName = ( onFace ? "Face U positions" : "Edge positions");
4875                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_FLOAT64, aSize, 1);
4876                     aDataset->CreateOnDisk();
4877                     aDataset->WriteOnDisk( aUPos );
4878                     aDataset->CloseOnDisk();
4879                     // V Positions
4880                     if ( onFace ) {
4881                       aDataset = new HDFdataset( "Face V positions", aGroup, HDF_FLOAT64, aSize, 1);
4882                       aDataset->CreateOnDisk();
4883                       aDataset->WriteOnDisk( aVPos );
4884                       aDataset->CloseOnDisk();
4885                     }
4886                   }
4887                   delete [] aNodeIDs;
4888                   delete [] aUPos;
4889                   if ( aVPos ) delete [] aVPos;
4890
4891                 } // treat positions on edges or faces
4892
4893                 // close "Node Positions" group
4894                 aGroup->CloseOnDisk();
4895
4896               } // if ( there are submeshes in SMESHDS_Mesh )
4897             } // if ( hasData )
4898
4899             // close mesh HDF group
4900             aTopGroup->CloseOnDisk();
4901           }
4902         }
4903       }
4904     }
4905   }
4906
4907   // close HDF file
4908   aFile->CloseOnDisk();
4909   delete aFile;
4910
4911   // Convert temporary files to stream
4912   aStreamFile = SALOMEDS_Tool::PutFilesToStream( tmpDir.ToCString(), aFileSeq, isMultiFile );
4913
4914   // Remove temporary files and directory
4915   if ( !isMultiFile )
4916     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq, true );
4917
4918   return aStreamFile._retn();
4919 }
4920
4921 //=============================================================================
4922 /*!
4923  *  SMESH_Gen_i::SaveASCII
4924  *
4925  *  Save SMESH module's data in ASCII format
4926  */
4927 //=============================================================================
4928
4929 SALOMEDS::TMPFile* SMESH_Gen_i::SaveASCII( SALOMEDS::SComponent_ptr theComponent,
4930                                            const char*              theURL,
4931                                            bool                     isMultiFile ) {
4932   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
4933   SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
4934   return aStreamFile._retn();
4935
4936   //after usual saving needs to encipher binary to text string
4937   //Any binary symbol will be represent as "|xx" () hexadecimal format number
4938   int size = aStreamFile.in().length();
4939   _CORBA_Octet* buffer = new _CORBA_Octet[size*3+1];
4940   for ( int i = 0; i < size; i++ )
4941     sprintf( (char*)&(buffer[i*3]), "|%02x", aStreamFile[i] );
4942
4943   buffer[size * 3] = '\0';
4944
4945   SALOMEDS::TMPFile_var anAsciiStreamFile = new SALOMEDS::TMPFile(size*3, size*3, buffer, 1);
4946
4947   return anAsciiStreamFile._retn();
4948 }
4949
4950 //=============================================================================
4951 /*!
4952  *  SMESH_Gen_i::loadGeomData
4953  *
4954  *  Load GEOM module data
4955  */
4956 //=============================================================================
4957
4958 void SMESH_Gen_i::loadGeomData( SALOMEDS::SComponent_ptr theCompRoot )
4959 {
4960   if ( theCompRoot->_is_nil() )
4961     return;
4962
4963   SALOMEDS::StudyBuilder_var aStudyBuilder = getStudyServant()->NewBuilder();
4964   aStudyBuilder->LoadWith( theCompRoot, GetGeomEngine() );
4965 }
4966
4967 //=============================================================================
4968 /*!
4969  *  SMESH_Gen_i::Load
4970  *
4971  *  Load SMESH module's data
4972  */
4973 //=============================================================================
4974
4975 bool SMESH_Gen_i::Load( SALOMEDS::SComponent_ptr theComponent,
4976                         const SALOMEDS::TMPFile& theStream,
4977                         const char*              theURL,
4978                         bool                     isMultiFile )
4979 {
4980   //if (!myStudyContext)
4981     UpdateStudy();
4982   SALOMEDS::Study_var aStudy = getStudyServant();
4983   /*  if( !theComponent->_is_nil() )
4984       {
4985       if( !aStudy->FindComponent( "GEOM" )->_is_nil() )
4986       loadGeomData( aStudy->FindComponent( "GEOM" ) );
4987       }*/
4988
4989   // Get temporary files location
4990   TCollection_AsciiString tmpDir =
4991     ( char* )( isMultiFile ? theURL : SALOMEDS_Tool::GetTmpDir().c_str() );
4992
4993   // Convert the stream into sequence of files to process
4994   SALOMEDS_Tool::ListOfFiles aFileSeq = SALOMEDS_Tool::PutStreamToFiles( theStream,
4995                                                                          tmpDir.ToCString(),
4996                                                                          isMultiFile );
4997   TCollection_AsciiString aStudyName( "" );
4998   if ( isMultiFile ) {
4999     CORBA::WString_var url = aStudy->URL();
5000     aStudyName = (char*)SALOMEDS_Tool::GetNameFromPath( Kernel_Utils::encode(url.in()) ).c_str();
5001   }
5002   // Set names of temporary files
5003   TCollection_AsciiString filename = tmpDir + aStudyName + "_SMESH.hdf";
5004   TCollection_AsciiString meshfile = tmpDir + aStudyName + "_SMESH_Mesh.med";
5005
5006   int size;
5007   HDFfile*    aFile;
5008   HDFdataset* aDataset;
5009   HDFgroup*   aTopGroup;
5010   HDFgroup*   aGroup;
5011   HDFgroup*   aSubGroup;
5012   HDFgroup*   aSubSubGroup;
5013
5014   // Read data
5015   // ---> open HDF file
5016   aFile = new HDFfile( (char*) filename.ToCString() );
5017   try {
5018     aFile->OpenOnDisk( HDF_RDONLY );
5019   }
5020   catch ( HDFexception ) {
5021     INFOS( "Load(): " << filename << " not found!" );
5022     return false;
5023   }
5024
5025   TPythonDump pd; // prevent dump during loading
5026
5027   // DriverMED_R_SMESHDS_Mesh myReader;
5028   // myReader.SetFile( meshfile.ToCString() );
5029
5030   // For PAL13473 ("Repetitive mesh") implementation.
5031   // New dependencies between SMESH objects are established:
5032   // now hypotheses can refer to meshes, shapes and other hypotheses.
5033   // To keep data consistent, the following order of data restoration
5034   // imposed:
5035   // 1. Create hypotheses
5036   // 2. Create all meshes
5037   // 3. Load hypotheses' data
5038   // 4. All the rest
5039
5040   list< pair< SMESH_Hypothesis_i*, string > >    hypDataList;
5041   list< pair< SMESH_Mesh_i*,       HDFgroup* > > meshGroupList;
5042   list< SMESH::Filter_var >                      filters;
5043
5044   // get total number of top-level groups
5045   int aNbGroups = aFile->nInternalObjects();
5046   if ( aNbGroups > 0 ) {
5047     // --> in first turn we should read&create hypotheses
5048     if ( aFile->ExistInternalObject( "Hypotheses" ) ) {
5049       // open hypotheses root HDF group
5050       aTopGroup = new HDFgroup( "Hypotheses", aFile );
5051       aTopGroup->OpenOnDisk();
5052
5053       // get number of hypotheses
5054       int aNbObjects = aTopGroup->nInternalObjects();
5055       for ( int j = 0; j < aNbObjects; j++ ) {
5056         // try to identify hypothesis
5057         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
5058         aTopGroup->InternalObjectIndentify( j, hypGrpName );
5059
5060         if ( string( hypGrpName ).substr( 0, 10 ) == string( "Hypothesis" ) ) {
5061           // open hypothesis group
5062           aGroup = new HDFgroup( hypGrpName, aTopGroup );
5063           aGroup->OpenOnDisk();
5064
5065           // --> get hypothesis id
5066           int    id = atoi( string( hypGrpName ).substr( 10 ).c_str() );
5067           string hypname;
5068           string libname;
5069           string hypdata;
5070
5071           // get number of datasets
5072           int aNbSubObjects = aGroup->nInternalObjects();
5073           for ( int k = 0; k < aNbSubObjects; k++ ) {
5074             // identify dataset
5075             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
5076             aGroup->InternalObjectIndentify( k, name_of_subgroup );
5077             // --> get hypothesis name
5078             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
5079               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5080               aDataset->OpenOnDisk();
5081               size = aDataset->GetSize();
5082               char* hypname_str = new char[ size ];
5083               aDataset->ReadFromDisk( hypname_str );
5084               hypname = string( hypname_str );
5085               delete [] hypname_str;
5086               aDataset->CloseOnDisk();
5087             }
5088             // --> get hypothesis plugin library name
5089             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
5090               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5091               aDataset->OpenOnDisk();
5092               size = aDataset->GetSize();
5093               char* libname_str = new char[ size ];
5094               aDataset->ReadFromDisk( libname_str );
5095               if(MYDEBUG) SCRUTE( libname_str );
5096               libname = string( libname_str );
5097               delete [] libname_str;
5098               aDataset->CloseOnDisk();
5099             }
5100             // --> get hypothesis data
5101             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
5102               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5103               aDataset->OpenOnDisk();
5104               size = aDataset->GetSize();
5105               char* hypdata_str = new char[ size ];
5106               aDataset->ReadFromDisk( hypdata_str );
5107               hypdata = string( hypdata_str );
5108               delete [] hypdata_str;
5109               aDataset->CloseOnDisk();
5110             }
5111           }
5112           // close hypothesis HDF group
5113           aGroup->CloseOnDisk();
5114
5115           // --> restore hypothesis from data
5116           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
5117             if(MYDEBUG) MESSAGE("VSR - load hypothesis : id = " << id <<
5118                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
5119             SMESH::SMESH_Hypothesis_var myHyp;
5120
5121             try { // protect persistence mechanism against exceptions
5122               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
5123             }
5124             catch (...) {
5125               INFOS( "Exception during hypothesis creation" );
5126             }
5127
5128             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
5129             if ( myImpl ) {
5130               // myImpl->LoadFrom( hypdata.c_str() );
5131               hypDataList.push_back( make_pair( myImpl, hypdata ));
5132               CORBA::String_var iorString = GetORB()->object_to_string( myHyp );
5133               int newId = myStudyContext->findId( iorString.in() );
5134               myStudyContext->mapOldToNew( id, newId );
5135             }
5136             else
5137               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
5138           }
5139         }
5140       }
5141       // close hypotheses root HDF group
5142       aTopGroup->CloseOnDisk();
5143       aTopGroup = 0;
5144     }
5145
5146     // --> then we should read&create algorithms
5147     if ( aFile->ExistInternalObject( "Algorithms" ) ) {
5148       // open algorithms root HDF group
5149       aTopGroup = new HDFgroup( "Algorithms", aFile );
5150       aTopGroup->OpenOnDisk();
5151
5152       // get number of algorithms
5153       int aNbObjects = aTopGroup->nInternalObjects();
5154       for ( int j = 0; j < aNbObjects; j++ ) {
5155         // try to identify algorithm
5156         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
5157         aTopGroup->InternalObjectIndentify( j, hypGrpName );
5158
5159         if ( string( hypGrpName ).substr( 0, 9 ) == string( "Algorithm" ) ) {
5160           // open algorithm group
5161           aGroup = new HDFgroup( hypGrpName, aTopGroup );
5162           aGroup->OpenOnDisk();
5163
5164           // --> get algorithm id
5165           int    id = atoi( string( hypGrpName ).substr( 9 ).c_str() );
5166           string hypname;
5167           string libname;
5168           string hypdata;
5169
5170           // get number of datasets
5171           int aNbSubObjects = aGroup->nInternalObjects();
5172           for ( int k = 0; k < aNbSubObjects; k++ ) {
5173             // identify dataset
5174             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
5175             aGroup->InternalObjectIndentify( k, name_of_subgroup );
5176             // --> get algorithm name
5177             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
5178               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5179               aDataset->OpenOnDisk();
5180               size = aDataset->GetSize();
5181               char* hypname_str = new char[ size ];
5182               aDataset->ReadFromDisk( hypname_str );
5183               hypname = string( hypname_str );
5184               delete [] hypname_str;
5185               aDataset->CloseOnDisk();
5186             }
5187             // --> get algorithm plugin library name
5188             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
5189               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5190               aDataset->OpenOnDisk();
5191               size = aDataset->GetSize();
5192               char* libname_str = new char[ size ];
5193               aDataset->ReadFromDisk( libname_str );
5194               if(MYDEBUG) SCRUTE( libname_str );
5195               libname = string( libname_str );
5196               delete [] libname_str;
5197               aDataset->CloseOnDisk();
5198             }
5199             // --> get algorithm data
5200             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
5201               aDataset = new HDFdataset( name_of_subgroup, aGroup );
5202               aDataset->OpenOnDisk();
5203               size = aDataset->GetSize();
5204               char* hypdata_str = new char[ size ];
5205               aDataset->ReadFromDisk( hypdata_str );
5206               if(MYDEBUG) SCRUTE( hypdata_str );
5207               hypdata = string( hypdata_str );
5208               delete [] hypdata_str;
5209               aDataset->CloseOnDisk();
5210             }
5211           }
5212           // close algorithm HDF group
5213           aGroup->CloseOnDisk();
5214
5215           // --> restore algorithm from data
5216           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
5217             if(MYDEBUG) MESSAGE("VSR - load algo : id = " << id <<
5218                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
5219             SMESH::SMESH_Hypothesis_var myHyp;
5220
5221             try { // protect persistence mechanism against exceptions
5222               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
5223             }
5224             catch( SALOME::SALOME_Exception& ex )
5225             {
5226               INFOS( "Exception during hypothesis creation: " << ex.details.text );
5227             }
5228             catch (...) {
5229               INFOS( "Exception during hypothesis creation" );
5230             }
5231
5232             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
5233             if ( myImpl ) {
5234               //myImpl->LoadFrom( hypdata.c_str() );
5235               hypDataList.push_back( make_pair( myImpl, hypdata ));
5236               CORBA::String_var iorString = GetORB()->object_to_string( myHyp );
5237               int newId = myStudyContext->findId( iorString.in() );
5238               myStudyContext->mapOldToNew( id, newId );
5239             }
5240             else
5241               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
5242           }
5243         }
5244       }
5245       // close algorithms root HDF group
5246       aTopGroup->CloseOnDisk();
5247       aTopGroup = 0;
5248     }
5249
5250     // --> the rest groups should be meshes
5251     for ( int i = 0; i < aNbGroups; i++ ) {
5252       // identify next group
5253       char meshName[ HDF_NAME_MAX_LEN+1 ];
5254       aFile->InternalObjectIndentify( i, meshName );
5255
5256       if ( string( meshName ).substr( 0, 4 ) == string( "Mesh" ) ) {
5257         // --> get mesh id
5258         int id = atoi( string( meshName ).substr( 4 ).c_str() );
5259         if ( id <= 0 )
5260           continue;
5261
5262         // open mesh HDF group
5263         aTopGroup = new HDFgroup( meshName, aFile );
5264         aTopGroup->OpenOnDisk();
5265
5266         // get number of child HDF objects
5267         int aNbObjects = aTopGroup->nInternalObjects();
5268         if ( aNbObjects > 0 ) {
5269           // create mesh
5270           if(MYDEBUG) MESSAGE( "VSR - load mesh : id = " << id );
5271           SMESH::SMESH_Mesh_var myNewMesh = this->createMesh();
5272           SMESH_Mesh_i* myNewMeshImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myNewMesh ).in() );
5273           if ( !myNewMeshImpl )
5274             continue;
5275           meshGroupList.push_back( make_pair( myNewMeshImpl, aTopGroup ));
5276
5277           CORBA::String_var iorString = GetORB()->object_to_string( myNewMesh );
5278           int newId = myStudyContext->findId( iorString.in() );
5279           myStudyContext->mapOldToNew( id, newId );
5280
5281           // ouv : NPAL12872
5282           // try to read and set auto color flag
5283           char aMeshAutoColorName[ 30 ];
5284           sprintf( aMeshAutoColorName, "AutoColorMesh %d", id);
5285           if( aTopGroup->ExistInternalObject( aMeshAutoColorName ) )
5286           {
5287             aDataset = new HDFdataset( aMeshAutoColorName, aTopGroup );
5288             aDataset->OpenOnDisk();
5289             size = aDataset->GetSize();
5290             int* anAutoColor = new int[ size ];
5291             aDataset->ReadFromDisk( anAutoColor );
5292             aDataset->CloseOnDisk();
5293             myNewMeshImpl->GetImpl().SetAutoColor( (bool)anAutoColor[0] );
5294             delete [] anAutoColor;
5295           }
5296
5297           // try to read and set reference to shape
5298           GEOM::GEOM_Object_var aShapeObject;
5299           if ( aTopGroup->ExistInternalObject( "Ref on shape" ) ) {
5300             // load mesh "Ref on shape" - it's an entry to SObject
5301             aDataset = new HDFdataset( "Ref on shape", aTopGroup );
5302             aDataset->OpenOnDisk();
5303             size = aDataset->GetSize();
5304             char* refFromFile = new char[ size ];
5305             aDataset->ReadFromDisk( refFromFile );
5306             aDataset->CloseOnDisk();
5307             if ( strlen( refFromFile ) > 0 ) {
5308               SALOMEDS::SObject_wrap shapeSO = aStudy->FindObjectID( refFromFile );
5309
5310               // Make sure GEOM data are loaded first
5311               //loadGeomData( shapeSO->GetFatherComponent() );
5312
5313               CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
5314               if ( !CORBA::is_nil( shapeObject ) ) {
5315                 aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
5316                 if ( !aShapeObject->_is_nil() )
5317                   myNewMeshImpl->SetShape( aShapeObject );
5318               }
5319             }
5320             delete [] refFromFile;
5321           }
5322
5323           // issue 20918. Restore Persistent Id of SMESHDS_Mesh
5324           if( aTopGroup->ExistInternalObject( "meshPersistentId" ) )
5325           {
5326             aDataset = new HDFdataset( "meshPersistentId", aTopGroup );
5327             aDataset->OpenOnDisk();
5328             size = aDataset->GetSize();
5329             int* meshPersistentId = new int[ size ];
5330             aDataset->ReadFromDisk( meshPersistentId );
5331             aDataset->CloseOnDisk();
5332             myNewMeshImpl->GetImpl().GetMeshDS()->SetPersistentId( *meshPersistentId );
5333             delete [] meshPersistentId;
5334           }
5335
5336           // Restore file info
5337           if ( aTopGroup->ExistInternalObject( "file info" ))
5338           {
5339             aDataset = new HDFdataset( "file info", aTopGroup );
5340             aDataset->OpenOnDisk();
5341             size = aDataset->GetSize();
5342             std::string info( size, ' ');
5343             aDataset->ReadFromDisk( (char*) info.data() );
5344             aDataset->CloseOnDisk();
5345             myNewMeshImpl->FileInfoFromString( info );
5346           }
5347         }
5348       }
5349     } // reading MESHes
5350
5351     // As all object that can be referred by hypothesis are created,
5352     // we can restore hypothesis data
5353
5354     list< pair< SMESH_Hypothesis_i*, string > >::iterator hyp_data;
5355     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
5356     {
5357       SMESH_Hypothesis_i* hyp  = hyp_data->first;
5358       string &            data = hyp_data->second;
5359       hyp->LoadFrom( data.c_str() );
5360     }
5361
5362     // Restore the rest mesh data
5363
5364     list< pair< SMESH_Mesh_i*, HDFgroup* > >::iterator meshi_group;
5365     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
5366     {
5367       aTopGroup                   = meshi_group->second;
5368       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
5369       //::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
5370       //SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
5371
5372       GEOM::GEOM_Object_var aShapeObject = myNewMeshImpl->GetShapeToMesh();
5373       bool hasData = false;
5374
5375       // get mesh old id
5376       CORBA::String_var iorString = GetORB()->object_to_string( myNewMeshImpl->_this() );
5377       int newId = myStudyContext->findId( iorString.in() );
5378       int meshOldId = myStudyContext->getOldId( newId );
5379
5380       // try to find mesh data dataset
5381       if ( aTopGroup->ExistInternalObject( "Has data" ) ) {
5382         // load mesh "has data" flag
5383         aDataset = new HDFdataset( "Has data", aTopGroup );
5384         aDataset->OpenOnDisk();
5385         size = aDataset->GetSize();
5386         char* strHasData = new char[ size ];
5387         aDataset->ReadFromDisk( strHasData );
5388         aDataset->CloseOnDisk();
5389         if ( strcmp( strHasData, "1") == 0 ) {
5390           hasData = true;
5391         }
5392         delete [] strHasData;
5393       }
5394
5395       // Try to get applied ALGORITHMS (mesh is not cleared by algo addition because
5396       // nodes and elements are not yet put into sub-meshes)
5397       if ( aTopGroup->ExistInternalObject( "Applied Algorithms" ) ) {
5398         aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
5399         aGroup->OpenOnDisk();
5400         // get number of applied algorithms
5401         int aNbSubObjects = aGroup->nInternalObjects();
5402         if(MYDEBUG) MESSAGE( "VSR - number of applied algos " << aNbSubObjects );
5403         for ( int j = 0; j < aNbSubObjects; j++ ) {
5404           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5405           aGroup->InternalObjectIndentify( j, name_dataset );
5406           // check if it is an algorithm
5407           if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
5408             aDataset = new HDFdataset( name_dataset, aGroup );
5409             aDataset->OpenOnDisk();
5410             size = aDataset->GetSize();
5411             char* refFromFile = new char[ size ];
5412             aDataset->ReadFromDisk( refFromFile );
5413             aDataset->CloseOnDisk();
5414             // san - it is impossible to recover applied algorithms using their entries within Load() method
5415             //SALOMEDS::SObject_wrap hypSO = aStudy->FindObjectID( refFromFile );
5416             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
5417             int id = atoi( refFromFile );
5418             delete [] refFromFile;
5419             string anIOR = myStudyContext->getIORbyOldId( id );
5420             if ( !anIOR.empty() ) {
5421               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5422               if ( !CORBA::is_nil( hypObject ) ) {
5423                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5424                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
5425                                            || !myNewMeshImpl->HasShapeToMesh()) )
5426                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
5427               }
5428             }
5429           }
5430         }
5431         aGroup->CloseOnDisk();
5432       }
5433
5434       // try to get applied hypotheses
5435       if ( aTopGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
5436         aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
5437         aGroup->OpenOnDisk();
5438         // get number of applied hypotheses
5439         int aNbSubObjects = aGroup->nInternalObjects();
5440         for ( int j = 0; j < aNbSubObjects; j++ ) {
5441           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5442           aGroup->InternalObjectIndentify( j, name_dataset );
5443           // check if it is a hypothesis
5444           if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
5445             aDataset = new HDFdataset( name_dataset, aGroup );
5446             aDataset->OpenOnDisk();
5447             size = aDataset->GetSize();
5448             char* refFromFile = new char[ size ];
5449             aDataset->ReadFromDisk( refFromFile );
5450             aDataset->CloseOnDisk();
5451             // san - it is impossible to recover applied hypotheses using their entries within Load() method
5452             //SALOMEDS::SObject_wrap hypSO = myStudy->FindObjectID( refFromFile );
5453             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
5454             int id = atoi( refFromFile );
5455             delete [] refFromFile;
5456             string anIOR = myStudyContext->getIORbyOldId( id );
5457             if ( !anIOR.empty() ) {
5458               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5459               if ( !CORBA::is_nil( hypObject ) ) {
5460                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5461                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
5462                                            || !myNewMeshImpl->HasShapeToMesh()) )
5463                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
5464               }
5465             }
5466           }
5467         }
5468         aGroup->CloseOnDisk();
5469       }
5470
5471       // --> try to find SUB-MESHES containers for each type of submesh
5472       for ( int j = GetSubMeshOnVertexTag(); j <= GetSubMeshOnCompoundTag(); j++ ) {
5473         const char* name_meshgroup = 0;
5474         if ( j == GetSubMeshOnVertexTag() )
5475           name_meshgroup = "SubMeshes On Vertex";
5476         else if ( j == GetSubMeshOnEdgeTag() )
5477           name_meshgroup = "SubMeshes On Edge";
5478         else if ( j == GetSubMeshOnWireTag() )
5479           name_meshgroup = "SubMeshes On Wire";
5480         else if ( j == GetSubMeshOnFaceTag() )
5481           name_meshgroup = "SubMeshes On Face";
5482         else if ( j == GetSubMeshOnShellTag() )
5483           name_meshgroup = "SubMeshes On Shell";
5484         else if ( j == GetSubMeshOnSolidTag() )
5485           name_meshgroup = "SubMeshes On Solid";
5486         else if ( j == GetSubMeshOnCompoundTag() )
5487           name_meshgroup = "SubMeshes On Compound";
5488
5489         // try to get submeshes container HDF group
5490         if ( aTopGroup->ExistInternalObject( name_meshgroup ) ) {
5491           // open submeshes containers HDF group
5492           aGroup = new HDFgroup( name_meshgroup, aTopGroup );
5493           aGroup->OpenOnDisk();
5494
5495           // get number of submeshes
5496           int aNbSubMeshes = aGroup->nInternalObjects();
5497           for ( int k = 0; k < aNbSubMeshes; k++ ) {
5498             // identify submesh
5499             char name_submeshgroup[ HDF_NAME_MAX_LEN+1 ];
5500             aGroup->InternalObjectIndentify( k, name_submeshgroup );
5501             if ( strncmp( name_submeshgroup, "SubMesh", 7 ) == 0 ) {
5502               // --> get submesh id
5503               int subid = atoi( name_submeshgroup + 7 );
5504               if ( subid <= 0 )
5505                 continue;
5506               // open submesh HDF group
5507               aSubGroup = new HDFgroup( name_submeshgroup, aGroup );
5508               aSubGroup->OpenOnDisk();
5509
5510               // try to read and set reference to subshape
5511               GEOM::GEOM_Object_var aSubShapeObject;
5512               SMESH::SMESH_subMesh_var aSubMesh;
5513
5514               if ( aSubGroup->ExistInternalObject( "Ref on shape" ) ) {
5515                 // load submesh "Ref on shape" - it's an entry to SObject
5516                 aDataset = new HDFdataset( "Ref on shape", aSubGroup );
5517                 aDataset->OpenOnDisk();
5518                 size = aDataset->GetSize();
5519                 char* refFromFile = new char[ size ];
5520                 aDataset->ReadFromDisk( refFromFile );
5521                 aDataset->CloseOnDisk();
5522                 if ( strlen( refFromFile ) > 0 ) {
5523                   SALOMEDS::SObject_wrap subShapeSO = aStudy->FindObjectID( refFromFile );
5524                   CORBA::Object_var subShapeObject = SObjectToObject( subShapeSO );
5525                   if ( !CORBA::is_nil( subShapeObject ) ) {
5526                     aSubShapeObject = GEOM::GEOM_Object::_narrow( subShapeObject );
5527                     if ( !aSubShapeObject->_is_nil() )
5528                       aSubMesh = SMESH::SMESH_subMesh::_duplicate
5529                         ( myNewMeshImpl->createSubMesh( aSubShapeObject ) );
5530                     if ( aSubMesh->_is_nil() )
5531                       continue;
5532                     string iorSubString = GetORB()->object_to_string( aSubMesh );
5533                     int newSubId = myStudyContext->findId( iorSubString );
5534                     myStudyContext->mapOldToNew( subid, newSubId );
5535                   }
5536                 }
5537                 delete [] refFromFile;
5538               }
5539
5540               if ( aSubMesh->_is_nil() )
5541                 continue;
5542
5543               // try to get applied algorithms
5544               if ( aSubGroup->ExistInternalObject( "Applied Algorithms" ) ) {
5545                 // open "applied algorithms" HDF group
5546                 aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
5547                 aSubSubGroup->OpenOnDisk();
5548                 // get number of applied algorithms
5549                 int aNbSubObjects = aSubSubGroup->nInternalObjects();
5550                 for ( int l = 0; l < aNbSubObjects; l++ ) {
5551                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5552                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
5553                   // check if it is an algorithm
5554                   if ( strncmp( name_dataset, "Algo", 4 ) == 0 ) {
5555                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
5556                     aDataset->OpenOnDisk();
5557                     size = aDataset->GetSize();
5558                     char* refFromFile = new char[ size ];
5559                     aDataset->ReadFromDisk( refFromFile );
5560                     aDataset->CloseOnDisk();
5561
5562                     int id = atoi( refFromFile );
5563                     string anIOR = myStudyContext->getIORbyOldId( id );
5564                     if ( !anIOR.empty() ) {
5565                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5566                       if ( !CORBA::is_nil( hypObject ) ) {
5567                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5568                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
5569                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
5570                       }
5571                     }
5572                     delete [] refFromFile;
5573                   }
5574                 }
5575                 // close "applied algorithms" HDF group
5576                 aSubSubGroup->CloseOnDisk();
5577               }
5578
5579               // try to get applied hypotheses
5580               if ( aSubGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
5581                 // open "applied hypotheses" HDF group
5582                 aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
5583                 aSubSubGroup->OpenOnDisk();
5584                 // get number of applied hypotheses
5585                 int aNbSubObjects = aSubSubGroup->nInternalObjects();
5586                 for ( int l = 0; l < aNbSubObjects; l++ ) {
5587                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
5588                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
5589                   // check if it is a hypothesis
5590                   if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
5591                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
5592                     aDataset->OpenOnDisk();
5593                     size = aDataset->GetSize();
5594                     char* refFromFile = new char[ size ];
5595                     aDataset->ReadFromDisk( refFromFile );
5596                     aDataset->CloseOnDisk();
5597
5598                     int id = atoi( refFromFile );
5599                     string anIOR = myStudyContext->getIORbyOldId( id );
5600                     if ( !anIOR.empty() ) {
5601                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
5602                       if ( !CORBA::is_nil( hypObject ) ) {
5603                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
5604                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
5605                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
5606                       }
5607                     }
5608                     delete [] refFromFile;
5609                   }
5610                 }
5611                 // close "APPLIED HYPOTHESES" hdf group
5612                 aSubSubGroup->CloseOnDisk();
5613               }
5614
5615               // close SUB-MESH hdf group
5616               aSubGroup->CloseOnDisk();
5617             }
5618           }
5619           // close SUB-MESHES containers hdf group
5620           aGroup->CloseOnDisk();
5621         }
5622       }
5623
5624       // try to get GROUPS
5625       for ( int ii = GetNodeGroupsTag(); ii <= GetBallElementsGroupsTag(); ii++ ) {
5626         char name_group[ 30 ];
5627         if ( ii == GetNodeGroupsTag() )
5628           strcpy( name_group, "Groups of Nodes" );
5629         else if ( ii == GetEdgeGroupsTag() )
5630           strcpy( name_group, "Groups of Edges" );
5631         else if ( ii == GetFaceGroupsTag() )
5632           strcpy( name_group, "Groups of Faces" );
5633         else if ( ii == GetVolumeGroupsTag() )
5634           strcpy( name_group, "Groups of Volumes" );
5635         else if ( ii == Get0DElementsGroupsTag() )
5636           strcpy( name_group, "Groups of 0D Elements" );
5637         else if ( ii == GetBallElementsGroupsTag() )
5638           strcpy( name_group, "Groups of Balls" );
5639
5640         if ( aTopGroup->ExistInternalObject( name_group ) ) {
5641           aGroup = new HDFgroup( name_group, aTopGroup );
5642           aGroup->OpenOnDisk();
5643           // PAL23514: get all names from the HDFgroup to avoid iteration on its contents
5644           // within aGroup->ExistInternalObject( name )
5645           std::vector< std::string > subNames;
5646           TColStd_MapOfAsciiString mapOfNames;
5647           aGroup->GetAllObjects( subNames );
5648           for ( size_t iN = 0; iN < subNames.size(); ++iN )
5649             mapOfNames.Add( subNames[ iN ].c_str() );
5650           // loop on groups
5651           for ( size_t j = 0; j < subNames.size(); j++ ) {
5652             const std::string& name_dataset = subNames[ j ];
5653             // check if it is a group
5654             if ( name_dataset.substr( 0, 5 ) == "Group" ) {
5655               // --> get group id
5656               char * endptr;
5657               int subid = strtol( name_dataset.data() + 5, &endptr, 10 );
5658               if ( subid <= 0 )
5659                 continue;
5660               int groupID = -1; // group local ID (also persistent)
5661               if ( *endptr )
5662                 groupID = atoi( endptr + 1 );
5663               aDataset = new HDFdataset( name_dataset.c_str(), aGroup );
5664               aDataset->OpenOnDisk();
5665
5666               // Retrieve actual group name
5667               size = aDataset->GetSize();
5668               char* nameFromFile = new char[ size ];
5669               aDataset->ReadFromDisk( nameFromFile );
5670               aDataset->CloseOnDisk();
5671
5672               // Try to find a shape reference
5673               TopoDS_Shape aShape;
5674               char aRefName[ 30 ];
5675               sprintf( aRefName, "Ref on shape %d", subid);
5676               if ( mapOfNames.Contains( aRefName ))
5677               {
5678                 // load mesh "Ref on shape" - it's an entry to SObject
5679                 aDataset = new HDFdataset( aRefName, aGroup );
5680                 aDataset->OpenOnDisk();
5681                 size = aDataset->GetSize();
5682                 char* refFromFile = new char[ size ];
5683                 aDataset->ReadFromDisk( refFromFile );
5684                 aDataset->CloseOnDisk();
5685                 if ( strlen( refFromFile ) > 0 ) {
5686                   SALOMEDS::SObject_wrap shapeSO = aStudy->FindObjectID( refFromFile );
5687                   CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
5688                   if ( !CORBA::is_nil( shapeObject ) ) {
5689                     aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
5690                     if ( !aShapeObject->_is_nil() )
5691                       aShape = GeomObjectToShape( aShapeObject );
5692                   }
5693                 }
5694                 delete [] refFromFile;
5695               }
5696               // Try to read a filter of SMESH_GroupOnFilter
5697               SMESH::Filter_var filter;
5698               SMESH_PredicatePtr predicate;
5699               std::string hdfGrpName = ( SMESH_Comment( "Filter ") << subid );
5700               if ( mapOfNames.Contains( hdfGrpName.c_str() ))
5701               {
5702                 aDataset = new HDFdataset( hdfGrpName.c_str(), aGroup );
5703                 aDataset->OpenOnDisk();
5704                 size = aDataset->GetSize();
5705                 char* persistStr = new char[ size ];
5706                 aDataset->ReadFromDisk( persistStr );
5707                 aDataset->CloseOnDisk();
5708                 if ( strlen( persistStr ) > 0 ) {
5709                   filter = SMESH_GroupOnFilter_i::StringToFilter( persistStr );
5710                   predicate = SMESH_GroupOnFilter_i::GetPredicate( filter );
5711                   filters.push_back( filter );
5712                 }
5713                 delete [] persistStr;
5714               }
5715
5716               // Create group servant
5717               SMESH::ElementType type = (SMESH::ElementType)(ii - GetNodeGroupsTag() + 1);
5718               SMESH::SMESH_GroupBase_var aNewGroup = SMESH::SMESH_GroupBase::_duplicate
5719                 ( myNewMeshImpl->createGroup( type, nameFromFile, groupID, aShape, predicate ) );
5720               delete [] nameFromFile;
5721               // Obtain a SMESHDS_Group object
5722               if ( aNewGroup->_is_nil() )
5723                 continue;
5724
5725               string iorSubString = GetORB()->object_to_string( aNewGroup );
5726               int        newSubId = myStudyContext->findId( iorSubString );
5727               myStudyContext->mapOldToNew( subid, newSubId );
5728
5729               SMESH_GroupBase_i* aGroupImpl = SMESH::DownCast< SMESH_GroupBase_i*>( aNewGroup );
5730               if ( !aGroupImpl )
5731                 continue;
5732
5733               if ( SMESH_GroupOnFilter_i* aFilterGroup =
5734                    dynamic_cast< SMESH_GroupOnFilter_i*>( aGroupImpl ))
5735               {
5736                 aFilterGroup->SetFilter( filter );
5737                 filter->UnRegister();
5738               }
5739               SMESHDS_GroupBase* aGroupBaseDS = aGroupImpl->GetGroupDS();
5740               if ( !aGroupBaseDS )
5741                 continue;
5742
5743               aGroupBaseDS->SetStoreName( name_dataset.c_str() );
5744
5745               // ouv : NPAL12872
5746               // Read color of the group
5747               char aGroupColorName[ 30 ];
5748               sprintf( aGroupColorName, "ColorGroup %d", subid);
5749               if ( mapOfNames.Contains( aGroupColorName ))
5750               {
5751                 aDataset = new HDFdataset( aGroupColorName, aGroup );
5752                 aDataset->OpenOnDisk();
5753                 size = aDataset->GetSize();
5754                 double* anRGB = new double[ size ];
5755                 aDataset->ReadFromDisk( anRGB );
5756                 aDataset->CloseOnDisk();
5757                 Quantity_Color aColor( anRGB[0], anRGB[1], anRGB[2], Quantity_TOC_RGB );
5758                 aGroupBaseDS->SetColor( aColor );
5759                 delete [] anRGB;
5760               }
5761             }
5762           }
5763           aGroup->CloseOnDisk();
5764         }
5765       } // reading GROUPs
5766
5767       // instead of reading mesh data, we read only brief information of all
5768       // objects: mesh, groups, sub-meshes (issue 0021208)
5769       if ( hasData )
5770       {
5771         SMESH_PreMeshInfo::LoadFromFile( myNewMeshImpl, meshOldId,
5772                                          meshfile.ToCString(), filename.ToCString(),
5773                                          !isMultiFile );
5774       }
5775
5776       // read Sub-Mesh ORDER if any
5777       if ( aTopGroup->ExistInternalObject( "Mesh Order" )) {
5778         aDataset = new HDFdataset( "Mesh Order", aTopGroup );
5779         aDataset->OpenOnDisk();
5780         size = aDataset->GetSize();
5781         int* smIDs = new int[ size ];
5782         aDataset->ReadFromDisk( smIDs );
5783         aDataset->CloseOnDisk();
5784         TListOfListOfInt anOrderIds;
5785         anOrderIds.push_back( TListOfInt() );
5786         for ( int i = 0; i < size; i++ )
5787           if ( smIDs[ i ] < 0 ) // is separator
5788             anOrderIds.push_back( TListOfInt() );
5789           else
5790             anOrderIds.back().push_back(smIDs[ i ]);
5791
5792         myNewMeshImpl->GetImpl().SetMeshOrder( anOrderIds );
5793         delete [] smIDs;
5794       }
5795     } // loop on meshes
5796
5797     // update hyps needing full mesh data restored (issue 20918)
5798     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
5799     {
5800       SMESH_Hypothesis_i* hyp  = hyp_data->first;
5801       hyp->UpdateAsMeshesRestored();
5802     }
5803
5804     // notify algos on completed restoration to set sub-mesh event listeners
5805     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
5806     {
5807       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
5808       ::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
5809
5810       TopoDS_Shape myLocShape;
5811       if(myLocMesh.HasShapeToMesh())
5812         myLocShape = myLocMesh.GetShapeToMesh();
5813       else
5814         myLocShape = SMESH_Mesh::PseudoShape();
5815
5816       myLocMesh.GetSubMesh(myLocShape)->
5817         ComputeStateEngine (SMESH_subMesh::SUBMESH_RESTORED);
5818     }
5819
5820     // let filters detect dependency on mesh groups via FT_BelongToMeshGroup predicate (22877)
5821     list< SMESH::Filter_var >::iterator f = filters.begin();
5822     for ( ; f != filters.end(); ++f )
5823       if ( SMESH::Filter_i * fi = SMESH::DownCast< SMESH::Filter_i*>( *f ))
5824         fi->FindBaseObjects();
5825
5826
5827     // close mesh group
5828     if(aTopGroup)
5829       aTopGroup->CloseOnDisk();
5830   }
5831   // close HDF file
5832   aFile->CloseOnDisk();
5833   delete aFile;
5834
5835   // Remove temporary files created from the stream
5836   if ( !isMultiFile )
5837   {
5838     SMESH_File meshFile( meshfile.ToCString() );
5839     if ( !meshFile ) // no meshfile exists
5840     {
5841       SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq, true );
5842     }
5843     else
5844     {
5845       Engines::Container_var container = GetContainerRef();
5846       if ( Engines_Container_i* container_i = SMESH::DownCast<Engines_Container_i*>( container ))
5847       {
5848         container_i->registerTemporaryFile( filename.ToCString() );
5849         container_i->registerTemporaryFile( meshfile.ToCString() );
5850         container_i->registerTemporaryFile( tmpDir.ToCString() );
5851       }
5852     }
5853   }
5854   pd << ""; // prevent optimizing pd out
5855
5856   // creation of tree nodes for all data objects in the study
5857   // to support tree representation customization and drag-n-drop:
5858   SALOMEDS::UseCaseBuilder_wrap useCaseBuilder = aStudy->GetUseCaseBuilder();
5859   if ( !useCaseBuilder->IsUseCaseNode( theComponent ) ) {
5860     useCaseBuilder->SetRootCurrent();
5861     useCaseBuilder->Append( theComponent ); // component object is added as the top level item
5862     SALOMEDS::ChildIterator_wrap it = aStudy->NewChildIterator( theComponent );
5863     for (it->InitEx(true); it->More(); it->Next()) {
5864       useCaseBuilder->AppendTo( it->Value()->GetFather(), it->Value() );
5865     }
5866   }
5867
5868   return true;
5869 }
5870
5871 //=============================================================================
5872 /*!
5873  *  SMESH_Gen_i::LoadASCII
5874  *
5875  *  Load SMESH module's data in ASCII format
5876  */
5877 //=============================================================================
5878
5879 bool SMESH_Gen_i::LoadASCII( SALOMEDS::SComponent_ptr theComponent,
5880                              const SALOMEDS::TMPFile& theStream,
5881                              const char*              theURL,
5882                              bool                     isMultiFile ) {
5883   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
5884   return Load( theComponent, theStream, theURL, isMultiFile );
5885
5886   //before call main ::Load method it's need for decipher text format to
5887   //binary ( "|xx" => x' )
5888   int size = theStream.length();
5889   if ( int((size / 3 )*3) != size ) //error size of buffer
5890     return false;
5891
5892   int real_size = int(size / 3);
5893
5894   _CORBA_Octet* buffer = new _CORBA_Octet[real_size];
5895   char tmp[3];
5896   tmp[2]='\0';
5897   unsigned int c = -1;
5898   for ( int i = 0; i < real_size; i++ )
5899   {
5900     memcpy( &(tmp[0]), &(theStream[i*3+1]), 2 );
5901     sscanf( tmp, "%x", &c );
5902     sprintf( (char*)&(buffer[i]), "%c", (char)c );
5903   }
5904
5905   SALOMEDS::TMPFile_var aRealStreamFile = new SALOMEDS::TMPFile(real_size, real_size, buffer, 1);
5906
5907   return Load( theComponent, *(aRealStreamFile._retn()), theURL, isMultiFile );
5908 }
5909
5910 //=============================================================================
5911 /*!
5912  *  SMESH_Gen_i::Close
5913  *
5914  *  Clears study-connected data when it is closed
5915  */
5916 //=============================================================================
5917
5918 void SMESH_Gen_i::Close( SALOMEDS::SComponent_ptr theComponent )
5919 {
5920   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Close" );
5921
5922   // Clear study contexts data
5923   myStudyContext->Clear();
5924
5925   // remove the tmp files meshes are loaded from
5926   SMESH_PreMeshInfo::RemoveStudyFiles_TMP_METHOD( theComponent );
5927
5928   // Clean trace of API methods calls
5929   CleanPythonTrace();
5930
5931   return;
5932 }
5933
5934 //=============================================================================
5935 /*!
5936  *  SMESH_Gen_i::ComponentDataType
5937  *
5938  *  Get component data type
5939  */
5940 //=============================================================================
5941
5942 char* SMESH_Gen_i::ComponentDataType()
5943 {
5944   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::ComponentDataType" );
5945   return CORBA::string_dup( "SMESH" );
5946 }
5947
5948
5949 //=============================================================================
5950 /*!
5951  *  SMESH_Gen_i::IORToLocalPersistentID
5952  *
5953  *  Transform data from transient form to persistent
5954  */
5955 //=============================================================================
5956
5957 char* SMESH_Gen_i::IORToLocalPersistentID( SALOMEDS::SObject_ptr /*theSObject*/,
5958                                            const char*           IORString,
5959                                            CORBA::Boolean        /*isMultiFile*/,
5960                                            CORBA::Boolean        /*isASCII*/ )
5961 {
5962   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IORToLocalPersistentID" );
5963
5964   if ( myStudyContext && strcmp( IORString, "" ) != 0 ) {
5965     int anId = myStudyContext->findId( IORString );
5966     if ( anId ) {
5967       if(MYDEBUG) MESSAGE( "VSR " << anId )
5968       char strId[ 20 ];
5969       sprintf( strId, "%d", anId );
5970       return  CORBA::string_dup( strId );
5971     }
5972   }
5973   return CORBA::string_dup( "" );
5974 }
5975
5976 //=============================================================================
5977 /*!
5978  *  SMESH_Gen_i::LocalPersistentIDToIOR
5979  *
5980  *  Transform data from persistent form to transient
5981  */
5982 //=============================================================================
5983
5984 char* SMESH_Gen_i::LocalPersistentIDToIOR( SALOMEDS::SObject_ptr /*theSObject*/,
5985                                            const char*           aLocalPersistentID,
5986                                            CORBA::Boolean        /*isMultiFile*/,
5987                                            CORBA::Boolean        /*isASCII*/ )
5988 {
5989   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LocalPersistentIDToIOR(): id = " << aLocalPersistentID );
5990
5991   if ( myStudyContext && strcmp( aLocalPersistentID, "" ) != 0 ) {
5992     int anId = atoi( aLocalPersistentID );
5993     return CORBA::string_dup( myStudyContext->getIORbyOldId( anId ).c_str() );
5994   }
5995   return CORBA::string_dup( "" );
5996 }
5997
5998 //=======================================================================
5999 //function : RegisterObject
6000 //purpose  :
6001 //=======================================================================
6002
6003 int SMESH_Gen_i::RegisterObject(CORBA::Object_ptr theObject)
6004 {
6005   if ( myStudyContext && !CORBA::is_nil( theObject )) {
6006     CORBA::String_var iorString = GetORB()->object_to_string( theObject );
6007     return myStudyContext->addObject( string( iorString.in() ) );
6008   }
6009   return 0;
6010 }
6011
6012 //================================================================================
6013 /*!
6014  * \brief Return id of registered object
6015   * \param theObject - the Object
6016   * \retval int - Object id
6017  */
6018 //================================================================================
6019
6020 CORBA::Long SMESH_Gen_i::GetObjectId(CORBA::Object_ptr theObject)
6021 {
6022   if ( myStudyContext && !CORBA::is_nil( theObject )) {
6023     string iorString = GetORB()->object_to_string( theObject );
6024     return myStudyContext->findId( iorString );
6025   }
6026   return 0;
6027 }
6028
6029 //=============================================================================
6030 /*!
6031  *  SMESH_Gen_i::SetName
6032  *
6033  *  Set a new object name
6034  */
6035 //=============================================================================
6036 void SMESH_Gen_i::SetName(const char* theIOR,
6037                           const char* theName)
6038 {
6039   if ( theIOR && strcmp( theIOR, "" ) ) {
6040     CORBA::Object_var anObject = GetORB()->string_to_object( theIOR );
6041     SALOMEDS::SObject_wrap aSO = ObjectToSObject( anObject );
6042     if ( !aSO->_is_nil() ) {
6043       SetName( aSO, theName );
6044     }
6045   }
6046 }
6047
6048 // Version information
6049 char* SMESH_Gen_i::getVersion()
6050 {
6051 #if SMESH_DEVELOPMENT
6052   return CORBA::string_dup(SMESH_VERSION_STR"dev");
6053 #else
6054   return CORBA::string_dup(SMESH_VERSION_STR);
6055 #endif
6056 }
6057
6058 //=================================================================================
6059 // function : Move()
6060 // purpose  : Moves objects to the specified position.
6061 //            Is used in the drag-n-drop functionality.
6062 //=================================================================================
6063 void SMESH_Gen_i::Move( const SMESH::sobject_list& what,
6064                         SALOMEDS::SObject_ptr      where,
6065                         CORBA::Long                row )
6066 {
6067   if ( CORBA::is_nil( where ) ) return;
6068
6069   SALOMEDS::StudyBuilder_var studyBuilder = getStudyServant()->NewBuilder();
6070   SALOMEDS::UseCaseBuilder_var useCaseBuilder = getStudyServant()->GetUseCaseBuilder();
6071   SALOMEDS::SComponent_var father = where->GetFatherComponent();
6072   std::string dataType = father->ComponentDataType();
6073   if ( dataType != "SMESH" ) return; // not a SMESH component
6074
6075   SALOMEDS::SObject_var objAfter;
6076   if ( row >= 0 && useCaseBuilder->HasChildren( where ) ) {
6077     // insert at given row -> find insertion position
6078     SALOMEDS::UseCaseIterator_var useCaseIt = useCaseBuilder->GetUseCaseIterator( where );
6079     int i;
6080     for ( i = 0; i < row && useCaseIt->More(); i++, useCaseIt->Next() );
6081     if ( i == row && useCaseIt->More() ) {
6082       objAfter = useCaseIt->Value();
6083     }
6084   }
6085
6086   for ( CORBA::ULong i = 0; i < what.length(); i++ ) {
6087     SALOMEDS::SObject_var sobj = what[i];
6088     if ( CORBA::is_nil( sobj ) ) continue; // skip bad object
6089     // insert the object to the use case tree
6090     if ( !CORBA::is_nil( objAfter ) )
6091       useCaseBuilder->InsertBefore( sobj, objAfter ); // insert at given row
6092     else
6093       useCaseBuilder->AppendTo( where, sobj );        // append to the end of list
6094   }
6095 }
6096 //================================================================================
6097 /*!
6098  * \brief Returns true if algorithm can be used to mesh a given geometry
6099  *  \param [in] theAlgoType - the algorithm type
6100  *  \param [in] theLibName - a name of the Plug-in library implementing the algorithm
6101  *  \param [in] theGeomObject - the geometry to mesh
6102  *  \param [in] toCheckAll - if \c True, returns \c True if all shapes are meshable,
6103  *         else, returns \c True if at least one shape is meshable
6104  *  \return CORBA::Boolean - can or can't
6105  */
6106 //================================================================================
6107
6108 CORBA::Boolean SMESH_Gen_i::IsApplicable ( const char*           theAlgoType,
6109                                            const char*           theLibName,
6110                                            GEOM::GEOM_Object_ptr theGeomObject,
6111                                            CORBA::Boolean        toCheckAll)
6112 {
6113   SMESH_TRY;
6114
6115   std::string aPlatformLibName;
6116   typedef GenericHypothesisCreator_i* (*GetHypothesisCreator)(const char*);
6117   GenericHypothesisCreator_i* aCreator =
6118     getHypothesisCreator(theAlgoType, theLibName, aPlatformLibName);
6119   if (aCreator)
6120   {
6121     TopoDS_Shape shape = GeomObjectToShape( theGeomObject );
6122     return shape.IsNull() || aCreator->IsApplicable( shape, toCheckAll );
6123   }
6124   else
6125   {
6126     return false;
6127   }
6128
6129   SMESH_CATCH( SMESH::doNothing );
6130
6131 #ifdef _DEBUG_
6132   cout << "SMESH_Gen_i::IsApplicable(): exception in " << ( theAlgoType ? theAlgoType : "") << endl;
6133 #endif
6134   return true;
6135 }
6136
6137 //=================================================================================
6138 // function : GetInsideSphere
6139 // purpose  : Collect indices of elements, which are located inside the sphere
6140 //=================================================================================
6141 SMESH::long_array* SMESH_Gen_i::GetInsideSphere( SMESH::SMESH_IDSource_ptr meshPart,
6142                                                  SMESH::ElementType     theElemType,
6143                                                  CORBA::Double         theX,
6144                                                  CORBA::Double         theY,
6145                                                  CORBA::Double         theZ,
6146                                                  CORBA::Double         theR)
6147 {
6148   SMESH::long_array_var aResult = new SMESH::long_array();
6149   if ( meshPart->_is_nil() )
6150     return aResult._retn();
6151
6152   // 1. Create geometrical object
6153   gp_Pnt aP( theX, theY, theZ );
6154   TopoDS_Shape aShape = BRepPrimAPI_MakeSphere( aP, theR ).Shape();
6155
6156   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6157
6158   if ( lst.size() > 0 ) {
6159     aResult->length( lst.size() );
6160     for ( size_t i = 0; i < lst.size(); i++ ) {
6161       aResult[i] = lst[i];
6162     }
6163   }
6164   return aResult._retn();
6165 }
6166
6167 SMESH::long_array* SMESH_Gen_i::GetInsideBox( SMESH::SMESH_IDSource_ptr meshPart,
6168                                               SMESH::ElementType        theElemType,
6169                                               CORBA::Double             theX1,
6170                                               CORBA::Double             theY1,
6171                                               CORBA::Double             theZ1,
6172                                               CORBA::Double             theX2,
6173                                               CORBA::Double             theY2,
6174                                               CORBA::Double             theZ2) {
6175   SMESH::long_array_var aResult = new SMESH::long_array();
6176   if( meshPart->_is_nil() )
6177     return aResult._retn();
6178
6179   TopoDS_Shape aShape = BRepPrimAPI_MakeBox( gp_Pnt( theX1, theY1, theZ1 ), gp_Pnt( theX2, theY2, theZ2 ) ).Shape();
6180
6181   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6182
6183   if( lst.size() > 0 ) {
6184     aResult->length( lst.size() );
6185     for ( size_t i = 0; i < lst.size(); i++ ) {
6186       aResult[i] = lst[i];
6187     }
6188   }
6189   return aResult._retn();
6190 }
6191
6192 SMESH::long_array* SMESH_Gen_i::GetInsideCylinder( SMESH::SMESH_IDSource_ptr meshPart,
6193                                                    SMESH::ElementType        theElemType,
6194                                                    CORBA::Double             theX,
6195                                                    CORBA::Double             theY,
6196                                                    CORBA::Double             theZ,
6197                                                    CORBA::Double             theDX,
6198                                                    CORBA::Double             theDY,
6199                                                    CORBA::Double             theDZ,
6200                                                    CORBA::Double             theH,
6201                                                    CORBA::Double             theR ){
6202   SMESH::long_array_var aResult = new SMESH::long_array();
6203   if( meshPart->_is_nil() )
6204     return aResult._retn();
6205
6206   gp_Pnt aP( theX, theY, theZ );
6207   gp_Vec aV( theDX, theDY, theDZ );
6208   gp_Ax2 anAxes (aP, aV);
6209
6210   TopoDS_Shape aShape = BRepPrimAPI_MakeCylinder(anAxes, theR, Abs(theH)).Shape();
6211
6212   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape);
6213
6214   if( lst.size() > 0 ) {
6215     aResult->length( lst.size() );
6216     for ( size_t i = 0; i < lst.size(); i++ ) {
6217       aResult[i] = lst[i];
6218     }
6219   }
6220   return aResult._retn();
6221 }
6222
6223 SMESH::long_array* SMESH_Gen_i::GetInside( SMESH::SMESH_IDSource_ptr meshPart,
6224                                            SMESH::ElementType        theElemType,
6225                                            GEOM::GEOM_Object_ptr     theGeom,
6226                                            CORBA::Double             theTolerance ) {
6227   SMESH::long_array_var aResult = new SMESH::long_array();
6228   if( meshPart->_is_nil() || theGeom->_is_nil() )
6229     return aResult._retn();
6230
6231   TopoDS_Shape aShape = GeomObjectToShape( theGeom );
6232
6233   std::vector<long> lst =_GetInside(meshPart, theElemType, aShape, &theTolerance);
6234
6235   if( lst.size() > 0 ) {
6236     aResult->length( lst.size() );
6237     for ( size_t i = 0; i < lst.size(); i++ ) {
6238       aResult[i] = lst[i];
6239     }
6240   }
6241   return aResult._retn();
6242 }
6243
6244
6245
6246 std::vector<long> SMESH_Gen_i::_GetInside( SMESH::SMESH_IDSource_ptr meshPart,
6247                                            SMESH::ElementType theElemType,
6248                                            TopoDS_Shape& aShape,
6249                                            double* theTolerance) {
6250
6251   std::vector<long> res;
6252   SMESH::SMESH_Mesh_var mesh = meshPart->GetMesh();
6253
6254   if ( mesh->_is_nil() )
6255     return res;
6256
6257   SMESH_Mesh_i* anImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( mesh ).in() );
6258   if ( !anImpl )
6259     return res;
6260
6261   const SMDS_Mesh* meshDS = anImpl->GetImpl().GetMeshDS();
6262
6263   if ( !meshDS )
6264     return res;
6265
6266   SMDSAbs_ElementType aType = SMDSAbs_ElementType(theElemType);
6267   SMESH::Controls::ElementsOnShape* anElementsOnShape = new SMESH::Controls::ElementsOnShape();
6268   anElementsOnShape->SetAllNodes( true );
6269   anElementsOnShape->SetMesh( meshDS );
6270   anElementsOnShape->SetShape( aShape, aType );
6271
6272   if(theTolerance)
6273     anElementsOnShape->SetTolerance(*theTolerance);
6274
6275   SMESH::SMESH_Mesh_var msource = SMESH::SMESH_Mesh::_narrow(meshPart);
6276   if ( !msource->_is_nil() ) { // Mesh case
6277     SMDS_ElemIteratorPtr elemIt = meshDS->elementsIterator( aType );
6278     if ( elemIt ) {
6279       while ( elemIt->more() ) {
6280         const SMDS_MeshElement* anElem = elemIt->next();
6281         long anId = anElem->GetID();
6282         if ( anElementsOnShape->IsSatisfy( anId ) )
6283           res.push_back( anId );
6284       }
6285     }
6286   }
6287   SMESH::SMESH_Group_var gsource = SMESH::SMESH_Group::_narrow(meshPart);
6288   if ( !gsource->_is_nil() ) {
6289     if(theElemType == SMESH::NODE) {
6290       SMESH::long_array_var nodes = gsource->GetNodeIDs();
6291       for ( CORBA::ULong i = 0; i < nodes->length(); ++i ) {
6292         if ( const SMDS_MeshNode* node = meshDS->FindNode( nodes[i] )) {
6293           long anId = node->GetID();
6294           if ( anElementsOnShape->IsSatisfy( anId ) )
6295             res.push_back( anId );
6296         }
6297       }
6298     } else if (gsource->GetType() == theElemType || theElemType == SMESH::ALL ) {
6299       SMESH::long_array_var elems = gsource->GetListOfID();
6300       for ( CORBA::ULong i = 0; i < elems->length(); ++i ) {
6301         if ( const SMDS_MeshElement* elem = meshDS->FindElement( elems[i] )) {
6302           long anId = elem->GetID();
6303           if ( anElementsOnShape->IsSatisfy( anId ) )
6304             res.push_back( anId );
6305         }
6306       }
6307     }
6308   }
6309   SMESH::SMESH_subMesh_var smsource = SMESH::SMESH_subMesh::_narrow(meshPart);
6310   if ( !smsource->_is_nil() ) {
6311     SMESH::long_array_var elems = smsource->GetElementsByType( theElemType );
6312     for ( CORBA::ULong i = 0; i < elems->length(); ++i ) {
6313       const SMDS_MeshElement* elem = ( theElemType == SMESH::NODE ) ? meshDS->FindNode( elems[i] ) : meshDS->FindElement( elems[i] );
6314       if (elem) {
6315         long anId = elem->GetID();
6316         if ( anElementsOnShape->IsSatisfy( anId ) )
6317           res.push_back( anId );
6318       }
6319     }
6320   }
6321   return res;
6322 }
6323
6324
6325 //=============================================================================
6326 /*!
6327  *  SMESHEngine_factory
6328  *
6329  *  C factory, accessible with dlsym, after dlopen
6330  */
6331 //=============================================================================
6332
6333 extern "C"
6334 { SMESH_I_EXPORT
6335   PortableServer::ObjectId* SMESHEngine_factory( CORBA::ORB_ptr            orb,
6336                                                  PortableServer::POA_ptr   poa,
6337                                                  PortableServer::ObjectId* contId,
6338                                                  const char*               instanceName,
6339                                                  const char*               interfaceName )
6340   {
6341     if(MYDEBUG) MESSAGE( "PortableServer::ObjectId* SMESHEngine_factory()" );
6342     if(MYDEBUG) SCRUTE(interfaceName);
6343     SMESH_Gen_i* aSMESHGen = new SMESH_Gen_i(orb, poa, contId, instanceName, interfaceName);
6344     return aSMESHGen->getId() ;
6345   }
6346 }