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