Salome HOME
destroy registry in naming service at shutdown
[modules/kernel.git] / src / LifeCycleCORBA / SALOME_LifeCycleCORBA.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME LifeCycleCORBA : implementation of containers and engines life cycle both in Python and C++
24 //  File   : SALOME_LifeCycleCORBA.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SALOME
27
28 #include <iostream>
29 #include <fstream>
30 #include <sstream>
31 #include <iomanip>
32
33 #include <time.h>
34 #ifndef WIN32
35   #include <sys/time.h>
36   #include <unistd.h>
37 #endif
38
39 #include "Basics_Utils.hxx"
40 #include "utilities.h"
41
42 #include <ServiceUnreachable.hxx>
43
44 #include "SALOME_LifeCycleCORBA.hxx"
45 #include "SALOME_ResourcesManager.hxx"
46 #include "SALOMESDS_DataServerManager.hxx"
47
48 #include CORBA_CLIENT_HEADER(SALOME_ModuleCatalog)
49 #include CORBA_CLIENT_HEADER(SALOME_Session)
50 #include CORBA_CLIENT_HEADER(DSC_Engines)
51 #include CORBA_CLIENT_HEADER(SALOME_Registry)
52 #include CORBA_CLIENT_HEADER(SALOMEDS)
53 #include CORBA_CLIENT_HEADER(SALOME_SDS)
54 #include CORBA_CLIENT_HEADER(Logger)
55 #include CORBA_CLIENT_HEADER(SALOME_Launcher)
56
57 #include "SALOME_ResourcesManager.hxx"
58 #include "SALOME_ContainerManager.hxx"
59 #include "SALOME_Component_i.hxx"
60 #include "SALOME_NamingService.hxx"
61 #include "SALOME_FileTransferCORBA.hxx"
62
63 IncompatibleComponent::IncompatibleComponent( void ):
64   SALOME_Exception( "IncompatibleComponent" )
65 {
66 }
67
68 IncompatibleComponent::IncompatibleComponent(const IncompatibleComponent &ex):
69   SALOME_Exception( ex )
70 {
71 }
72
73 /*! \class SALOME_LifeCycleCORBA
74     \brief A class to manage life cycle of SALOME components.
75
76 */
77
78 //=============================================================================
79 /*!
80  *  Constructor
81  */
82 //=============================================================================
83
84 SALOME_LifeCycleCORBA::SALOME_LifeCycleCORBA(SALOME_NamingService *ns)
85 {
86   // be sure to have an instance of traceCollector, when used via SWIG
87   // in a Python module
88   int argc = 0;
89   char *xargv = (char*)"";
90   char **argv = &xargv;
91   CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);
92   //  LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
93   _NSnew=0;
94   if (!ns)
95     {
96       _NS = new SALOME_NamingService(orb);
97       _NSnew=_NS;
98     }
99   else _NS = ns;
100   //add try catch
101   _NS->Change_Directory("/"); // mpv 250105: current directory may be not root
102                               // (in SALOMEDS for an example)
103   // not enough: set a current directory in naming service is not thread safe
104   // if naming service instance is shared among several threads...
105   // ==> always use absolute path and don't rely on current directory!
106
107   CORBA::Object_var obj =
108     _NS->Resolve(SALOME_ContainerManager::_ContainerManagerNameInNS);
109   if (CORBA::is_nil(obj))
110     throw SALOME_Exception("Error: Cannot resolve ContainerManager in Naming Service");
111   _ContManager=Engines::ContainerManager::_narrow(obj);
112
113   obj = _NS->Resolve(SALOME_ResourcesManager::_ResourcesManagerNameInNS);
114   if (CORBA::is_nil(obj))
115     throw SALOME_Exception("Error: Cannot resolve ResourceManager in Naming Service");
116   _ResManager=Engines::ResourcesManager::_narrow(obj);
117 }
118
119 //=============================================================================
120 /*!
121  *  Destructor
122  */
123 //=============================================================================
124
125 SALOME_LifeCycleCORBA::~SALOME_LifeCycleCORBA()
126 {
127   if(_NSnew)delete _NSnew;
128 }
129
130 //=============================================================================
131 /*! \brief Find an already existing and registered component instance.
132  *
133  *  \param params         container parameters like type or name...
134  *  \param componentName  the name of component class
135  *  \return a CORBA reference of the component instance, or _nil if not found
136  */
137 //=============================================================================
138 Engines::EngineComponent_ptr
139 SALOME_LifeCycleCORBA::FindComponent(const Engines::ContainerParameters& params,
140                                      const char *componentName)
141 {
142   if (! isKnownComponentClass(componentName))
143     return Engines::EngineComponent::_nil();
144
145   Engines::ContainerParameters new_params(params);
146   new_params.resource_params.componentList.length(1);
147   new_params.resource_params.componentList[0] = componentName;
148   new_params.resource_params.can_run_containers = true;
149   Engines::ResourceList_var listOfResources;
150   try
151     {
152       listOfResources = _ResManager->GetFittingResources(new_params.resource_params);
153     }
154   catch( const SALOME::SALOME_Exception& ex )
155     {
156       return Engines::EngineComponent::_nil();
157     }
158
159   Engines::EngineComponent_var compo = _FindComponent(new_params,
160                                                 componentName,
161                                                 listOfResources);
162
163   return compo._retn();
164 }
165
166 //=============================================================================
167 /*! \brief Load a component instance on a container defined by its parameters
168  *
169  *  \param params         container parameters like type or name...
170  *  \param componentName  the name of component class
171  *  \return a CORBA reference of the component instance, or _nil if problem
172  */
173 //=============================================================================
174
175 Engines::EngineComponent_ptr
176 SALOME_LifeCycleCORBA::LoadComponent(const Engines::ContainerParameters& params,
177                                      const char *componentName)
178 {
179   // --- Check if Component Name is known in ModuleCatalog
180
181   if (! isKnownComponentClass(componentName))
182     return Engines::EngineComponent::_nil();
183
184   Engines::ContainerParameters new_params(params);
185   new_params.resource_params.componentList.length(1);
186   new_params.resource_params.componentList[0] = componentName;
187   new_params.resource_params.can_run_containers = true;
188
189   Engines::ResourceList_var listOfResources;
190   try
191     {
192       listOfResources = _ResManager->GetFittingResources(new_params.resource_params);
193     }
194   catch( const SALOME::SALOME_Exception& ex )
195     {
196       return Engines::EngineComponent::_nil();
197     }
198   new_params.resource_params.resList = listOfResources;
199
200   Engines::EngineComponent_var compo = _LoadComponent(new_params,
201                                                       componentName);
202
203   return compo._retn();
204 }
205
206 //=============================================================================
207 /*! \brief Find an already existing and registered component instance or load a new
208  *         component instance on a container defined by its parameters.
209  *
210  *  \param params         container parameters like type or name...
211  *  \param componentName  the name of component class
212  *  \return a CORBA reference of the component instance, or _nil if problem
213  */
214 //=============================================================================
215
216 Engines::EngineComponent_ptr
217 SALOME_LifeCycleCORBA::
218 FindOrLoad_Component(const Engines::ContainerParameters& params,
219                      const char *componentName)
220 {
221   // --- Check if Component Name is known in ModuleCatalog
222
223   if (! isKnownComponentClass(componentName))
224     return Engines::EngineComponent::_nil();
225
226   Engines::ContainerParameters new_params(params);
227   new_params.resource_params.componentList.length(1);
228   new_params.resource_params.componentList[0] = componentName;
229   new_params.resource_params.can_run_containers = true;
230
231   Engines::ResourceList_var listOfResources;
232   try
233     {
234       listOfResources = _ResManager->GetFittingResources(new_params.resource_params);
235     }
236   catch( const SALOME::SALOME_Exception& ex )
237     {
238       return Engines::EngineComponent::_nil();
239     }
240
241   Engines::EngineComponent_var compo = _FindComponent(new_params,
242                                                       componentName,
243                                                       listOfResources);
244
245   if(CORBA::is_nil(compo))
246   {
247     new_params.resource_params.resList = listOfResources;
248     compo = _LoadComponent(new_params,
249                            componentName);
250   }
251
252   return compo._retn();
253 }
254
255 //=============================================================================
256 /*! \brief Find an already existing and registered component instance or load a new
257  *         component instance on a container defined by name
258  *
259  *  \param containerName  the name of container, under one of the forms
260  *           - 1 aContainer (local container)
261  *           - 2 machine/aContainer (container on hostname = machine)
262  *  \param componentName  the name of component class
263  *  \return a CORBA reference of the component instance, or _nil if problem
264  */
265 //=============================================================================
266
267 Engines::EngineComponent_ptr
268 SALOME_LifeCycleCORBA::FindOrLoad_Component(const char *containerName,
269                                             const char *componentName)
270 {
271   MESSAGE("SALOME_LifeCycleCORBA::FindOrLoad_Component INTERACTIF " << containerName << " " << componentName ) ;
272
273   // --- Check if Component Name is known in ModuleCatalog
274   if (! isKnownComponentClass(componentName))
275     return Engines::EngineComponent::_nil();
276
277   // --- Check if containerName contains machine name (if yes: rg>0)
278   char *stContainer=strdup(containerName);
279   std::string st2Container(stContainer);
280   int rg=st2Container.find("/");
281
282   Engines::ContainerParameters params;
283   preSet(params);
284   if (rg<0)
285   {
286     // containerName doesn't contain "/" => Local container
287     params.container_name = CORBA::string_dup(stContainer);
288   }
289   else
290   {
291     stContainer[rg]='\0';
292     params.container_name = CORBA::string_dup(stContainer+rg+1);
293     params.resource_params.hostname = CORBA::string_dup(stContainer);
294   }
295   params.isMPI = false;
296   SCRUTE(params.container_name);
297   free(stContainer);
298   return FindOrLoad_Component(params, componentName);
299 }
300
301 //=============================================================================
302 /*! \brief Check if the component class is known in module catalog
303  *
304  *  \param componentName  the name of component class
305  *  \return true if found, false otherwise
306  */
307 //=============================================================================
308
309 bool SALOME_LifeCycleCORBA::isKnownComponentClass(const char *componentName)
310 {
311   try
312   {
313     CORBA::Object_var obj = _NS->Resolve("/Kernel/ModulCatalog");
314     SALOME_ModuleCatalog::ModuleCatalog_var Catalog =
315       SALOME_ModuleCatalog::ModuleCatalog::_narrow(obj) ;
316     ASSERT(! CORBA::is_nil(Catalog));
317     SALOME_ModuleCatalog::Acomponent_var compoInfo =
318       Catalog->GetComponent(componentName);
319     if (CORBA::is_nil (compoInfo))
320     {
321       MESSAGE("Catalog Error: Component not found in the catalog " << componentName);
322       return false;
323     }
324     else return true;
325   }
326   catch (ServiceUnreachable&)
327   {
328     INFOS("Caught exception: Naming Service Unreachable");
329   }
330   catch (...)
331   {
332     INFOS("Caught unknown exception.");
333   }
334   return false;
335 }
336
337 //=============================================================================
338 /*! \brief Initialisation of a given Engines::ResourceParameters with default values.
339  */
340 //=============================================================================
341
342 void
343 SALOME_LifeCycleCORBA::preSet(Engines::ResourceParameters& params)
344 {
345   params.name = "";
346   params.hostname = "";
347   params.OS = "";
348   params.nb_proc = 0;
349   params.mem_mb = 0;
350   params.cpu_clock = 0;
351   params.nb_node = 0;
352   params.nb_proc_per_node = 0;
353   params.policy = "";
354   params.can_launch_batch_jobs = false;
355   params.can_run_containers = false;
356 }
357
358 //=============================================================================
359 /*! \brief Initialisation of a given Engines::ContainerParameters with default values.
360  */
361 //=============================================================================
362
363 void SALOME_LifeCycleCORBA::preSet( Engines::ContainerParameters& params)
364 {
365   params.container_name = "";
366   params.mode = "";
367   params.workingdir = "";
368   params.nb_proc = 0;
369   params.isMPI = false;
370   params.parallelLib = "";
371   SALOME_LifeCycleCORBA::preSet(params.resource_params);
372 }
373
374 //=============================================================================
375 /*!
376  *  \return a number of processors not 0, only for MPI containers
377  */
378 //=============================================================================
379
380 int SALOME_LifeCycleCORBA::NbProc(const Engines::ContainerParameters& params)
381 {
382   if( !params.isMPI )
383     return 0;
384   else if( params.nb_proc <= 0 )
385     return 1;
386   else
387     return params.nb_proc;
388 }
389
390 //=============================================================================
391 /*! \brief Get the container manager
392  *
393  *  \return the container Manager
394  */
395 //=============================================================================
396
397 Engines::ContainerManager_ptr SALOME_LifeCycleCORBA::getContainerManager()
398 {
399  Engines::ContainerManager_var contManager =
400    Engines::ContainerManager::_duplicate(_ContManager);
401  return contManager._retn();
402 }
403
404 //=============================================================================
405 /*! \brief Get the resources manager
406  *
407  *  \return the container Manager
408  */
409 //=============================================================================
410
411 Engines::ResourcesManager_ptr SALOME_LifeCycleCORBA::getResourcesManager()
412 {
413  Engines::ResourcesManager_var resManager =
414    Engines::ResourcesManager::_duplicate(_ResManager);
415  return resManager._retn();
416 }
417
418 //=============================================================================
419 /*! \brief shutdown all the SALOME servers except SALOME_Session_Server and omniNames
420  */
421 //=============================================================================
422
423 void SALOME_LifeCycleCORBA::shutdownServers(bool shutdownLauncher)
424 {
425   // get each Container from NamingService => shutdown it
426   // (the order is inverse to the order of servers initialization)
427
428   SALOME::Session_var session = SALOME::Session::_nil();
429   CORBA::Long pid = 0;
430   CORBA::Object_var objS = _NS->Resolve("/Kernel/Session");
431   if (!CORBA::is_nil(objS))
432   {
433     session = SALOME::Session::_narrow(objS);
434     if (!CORBA::is_nil(session))
435     {
436       pid = session->getPID();
437       session->Shutdown();
438     }
439   }
440
441   std::string hostname = Kernel_Utils::GetHostname();
442
443   // 1) ConnectionManager
444   try
445     {
446       CORBA::Object_var objCnM=_NS->Resolve("/ConnectionManager");
447       Engines::ConnectionManager_var connMan=Engines::ConnectionManager::_narrow(objCnM);
448       if ( !CORBA::is_nil(connMan) && ( pid != connMan->getPID() ) )
449         connMan->ShutdownWithExit();
450     }
451   catch(const CORBA::Exception& e)
452     {
453        // ignore and continue
454     }
455
456   timespec ts_req;
457   ts_req.tv_nsec=100000000;
458   ts_req.tv_sec=0;
459
460 //Wait some time so that ConnectionManager be completely shutdown
461 #ifndef WIN32
462   nanosleep(&ts_req,0);
463 #endif
464
465   // 2) SALOMEDS
466   try
467     {
468       CORBA::Object_var objSDS = _NS->Resolve("/Study");
469       SALOMEDS::Study_var study = SALOMEDS::Study::_narrow(objSDS) ;
470       if ( !CORBA::is_nil(study) && ( pid != study->getPID() ) )
471         study->Shutdown();
472     }
473   catch(const CORBA::Exception& e)
474     {
475        // ignore and continue
476     }
477
478 //Wait some time so that study be completely shutdown
479 #ifndef WIN32
480   nanosleep(&ts_req,0);
481 #endif
482
483   // 3) ModuleCatalog
484   try
485     {
486       CORBA::Object_var objMC=_NS->Resolve("/Kernel/ModulCatalog");
487       SALOME_ModuleCatalog::ModuleCatalog_var catalog = SALOME_ModuleCatalog::ModuleCatalog::_narrow(objMC);
488       if ( !CORBA::is_nil(catalog) && ( pid != catalog->getPID() ) )
489         catalog->shutdown();
490     }
491   catch(const CORBA::Exception& e)
492     {
493        // ignore and continue
494     }
495
496 //Wait some time so that ModulCatalog be completely shutdown
497 #ifndef WIN32
498   nanosleep(&ts_req,0);
499 #endif
500   // 4 ) Remote ScopeServer (the DataServer is hosted by SalomeLauncher shutdown right after)
501   try
502     {
503       CORBA::Object_var objDSM(_NS->Resolve(SALOMESDS::DataServerManager::NAME_IN_NS));
504       SALOME::DataServerManager_var dsm(SALOME::DataServerManager::_narrow(objDSM));
505       if ( !CORBA::is_nil(dsm) )
506         dsm->shutdownScopes();
507     }
508   catch(const CORBA::Exception& e)
509     {
510        // ignore and continue
511     }
512
513   // 5) SalomeLauncher
514   try
515     {
516       if(shutdownLauncher){
517         CORBA::Object_var objSL = _NS->Resolve("/SalomeLauncher");
518         Engines::SalomeLauncher_var launcher = Engines::SalomeLauncher::_narrow(objSL);
519         if (!CORBA::is_nil(launcher) && (pid != launcher->getPID()))
520           launcher->Shutdown();
521       }
522     }
523   catch(const CORBA::Exception& e)
524     {
525        // ignore and continue
526     }
527
528 //Wait some time so that launcher be completely shutdown
529 #ifndef WIN32
530   nanosleep(&ts_req,0);
531 #endif
532
533   // 6) Registry
534   try
535     {
536       CORBA::Object_var objR = _NS->Resolve("/Registry");
537       Registry::Components_var registry = Registry::Components::_narrow(objR);
538       if ( !CORBA::is_nil(registry) && ( pid != registry->getPID() ) )
539           registry->Shutdown();
540       _NS->Destroy_Name("/Registry");
541     }
542   catch(const CORBA::Exception& e)
543     {
544        // ignore and continue
545     }
546
547   // 7) Logger
548   int argc = 0;
549   char *xargv = (char*)"";
550   char **argv = &xargv;
551   CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);
552
553   CORBA::Object_var objLog = CORBA::Object::_nil();
554   CosNaming::NamingContext_var inc;
555   CORBA::Object_var theObj = CORBA::Object::_nil();
556   std::string stdname = "Logger";
557   CosNaming::Name name;
558   name.length(1);
559   name[0].id = CORBA::string_dup(stdname.c_str());
560   try
561   {
562     if(!CORBA::is_nil(orb))
563       theObj = orb->resolve_initial_references("NameService");
564     if (!CORBA::is_nil(theObj))
565       inc = CosNaming::NamingContext::_narrow(theObj);
566   }
567   catch(...)
568   {
569   }
570   if(!CORBA::is_nil(inc))
571   {
572     try
573     {
574       objLog = inc->resolve(name);
575       SALOME_Logger::Logger_var logger = SALOME_Logger::Logger::_narrow(objLog);
576       if ( !CORBA::is_nil(logger) )
577         logger->shutdown();
578     }
579     catch(...)
580     {
581     }
582   }
583 }
584
585 //=============================================================================
586 /*! \brief shutdown  omniNames
587  */
588 //=============================================================================
589
590 void SALOME_LifeCycleCORBA::killOmniNames()
591 {
592   std::string portNumber (::getenv ("NSPORT") );
593   std::string python_exe;
594
595   python_exe = std::string("python3");
596
597   if ( !portNumber.empty() )
598   {
599     std::string cmd;
600
601     cmd  = std::string("from salome_utils import killOmniNames; ");
602     cmd += std::string("killOmniNames(") + portNumber + "); ";
603     cmd  = python_exe + std::string(" -c \"") + cmd +"\"";
604     MESSAGE(cmd);
605     system( cmd.c_str() );
606
607     cmd  = std::string("from killSalomeWithPort import cleanApplication; ");
608     cmd += std::string("cleanApplication(") + portNumber + "); ";
609     cmd  = python_exe + std::string(" -c \"") + cmd +"\"";
610     MESSAGE(cmd);
611     system( cmd.c_str() );
612   }
613
614   // shutdown portmanager
615   if ( !portNumber.empty() )
616   {
617     std::string cmd;
618
619     cmd  = std::string("from PortManager import releasePort; ");
620     cmd += std::string("releasePort(") + portNumber + "); ";
621     cmd  = python_exe + std::string(" -c \"") + cmd +"\"";
622     MESSAGE(cmd);
623     system( cmd.c_str() );
624   }
625 }
626
627 //=============================================================================
628 /*! \brief Find an already existing and registered component instance.
629  *
630  * - build a list of machines on which an instance of the component is running,
631  * - find the best machine among the list
632  *
633  *  \param params         machine parameters like type or name...
634  *  \param componentName  the name of component class
635  *  \param listOfMachines list of machine address
636  *  \return a CORBA reference of the component instance, or _nil if not found
637  */
638 //=============================================================================
639
640 Engines::EngineComponent_ptr
641 SALOME_LifeCycleCORBA::
642 _FindComponent(const Engines::ContainerParameters& params,
643                const char *componentName,
644                const Engines::ResourceList& listOfResources)
645 {
646   // --- build the list of machines on which the component is already running
647   const char *containerName = params.container_name;
648   int nbproc = NbProc(params);
649
650   Engines::ResourceList_var resourcesOK = new Engines::ResourceList;
651
652   unsigned int lghtOfresourcesOK = 0;
653   resourcesOK->length(listOfResources.length());
654
655   for(unsigned int i=0; i < listOfResources.length(); i++)
656   {
657     const char * currentResource = listOfResources[i];
658     Engines::ResourceDefinition_var resource_definition =
659         _ResManager->GetResourceDefinition(currentResource);
660     CORBA::Object_var obj = _NS->ResolveComponent(resource_definition->hostname.in(),
661                                                   containerName,
662                                                   componentName,
663                                                   nbproc);
664     if (!CORBA::is_nil(obj))
665       resourcesOK[lghtOfresourcesOK++] = CORBA::string_dup(currentResource);
666   }
667
668   // --- find the best machine among the list
669   if(lghtOfresourcesOK != 0)
670   {
671     resourcesOK->length(lghtOfresourcesOK);
672     CORBA::String_var bestResource = _ResManager->FindFirst(resourcesOK);
673     Engines::ResourceDefinition_var resource_definition =
674         _ResManager->GetResourceDefinition(bestResource);
675     CORBA::Object_var obj = _NS->ResolveComponent(resource_definition->hostname.in(),
676                                                   containerName,
677                                                   componentName,
678                                                   nbproc);
679     return Engines::EngineComponent::_narrow(obj);
680   }
681   else
682     return Engines::EngineComponent::_nil();
683 }
684
685 //=============================================================================
686 /*! \brief  Load a component instance.
687  *
688  *  - Finds a container in the list of machine or start one.
689  *  - Try to load the component library in the container,
690  *  - then create an instance of the component.
691  *
692  *  \param params         machine parameters like type or name...
693  *  \param componentName  the name of component class
694  *  \return a CORBA reference of the component instance, or _nil if problem
695  */
696 //=============================================================================
697
698 Engines::EngineComponent_ptr
699 SALOME_LifeCycleCORBA::
700 _LoadComponent(const Engines::ContainerParameters& params,
701               const char *componentName)
702 {
703   MESSAGE("_LoadComponent, required " << params.container_name <<
704           " " << componentName << " " << NbProc(params));
705
706   Engines::ContainerParameters local_params(params);
707   local_params.mode = CORBA::string_dup("findorstart");
708   Engines::Container_var cont = _ContManager->GiveContainer(local_params);
709   if (CORBA::is_nil(cont)) return Engines::EngineComponent::_nil();
710
711   char* reason;
712   bool isLoadable = cont->load_component_Library(componentName,reason);
713   if (!isLoadable)
714     {
715       //std::cerr << reason << std::endl;
716       CORBA::string_free(reason);
717       return Engines::EngineComponent::_nil();
718     }
719   CORBA::string_free(reason);
720
721   Engines::EngineComponent_var myInstance =
722     cont->create_component_instance(componentName);
723   return myInstance._retn();
724 }
725
726 //=============================================================================
727 /*! \brief  Load a parallel component instance.
728  *
729  *  \param params         machine parameters like type or name...
730  *  \param componentName  the name of component class
731  *  \return a CORBA reference of the parallel component instance, or _nil if problem
732  */
733 //=============================================================================
734 Engines::EngineComponent_ptr
735 SALOME_LifeCycleCORBA::Load_ParallelComponent(const Engines::ContainerParameters& params,
736                                               const char *componentName)
737 {
738   MESSAGE("Entering LoadParallelComponent");
739
740 /*MESSAGE("Parameters : ");
741   MESSAGE("Container name : " << params.container_name);
742   MESSAGE("Number of component nodes : " << params.nb_component_nodes);
743   MESSAGE("Component Name : " << componentName);*/
744
745   Engines::ContainerParameters parms(params);
746   parms.resource_params.componentList.length(1);
747   parms.resource_params.componentList[0] = componentName;
748   parms.mode = CORBA::string_dup("findorstart");
749
750   MESSAGE("Starting Parallel Container");
751   Engines::Container_var cont = _ContManager->GiveContainer(parms);
752   if (CORBA::is_nil(cont)) {
753     INFOS("FindOrStartParallelContainer() returns a NULL container !");
754     return Engines::EngineComponent::_nil();
755   }
756
757   MESSAGE("Loading component library");
758   char* reason;
759   bool isLoadable = cont->load_component_Library(componentName,reason);
760   if (!isLoadable) {
761     INFOS(componentName <<" library is not loadable !");
762     //std::cerr << reason << std::endl;
763     CORBA::string_free(reason);
764     return Engines::EngineComponent::_nil();
765   }
766   CORBA::string_free(reason);
767
768   MESSAGE("Creating component instance");
769   // @PARALLEL@ permits to identify that the component requested
770   // is a parallel component.
771   std::string name = std::string(componentName);
772   Engines::EngineComponent_var myInstance = cont->create_component_instance(name.c_str());
773   if (CORBA::is_nil(myInstance))
774     INFOS("create_component_instance returns a NULL component !");
775   return myInstance._retn();
776 }
777
778 /*! \brief copy a file from a source host to a destination host
779  * \param hostSrc the source host
780  * \param fileSrc the file to copy from the source host to the destination host
781  * \param hostDest the destination host
782  * \param fileDest the destination file
783  */
784 void SALOME_LifeCycleCORBA::copyFile(const char* hostSrc, const char* fileSrc, const char* hostDest, const char* fileDest)
785 {
786   if(strcmp(hostDest,"localhost") == 0)
787     {
788       //if localhost use a shortcut
789       SALOME_FileTransferCORBA transfer(hostSrc,fileSrc);
790       transfer.getLocalFile(fileDest);
791       return;
792     }
793
794   Engines::ContainerManager_var contManager = getContainerManager();
795
796   Engines::ContainerParameters params;
797   preSet(params);
798
799   params.resource_params.hostname = hostDest;
800   params.mode = CORBA::string_dup("findorstart");
801   Engines::Container_var containerDest = contManager->GiveContainer(params);
802
803   params.resource_params.hostname = hostSrc;
804   Engines::Container_var containerSrc = contManager->GiveContainer(params);
805
806   containerDest->copyFile(containerSrc,fileSrc,fileDest);
807 }
808
809 /*! \brief get the naming service used by the life cycle
810  *
811  *  \return the naming service
812  */
813 SALOME_NamingService * SALOME_LifeCycleCORBA::namingService()
814 {
815   return _NS;
816 }
817
818 /*! \brief get the orb used by the life cycle
819  *
820  *  \return the orb
821  */
822 CORBA::ORB_ptr SALOME_LifeCycleCORBA::orb()
823 {
824   return _NS->orb();
825 }