Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 &&
331         !strncmp( theLibName, "lib", 3 ) &&
332         !strcmp( theLibName+libNameLen-3, ".so" ))
333     {
334       //the old format
335 #ifdef WNT
336       aPlatformLibName = new char[libNameLen - 1];
337       aPlatformLibName[0] = '\0';
338       aPlatformLibName = strncat( aPlatformLibName, theLibName+3, libNameLen-6  );
339       aPlatformLibName = strcat( aPlatformLibName, ".dll" );
340       aPlatformLibName[libNameLen - 2] = '\0';
341 #else
342       aPlatformLibName = new char[ libNameLen + 1];
343       aPlatformLibName[0] = '\0';
344       aPlatformLibName = strcat( aPlatformLibName, theLibName );
345       aPlatformLibName[libNameLen] = '\0';
346 #endif
347     }
348     else
349     {
350       //try to use new format 
351 #ifdef WNT
352       aPlatformLibName = new char[ libNameLen + 5 ];
353       aPlatformLibName[0] = '\0';
354       aPlatformLibName = strcat( aPlatformLibName, theLibName );
355       aPlatformLibName = strcat( aPlatformLibName, ".dll" );
356 #else
357       aPlatformLibName = new char[ libNameLen + 7 ];
358       aPlatformLibName[0] = '\0';
359       aPlatformLibName = strcat( aPlatformLibName, "lib" );
360       aPlatformLibName = strcat( aPlatformLibName, theLibName );
361       aPlatformLibName = strcat( aPlatformLibName, ".so" );
362 #endif
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   return ConcatenateCommon(theMeshesArray,
1423                            theUniteIdenticalGroups,
1424                            theMergeNodesAndElements,
1425                            theMergeTolerance,
1426                            false);
1427 }
1428
1429 //================================================================================
1430 /*!
1431  *  SMESH_Gen_i::ConcatenateWithGroups
1432  *
1433  *  Concatenate the given meshes into one mesh
1434  *  Create the groups of all elements from initial meshes
1435  */
1436 //================================================================================
1437
1438 SMESH::SMESH_Mesh_ptr
1439 SMESH_Gen_i::ConcatenateWithGroups(const SMESH::mesh_array& theMeshesArray,
1440                                    CORBA::Boolean           theUniteIdenticalGroups, 
1441                                    CORBA::Boolean           theMergeNodesAndElements, 
1442                                    CORBA::Double            theMergeTolerance)
1443   throw ( SALOME::SALOME_Exception )
1444 {
1445   return ConcatenateCommon(theMeshesArray,
1446                            theUniteIdenticalGroups,
1447                            theMergeNodesAndElements,
1448                            theMergeTolerance,
1449                            true);
1450 }
1451
1452 //================================================================================
1453 /*!
1454  *  SMESH_Gen_i::ConcatenateCommon
1455  *
1456  *  Concatenate the given meshes into one mesh
1457  */
1458 //================================================================================
1459
1460 SMESH::SMESH_Mesh_ptr
1461 SMESH_Gen_i::ConcatenateCommon(const SMESH::mesh_array& theMeshesArray,
1462                                CORBA::Boolean           theUniteIdenticalGroups, 
1463                                CORBA::Boolean           theMergeNodesAndElements, 
1464                                CORBA::Double            theMergeTolerance,
1465                                CORBA::Boolean           theCommonGroups)
1466   throw ( SALOME::SALOME_Exception )
1467 {
1468   typedef map<int, int> TIDsMap;
1469   typedef list<SMESH::SMESH_Group_var> TListOfNewGroups;
1470   typedef map< pair<string, SMESH::ElementType>, TListOfNewGroups > TGroupsMap;
1471   typedef std::set<SMESHDS_GroupBase*> TGroups;
1472
1473   TPythonDump aPythonDump; // prevent dump of called methods
1474
1475   // create mesh
1476   SMESH::SMESH_Mesh_var aNewMesh = CreateEmptyMesh();
1477   
1478   if ( !aNewMesh->_is_nil() ) {
1479     SMESH_Mesh_i* aNewImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( aNewMesh ).in() );
1480     if ( aNewImpl ) {
1481       ::SMESH_Mesh& aLocMesh = aNewImpl->GetImpl();
1482       SMESHDS_Mesh* aNewMeshDS = aLocMesh.GetMeshDS();
1483
1484       TGroupsMap aGroupsMap;
1485       TListOfNewGroups aListOfNewGroups;
1486       SMESH_MeshEditor aNewEditor = ::SMESH_MeshEditor(&aLocMesh);
1487       SMESH::ListOfGroups_var aListOfGroups = new SMESH::ListOfGroups();
1488
1489       // loop on meshes
1490       for ( int i = 0; i < theMeshesArray.length(); i++) {
1491         SMESH::SMESH_Mesh_var anInitMesh = theMeshesArray[i];
1492         if ( !anInitMesh->_is_nil() ) {
1493           SMESH_Mesh_i* anInitImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( anInitMesh ).in() );
1494           if ( anInitImpl ) {
1495             ::SMESH_Mesh& aInitLocMesh = anInitImpl->GetImpl();
1496             SMESHDS_Mesh* anInitMeshDS = aInitLocMesh.GetMeshDS();
1497
1498             TIDsMap nodesMap;
1499             TIDsMap elemsMap;
1500
1501             // loop on elements of mesh
1502             SMDS_ElemIteratorPtr itElems = anInitMeshDS->elementsIterator();
1503             const SMDS_MeshElement* anElem = 0;
1504             const SMDS_MeshElement* aNewElem = 0;
1505             int anElemNbNodes = 0;
1506
1507             int anNbNodes   = 0;
1508             int anNbEdges   = 0;
1509             int anNbFaces   = 0;
1510             int anNbVolumes = 0;
1511
1512             SMESH::long_array_var anIDsNodes   = new SMESH::long_array();
1513             SMESH::long_array_var anIDsEdges   = new SMESH::long_array();
1514             SMESH::long_array_var anIDsFaces   = new SMESH::long_array();
1515             SMESH::long_array_var anIDsVolumes = new SMESH::long_array();
1516
1517             if( theCommonGroups ) {
1518               anIDsNodes->length(   anInitMeshDS->NbNodes()   );
1519               anIDsEdges->length(   anInitMeshDS->NbEdges()   );
1520               anIDsFaces->length(   anInitMeshDS->NbFaces()   );
1521               anIDsVolumes->length( anInitMeshDS->NbVolumes() );
1522             }
1523
1524             for ( int j = 0; itElems->more(); j++) {
1525               anElem = itElems->next();
1526               SMDSAbs_ElementType anElemType = anElem->GetType();
1527               anElemNbNodes = anElem->NbNodes();
1528               std::vector<const SMDS_MeshNode*> aNodesArray (anElemNbNodes);
1529
1530               // loop on nodes of element
1531               const SMDS_MeshNode* aNode = 0;
1532               const SMDS_MeshNode* aNewNode = 0;
1533               SMDS_ElemIteratorPtr itNodes = anElem->nodesIterator();
1534
1535               for ( int k = 0; itNodes->more(); k++) {
1536                 aNode = static_cast<const SMDS_MeshNode*>(itNodes->next());
1537                 if ( nodesMap.find(aNode->GetID()) == nodesMap.end() ) {
1538                   aNewNode = aNewMeshDS->AddNode(aNode->X(), aNode->Y(), aNode->Z());
1539                   nodesMap.insert( make_pair(aNode->GetID(), aNewNode->GetID()) );
1540                   if( theCommonGroups )
1541                     anIDsNodes[anNbNodes++] = aNewNode->GetID();
1542                 }
1543                 else
1544                   aNewNode = aNewMeshDS->FindNode( nodesMap.find(aNode->GetID())->second );
1545                 aNodesArray[k] = aNewNode;
1546               }//nodes loop
1547
1548               // creates a corresponding element on existent nodes in new mesh
1549               if ( anElem->IsPoly() && anElemType == SMDSAbs_Volume )
1550                 {
1551                   const SMDS_PolyhedralVolumeOfNodes* aVolume =
1552                     dynamic_cast<const SMDS_PolyhedralVolumeOfNodes*> (anElem);
1553                   if ( aVolume ) {
1554                     aNewElem = aNewMeshDS->AddPolyhedralVolume(aNodesArray, 
1555                                                                aVolume->GetQuanities());
1556                     elemsMap.insert(make_pair(anElem->GetID(), aNewElem->GetID()));
1557                     if( theCommonGroups )
1558                       anIDsVolumes[anNbVolumes++] = aNewElem->GetID();
1559                   }
1560                 }
1561               else {
1562                 
1563                 aNewElem = aNewEditor.AddElement(aNodesArray,
1564                                                  anElemType,
1565                                                  anElem->IsPoly());
1566                 elemsMap.insert(make_pair(anElem->GetID(), aNewElem->GetID()));
1567                 if( theCommonGroups ) {
1568                   if( anElemType == SMDSAbs_Edge )
1569                     anIDsEdges[anNbEdges++] = aNewElem->GetID();
1570                   else if( anElemType == SMDSAbs_Face )
1571                     anIDsFaces[anNbFaces++] = aNewElem->GetID();
1572                   else if( anElemType == SMDSAbs_Volume )
1573                     anIDsVolumes[anNbVolumes++] = aNewElem->GetID();
1574                 }
1575               } 
1576             }//elems loop
1577             
1578             aListOfGroups = anInitImpl->GetGroups();
1579             SMESH::SMESH_GroupBase_ptr aGroup;
1580
1581             // loop on groups of mesh
1582             SMESH::long_array_var anInitIDs = new SMESH::long_array();
1583             SMESH::long_array_var anNewIDs = new SMESH::long_array();
1584             SMESH::SMESH_Group_var aNewGroup;
1585
1586             SMESH::ElementType aGroupType;
1587             CORBA::String_var aGroupName;
1588             if ( theCommonGroups ) {
1589               for(aGroupType=SMESH::NODE;aGroupType<=SMESH::VOLUME;aGroupType=(SMESH::ElementType)(aGroupType+1)) {
1590                 string str = "Gr";
1591                 SALOMEDS::SObject_var aMeshSObj = ObjectToSObject( myCurrentStudy, anInitMesh );
1592                 if(aMeshSObj)
1593                   str += aMeshSObj->GetName();
1594                 str += "_";
1595
1596                 int anLen = 0;
1597
1598                 switch(aGroupType) {
1599                 case SMESH::NODE:
1600                   str += "Nodes";
1601                   anIDsNodes->length(anNbNodes);
1602                   anLen = anNbNodes;
1603                   break;
1604                 case SMESH::EDGE:
1605                   str += "Edges";
1606                   anIDsEdges->length(anNbEdges);
1607                   anLen = anNbEdges;
1608                   break;
1609                 case SMESH::FACE:
1610                   str += "Faces";
1611                   anIDsFaces->length(anNbFaces);
1612                   anLen = anNbFaces;
1613                   break;
1614                 case SMESH::VOLUME:
1615                   str += "Volumes";
1616                   anIDsVolumes->length(anNbVolumes);
1617                   anLen = anNbVolumes;
1618                   break;
1619                 default:
1620                   break;
1621                 }
1622
1623                 if(anLen) {
1624                   aGroupName = str.c_str();
1625
1626                   // add a new group in the mesh
1627                   aNewGroup = aNewImpl->CreateGroup(aGroupType, aGroupName);
1628
1629                   switch(aGroupType) {
1630                   case SMESH::NODE:
1631                     aNewGroup->Add( anIDsNodes );
1632                     break;
1633                   case SMESH::EDGE:
1634                     aNewGroup->Add( anIDsEdges );
1635                     break;
1636                   case SMESH::FACE:
1637                     aNewGroup->Add( anIDsFaces );
1638                     break;
1639                   case SMESH::VOLUME:
1640                     aNewGroup->Add( anIDsVolumes );
1641                     break;
1642                   default:
1643                     break;
1644                   }
1645                 
1646                   aListOfNewGroups.clear();
1647                   aListOfNewGroups.push_back(aNewGroup);
1648                   aGroupsMap.insert(make_pair( make_pair(aGroupName, aGroupType), aListOfNewGroups ));
1649                 }
1650               }
1651             }
1652
1653             // check that current group name and type don't have identical ones in union mesh
1654             for (int i = 0; i < aListOfGroups->length(); i++) {
1655               aGroup = aListOfGroups[i];
1656               aListOfNewGroups.clear();
1657               aGroupType = aGroup->GetType();
1658               aGroupName = aGroup->GetName();
1659
1660               TGroupsMap::iterator anIter = aGroupsMap.find(make_pair(aGroupName, aGroupType));
1661
1662               // convert a list of IDs
1663               anInitIDs = aGroup->GetListOfID();
1664               anNewIDs->length(anInitIDs->length());
1665               if ( aGroupType == SMESH::NODE )
1666                 for (int j = 0; j < anInitIDs->length(); j++) {
1667                   anNewIDs[j] = nodesMap.find(anInitIDs[j])->second;
1668                 }
1669               else
1670                 for (int j = 0; j < anInitIDs->length(); j++) {
1671                   anNewIDs[j] = elemsMap.find(anInitIDs[j])->second;
1672                 }
1673               
1674               // check that current group name and type don't have identical ones in union mesh
1675               if ( anIter == aGroupsMap.end() ) {
1676                 // add a new group in the mesh
1677                 aNewGroup = aNewImpl->CreateGroup(aGroupType, aGroupName);
1678                 // add elements into new group
1679                 aNewGroup->Add( anNewIDs );
1680                 
1681                 aListOfNewGroups.push_back(aNewGroup);
1682                 aGroupsMap.insert(make_pair( make_pair(aGroupName, aGroupType), aListOfNewGroups ));
1683               }
1684
1685               else if ( theUniteIdenticalGroups ) {
1686                 // unite identical groups
1687                 TListOfNewGroups& aNewGroups = anIter->second;
1688                 aNewGroups.front()->Add( anNewIDs );
1689               }
1690
1691               else {
1692                 // rename identical groups
1693                 aNewGroup = aNewImpl->CreateGroup(aGroupType, aGroupName);
1694                 aNewGroup->Add( anNewIDs );
1695                 
1696                 TListOfNewGroups& aNewGroups = anIter->second;
1697                 string aNewGroupName;
1698                 if (aNewGroups.size() == 1) {
1699                   aNewGroupName = string(aGroupName) + "_1";
1700                   aNewGroups.front()->SetName(aNewGroupName.c_str());
1701                 }
1702                 char aGroupNum[128];
1703                 sprintf(aGroupNum, "%u", aNewGroups.size()+1);
1704                 aNewGroupName = string(aGroupName) + "_" + string(aGroupNum);
1705                 aNewGroup->SetName(aNewGroupName.c_str());
1706                 aNewGroups.push_back(aNewGroup);
1707               }
1708             }//groups loop
1709           }
1710         }
1711       }//meshes loop
1712
1713       if (theMergeNodesAndElements) {
1714         // merge nodes
1715         set<const SMDS_MeshNode*> aMeshNodes; // no input nodes
1716         SMESH_MeshEditor::TListOfListOfNodes aGroupsOfNodes;
1717         aNewEditor.FindCoincidentNodes( aMeshNodes, theMergeTolerance, aGroupsOfNodes );
1718         aNewEditor.MergeNodes( aGroupsOfNodes );
1719         // merge elements
1720         aNewEditor.MergeEqualElements();
1721       }
1722     }
1723   }
1724   
1725   // Update Python script
1726   aPythonDump << aNewMesh << " = " << this;
1727   if( !theCommonGroups )
1728     aPythonDump << ".Concatenate(";
1729   else
1730     aPythonDump << ".ConcatenateWithGroups(";
1731   aPythonDump << "[";
1732   for ( int i = 0; i < theMeshesArray.length(); i++) {
1733     if (i > 0) aPythonDump << ", ";
1734     aPythonDump << theMeshesArray[i];
1735   }
1736   aPythonDump << "], ";
1737   aPythonDump << theUniteIdenticalGroups << ", "
1738               << theMergeNodesAndElements << ", "
1739               << theMergeTolerance << ")";
1740
1741   return aNewMesh._retn();
1742 }
1743
1744 //=============================================================================
1745 /*!
1746  *  SMESH_Gen_i::Save
1747  *
1748  *  Save SMESH module's data
1749  */
1750 //=============================================================================
1751 SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent,
1752                                       const char*              theURL,
1753                                       bool                     isMultiFile )
1754 {
1755   INFOS( "SMESH_Gen_i::Save" );
1756
1757   //  ASSERT( theComponent->GetStudy()->StudyId() == myCurrentStudy->StudyId() )
1758   // san -- in case <myCurrentStudy> differs from theComponent's study,
1759   // use that of the component
1760   if ( myCurrentStudy->_is_nil() || 
1761     theComponent->GetStudy()->StudyId() != myCurrentStudy->StudyId() )
1762     SetCurrentStudy( theComponent->GetStudy() );
1763
1764   // Store study contents as a set of python commands
1765   SavePython(myCurrentStudy);
1766
1767   StudyContext* myStudyContext = GetCurrentStudyContext();
1768
1769   // Declare a byte stream
1770   SALOMEDS::TMPFile_var aStreamFile;
1771
1772   // Obtain a temporary dir
1773   TCollection_AsciiString tmpDir =
1774     ( isMultiFile ) ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
1775
1776   // Create a sequence of files processed
1777   SALOMEDS::ListOfFileNames_var aFileSeq = new SALOMEDS::ListOfFileNames;
1778   aFileSeq->length( NUM_TMP_FILES );
1779
1780   TCollection_AsciiString aStudyName( "" );
1781   if ( isMultiFile ) 
1782     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( myCurrentStudy->URL() ).c_str() );
1783
1784   // Set names of temporary files
1785   TCollection_AsciiString filename =
1786     aStudyName + TCollection_AsciiString( "_SMESH.hdf" );        // for SMESH data itself
1787   TCollection_AsciiString meshfile =
1788     aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );   // for mesh data to be stored in MED file
1789   aFileSeq[ 0 ] = CORBA::string_dup( filename.ToCString() );
1790   aFileSeq[ 1 ] = CORBA::string_dup( meshfile.ToCString() );
1791   filename = tmpDir + filename;
1792   meshfile = tmpDir + meshfile;
1793
1794   HDFfile*    aFile;
1795   HDFdataset* aDataset;
1796   HDFgroup*   aTopGroup;
1797   HDFgroup*   aGroup;
1798   HDFgroup*   aSubGroup;
1799   HDFgroup*   aSubSubGroup;
1800   hdf_size    aSize[ 1 ];
1801
1802
1803   //Remove the files if they exist: BugID: 11225
1804 #ifndef WNT /* unix functionality */
1805   TCollection_AsciiString cmd("rm -f \"");
1806 #else /* windows */
1807   TCollection_AsciiString cmd("del /F \"");
1808 #endif
1809
1810   cmd+=filename;
1811   cmd+="\" \"";
1812   cmd+=meshfile;
1813   cmd+="\"";
1814   system(cmd.ToCString());
1815
1816   // MED writer to be used by storage process
1817   DriverMED_W_SMESHDS_Mesh myWriter;
1818   myWriter.SetFile( meshfile.ToCString() );
1819
1820   // Write data
1821   // ---> create HDF file
1822   aFile = new HDFfile( filename.ToCString() );
1823   aFile->CreateOnDisk();
1824
1825   // --> iterator for top-level objects
1826   SALOMEDS::ChildIterator_var itBig = myCurrentStudy->NewChildIterator( theComponent );
1827   for ( ; itBig->More(); itBig->Next() ) {
1828     SALOMEDS::SObject_var gotBranch = itBig->Value();
1829
1830     // --> hypotheses root branch (only one for the study)
1831     if ( gotBranch->Tag() == GetHypothesisRootTag() ) {
1832       // create hypotheses root HDF group
1833       aTopGroup = new HDFgroup( "Hypotheses", aFile );
1834       aTopGroup->CreateOnDisk();
1835
1836       // iterator for all hypotheses
1837       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( gotBranch );
1838       for ( ; it->More(); it->Next() ) {
1839         SALOMEDS::SObject_var mySObject = it->Value();
1840         CORBA::Object_var anObject = SObjectToObject( mySObject );
1841         if ( !CORBA::is_nil( anObject ) ) {
1842           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
1843           if ( !myHyp->_is_nil() ) {
1844             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
1845             if ( myImpl ) {
1846               string hypname = string( myHyp->GetName() );
1847               string libname = string( myHyp->GetLibName() );
1848               // BUG SWP13062
1849               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
1850               // WNT and ".so" for X-system) must be deleted
1851               int libname_len = libname.length();
1852 #ifdef WNT
1853               if( libname_len > 4 )
1854                 libname.resize( libname_len - 4 );
1855 #else
1856               // PAL17753 (Regresion: missing hypothesis in restored study)
1857               // "lib" also should be removed from the beginning
1858               //if( libname_len > 3 )
1859                 //libname.resize( libname_len - 3 );
1860               if( libname_len > 6 )
1861                 libname = libname.substr( 3, libname_len - 3 - 3 );
1862 #endif
1863               CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1864               int    id      = myStudyContext->findId( string( objStr.in() ) );
1865               string hypdata = string( myImpl->SaveTo() );
1866
1867               // for each hypothesis create HDF group basing on its id
1868               char hypGrpName[30];
1869               sprintf( hypGrpName, "Hypothesis %d", id );
1870               aGroup = new HDFgroup( hypGrpName, aTopGroup );
1871               aGroup->CreateOnDisk();
1872               // --> type name of hypothesis
1873               aSize[ 0 ] = hypname.length() + 1;
1874               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
1875               aDataset->CreateOnDisk();
1876               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
1877               aDataset->CloseOnDisk();
1878               // --> server plugin library name of hypothesis
1879               aSize[ 0 ] = libname.length() + 1;
1880               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
1881               aDataset->CreateOnDisk();
1882               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
1883               aDataset->CloseOnDisk();
1884               // --> persistent data of hypothesis
1885               aSize[ 0 ] = hypdata.length() + 1;
1886               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
1887               aDataset->CreateOnDisk();
1888               aDataset->WriteOnDisk( ( char* )( hypdata.c_str() ) );
1889               aDataset->CloseOnDisk();
1890               // close hypothesis HDF group
1891               aGroup->CloseOnDisk();
1892             }
1893           }
1894         }
1895       }
1896       // close hypotheses root HDF group
1897       aTopGroup->CloseOnDisk();
1898     }
1899     // --> algorithms root branch (only one for the study)
1900     else if ( gotBranch->Tag() == GetAlgorithmsRootTag() ) {
1901       // create algorithms root HDF group
1902       aTopGroup = new HDFgroup( "Algorithms", aFile );
1903       aTopGroup->CreateOnDisk();
1904
1905       // iterator for all algorithms
1906       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( gotBranch );
1907       for ( ; it->More(); it->Next() ) {
1908         SALOMEDS::SObject_var mySObject = it->Value();
1909         CORBA::Object_var anObject = SObjectToObject( mySObject );
1910         if ( !CORBA::is_nil( anObject ) ) {
1911           SMESH::SMESH_Hypothesis_var myHyp = SMESH::SMESH_Hypothesis::_narrow( anObject );
1912           if ( !myHyp->_is_nil() ) {
1913             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
1914             if ( myImpl ) {
1915               string hypname = string( myHyp->GetName() );
1916               string libname = string( myHyp->GetLibName() );
1917               // BUG SWP13062
1918               // Needs for save crossplatform libname, i.e. parth of name ( ".dll" for
1919               // WNT and ".so" for X-system) must be deleted
1920               int libname_len = libname.length();
1921 #ifdef WNT
1922               if( libname_len > 4 )
1923                 libname.resize( libname_len - 4 );
1924 #else
1925               // PAL17753 (Regresion: missing hypothesis in restored study)
1926               // "lib" also should be removed from the beginning
1927               //if( libname_len > 3 )
1928                 //libname.resize( libname_len - 3 );
1929               if( libname_len > 6 )
1930                 libname = libname.substr( 3, libname_len - 3 - 3 );
1931 #endif
1932               CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1933               int    id      = myStudyContext->findId( string( objStr.in() ) );
1934               string hypdata = string( myImpl->SaveTo() );
1935
1936               // for each algorithm create HDF group basing on its id
1937               char hypGrpName[30];
1938               sprintf( hypGrpName, "Algorithm %d", id );
1939               aGroup = new HDFgroup( hypGrpName, aTopGroup );
1940               aGroup->CreateOnDisk();
1941               // --> type name of algorithm
1942               aSize[0] = hypname.length() + 1;
1943               aDataset = new HDFdataset( "Name", aGroup, HDF_STRING, aSize, 1 );
1944               aDataset->CreateOnDisk();
1945               aDataset->WriteOnDisk( ( char* )( hypname.c_str() ) );
1946               aDataset->CloseOnDisk();
1947               // --> server plugin library name of hypothesis
1948               aSize[0] = libname.length() + 1;
1949               aDataset = new HDFdataset( "LibName", aGroup, HDF_STRING, aSize, 1 );
1950               aDataset->CreateOnDisk();
1951               aDataset->WriteOnDisk( ( char* )( libname.c_str() ) );
1952               aDataset->CloseOnDisk();
1953               // --> persistent data of algorithm
1954               aSize[0] = hypdata.length() + 1;
1955               aDataset = new HDFdataset( "Data", aGroup, HDF_STRING, aSize, 1 );
1956               aDataset->CreateOnDisk();
1957               aDataset->WriteOnDisk( ( char* )( hypdata.c_str() ) );
1958               aDataset->CloseOnDisk();
1959               // close algorithm HDF group
1960               aGroup->CloseOnDisk();
1961             }
1962           }
1963         }
1964       }
1965       // close algorithms root HDF group
1966       aTopGroup->CloseOnDisk();
1967     }
1968     // --> mesh objects roots branches
1969     else if ( gotBranch->Tag() > GetAlgorithmsRootTag() ) {
1970       CORBA::Object_var anObject = SObjectToObject( gotBranch );
1971       if ( !CORBA::is_nil( anObject ) ) {
1972         SMESH::SMESH_Mesh_var myMesh = SMESH::SMESH_Mesh::_narrow( anObject ) ;
1973         if ( !myMesh->_is_nil() ) {
1974           SMESH_Mesh_i* myImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myMesh ).in() );
1975           if ( myImpl ) {
1976             CORBA::String_var objStr = GetORB()->object_to_string( anObject );
1977             int id = myStudyContext->findId( string( objStr.in() ) );
1978             ::SMESH_Mesh& myLocMesh = myImpl->GetImpl();
1979             SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
1980             bool hasShape = myLocMesh.HasShapeToMesh();
1981
1982             // for each mesh open the HDF group basing on its id
1983             char meshGrpName[ 30 ];
1984             sprintf( meshGrpName, "Mesh %d", id );
1985             aTopGroup = new HDFgroup( meshGrpName, aFile );
1986             aTopGroup->CreateOnDisk();
1987
1988             // --> put dataset to hdf file which is a flag that mesh has data
1989             string strHasData = "0";
1990             // check if the mesh is not empty
1991             if ( mySMESHDSMesh->NbNodes() > 0 ) {
1992               // write mesh data to med file
1993               myWriter.SetMesh( mySMESHDSMesh );
1994               myWriter.SetMeshId( id );
1995               strHasData = "1";
1996             }
1997             aSize[ 0 ] = strHasData.length() + 1;
1998             aDataset = new HDFdataset( "Has data", aTopGroup, HDF_STRING, aSize, 1 );
1999             aDataset->CreateOnDisk();
2000             aDataset->WriteOnDisk( ( char* )( strHasData.c_str() ) );
2001             aDataset->CloseOnDisk();
2002
2003             // ouv : NPAL12872
2004             // for each mesh open the HDF group basing on its auto color parameter
2005             char meshAutoColorName[ 30 ];
2006             sprintf( meshAutoColorName, "AutoColorMesh %d", id );
2007             int anAutoColor[1];
2008             anAutoColor[0] = myImpl->GetAutoColor();
2009             aSize[ 0 ] = 1;
2010             aDataset = new HDFdataset( meshAutoColorName, aTopGroup, HDF_INT32, aSize, 1 );
2011             aDataset->CreateOnDisk();
2012             aDataset->WriteOnDisk( anAutoColor );
2013             aDataset->CloseOnDisk();
2014
2015             // write reference on a shape if exists
2016             SALOMEDS::SObject_var myRef;
2017             bool shapeRefFound = false;
2018             bool found = gotBranch->FindSubObject( GetRefOnShapeTag(), myRef );
2019             if ( found ) {
2020               SALOMEDS::SObject_var myShape;
2021               bool ok = myRef->ReferencedObject( myShape );
2022               if ( ok ) {
2023                 shapeRefFound = (! CORBA::is_nil( myShape->GetObject() ));
2024                 string myRefOnObject = myShape->GetID();
2025                 if ( shapeRefFound && myRefOnObject.length() > 0 ) {
2026                   aSize[ 0 ] = myRefOnObject.length() + 1;
2027                   aDataset = new HDFdataset( "Ref on shape", aTopGroup, HDF_STRING, aSize, 1 );
2028                   aDataset->CreateOnDisk();
2029                   aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2030                   aDataset->CloseOnDisk();
2031                 }
2032               }
2033             }
2034
2035             // write applied hypotheses if exist
2036             SALOMEDS::SObject_var myHypBranch;
2037             found = gotBranch->FindSubObject( GetRefOnAppliedHypothesisTag(), myHypBranch );
2038             if ( found && !shapeRefFound && hasShape) { // remove applied hyps
2039               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myHypBranch );
2040             }
2041             if ( found && (shapeRefFound || !hasShape) ) {
2042               aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
2043               aGroup->CreateOnDisk();
2044
2045               SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myHypBranch );
2046               int hypNb = 0;
2047               for ( ; it->More(); it->Next() ) {
2048                 SALOMEDS::SObject_var mySObject = it->Value();
2049                 SALOMEDS::SObject_var myRefOnHyp;
2050                 bool ok = mySObject->ReferencedObject( myRefOnHyp );
2051                 if ( ok ) {
2052                   // san - it is impossible to recover applied hypotheses
2053                   //       using their entries within Load() method,
2054                   // for there are no AttributeIORs in the study when Load() is working. 
2055                   // Hence, it is better to store persistent IDs of hypotheses as references to them
2056
2057                   //string myRefOnObject = myRefOnHyp->GetID();
2058                   CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
2059                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2060                   int id = myStudyContext->findId( string( objStr.in() ) );
2061                   //if ( myRefOnObject.length() > 0 ) {
2062                   //aSize[ 0 ] = myRefOnObject.length() + 1;
2063                   char hypName[ 30 ], hypId[ 30 ];
2064                   sprintf( hypName, "Hyp %d", ++hypNb );
2065                   sprintf( hypId, "%d", id );
2066                   aSize[ 0 ] = strlen( hypId ) + 1;
2067                   aDataset = new HDFdataset( hypName, aGroup, HDF_STRING, aSize, 1 );
2068                   aDataset->CreateOnDisk();
2069                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2070                   aDataset->WriteOnDisk( hypId );
2071                   aDataset->CloseOnDisk();
2072                   //}
2073                 }
2074               }
2075               aGroup->CloseOnDisk();
2076             }
2077
2078             // write applied algorithms if exist
2079             SALOMEDS::SObject_var myAlgoBranch;
2080             found = gotBranch->FindSubObject( GetRefOnAppliedAlgorithmsTag(), myAlgoBranch );
2081             if ( found && !shapeRefFound && hasShape) { // remove applied algos
2082               myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( myAlgoBranch );
2083             }
2084             if ( found && (shapeRefFound || !hasShape)) {
2085               aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
2086               aGroup->CreateOnDisk();
2087
2088               SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myAlgoBranch );
2089               int algoNb = 0;
2090               for ( ; it->More(); it->Next() ) {
2091                 SALOMEDS::SObject_var mySObject = it->Value();
2092                 SALOMEDS::SObject_var myRefOnAlgo;
2093                 bool ok = mySObject->ReferencedObject( myRefOnAlgo );
2094                 if ( ok ) {
2095                   // san - it is impossible to recover applied algorithms
2096                   //       using their entries within Load() method,
2097                   // for there are no AttributeIORs in the study when Load() is working. 
2098                   // Hence, it is better to store persistent IDs of algorithms as references to them
2099
2100                   //string myRefOnObject = myRefOnAlgo->GetID();
2101                   CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
2102                   CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2103                   int id = myStudyContext->findId( string( objStr.in() ) );
2104                   //if ( myRefOnObject.length() > 0 ) {
2105                   //aSize[ 0 ] = myRefOnObject.length() + 1;
2106                   char algoName[ 30 ], algoId[ 30 ];
2107                   sprintf( algoName, "Algo %d", ++algoNb );
2108                   sprintf( algoId, "%d", id );
2109                   aSize[ 0 ] = strlen( algoId ) + 1;
2110                   aDataset = new HDFdataset( algoName, aGroup, HDF_STRING, aSize, 1 );
2111                   aDataset->CreateOnDisk();
2112                   //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2113                   aDataset->WriteOnDisk( algoId );
2114                   aDataset->CloseOnDisk();
2115                   //}
2116                 }
2117               }
2118               aGroup->CloseOnDisk();
2119             }
2120
2121             // --> submesh objects sub-branches
2122
2123             for ( int i = GetSubMeshOnVertexTag(); i <= GetSubMeshOnCompoundTag(); i++ ) {
2124               SALOMEDS::SObject_var mySubmeshBranch;
2125               found = gotBranch->FindSubObject( i, mySubmeshBranch );
2126
2127               if ( found ) // check if there is shape reference in submeshes
2128               {
2129                 bool hasShapeRef = false;
2130                 SALOMEDS::ChildIterator_var itSM =
2131                   myCurrentStudy->NewChildIterator( mySubmeshBranch );
2132                 for ( ; itSM->More(); itSM->Next() ) {
2133                   SALOMEDS::SObject_var mySubRef, myShape, mySObject = itSM->Value();
2134                   if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ))
2135                     mySubRef->ReferencedObject( myShape );
2136                   if ( !CORBA::is_nil( myShape ) && !CORBA::is_nil( myShape->GetObject() ))
2137                     hasShapeRef = true;
2138                   else
2139                   { // remove one submesh
2140                     if ( shapeRefFound )
2141                     { // unassign hypothesis
2142                       SMESH::SMESH_subMesh_var mySubMesh =
2143                         SMESH::SMESH_subMesh::_narrow( SObjectToObject( mySObject ));
2144                       if ( !mySubMesh->_is_nil() ) {
2145                         int shapeID = mySubMesh->GetId();
2146                         TopoDS_Shape S = mySMESHDSMesh->IndexToShape( shapeID );
2147                         const list<const SMESHDS_Hypothesis*>& hypList =
2148                           mySMESHDSMesh->GetHypothesis( S );
2149                         list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
2150                         while ( hyp != hypList.end() ) {
2151                           int hypID = (*hyp++)->GetID(); // goto next hyp here because
2152                           myLocMesh.RemoveHypothesis( S, hypID ); // hypList changes here
2153                         }
2154                       }
2155                     }
2156                     myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySObject );
2157                   }
2158                 } // loop on submeshes of a type
2159                 if ( !shapeRefFound || !hasShapeRef ) { // remove the whole submeshes branch
2160                   myCurrentStudy->NewBuilder()->RemoveObjectWithChildren( mySubmeshBranch );
2161                   found = false;
2162                 }
2163               }  // end check if there is shape reference in submeshes
2164               if ( found ) {
2165                 char name_meshgroup[ 30 ];
2166                 if ( i == GetSubMeshOnVertexTag() )
2167                   strcpy( name_meshgroup, "SubMeshes On Vertex" );
2168                 else if ( i == GetSubMeshOnEdgeTag() )
2169                   strcpy( name_meshgroup, "SubMeshes On Edge" );
2170                 else if ( i == GetSubMeshOnWireTag() )
2171                   strcpy( name_meshgroup, "SubMeshes On Wire" );
2172                 else if ( i == GetSubMeshOnFaceTag() )
2173                   strcpy( name_meshgroup, "SubMeshes On Face" );
2174                 else if ( i == GetSubMeshOnShellTag() )
2175                   strcpy( name_meshgroup, "SubMeshes On Shell" );
2176                 else if ( i == GetSubMeshOnSolidTag() )
2177                   strcpy( name_meshgroup, "SubMeshes On Solid" );
2178                 else if ( i == GetSubMeshOnCompoundTag() )
2179                   strcpy( name_meshgroup, "SubMeshes On Compound" );
2180
2181                 // for each type of submeshes create container HDF group
2182                 aGroup = new HDFgroup( name_meshgroup, aTopGroup );
2183                 aGroup->CreateOnDisk();
2184
2185                 // iterator for all submeshes of given type
2186                 SALOMEDS::ChildIterator_var itSM = myCurrentStudy->NewChildIterator( mySubmeshBranch );
2187                 for ( ; itSM->More(); itSM->Next() ) {
2188                   SALOMEDS::SObject_var mySObject = itSM->Value();
2189                   CORBA::Object_var anSubObject = SObjectToObject( mySObject );
2190                   if ( !CORBA::is_nil( anSubObject ))
2191                   {
2192                     SMESH::SMESH_subMesh_var mySubMesh = SMESH::SMESH_subMesh::_narrow( anSubObject ) ;
2193                     CORBA::String_var objStr = GetORB()->object_to_string( anSubObject );
2194                     int subid = myStudyContext->findId( string( objStr.in() ) );
2195
2196                     // for each mesh open the HDF group basing on its id
2197                     char submeshGrpName[ 30 ];
2198                     sprintf( submeshGrpName, "SubMesh %d", subid );
2199                     aSubGroup = new HDFgroup( submeshGrpName, aGroup );
2200                     aSubGroup->CreateOnDisk();
2201
2202                     // write reference on a shape, already checked if it exists
2203                     SALOMEDS::SObject_var mySubRef, myShape;
2204                     if ( mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ))
2205                       mySubRef->ReferencedObject( myShape );
2206                     string myRefOnObject = myShape->GetID();
2207                     if ( myRefOnObject.length() > 0 ) {
2208                       aSize[ 0 ] = myRefOnObject.length() + 1;
2209                       aDataset = new HDFdataset( "Ref on shape", aSubGroup, HDF_STRING, aSize, 1 );
2210                       aDataset->CreateOnDisk();
2211                       aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2212                       aDataset->CloseOnDisk();
2213                     }
2214
2215                     // write applied hypotheses if exist
2216                     SALOMEDS::SObject_var mySubHypBranch;
2217                     found = mySObject->FindSubObject( GetRefOnAppliedHypothesisTag(), mySubHypBranch );
2218                     if ( found ) {
2219                       aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
2220                       aSubSubGroup->CreateOnDisk();
2221
2222                       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( mySubHypBranch );
2223                       int hypNb = 0;
2224                       for ( ; it->More(); it->Next() ) {
2225                         SALOMEDS::SObject_var mySubSObject = it->Value();
2226                         SALOMEDS::SObject_var myRefOnHyp;
2227                         bool ok = mySubSObject->ReferencedObject( myRefOnHyp );
2228                         if ( ok ) {
2229                           //string myRefOnObject = myRefOnHyp->GetID();
2230                           CORBA::Object_var anObject = SObjectToObject( myRefOnHyp );
2231                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2232                           int id = myStudyContext->findId( string( objStr.in() ) );
2233                           //if ( myRefOnObject.length() > 0 ) {
2234                           //aSize[ 0 ] = myRefOnObject.length() + 1;
2235                           char hypName[ 30 ], hypId[ 30 ];
2236                           sprintf( hypName, "Hyp %d", ++hypNb );
2237                           sprintf( hypId, "%d", id );
2238                           aSize[ 0 ] = strlen( hypId ) + 1;
2239                           aDataset = new HDFdataset( hypName, aSubSubGroup, HDF_STRING, aSize, 1 );
2240                           aDataset->CreateOnDisk();
2241                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2242                           aDataset->WriteOnDisk( hypId );
2243                           aDataset->CloseOnDisk();
2244                           //}
2245                         }
2246                       }
2247                       aSubSubGroup->CloseOnDisk();
2248                     }
2249
2250                     // write applied algorithms if exist
2251                     SALOMEDS::SObject_var mySubAlgoBranch;
2252                     found = mySObject->FindSubObject( GetRefOnAppliedAlgorithmsTag(), mySubAlgoBranch );
2253                     if ( found ) {
2254                       aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
2255                       aSubSubGroup->CreateOnDisk();
2256
2257                       SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( mySubAlgoBranch );
2258                       int algoNb = 0;
2259                       for ( ; it->More(); it->Next() ) {
2260                         SALOMEDS::SObject_var mySubSObject = it->Value();
2261                         SALOMEDS::SObject_var myRefOnAlgo;
2262                         bool ok = mySubSObject->ReferencedObject( myRefOnAlgo );
2263                         if ( ok ) {
2264                           //string myRefOnObject = myRefOnAlgo->GetID();
2265                           CORBA::Object_var anObject = SObjectToObject( myRefOnAlgo );
2266                           CORBA::String_var objStr = GetORB()->object_to_string( anObject );
2267                           int id = myStudyContext->findId( string( objStr.in() ) );
2268                           //if ( myRefOnObject.length() > 0 ) {
2269                           //aSize[ 0 ] = myRefOnObject.length() + 1;
2270                           char algoName[ 30 ], algoId[ 30 ];
2271                           sprintf( algoName, "Algo %d", ++algoNb );
2272                           sprintf( algoId, "%d", id );
2273                           aSize[ 0 ] = strlen( algoId ) + 1;
2274                           aDataset = new HDFdataset( algoName, aSubSubGroup, HDF_STRING, aSize, 1 );
2275                           aDataset->CreateOnDisk();
2276                           //aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2277                           aDataset->WriteOnDisk( algoId );
2278                           aDataset->CloseOnDisk();
2279                           //}
2280                         }
2281                       }
2282                       aSubSubGroup->CloseOnDisk();
2283                     }
2284                     // close submesh HDF group
2285                     aSubGroup->CloseOnDisk();
2286                   }
2287                 }
2288                 // close container of submeshes by type HDF group
2289                 aGroup->CloseOnDisk();
2290               }
2291             }
2292             // All sub-meshes will be stored in MED file
2293             // .. will NOT (PAL 12992)
2294             //if ( shapeRefFound )
2295             //myWriter.AddAllSubMeshes();
2296
2297             // groups root sub-branch
2298             SALOMEDS::SObject_var myGroupsBranch;
2299             for ( int i = GetNodeGroupsTag(); i <= GetVolumeGroupsTag(); i++ ) {
2300               found = gotBranch->FindSubObject( i, myGroupsBranch );
2301               if ( found ) {
2302                 char name_group[ 30 ];
2303                 if ( i == GetNodeGroupsTag() )
2304                   strcpy( name_group, "Groups of Nodes" );
2305                 else if ( i == GetEdgeGroupsTag() )
2306                   strcpy( name_group, "Groups of Edges" );
2307                 else if ( i == GetFaceGroupsTag() )
2308                   strcpy( name_group, "Groups of Faces" );
2309                 else if ( i == GetVolumeGroupsTag() )
2310                   strcpy( name_group, "Groups of Volumes" );
2311
2312                 aGroup = new HDFgroup( name_group, aTopGroup );
2313                 aGroup->CreateOnDisk();
2314
2315                 SALOMEDS::ChildIterator_var it = myCurrentStudy->NewChildIterator( myGroupsBranch );
2316                 for ( ; it->More(); it->Next() ) {
2317                   SALOMEDS::SObject_var mySObject = it->Value();
2318                   CORBA::Object_var aSubObject = SObjectToObject( mySObject );
2319                   if ( !CORBA::is_nil( aSubObject ) ) {
2320                     SMESH_GroupBase_i* myGroupImpl =
2321                       dynamic_cast<SMESH_GroupBase_i*>( GetServant( aSubObject ).in() );
2322                     if ( !myGroupImpl )
2323                       continue;
2324                     
2325                     CORBA::String_var objStr = GetORB()->object_to_string( aSubObject );
2326                     int anId = myStudyContext->findId( string( objStr.in() ) );
2327                     
2328                     // For each group, create a dataset named "Group <group_persistent_id>"
2329                     // and store the group's user name into it
2330                     char grpName[ 30 ];
2331                     sprintf( grpName, "Group %d", anId );
2332                     char* aUserName = myGroupImpl->GetName();
2333                     aSize[ 0 ] = strlen( aUserName ) + 1;
2334                     
2335                     aDataset = new HDFdataset( grpName, aGroup, HDF_STRING, aSize, 1 );
2336                     aDataset->CreateOnDisk();
2337                     aDataset->WriteOnDisk( aUserName );
2338                     aDataset->CloseOnDisk();
2339
2340                     // ouv : NPAL12872
2341                     // For each group, create a dataset named "Group <group_persistent_id> Color"
2342                     // and store the group's color into it
2343                     char grpColorName[ 30 ];
2344                     sprintf( grpColorName, "ColorGroup %d", anId );
2345                     SALOMEDS::Color aColor = myGroupImpl->GetColor();
2346                     double anRGB[3];
2347                     anRGB[ 0 ] = aColor.R;
2348                     anRGB[ 1 ] = aColor.G;
2349                     anRGB[ 2 ] = aColor.B;
2350                     aSize[ 0 ] = 3;
2351                     aDataset = new HDFdataset( grpColorName, aGroup, HDF_FLOAT64, aSize, 1 );
2352                     aDataset->CreateOnDisk();
2353                     aDataset->WriteOnDisk( anRGB );
2354                     aDataset->CloseOnDisk();
2355
2356                     // Store the group contents into MED file
2357                     if ( myLocMesh.GetGroup( myGroupImpl->GetLocalID() ) ) {
2358                       
2359                       if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen_i::Save(): saving group with StoreName = "
2360                                           << grpName << " to MED file" );
2361                       SMESHDS_GroupBase* aGrpBaseDS =
2362                         myLocMesh.GetGroup( myGroupImpl->GetLocalID() )->GetGroupDS();
2363                       aGrpBaseDS->SetStoreName( grpName );
2364
2365                       // Pass SMESHDS_Group to MED writer 
2366                       SMESHDS_Group* aGrpDS = dynamic_cast<SMESHDS_Group*>( aGrpBaseDS );
2367                       if ( aGrpDS )
2368                         myWriter.AddGroup( aGrpDS );
2369                       
2370                       // write reference on a shape if exists
2371                       SMESHDS_GroupOnGeom* aGeomGrp =
2372                         dynamic_cast<SMESHDS_GroupOnGeom*>( aGrpBaseDS );
2373                       if ( aGeomGrp ) {
2374                         SALOMEDS::SObject_var mySubRef, myShape;
2375                         if (mySObject->FindSubObject( GetRefOnShapeTag(), mySubRef ) &&
2376                             mySubRef->ReferencedObject( myShape ) &&
2377                             !CORBA::is_nil( myShape->GetObject() ))
2378                         {
2379                           string myRefOnObject = myShape->GetID();
2380                           if ( myRefOnObject.length() > 0 ) {
2381                             char aRefName[ 30 ];
2382                             sprintf( aRefName, "Ref on shape %d", anId);
2383                             aSize[ 0 ] = myRefOnObject.length() + 1;
2384                             aDataset = new HDFdataset(aRefName, aGroup, HDF_STRING, aSize, 1);
2385                             aDataset->CreateOnDisk();
2386                             aDataset->WriteOnDisk( ( char* )( myRefOnObject.c_str() ) );
2387                             aDataset->CloseOnDisk();
2388                           }
2389                         }
2390                         else // shape ref is invalid:
2391                         {
2392                           // save a group on geometry as ordinary group
2393                           myWriter.AddGroup( aGeomGrp );
2394                         }
2395                       }
2396                     }
2397                   }
2398                 }
2399                 aGroup->CloseOnDisk();
2400               }
2401             } // loop on groups 
2402             
2403             if ( strcmp( strHasData.c_str(), "1" ) == 0 )
2404             {
2405               // Flush current mesh information into MED file
2406               myWriter.Perform();
2407               
2408               // maybe a shape was deleted in the study
2409               if ( !shapeRefFound && !mySMESHDSMesh->ShapeToMesh().IsNull() && hasShape) {
2410                 TopoDS_Shape nullShape;
2411                 myLocMesh.ShapeToMesh( nullShape ); // remove shape referring data
2412               }
2413               
2414               if ( !mySMESHDSMesh->SubMeshes().empty() )
2415               {
2416                 // Store submeshes
2417                 // ----------------
2418                 aGroup = new HDFgroup( "Submeshes", aTopGroup );
2419                 aGroup->CreateOnDisk();
2420                 
2421                 // each element belongs to one or none submesh,
2422                 // so for each node/element, we store a submesh ID
2423                 
2424                 // Make maps of submesh IDs of elements sorted by element IDs
2425                 typedef int TElemID;
2426                 typedef int TSubMID;
2427                 map< TElemID, TSubMID > eId2smId, nId2smId;
2428                 map< TElemID, TSubMID >::iterator hint; // insertion to map is done before hint
2429                 const map<int,SMESHDS_SubMesh*>& aSubMeshes = mySMESHDSMesh->SubMeshes();
2430                 map<int,SMESHDS_SubMesh*>::const_iterator itSubM ( aSubMeshes.begin() );
2431                 SMDS_NodeIteratorPtr itNode;
2432                 SMDS_ElemIteratorPtr itElem;
2433                 for ( itSubM = aSubMeshes.begin(); itSubM != aSubMeshes.end() ; itSubM++ )
2434                 {
2435                   TSubMID          aSubMeID = itSubM->first;
2436                   SMESHDS_SubMesh* aSubMesh = itSubM->second;
2437                   if ( aSubMesh->IsComplexSubmesh() )
2438                     continue; // submesh containing other submeshs
2439                   // nodes
2440                   hint = nId2smId.begin(); // optimize insertion basing on increasing order of elem Ids in submesh
2441                   for ( itNode = aSubMesh->GetNodes(); itNode->more(); ++hint)
2442                     hint = nId2smId.insert( hint, make_pair( itNode->next()->GetID(), aSubMeID ));
2443                   // elements
2444                   hint = eId2smId.begin();
2445                   for ( itElem = aSubMesh->GetElements(); itElem->more(); ++hint)
2446                     hint = eId2smId.insert( hint, make_pair( itElem->next()->GetID(), aSubMeID ));
2447                 }
2448                 
2449                 // Care of elements that are not on submeshes
2450                 if ( mySMESHDSMesh->NbNodes() != nId2smId.size() ) {
2451                   for ( itNode = mySMESHDSMesh->nodesIterator(); itNode->more(); )
2452                     /*  --- stl_map.h says : */
2453                     /*  A %map relies on unique keys and thus a %pair is only inserted if its */
2454                     /*  first element (the key) is not already present in the %map.           */
2455                     nId2smId.insert( make_pair( itNode->next()->GetID(), 0 ));
2456                 }
2457                 int nbElems = mySMESHDSMesh->NbEdges() + mySMESHDSMesh->NbFaces() + mySMESHDSMesh->NbVolumes();
2458                 if ( nbElems != eId2smId.size() ) {
2459                   for ( itElem = mySMESHDSMesh->elementsIterator(); itElem->more(); )
2460                     eId2smId.insert( make_pair( itElem->next()->GetID(), 0 ));
2461                 }
2462                 
2463                 // Store submesh IDs
2464                 for ( int isNode = 0; isNode < 2; ++isNode )
2465                 {
2466                   map< TElemID, TSubMID >& id2smId = isNode ? nId2smId : eId2smId;
2467                   if ( id2smId.empty() ) continue;
2468                   map< TElemID, TSubMID >::const_iterator id_smId = id2smId.begin();
2469                   // make and fill array of submesh IDs
2470                   int* smIDs = new int [ id2smId.size() ];
2471                   for ( int i = 0; id_smId != id2smId.end(); ++id_smId, ++i )
2472                     smIDs[ i ] = id_smId->second;
2473                   // write HDF group
2474                   aSize[ 0 ] = id2smId.size();
2475                   string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
2476                   aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
2477                   aDataset->CreateOnDisk();
2478                   aDataset->WriteOnDisk( smIDs );
2479                   aDataset->CloseOnDisk();
2480                   //
2481                   delete smIDs;
2482                 }
2483                 
2484                 // Store node positions on sub-shapes (SMDS_Position):
2485                 // ----------------------------------------------------
2486                 
2487                 aGroup = new HDFgroup( "Node Positions", aTopGroup );
2488                 aGroup->CreateOnDisk();
2489                 
2490                 // in aGroup, create 5 datasets to contain:
2491                 // "Nodes on Edges" - ID of node on edge
2492                 // "Edge positions" - U parameter on node on edge
2493                 // "Nodes on Faces" - ID of node on face
2494                 // "Face U positions" - U parameter of node on face
2495                 // "Face V positions" - V parameter of node on face
2496                 
2497                 // Find out nb of nodes on edges and faces
2498                 // Collect corresponing sub-meshes
2499                 int nbEdgeNodes = 0, nbFaceNodes = 0;
2500                 list<SMESHDS_SubMesh*> aEdgeSM, aFaceSM;
2501                 // loop on SMESHDS_SubMesh'es
2502                 for ( itSubM = aSubMeshes.begin(); itSubM != aSubMeshes.end() ; itSubM++ )
2503                 {
2504                   SMESHDS_SubMesh* aSubMesh = (*itSubM).second;
2505                   if ( aSubMesh->IsComplexSubmesh() )
2506                     continue; // submesh containing other submeshs
2507                   int nbNodes = aSubMesh->NbNodes();
2508                   if ( nbNodes == 0 ) continue;
2509                   
2510                   int aShapeID = (*itSubM).first;
2511                   int aShapeType = mySMESHDSMesh->IndexToShape( aShapeID ).ShapeType();
2512                   // write only SMDS_FacePosition and SMDS_EdgePosition
2513                   switch ( aShapeType ) {
2514                   case TopAbs_FACE:
2515                     nbFaceNodes += nbNodes;
2516                     aFaceSM.push_back( aSubMesh );
2517                     break;
2518                   case TopAbs_EDGE:
2519                     nbEdgeNodes += nbNodes;
2520                     aEdgeSM.push_back( aSubMesh );
2521                     break;
2522                   default:
2523                     continue;
2524                   }
2525                 }
2526                 // Treat positions on edges or faces
2527                 for ( int onFace = 0; onFace < 2; onFace++ )
2528                 {
2529                   // Create arrays to store in datasets
2530                   int iNode = 0, nbNodes = ( onFace ? nbFaceNodes : nbEdgeNodes );
2531                   if (!nbNodes) continue;
2532                   int* aNodeIDs = new int [ nbNodes ];
2533                   double* aUPos = new double [ nbNodes ];
2534                   double* aVPos = ( onFace ? new double[ nbNodes ] : 0 );
2535                   
2536                   // Fill arrays
2537                   // loop on sub-meshes
2538                   list<SMESHDS_SubMesh*> * pListSM = ( onFace ? &aFaceSM : &aEdgeSM );
2539                   list<SMESHDS_SubMesh*>::iterator itSM = pListSM->begin();
2540                   for ( ; itSM != pListSM->end(); itSM++ )
2541                   {
2542                     SMESHDS_SubMesh* aSubMesh = (*itSM);
2543                     
2544                     SMDS_NodeIteratorPtr itNode = aSubMesh->GetNodes();
2545                     // loop on nodes in aSubMesh
2546                     while ( itNode->more() )
2547                     {
2548                       //node ID
2549                       const SMDS_MeshNode* node = itNode->next();
2550                       aNodeIDs [ iNode ] = node->GetID();
2551                       
2552                       // Position
2553                       const SMDS_PositionPtr pos = node->GetPosition();
2554                       if ( onFace ) { // on FACE
2555                         const SMDS_FacePosition* fPos =
2556                           dynamic_cast<const SMDS_FacePosition*>( pos.get() );
2557                         if ( fPos ) {
2558                           aUPos[ iNode ] = fPos->GetUParameter();
2559                           aVPos[ iNode ] = fPos->GetVParameter();
2560                           iNode++;
2561                         }
2562                         else
2563                           nbNodes--;
2564                       }
2565                       else { // on EDGE
2566                         const SMDS_EdgePosition* ePos =
2567                           dynamic_cast<const SMDS_EdgePosition*>( pos.get() );
2568                         if ( ePos ) {
2569                           aUPos[ iNode ] = ePos->GetUParameter();
2570                           iNode++;
2571                         }
2572                         else
2573                           nbNodes--;
2574                       }
2575                     } // loop on nodes in aSubMesh
2576                   } // loop on sub-meshes
2577                   
2578                   // Write datasets
2579                   if ( nbNodes )
2580                   {
2581                     aSize[ 0 ] = nbNodes;
2582                     // IDS
2583                     string aDSName( onFace ? "Nodes on Faces" : "Nodes on Edges");
2584                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_INT32, aSize, 1 );
2585                     aDataset->CreateOnDisk();
2586                     aDataset->WriteOnDisk( aNodeIDs );
2587                     aDataset->CloseOnDisk();
2588                 
2589                     // U Positions
2590                     aDSName = ( onFace ? "Face U positions" : "Edge positions");
2591                     aDataset = new HDFdataset( (char*)aDSName.c_str(), aGroup, HDF_FLOAT64, aSize, 1);
2592                     aDataset->CreateOnDisk();
2593                     aDataset->WriteOnDisk( aUPos );
2594                     aDataset->CloseOnDisk();
2595                     // V Positions
2596                     if ( onFace ) {
2597                       aDataset = new HDFdataset( "Face V positions", aGroup, HDF_FLOAT64, aSize, 1);
2598                       aDataset->CreateOnDisk();
2599                       aDataset->WriteOnDisk( aVPos );
2600                       aDataset->CloseOnDisk();
2601                     }
2602                   }
2603                   delete [] aNodeIDs;
2604                   delete [] aUPos;
2605                   if ( aVPos ) delete [] aVPos;
2606                   
2607                 } // treat positions on edges or faces
2608                 
2609                 // close "Node Positions" group
2610                 aGroup->CloseOnDisk(); 
2611                 
2612               } // if ( there are submeshes in SMESHDS_Mesh )
2613             } // if ( hasData )
2614             
2615             // close mesh HDF group
2616             aTopGroup->CloseOnDisk();
2617           }
2618         }
2619       }
2620     }
2621   }
2622   
2623   // close HDF file
2624   aFile->CloseOnDisk();
2625   delete aFile;
2626
2627   // Convert temporary files to stream
2628   aStreamFile = SALOMEDS_Tool::PutFilesToStream( tmpDir.ToCString(), aFileSeq.in(), isMultiFile );
2629
2630   // Remove temporary files and directory
2631   if ( !isMultiFile ) 
2632     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
2633
2634   INFOS( "SMESH_Gen_i::Save() completed" );
2635   return aStreamFile._retn();
2636 }
2637
2638 //=============================================================================
2639 /*!
2640  *  SMESH_Gen_i::SaveASCII
2641  *
2642  *  Save SMESH module's data in ASCII format
2643  */
2644 //=============================================================================
2645
2646 SALOMEDS::TMPFile* SMESH_Gen_i::SaveASCII( SALOMEDS::SComponent_ptr theComponent,
2647                                            const char*              theURL,
2648                                            bool                     isMultiFile ) {
2649   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
2650   SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
2651   return aStreamFile._retn();
2652
2653   //after usual saving needs to encipher binary to text string
2654   //Any binary symbol will be represent as "|xx" () hexadecimal format number
2655   int size = aStreamFile.in().length();
2656   _CORBA_Octet* buffer = new _CORBA_Octet[size*3+1];
2657   for ( int i = 0; i < size; i++ )
2658     sprintf( (char*)&(buffer[i*3]), "|%02x", (char*)(aStreamFile[i]) );
2659
2660   buffer[size * 3] = '\0';
2661
2662   SALOMEDS::TMPFile_var anAsciiStreamFile = new SALOMEDS::TMPFile(size*3, size*3, buffer, 1);
2663   
2664   return anAsciiStreamFile._retn();
2665 }
2666
2667 //=============================================================================
2668 /*!
2669  *  SMESH_Gen_i::loadGeomData
2670  *
2671  *  Load GEOM module data
2672  */
2673 //=============================================================================
2674
2675 void SMESH_Gen_i::loadGeomData( SALOMEDS::SComponent_ptr theCompRoot )
2676 {
2677   if ( theCompRoot->_is_nil() )
2678     return;
2679
2680   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theCompRoot->GetStudy() );
2681   if ( aStudy->_is_nil() )
2682     return;
2683
2684   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder(); 
2685   aStudyBuilder->LoadWith( theCompRoot, GetGeomEngine() );
2686 }
2687 //=============================================================================
2688 /*!
2689  * \brief Creates SMDS_Position according to shape type
2690  */
2691 //=============================================================================
2692
2693 class PositionCreator {
2694 public:
2695   SMDS_PositionPtr MakePosition(const TopAbs_ShapeEnum type) {
2696     return (this->*myFuncTable[ type ])();
2697   }
2698   PositionCreator() {
2699     myFuncTable.resize( (size_t) TopAbs_SHAPE, & PositionCreator::defaultPosition );
2700     myFuncTable[ TopAbs_FACE ] = & PositionCreator::facePosition;
2701     myFuncTable[ TopAbs_EDGE ] = & PositionCreator::edgePosition;
2702     myFuncTable[ TopAbs_VERTEX ] = & PositionCreator::vertexPosition;
2703   }
2704 private:
2705   SMDS_PositionPtr edgePosition()    const { return SMDS_PositionPtr( new SMDS_EdgePosition  ); }
2706   SMDS_PositionPtr facePosition()    const { return SMDS_PositionPtr( new SMDS_FacePosition  ); }
2707   SMDS_PositionPtr vertexPosition()  const { return SMDS_PositionPtr( new SMDS_VertexPosition); }
2708   SMDS_PositionPtr defaultPosition() const { return SMDS_SpacePosition::originSpacePosition();  }
2709   typedef SMDS_PositionPtr (PositionCreator:: * FmakePos)() const;
2710   vector<FmakePos> myFuncTable;
2711 };
2712
2713 //=============================================================================
2714 /*!
2715  *  SMESH_Gen_i::Load
2716  *
2717  *  Load SMESH module's data
2718  */
2719 //=============================================================================
2720
2721 bool SMESH_Gen_i::Load( SALOMEDS::SComponent_ptr theComponent,
2722                         const SALOMEDS::TMPFile& theStream,
2723                         const char*              theURL,
2724                         bool                     isMultiFile )
2725 {
2726   INFOS( "SMESH_Gen_i::Load" );
2727
2728   if ( myCurrentStudy->_is_nil() || 
2729        theComponent->GetStudy()->StudyId() != myCurrentStudy->StudyId() )
2730     SetCurrentStudy( theComponent->GetStudy() );
2731
2732   /*  if( !theComponent->_is_nil() )
2733       {
2734       //SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( theComponent->GetStudy() );
2735       if( !myCurrentStudy->FindComponent( "GEOM" )->_is_nil() )
2736       loadGeomData( myCurrentStudy->FindComponent( "GEOM" ) );
2737       }*/
2738
2739   StudyContext* myStudyContext = GetCurrentStudyContext();
2740
2741   // Get temporary files location
2742   TCollection_AsciiString tmpDir =
2743     isMultiFile ? TCollection_AsciiString( ( char* )theURL ) : ( char* )SALOMEDS_Tool::GetTmpDir().c_str();
2744     
2745     INFOS( "THE URL++++++++++++++" )
2746     INFOS( theURL );
2747     INFOS( "THE TMP PATH+++++++++" );
2748     INFOS( tmpDir );
2749
2750   // Convert the stream into sequence of files to process
2751   SALOMEDS::ListOfFileNames_var aFileSeq = SALOMEDS_Tool::PutStreamToFiles( theStream,
2752                                                                             tmpDir.ToCString(),
2753                                                                             isMultiFile );
2754   TCollection_AsciiString aStudyName( "" );
2755   if ( isMultiFile ) 
2756     aStudyName = ( (char*)SALOMEDS_Tool::GetNameFromPath( myCurrentStudy->URL() ).c_str() );
2757
2758   // Set names of temporary files
2759   TCollection_AsciiString filename = tmpDir + aStudyName + TCollection_AsciiString( "_SMESH.hdf" );
2760   TCollection_AsciiString meshfile = tmpDir + aStudyName + TCollection_AsciiString( "_SMESH_Mesh.med" );
2761
2762   int size;
2763   HDFfile*    aFile;
2764   HDFdataset* aDataset;
2765   HDFgroup*   aTopGroup;
2766   HDFgroup*   aGroup;
2767   HDFgroup*   aSubGroup;
2768   HDFgroup*   aSubSubGroup;
2769
2770   // Read data
2771   // ---> open HDF file
2772   aFile = new HDFfile( filename.ToCString() );
2773   try {
2774     aFile->OpenOnDisk( HDF_RDONLY );
2775   }
2776   catch ( HDFexception ) {
2777     INFOS( "Load(): " << filename << " not found!" );
2778     return false;
2779   }
2780
2781   DriverMED_R_SMESHDS_Mesh myReader;
2782   myReader.SetFile( meshfile.ToCString() );
2783
2784   // For PAL13473 ("Repetitive mesh") implementation.
2785   // New dependencies between SMESH objects are established:
2786   // now hypotheses can refer to meshes, shapes and other hypotheses.
2787   // To keep data consistent, the following order of data restoration
2788   // imposed:
2789   // 1. Create hypotheses
2790   // 2. Create all meshes
2791   // 3. Load hypotheses' data
2792   // 4. All the rest
2793
2794   list< pair< SMESH_Hypothesis_i*, string > >    hypDataList;
2795   list< pair< SMESH_Mesh_i*,       HDFgroup* > > meshGroupList;
2796
2797   // get total number of top-level groups
2798   int aNbGroups = aFile->nInternalObjects(); 
2799   if ( aNbGroups > 0 ) {
2800     // --> in first turn we should read&create hypotheses
2801     if ( aFile->ExistInternalObject( "Hypotheses" ) ) {
2802       // open hypotheses root HDF group
2803       aTopGroup = new HDFgroup( "Hypotheses", aFile ); 
2804       aTopGroup->OpenOnDisk();
2805
2806       // get number of hypotheses
2807       int aNbObjects = aTopGroup->nInternalObjects(); 
2808       for ( int j = 0; j < aNbObjects; j++ ) {
2809         // try to identify hypothesis
2810         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
2811         aTopGroup->InternalObjectIndentify( j, hypGrpName );
2812
2813         if ( string( hypGrpName ).substr( 0, 10 ) == string( "Hypothesis" ) ) {
2814           // open hypothesis group
2815           aGroup = new HDFgroup( hypGrpName, aTopGroup ); 
2816           aGroup->OpenOnDisk();
2817
2818           // --> get hypothesis id
2819           int    id = atoi( string( hypGrpName ).substr( 10 ).c_str() );
2820           string hypname;
2821           string libname;
2822           string hypdata;
2823
2824           // get number of datasets
2825           int aNbSubObjects = aGroup->nInternalObjects();
2826           for ( int k = 0; k < aNbSubObjects; k++ ) {
2827             // identify dataset
2828             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
2829             aGroup->InternalObjectIndentify( k, name_of_subgroup );
2830             // --> get hypothesis name
2831             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
2832               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2833               aDataset->OpenOnDisk();
2834               size = aDataset->GetSize();
2835               char* hypname_str = new char[ size ];
2836               aDataset->ReadFromDisk( hypname_str );
2837               hypname = string( hypname_str );
2838               delete [] hypname_str;
2839               aDataset->CloseOnDisk();
2840             }
2841             // --> get hypothesis plugin library name
2842             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
2843               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2844               aDataset->OpenOnDisk();
2845               size = aDataset->GetSize();
2846               char* libname_str = new char[ size ];
2847               aDataset->ReadFromDisk( libname_str );
2848               if(MYDEBUG) SCRUTE( libname_str );
2849               libname = string( libname_str );
2850               delete [] libname_str;
2851               aDataset->CloseOnDisk();
2852             }
2853             // --> get hypothesis data
2854             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
2855               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2856               aDataset->OpenOnDisk();
2857               size = aDataset->GetSize();
2858               char* hypdata_str = new char[ size ];
2859               aDataset->ReadFromDisk( hypdata_str );
2860               hypdata = string( hypdata_str );
2861               delete [] hypdata_str;
2862               aDataset->CloseOnDisk();
2863             }
2864           }
2865           // close hypothesis HDF group
2866           aGroup->CloseOnDisk();
2867
2868           // --> restore hypothesis from data
2869           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
2870             if(MYDEBUG) MESSAGE("VSR - load hypothesis : id = " << id <<
2871                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
2872             SMESH::SMESH_Hypothesis_var myHyp;
2873
2874             try { // protect persistence mechanism against exceptions
2875               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
2876             }
2877             catch (...) {
2878               INFOS( "Exception during hypothesis creation" );
2879             }
2880
2881             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
2882             if ( myImpl ) {
2883               // myImpl->LoadFrom( hypdata.c_str() );
2884               hypDataList.push_back( make_pair( myImpl, hypdata ));
2885               string iorString = GetORB()->object_to_string( myHyp );
2886               int newId = myStudyContext->findId( iorString );
2887               myStudyContext->mapOldToNew( id, newId );
2888             }
2889             else
2890               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
2891           }
2892         }
2893       }
2894       // close hypotheses root HDF group
2895       aTopGroup->CloseOnDisk();
2896       aTopGroup = 0;
2897     }
2898
2899     // --> then we should read&create algorithms
2900     if ( aFile->ExistInternalObject( "Algorithms" ) ) {
2901       // open algorithms root HDF group
2902       aTopGroup = new HDFgroup( "Algorithms", aFile ); 
2903       aTopGroup->OpenOnDisk();
2904
2905       // get number of algorithms
2906       int aNbObjects = aTopGroup->nInternalObjects(); 
2907       for ( int j = 0; j < aNbObjects; j++ ) {
2908         // try to identify algorithm
2909         char hypGrpName[ HDF_NAME_MAX_LEN+1 ];
2910         aTopGroup->InternalObjectIndentify( j, hypGrpName );
2911
2912         if ( string( hypGrpName ).substr( 0, 9 ) == string( "Algorithm" ) ) {
2913           // open algorithm group
2914           aGroup = new HDFgroup( hypGrpName, aTopGroup ); 
2915           aGroup->OpenOnDisk();
2916
2917           // --> get algorithm id
2918           int    id = atoi( string( hypGrpName ).substr( 9 ).c_str() );
2919           string hypname;
2920           string libname;
2921           string hypdata;
2922
2923           // get number of datasets
2924           int aNbSubObjects = aGroup->nInternalObjects();
2925           for ( int k = 0; k < aNbSubObjects; k++ ) {
2926             // identify dataset
2927             char name_of_subgroup[ HDF_NAME_MAX_LEN+1 ];
2928             aGroup->InternalObjectIndentify( k, name_of_subgroup );
2929             // --> get algorithm name
2930             if ( strcmp( name_of_subgroup, "Name"  ) == 0 ) {
2931               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2932               aDataset->OpenOnDisk();
2933               size = aDataset->GetSize();
2934               char* hypname_str = new char[ size ];
2935               aDataset->ReadFromDisk( hypname_str );
2936               hypname = string( hypname_str );
2937               delete [] hypname_str;
2938               aDataset->CloseOnDisk();
2939             }
2940             // --> get algorithm plugin library name
2941             if ( strcmp( name_of_subgroup, "LibName"  ) == 0 ) {
2942               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2943               aDataset->OpenOnDisk();
2944               size = aDataset->GetSize();
2945               char* libname_str = new char[ size ];
2946               aDataset->ReadFromDisk( libname_str );
2947               if(MYDEBUG) SCRUTE( libname_str );
2948               libname = string( libname_str );
2949               delete [] libname_str;
2950               aDataset->CloseOnDisk();
2951             }
2952             // --> get algorithm data
2953             if ( strcmp( name_of_subgroup, "Data"  ) == 0 ) {
2954               aDataset = new HDFdataset( name_of_subgroup, aGroup );
2955               aDataset->OpenOnDisk();
2956               size = aDataset->GetSize();
2957               char* hypdata_str = new char[ size ];
2958               aDataset->ReadFromDisk( hypdata_str );
2959               if(MYDEBUG) SCRUTE( hypdata_str );
2960               hypdata = string( hypdata_str );
2961               delete [] hypdata_str;
2962               aDataset->CloseOnDisk();
2963             }
2964           }
2965           // close algorithm HDF group
2966           aGroup->CloseOnDisk();
2967
2968           // --> restore algorithm from data
2969           if ( id > 0 && !hypname.empty()/* && !hypdata.empty()*/ ) { // VSR : persistent data can be empty
2970             if(MYDEBUG) MESSAGE("VSR - load algo : id = " << id <<
2971                                 ", name = " << hypname.c_str() << ", persistent string = " << hypdata.c_str());
2972             SMESH::SMESH_Hypothesis_var myHyp;
2973
2974             try { // protect persistence mechanism against exceptions
2975               myHyp = this->createHypothesis( hypname.c_str(), libname.c_str() );
2976             }
2977             catch (...) {
2978               INFOS( "Exception during hypothesis creation" );
2979             }
2980
2981             SMESH_Hypothesis_i* myImpl = dynamic_cast<SMESH_Hypothesis_i*>( GetServant( myHyp ).in() );
2982             if ( myImpl ) {
2983               //myImpl->LoadFrom( hypdata.c_str() );
2984               hypDataList.push_back( make_pair( myImpl, hypdata ));
2985               string iorString = GetORB()->object_to_string( myHyp );
2986               int newId = myStudyContext->findId( iorString );
2987               myStudyContext->mapOldToNew( id, newId );
2988             }
2989             else
2990               if(MYDEBUG) MESSAGE( "VSR - SMESH_Gen::Load - can't get servant" );
2991           }
2992         }
2993       }
2994       // close algorithms root HDF group
2995       aTopGroup->CloseOnDisk();
2996       aTopGroup = 0;
2997     }
2998
2999     // --> the rest groups should be meshes
3000     for ( int i = 0; i < aNbGroups; i++ ) {
3001       // identify next group
3002       char meshName[ HDF_NAME_MAX_LEN+1 ];
3003       aFile->InternalObjectIndentify( i, meshName );
3004
3005       if ( string( meshName ).substr( 0, 4 ) == string( "Mesh" ) ) {
3006         // --> get mesh id
3007         int id = atoi( string( meshName ).substr( 4 ).c_str() );
3008         if ( id <= 0 )
3009           continue;
3010
3011         // open mesh HDF group
3012         aTopGroup = new HDFgroup( meshName, aFile ); 
3013         aTopGroup->OpenOnDisk();
3014
3015         // get number of child HDF objects
3016         int aNbObjects = aTopGroup->nInternalObjects(); 
3017         if ( aNbObjects > 0 ) {
3018           // create mesh
3019           if(MYDEBUG) MESSAGE( "VSR - load mesh : id = " << id );
3020           SMESH::SMESH_Mesh_var myNewMesh = this->createMesh();
3021           SMESH_Mesh_i* myNewMeshImpl = dynamic_cast<SMESH_Mesh_i*>( GetServant( myNewMesh ).in() );
3022           if ( !myNewMeshImpl )
3023             continue;
3024           meshGroupList.push_back( make_pair( myNewMeshImpl, aTopGroup ));
3025
3026           string iorString = GetORB()->object_to_string( myNewMesh );
3027           int newId = myStudyContext->findId( iorString );
3028           myStudyContext->mapOldToNew( id, newId );
3029
3030           // ouv : NPAL12872
3031           // try to read and set auto color flag
3032           char aMeshAutoColorName[ 30 ];
3033           sprintf( aMeshAutoColorName, "AutoColorMesh %d", id);
3034           if( aTopGroup->ExistInternalObject( aMeshAutoColorName ) )
3035           {
3036             aDataset = new HDFdataset( aMeshAutoColorName, aTopGroup );
3037             aDataset->OpenOnDisk();
3038             size = aDataset->GetSize();
3039             int* anAutoColor = new int[ size ];
3040             aDataset->ReadFromDisk( anAutoColor );
3041             aDataset->CloseOnDisk();
3042             myNewMeshImpl->SetAutoColor( (bool)anAutoColor[0] );
3043           }
3044
3045           // try to read and set reference to shape
3046           GEOM::GEOM_Object_var aShapeObject;
3047           if ( aTopGroup->ExistInternalObject( "Ref on shape" ) ) {
3048             // load mesh "Ref on shape" - it's an entry to SObject
3049             aDataset = new HDFdataset( "Ref on shape", aTopGroup );
3050             aDataset->OpenOnDisk();
3051             size = aDataset->GetSize();
3052             char* refFromFile = new char[ size ];
3053             aDataset->ReadFromDisk( refFromFile );
3054             aDataset->CloseOnDisk();
3055             if ( strlen( refFromFile ) > 0 ) {
3056               SALOMEDS::SObject_var shapeSO = myCurrentStudy->FindObjectID( refFromFile );
3057
3058               // Make sure GEOM data are loaded first
3059               //loadGeomData( shapeSO->GetFatherComponent() );
3060
3061               CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
3062               if ( !CORBA::is_nil( shapeObject ) ) {
3063                 aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
3064                 if ( !aShapeObject->_is_nil() )
3065                   myNewMeshImpl->SetShape( aShapeObject );
3066               }
3067             }
3068           }
3069
3070         }
3071       }
3072     }
3073
3074     // As all object that can be referred by hypothesis are created,
3075     // we can restore hypothesis data
3076
3077     list< pair< SMESH_Hypothesis_i*, string > >::iterator hyp_data;
3078     for ( hyp_data = hypDataList.begin(); hyp_data != hypDataList.end(); ++hyp_data )
3079     {
3080       SMESH_Hypothesis_i* hyp  = hyp_data->first;
3081       string &            data = hyp_data->second;
3082       hyp->LoadFrom( data.c_str() );
3083     }
3084
3085     // Restore the rest mesh data
3086
3087     list< pair< SMESH_Mesh_i*, HDFgroup* > >::iterator meshi_group;
3088     for ( meshi_group = meshGroupList.begin(); meshi_group != meshGroupList.end(); ++meshi_group )
3089     {
3090       aTopGroup                   = meshi_group->second;
3091       SMESH_Mesh_i* myNewMeshImpl = meshi_group->first;
3092       ::SMESH_Mesh& myLocMesh     = myNewMeshImpl->GetImpl();
3093       SMESHDS_Mesh* mySMESHDSMesh = myLocMesh.GetMeshDS();
3094
3095       GEOM::GEOM_Object_var aShapeObject = myNewMeshImpl->GetShapeToMesh();
3096       bool hasData = false;
3097
3098       // get mesh old id
3099       string iorString = GetORB()->object_to_string( myNewMeshImpl->_this() );
3100       int newId = myStudyContext->findId( iorString );
3101       int id = myStudyContext->getOldId( newId );
3102
3103       // try to find mesh data dataset
3104       if ( aTopGroup->ExistInternalObject( "Has data" ) ) {
3105         // load mesh "has data" flag
3106         aDataset = new HDFdataset( "Has data", aTopGroup );
3107         aDataset->OpenOnDisk();
3108         size = aDataset->GetSize();
3109         char* strHasData = new char[ size ];
3110         aDataset->ReadFromDisk( strHasData );
3111         aDataset->CloseOnDisk();
3112         if ( strcmp( strHasData, "1") == 0 ) {
3113           // read mesh data from MED file
3114           myReader.SetMesh( mySMESHDSMesh );
3115           myReader.SetMeshId( id );
3116           myReader.Perform();
3117           hasData = true;
3118         }
3119       }
3120
3121       // try to get applied algorithms
3122       if ( aTopGroup->ExistInternalObject( "Applied Algorithms" ) ) {
3123         aGroup = new HDFgroup( "Applied Algorithms", aTopGroup );
3124         aGroup->OpenOnDisk();
3125         // get number of applied algorithms
3126         int aNbSubObjects = aGroup->nInternalObjects(); 
3127         if(MYDEBUG) MESSAGE( "VSR - number of applied algos " << aNbSubObjects );
3128         for ( int j = 0; j < aNbSubObjects; j++ ) {
3129           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3130           aGroup->InternalObjectIndentify( j, name_dataset );
3131           // check if it is an algorithm
3132           if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
3133             aDataset = new HDFdataset( name_dataset, aGroup );
3134             aDataset->OpenOnDisk();
3135             size = aDataset->GetSize();
3136             char* refFromFile = new char[ size ];
3137             aDataset->ReadFromDisk( refFromFile );
3138             aDataset->CloseOnDisk();
3139
3140             // san - it is impossible to recover applied algorithms using their entries within Load() method
3141
3142             //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3143             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3144             int id = atoi( refFromFile );
3145             string anIOR = myStudyContext->getIORbyOldId( id );
3146             if ( !anIOR.empty() ) {
3147               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3148               if ( !CORBA::is_nil( hypObject ) ) {
3149                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3150                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
3151                                            || !myNewMeshImpl->HasShapeToMesh()) )
3152                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
3153               }
3154             }
3155           }
3156         }
3157         aGroup->CloseOnDisk();
3158       }
3159
3160       // try to get applied hypotheses
3161       if ( aTopGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
3162         aGroup = new HDFgroup( "Applied Hypotheses", aTopGroup );
3163         aGroup->OpenOnDisk();
3164         // get number of applied hypotheses
3165         int aNbSubObjects = aGroup->nInternalObjects(); 
3166         for ( int j = 0; j < aNbSubObjects; j++ ) {
3167           char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3168           aGroup->InternalObjectIndentify( j, name_dataset );
3169           // check if it is a hypothesis
3170           if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
3171             aDataset = new HDFdataset( name_dataset, aGroup );
3172             aDataset->OpenOnDisk();
3173             size = aDataset->GetSize();
3174             char* refFromFile = new char[ size ];
3175             aDataset->ReadFromDisk( refFromFile );
3176             aDataset->CloseOnDisk();
3177
3178             // san - it is impossible to recover applied hypotheses using their entries within Load() method
3179
3180             //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3181             //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3182             int id = atoi( refFromFile );
3183             string anIOR = myStudyContext->getIORbyOldId( id );
3184             if ( !anIOR.empty() ) {
3185               CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3186               if ( !CORBA::is_nil( hypObject ) ) {
3187                 SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3188                 if ( !anHyp->_is_nil() && (!aShapeObject->_is_nil()
3189                                            || !myNewMeshImpl->HasShapeToMesh()) )
3190                   myNewMeshImpl->addHypothesis( aShapeObject, anHyp );
3191               }
3192             }
3193           }
3194         }
3195         aGroup->CloseOnDisk();
3196       }
3197
3198       // --> try to find submeshes containers for each type of submesh
3199       for ( int j = GetSubMeshOnVertexTag(); j <= GetSubMeshOnCompoundTag(); j++ ) {
3200         char name_meshgroup[ 30 ];
3201         if ( j == GetSubMeshOnVertexTag() )
3202           strcpy( name_meshgroup, "SubMeshes On Vertex" );
3203         else if ( j == GetSubMeshOnEdgeTag() )
3204           strcpy( name_meshgroup, "SubMeshes On Edge" );
3205         else if ( j == GetSubMeshOnWireTag() )
3206           strcpy( name_meshgroup, "SubMeshes On Wire" );
3207         else if ( j == GetSubMeshOnFaceTag() )
3208           strcpy( name_meshgroup, "SubMeshes On Face" );
3209         else if ( j == GetSubMeshOnShellTag() )
3210           strcpy( name_meshgroup, "SubMeshes On Shell" );
3211         else if ( j == GetSubMeshOnSolidTag() )
3212           strcpy( name_meshgroup, "SubMeshes On Solid" );
3213         else if ( j == GetSubMeshOnCompoundTag() )
3214           strcpy( name_meshgroup, "SubMeshes On Compound" );
3215
3216         // try to get submeshes container HDF group
3217         if ( aTopGroup->ExistInternalObject( name_meshgroup ) ) {
3218           // open submeshes containers HDF group
3219           aGroup = new HDFgroup( name_meshgroup, aTopGroup );
3220           aGroup->OpenOnDisk();
3221
3222           // get number of submeshes
3223           int aNbSubMeshes = aGroup->nInternalObjects(); 
3224           for ( int k = 0; k < aNbSubMeshes; k++ ) {
3225             // identify submesh
3226             char name_submeshgroup[ HDF_NAME_MAX_LEN+1 ];
3227             aGroup->InternalObjectIndentify( k, name_submeshgroup );
3228             if ( string( name_submeshgroup ).substr( 0, 7 ) == string( "SubMesh" )  ) {
3229               // --> get submesh id
3230               int subid = atoi( string( name_submeshgroup ).substr( 7 ).c_str() );
3231               if ( subid <= 0 )
3232                 continue;
3233               // open submesh HDF group
3234               aSubGroup = new HDFgroup( name_submeshgroup, aGroup );
3235               aSubGroup->OpenOnDisk();
3236
3237               // try to read and set reference to subshape
3238               GEOM::GEOM_Object_var aSubShapeObject;
3239               SMESH::SMESH_subMesh_var aSubMesh;
3240
3241               if ( aSubGroup->ExistInternalObject( "Ref on shape" ) ) {
3242                 // load submesh "Ref on shape" - it's an entry to SObject
3243                 aDataset = new HDFdataset( "Ref on shape", aSubGroup );
3244                 aDataset->OpenOnDisk();
3245                 size = aDataset->GetSize();
3246                 char* refFromFile = new char[ size ];
3247                 aDataset->ReadFromDisk( refFromFile );
3248                 aDataset->CloseOnDisk();
3249                 if ( strlen( refFromFile ) > 0 ) {
3250                   SALOMEDS::SObject_var subShapeSO = myCurrentStudy->FindObjectID( refFromFile );
3251                   CORBA::Object_var subShapeObject = SObjectToObject( subShapeSO );
3252                   if ( !CORBA::is_nil( subShapeObject ) ) {
3253                     aSubShapeObject = GEOM::GEOM_Object::_narrow( subShapeObject );
3254                     if ( !aSubShapeObject->_is_nil() )
3255                       aSubMesh = SMESH::SMESH_subMesh::_duplicate
3256                         ( myNewMeshImpl->createSubMesh( aSubShapeObject ) );
3257                     if ( aSubMesh->_is_nil() )
3258                       continue;
3259                     string iorSubString = GetORB()->object_to_string( aSubMesh );
3260                     int newSubId = myStudyContext->findId( iorSubString );
3261                     myStudyContext->mapOldToNew( subid, newSubId );
3262                   }
3263                 }
3264               }
3265
3266               if ( aSubMesh->_is_nil() )
3267                 continue;
3268
3269               // VSR: Get submesh data from MED convertor
3270               //                  int anInternalSubmeshId = aSubMesh->GetId(); // this is not a persistent ID, it's an internal one computed from sub-shape
3271               //                  if (myNewMeshImpl->_mapSubMesh.find(anInternalSubmeshId) != myNewMeshImpl->_mapSubMesh.end()) {
3272               //                    if(MYDEBUG) MESSAGE("VSR - SMESH_Gen_i::Load(): loading from MED file submesh with ID = " <<
3273               //                            subid << " for subshape # " << anInternalSubmeshId);
3274               //                    SMESHDS_SubMesh* aSubMeshDS =
3275               //                      myNewMeshImpl->_mapSubMesh[anInternalSubmeshId]->CreateSubMeshDS();
3276               //                    if ( !aSubMeshDS ) {
3277               //                      if(MYDEBUG) MESSAGE("VSR - SMESH_Gen_i::Load(): FAILED to create a submesh for subshape # " <<
3278               //                              anInternalSubmeshId << " in current mesh!");
3279               //                    }
3280               //                    else
3281               //                      myReader.GetSubMesh( aSubMeshDS, subid );
3282               //                  }
3283
3284               // try to get applied algorithms
3285               if ( aSubGroup->ExistInternalObject( "Applied Algorithms" ) ) {
3286                 // open "applied algorithms" HDF group
3287                 aSubSubGroup = new HDFgroup( "Applied Algorithms", aSubGroup );
3288                 aSubSubGroup->OpenOnDisk();
3289                 // get number of applied algorithms
3290                 int aNbSubObjects = aSubSubGroup->nInternalObjects(); 
3291                 for ( int l = 0; l < aNbSubObjects; l++ ) {
3292                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3293                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
3294                   // check if it is an algorithm
3295                   if ( string( name_dataset ).substr( 0, 4 ) == string( "Algo" ) ) {
3296                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
3297                     aDataset->OpenOnDisk();
3298                     size = aDataset->GetSize();
3299                     char* refFromFile = new char[ size ];
3300                     aDataset->ReadFromDisk( refFromFile );
3301                     aDataset->CloseOnDisk();
3302
3303                     //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3304                     //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3305                     int id = atoi( refFromFile );
3306                     string anIOR = myStudyContext->getIORbyOldId( id );
3307                     if ( !anIOR.empty() ) {
3308                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3309                       if ( !CORBA::is_nil( hypObject ) ) {
3310                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3311                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
3312                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
3313                       }
3314                     }
3315                   }
3316                 }
3317                 // close "applied algorithms" HDF group
3318                 aSubSubGroup->CloseOnDisk();
3319               }
3320
3321               // try to get applied hypotheses
3322               if ( aSubGroup->ExistInternalObject( "Applied Hypotheses" ) ) {
3323                 // open "applied hypotheses" HDF group
3324                 aSubSubGroup = new HDFgroup( "Applied Hypotheses", aSubGroup );
3325                 aSubSubGroup->OpenOnDisk();
3326                 // get number of applied hypotheses
3327                 int aNbSubObjects = aSubSubGroup->nInternalObjects(); 
3328                 for ( int l = 0; l < aNbSubObjects; l++ ) {
3329                   char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3330                   aSubSubGroup->InternalObjectIndentify( l, name_dataset );
3331                   // check if it is a hypothesis
3332                   if ( string( name_dataset ).substr( 0, 3 ) == string( "Hyp" ) ) {
3333                     aDataset = new HDFdataset( name_dataset, aSubSubGroup );
3334                     aDataset->OpenOnDisk();
3335                     size = aDataset->GetSize();
3336                     char* refFromFile = new char[ size ];
3337                     aDataset->ReadFromDisk( refFromFile );
3338                     aDataset->CloseOnDisk();
3339
3340                     //SALOMEDS::SObject_var hypSO = myCurrentStudy->FindObjectID( refFromFile );
3341                     //CORBA::Object_var hypObject = SObjectToObject( hypSO );
3342                     int id = atoi( refFromFile );
3343                     string anIOR = myStudyContext->getIORbyOldId( id );
3344                     if ( !anIOR.empty() ) {
3345                       CORBA::Object_var hypObject = GetORB()->string_to_object( anIOR.c_str() );
3346                       if ( !CORBA::is_nil( hypObject ) ) {
3347                         SMESH::SMESH_Hypothesis_var anHyp = SMESH::SMESH_Hypothesis::_narrow( hypObject );
3348                         if ( !anHyp->_is_nil() && !aShapeObject->_is_nil() )
3349                           myNewMeshImpl->addHypothesis( aSubShapeObject, anHyp );
3350                       }
3351                     }
3352                   }
3353                 }
3354                 // close "applied hypotheses" HDF group
3355                 aSubSubGroup->CloseOnDisk();
3356               }
3357
3358               // close submesh HDF group
3359               aSubGroup->CloseOnDisk();
3360             }
3361           }
3362           // close submeshes containers HDF group
3363           aGroup->CloseOnDisk();
3364         }
3365       }
3366
3367       if(hasData) {
3368
3369         // Read sub-meshes from MED
3370         // -------------------------
3371         if(MYDEBUG) MESSAGE("Create all sub-meshes");
3372         bool submeshesInFamilies = ( ! aTopGroup->ExistInternalObject( "Submeshes" ));
3373         if ( submeshesInFamilies )
3374         {
3375           // old way working before fix of PAL 12992
3376           myReader.CreateAllSubMeshes();
3377         }
3378         else
3379         {
3380           // open a group
3381           aGroup = new HDFgroup( "Submeshes", aTopGroup ); 
3382           aGroup->OpenOnDisk();
3383
3384           int maxID = mySMESHDSMesh->MaxShapeIndex();
3385           vector< SMESHDS_SubMesh * > subMeshes( maxID + 1, (SMESHDS_SubMesh*) 0 );
3386           vector< TopAbs_ShapeEnum  > smType   ( maxID + 1, TopAbs_SHAPE ); 
3387
3388           PositionCreator aPositionCreator;
3389
3390           SMDS_NodeIteratorPtr nIt = mySMESHDSMesh->nodesIterator();
3391           SMDS_ElemIteratorPtr eIt = mySMESHDSMesh->elementsIterator();
3392           for ( int isNode = 0; isNode < 2; ++isNode )
3393           {
3394             string aDSName( isNode ? "Node Submeshes" : "Element Submeshes");
3395             if ( aGroup->ExistInternalObject( (char*) aDSName.c_str() ))
3396             {
3397               aDataset = new HDFdataset( (char*) aDSName.c_str(), aGroup );
3398               aDataset->OpenOnDisk();
3399               // read submesh IDs for all elements sorted by ID
3400               int nbElems = aDataset->GetSize();
3401               int* smIDs = new int [ nbElems ];
3402               aDataset->ReadFromDisk( smIDs );
3403               aDataset->CloseOnDisk();
3404
3405               // get elements sorted by ID
3406               TIDSortedElemSet elemSet;
3407               if ( isNode )
3408                 while ( nIt->more() ) elemSet.insert( nIt->next() );
3409               else
3410                 while ( eIt->more() ) elemSet.insert( eIt->next() );
3411               ASSERT( elemSet.size() == nbElems );
3412
3413               // add elements to submeshes
3414               TIDSortedElemSet::iterator iE = elemSet.begin();
3415               for ( int i = 0; i < nbElems; ++i, ++iE )
3416               {
3417                 int smID = smIDs[ i ];
3418                 if ( smID == 0 ) continue;
3419                 ASSERT( smID <= maxID );
3420                 const SMDS_MeshElement* elem = *iE;
3421                 // get or create submesh
3422                 SMESHDS_SubMesh* & sm = subMeshes[ smID ];
3423                 if ( ! sm ) {
3424                   sm = mySMESHDSMesh->NewSubMesh( smID );
3425                   smType[ smID ] = mySMESHDSMesh->IndexToShape( smID ).ShapeType();
3426                 }
3427                 // add
3428                 if ( isNode ) {
3429                   SMDS_PositionPtr pos = aPositionCreator.MakePosition( smType[ smID ]);
3430                   pos->SetShapeId( smID );
3431                   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( static_cast<const SMDS_MeshNode*>( elem ));
3432                   node->SetPosition( pos );
3433                   sm->AddNode( node );
3434                 } else {
3435                   sm->AddElement( elem );
3436                 }
3437               }
3438               delete [] smIDs;
3439             }
3440           }
3441         } // end reading submeshes
3442
3443         // Read node positions on sub-shapes (SMDS_Position)
3444
3445         if ( aTopGroup->ExistInternalObject( "Node Positions" ))
3446         {
3447           // There are 5 datasets to read:
3448           // "Nodes on Edges" - ID of node on edge
3449           // "Edge positions" - U parameter on node on edge
3450           // "Nodes on Faces" - ID of node on face
3451           // "Face U positions" - U parameter of node on face
3452           // "Face V positions" - V parameter of node on face
3453           char* aEid_DSName = "Nodes on Edges";
3454           char* aEu_DSName  = "Edge positions";
3455           char* aFu_DSName  = "Face U positions";
3456           //char* aFid_DSName = "Nodes on Faces";
3457           //char* aFv_DSName  = "Face V positions";
3458
3459           // data to retrieve
3460           int nbEids = 0, nbFids = 0;
3461           int *aEids = 0, *aFids  = 0;
3462           double *aEpos = 0, *aFupos = 0, *aFvpos = 0;
3463
3464           // open a group
3465           aGroup = new HDFgroup( "Node Positions", aTopGroup ); 
3466           aGroup->OpenOnDisk();
3467
3468           // loop on 5 data sets
3469           int aNbObjects = aGroup->nInternalObjects();
3470           for ( int i = 0; i < aNbObjects; i++ )
3471           {
3472             // identify dataset
3473             char aDSName[ HDF_NAME_MAX_LEN+1 ];
3474             aGroup->InternalObjectIndentify( i, aDSName );
3475             // read data
3476             aDataset = new HDFdataset( aDSName, aGroup );
3477             aDataset->OpenOnDisk();
3478             if ( aDataset->GetType() == HDF_FLOAT64 ) // Positions
3479             {
3480               double* pos = new double [ aDataset->GetSize() ];
3481               aDataset->ReadFromDisk( pos );
3482               // which one?
3483               if ( strncmp( aDSName, aEu_DSName, strlen( aEu_DSName )) == 0 )
3484                 aEpos = pos;
3485               else if ( strncmp( aDSName, aFu_DSName, strlen( aFu_DSName )) == 0 )
3486                 aFupos = pos;
3487               else
3488                 aFvpos = pos;
3489             }
3490             else // NODE IDS
3491             {
3492               int aSize = aDataset->GetSize();
3493
3494               // for reading files, created from 18.07.2005 till 10.10.2005
3495               if (aDataset->GetType() == HDF_STRING)
3496                 aSize /= sizeof(int);
3497
3498               int* ids = new int [aSize];
3499               aDataset->ReadFromDisk( ids );
3500               // on face or nodes?
3501               if ( strncmp( aDSName, aEid_DSName, strlen( aEid_DSName )) == 0 ) {
3502                 aEids = ids;
3503                 nbEids = aSize;
3504               }
3505               else {
3506                 aFids = ids;
3507                 nbFids = aSize;
3508               }
3509             }
3510             aDataset->CloseOnDisk();
3511           } // loop on 5 datasets
3512
3513           // Set node positions on edges or faces
3514           for ( int onFace = 0; onFace < 2; onFace++ )
3515           {
3516             int nbNodes = ( onFace ? nbFids : nbEids );
3517             if ( nbNodes == 0 ) continue;
3518             int* aNodeIDs = ( onFace ? aFids : aEids );
3519             double* aUPos = ( onFace ? aFupos : aEpos );
3520             double* aVPos = ( onFace ? aFvpos : 0 );
3521             // loop on node IDs
3522             for ( int iNode = 0; iNode < nbNodes; iNode++ )
3523             {
3524               const SMDS_MeshNode* node = mySMESHDSMesh->FindNode( aNodeIDs[ iNode ]);
3525               ASSERT( node );
3526               SMDS_PositionPtr aPos = node->GetPosition();
3527               ASSERT( aPos )
3528                 if ( onFace ) {
3529                   ASSERT( aPos->GetTypeOfPosition() == SMDS_TOP_FACE );
3530                   SMDS_FacePosition* fPos = const_cast<SMDS_FacePosition*>
3531                     ( static_cast<const SMDS_FacePosition*>( aPos.get() ));
3532                   fPos->SetUParameter( aUPos[ iNode ]);
3533                   fPos->SetVParameter( aVPos[ iNode ]);
3534                 }
3535                 else {
3536                   ASSERT( aPos->GetTypeOfPosition() == SMDS_TOP_EDGE );
3537                   SMDS_EdgePosition* fPos = const_cast<SMDS_EdgePosition*>
3538                     ( static_cast<const SMDS_EdgePosition*>( aPos.get() ));
3539                   fPos->SetUParameter( aUPos[ iNode ]);
3540                 }
3541             }
3542           }
3543           if ( aEids ) delete [] aEids;
3544           if ( aFids ) delete [] aFids;
3545           if ( aEpos ) delete [] aEpos;
3546           if ( aFupos ) delete [] aFupos;
3547           if ( aFvpos ) delete [] aFvpos;
3548
3549           aGroup->CloseOnDisk();
3550
3551         } // if ( aTopGroup->ExistInternalObject( "Node Positions" ) )
3552       } // if ( hasData )
3553
3554       // Recompute State (as computed sub-meshes are restored from MED)
3555       if ( !aShapeObject->_is_nil() || !myNewMeshImpl->HasShapeToMesh()) {
3556         MESSAGE("Compute State Engine ...");
3557         TopoDS_Shape myLocShape;
3558         if(myNewMeshImpl->HasShapeToMesh())
3559           myLocShape = GeomObjectToShape( aShapeObject );
3560         else
3561           myLocShape = SMESH_Mesh::PseudoShape();
3562         
3563         myNewMeshImpl->GetImpl().GetSubMesh(myLocShape)->ComputeStateEngine
3564           (SMESH_subMesh::SUBMESH_RESTORED);
3565         MESSAGE("Compute State Engine finished");
3566       }
3567
3568       // try to get groups
3569       for ( int ii = GetNodeGroupsTag(); ii <= GetVolumeGroupsTag(); ii++ ) {
3570         char name_group[ 30 ];
3571         if ( ii == GetNodeGroupsTag() )
3572           strcpy( name_group, "Groups of Nodes" );
3573         else if ( ii == GetEdgeGroupsTag() )
3574           strcpy( name_group, "Groups of Edges" );
3575         else if ( ii == GetFaceGroupsTag() )
3576           strcpy( name_group, "Groups of Faces" );
3577         else if ( ii == GetVolumeGroupsTag() )
3578           strcpy( name_group, "Groups of Volumes" );
3579
3580         if ( aTopGroup->ExistInternalObject( name_group ) ) {
3581           aGroup = new HDFgroup( name_group, aTopGroup );
3582           aGroup->OpenOnDisk();
3583           // get number of groups
3584           int aNbSubObjects = aGroup->nInternalObjects(); 
3585           for ( int j = 0; j < aNbSubObjects; j++ ) {
3586             char name_dataset[ HDF_NAME_MAX_LEN+1 ];
3587             aGroup->InternalObjectIndentify( j, name_dataset );
3588             // check if it is an group
3589             if ( string( name_dataset ).substr( 0, 5 ) == string( "Group" ) ) {
3590               // --> get group id
3591               int subid = atoi( string( name_dataset ).substr( 5 ).c_str() );
3592               if ( subid <= 0 )
3593                 continue;
3594               aDataset = new HDFdataset( name_dataset, aGroup );
3595               aDataset->OpenOnDisk();
3596
3597               // Retrieve actual group name
3598               size = aDataset->GetSize();
3599               char* nameFromFile = new char[ size ];
3600               aDataset->ReadFromDisk( nameFromFile );
3601               aDataset->CloseOnDisk();
3602
3603               // Try to find a shape reference
3604               TopoDS_Shape aShape;
3605               char aRefName[ 30 ];
3606               sprintf( aRefName, "Ref on shape %d", subid);
3607               if ( aGroup->ExistInternalObject( aRefName ) ) {
3608                 // load mesh "Ref on shape" - it's an entry to SObject
3609                 aDataset = new HDFdataset( aRefName, aGroup );
3610                 aDataset->OpenOnDisk();
3611                 size = aDataset->GetSize();
3612                 char* refFromFile = new char[ size ];
3613                 aDataset->ReadFromDisk( refFromFile );
3614                 aDataset->CloseOnDisk();
3615                 if ( strlen( refFromFile ) > 0 ) {
3616                   SALOMEDS::SObject_var shapeSO = myCurrentStudy->FindObjectID( refFromFile );
3617                   CORBA::Object_var shapeObject = SObjectToObject( shapeSO );
3618                   if ( !CORBA::is_nil( shapeObject ) ) {
3619                     aShapeObject = GEOM::GEOM_Object::_narrow( shapeObject );
3620                     if ( !aShapeObject->_is_nil() )
3621                       aShape = GeomObjectToShape( aShapeObject );
3622                   }
3623                 }
3624               }
3625               // Create group servant
3626               SMESH::ElementType type = (SMESH::ElementType)(ii - GetNodeGroupsTag() + 1);
3627               SMESH::SMESH_GroupBase_var aNewGroup = SMESH::SMESH_GroupBase::_duplicate
3628                 ( myNewMeshImpl->createGroup( type, nameFromFile, aShape ) );
3629               // Obtain a SMESHDS_Group object 
3630               if ( aNewGroup->_is_nil() )
3631                 continue;
3632
3633               string iorSubString = GetORB()->object_to_string( aNewGroup );
3634               int newSubId = myStudyContext->findId( iorSubString );
3635               myStudyContext->mapOldToNew( subid, newSubId );
3636
3637               SMESH_GroupBase_i* aGroupImpl =
3638                 dynamic_cast<SMESH_GroupBase_i*>( GetServant( aNewGroup ).in() );
3639               if ( !aGroupImpl )
3640                 continue;
3641
3642               SMESH_Group* aLocalGroup  = myLocMesh.GetGroup( aGroupImpl->GetLocalID() );
3643               if ( !aLocalGroup )
3644                 continue;
3645
3646               SMESHDS_GroupBase* aGroupBaseDS = aLocalGroup->GetGroupDS();
3647               aGroupBaseDS->SetStoreName( name_dataset );
3648
3649               // ouv : NPAL12872
3650               // Read color of the group
3651               char aGroupColorName[ 30 ];
3652               sprintf( aGroupColorName, "ColorGroup %d", subid);
3653               if ( aGroup->ExistInternalObject( aGroupColorName ) )
3654               {
3655                 aDataset = new HDFdataset( aGroupColorName, aGroup );
3656                 aDataset->OpenOnDisk();
3657                 size = aDataset->GetSize();
3658                 double* anRGB = new double[ size ];
3659                 aDataset->ReadFromDisk( anRGB );
3660                 aDataset->CloseOnDisk();
3661                 Quantity_Color aColor( anRGB[0], anRGB[1], anRGB[2], Quantity_TOC_RGB );
3662                 aGroupBaseDS->SetColor( aColor );
3663               }
3664
3665               // Fill group with contents from MED file
3666               SMESHDS_Group* aGrp = dynamic_cast<SMESHDS_Group*>( aGroupBaseDS );
3667               if ( aGrp )
3668                 myReader.GetGroup( aGrp );
3669             }
3670           }
3671           aGroup->CloseOnDisk();
3672         }
3673       }
3674     }
3675     // close mesh group
3676     if(aTopGroup)
3677       aTopGroup->CloseOnDisk();   
3678   }
3679   // close HDF file
3680   aFile->CloseOnDisk();
3681   delete aFile;
3682
3683   // Remove temporary files created from the stream
3684   if ( !isMultiFile ) 
3685     SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.ToCString(), aFileSeq.in(), true );
3686
3687   INFOS( "SMESH_Gen_i::Load completed" );
3688   return true;
3689 }
3690
3691 //=============================================================================
3692 /*!
3693  *  SMESH_Gen_i::LoadASCII
3694  *
3695  *  Load SMESH module's data in ASCII format
3696  */
3697 //=============================================================================
3698
3699 bool SMESH_Gen_i::LoadASCII( SALOMEDS::SComponent_ptr theComponent,
3700                              const SALOMEDS::TMPFile& theStream,
3701                              const char*              theURL,
3702                              bool                     isMultiFile ) {
3703   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
3704   return Load( theComponent, theStream, theURL, isMultiFile );
3705
3706   //before call main ::Load method it's need for decipher text format to
3707   //binary ( "|xx" => x' )
3708   int size = theStream.length();
3709   if ( int((size / 3 )*3) != size ) //error size of buffer
3710     return false;
3711
3712   int real_size = int(size / 3);
3713
3714   _CORBA_Octet* buffer = new _CORBA_Octet[real_size];
3715   char tmp[3];
3716   tmp[2]='\0';
3717   int c = -1;
3718   for ( int i = 0; i < real_size; i++ )
3719   {
3720     memcpy( &(tmp[0]), &(theStream[i*3+1]), 2 );
3721     sscanf( tmp, "%x", &c );
3722     sprintf( (char*)&(buffer[i]), "%c", (char)c );
3723   }
3724
3725   SALOMEDS::TMPFile_var aRealStreamFile = new SALOMEDS::TMPFile(real_size, real_size, buffer, 1);
3726   
3727   return Load( theComponent, *(aRealStreamFile._retn()), theURL, isMultiFile );
3728 }
3729
3730 //=============================================================================
3731 /*!
3732  *  SMESH_Gen_i::Close
3733  *
3734  *  Clears study-connected data when it is closed
3735  */
3736 //=============================================================================
3737
3738 void SMESH_Gen_i::Close( SALOMEDS::SComponent_ptr theComponent )
3739 {
3740   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::Close" );
3741
3742   // set correct current study
3743   if (theComponent->GetStudy()->StudyId() != GetCurrentStudyID())
3744     SetCurrentStudy(theComponent->GetStudy());
3745
3746   // Clear study contexts data
3747   int studyId = GetCurrentStudyID();
3748   if ( myStudyContextMap.find( studyId ) != myStudyContextMap.end() ) {
3749     delete myStudyContextMap[ studyId ];
3750     myStudyContextMap.erase( studyId );
3751   }
3752
3753   // delete SMESH_Mesh's
3754   StudyContextStruct* context = myGen.GetStudyContext( studyId );
3755   map< int, SMESH_Mesh* >::iterator i_mesh = context->mapMesh.begin();
3756   for ( ; i_mesh != context->mapMesh.end(); ++i_mesh )
3757     delete i_mesh->second;
3758   // delete SMESHDS_Mesh's
3759   // it's too long on big meshes
3760 //   if ( context->myDocument ) {
3761 //     delete context->myDocument;
3762 //     context->myDocument = 0;
3763 //   }
3764   
3765   return;
3766 }
3767
3768 //=============================================================================
3769 /*!
3770  *  SMESH_Gen_i::ComponentDataType
3771  * 
3772  *  Get component data type
3773  */
3774 //=============================================================================
3775
3776 char* SMESH_Gen_i::ComponentDataType()
3777 {
3778   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::ComponentDataType" );
3779   return CORBA::string_dup( "SMESH" );
3780 }
3781
3782     
3783 //=============================================================================
3784 /*!
3785  *  SMESH_Gen_i::IORToLocalPersistentID
3786  *  
3787  *  Transform data from transient form to persistent
3788  */
3789 //=============================================================================
3790
3791 char* SMESH_Gen_i::IORToLocalPersistentID( SALOMEDS::SObject_ptr /*theSObject*/,
3792                                            const char*           IORString,
3793                                            CORBA::Boolean        /*isMultiFile*/,
3794                                            CORBA::Boolean        /*isASCII*/ )
3795 {
3796   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::IORToLocalPersistentID" );
3797   StudyContext* myStudyContext = GetCurrentStudyContext();
3798   
3799   if ( myStudyContext && strcmp( IORString, "" ) != 0 ) {
3800     int anId = myStudyContext->findId( IORString );
3801     if ( anId ) {
3802       if(MYDEBUG) MESSAGE( "VSR " << anId )
3803       char strId[ 20 ];
3804       sprintf( strId, "%d", anId );
3805       return  CORBA::string_dup( strId );
3806     }
3807   }
3808   return CORBA::string_dup( "" );
3809 }
3810
3811 //=============================================================================
3812 /*!
3813  *  SMESH_Gen_i::LocalPersistentIDToIOR
3814  *
3815  *  Transform data from persistent form to transient
3816  */
3817 //=============================================================================
3818
3819 char* SMESH_Gen_i::LocalPersistentIDToIOR( SALOMEDS::SObject_ptr /*theSObject*/,
3820                                            const char*           aLocalPersistentID,
3821                                            CORBA::Boolean        /*isMultiFile*/,
3822                                            CORBA::Boolean        /*isASCII*/ )
3823 {
3824   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LocalPersistentIDToIOR(): id = " << aLocalPersistentID );
3825   StudyContext* myStudyContext = GetCurrentStudyContext();
3826
3827   if ( myStudyContext && strcmp( aLocalPersistentID, "" ) != 0 ) {
3828     int anId = atoi( aLocalPersistentID );
3829     return CORBA::string_dup( myStudyContext->getIORbyOldId( anId ).c_str() );
3830   }
3831   return CORBA::string_dup( "" );
3832 }
3833
3834 //=======================================================================
3835 //function : RegisterObject
3836 //purpose  : 
3837 //=======================================================================
3838
3839 int SMESH_Gen_i::RegisterObject(CORBA::Object_ptr theObject)
3840 {
3841   StudyContext* myStudyContext = GetCurrentStudyContext();
3842   if ( myStudyContext && !CORBA::is_nil( theObject )) {
3843     CORBA::String_var iorString = GetORB()->object_to_string( theObject );
3844     return myStudyContext->addObject( string( iorString.in() ) );
3845   }
3846   return 0;
3847 }
3848
3849 //================================================================================
3850 /*!
3851  * \brief Return id of registered object
3852   * \param theObject - the Object
3853   * \retval int - Object id
3854  */
3855 //================================================================================
3856
3857 CORBA::Long SMESH_Gen_i::GetObjectId(CORBA::Object_ptr theObject)
3858 {
3859   StudyContext* myStudyContext = GetCurrentStudyContext();
3860   if ( myStudyContext && !CORBA::is_nil( theObject )) {
3861     string iorString = GetORB()->object_to_string( theObject );
3862     return myStudyContext->findId( iorString );
3863   }
3864   return 0;
3865 }
3866
3867 //=============================================================================
3868 /*! 
3869  *  SMESHEngine_factory
3870  *
3871  *  C factory, accessible with dlsym, after dlopen  
3872  */
3873 //=============================================================================
3874
3875 extern "C"
3876 { SMESH_I_EXPORT
3877   PortableServer::ObjectId* SMESHEngine_factory( CORBA::ORB_ptr            orb,
3878                                                  PortableServer::POA_ptr   poa, 
3879                                                  PortableServer::ObjectId* contId,
3880                                                  const char*               instanceName, 
3881                                                  const char*               interfaceName )
3882   {
3883     if(MYDEBUG) MESSAGE( "PortableServer::ObjectId* SMESHEngine_factory()" );
3884     if(MYDEBUG) SCRUTE(interfaceName);
3885     SMESH_Gen_i* aSMESHGen = new SMESH_Gen_i(orb, poa, contId, instanceName, interfaceName);
3886     return aSMESHGen->getId() ;
3887   }
3888 }