Salome HOME
7d57ff91627cee4cfd92c22b0a7a1f9d54ce3a66
[modules/smesh.git] / src / SMESH_I / SMESH_Gen_i.cxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  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. 
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 //
23 //
24 //  File   : SMESH_Gen_i.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #include <TopExp.hxx>
30 #include <TopExp_Explorer.hxx>
31 #include <TopoDS.hxx>
32 #include <TopoDS_Iterator.hxx>
33 #include <TopoDS_Compound.hxx>
34 #include <TopoDS_CompSolid.hxx>
35 #include <TopoDS_Solid.hxx>
36 #include <TopoDS_Shell.hxx>
37 #include <TopoDS_Face.hxx>
38 #include <TopoDS_Wire.hxx>
39 #include <TopoDS_Edge.hxx>
40 #include <TopoDS_Vertex.hxx>
41 #include <TopoDS_Shape.hxx>
42 #include <TopTools_MapOfShape.hxx>
43 #include <TopTools_IndexedMapOfShape.hxx>
44 #include <TopTools_ListOfShape.hxx>
45 #include <TopTools_ListIteratorOfListOfShape.hxx>
46 #include <gp_Pnt.hxx>
47 #include <BRep_Tool.hxx>
48 #include <TCollection_AsciiString.hxx>
49 #include <OSD.hxx>
50
51 #include "Utils_CorbaException.hxx"
52
53 #include "utilities.h"
54 #include <fstream>
55 #include <stdio.h>
56
57 #ifdef WNT
58  #include <windows.h>
59 #else
60  #include <dlfcn.h>
61 #endif
62
63 #ifdef WNT
64  #define LibHandle HMODULE
65  #define LoadLib( name ) LoadLibrary( name )
66  #define GetProc GetProcAddress
67  #define UnLoadLib( handle ) FreeLibrary( handle );
68 #else
69  #define LibHandle void*
70  #define LoadLib( name ) dlopen( name, RTLD_LAZY )
71  #define GetProc dlsym
72  #define UnLoadLib( handle ) dlclose( handle );
73 #endif
74
75 #include <HDFOI.hxx>
76
77 #include "SMESH_Gen_i.hxx"
78 #include "SMESH_Mesh_i.hxx"
79 #include "SMESH_Hypothesis_i.hxx"
80 #include "SMESH_Algo_i.hxx"
81 #include "SMESH_Group_i.hxx"
82 #include "SMESH_PythonDump.hxx"
83
84 #include "SMESHDS_Document.hxx"
85 #include "SMESHDS_Group.hxx"
86 #include "SMESHDS_GroupOnGeom.hxx"
87 #include "SMESH_Mesh.hxx"
88 #include "SMESH_Hypothesis.hxx"
89 #include "SMESH_Group.hxx"
90 #include "SMESH_MeshEditor.hxx"
91
92 #include "SMDS_EdgePosition.hxx"
93 #include "SMDS_FacePosition.hxx"
94 #include "SMDS_VertexPosition.hxx"
95 #include "SMDS_SpacePosition.hxx"
96 #include "SMDS_PolyhedralVolumeOfNodes.hxx"
97
98 #include CORBA_SERVER_HEADER(SMESH_Group)
99 #include CORBA_SERVER_HEADER(SMESH_Filter)
100
101 #include "DriverMED_W_SMESHDS_Mesh.h"
102 #include "DriverMED_R_SMESHDS_Mesh.h"
103
104 #include "SALOMEDS_Tool.hxx"
105 #include "SALOME_NamingService.hxx"
106 #include "SALOME_LifeCycleCORBA.hxx"
107 #include "Utils_SINGLETON.hxx"
108 #include "OpUtil.hxx"
109
110 #include CORBA_CLIENT_HEADER(SALOME_ModuleCatalog)
111
112 #include "GEOM_Client.hxx"
113 #include "Utils_ExceptHandlers.hxx"
114
115 #include <map>
116
117 using namespace std;
118 using SMESH::TPythonDump;
119
120 #define NUM_TMP_FILES 2
121
122 #ifdef _DEBUG_
123 static int MYDEBUG = 0;
124 #else
125 static int MYDEBUG = 0;
126 #endif
127
128 // Static variables definition
129 GEOM::GEOM_Gen_var      SMESH_Gen_i::myGeomGen = GEOM::GEOM_Gen::_nil();
130 CORBA::ORB_var          SMESH_Gen_i::myOrb;
131 PortableServer::POA_var SMESH_Gen_i::myPoa;
132 SALOME_NamingService*   SMESH_Gen_i::myNS  = NULL;
133 SALOME_LifeCycleCORBA*  SMESH_Gen_i::myLCC = NULL;
134 SMESH_Gen_i*            SMESH_Gen_i::mySMESHGen = NULL;
135
136 //=============================================================================
137 /*!
138  *  GetServant [ static ]
139  *
140  *  Get servant of the CORBA object
141  */
142 //=============================================================================
143
144 PortableServer::ServantBase_var SMESH_Gen_i::GetServant( CORBA::Object_ptr theObject )
145 {
146   if( CORBA::is_nil( theObject ) || CORBA::is_nil( GetPOA() ) )
147     return NULL;
148   try {
149     PortableServer::Servant aServant = GetPOA()->reference_to_servant( theObject );
150     return aServant;
151   } 
152   catch (...) {
153     INFOS( "GetServant - Unknown exception was caught!!!" ); 
154     return NULL;
155   }
156 }
157
158 //=============================================================================
159 /*!
160  *  SObjectToObject [ static ]
161  *
162  *  Get CORBA object corresponding to the SALOMEDS::SObject
163  */
164 //=============================================================================
165
166 CORBA::Object_var SMESH_Gen_i::SObjectToObject( SALOMEDS::SObject_ptr theSObject )
167 {
168   SALOMEDS::GenericAttribute_var anAttr;
169   CORBA::Object_var anObj;
170   if ( !theSObject->_is_nil() ) {
171     try {
172       if( theSObject->FindAttribute( anAttr, "AttributeIOR" ) ) {
173         SALOMEDS::AttributeIOR_var anIOR  = SALOMEDS::AttributeIOR::_narrow( anAttr );
174         CORBA::String_var aValue = anIOR->Value();
175         if( strcmp( aValue, "" ) != 0 )
176           anObj = GetORB()->string_to_object( aValue );
177         }
178     }
179     catch( ... ) {
180       INFOS( "SObjectToObject - Unknown exception was caught!!!" );
181     }
182   }
183   return anObj;
184 }
185
186 //=============================================================================
187 /*!
188  *  GetNS [ static ]
189  *
190  *  Get SALOME_NamingService object 
191  */
192 //=============================================================================
193
194 SALOME_NamingService* SMESH_Gen_i::GetNS()
195 {
196   if ( myNS == NULL ) {
197     myNS = SINGLETON_<SALOME_NamingService>::Instance();
198     ASSERT(SINGLETON_<SALOME_NamingService>::IsAlreadyExisting());
199     myNS->init_orb( GetORB() );
200   }
201   return myNS;
202 }
203
204 //=============================================================================
205 /*!
206  *  GetLCC [ static ]
207  *
208  *  Get SALOME_LifeCycleCORBA object
209  */
210 //=============================================================================     
211 SALOME_LifeCycleCORBA*  SMESH_Gen_i::GetLCC() {
212   if ( myLCC == NULL ) {
213     myLCC = new SALOME_LifeCycleCORBA( GetNS() );
214   }
215   return myLCC;
216 }
217
218
219 //=============================================================================
220 /*!
221  *  GetGeomEngine [ static ]
222  *
223  *  Get GEOM::GEOM_Gen reference
224  */
225 //=============================================================================     
226 GEOM::GEOM_Gen_ptr SMESH_Gen_i::GetGeomEngine() {
227   //CCRT GEOM::GEOM_Gen_var aGeomEngine =
228   //CCRT   GEOM::GEOM_Gen::_narrow( GetLCC()->FindOrLoad_Component("FactoryServer","GEOM") );
229   //CCRT return aGeomEngine._retn();
230   if(CORBA::is_nil(myGeomGen))
231   {
232     Engines::Component_ptr temp=GetLCC()->FindOrLoad_Component("FactoryServer","GEOM");
233     myGeomGen=GEOM::GEOM_Gen::_narrow(temp);
234   }
235   return myGeomGen;
236 }
237
238 //=============================================================================
239 /*!
240  *  SMESH_Gen_i::SMESH_Gen_i
241  *
242  *  Default constructor: not for use
243  */
244 //=============================================================================
245
246 SMESH_Gen_i::SMESH_Gen_i()
247 {
248   INFOS( "SMESH_Gen_i::SMESH_Gen_i : default constructor" );
249 }
250
251 //=============================================================================
252 /*!
253  *  SMESH_Gen_i::SMESH_Gen_i 
254  *
255  *  Standard constructor, used with Container
256  */
257 //=============================================================================
258
259 SMESH_Gen_i::SMESH_Gen_i( CORBA::ORB_ptr            orb,
260                           PortableServer::POA_ptr   poa,
261                           PortableServer::ObjectId* contId, 
262                           const char*               instanceName, 
263                           const char*               interfaceName )
264      : Engines_Component_i( orb, poa, contId, instanceName, interfaceName )
265 {
266   MESSAGE( "SMESH_Gen_i::SMESH_Gen_i : standard constructor" );
267
268   myOrb = CORBA::ORB::_duplicate(orb);
269   myPoa = PortableServer::POA::_duplicate(poa);
270   
271   _thisObj = this ;
272   _id = myPoa->activate_object( _thisObj );
273   
274   myIsEmbeddedMode = false;
275   myShapeReader = NULL;  // shape reader
276   mySMESHGen = this;
277
278   // set it in standalone mode only
279   //OSD::SetSignal( true );
280 }
281
282 //=============================================================================
283 /*!
284  *  SMESH_Gen_i::~SMESH_Gen_i
285  *
286  *  Destructor
287  */
288 //=============================================================================
289
290 SMESH_Gen_i::~SMESH_Gen_i()
291 {
292   INFOS( "SMESH_Gen_i::~SMESH_Gen_i" );
293
294   // delete hypothesis creators
295   map<string, GenericHypothesisCreator_i*>::iterator itHyp;
296   for (itHyp = myHypCreatorMap.begin(); itHyp != myHypCreatorMap.end(); itHyp++)
297   {
298     delete (*itHyp).second;
299   }
300   myHypCreatorMap.clear();
301
302   // Clear study contexts data
303   map<int, StudyContext*>::iterator it;
304   for ( it = myStudyContextMap.begin(); it != myStudyContextMap.end(); ++it ) {
305     delete it->second;
306   }
307   myStudyContextMap.clear();
308   // delete shape reader
309   if ( !myShapeReader ) 
310     delete myShapeReader;
311 }
312   
313 //=============================================================================
314 /*!
315  *  SMESH_Gen_i::createHypothesis
316  *
317  *  Create hypothesis of given type
318  */
319 //=============================================================================
320 SMESH::SMESH_Hypothesis_ptr SMESH_Gen_i::createHypothesis(const char* theHypName,
321                                                           const char* theLibName)
322      throw (SALOME::SALOME_Exception)
323 {
324   /* It's Need to tranlate lib name for WIN32 or X platform */
325   char* aPlatformLibName = 0;
326   if ( theLibName && theLibName[0] != '\0'  )
327   {
328     int libNameLen = strlen(theLibName);
329     //check for old format "libXXXXXXX.so"
330     if( libNameLen > 7 && !strncmp( theLibName, "lib", 3 ) && !strcmp( theLibName+libNameLen-3, ".so" ) )
331       {
332         //the old format
333 #ifdef WNT
334         aPlatformLibName = new char[libNameLen - 1];
335         aPlatformLibName[0] = '\0';
336         aPlatformLibName = strncat( aPlatformLibName, theLibName+3, libNameLen-6  );
337         aPlatformLibName = strcat( aPlatformLibName, ".dll" );
338   aPlatformLibName[libNameLen - 2] = '\0';
339 #else
340         aPlatformLibName = new char[ libNameLen + 1];
341         aPlatformLibName[0] = '\0';
342         aPlatformLibName = strcat( aPlatformLibName, theLibName );
343   aPlatformLibName[libNameLen] = '\0';
344 #endif
345
346       }
347     else
348       {
349         //try to use new format 
350 #ifdef WNT
351         aPlatformLibName = new char[ libNameLen + 5 ];
352         aPlatformLibName[0] = '\0';
353         aPlatformLibName = strcat( aPlatformLibName, theLibName );
354         aPlatformLibName = strcat( aPlatformLibName, ".dll" );
355 #else
356         aPlatformLibName = new char[ libNameLen + 7 ];
357         aPlatformLibName[0] = '\0';
358         aPlatformLibName = strcat( aPlatformLibName, "lib" );
359         aPlatformLibName = strcat( aPlatformLibName, theLibName );
360         aPlatformLibName = strcat( aPlatformLibName, ".so" );
361 #endif
362       }
363   }
364   
365
366
367   Unexpect aCatch(SALOME_SalomeException);
368   if(MYDEBUG) MESSAGE( "Create Hypothesis <" << theHypName << "> from " << aPlatformLibName/*theLibName*/);
369
370   // create a new hypothesis object servant
371   SMESH_Hypothesis_i* myHypothesis_i = 0;
372   SMESH::SMESH_Hypothesis_var hypothesis_i;
373
374   try
375   {
376     // check, if creator for this hypothesis type already exists
377     if (myHypCreatorMap.find(string(theHypName)) == myHypCreatorMap.end())
378     {
379       // load plugin library
380       if(MYDEBUG) MESSAGE("Loading server meshers plugin library ...");
381       LibHandle libHandle = LoadLib( aPlatformLibName/*theLibName*/ );
382       if (!libHandle)
383       {
384         // report any error, if occured
385 #ifndef WNT
386         const char* anError = dlerror();
387         throw(SALOME_Exception(anError));
388 #else
389         throw(SALOME_Exception(LOCALIZED( "Can't load server meshers plugin library" )));
390 #endif
391       }
392
393       // get method, returning hypothesis creator
394       if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
395       typedef GenericHypothesisCreator_i* (*GetHypothesisCreator)(const char* theHypName);
396       GetHypothesisCreator procHandle =
397         (GetHypothesisCreator)GetProc( libHandle, "GetHypothesisCreator" );
398       if (!procHandle)
399       {
400         throw(SALOME_Exception(LOCALIZED("bad hypothesis plugin library")));
401         UnLoadLib(libHandle);
402       }
403
404       // get hypothesis creator
405       if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << theHypName);
406       GenericHypothesisCreator_i* aCreator = procHandle(theHypName);
407       if (!aCreator)
408       {
409         throw(SALOME_Exception(LOCALIZED("no such a hypothesis in this plugin")));
410       }
411
412       // map hypothesis creator to a hypothesis name
413       myHypCreatorMap[string(theHypName)] = aCreator;
414     }
415
416     // create a new hypothesis object, store its ref. in studyContext
417     if(MYDEBUG) MESSAGE("Create Hypothesis " << theHypName);
418     myHypothesis_i =
419       myHypCreatorMap[string(theHypName)]->Create (myPoa, GetCurrentStudyID(), &myGen);
420     myHypothesis_i->SetLibName(aPlatformLibName/*theLibName*/); // for persistency assurance
421   }
422   catch (SALOME_Exception& S_ex)
423   {
424     THROW_SALOME_CORBA_EXCEPTION(S_ex.what(), SALOME::BAD_PARAM);
425   }
426
427   if ( aPlatformLibName )
428     delete[] aPlatformLibName;
429
430   if (!myHypothesis_i)
431     return hypothesis_i._retn();
432
433   // activate the CORBA servant of hypothesis
434   hypothesis_i = SMESH::SMESH_Hypothesis::_narrow( myHypothesis_i->_this() );
435   int nextId = RegisterObject( hypothesis_i );
436   if(MYDEBUG) MESSAGE( "Add hypo to map with id = "<< nextId );  
437
438   return hypothesis_i._retn();
439 }
440   
441 //=============================================================================
442 /*!
443  *  SMESH_Gen_i::createMesh
444  *
445  *  Create empty mesh on shape
446  */
447 //=============================================================================
448 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::createMesh()
449      throw ( SALOME::SALOME_Exception )
450 {
451   Unexpect aCatch(SALOME_SalomeException);
452   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::createMesh" );
453
454   // Get or create the GEOM_Client instance
455   try {
456     // create a new mesh object servant, store it in a map in study context
457     SMESH_Mesh_i* meshServant = new SMESH_Mesh_i( GetPOA(), this, GetCurrentStudyID() );
458     // create a new mesh object
459     meshServant->SetImpl( myGen.CreateMesh( GetCurrentStudyID(), myIsEmbeddedMode ));
460
461     // activate the CORBA servant of Mesh
462     SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( meshServant->_this() );
463     int nextId = RegisterObject( mesh );
464     if(MYDEBUG) MESSAGE( "Add mesh to map with id = "<< nextId);
465     return mesh._retn();
466   }
467   catch (SALOME_Exception& S_ex) {
468     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
469   }
470   return SMESH::SMESH_Mesh::_nil();
471 }
472
473 //=============================================================================
474 /*!
475  *  SMESH_Gen_i::GetShapeReader
476  *
477  *  Get shape reader
478  */
479 //=============================================================================
480 GEOM_Client* SMESH_Gen_i::GetShapeReader()
481 {
482   // create shape reader if necessary
483   if ( !myShapeReader ) 
484     myShapeReader = new GEOM_Client(GetContainerRef());
485   ASSERT( myShapeReader );
486   return myShapeReader;
487 }
488
489 //=============================================================================
490 /*!
491  *  SMESH_Gen_i::SetGeomEngine
492  *
493  *  Set GEOM::GEOM_Gen reference
494  */
495 //=============================================================================
496 //GEOM::GEOM_Gen_ptr SMESH_Gen_i::SetGeomEngine( const char* containerLoc )
497 void SMESH_Gen_i::SetGeomEngine( GEOM::GEOM_Gen_ptr geomcompo )
498 {
499   //Engines::Component_ptr temp=GetLCC()->FindOrLoad_Component(containerLoc,"GEOM");
500   //myGeomGen=GEOM::GEOM_Gen::_narrow(temp);
501   myGeomGen=GEOM::GEOM_Gen::_duplicate(geomcompo);
502   //return myGeomGen;
503 }
504
505 //=============================================================================
506 /*!
507  *  SMESH_Gen_i::SetEmbeddedMode
508  *
509  *  Set current mode
510  */
511 //=============================================================================
512
513 void SMESH_Gen_i::SetEmbeddedMode( CORBA::Boolean theMode )
514 {
515   myIsEmbeddedMode = theMode;
516
517   if ( !myIsEmbeddedMode ) {
518     //PAL10867: disable signals catching with "noexcepthandler" option
519     char* envNoCatchSignals = getenv("NOT_INTERCEPT_SIGNALS");
520     if (!envNoCatchSignals || !atoi(envNoCatchSignals))
521     {
522       bool raiseFPE;
523 #ifdef _DEBUG_
524       raiseFPE = true;
525       char* envDisableFPE = getenv("DISABLE_FPE");
526       if (envDisableFPE && atoi(envDisableFPE))
527         raiseFPE = false;
528 #else
529       raiseFPE = false;
530 #endif
531       OSD::SetSignal( raiseFPE );
532     }
533     // else OSD::SetSignal() is called in GUI
534   }
535 }
536
537 //=============================================================================
538 /*!
539  *  SMESH_Gen_i::IsEmbeddedMode
540  *
541  *  Get current mode
542  */
543 //=============================================================================
544
545 CORBA::Boolean SMESH_Gen_i::IsEmbeddedMode()
546 {
547   return myIsEmbeddedMode;
548 }
549
550 //=============================================================================
551 /*!
552  *  SMESH_Gen_i::SetCurrentStudy
553  *
554  *  Set current study
555  */
556 //=============================================================================
557
558 void SMESH_Gen_i::SetCurrentStudy( SALOMEDS::Study_ptr theStudy )
559 {
560   //if(MYDEBUG)
561   //MESSAGE( "SMESH_Gen_i::SetCurrentStudy" );
562   myCurrentStudy = SALOMEDS::Study::_duplicate( theStudy );
563   // create study context, if it doesn't exist and set current study
564   int studyId = GetCurrentStudyID();
565   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SetCurrentStudy: study Id = " << studyId );
566   if ( myStudyContextMap.find( studyId ) == myStudyContextMap.end() ) {
567     myStudyContextMap[ studyId ] = new StudyContext;      
568   }
569
570   // myCurrentStudy may be nil
571   if ( !CORBA::is_nil( myCurrentStudy ) ) {
572     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder(); 
573     if( !myCurrentStudy->FindComponent( "GEOM" )->_is_nil() )
574       aStudyBuilder->LoadWith( myCurrentStudy->FindComponent( "GEOM" ), GetGeomEngine() );
575
576   // set current study for geom engine
577   //if ( !CORBA::is_nil( GetGeomEngine() ) )
578   //  GetGeomEngine()->GetCurrentStudy( myCurrentStudy->StudyId() );
579   }
580 }
581
582 //=============================================================================
583 /*!
584  *  SMESH_Gen_i::GetCurrentStudy
585  *
586  *  Get current study
587  */
588 //=============================================================================
589
590 SALOMEDS::Study_ptr SMESH_Gen_i::GetCurrentStudy()
591 {
592   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetCurrentStudy: study Id = " << GetCurrentStudyID() );
593   return SALOMEDS::Study::_duplicate( myCurrentStudy );
594 }
595
596 //=============================================================================
597 /*!
598  *  SMESH_Gen_i::GetCurrentStudyContext 
599  *
600  *  Get current study context
601  */
602 //=============================================================================
603 StudyContext* SMESH_Gen_i::GetCurrentStudyContext()
604 {
605   if ( !CORBA::is_nil( myCurrentStudy ) &&
606       myStudyContextMap.find( GetCurrentStudyID() ) != myStudyContextMap.end() )
607     return myStudyContextMap[ myCurrentStudy->StudyId() ];
608   else
609     return 0;
610 }
611
612 //=============================================================================
613 /*!
614  *  SMESH_Gen_i::CreateHypothesis 
615  *
616  *  Create hypothesis/algorothm of given type and publish it in the study
617  */
618 //=============================================================================
619
620 SMESH::SMESH_Hypothesis_ptr SMESH_Gen_i::CreateHypothesis( const char* theHypName,
621                                                            const char* theLibName )
622      throw ( SALOME::SALOME_Exception )
623 {
624   Unexpect aCatch(SALOME_SalomeException);
625   // Create hypothesis/algorithm
626   SMESH::SMESH_Hypothesis_var hyp = this->createHypothesis( theHypName, theLibName );
627
628   // Publish hypothesis/algorithm in the study
629   if ( CanPublishInStudy( hyp ) ) {
630     SALOMEDS::SObject_var aSO = PublishHypothesis( myCurrentStudy, hyp );
631     if ( !aSO->_is_nil() ) {
632       // Update Python script
633       TPythonDump() << aSO << " = " << this << ".CreateHypothesis('"
634                     << theHypName << "', '" << theLibName << "')";
635     }
636   }
637
638   return hyp._retn();
639 }
640
641 //================================================================================
642 /*!
643  * \brief Return hypothesis of given type holding parameter values of the existing mesh
644   * \param theHypType - hypothesis type name
645   * \param theLibName - plugin library name
646   * \param theMesh - The mesh of interest
647   * \param theGeom - The shape to get parameter values from
648   * \retval SMESH::SMESH_Hypothesis_ptr - The returned hypothesis may be the one existing
649   *    in a study and used to compute the mesh, or a temporary one created just to pass
650   *    parameter values
651  */
652 //================================================================================
653
654 SMESH::SMESH_Hypothesis_ptr
655 SMESH_Gen_i::GetHypothesisParameterValues (const char*           theHypType,
656                                            const char*           theLibName,
657                                            SMESH::SMESH_Mesh_ptr theMesh,
658                                            GEOM::GEOM_Object_ptr theGeom)
659     throw ( SALOME::SALOME_Exception )
660 {
661   Unexpect aCatch(SALOME_SalomeException);
662   if ( CORBA::is_nil( theMesh ) )
663     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference", SALOME::BAD_PARAM );
664   if ( CORBA::is_nil( theGeom ) )
665     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
666
667   // -----------------------------------------------
668   // find hypothesis used to mesh theGeom
669   // -----------------------------------------------
670
671   // get mesh and shape
672   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
673   TopoDS_Shape shape = GeomObjectToShape( theGeom );
674   if ( !meshServant || shape.IsNull() )
675     return SMESH::SMESH_Hypothesis::_nil();
676   ::SMESH_Mesh& mesh = meshServant->GetImpl();
677
678   if ( mesh.NbNodes() == 0 ) // empty mesh
679     return SMESH::SMESH_Hypothesis::_nil();
680
681   // create a temporary hypothesis to know its dimention
682   SMESH::SMESH_Hypothesis_var tmpHyp = this->createHypothesis( theHypType, theLibName );
683   SMESH_Hypothesis_i* hypServant = SMESH::DownCast<SMESH_Hypothesis_i*>( tmpHyp );
684   if ( !hypServant )
685     return SMESH::SMESH_Hypothesis::_nil();
686   ::SMESH_Hypothesis* hyp = hypServant->GetImpl();
687
688   // look for a hypothesis of theHypType used to mesh the shape
689   if ( myGen.GetShapeDim( shape ) == hyp->GetDim() )
690   {
691     // check local shape
692     SMESH::ListOfHypothesis_var aHypList = theMesh->GetHypothesisList( theGeom );
693     int nbLocalHyps = aHypList->length();
694     for ( int i = 0; i < nbLocalHyps; i++ )
695       if ( strcmp( theHypType, aHypList[i]->GetName() ) == 0 ) // FOUND local!
696         return SMESH::SMESH_Hypothesis::_duplicate( aHypList[i] );
697     // check super shapes
698     TopTools_ListIteratorOfListOfShape itShape( mesh.GetAncestors( shape ));
699     while ( nbLocalHyps == 0 && itShape.More() ) {
700       GEOM::GEOM_Object_ptr geomObj = ShapeToGeomObject( itShape.Value() );
701       if ( ! CORBA::is_nil( geomObj )) {
702         SMESH::ListOfHypothesis_var aHypList = theMesh->GetHypothesisList( geomObj );
703         nbLocalHyps = aHypList->length();
704         for ( int i = 0; i < nbLocalHyps; i++ )
705           if ( strcmp( theHypType, aHypList[i]->GetName() ) == 0 ) // FOUND global!
706             return SMESH::SMESH_Hypothesis::_duplicate( aHypList[i] );
707       }
708       itShape.Next();
709     }
710   }
711
712   // let the temporary hypothesis find out some how parameter values
713   if ( hyp->SetParametersByMesh( &mesh, shape ))
714     return SMESH::SMESH_Hypothesis::_duplicate( tmpHyp );
715     
716   return SMESH::SMESH_Hypothesis::_nil();
717 }
718
719 //=============================================================================
720 /*!
721  *  SMESH_Gen_i::CreateMesh
722  *
723  *  Create empty mesh on a shape and publish it in the study
724  */
725 //=============================================================================
726
727 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMesh( GEOM::GEOM_Object_ptr theShapeObject )
728      throw ( SALOME::SALOME_Exception )
729 {
730   Unexpect aCatch(SALOME_SalomeException);
731   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMesh" );
732   // create mesh
733   SMESH::SMESH_Mesh_var mesh = this->createMesh();
734   // set shape
735   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
736   ASSERT( meshServant );
737   meshServant->SetShape( theShapeObject );
738
739   // publish mesh in the study
740   if ( CanPublishInStudy( mesh ) ) {
741     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
742     aStudyBuilder->NewCommand();  // There is a transaction
743     SALOMEDS::SObject_var aSO = PublishMesh( myCurrentStudy, mesh.in() );
744     aStudyBuilder->CommitCommand();
745     if ( !aSO->_is_nil() ) {
746       // Update Python script
747       TPythonDump() << aSO << " = " << this << ".CreateMesh(" << theShapeObject << ")";
748     }
749   }
750
751   return mesh._retn();
752 }
753
754 //=============================================================================
755 /*!
756  *  SMESH_Gen_i::CreateEmptyMesh
757  *
758  *  Create empty mesh
759  */
760 //=============================================================================
761
762 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateEmptyMesh()
763      throw ( SALOME::SALOME_Exception )
764 {
765   Unexpect aCatch(SALOME_SalomeException);
766   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMesh" );
767   // create mesh
768   SMESH::SMESH_Mesh_var mesh = this->createMesh();
769
770   // publish mesh in the study
771   if ( CanPublishInStudy( mesh ) ) {
772     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
773     aStudyBuilder->NewCommand();  // There is a transaction
774     SALOMEDS::SObject_var aSO = PublishMesh( myCurrentStudy, mesh.in() );
775     aStudyBuilder->CommitCommand();
776     if ( !aSO->_is_nil() ) {
777       // Update Python script
778       TPythonDump() << aSO << " = " << this << ".CreateEmptyMesh()";
779     }
780   }
781
782   return mesh._retn();
783 }
784
785 //=============================================================================
786 /*!
787  *  SMESH_Gen_i::CreateMeshFromUNV
788  *
789  *  Create mesh and import data from UNV file
790  */
791 //=============================================================================
792
793 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMeshesFromUNV( const char* theFileName )
794   throw ( SALOME::SALOME_Exception )
795 {
796   Unexpect aCatch(SALOME_SalomeException);
797   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMeshesFromUNV" );
798
799   SMESH::SMESH_Mesh_var aMesh = createMesh();
800   string aFileName;
801   // publish mesh in the study
802   if ( CanPublishInStudy( aMesh ) ) {
803     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
804     aStudyBuilder->NewCommand();  // There is a transaction
805     SALOMEDS::SObject_var aSO = PublishMesh( myCurrentStudy, aMesh.in(), aFileName.c_str() );
806     aStudyBuilder->CommitCommand();
807     if ( !aSO->_is_nil() ) {
808       // Update Python script
809       TPythonDump() << aSO << " = smeshgen.CreateMeshesFromUNV('" << theFileName << "')";
810     }
811   }
812
813   SMESH_Mesh_i* aServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( aMesh ).in() );
814   ASSERT( aServant );
815   aServant->ImportUNVFile( theFileName );
816
817   // Dump creation of groups
818   aServant->GetGroups();
819
820   return aMesh._retn();
821 }
822
823 //=============================================================================
824 /*!
825  *  SMESH_Gen_i::CreateMeshFromMED
826  *
827  *  Create mesh and import data from MED file
828  */
829 //=============================================================================
830
831 SMESH::mesh_array* SMESH_Gen_i::CreateMeshesFromMED( const char* theFileName,
832                                                      SMESH::DriverMED_ReadStatus& theStatus)
833      throw ( SALOME::SALOME_Exception )
834 {
835   Unexpect aCatch(SALOME_SalomeException);
836   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMeshFromMED" );
837
838   // Retrieve mesh names from the file
839   DriverMED_R_SMESHDS_Mesh myReader;
840   myReader.SetFile( theFileName );
841   myReader.SetMeshId( -1 );
842   Driver_Mesh::Status aStatus;
843   list<string> aNames = myReader.GetMeshNames(aStatus);
844   SMESH::mesh_array_var aResult = new SMESH::mesh_array();
845   theStatus = (SMESH::DriverMED_ReadStatus)aStatus;
846
847   { // open a new scope to make aPythonDump die before PythonDump in SMESH_Mesh::GetGroups()
848
849   // Python Dump
850   TPythonDump aPythonDump;
851   aPythonDump << "([";
852   //TCollection_AsciiString aStr ("([");
853
854   if (theStatus == SMESH::DRS_OK) {
855     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
856     aStudyBuilder->NewCommand();  // There is a transaction
857     aResult->length( aNames.size() );
858     int i = 0;
859     
860     // Iterate through all meshes and create mesh objects
861     for ( list<string>::iterator it = aNames.begin(); it != aNames.end(); it++ ) {
862       // Python Dump
863       //if (i > 0) aStr += ", ";
864       if (i > 0) aPythonDump << ", ";
865
866       // create mesh
867       SMESH::SMESH_Mesh_var mesh = createMesh();
868       
869       // publish mesh in the study
870       SALOMEDS::SObject_var aSO;
871       if ( CanPublishInStudy( mesh ) )
872         aSO = PublishMesh( myCurrentStudy, mesh.in(), (*it).c_str() );
873       if ( !aSO->_is_nil() ) {
874         // Python Dump
875         aPythonDump << aSO;
876         //aStr += aSO->GetID();
877       } else {
878         // Python Dump
879         aPythonDump << "mesh_" << i;
880 //         aStr += "mesh_";
881 //         aStr += TCollection_AsciiString(i);
882       }
883
884       // Read mesh data (groups are published automatically by ImportMEDFile())
885       SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( mesh ).in() );
886       ASSERT( meshServant );
887       SMESH::DriverMED_ReadStatus status1 =
888         meshServant->ImportMEDFile( theFileName, (*it).c_str() );
889       if (status1 > theStatus)
890         theStatus = status1;
891
892       aResult[i++] = SMESH::SMESH_Mesh::_duplicate( mesh );
893     }
894     aStudyBuilder->CommitCommand();
895   }
896
897   // Update Python script
898   aPythonDump << "], status) = " << this << ".CreateMeshesFromMED('" << theFileName << "')";
899   }
900   // Dump creation of groups
901   for ( int i = 0; i < aResult->length(); ++i )
902     aResult[ i ]->GetGroups();
903
904   return aResult._retn();
905 }
906
907 //=============================================================================
908 /*!
909  *  SMESH_Gen_i::CreateMeshFromSTL
910  *
911  *  Create mesh and import data from STL file
912  */
913 //=============================================================================
914
915 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateMeshesFromSTL( const char* theFileName )
916   throw ( SALOME::SALOME_Exception )
917 {
918   Unexpect aCatch(SALOME_SalomeException);
919   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::CreateMeshesFromSTL" );
920
921   SMESH::SMESH_Mesh_var aMesh = createMesh();
922   string aFileName;
923   // publish mesh in the study
924   if ( CanPublishInStudy( aMesh ) ) {
925     SALOMEDS::StudyBuilder_var aStudyBuilder = myCurrentStudy->NewBuilder();
926     aStudyBuilder->NewCommand();  // There is a transaction
927     SALOMEDS::SObject_var aSO = PublishInStudy
928       ( myCurrentStudy, SALOMEDS::SObject::_nil(), aMesh.in(), aFileName.c_str() );
929     aStudyBuilder->CommitCommand();
930     if ( !aSO->_is_nil() ) {
931       // Update Python script
932       TPythonDump() << aSO << " = " << this << ".CreateMeshesFromSTL('" << theFileName << "')";
933     }
934   }
935
936   SMESH_Mesh_i* aServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( aMesh ).in() );
937   ASSERT( aServant );
938   aServant->ImportSTLFile( theFileName );
939   return aMesh._retn();
940 }
941
942 //=============================================================================
943 /*!
944  *  SMESH_Gen_i::IsReadyToCompute
945  *
946  *  Returns true if mesh contains enough data to be computed
947  */
948 //=============================================================================
949
950 CORBA::Boolean SMESH_Gen_i::IsReadyToCompute( SMESH::SMESH_Mesh_ptr theMesh,
951                                               GEOM::GEOM_Object_ptr theShapeObject )
952   throw ( SALOME::SALOME_Exception )
953 {
954   Unexpect aCatch(SALOME_SalomeException);
955   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IsReadyToCompute" );
956
957   if ( CORBA::is_nil( theShapeObject ) )
958     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", 
959                                   SALOME::BAD_PARAM );
960
961   if ( CORBA::is_nil( theMesh ) )
962     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
963                                   SALOME::BAD_PARAM );
964
965   try {
966     // get mesh servant
967     SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
968     ASSERT( meshServant );
969     if ( meshServant ) {
970       // get local TopoDS_Shape
971       TopoDS_Shape myLocShape = GeomObjectToShape( theShapeObject );
972       // call implementation
973       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
974       return myGen.CheckAlgoState( myLocMesh, myLocShape );
975     }
976   }
977   catch ( SALOME_Exception& S_ex ) {
978     INFOS( "catch exception "<< S_ex.what() );
979   }
980   return false;
981 }
982
983 //================================================================================
984 /*!
985  * \brief  Find SObject for an algo
986  */
987 //================================================================================
988
989 SALOMEDS::SObject_ptr SMESH_Gen_i::GetAlgoSO(const ::SMESH_Algo* algo)
990 {
991   if ( algo ) {
992     if ( !myCurrentStudy->_is_nil() ) {
993       // find algo in the study
994       SALOMEDS::SComponent_var father = SALOMEDS::SComponent::_narrow
995         ( myCurrentStudy->FindComponent( ComponentDataType() ) );
996       if ( !father->_is_nil() ) {
997         SALOMEDS::ChildIterator_var itBig = myCurrentStudy->NewChildIterator( father );
998         for ( ; itBig->More(); itBig->Next() ) {
999           SALOMEDS::SObject_var gotBranch = itBig->Value();
1000           if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
1001             SALOMEDS::ChildIterator_var algoIt = myCurrentStudy->NewChildIterator( gotBranch );
1002             for ( ; algoIt->More(); algoIt->Next() ) {
1003               SALOMEDS::SObject_var algoSO = algoIt->Value();
1004               CORBA::Object_var     algoIOR = SObjectToObject( algoSO );
1005               if ( !CORBA::is_nil( algoIOR )) {
1006                 SMESH_Hypothesis_i* impl = SMESH::DownCast<SMESH_Hypothesis_i*>( algoIOR );
1007                 if ( impl && impl->GetImpl() == algo )
1008                   return algoSO._retn();
1009               }
1010             } // loop on algo SO's
1011             break;
1012           } // if algo tag
1013         } // SMESH component iterator
1014       }
1015     }
1016   }
1017   return SALOMEDS::SObject::_nil();
1018 }
1019
1020 //================================================================================
1021 /*!
1022  * \brief Return errors of mesh computation
1023  */
1024 //================================================================================
1025
1026 SMESH::compute_error_array* SMESH_Gen_i::GetComputeErrors( SMESH::SMESH_Mesh_ptr theMesh, 
1027                                                            GEOM::GEOM_Object_ptr theSubObject )
1028   throw ( SALOME::SALOME_Exception )
1029 {
1030   Unexpect aCatch(SALOME_SalomeException);
1031   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetComputeErrors()" );
1032
1033   if ( CORBA::is_nil( theSubObject ) && theMesh->HasShapeToMesh())
1034     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
1035
1036   if ( CORBA::is_nil( theMesh ) )
1037     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1038
1039   SMESH::compute_error_array_var error_array = new SMESH::compute_error_array;
1040   try {
1041     if ( SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh ))
1042     {
1043       TopoDS_Shape shape;
1044       if(theMesh->HasShapeToMesh())
1045         shape = GeomObjectToShape( theSubObject );
1046       else
1047         shape = SMESH_Mesh::PseudoShape();
1048       
1049       ::SMESH_Mesh& mesh = meshServant->GetImpl();
1050
1051       error_array->length( mesh.GetMeshDS()->MaxShapeIndex() );
1052       int nbErr = 0;
1053
1054       SMESH_subMesh *sm = mesh.GetSubMesh(shape);
1055       const bool includeSelf = true, complexShapeFirst = true;
1056       SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator(includeSelf,
1057                                                                complexShapeFirst);
1058       while ( smIt->more() )
1059       {
1060         sm = smIt->next();
1061         if ( sm->GetSubShape().ShapeType() == TopAbs_VERTEX )
1062           break;
1063         SMESH_ComputeErrorPtr error = sm->GetComputeError();
1064         if ( error && !error->IsOK() && error->myAlgo )
1065         {
1066           SMESH::ComputeError & errStruct = error_array[ nbErr++ ];
1067           errStruct.code       = -( error->myName < 0 ? error->myName + 1: error->myName ); // -1 -> 0
1068           errStruct.comment    = error->myComment.c_str();
1069           errStruct.subShapeID = sm->GetId();
1070           SALOMEDS::SObject_var algoSO = GetAlgoSO( error->myAlgo );
1071           if ( !algoSO->_is_nil() )
1072             errStruct.algoName   = algoSO->GetName();
1073           else
1074             errStruct.algoName   = error->myAlgo->GetName();
1075         }
1076       }
1077       error_array->length( nbErr );
1078     }
1079   }
1080   catch ( SALOME_Exception& S_ex ) {
1081     INFOS( "catch exception "<< S_ex.what() );
1082   }
1083
1084   return error_array._retn();
1085 }
1086
1087 //================================================================================
1088 /*!
1089  * \brief Returns errors of hypotheses definintion
1090   * \param theMesh - the mesh
1091   * \param theSubObject - the main or sub- shape
1092   * \retval SMESH::algo_error_array* - sequence of errors
1093  */
1094 //================================================================================
1095
1096 SMESH::algo_error_array* SMESH_Gen_i::GetAlgoState( SMESH::SMESH_Mesh_ptr theMesh, 
1097                                                     GEOM::GEOM_Object_ptr theSubObject )
1098       throw ( SALOME::SALOME_Exception )
1099 {
1100   Unexpect aCatch(SALOME_SalomeException);
1101   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetAlgoState()" );
1102
1103   if ( CORBA::is_nil( theSubObject ) && theMesh->HasShapeToMesh())
1104     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", SALOME::BAD_PARAM );
1105
1106   if ( CORBA::is_nil( theMesh ) )
1107     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",SALOME::BAD_PARAM );
1108
1109   SMESH::algo_error_array_var error_array = new SMESH::algo_error_array;
1110   try {
1111     SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
1112     ASSERT( meshServant );
1113     if ( meshServant ) {
1114       TopoDS_Shape myLocShape;
1115       if(theMesh->HasShapeToMesh())
1116         myLocShape = GeomObjectToShape( theSubObject );
1117       else
1118         myLocShape = SMESH_Mesh::PseudoShape();
1119       
1120       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1121       list< ::SMESH_Gen::TAlgoStateError > error_list;
1122       list< ::SMESH_Gen::TAlgoStateError >::iterator error;
1123       // call ::SMESH_Gen::GetAlgoState()
1124       myGen.GetAlgoState( myLocMesh, myLocShape, error_list );
1125       error_array->length( error_list.size() );
1126       int i = 0;
1127       for ( error = error_list.begin(); error != error_list.end(); ++error )
1128       {
1129         // fill AlgoStateError structure
1130         SMESH::AlgoStateError & errStruct = error_array[ i++ ];
1131         errStruct.state        = SMESH_Mesh_i::ConvertHypothesisStatus( error->_name );
1132         errStruct.algoDim      = error->_algoDim;
1133         errStruct.isGlobalAlgo = error->_isGlobalAlgo;
1134         errStruct.algoName     = "";
1135         SALOMEDS::SObject_var algoSO = GetAlgoSO( error->_algo );
1136         if ( !algoSO->_is_nil() )
1137           errStruct.algoName   = algoSO->GetName();
1138       }
1139     }
1140   }
1141   catch ( SALOME_Exception& S_ex ) {
1142     INFOS( "catch exception "<< S_ex.what() );
1143   }
1144   return error_array._retn();
1145 }
1146
1147 //=============================================================================
1148 /*!
1149  *  SMESH_Gen_i::GetSubShapesId
1150  *
1151  *  Get sub-shapes unique ID's list
1152  */
1153 //=============================================================================
1154
1155 SMESH::long_array* SMESH_Gen_i::GetSubShapesId( GEOM::GEOM_Object_ptr theMainShapeObject,
1156                                             const SMESH::object_array& theListOfSubShapeObject )
1157      throw ( SALOME::SALOME_Exception )
1158 {
1159   Unexpect aCatch(SALOME_SalomeException);
1160   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::GetSubShapesId" );
1161
1162   SMESH::long_array_var shapesId = new SMESH::long_array;
1163   set<int> setId;
1164
1165   if ( CORBA::is_nil( theMainShapeObject ) )
1166     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference",
1167                                   SALOME::BAD_PARAM );
1168
1169   try
1170     {
1171       TopoDS_Shape myMainShape = GeomObjectToShape(theMainShapeObject);
1172       TopTools_IndexedMapOfShape myIndexToShape;      
1173       TopExp::MapShapes(myMainShape,myIndexToShape);
1174
1175       for ( int i = 0; i < theListOfSubShapeObject.length(); i++ )
1176         {
1177           GEOM::GEOM_Object_var aShapeObject
1178             = GEOM::GEOM_Object::_narrow(theListOfSubShapeObject[i]);
1179           if ( CORBA::is_nil( aShapeObject ) )
1180             THROW_SALOME_CORBA_EXCEPTION ("bad shape object reference", \
1181                                         SALOME::BAD_PARAM );
1182
1183           TopoDS_Shape locShape  = GeomObjectToShape(aShapeObject);
1184           for (TopExp_Explorer exp(locShape,TopAbs_FACE); exp.More(); exp.Next())
1185             {
1186               const TopoDS_Face& F = TopoDS::Face(exp.Current());
1187               setId.insert(myIndexToShape.FindIndex(F));
1188               if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(F));
1189             }
1190           for (TopExp_Explorer exp(locShape,TopAbs_EDGE); exp.More(); exp.Next())
1191             {
1192               const TopoDS_Edge& E = TopoDS::Edge(exp.Current());
1193               setId.insert(myIndexToShape.FindIndex(E));
1194               if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(E));
1195             }
1196           for (TopExp_Explorer exp(locShape,TopAbs_VERTEX); exp.More(); exp.Next())
1197             {
1198               const TopoDS_Vertex& V = TopoDS::Vertex(exp.Current());
1199               setId.insert(myIndexToShape.FindIndex(V));
1200               if(MYDEBUG) SCRUTE(myIndexToShape.FindIndex(V));
1201             }
1202         }
1203       shapesId->length(setId.size());
1204       set<int>::iterator iind;
1205       int i=0;
1206       for (iind = setId.begin(); iind != setId.end(); iind++)
1207         {
1208           if(MYDEBUG) SCRUTE((*iind));
1209           shapesId[i] = (*iind);
1210           if(MYDEBUG) SCRUTE(shapesId[i]);
1211           i++;
1212         }
1213     }
1214   catch (SALOME_Exception& S_ex)
1215     {
1216       THROW_SALOME_CORBA_EXCEPTION(S_ex.what(), SALOME::BAD_PARAM);
1217     }
1218
1219   return shapesId._retn();
1220 }
1221
1222 //=============================================================================
1223 /*!
1224  *  SMESH_Gen_i::Compute
1225  *
1226  *  Compute mesh on a shape
1227  */
1228 //=============================================================================
1229
1230 CORBA::Boolean SMESH_Gen_i::Compute( SMESH::SMESH_Mesh_ptr theMesh,
1231                                      GEOM::GEOM_Object_ptr theShapeObject )
1232      throw ( SALOME::SALOME_Exception )
1233 {
1234   Unexpect aCatch(SALOME_SalomeException);
1235   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Compute" );
1236
1237   if ( CORBA::is_nil( theShapeObject ) && theMesh->HasShapeToMesh())
1238     THROW_SALOME_CORBA_EXCEPTION( "bad shape object reference", 
1239                                   SALOME::BAD_PARAM );
1240
1241   if ( CORBA::is_nil( theMesh ) )
1242     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference",
1243                                   SALOME::BAD_PARAM );
1244
1245   // Update Python script
1246   TPythonDump() << "isDone = " << this << ".Compute( "
1247                 << theMesh << ", " << theShapeObject << ")";
1248
1249   try {
1250     // get mesh servant
1251     SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( GetServant( theMesh ).in() );
1252     ASSERT( meshServant );
1253     if ( meshServant ) {
1254       // NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
1255       meshServant->CheckGeomGroupModif();
1256       // get local TopoDS_Shape
1257       TopoDS_Shape myLocShape;
1258       if(theMesh->HasShapeToMesh())
1259         myLocShape = GeomObjectToShape( theShapeObject );
1260       else
1261         myLocShape = SMESH_Mesh::PseudoShape();
1262       // call implementation compute
1263       ::SMESH_Mesh& myLocMesh = meshServant->GetImpl();
1264       return myGen.Compute( myLocMesh, myLocShape);
1265     }
1266   }
1267   catch ( std::bad_alloc ) {
1268     INFOS( "Compute(): lack of memory" );
1269   }
1270   catch ( SALOME_Exception& S_ex ) {
1271     INFOS( "Compute(): catch exception "<< S_ex.what() );
1272   }
1273   catch ( ... ) {
1274     INFOS( "Compute(): unknown exception " );
1275   }
1276   return false;
1277 }
1278
1279 //================================================================================
1280 /*!
1281  * \brief Return geometrical object the given element is built on
1282  *  \param theMesh - the mesh the element is in
1283  *  \param theElementID - the element ID
1284  *  \param theGeomName - the name of the result geom object if it is not yet published
1285  *  \retval GEOM::GEOM_Object_ptr - the found or just published geom object
1286  */
1287 //================================================================================
1288
1289 GEOM::GEOM_Object_ptr
1290 SMESH_Gen_i::GetGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
1291                                        CORBA::Long            theElementID,
1292                                        const char*            theGeomName)
1293   throw ( SALOME::SALOME_Exception )
1294 {
1295   Unexpect aCatch(SALOME_SalomeException);
1296  
1297   GEOM::GEOM_Object_var geom = FindGeometryByMeshElement(theMesh, theElementID);
1298   if ( !geom->_is_nil() ) {
1299     GEOM::GEOM_Object_var mainShape = theMesh->GetShapeToMesh();
1300     GEOM::GEOM_Gen_ptr    geomGen   = GetGeomEngine();
1301
1302     // try to find the corresponding SObject
1303     SALOMEDS::SObject_var SObj = ObjectToSObject( myCurrentStudy, geom.in() );
1304     if ( SObj->_is_nil() ) // submesh can be not found even if published
1305     {
1306       // try to find published submesh
1307       GEOM::ListOfLong_var list = geom->GetSubShapeIndices();
1308       if ( !geom->IsMainShape() && list->length() == 1 ) {
1309         SALOMEDS::SObject_var mainSO = ObjectToSObject( myCurrentStudy, mainShape );
1310         SALOMEDS::ChildIterator_var it;
1311         if ( !mainSO->_is_nil() )
1312           it = myCurrentStudy->NewChildIterator( mainSO );
1313         if ( !it->_is_nil() ) {
1314           for ( it->InitEx(true); SObj->_is_nil() && it->More(); it->Next() ) {
1315             GEOM::GEOM_Object_var subGeom =
1316               GEOM::GEOM_Object::_narrow( SObjectToObject( it->Value() ));
1317             if ( !subGeom->_is_nil() ) {
1318               GEOM::ListOfLong_var subList = subGeom->GetSubShapeIndices();
1319               if ( subList->length() == 1 && list[0] == subList[0] ) {
1320                 SObj = it->Value();
1321                 geom = subGeom;
1322               }
1323             }
1324           }
1325         }
1326       }
1327     }
1328     if ( SObj->_is_nil() ) // publish a new subshape
1329       SObj = geomGen->AddInStudy( myCurrentStudy, geom, theGeomName, mainShape );
1330
1331     // return only published geometry
1332     if ( !SObj->_is_nil() )
1333       return geom._retn();
1334   }
1335   return GEOM::GEOM_Object::_nil();
1336 }
1337
1338 //================================================================================
1339 /*!
1340  * \brief Return geometrical object the given element is built on.
1341  *  \param theMesh - the mesh the element is in
1342  *  \param theElementID - the element ID
1343  *  \retval GEOM::GEOM_Object_ptr - the found geom object
1344  */
1345 //================================================================================
1346
1347 GEOM::GEOM_Object_ptr
1348 SMESH_Gen_i::FindGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
1349                                         CORBA::Long            theElementID)
1350   throw ( SALOME::SALOME_Exception )
1351 {
1352   Unexpect aCatch(SALOME_SalomeException);
1353   if ( CORBA::is_nil( theMesh ) )
1354     THROW_SALOME_CORBA_EXCEPTION( "bad Mesh reference", SALOME::BAD_PARAM );
1355
1356   GEOM::GEOM_Object_var mainShape = theMesh->GetShapeToMesh();
1357   GEOM::GEOM_Gen_ptr    geomGen   = GetGeomEngine();
1358
1359   // get a core mesh DS
1360   SMESH_Mesh_i* meshServant = SMESH::DownCast<SMESH_Mesh_i*>( theMesh );
1361   if ( meshServant && !geomGen->_is_nil() && !mainShape->_is_nil() )
1362   {
1363     ::SMESH_Mesh & mesh = meshServant->GetImpl();
1364     SMESHDS_Mesh* meshDS = mesh.GetMeshDS();
1365     // find the element in mesh
1366     if ( const SMDS_MeshElement * elem = meshDS->FindElement( theElementID ) ) {
1367       // find a shape id by the element
1368       if ( int shapeID = ::SMESH_MeshEditor( &mesh ).FindShape( elem )) {
1369         // get a geom object by the shape id
1370         GEOM::GEOM_Object_var geom = ShapeToGeomObject( meshDS->IndexToShape( shapeID ));
1371         if ( geom->_is_nil() ) {
1372           // try to find a published sub-shape
1373           SALOMEDS::SObject_var mainSO = ObjectToSObject( myCurrentStudy, mainShape );
1374           SALOMEDS::ChildIterator_var it;
1375           if ( !mainSO->_is_nil() )
1376             it = myCurrentStudy->NewChildIterator( mainSO );
1377           if ( !it->_is_nil() ) {
1378             for ( it->InitEx(true); it->More(); it->Next() ) {
1379               GEOM::GEOM_Object_var subGeom =
1380                 GEOM::GEOM_Object::_narrow( SObjectToObject( it->Value() ));
1381               if ( !subGeom->_is_nil() ) {
1382                 GEOM::ListOfLong_var subList = subGeom->GetSubShapeIndices();
1383                 if ( subList->length() == 1 && shapeID == subList[0] ) {
1384                   geom = subGeom;
1385                   break;
1386                 }
1387               }
1388             }
1389           }
1390         }
1391         if ( geom->_is_nil() ) {
1392           // explode
1393           GEOM::GEOM_IShapesOperations_var op =
1394             geomGen->GetIShapesOperations( GetCurrentStudyID() );
1395           if ( !op->_is_nil() )
1396             geom = op->GetSubShape( mainShape, shapeID );
1397         }
1398         if ( !geom->_is_nil() ) {
1399           GeomObjectToShape( geom ); // let geom client remember the found shape
1400           return geom._retn();
1401         }
1402       }
1403     }
1404   }
1405   return GEOM::GEOM_Object::_nil();
1406 }
1407
1408 //================================================================================
1409 /*!
1410  *  SMESH_Gen_i::Concatenate
1411  *
1412  *  Concatenate the given meshes into one mesh
1413  */
1414 //================================================================================
1415
1416 SMESH::SMESH_Mesh_ptr SMESH_Gen_i::Concatenate(const SMESH::mesh_array& theMeshesArray,
1417                                                CORBA::Boolean           theUniteIdenticalGroups, 
1418                                                CORBA::Boolean           theMergeNodesAndElements, 
1419                                                CORBA::Double            theMergeTolerance)
1420   throw ( SALOME::SALOME_Exception )
1421 {
1422   typedef map<int, int> TIDsMap;
1423   typedef list<SMESH::SMESH_Group_var> TListOfNewGroups;
1424   typedef map< pair<string, SMESH::ElementType>, TListOfNewGroups > TGroupsMap;
1425   typedef std::set<SMESHDS_GroupBase*> TGroups;
1426
1427   TPythonDump aPythonDump; // prevent dump of called methods
1428
1429   // create mesh
1430   SMESH::SMESH_Mesh_var aNewMesh = CreateEmptyMesh();
1431   
1432   if ( !aNewMesh->_is_nil() ) {
1433     SMESH_Mesh_i* aNewImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( aNewMesh ).in() );
1434     if ( aNewImpl ) {
1435       ::SMESH_Mesh& aLocMesh = aNewImpl->GetImpl();
1436       SMESHDS_Mesh* aNewMeshDS = aLocMesh.GetMeshDS();
1437
1438       TGroupsMap aGroupsMap;
1439       TListOfNewGroups aListOfNewGroups;
1440       SMESH_MeshEditor aNewEditor = ::SMESH_MeshEditor(&aLocMesh);
1441       SMESH::ListOfGroups_var aListOfGroups = new SMESH::ListOfGroups();
1442
1443       // loop on meshes
1444       for ( int i = 0; i < theMeshesArray.length(); i++) {
1445         SMESH::SMESH_Mesh_var anInitMesh = theMeshesArray[i];
1446         if ( !anInitMesh->_is_nil() ) {
1447           SMESH_Mesh_i* anInitImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( anInitMesh ).in() );
1448           if ( anInitImpl ) {
1449             ::SMESH_Mesh& aInitLocMesh = anInitImpl->GetImpl();
1450             SMESHDS_Mesh* anInitMeshDS = aInitLocMesh.GetMeshDS();
1451
1452             TIDsMap nodesMap;
1453             TIDsMap elemsMap;
1454
1455             // loop on elements of mesh
1456             SMDS_ElemIteratorPtr itElems = anInitMeshDS->elementsIterator();
1457             const SMDS_MeshElement* anElem = 0;
1458             const SMDS_MeshElement* aNewElem = 0;
1459             int anElemNbNodes = 0;
1460
1461             for ( int j = 0; itElems->more(); j++) {
1462               anElem = itElems->next();
1463               SMDSAbs_ElementType anElemType = anElem->GetType();
1464               anElemNbNodes = anElem->NbNodes();
1465               std::vector<const SMDS_MeshNode*> aNodesArray (anElemNbNodes);
1466
1467               // loop on nodes of element
1468               const SMDS_MeshNode* aNode = 0;
1469               const SMDS_MeshNode* aNewNode = 0;
1470               SMDS_ElemIteratorPtr itNodes = anElem->nodesIterator();
1471
1472               for ( int k = 0; itNodes->more(); k++) {
1473                 aNode = static_cast<const SMDS_MeshNode*>(itNodes->next());
1474                 if ( nodesMap.find(aNode->GetID()) == nodesMap.end() ) {
1475                   aNewNode = aNewMeshDS->AddNode(aNode->X(), aNode->Y(), aNode->Z());
1476                   nodesMap.insert( make_pair(aNode->GetID(), aNewNode->GetID()) );
1477                 }
1478                 else
1479                   aNewNode = aNewMeshDS->FindNode( nodesMap.find(aNode->GetID())->second );
1480                 aNodesArray[k] = aNewNode;
1481               }//nodes loop
1482
1483               // creates a corresponding element on existent nodes in new mesh
1484               if ( anElem->IsPoly() && anElemType == SMDSAbs_Volume )
1485                 {
1486                   const SMDS_PolyhedralVolumeOfNodes* aVolume =
1487                     dynamic_cast<const SMDS_PolyhedralVolumeOfNodes*> (anElem);
1488                   if ( aVolume ) {
1489                     aNewElem = aNewMeshDS->AddPolyhedralVolume(aNodesArray, 
1490                                                                aVolume->GetQuanities());
1491                     elemsMap.insert(make_pair(anElem->GetID(), aNewElem->GetID()));
1492                   }
1493                 }
1494               else {
1495                 
1496                 aNewElem = aNewEditor.AddElement(aNodesArray,
1497                                                  anElemType,
1498                                                  anElem->IsPoly());
1499                 elemsMap.insert(make_pair(anElem->GetID(), aNewElem->GetID()));
1500               } 
1501             }//elems loop
1502             
1503             aListOfGroups = anInitImpl->GetGroups();
1504             SMESH::SMESH_GroupBase_ptr aGroup;
1505
1506             // loop on groups of mesh
1507             SMESH::long_array_var anInitIDs = new SMESH::long_array();
1508             SMESH::long_array_var anNewIDs = new SMESH::long_array();
1509             SMESH::SMESH_Group_var aNewGroup;
1510             for (int i = 0; i < aListOfGroups->length(); i++) {
1511               aGroup = aListOfGroups[i];
1512               aListOfNewGroups.clear();
1513               SMESH::ElementType aGroupType = aGroup->GetType();
1514               CORBA::String_var aGroupName = aGroup->GetName();
1515               
1516               TGroupsMap::iterator anIter = aGroupsMap.find(make_pair(aGroupName, aGroupType));
1517
1518               // convert a list of IDs
1519               anInitIDs = aGroup->GetListOfID();
1520               anNewIDs->length(anInitIDs->length());
1521               if ( aGroupType == SMESH::NODE )
1522                 for (int j = 0; j < anInitIDs->length(); j++) {
1523                   anNewIDs[j] = nodesMap.find(anInitIDs[j])->second;
1524                 }
1525               else
1526                 for (int j = 0; j < anInitIDs->length(); j++) {
1527                   anNewIDs[j] = elemsMap.find(anInitIDs[j])->second;
1528                 }
1529               
1530               // check that current group name and type don't have identical ones in union mesh
1531               if ( anIter == aGroupsMap.end() ) {
1532                 // add a new group in the mesh
1533                 aNewGroup = aNewImpl->CreateGroup(aGroupType, aGroupName);
1534                 // add elements into new group
1535                 aNewGroup->Add( anNewIDs );
1536                 
1537                 aListOfNewGroups.push_back(aNewGroup);
1538                 aGroupsMap.insert(make_pair( make_pair(aGroupName, aGroupType), aListOfNewGroups ));
1539               }
1540
1541               else if ( theUniteIdenticalGroups ) {
1542                 // unite identical groups
1543                 TListOfNewGroups& aNewGroups = anIter->second;
1544                 aNewGroups.front()->Add( anNewIDs );
1545               }
1546
1547               else {
1548                 // rename identical groups
1549                 aNewGroup = aNewImpl->CreateGroup(aGroupType, aGroupName);
1550                 aNewGroup->Add( anNewIDs );
1551                 
1552                 TListOfNewGroups& aNewGroups = anIter->second;
1553                 string aNewGroupName;
1554                 if (aNewGroups.size() == 1) {
1555                   aNewGroupName = string(aGroupName) + "_1";
1556                   aNewGroups.front()->SetName(aNewGroupName.c_str());
1557                 }
1558                 char aGroupNum[128];
1559                 sprintf(aGroupNum, "%u", aNewGroups.size()+1);
1560                 aNewGroupName = string(aGroupName) + "_" + string(aGroupNum);
1561                 aNewGroup->SetName(aNewGroupName.c_str());
1562                 aNewGroups.push_back(aNewGroup);
1563               }
1564             }//groups loop
1565           }
1566         }
1567       }//meshes loop
1568
1569       if (theMergeNodesAndElements) {
1570         // merge nodes
1571         set<const SMDS_MeshNode*> aMeshNodes; // no input nodes
1572         SMESH_MeshEditor::TListOfListOfNodes aGroupsOfNodes;
1573         aNewEditor.FindCoincidentNodes( aMeshNodes, theMergeTolerance, aGroupsOfNodes );
1574         aNewEditor.MergeNodes( aGroupsOfNodes );
1575         // merge elements
1576         aNewEditor.MergeEqualElements();
1577       }
1578     }
1579   }
1580   
1581   // Update Python script
1582   aPythonDump << aNewMesh << " = " << this << ".Concatenate(";
1583   aPythonDump << "[";
1584   for ( int i = 0; i < theMeshesArray.length(); i++) {
1585     if (i > 0) aPythonDump << ", ";
1586     aPythonDump << theMeshesArray[i];
1587   }
1588   aPythonDump << "], ";
1589   aPythonDump << theUniteIdenticalGroups << ", "
1590               << theMergeNodesAndElements << ", "
1591               << theMergeTolerance << ")";
1592
1593   return aNewMesh._retn();
1594 }
1595
1596 //=============================================================================
1597 /*!
1598  *  SMESH_Gen_i::Save
1599  *
1600  *  Save SMESH module's data
1601  */
1602 //=============================================================================
1603 SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent,
1604                                       const char*              theURL,
1605                                       bool                     isMultiFile )
1606 {
1607   INFOS( "SMESH_Gen_i::Save" );
1608
1609   //  ASSERT( theComponent->GetStudy()->StudyId() == myCurrentStudy->StudyId() )
1610   // san -- in case <myCurrentStudy> differs from theComponent's study,
1611   // use that of the component
1612   if ( myCurrentStudy->_is_nil() || 
1613     theComponent->GetStudy()->StudyId() != myCurrentStudy->StudyId() )
1614     SetCurrentStudy( theComponent->GetStudy() );
1615
1616   // Store study contents as a set of python commands
1617   SavePython(myCurrentStudy);
1618
1619   StudyContext* myStudyContext = GetCurrentStudyContext();
1620
1621   // Declare a byte stream
1622   SALOMEDS::TMPFile_var aStreamFile;
1623
1624   // Obtain a temporary dir
1625   TCollection_AsciiString tmpDir =
1626     ( isMultiFile ) ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
1627
1628   // Create a sequence of files processed
1629   SALOMEDS::ListOfFileNames_var aFileSeq = new SALOMEDS::ListOfFileNames;
1630   aFileSeq->length( NUM_TMP_FILES );
1631
1632   TCollection_AsciiString aStudyName( "" );
1633   if ( isMultiFile ) 
1634     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( myCurrentStudy->URL() ).c_str() );
1635
1636   // Set names of temporary files
1637   TCollection_AsciiString filename =
1638     aStudyName + TCollection_AsciiString( "_SMESH.hdf" );        // for SMESH data itself
1639   TCollection_AsciiString meshfile =
1640     aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );   // for mesh data to be stored in MED file
1641   aFileSeq[ 0 ] = CORBA::string_dup( filename.ToCString() );
1642   aFileSeq[ 1 ] = CORBA::string_dup( meshfile.ToCString() );
1643   filename = tmpDir + filename;
1644   meshfile = tmpDir + meshfile;
1645
1646   HDFfile*    aFile;
1647   HDFdataset* aDataset;
1648   HDFgroup*   aTopGroup;
1649   HDFgroup*   aGroup;
1650   HDFgroup*   aSubGroup;
1651   HDFgroup*   aSubSubGroup;
1652   hdf_size    aSize[ 1 ];
1653
1654
1655   //Remove the files if they exist: BugID: 11225
1656 #ifndef WNT /* unix functionality */
1657   TCollection_AsciiString cmd("rm -f \"");
1658 #else /* windows */
1659   TCollection_AsciiString cmd("del /F \"");
1660 #endif
1661
1662   cmd+=filename;
1663   cmd+="\" \"";
1664   cmd+=meshfile;
1665   cmd+="\"";
1666   system(cmd.ToCString());
1667
1668   // MED writer to be used by storage process
1669   DriverMED_W_SMESHDS_Mesh myWriter;
1670   myWriter.SetFile( meshfile.ToCString() );
1671
1672   // Write data
1673   // ---> create HDF file
1674   aFile = new HDFfile( filename.ToCString() );
1675   aFile->CreateOnDisk();
1676
1677   // --> iterator for top-level objects
1678   SALOMEDS::ChildIterator_var itBig = myCurrentStudy->NewChildIterator( theComponent );
1679   for ( ; itBig->More(); itBig->Next() ) {
1680     SALOMEDS::SObject_var gotBranch = itBig->Value();
1681
1682     // --> hypotheses root branch (only one for the study)
1683     if ( gotBranch->Tag() == GetHypothesisRootTag() ) {
1684       // create hypotheses root HDF group
1685       aTopGroup = new HDFgroup( "Hypotheses", aFile );
1686       aTopGroup->CreateOnDisk();
1687
1688       // iterator for all hypotheses
1689       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( gotBranch );
1690       for ( ; it->More(); it->Next() ) {
1691         SALOMEDS::SObject_var mySObject = it->Value();
1692         CORBA::Object_var anObject = SObjectToObject( mySObject );
1693         if ( !CORBA::is_nil( anObject ) ) {
1694           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
1695           if ( !myHyp->_is_nil() ) {
1696             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
1697             if ( myImpl ) {
1698               string hypname = string( myHyp->GetName() );
1699               string libname = string( myHyp->GetLibName() );
1700               // BUG SWP13062
1701               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
1702               // WNT and ".so" for X-system) must be deleted
1703               int libname_len = libname.length();
1704 #ifdef WNT
1705               if( libname_len > 4 )
1706                 libname.resize( libname_len - 4 );
1707 #else
1708               if( libname_len > 3 )
1709                 libname.resize( libname_len - 3 );
1710 #endif
1711               CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1712               int    id      = myStudyContext->findId( string( objStr.in() ) );
1713               string hypdata = string( myImpl->SaveTo() );
1714
1715               // for each hypothesis create HDF group basing on its id
1716               char hypGrpName[30];
1717               sprintf( hypGrpName, "Hypothesis %d", id );
1718               aGroup = new HDFgroup( hypGrpName, aTopGroup );
1719               aGroup->CreateOnDisk();
1720               // --> type name of hypothesis
1721               aSize[ 0 ] = hypname.length() + 1;
1722               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
1723               aDataset->CreateOnDisk();
1724               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
1725               aDataset->CloseOnDisk();
1726               // --> server plugin library name of hypothesis
1727               aSize[ 0 ] = libname.length() + 1;
1728               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
1729               aDataset->CreateOnDisk();
1730               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
1731               aDataset->CloseOnDisk();
1732               // --> persistent data of hypothesis
1733               aSize[ 0 ] = hypdata.length() + 1;
1734               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
1735               aDataset->CreateOnDisk();
1736               aDataset->WriteOnDisk( ( char* )( hypdata.c_str() ) );
1737               aDataset->CloseOnDisk();
1738               // close hypothesis HDF group
1739               aGroup->CloseOnDisk();
1740             }
1741           }
1742         }
1743       }
1744       // close hypotheses root HDF group
1745       aTopGroup->CloseOnDisk();
1746     }
1747     // --> algorithms root branch (only one for the study)
1748     else if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
1749       // create algorithms root HDF group
1750       aTopGroup = new HDFgroup( "Algorithms", aFile );
1751       aTopGroup->CreateOnDisk();
1752
1753       // iterator for all algorithms
1754       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( gotBranch );
1755       for ( ; it->More(); it->Next() ) {
1756         SALOMEDS::SObject_var mySObject = it->Value();
1757         CORBA::Object_var anObject = SObjectToObject( mySObject );
1758         if ( !CORBA::is_nil( anObject ) ) {
1759           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
1760           if ( !myHyp->_is_nil() ) {
1761             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
1762             if ( myImpl ) {
1763               string hypname = string( myHyp->GetName() );
1764               string libname = string( myHyp->GetLibName() );
1765               // BUG SWP13062
1766               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
1767               // WNT and ".so" for X-system) must be deleted
1768               int libname_len = libname.length();
1769 #ifdef WNT
1770               if( libname_len > 4 )
1771                 libname.resize( libname_len - 4 );
1772 #else
1773               if( libname_len > 3 )
1774                 libname.resize( libname_len - 3 );
1775 #endif
1776               CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1777               int    id      = myStudyContext->findId( string( objStr.in() ) );
1778               string hypdata = string( myImpl->SaveTo() );
1779
1780               // for each algorithm create HDF group basing on its id
1781               char hypGrpName[30];
1782               sprintf( hypGrpName, "Algorithm %d", id );
1783               aGroup = new HDFgroup( hypGrpName, aTopGroup );
1784               aGroup->CreateOnDisk();
1785               // --> type name of algorithm
1786               aSize[0] = hypname.length() + 1;
1787               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
1788               aDataset->CreateOnDisk();
1789               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
1790               aDataset->CloseOnDisk();
1791               // --> server plugin library name of hypothesis
1792               aSize[0] = libname.length() + 1;
1793               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
1794               aDataset->CreateOnDisk();
1795               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
1796               aDataset->CloseOnDisk();
1797               // --> persistent data of algorithm
1798               aSize[0] = hypdata.length() + 1;
1799               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
1800               aDataset->CreateOnDisk();
1801               aDataset->WriteOnDisk( ( char* )( hypdata.c_str() ) );
1802               aDataset->CloseOnDisk();
1803               // close algorithm HDF group
1804               aGroup->CloseOnDisk();
1805             }
1806           }
1807         }
1808       }
1809       // close algorithms root HDF group
1810       aTopGroup->CloseOnDisk();
1811     }
1812     // --> mesh objects roots branches
1813     else if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
1814       CORBA::Object_var anObject = SObjectToObject( gotBranch );
1815       if ( !CORBA::is_nil( anObject ) ) {
1816         SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
1817         if ( !myMesh->_is_nil() ) {
1818           SMESH_Mesh_i* myImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myMesh ).in() );
1819           if ( myImpl ) {
1820             CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1821             int id = myStudyContext->findId( string( objStr.in() ) );
1822             ::SMESH_Mesh& myLocMesh = myImpl->GetImpl();
1823             SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
1824             bool hasShape = myLocMesh.HasShapeToMesh();
1825
1826             // for each mesh open the HDF group basing on its id
1827             char meshGrpName[ 30 ];
1828             sprintf( meshGrpName, "Mesh %d", id );
1829             aTopGroup = new HDFgroup( meshGrpName, aFile );
1830             aTopGroup->CreateOnDisk();
1831
1832             // --> put dataset to hdf file which is a flag that mesh has data
1833             string strHasData = "0";
1834             // check if the mesh is not empty
1835             if ( mySMESHDSMesh->NbNodes() > 0 ) {
1836               // write mesh data to med file
1837               myWriter.SetMesh( mySMESHDSMesh );
1838               myWriter.SetMeshId( id );
1839               strHasData = "1";
1840             }
1841             aSize[ 0 ] = strHasData.length() + 1;
1842             aDataset = new HDFdataset( "Has data", aTopGroup, HDF_STRING, aSize, 1 );
1843             aDataset->CreateOnDisk();
1844             aDataset->WriteOnDisk( ( char* )( strHasData.c_str() ) );
1845             aDataset->CloseOnDisk();
1846
1847             // ouv : NPAL12872
1848             // for each mesh open the HDF group basing on its auto color parameter
1849             char meshAutoColorName[ 30 ];
1850             sprintf( meshAutoColorName, "AutoColorMesh %d", id );
1851             int anAutoColor[1];
1852             anAutoColor[0] = myImpl->GetAutoColor();
1853             aSize[ 0 ] = 1;
1854             aDataset = new HDFdataset( meshAutoColorName, aTopGroup, HDF_INT32, aSize, 1 );
1855             aDataset->CreateOnDisk();
1856             aDataset->WriteOnDisk( anAutoColor );
1857             aDataset->CloseOnDisk();
1858
1859             // write reference on a shape if exists
1860             SALOMEDS::SObject_var myRef;
1861             bool shapeRefFound = false;
1862             bool found = gotBranch->FindSubObject( GetRefOnShapeTag(), myRef );
1863             if ( found ) {
1864               SALOMEDS::SObject_var myShape;
1865               bool ok = myRef->ReferencedObject( myShape );
1866               if ( ok ) {
1867                 shapeRefFound = (! CORBA::is_nil( myShape->GetObject() ));
1868                 string myRefOnObject = myShape->GetID();
1869                 if ( shapeRefFound && myRefOnObject.length() > 0 ) {
1870                   aSize[ 0 ] = myRefOnObject.length() + 1;
1871                   aDataset = new HDFdataset( "Ref on shape", aTopGroup, HDF_STRING, aSize, 1 );
1872                   aDataset->CreateOnDisk();
1873                   aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
1874                   aDataset->CloseOnDisk();
1875                 }
1876               }
1877             }
1878
1879             // write applied hypotheses if exist
1880             SALOMEDS::SObject_var myHypBranch;
1881             found = gotBranch->FindSubObject( GetRefOnAppliedHypothesisTag(), myHypBranch );
1882             if ( found && !shapeRefFound && hasShape) { // remove applied hyps
1883               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myHypBranch );
1884             }
1885             if ( found && (shapeRefFound || !hasShape) ) {
1886               aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
1887               aGroup->CreateOnDisk();
1888
1889               SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myHypBranch );
1890               int hypNb = 0;
1891               for ( ; it->More(); it->Next() ) {
1892                 SALOMEDS::SObject_var mySObject = it->Value();
1893                 SALOMEDS::SObject_var myRefOnHyp;
1894                 bool ok = mySObject->ReferencedObject( myRefOnHyp );
1895                 if ( ok ) {
1896                   // san - it is impossible to recover applied hypotheses
1897                   //       using their entries within Load() method,
1898                   // for there are no AttributeIORs in the study when Load() is working. 
1899                   // Hence, it is better to store persistent IDs of hypotheses as references to them
1900
1901                   //string myRefOnObject = myRefOnHyp->GetID();
1902                   CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
1903                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1904                   int id = myStudyContext->findId( string( objStr.in() ) );
1905                   //if ( myRefOnObject.length() > 0 ) {
1906                   //aSize[ 0 ] = myRefOnObject.length() + 1;
1907                   char hypName[ 30 ], hypId[ 30 ];
1908                   sprintf( hypName, "Hyp %d", ++hypNb );
1909                   sprintf( hypId, "%d", id );
1910                   aSize[ 0 ] = strlen( hypId ) + 1;
1911                   aDataset = new HDFdataset( hypName, aGroup, HDF_STRING, aSize, 1 );
1912                   aDataset->CreateOnDisk();
1913                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
1914                   aDataset->WriteOnDisk( hypId );
1915                   aDataset->CloseOnDisk();
1916                   //}
1917                 }
1918               }
1919               aGroup->CloseOnDisk();
1920             }
1921
1922             // write applied algorithms if exist
1923             SALOMEDS::SObject_var myAlgoBranch;
1924             found = gotBranch->FindSubObject( GetRefOnAppliedAlgorithmsTag(), myAlgoBranch );
1925             if ( found && !shapeRefFound && hasShape) { // remove applied algos
1926               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myAlgoBranch );
1927             }
1928             if ( found && (shapeRefFound || !hasShape)) {
1929               aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
1930               aGroup->CreateOnDisk();
1931
1932               SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myAlgoBranch );
1933               int algoNb = 0;
1934               for ( ; it->More(); it->Next() ) {
1935                 SALOMEDS::SObject_var mySObject = it->Value();
1936                 SALOMEDS::SObject_var myRefOnAlgo;
1937                 bool ok = mySObject->ReferencedObject( myRefOnAlgo );
1938                 if ( ok ) {
1939                   // san - it is impossible to recover applied algorithms
1940                   //       using their entries within Load() method,
1941                   // for there are no AttributeIORs in the study when Load() is working. 
1942                   // Hence, it is better to store persistent IDs of algorithms as references to them
1943
1944                   //string myRefOnObject = myRefOnAlgo->GetID();
1945                   CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
1946                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1947                   int id = myStudyContext->findId( string( objStr.in() ) );
1948                   //if ( myRefOnObject.length() > 0 ) {
1949                   //aSize[ 0 ] = myRefOnObject.length() + 1;
1950                   char algoName[ 30 ], algoId[ 30 ];
1951                   sprintf( algoName, "Algo %d", ++algoNb );
1952                   sprintf( algoId, "%d", id );
1953                   aSize[ 0 ] = strlen( algoId ) + 1;
1954                   aDataset = new HDFdataset( algoName, aGroup, HDF_STRING, aSize, 1 );
1955                   aDataset->CreateOnDisk();
1956                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
1957                   aDataset->WriteOnDisk( algoId );
1958                   aDataset->CloseOnDisk();
1959                   //}
1960                 }
1961               }
1962               aGroup->CloseOnDisk();
1963             }
1964
1965             // --> submesh objects sub-branches
1966
1967             for ( int i = GetSubMeshOnVertexTag(); i <= GetSubMeshOnCompoundTag(); i++ ) {
1968               SALOMEDS::SObject_var mySubmeshBranch;
1969               found = gotBranch->FindSubObject( i, mySubmeshBranch );
1970
1971               if ( found ) // check if there is shape reference in submeshes
1972               {
1973                 bool hasShapeRef = false;
1974                 SALOMEDS::ChildIterator_var itSM =
1975                   myCurrentStudy->NewChildIterator( mySubmeshBranch );
1976                 for ( ; itSM->More(); itSM->Next() ) {
1977                   SALOMEDS::SObject_var mySubRef, myShape, mySObject = itSM->Value();
1978                   if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ))
1979                     mySubRef->ReferencedObject( myShape );
1980                   if ( !CORBA::is_nil( myShape ) && !CORBA::is_nil( myShape->GetObject() ))
1981                     hasShapeRef = true;
1982                   else
1983                   { // remove one submesh
1984                     if ( shapeRefFound )
1985                     { // unassign hypothesis
1986                       SMESH::SMESH_subMesh_var mySubMesh =
1987                         SMESH::SMESH_subMesh::_narrow( SObjectToObject( mySObject ));
1988                       if ( !mySubMesh->_is_nil() ) {
1989                         int shapeID = mySubMesh->GetId();
1990                         TopoDS_Shape S = mySMESHDSMesh->IndexToShape( shapeID );
1991                         const list<const SMESHDS_Hypothesis*>& hypList =
1992                           mySMESHDSMesh->GetHypothesis( S );
1993                         list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
1994                         while ( hyp != hypList.end() ) {
1995                           int hypID = (*hyp++)->GetID(); // goto next hyp here because
1996                           myLocMesh.RemoveHypothesis( S, hypID ); // hypList changes here
1997                         }
1998                       }
1999                     }
2000                     myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySObject );
2001                   }
2002                 } // loop on submeshes of a type
2003                 if ( !shapeRefFound || !hasShapeRef ) { // remove the whole submeshes branch
2004                   myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySubmeshBranch );
2005                   found = false;
2006                 }
2007               }  // end check if there is shape reference in submeshes
2008               if ( found ) {
2009                 char name_meshgroup[ 30 ];
2010                 if ( i == GetSubMeshOnVertexTag() )
2011                   strcpy( name_meshgroup, "SubMeshes On Vertex" );
2012                 else if ( i == GetSubMeshOnEdgeTag() )
2013                   strcpy( name_meshgroup, "SubMeshes On Edge" );
2014                 else if ( i == GetSubMeshOnWireTag() )
2015                   strcpy( name_meshgroup, "SubMeshes On Wire" );
2016                 else if ( i == GetSubMeshOnFaceTag() )
2017                   strcpy( name_meshgroup, "SubMeshes On Face" );
2018                 else if ( i == GetSubMeshOnShellTag() )
2019                   strcpy( name_meshgroup, "SubMeshes On Shell" );
2020                 else if ( i == GetSubMeshOnSolidTag() )
2021                   strcpy( name_meshgroup, "SubMeshes On Solid" );
2022                 else if ( i == GetSubMeshOnCompoundTag() )
2023                   strcpy( name_meshgroup, "SubMeshes On Compound" );
2024
2025                 // for each type of submeshes create container HDF group
2026                 aGroup = new HDFgroup( name_meshgroup, aTopGroup );
2027                 aGroup->CreateOnDisk();
2028
2029                 // iterator for all submeshes of given type
2030                 SALOMEDS::ChildIterator_var itSM = myCurrentStudy->NewChildIterator( mySubmeshBranch );
2031                 for ( ; itSM->More(); itSM->Next() ) {
2032                   SALOMEDS::SObject_var mySObject = itSM->Value();
2033                   CORBA::Object_var anSubObject = SObjectToObject( mySObject );
2034                   if ( !CORBA::is_nil( anSubObject ))
2035                   {
2036                     SMESH::SMESH_subMesh_var mySubMesh = SMESH::SMESH_subMesh::_narrow( anSubObject ) ;
2037                     CORBA::String_var objStr = GetORB()->object_to_string( anSubObject );
2038                     int subid = myStudyContext->findId( string( objStr.in() ) );
2039
2040                     // for each mesh open the HDF group basing on its id
2041                     char submeshGrpName[ 30 ];
2042                     sprintf( submeshGrpName, "SubMesh %d", subid );
2043                     aSubGroup = new HDFgroup( submeshGrpName, aGroup );
2044                     aSubGroup->CreateOnDisk();
2045
2046                     // write reference on a shape, already checked if it exists
2047                     SALOMEDS::SObject_var mySubRef, myShape;
2048                     if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ))
2049                       mySubRef->ReferencedObject( myShape );
2050                     string myRefOnObject = myShape->GetID();
2051                     if ( myRefOnObject.length() > 0 ) {
2052                       aSize[ 0 ] = myRefOnObject.length() + 1;
2053                       aDataset = new HDFdataset( "Ref on shape", aSubGroup, HDF_STRING, aSize, 1 );
2054                       aDataset->CreateOnDisk();
2055                       aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2056                       aDataset->CloseOnDisk();
2057                     }
2058
2059                     // write applied hypotheses if exist
2060                     SALOMEDS::SObject_var mySubHypBranch;
2061                     found = mySObject->FindSubObject( GetRefOnAppliedHypothesisTag(), mySubHypBranch );
2062                     if ( found ) {
2063                       aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
2064                       aSubSubGroup->CreateOnDisk();
2065
2066                       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( mySubHypBranch );
2067                       int hypNb = 0;
2068                       for ( ; it->More(); it->Next() ) {
2069                         SALOMEDS::SObject_var mySubSObject = it->Value();
2070                         SALOMEDS::SObject_var myRefOnHyp;
2071                         bool ok = mySubSObject->ReferencedObject( myRefOnHyp );
2072                         if ( ok ) {
2073                           //string myRefOnObject = myRefOnHyp->GetID();
2074                           CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
2075                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2076                           int id = myStudyContext->findId( string( objStr.in() ) );
2077                           //if ( myRefOnObject.length() > 0 ) {
2078                           //aSize[ 0 ] = myRefOnObject.length() + 1;
2079                           char hypName[ 30 ], hypId[ 30 ];
2080                           sprintf( hypName, "Hyp %d", ++hypNb );
2081                           sprintf( hypId, "%d", id );
2082                           aSize[ 0 ] = strlen( hypId ) + 1;
2083                           aDataset = new HDFdataset( hypName, aSubSubGroup, HDF_STRING, aSize, 1 );
2084                           aDataset->CreateOnDisk();
2085                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2086                           aDataset->WriteOnDisk( hypId );
2087                           aDataset->CloseOnDisk();
2088                           //}
2089                         }
2090                       }
2091                       aSubSubGroup->CloseOnDisk();
2092                     }
2093
2094                     // write applied algorithms if exist
2095                     SALOMEDS::SObject_var mySubAlgoBranch;
2096                     found = mySObject->FindSubObject( GetRefOnAppliedAlgorithmsTag(), mySubAlgoBranch );
2097                     if ( found ) {
2098                       aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
2099                       aSubSubGroup->CreateOnDisk();
2100
2101                       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( mySubAlgoBranch );
2102                       int algoNb = 0;
2103                       for ( ; it->More(); it->Next() ) {
2104                         SALOMEDS::SObject_var mySubSObject = it->Value();
2105                         SALOMEDS::SObject_var myRefOnAlgo;
2106                         bool ok = mySubSObject->ReferencedObject( myRefOnAlgo );
2107                         if ( ok ) {
2108                           //string myRefOnObject = myRefOnAlgo->GetID();
2109                           CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
2110                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2111                           int id = myStudyContext->findId( string( objStr.in() ) );
2112                           //if ( myRefOnObject.length() > 0 ) {
2113                           //aSize[ 0 ] = myRefOnObject.length() + 1;
2114                           char algoName[ 30 ], algoId[ 30 ];
2115                           sprintf( algoName, "Algo %d", ++algoNb );
2116                           sprintf( algoId, "%d", id );
2117                           aSize[ 0 ] = strlen( algoId ) + 1;
2118                           aDataset = new HDFdataset( algoName, aSubSubGroup, HDF_STRING, aSize, 1 );
2119                           aDataset->CreateOnDisk();
2120                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2121                           aDataset->WriteOnDisk( algoId );
2122                           aDataset->CloseOnDisk();
2123                           //}
2124                         }
2125                       }
2126                       aSubSubGroup->CloseOnDisk();
2127                     }
2128                     // close submesh HDF group
2129                     aSubGroup->CloseOnDisk();
2130                   }
2131                 }
2132                 // close container of submeshes by type HDF group
2133                 aGroup->CloseOnDisk();
2134               }
2135             }
2136             // All sub-meshes will be stored in MED file
2137             // .. will NOT (PAL 12992)
2138             //if ( shapeRefFound )
2139             //myWriter.AddAllSubMeshes();
2140
2141             // groups root sub-branch
2142             SALOMEDS::SObject_var myGroupsBranch;
2143             for ( int i = GetNodeGroupsTag(); i <= GetVolumeGroupsTag(); i++ ) {
2144               found = gotBranch->FindSubObject( i, myGroupsBranch );
2145               if ( found ) {
2146                 char name_group[ 30 ];
2147                 if ( i == GetNodeGroupsTag() )
2148                   strcpy( name_group, "Groups of Nodes" );
2149                 else if ( i == GetEdgeGroupsTag() )
2150                   strcpy( name_group, "Groups of Edges" );
2151                 else if ( i == GetFaceGroupsTag() )
2152                   strcpy( name_group, "Groups of Faces" );
2153                 else if ( i == GetVolumeGroupsTag() )
2154                   strcpy( name_group, "Groups of Volumes" );
2155
2156                 aGroup = new HDFgroup( name_group, aTopGroup );
2157                 aGroup->CreateOnDisk();
2158
2159                 SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myGroupsBranch );
2160                 for ( ; it->More(); it->Next() ) {
2161                   SALOMEDS::SObject_var mySObject = it->Value();
2162                   CORBA::Object_var aSubObject = SObjectToObject( mySObject );
2163                   if ( !CORBA::is_nil( aSubObject ) ) {
2164                     SMESH_GroupBase_i* myGroupImpl =
2165                       dynamic_cast<SMESH_GroupBase_i*>( GetServant( aSubObject ).in() );
2166                     if ( !myGroupImpl )
2167                       continue;
2168                     
2169                     CORBA::String_var objStr = GetORB()->object_to_string( aSubObject );
2170                     int anId = myStudyContext->findId( string( objStr.in() ) );
2171                     
2172                     // For each group, create a dataset named "Group <group_persistent_id>"
2173                     // and store the group's user name into it
2174                     char grpName[ 30 ];
2175                     sprintf( grpName, "Group %d", anId );
2176                     char* aUserName = myGroupImpl->GetName();
2177                     aSize[ 0 ] = strlen( aUserName ) + 1;
2178                     
2179                     aDataset = new HDFdataset( grpName, aGroup, HDF_STRING, aSize, 1 );
2180                     aDataset->CreateOnDisk();
2181                     aDataset->WriteOnDisk( aUserName );
2182                     aDataset->CloseOnDisk();
2183
2184                     // ouv : NPAL12872
2185                     // For each group, create a dataset named "Group <group_persistent_id> Color"
2186                     // and store the group's color into it
2187                     char grpColorName[ 30 ];
2188                     sprintf( grpColorName, "ColorGroup %d", anId );
2189                     SALOMEDS::Color aColor = myGroupImpl->GetColor();
2190                     double anRGB[3];
2191                     anRGB[ 0 ] = aColor.R;
2192                     anRGB[ 1 ] = aColor.G;
2193                     anRGB[ 2 ] = aColor.B;
2194                     aSize[ 0 ] = 3;
2195                     aDataset = new HDFdataset( grpColorName, aGroup, HDF_FLOAT64, aSize, 1 );
2196                     aDataset->CreateOnDisk();
2197                     aDataset->WriteOnDisk( anRGB );
2198                     aDataset->CloseOnDisk();
2199
2200                     // Store the group contents into MED file
2201                     if ( myLocMesh.GetGroup( myGroupImpl->GetLocalID() ) ) {
2202                       
2203                       if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen_i::Save(): saving group with StoreName = "
2204                                           << grpName << " to MED file" );
2205                       SMESHDS_GroupBase* aGrpBaseDS =
2206                         myLocMesh.GetGroup( myGroupImpl->GetLocalID() )->GetGroupDS();
2207                       aGrpBaseDS->SetStoreName( grpName );
2208
2209                       // Pass SMESHDS_Group to MED writer 
2210                       SMESHDS_Group* aGrpDS = dynamic_cast<SMESHDS_Group*>( aGrpBaseDS );
2211                       if ( aGrpDS )
2212                         myWriter.AddGroup( aGrpDS );
2213                       
2214                       // write reference on a shape if exists
2215                       SMESHDS_GroupOnGeom* aGeomGrp =
2216                         dynamic_cast<SMESHDS_GroupOnGeom*>( aGrpBaseDS );
2217                       if ( aGeomGrp ) {
2218                         SALOMEDS::SObject_var mySubRef, myShape;
2219                         if (mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ) &&
2220                             mySubRef->ReferencedObject( myShape ) &&
2221                             !CORBA::is_nil( myShape->GetObject() ))
2222                         {
2223                           string myRefOnObject = myShape->GetID();
2224                           if ( myRefOnObject.length() > 0 ) {
2225                             char aRefName[ 30 ];
2226                             sprintf( aRefName, "Ref on shape %d", anId);
2227                             aSize[ 0 ] = myRefOnObject.length() + 1;
2228                             aDataset = new HDFdataset(aRefName, aGroup, HDF_STRING, aSize, 1);
2229                             aDataset->CreateOnDisk();
2230                             aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2231                             aDataset->CloseOnDisk();
2232                           }
2233                         }
2234                         else // shape ref is invalid:
2235                         {
2236                           // save a group on geometry as ordinary group
2237                           myWriter.AddGroup( aGeomGrp );
2238                         }
2239                       }
2240                     }
2241                   }
2242                 }
2243                 aGroup->CloseOnDisk();
2244               }
2245             } // loop on groups 
2246             
2247             if ( strcmp( strHasData.c_str(), "1" ) == 0 )
2248             {
2249               // Flush current mesh information into MED file
2250               myWriter.Perform();
2251               
2252               // maybe a shape was deleted in the study
2253               if ( !shapeRefFound && !mySMESHDSMesh->ShapeToMesh().IsNull() && hasShape) {
2254                 TopoDS_Shape nullShape;
2255                 myLocMesh.ShapeToMesh( nullShape ); // remove shape referring data
2256               }
2257               
2258               if ( !mySMESHDSMesh->SubMeshes().empty() )
2259               {
2260                 // Store submeshes
2261                 // ----------------
2262                 aGroup = new HDFgroup( "Submeshes", aTopGroup );
2263                 aGroup->CreateOnDisk();
2264                 
2265                 // each element belongs to one or none submesh,
2266                 // so for each node/element, we store a submesh ID
2267                 
2268                 // Make maps of submesh IDs of elements sorted by element IDs
2269                 typedef int TElemID;
2270                 typedef int TSubMID;
2271                 map< TElemID, TSubMID > eId2smId, nId2smId;
2272                 map< TElemID, TSubMID >::iterator hint; // insertion to map is done before hint
2273                 const map<int,SMESHDS_SubMesh*>& aSubMeshes = mySMESHDSMesh->SubMeshes();
2274                 map<int,SMESHDS_SubMesh*>::const_iterator itSubM ( aSubMeshes.begin() );
2275                 SMDS_NodeIteratorPtr itNode;
2276                 SMDS_ElemIteratorPtr itElem;
2277                 for ( itSubM = aSubMeshes.begin(); itSubM != aSubMeshes.end() ; itSubM++ )
2278                 {
2279                   TSubMID          aSubMeID = itSubM->first;
2280                   SMESHDS_SubMesh* aSubMesh = itSubM->second;
2281                   if ( aSubMesh->IsComplexSubmesh() )
2282                     continue; // submesh containing other submeshs
2283                   // nodes
2284                   hint = nId2smId.begin(); // optimize insertion basing on increasing order of elem Ids in submesh
2285                   for ( itNode = aSubMesh->GetNodes(); itNode->more(); ++hint)
2286                     hint = nId2smId.insert( hint, make_pair( itNode->next()->GetID(), aSubMeID ));
2287                   // elements
2288                   hint = eId2smId.begin();
2289                   for ( itElem = aSubMesh->GetElements(); itElem->more(); ++hint)
2290                     hint = eId2smId.insert( hint, make_pair( itElem->next()->GetID(), aSubMeID ));
2291                 }
2292                 
2293                 // Care of elements that are not on submeshes
2294                 if ( mySMESHDSMesh->NbNodes() != nId2smId.size() ) {
2295                   for ( itNode = mySMESHDSMesh->nodesIterator(); itNode->more(); )
2296                     /*  --- stl_map.h says : */
2297                     /*  A %map relies on unique keys and thus a %pair is only inserted if its */
2298                     /*  first element (the key) is not already present in the %map.           */
2299                     nId2smId.insert( make_pair( itNode->next()->GetID(), 0 ));
2300                 }
2301                 int nbElems = mySMESHDSMesh->NbEdges() + mySMESHDSMesh->NbFaces() + mySMESHDSMesh->NbVolumes();
2302                 if ( nbElems != eId2smId.size() ) {
2303                   for ( itElem = mySMESHDSMesh->elementsIterator(); itElem->more(); )
2304                     eId2smId.insert( make_pair( itElem->next()->GetID(), 0 ));
2305                 }
2306                 
2307                 // Store submesh IDs
2308                 for ( int isNode = 0; isNode < 2; ++isNode )
2309                 {
2310                   map< TElemID, TSubMID >& id2smId = isNode ? nId2smId : eId2smId;
2311                   if ( id2smId.empty() ) continue;
2312                   map< TElemID, TSubMID >::const_iterator id_smId = id2smId.begin();
2313                   // make and fill array of submesh IDs
2314                   int* smIDs = new int [ id2smId.size() ];
2315                   for ( int i = 0; id_smId != id2smId.end(); ++id_smId, ++i )
2316                     smIDs[ i ] = id_smId->second;
2317                   // write HDF group
2318                   aSize[ 0 ] = id2smId.size();
2319                   string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
2320                   aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
2321                   aDataset->CreateOnDisk();
2322                   aDataset->WriteOnDisk( smIDs );
2323                   aDataset->CloseOnDisk();
2324                   //
2325                   delete smIDs;
2326                 }
2327                 
2328                 // Store node positions on sub-shapes (SMDS_Position):
2329                 // ----------------------------------------------------
2330                 
2331                 aGroup = new HDFgroup( "Node Positions", aTopGroup );
2332                 aGroup->CreateOnDisk();
2333                 
2334                 // in aGroup, create 5 datasets to contain:
2335                 // "Nodes on Edges" - ID of node on edge
2336                 // "Edge positions" - U parameter on node on edge
2337                 // "Nodes on Faces" - ID of node on face
2338                 // "Face U positions" - U parameter of node on face
2339                 // "Face V positions" - V parameter of node on face
2340                 
2341                 // Find out nb of nodes on edges and faces
2342                 // Collect corresponing sub-meshes
2343                 int nbEdgeNodes = 0, nbFaceNodes = 0;
2344                 list<SMESHDS_SubMesh*> aEdgeSM, aFaceSM;
2345                 // loop on SMESHDS_SubMesh'es
2346                 for ( itSubM = aSubMeshes.begin(); itSubM != aSubMeshes.end() ; itSubM++ )
2347                 {
2348                   SMESHDS_SubMesh* aSubMesh = (*itSubM).second;
2349                   if ( aSubMesh->IsComplexSubmesh() )
2350                     continue; // submesh containing other submeshs
2351                   int nbNodes = aSubMesh->NbNodes();
2352                   if ( nbNodes == 0 ) continue;
2353                   
2354                   int aShapeID = (*itSubM).first;
2355                   int aShapeType = mySMESHDSMesh->IndexToShape( aShapeID ).ShapeType();
2356                   // write only SMDS_FacePosition and SMDS_EdgePosition
2357                   switch ( aShapeType ) {
2358                   case TopAbs_FACE:
2359                     nbFaceNodes += nbNodes;
2360                     aFaceSM.push_back( aSubMesh );
2361                     break;
2362                   case TopAbs_EDGE:
2363                     nbEdgeNodes += nbNodes;
2364                     aEdgeSM.push_back( aSubMesh );
2365                     break;
2366                   default:
2367                     continue;
2368                   }
2369                 }
2370                 // Treat positions on edges or faces
2371                 for ( int onFace = 0; onFace < 2; onFace++ )
2372                 {
2373                   // Create arrays to store in datasets
2374                   int iNode = 0, nbNodes = ( onFace ? nbFaceNodes : nbEdgeNodes );
2375                   if (!nbNodes) continue;
2376                   int* aNodeIDs = new int [ nbNodes ];
2377                   double* aUPos = new double [ nbNodes ];
2378                   double* aVPos = ( onFace ? new double[ nbNodes ] : 0 );
2379                   
2380                   // Fill arrays
2381                   // loop on sub-meshes
2382                   list<SMESHDS_SubMesh*> * pListSM = ( onFace ? &aFaceSM : &aEdgeSM );
2383                   list<SMESHDS_SubMesh*>::iterator itSM = pListSM->begin();
2384                   for ( ; itSM != pListSM->end(); itSM++ )
2385                   {
2386                     SMESHDS_SubMesh* aSubMesh = (*itSM);
2387                     
2388                     SMDS_NodeIteratorPtr itNode = aSubMesh->GetNodes();
2389                     // loop on nodes in aSubMesh
2390                     while ( itNode->more() )
2391                     {
2392                       //node ID
2393                       const SMDS_MeshNode* node = itNode->next();
2394                       aNodeIDs [ iNode ] = node->GetID();
2395                       
2396                       // Position
2397                       const SMDS_PositionPtr pos = node->GetPosition();
2398                       if ( onFace ) { // on FACE
2399                         const SMDS_FacePosition* fPos =
2400                           dynamic_cast<const SMDS_FacePosition*>( pos.get() );
2401                         if ( fPos ) {
2402                           aUPos[ iNode ] = fPos->GetUParameter();
2403                           aVPos[ iNode ] = fPos->GetVParameter();
2404                           iNode++;
2405                         }
2406                         else
2407                           nbNodes--;
2408                       }
2409                       else { // on EDGE
2410                         const SMDS_EdgePosition* ePos =
2411                           dynamic_cast<const SMDS_EdgePosition*>( pos.get() );
2412                         if ( ePos ) {
2413                           aUPos[ iNode ] = ePos->GetUParameter();
2414                           iNode++;
2415                         }
2416                         else
2417                           nbNodes--;
2418                       }
2419                     } // loop on nodes in aSubMesh
2420                   } // loop on sub-meshes
2421                   
2422                   // Write datasets
2423                   if ( nbNodes )
2424                   {
2425                     aSize[ 0 ] = nbNodes;
2426                     // IDS
2427                     string aDSName( onFace ? "Nodes on Faces" : "Nodes on Edges");
2428                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
2429                     aDataset->CreateOnDisk();
2430                     aDataset->WriteOnDisk( aNodeIDs );
2431                     aDataset->CloseOnDisk();
2432                 
2433                     // U Positions
2434                     aDSName = ( onFace ? "Face U positions" : "Edge positions");
2435                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_FLOAT64, aSize, 1);
2436                     aDataset->CreateOnDisk();
2437                     aDataset->WriteOnDisk( aUPos );
2438                     aDataset->CloseOnDisk();
2439                     // V Positions
2440                     if ( onFace ) {
2441                       aDataset = new HDFdataset( "Face V positions", aGroup, HDF_FLOAT64, aSize, 1);
2442                       aDataset->CreateOnDisk();
2443                       aDataset->WriteOnDisk( aVPos );
2444                       aDataset->CloseOnDisk();
2445                     }
2446                   }
2447                   delete [] aNodeIDs;
2448                   delete [] aUPos;
2449                   if ( aVPos ) delete [] aVPos;
2450                   
2451                 } // treat positions on edges or faces
2452                 
2453                 // close "Node Positions" group
2454                 aGroup->CloseOnDisk(); 
2455                 
2456               } // if ( there are submeshes in SMESHDS_Mesh )
2457             } // if ( hasData )
2458             
2459             // close mesh HDF group
2460             aTopGroup->CloseOnDisk();
2461           }
2462         }
2463       }
2464     }
2465   }
2466   
2467   // close HDF file
2468   aFile->CloseOnDisk();
2469   delete aFile;
2470
2471   // Convert temporary files to stream
2472   aStreamFile = SALOMEDS_Tool::PutFilesToStream( tmpDir.ToCString(), aFileSeq.in(), isMultiFile );
2473
2474   // Remove temporary files and directory
2475   if ( !isMultiFile ) 
2476     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
2477
2478   INFOS( "SMESH_Gen_i::Save() completed" );
2479   return aStreamFile._retn();
2480 }
2481
2482 //=============================================================================
2483 /*!
2484  *  SMESH_Gen_i::SaveASCII
2485  *
2486  *  Save SMESH module's data in ASCII format
2487  */
2488 //=============================================================================
2489
2490 SALOMEDS::TMPFile* SMESH_Gen_i::SaveASCII( SALOMEDS::SComponent_ptr theComponent,
2491                                            const char*              theURL,
2492                                            bool                     isMultiFile ) {
2493   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
2494   SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
2495   return aStreamFile._retn();
2496
2497   //after usual saving needs to encipher binary to text string
2498   //Any binary symbol will be represent as "|xx" () hexadecimal format number
2499   int size = aStreamFile.in().length();
2500   _CORBA_Octet* buffer = new _CORBA_Octet[size*3+1];
2501   for ( int i = 0; i < size; i++ )
2502     sprintf( (char*)&(buffer[i*3]), "|%02x", (char*)(aStreamFile[i]) );
2503
2504   buffer[size * 3] = '\0';
2505
2506   SALOMEDS::TMPFile_var anAsciiStreamFile = new SALOMEDS::TMPFile(size*3, size*3, buffer, 1);
2507   
2508   return anAsciiStreamFile._retn();
2509 }
2510
2511 //=============================================================================
2512 /*!
2513  *  SMESH_Gen_i::loadGeomData
2514  *
2515  *  Load GEOM module data
2516  */
2517 //=============================================================================
2518
2519 void SMESH_Gen_i::loadGeomData( SALOMEDS::SComponent_ptr theCompRoot )
2520 {
2521   if ( theCompRoot->_is_nil() )
2522     return;
2523
2524   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theCompRoot->GetStudy() );
2525   if ( aStudy->_is_nil() )
2526     return;
2527
2528   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder(); 
2529   aStudyBuilder->LoadWith( theCompRoot, GetGeomEngine() );
2530 }
2531 //=============================================================================
2532 /*!
2533  * \brief Creates SMDS_Position according to shape type
2534  */
2535 //=============================================================================
2536
2537 class PositionCreator {
2538 public:
2539   SMDS_PositionPtr MakePosition(const TopAbs_ShapeEnum type) {
2540     return (this->*myFuncTable[ type ])();
2541   }
2542   PositionCreator() {
2543     myFuncTable.resize( (size_t) TopAbs_SHAPE, & PositionCreator::defaultPosition );
2544     myFuncTable[ TopAbs_FACE ] = & PositionCreator::facePosition;
2545     myFuncTable[ TopAbs_EDGE ] = & PositionCreator::edgePosition;
2546     myFuncTable[ TopAbs_VERTEX ] = & PositionCreator::vertexPosition;
2547   }
2548 private:
2549   SMDS_PositionPtr edgePosition()    const { return SMDS_PositionPtr( new SMDS_EdgePosition  ); }
2550   SMDS_PositionPtr facePosition()    const { return SMDS_PositionPtr( new SMDS_FacePosition  ); }
2551   SMDS_PositionPtr vertexPosition()  const { return SMDS_PositionPtr( new SMDS_VertexPosition); }
2552   SMDS_PositionPtr defaultPosition() const { return SMDS_SpacePosition::originSpacePosition();  }
2553   typedef SMDS_PositionPtr (PositionCreator:: * FmakePos)() const;
2554   vector<FmakePos> myFuncTable;
2555 };
2556
2557 //=============================================================================
2558 /*!
2559  *  SMESH_Gen_i::Load
2560  *
2561  *  Load SMESH module's data
2562  */
2563 //=============================================================================
2564
2565 bool SMESH_Gen_i::Load( SALOMEDS::SComponent_ptr theComponent,
2566                         const SALOMEDS::TMPFile& theStream,
2567                         const char*              theURL,
2568                         bool                     isMultiFile )
2569 {
2570   INFOS( "SMESH_Gen_i::Load" );
2571
2572   if ( myCurrentStudy->_is_nil() || 
2573        theComponent->GetStudy()->StudyId() != myCurrentStudy->StudyId() )
2574     SetCurrentStudy( theComponent->GetStudy() );
2575
2576   /*  if( !theComponent->_is_nil() )
2577       {
2578       //SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theComponent->GetStudy() );
2579       if( !myCurrentStudy->FindComponent( "GEOM" )->_is_nil() )
2580       loadGeomData( myCurrentStudy->FindComponent( "GEOM" ) );
2581       }*/
2582
2583   StudyContext* myStudyContext = GetCurrentStudyContext();
2584
2585   // Get temporary files location
2586   TCollection_AsciiString tmpDir =
2587     isMultiFile ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
2588     
2589     INFOS( "THE URL++++++++++++++" )
2590     INFOS( theURL );
2591     INFOS( "THE TMP PATH+++++++++" );
2592     INFOS( tmpDir );
2593
2594   // Convert the stream into sequence of files to process
2595   SALOMEDS::ListOfFileNames_var aFileSeq = SALOMEDS_Tool::PutStreamToFiles( theStream,
2596                                                                             tmpDir.ToCString(),
2597                                                                             isMultiFile );
2598   TCollection_AsciiString aStudyName( "" );
2599   if ( isMultiFile ) 
2600     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( myCurrentStudy->URL() ).c_str() );
2601
2602   // Set names of temporary files
2603   TCollection_AsciiString filename = tmpDir + aStudyName + TCollection_AsciiString( "_SMESH.hdf" );
2604   TCollection_AsciiString meshfile = tmpDir + aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );
2605
2606   int size;
2607   HDFfile*    aFile;
2608   HDFdataset* aDataset;
2609   HDFgroup*   aTopGroup;
2610   HDFgroup*   aGroup;
2611   HDFgroup*   aSubGroup;
2612   HDFgroup*   aSubSubGroup;
2613
2614   // Read data
2615   // ---> open HDF file
2616   aFile = new HDFfile( filename.ToCString() );
2617   try {
2618     aFile->OpenOnDisk( HDF_RDONLY );
2619   }
2620   catch ( HDFexception ) {
2621     INFOS( "Load(): " << filename << " not found!" );
2622     return false;
2623   }
2624
2625   DriverMED_R_SMESHDS_Mesh myReader;
2626   myReader.SetFile( meshfile.ToCString() );
2627
2628   // For PAL13473 ("Repetitive mesh") implementation.
2629   // New dependencies between SMESH objects are established:
2630   // now hypotheses can refer to meshes, shapes and other hypotheses.
2631   // To keep data consistent, the following order of data restoration
2632   // imposed:
2633   // 1. Create hypotheses
2634   // 2. Create all meshes
2635   // 3. Load hypotheses' data
2636   // 4. All the rest
2637
2638   list< pair< SMESH_Hypothesis_i*, string > >    hypDataList;
2639   list< pair< SMESH_Mesh_i*,       HDFgroup* > > meshGroupList;
2640
2641   // get total number of top-level groups
2642   int aNbGroups = aFile->nInternalObjects(); 
2643   if ( aNbGroups > 0 ) {
2644     // --> in first turn we should read&create hypotheses
2645     if ( aFile->ExistInternalObject( "Hypotheses" ) ) {
2646       // open hypotheses root HDF group
2647       aTopGroup = new HDFgroup( "Hypotheses", aFile ); 
2648       aTopGroup->OpenOnDisk();
2649
2650       // get number of hypotheses
2651       int aNbObjects = aTopGroup->nInternalObjects(); 
2652       for ( int j = 0; j < aNbObjects; j++ ) {
2653         // try to identify hypothesis
2654         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
2655         aTopGroup->InternalObjectIndentify( j, hypGrpName );
2656
2657         if ( string( hypGrpName ).substr( 0, 10 ) == string( "Hypothesis" ) ) {
2658           // open hypothesis group
2659           aGroup = new HDFgroup( hypGrpName, aTopGroup ); 
2660           aGroup->OpenOnDisk();
2661
2662           // --> get hypothesis id
2663           int    id = atoi( string( hypGrpName ).substr( 10 ).c_str() );
2664           string hypname;
2665           string libname;
2666           string hypdata;
2667
2668           // get number of datasets
2669           int aNbSubObjects = aGroup->nInternalObjects();
2670           for ( int k = 0; k < aNbSubObjects; k++ ) {
2671             // identify dataset
2672             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
2673             aGroup->InternalObjectIndentify( k, name_of_subgroup );
2674             // --> get hypothesis name
2675             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
2676               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2677               aDataset->OpenOnDisk();
2678               size = aDataset->GetSize();
2679               char* hypname_str = new char[ size ];
2680               aDataset->ReadFromDisk( hypname_str );
2681               hypname = string( hypname_str );
2682               delete [] hypname_str;
2683               aDataset->CloseOnDisk();
2684             }
2685             // --> get hypothesis plugin library name
2686             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
2687               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2688               aDataset->OpenOnDisk();
2689               size = aDataset->GetSize();
2690               char* libname_str = new char[ size ];
2691               aDataset->ReadFromDisk( libname_str );
2692               if(MYDEBUG) SCRUTE( libname_str );
2693               libname = string( libname_str );
2694               delete [] libname_str;
2695               aDataset->CloseOnDisk();
2696             }
2697             // --> get hypothesis data
2698             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
2699               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2700               aDataset->OpenOnDisk();
2701               size = aDataset->GetSize();
2702               char* hypdata_str = new char[ size ];
2703               aDataset->ReadFromDisk( hypdata_str );
2704               hypdata = string( hypdata_str );
2705               delete [] hypdata_str;
2706               aDataset->CloseOnDisk();
2707             }
2708           }
2709           // close hypothesis HDF group
2710           aGroup->CloseOnDisk();
2711
2712           // --> restore hypothesis from data
2713           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
2714             if(MYDEBUG) MESSAGE("VSR - load hypothesis : id = " << id <<
2715                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
2716             SMESH::SMESH_Hypothesis_var myHyp;
2717
2718             try { // protect persistence mechanism against exceptions
2719               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
2720             }
2721             catch (...) {
2722               INFOS( "Exception during hypothesis creation" );
2723             }
2724
2725             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
2726             if ( myImpl ) {
2727               // myImpl->LoadFrom( hypdata.c_str() );
2728               hypDataList.push_back( make_pair( myImpl, hypdata ));
2729               string iorString = GetORB()->object_to_string( myHyp );
2730               int newId = myStudyContext->findId( iorString );
2731               myStudyContext->mapOldToNew( id, newId );
2732             }
2733             else
2734               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
2735           }
2736         }
2737       }
2738       // close hypotheses root HDF group
2739       aTopGroup->CloseOnDisk();
2740       aTopGroup = 0;
2741     }
2742
2743     // --> then we should read&create algorithms
2744     if ( aFile->ExistInternalObject( "Algorithms" ) ) {
2745       // open algorithms root HDF group
2746       aTopGroup = new HDFgroup( "Algorithms", aFile ); 
2747       aTopGroup->OpenOnDisk();
2748
2749       // get number of algorithms
2750       int aNbObjects = aTopGroup->nInternalObjects(); 
2751       for ( int j = 0; j < aNbObjects; j++ ) {
2752         // try to identify algorithm
2753         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
2754         aTopGroup->InternalObjectIndentify( j, hypGrpName );
2755
2756         if ( string( hypGrpName ).substr( 0, 9 ) == string( "Algorithm" ) ) {
2757           // open algorithm group
2758           aGroup = new HDFgroup( hypGrpName, aTopGroup ); 
2759           aGroup->OpenOnDisk();
2760
2761           // --> get algorithm id
2762           int    id = atoi( string( hypGrpName ).substr( 9 ).c_str() );
2763           string hypname;
2764           string libname;
2765           string hypdata;
2766
2767           // get number of datasets
2768           int aNbSubObjects = aGroup->nInternalObjects();
2769           for ( int k = 0; k < aNbSubObjects; k++ ) {
2770             // identify dataset
2771             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
2772             aGroup->InternalObjectIndentify( k, name_of_subgroup );
2773             // --> get algorithm name
2774             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
2775               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2776               aDataset->OpenOnDisk();
2777               size = aDataset->GetSize();
2778               char* hypname_str = new char[ size ];
2779               aDataset->ReadFromDisk( hypname_str );
2780               hypname = string( hypname_str );
2781               delete [] hypname_str;
2782               aDataset->CloseOnDisk();
2783             }
2784             // --> get algorithm plugin library name
2785             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
2786               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2787               aDataset->OpenOnDisk();
2788               size = aDataset->GetSize();
2789               char* libname_str = new char[ size ];
2790               aDataset->ReadFromDisk( libname_str );
2791               if(MYDEBUG) SCRUTE( libname_str );
2792               libname = string( libname_str );
2793               delete [] libname_str;
2794               aDataset->CloseOnDisk();
2795             }
2796             // --> get algorithm data
2797             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
2798               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2799               aDataset->OpenOnDisk();
2800               size = aDataset->GetSize();
2801               char* hypdata_str = new char[ size ];
2802               aDataset->ReadFromDisk( hypdata_str );
2803               if(MYDEBUG) SCRUTE( hypdata_str );
2804               hypdata = string( hypdata_str );
2805               delete [] hypdata_str;
2806               aDataset->CloseOnDisk();
2807             }
2808           }
2809           // close algorithm HDF group
2810           aGroup->CloseOnDisk();
2811
2812           // --> restore algorithm from data
2813           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
2814             if(MYDEBUG) MESSAGE("VSR - load algo : id = " << id <<
2815                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
2816             SMESH::SMESH_Hypothesis_var myHyp;
2817
2818             try { // protect persistence mechanism against exceptions
2819               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
2820             }
2821             catch (...) {
2822               INFOS( "Exception during hypothesis creation" );
2823             }
2824
2825             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
2826             if ( myImpl ) {
2827               //myImpl->LoadFrom( hypdata.c_str() );
2828               hypDataList.push_back( make_pair( myImpl, hypdata ));
2829               string iorString = GetORB()->object_to_string( myHyp );
2830               int newId = myStudyContext->findId( iorString );
2831               myStudyContext->mapOldToNew( id, newId );
2832             }
2833             else
2834               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
2835           }
2836         }
2837       }
2838       // close algorithms root HDF group
2839       aTopGroup->CloseOnDisk();
2840       aTopGroup = 0;
2841     }
2842
2843     // --> the rest groups should be meshes
2844     for ( int i = 0; i < aNbGroups; i++ ) {
2845       // identify next group
2846       char meshName[ HDF_NAME_MAX_LEN+1 ];
2847       aFile->InternalObjectIndentify( i, meshName );
2848
2849       if ( string( meshName ).substr( 0, 4 ) == string( "Mesh" ) ) {
2850         // --> get mesh id
2851         int id = atoi( string( meshName ).substr( 4 ).c_str() );
2852         if ( id <= 0 )
2853           continue;
2854
2855         // open mesh HDF group
2856         aTopGroup = new HDFgroup( meshName, aFile ); 
2857         aTopGroup->OpenOnDisk();
2858
2859         // get number of child HDF objects
2860         int aNbObjects = aTopGroup->nInternalObjects(); 
2861         if ( aNbObjects > 0 ) {
2862           // create mesh
2863           if(MYDEBUG) MESSAGE( "VSR - load mesh : id = " << id );
2864           SMESH::SMESH_Mesh_var myNewMesh = this->createMesh();
2865           SMESH_Mesh_i* myNewMeshImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myNewMesh ).in() );
2866           if ( !myNewMeshImpl )
2867             continue;
2868           meshGroupList.push_back( make_pair( myNewMeshImpl, aTopGroup ));
2869
2870           string iorString = GetORB()->object_to_string( myNewMesh );
2871           int newId = myStudyContext->findId( iorString );
2872           myStudyContext->mapOldToNew( id, newId );
2873
2874           // ouv : NPAL12872
2875           // try to read and set auto color flag
2876           char aMeshAutoColorName[ 30 ];
2877           sprintf( aMeshAutoColorName, "AutoColorMesh %d", id);
2878           if( aTopGroup->ExistInternalObject( aMeshAutoColorName ) )
2879           {
2880             aDataset = new HDFdataset( aMeshAutoColorName, aTopGroup );
2881             aDataset->OpenOnDisk();
2882             size = aDataset->GetSize();
2883             int* anAutoColor = new int[ size ];
2884             aDataset->ReadFromDisk( anAutoColor );
2885             aDataset->CloseOnDisk();
2886             myNewMeshImpl->SetAutoColor( (bool)anAutoColor[0] );
2887           }
2888
2889           // try to read and set reference to shape
2890           GEOM::GEOM_Object_var aShapeObject;
2891           if ( aTopGroup->ExistInternalObject( "Ref on shape" ) ) {
2892             // load mesh "Ref on shape" - it's an entry to SObject
2893             aDataset = new HDFdataset( "Ref on shape", aTopGroup );
2894             aDataset->OpenOnDisk();
2895             size = aDataset->GetSize();
2896             char* refFromFile = new char[ size ];
2897             aDataset->ReadFromDisk( refFromFile );
2898             aDataset->CloseOnDisk();
2899             if ( strlen( refFromFile ) > 0 ) {
2900               SALOMEDS::SObject_var shapeSO = myCurrentStudy->FindObjectID( refFromFile );
2901
2902               // Make sure GEOM data are loaded first
2903               //loadGeomData( shapeSO->GetFatherComponent() );
2904
2905               CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
2906               if ( !CORBA::is_nil( shapeObject ) ) {
2907                 aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
2908                 if ( !aShapeObject->_is_nil() )
2909                   myNewMeshImpl->SetShape( aShapeObject );
2910               }
2911             }
2912           }
2913
2914         }
2915       }
2916     }
2917
2918     // As all object that can be referred by hypothesis are created,
2919     // we can restore hypothesis data
2920
2921     list< pair< SMESH_Hypothesis_i*, string > >::iterator hyp_data;
2922     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
2923     {
2924       SMESH_Hypothesis_i* hyp  = hyp_data->first;
2925       string &            data = hyp_data->second;
2926       hyp->LoadFrom( data.c_str() );
2927     }
2928
2929     // Restore the rest mesh data
2930
2931     list< pair< SMESH_Mesh_i*, HDFgroup* > >::iterator meshi_group;
2932     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
2933     {
2934       aTopGroup                   = meshi_group->second;
2935       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
2936       ::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
2937       SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
2938
2939       GEOM::GEOM_Object_var aShapeObject = myNewMeshImpl->GetShapeToMesh();
2940       bool hasData = false;
2941
2942       // get mesh old id
2943       string iorString = GetORB()->object_to_string( myNewMeshImpl->_this() );
2944       int newId = myStudyContext->findId( iorString );
2945       int id = myStudyContext->getOldId( newId );
2946
2947       // try to find mesh data dataset
2948       if ( aTopGroup->ExistInternalObject( "Has data" ) ) {
2949         // load mesh "has data" flag
2950         aDataset = new HDFdataset( "Has data", aTopGroup );
2951         aDataset->OpenOnDisk();
2952         size = aDataset->GetSize();
2953         char* strHasData = new char[ size ];
2954         aDataset->ReadFromDisk( strHasData );
2955         aDataset->CloseOnDisk();
2956         if ( strcmp( strHasData, "1") == 0 ) {
2957           // read mesh data from MED file
2958           myReader.SetMesh( mySMESHDSMesh );
2959           myReader.SetMeshId( id );
2960           myReader.Perform();
2961           hasData = true;
2962         }
2963       }
2964
2965       // try to get applied algorithms
2966       if ( aTopGroup->ExistInternalObject( "Applied Algorithms" ) ) {
2967         aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
2968         aGroup->OpenOnDisk();
2969         // get number of applied algorithms
2970         int aNbSubObjects = aGroup->nInternalObjects(); 
2971         if(MYDEBUG) MESSAGE( "VSR - number of applied algos " << aNbSubObjects );
2972         for ( int j = 0; j < aNbSubObjects; j++ ) {
2973           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
2974           aGroup->InternalObjectIndentify( j, name_dataset );
2975           // check if it is an algorithm
2976           if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
2977             aDataset = new HDFdataset( name_dataset, aGroup );
2978             aDataset->OpenOnDisk();
2979             size = aDataset->GetSize();
2980             char* refFromFile = new char[ size ];
2981             aDataset->ReadFromDisk( refFromFile );
2982             aDataset->CloseOnDisk();
2983
2984             // san - it is impossible to recover applied algorithms using their entries within Load() method
2985
2986             //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
2987             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
2988             int id = atoi( refFromFile );
2989             string anIOR = myStudyContext->getIORbyOldId( id );
2990             if ( !anIOR.empty() ) {
2991               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
2992               if ( !CORBA::is_nil( hypObject ) ) {
2993                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
2994                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
2995                                            || !myNewMeshImpl->HasShapeToMesh()) )
2996                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
2997               }
2998             }
2999           }
3000         }
3001         aGroup->CloseOnDisk();
3002       }
3003
3004       // try to get applied hypotheses
3005       if ( aTopGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
3006         aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
3007         aGroup->OpenOnDisk();
3008         // get number of applied hypotheses
3009         int aNbSubObjects = aGroup->nInternalObjects(); 
3010         for ( int j = 0; j < aNbSubObjects; j++ ) {
3011           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3012           aGroup->InternalObjectIndentify( j, name_dataset );
3013           // check if it is a hypothesis
3014           if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
3015             aDataset = new HDFdataset( name_dataset, aGroup );
3016             aDataset->OpenOnDisk();
3017             size = aDataset->GetSize();
3018             char* refFromFile = new char[ size ];
3019             aDataset->ReadFromDisk( refFromFile );
3020             aDataset->CloseOnDisk();
3021
3022             // san - it is impossible to recover applied hypotheses using their entries within Load() method
3023
3024             //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3025             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3026             int id = atoi( refFromFile );
3027             string anIOR = myStudyContext->getIORbyOldId( id );
3028             if ( !anIOR.empty() ) {
3029               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3030               if ( !CORBA::is_nil( hypObject ) ) {
3031                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3032                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
3033                                            || !myNewMeshImpl->HasShapeToMesh()) )
3034                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
3035               }
3036             }
3037           }
3038         }
3039         aGroup->CloseOnDisk();
3040       }
3041
3042       // --> try to find submeshes containers for each type of submesh
3043       for ( int j = GetSubMeshOnVertexTag(); j <= GetSubMeshOnCompoundTag(); j++ ) {
3044         char name_meshgroup[ 30 ];
3045         if ( j == GetSubMeshOnVertexTag() )
3046           strcpy( name_meshgroup, "SubMeshes On Vertex" );
3047         else if ( j == GetSubMeshOnEdgeTag() )
3048           strcpy( name_meshgroup, "SubMeshes On Edge" );
3049         else if ( j == GetSubMeshOnWireTag() )
3050           strcpy( name_meshgroup, "SubMeshes On Wire" );
3051         else if ( j == GetSubMeshOnFaceTag() )
3052           strcpy( name_meshgroup, "SubMeshes On Face" );
3053         else if ( j == GetSubMeshOnShellTag() )
3054           strcpy( name_meshgroup, "SubMeshes On Shell" );
3055         else if ( j == GetSubMeshOnSolidTag() )
3056           strcpy( name_meshgroup, "SubMeshes On Solid" );
3057         else if ( j == GetSubMeshOnCompoundTag() )
3058           strcpy( name_meshgroup, "SubMeshes On Compound" );
3059
3060         // try to get submeshes container HDF group
3061         if ( aTopGroup->ExistInternalObject( name_meshgroup ) ) {
3062           // open submeshes containers HDF group
3063           aGroup = new HDFgroup( name_meshgroup, aTopGroup );
3064           aGroup->OpenOnDisk();
3065
3066           // get number of submeshes
3067           int aNbSubMeshes = aGroup->nInternalObjects(); 
3068           for ( int k = 0; k < aNbSubMeshes; k++ ) {
3069             // identify submesh
3070             char name_submeshgroup[ HDF_NAME_MAX_LEN+1 ];
3071             aGroup->InternalObjectIndentify( k, name_submeshgroup );
3072             if ( string( name_submeshgroup ).substr( 0, 7 ) == string( "SubMesh" )  ) {
3073               // --> get submesh id
3074               int subid = atoi( string( name_submeshgroup ).substr( 7 ).c_str() );
3075               if ( subid <= 0 )
3076                 continue;
3077               // open submesh HDF group
3078               aSubGroup = new HDFgroup( name_submeshgroup, aGroup );
3079               aSubGroup->OpenOnDisk();
3080
3081               // try to read and set reference to subshape
3082               GEOM::GEOM_Object_var aSubShapeObject;
3083               SMESH::SMESH_subMesh_var aSubMesh;
3084
3085               if ( aSubGroup->ExistInternalObject( "Ref on shape" ) ) {
3086                 // load submesh "Ref on shape" - it's an entry to SObject
3087                 aDataset = new HDFdataset( "Ref on shape", aSubGroup );
3088                 aDataset->OpenOnDisk();
3089                 size = aDataset->GetSize();
3090                 char* refFromFile = new char[ size ];
3091                 aDataset->ReadFromDisk( refFromFile );
3092                 aDataset->CloseOnDisk();
3093                 if ( strlen( refFromFile ) > 0 ) {
3094                   SALOMEDS::SObject_var subShapeSO = myCurrentStudy->FindObjectID( refFromFile );
3095                   CORBA::Object_var subShapeObject = SObjectToObject( subShapeSO );
3096                   if ( !CORBA::is_nil( subShapeObject ) ) {
3097                     aSubShapeObject = GEOM::GEOM_Object::_narrow( subShapeObject );
3098                     if ( !aSubShapeObject->_is_nil() )
3099                       aSubMesh = SMESH::SMESH_subMesh::_duplicate
3100                         ( myNewMeshImpl->createSubMesh( aSubShapeObject ) );
3101                     if ( aSubMesh->_is_nil() )
3102                       continue;
3103                     string iorSubString = GetORB()->object_to_string( aSubMesh );
3104                     int newSubId = myStudyContext->findId( iorSubString );
3105                     myStudyContext->mapOldToNew( subid, newSubId );
3106                   }
3107                 }
3108               }
3109
3110               if ( aSubMesh->_is_nil() )
3111                 continue;
3112
3113               // VSR: Get submesh data from MED convertor
3114               //                  int anInternalSubmeshId = aSubMesh->GetId(); // this is not a persistent ID, it's an internal one computed from sub-shape
3115               //                  if (myNewMeshImpl->_mapSubMesh.find(anInternalSubmeshId) != myNewMeshImpl->_mapSubMesh.end()) {
3116               //                    if(MYDEBUG) MESSAGE("VSR - SMESH_Gen_i::Load(): loading from MED file submesh with ID = " <<
3117               //                            subid << " for subshape # " << anInternalSubmeshId);
3118               //                    SMESHDS_SubMesh* aSubMeshDS =
3119               //                      myNewMeshImpl->_mapSubMesh[anInternalSubmeshId]->CreateSubMeshDS();
3120               //                    if ( !aSubMeshDS ) {
3121               //                      if(MYDEBUG) MESSAGE("VSR - SMESH_Gen_i::Load(): FAILED to create a submesh for subshape # " <<
3122               //                              anInternalSubmeshId << " in current mesh!");
3123               //                    }
3124               //                    else
3125               //                      myReader.GetSubMesh( aSubMeshDS, subid );
3126               //                  }
3127
3128               // try to get applied algorithms
3129               if ( aSubGroup->ExistInternalObject( "Applied Algorithms" ) ) {
3130                 // open "applied algorithms" HDF group
3131                 aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
3132                 aSubSubGroup->OpenOnDisk();
3133                 // get number of applied algorithms
3134                 int aNbSubObjects = aSubSubGroup->nInternalObjects(); 
3135                 for ( int l = 0; l < aNbSubObjects; l++ ) {
3136                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3137                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
3138                   // check if it is an algorithm
3139                   if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
3140                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
3141                     aDataset->OpenOnDisk();
3142                     size = aDataset->GetSize();
3143                     char* refFromFile = new char[ size ];
3144                     aDataset->ReadFromDisk( refFromFile );
3145                     aDataset->CloseOnDisk();
3146
3147                     //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3148                     //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3149                     int id = atoi( refFromFile );
3150                     string anIOR = myStudyContext->getIORbyOldId( id );
3151                     if ( !anIOR.empty() ) {
3152                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3153                       if ( !CORBA::is_nil( hypObject ) ) {
3154                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3155                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
3156                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
3157                       }
3158                     }
3159                   }
3160                 }
3161                 // close "applied algorithms" HDF group
3162                 aSubSubGroup->CloseOnDisk();
3163               }
3164
3165               // try to get applied hypotheses
3166               if ( aSubGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
3167                 // open "applied hypotheses" HDF group
3168                 aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
3169                 aSubSubGroup->OpenOnDisk();
3170                 // get number of applied hypotheses
3171                 int aNbSubObjects = aSubSubGroup->nInternalObjects(); 
3172                 for ( int l = 0; l < aNbSubObjects; l++ ) {
3173                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3174                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
3175                   // check if it is a hypothesis
3176                   if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
3177                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
3178                     aDataset->OpenOnDisk();
3179                     size = aDataset->GetSize();
3180                     char* refFromFile = new char[ size ];
3181                     aDataset->ReadFromDisk( refFromFile );
3182                     aDataset->CloseOnDisk();
3183
3184                     //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3185                     //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3186                     int id = atoi( refFromFile );
3187                     string anIOR = myStudyContext->getIORbyOldId( id );
3188                     if ( !anIOR.empty() ) {
3189                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3190                       if ( !CORBA::is_nil( hypObject ) ) {
3191                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3192                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
3193                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
3194                       }
3195                     }
3196                   }
3197                 }
3198                 // close "applied hypotheses" HDF group
3199                 aSubSubGroup->CloseOnDisk();
3200               }
3201
3202               // close submesh HDF group
3203               aSubGroup->CloseOnDisk();
3204             }
3205           }
3206           // close submeshes containers HDF group
3207           aGroup->CloseOnDisk();
3208         }
3209       }
3210
3211       if(hasData) {
3212
3213         // Read sub-meshes from MED
3214         // -------------------------
3215         if(MYDEBUG) MESSAGE("Create all sub-meshes");
3216         bool submeshesInFamilies = ( ! aTopGroup->ExistInternalObject( "Submeshes" ));
3217         if ( submeshesInFamilies )
3218         {
3219           // old way working before fix of PAL 12992
3220           myReader.CreateAllSubMeshes();
3221         }
3222         else
3223         {
3224           // open a group
3225           aGroup = new HDFgroup( "Submeshes", aTopGroup ); 
3226           aGroup->OpenOnDisk();
3227
3228           int maxID = mySMESHDSMesh->MaxShapeIndex();
3229           vector< SMESHDS_SubMesh * > subMeshes( maxID + 1, (SMESHDS_SubMesh*) 0 );
3230           vector< TopAbs_ShapeEnum  > smType   ( maxID + 1, TopAbs_SHAPE ); 
3231
3232           PositionCreator aPositionCreator;
3233
3234           SMDS_NodeIteratorPtr nIt = mySMESHDSMesh->nodesIterator();
3235           SMDS_ElemIteratorPtr eIt = mySMESHDSMesh->elementsIterator();
3236           for ( int isNode = 0; isNode < 2; ++isNode )
3237           {
3238             string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
3239             if ( aGroup->ExistInternalObject( (char*) aDSName.c_str() ))
3240             {
3241               aDataset = new HDFdataset( (char*) aDSName.c_str(), aGroup );
3242               aDataset->OpenOnDisk();
3243               // read submesh IDs for all elements sorted by ID
3244               int nbElems = aDataset->GetSize();
3245               int* smIDs = new int [ nbElems ];
3246               aDataset->ReadFromDisk( smIDs );
3247               aDataset->CloseOnDisk();
3248
3249               // get elements sorted by ID
3250               TIDSortedElemSet elemSet;
3251               if ( isNode )
3252                 while ( nIt->more() ) elemSet.insert( nIt->next() );
3253               else
3254                 while ( eIt->more() ) elemSet.insert( eIt->next() );
3255               ASSERT( elemSet.size() == nbElems );
3256
3257               // add elements to submeshes
3258               TIDSortedElemSet::iterator iE = elemSet.begin();
3259               for ( int i = 0; i < nbElems; ++i, ++iE )
3260               {
3261                 int smID = smIDs[ i ];
3262                 if ( smID == 0 ) continue;
3263                 ASSERT( smID <= maxID );
3264                 const SMDS_MeshElement* elem = *iE;
3265                 // get or create submesh
3266                 SMESHDS_SubMesh* & sm = subMeshes[ smID ];
3267                 if ( ! sm ) {
3268                   sm = mySMESHDSMesh->NewSubMesh( smID );
3269                   smType[ smID ] = mySMESHDSMesh->IndexToShape( smID ).ShapeType();
3270                 }
3271                 // add
3272                 if ( isNode ) {
3273                   SMDS_PositionPtr pos = aPositionCreator.MakePosition( smType[ smID ]);
3274                   pos->SetShapeId( smID );
3275                   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( static_cast<const SMDS_MeshNode*>( elem ));
3276                   node->SetPosition( pos );
3277                   sm->AddNode( node );
3278                 } else {
3279                   sm->AddElement( elem );
3280                 }
3281               }
3282               delete [] smIDs;
3283             }
3284           }
3285         } // end reading submeshes
3286
3287         // Read node positions on sub-shapes (SMDS_Position)
3288
3289         if ( aTopGroup->ExistInternalObject( "Node Positions" ))
3290         {
3291           // There are 5 datasets to read:
3292           // "Nodes on Edges" - ID of node on edge
3293           // "Edge positions" - U parameter on node on edge
3294           // "Nodes on Faces" - ID of node on face
3295           // "Face U positions" - U parameter of node on face
3296           // "Face V positions" - V parameter of node on face
3297           char* aEid_DSName = "Nodes on Edges";
3298           char* aEu_DSName  = "Edge positions";
3299           char* aFu_DSName  = "Face U positions";
3300           //char* aFid_DSName = "Nodes on Faces";
3301           //char* aFv_DSName  = "Face V positions";
3302
3303           // data to retrieve
3304           int nbEids = 0, nbFids = 0;
3305           int *aEids = 0, *aFids  = 0;
3306           double *aEpos = 0, *aFupos = 0, *aFvpos = 0;
3307
3308           // open a group
3309           aGroup = new HDFgroup( "Node Positions", aTopGroup ); 
3310           aGroup->OpenOnDisk();
3311
3312           // loop on 5 data sets
3313           int aNbObjects = aGroup->nInternalObjects();
3314           for ( int i = 0; i < aNbObjects; i++ )
3315           {
3316             // identify dataset
3317             char aDSName[ HDF_NAME_MAX_LEN+1 ];
3318             aGroup->InternalObjectIndentify( i, aDSName );
3319             // read data
3320             aDataset = new HDFdataset( aDSName, aGroup );
3321             aDataset->OpenOnDisk();
3322             if ( aDataset->GetType() == HDF_FLOAT64 ) // Positions
3323             {
3324               double* pos = new double [ aDataset->GetSize() ];
3325               aDataset->ReadFromDisk( pos );
3326               // which one?
3327               if ( strncmp( aDSName, aEu_DSName, strlen( aEu_DSName )) == 0 )
3328                 aEpos = pos;
3329               else if ( strncmp( aDSName, aFu_DSName, strlen( aFu_DSName )) == 0 )
3330                 aFupos = pos;
3331               else
3332                 aFvpos = pos;
3333             }
3334             else // NODE IDS
3335             {
3336               int aSize = aDataset->GetSize();
3337
3338               // for reading files, created from 18.07.2005 till 10.10.2005
3339               if (aDataset->GetType() == HDF_STRING)
3340                 aSize /= sizeof(int);
3341
3342               int* ids = new int [aSize];
3343               aDataset->ReadFromDisk( ids );
3344               // on face or nodes?
3345               if ( strncmp( aDSName, aEid_DSName, strlen( aEid_DSName )) == 0 ) {
3346                 aEids = ids;
3347                 nbEids = aSize;
3348               }
3349               else {
3350                 aFids = ids;
3351                 nbFids = aSize;
3352               }
3353             }
3354             aDataset->CloseOnDisk();
3355           } // loop on 5 datasets
3356
3357           // Set node positions on edges or faces
3358           for ( int onFace = 0; onFace < 2; onFace++ )
3359           {
3360             int nbNodes = ( onFace ? nbFids : nbEids );
3361             if ( nbNodes == 0 ) continue;
3362             int* aNodeIDs = ( onFace ? aFids : aEids );
3363             double* aUPos = ( onFace ? aFupos : aEpos );
3364             double* aVPos = ( onFace ? aFvpos : 0 );
3365             // loop on node IDs
3366             for ( int iNode = 0; iNode < nbNodes; iNode++ )
3367             {
3368               const SMDS_MeshNode* node = mySMESHDSMesh->FindNode( aNodeIDs[ iNode ]);
3369               ASSERT( node );
3370               SMDS_PositionPtr aPos = node->GetPosition();
3371               ASSERT( aPos )
3372                 if ( onFace ) {
3373                   ASSERT( aPos->GetTypeOfPosition() == SMDS_TOP_FACE );
3374                   SMDS_FacePosition* fPos = const_cast<SMDS_FacePosition*>
3375                     ( static_cast<const SMDS_FacePosition*>( aPos.get() ));
3376                   fPos->SetUParameter( aUPos[ iNode ]);
3377                   fPos->SetVParameter( aVPos[ iNode ]);
3378                 }
3379                 else {
3380                   ASSERT( aPos->GetTypeOfPosition() == SMDS_TOP_EDGE );
3381                   SMDS_EdgePosition* fPos = const_cast<SMDS_EdgePosition*>
3382                     ( static_cast<const SMDS_EdgePosition*>( aPos.get() ));
3383                   fPos->SetUParameter( aUPos[ iNode ]);
3384                 }
3385             }
3386           }
3387           if ( aEids ) delete [] aEids;
3388           if ( aFids ) delete [] aFids;
3389           if ( aEpos ) delete [] aEpos;
3390           if ( aFupos ) delete [] aFupos;
3391           if ( aFvpos ) delete [] aFvpos;
3392
3393           aGroup->CloseOnDisk();
3394
3395         } // if ( aTopGroup->ExistInternalObject( "Node Positions" ) )
3396       } // if ( hasData )
3397
3398       // Recompute State (as computed sub-meshes are restored from MED)
3399       if ( !aShapeObject->_is_nil() || !myNewMeshImpl->HasShapeToMesh()) {
3400         MESSAGE("Compute State Engine ...");
3401         TopoDS_Shape myLocShape;
3402         if(myNewMeshImpl->HasShapeToMesh())
3403           myLocShape = GeomObjectToShape( aShapeObject );
3404         else
3405           myLocShape = SMESH_Mesh::PseudoShape();
3406         
3407         myNewMeshImpl->GetImpl().GetSubMesh(myLocShape)->ComputeStateEngine
3408           (SMESH_subMesh::SUBMESH_RESTORED);
3409         MESSAGE("Compute State Engine finished");
3410       }
3411
3412       // try to get groups
3413       for ( int ii = GetNodeGroupsTag(); ii <= GetVolumeGroupsTag(); ii++ ) {
3414         char name_group[ 30 ];
3415         if ( ii == GetNodeGroupsTag() )
3416           strcpy( name_group, "Groups of Nodes" );
3417         else if ( ii == GetEdgeGroupsTag() )
3418           strcpy( name_group, "Groups of Edges" );
3419         else if ( ii == GetFaceGroupsTag() )
3420           strcpy( name_group, "Groups of Faces" );
3421         else if ( ii == GetVolumeGroupsTag() )
3422           strcpy( name_group, "Groups of Volumes" );
3423
3424         if ( aTopGroup->ExistInternalObject( name_group ) ) {
3425           aGroup = new HDFgroup( name_group, aTopGroup );
3426           aGroup->OpenOnDisk();
3427           // get number of groups
3428           int aNbSubObjects = aGroup->nInternalObjects(); 
3429           for ( int j = 0; j < aNbSubObjects; j++ ) {
3430             char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3431             aGroup->InternalObjectIndentify( j, name_dataset );
3432             // check if it is an group
3433             if ( string( name_dataset ).substr( 0, 5 ) == string( "Group" ) ) {
3434               // --> get group id
3435               int subid = atoi( string( name_dataset ).substr( 5 ).c_str() );
3436               if ( subid <= 0 )
3437                 continue;
3438               aDataset = new HDFdataset( name_dataset, aGroup );
3439               aDataset->OpenOnDisk();
3440
3441               // Retrieve actual group name
3442               size = aDataset->GetSize();
3443               char* nameFromFile = new char[ size ];
3444               aDataset->ReadFromDisk( nameFromFile );
3445               aDataset->CloseOnDisk();
3446
3447               // Try to find a shape reference
3448               TopoDS_Shape aShape;
3449               char aRefName[ 30 ];
3450               sprintf( aRefName, "Ref on shape %d", subid);
3451               if ( aGroup->ExistInternalObject( aRefName ) ) {
3452                 // load mesh "Ref on shape" - it's an entry to SObject
3453                 aDataset = new HDFdataset( aRefName, aGroup );
3454                 aDataset->OpenOnDisk();
3455                 size = aDataset->GetSize();
3456                 char* refFromFile = new char[ size ];
3457                 aDataset->ReadFromDisk( refFromFile );
3458                 aDataset->CloseOnDisk();
3459                 if ( strlen( refFromFile ) > 0 ) {
3460                   SALOMEDS::SObject_var shapeSO = myCurrentStudy->FindObjectID( refFromFile );
3461                   CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
3462                   if ( !CORBA::is_nil( shapeObject ) ) {
3463                     aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
3464                     if ( !aShapeObject->_is_nil() )
3465                       aShape = GeomObjectToShape( aShapeObject );
3466                   }
3467                 }
3468               }
3469               // Create group servant
3470               SMESH::ElementType type = (SMESH::ElementType)(ii - GetNodeGroupsTag() + 1);
3471               SMESH::SMESH_GroupBase_var aNewGroup = SMESH::SMESH_GroupBase::_duplicate
3472                 ( myNewMeshImpl->createGroup( type, nameFromFile, aShape ) );
3473               // Obtain a SMESHDS_Group object 
3474               if ( aNewGroup->_is_nil() )
3475                 continue;
3476
3477               string iorSubString = GetORB()->object_to_string( aNewGroup );
3478               int newSubId = myStudyContext->findId( iorSubString );
3479               myStudyContext->mapOldToNew( subid, newSubId );
3480
3481               SMESH_GroupBase_i* aGroupImpl =
3482                 dynamic_cast<SMESH_GroupBase_i*>( GetServant( aNewGroup ).in() );
3483               if ( !aGroupImpl )
3484                 continue;
3485
3486               SMESH_Group* aLocalGroup  = myLocMesh.GetGroup( aGroupImpl->GetLocalID() );
3487               if ( !aLocalGroup )
3488                 continue;
3489
3490               SMESHDS_GroupBase* aGroupBaseDS = aLocalGroup->GetGroupDS();
3491               aGroupBaseDS->SetStoreName( name_dataset );
3492
3493               // ouv : NPAL12872
3494               // Read color of the group
3495               char aGroupColorName[ 30 ];
3496               sprintf( aGroupColorName, "ColorGroup %d", subid);
3497               if ( aGroup->ExistInternalObject( aGroupColorName ) )
3498               {
3499                 aDataset = new HDFdataset( aGroupColorName, aGroup );
3500                 aDataset->OpenOnDisk();
3501                 size = aDataset->GetSize();
3502                 double* anRGB = new double[ size ];
3503                 aDataset->ReadFromDisk( anRGB );
3504                 aDataset->CloseOnDisk();
3505                 Quantity_Color aColor( anRGB[0], anRGB[1], anRGB[2], Quantity_TOC_RGB );
3506                 aGroupBaseDS->SetColor( aColor );
3507               }
3508
3509               // Fill group with contents from MED file
3510               SMESHDS_Group* aGrp = dynamic_cast<SMESHDS_Group*>( aGroupBaseDS );
3511               if ( aGrp )
3512                 myReader.GetGroup( aGrp );
3513             }
3514           }
3515           aGroup->CloseOnDisk();
3516         }
3517       }
3518     }
3519     // close mesh group
3520     if(aTopGroup)
3521       aTopGroup->CloseOnDisk();   
3522   }
3523   // close HDF file
3524   aFile->CloseOnDisk();
3525   delete aFile;
3526
3527   // Remove temporary files created from the stream
3528   if ( !isMultiFile ) 
3529     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
3530
3531   INFOS( "SMESH_Gen_i::Load completed" );
3532   return true;
3533 }
3534
3535 //=============================================================================
3536 /*!
3537  *  SMESH_Gen_i::LoadASCII
3538  *
3539  *  Load SMESH module's data in ASCII format
3540  */
3541 //=============================================================================
3542
3543 bool SMESH_Gen_i::LoadASCII( SALOMEDS::SComponent_ptr theComponent,
3544                              const SALOMEDS::TMPFile& theStream,
3545                              const char*              theURL,
3546                              bool                     isMultiFile ) {
3547   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
3548   return Load( theComponent, theStream, theURL, isMultiFile );
3549
3550   //before call main ::Load method it's need for decipher text format to
3551   //binary ( "|xx" => x' )
3552   int size = theStream.length();
3553   if ( int((size / 3 )*3) != size ) //error size of buffer
3554     return false;
3555
3556   int real_size = int(size / 3);
3557
3558   _CORBA_Octet* buffer = new _CORBA_Octet[real_size];
3559   char tmp[3];
3560   tmp[2]='\0';
3561   int c = -1;
3562   for ( int i = 0; i < real_size; i++ )
3563   {
3564     memcpy( &(tmp[0]), &(theStream[i*3+1]), 2 );
3565     sscanf( tmp, "%x", &c );
3566     sprintf( (char*)&(buffer[i]), "%c", (char)c );
3567   }
3568
3569   SALOMEDS::TMPFile_var aRealStreamFile = new SALOMEDS::TMPFile(real_size, real_size, buffer, 1);
3570   
3571   return Load( theComponent, *(aRealStreamFile._retn()), theURL, isMultiFile );
3572 }
3573
3574 //=============================================================================
3575 /*!
3576  *  SMESH_Gen_i::Close
3577  *
3578  *  Clears study-connected data when it is closed
3579  */
3580 //=============================================================================
3581
3582 void SMESH_Gen_i::Close( SALOMEDS::SComponent_ptr theComponent )
3583 {
3584   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Close" );
3585
3586   // Clear study contexts data
3587   int studyId = GetCurrentStudyID();
3588   if ( myStudyContextMap.find( studyId ) != myStudyContextMap.end() ) {
3589     delete myStudyContextMap[ studyId ];
3590     myStudyContextMap.erase( studyId );
3591   }
3592
3593   // delete SMESH_Mesh's
3594   StudyContextStruct* context = myGen.GetStudyContext( studyId );
3595   map< int, SMESH_Mesh* >::iterator i_mesh = context->mapMesh.begin();
3596   for ( ; i_mesh != context->mapMesh.end(); ++i_mesh )
3597     delete i_mesh->second;
3598   // delete SMESHDS_Mesh's
3599   // it's too long on big meshes
3600 //   if ( context->myDocument ) {
3601 //     delete context->myDocument;
3602 //     context->myDocument = 0;
3603 //   }
3604   
3605   return;
3606 }
3607
3608 //=============================================================================
3609 /*!
3610  *  SMESH_Gen_i::ComponentDataType
3611  * 
3612  *  Get component data type
3613  */
3614 //=============================================================================
3615
3616 char* SMESH_Gen_i::ComponentDataType()
3617 {
3618   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::ComponentDataType" );
3619   return CORBA::string_dup( "SMESH" );
3620 }
3621
3622     
3623 //=============================================================================
3624 /*!
3625  *  SMESH_Gen_i::IORToLocalPersistentID
3626  *  
3627  *  Transform data from transient form to persistent
3628  */
3629 //=============================================================================
3630
3631 char* SMESH_Gen_i::IORToLocalPersistentID( SALOMEDS::SObject_ptr /*theSObject*/,
3632                                            const char*           IORString,
3633                                            CORBA::Boolean        /*isMultiFile*/,
3634                                            CORBA::Boolean        /*isASCII*/ )
3635 {
3636   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IORToLocalPersistentID" );
3637   StudyContext* myStudyContext = GetCurrentStudyContext();
3638   
3639   if ( myStudyContext && strcmp( IORString, "" ) != 0 ) {
3640     int anId = myStudyContext->findId( IORString );
3641     if ( anId ) {
3642       if(MYDEBUG) MESSAGE( "VSR " << anId )
3643       char strId[ 20 ];
3644       sprintf( strId, "%d", anId );
3645       return  CORBA::string_dup( strId );
3646     }
3647   }
3648   return CORBA::string_dup( "" );
3649 }
3650
3651 //=============================================================================
3652 /*!
3653  *  SMESH_Gen_i::LocalPersistentIDToIOR
3654  *
3655  *  Transform data from persistent form to transient
3656  */
3657 //=============================================================================
3658
3659 char* SMESH_Gen_i::LocalPersistentIDToIOR( SALOMEDS::SObject_ptr /*theSObject*/,
3660                                            const char*           aLocalPersistentID,
3661                                            CORBA::Boolean        /*isMultiFile*/,
3662                                            CORBA::Boolean        /*isASCII*/ )
3663 {
3664   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LocalPersistentIDToIOR(): id = " << aLocalPersistentID );
3665   StudyContext* myStudyContext = GetCurrentStudyContext();
3666
3667   if ( myStudyContext && strcmp( aLocalPersistentID, "" ) != 0 ) {
3668     int anId = atoi( aLocalPersistentID );
3669     return CORBA::string_dup( myStudyContext->getIORbyOldId( anId ).c_str() );
3670   }
3671   return CORBA::string_dup( "" );
3672 }
3673
3674 //=======================================================================
3675 //function : RegisterObject
3676 //purpose  : 
3677 //=======================================================================
3678
3679 int SMESH_Gen_i::RegisterObject(CORBA::Object_ptr theObject)
3680 {
3681   StudyContext* myStudyContext = GetCurrentStudyContext();
3682   if ( myStudyContext && !CORBA::is_nil( theObject )) {
3683     CORBA::String_var iorString = GetORB()->object_to_string( theObject );
3684     return myStudyContext->addObject( string( iorString.in() ) );
3685   }
3686   return 0;
3687 }
3688
3689 //================================================================================
3690 /*!
3691  * \brief Return id of registered object
3692   * \param theObject - the Object
3693   * \retval int - Object id
3694  */
3695 //================================================================================
3696
3697 int SMESH_Gen_i::GetObjectId(CORBA::Object_ptr theObject)
3698 {
3699   StudyContext* myStudyContext = GetCurrentStudyContext();
3700   if ( myStudyContext && !CORBA::is_nil( theObject )) {
3701     string iorString = GetORB()->object_to_string( theObject );
3702     return myStudyContext->findId( iorString );
3703   }
3704   return 0;
3705 }
3706
3707 //=============================================================================
3708 /*! 
3709  *  SMESHEngine_factory
3710  *
3711  *  C factory, accessible with dlsym, after dlopen  
3712  */
3713 //=============================================================================
3714
3715 extern "C"
3716 { SMESH_I_EXPORT
3717   PortableServer::ObjectId* SMESHEngine_factory( CORBA::ORB_ptr            orb,
3718                                                  PortableServer::POA_ptr   poa, 
3719                                                  PortableServer::ObjectId* contId,
3720                                                  const char*               instanceName, 
3721                                                  const char*               interfaceName )
3722   {
3723     if(MYDEBUG) MESSAGE( "PortableServer::ObjectId* SMESHEngine_factory()" );
3724     if(MYDEBUG) SCRUTE(interfaceName);
3725     SMESH_Gen_i* aSMESHGen = new SMESH_Gen_i(orb, poa, contId, instanceName, interfaceName);
3726     return aSMESHGen->getId() ;
3727   }
3728 }