Salome HOME
0023299: [CEA] Finalize multi-study removal
[modules/kernel.git] / src / Container / Container_i.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME Container : implementation of container and engine for Kernel
24 //  File   : Container_i.cxx
25 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA 
26 //  Module : SALOME
27 //  $Header$
28 //#define private public
29 //
30 #include <string.h>
31 #include <stdio.h>
32 #include <time.h>
33 #include <sys/types.h>
34 #ifndef WIN32
35 #include <sys/time.h>
36 #include <dlfcn.h>
37 #include <unistd.h>
38 #include <sys/wait.h>
39 #else
40 #include <signal.h>
41 #include <process.h>
42 #include <direct.h>
43 int SIGUSR1 = 1000;
44 #endif
45
46 #include "utilities.h"
47 #include <SALOMEconfig.h>
48 #include CORBA_SERVER_HEADER(SALOME_Component)
49 #include CORBA_SERVER_HEADER(SALOME_Exception)
50 #include <pthread.h>  // must be before Python.h !
51 #include "SALOME_Container_i.hxx"
52 #include "SALOME_Component_i.hxx"
53 #include "SALOME_FileRef_i.hxx"
54 #include "SALOME_FileTransfer_i.hxx"
55 #include "Salome_file_i.hxx"
56 #include "SALOME_NamingService.hxx"
57 #include "Basics_Utils.hxx"
58
59 #ifdef _XOPEN_SOURCE
60 #undef _XOPEN_SOURCE
61 #endif
62
63 #include <Python.h>
64 #include "Container_init_python.hxx"
65
66 bool _Sleeping = false ;
67
68 // // Needed by multi-threaded Python --- Supervision
69 int _ArgC ;
70 char ** _ArgV ;
71
72 extern "C" {void ActSigIntHandler() ; }
73 #ifndef WIN32
74 extern "C" {void SigIntHandler(int, siginfo_t *, void *) ; }
75 #else
76 extern "C" {void SigIntHandler( int ) ; }
77 #endif
78
79 #ifndef WIN32
80 #define LIB "lib"
81 #define ENGINESO "Engine.so"
82 #else
83 #define LIB ""
84 #define ENGINESO "Engine.dll"
85 #endif
86
87 #ifdef WIN32
88 #define SEP ';'
89 #define SLASH '\\'
90 #else
91 #define SEP ':'
92 #define SLASH '/'
93 #endif
94
95 std::map<std::string, int> Engines_Container_i::_cntInstances_map;
96 std::map<std::string, void *> Engines_Container_i::_library_map;
97 std::map<std::string, void *> Engines_Container_i::_toRemove_map;
98 omni_mutex Engines_Container_i::_numInstanceMutex ;
99
100 static PyObject* _pyCont;
101
102 int checkifexecutable(const std::string&);
103 int findpathof(const std::string& path, std::string&, const std::string&);
104
105 /*! \class Engines_Container_i
106  *  \brief C++ implementation of Engines::Container interface
107  *
108  */
109
110
111 //=============================================================================
112 /*! 
113 *  Default constructor, not for use
114 */
115 //=============================================================================
116
117 Engines_Container_i::Engines_Container_i () :
118 _numInstance(0),_id(0),_NS(0)
119 {
120 }
121
122 //=============================================================================
123 /*! 
124 *  Construtor to use
125 */
126 //=============================================================================
127
128 Engines_Container_i::Engines_Container_i (CORBA::ORB_ptr orb, 
129                                           PortableServer::POA_ptr poa,
130                                           char *containerName ,
131                                           int argc , char* argv[],
132                                           bool activAndRegist,
133                                           bool isServantAloneInProcess
134                                           ) :
135   _numInstance(0),_isServantAloneInProcess(isServantAloneInProcess),_id(0),_NS(0)
136 {
137   _pid = (long)getpid();
138
139   if(activAndRegist)
140     ActSigIntHandler() ;
141
142   _argc = argc ;
143   _argv = argv ;
144
145   std::string hostname = Kernel_Utils::GetHostname();
146 #ifndef WIN32
147   MESSAGE(hostname << " " << getpid() << 
148     " Engines_Container_i starting argc " <<
149     _argc << " Thread " << pthread_self() ) ;
150 #else
151   MESSAGE(hostname << " " << _getpid() << 
152     " Engines_Container_i starting argc " << _argc<< " Thread " << pthread_self().p ) ;
153 #endif
154
155   int i = 0 ;
156   while ( _argv[ i ] )
157   {
158     MESSAGE("           argv" << i << " " << _argv[ i ]) ;
159     i++ ;
160   }
161
162   if ( argc < 2 )
163   {
164     INFOS("SALOME_Container usage : SALOME_Container ServerName");
165     ASSERT(0) ;
166   }
167   SCRUTE(argv[1]);
168   _isSupervContainer = false;
169
170   _orb = CORBA::ORB::_duplicate(orb) ;
171   _poa = PortableServer::POA::_duplicate(poa) ;
172
173   // Pour les containers paralleles: il ne faut pas enregistrer et activer
174   // le container generique, mais le container specialise
175
176   if(activAndRegist)
177   {
178     _id = _poa->activate_object(this);
179     _NS = new SALOME_NamingService();
180     _NS->init_orb( _orb ) ;
181     CORBA::Object_var obj=_poa->id_to_reference(*_id);
182     Engines::Container_var pCont 
183       = Engines::Container::_narrow(obj);
184     _remove_ref();
185
186     _containerName = _NS->BuildContainerNameForNS(containerName,
187       hostname.c_str());
188     SCRUTE(_containerName);
189     _NS->Register(pCont, _containerName.c_str());
190     MESSAGE("Engines_Container_i::Engines_Container_i : Container name "
191       << _containerName);
192
193     // Python: 
194     // import SALOME_Container
195     // pycont = SALOME_Container.SALOME_Container_i(containerIORStr)
196
197     CORBA::String_var sior =  _orb->object_to_string(pCont);
198     std::string myCommand="pyCont = SALOME_Container.SALOME_Container_i('";
199     myCommand += _containerName + "','";
200     myCommand += sior;
201     myCommand += "')\n";
202     SCRUTE(myCommand);
203
204     //[RNV]: Comment the PyEval_AcquireLock() and PyEval_ReleaseLock() because this 
205     //approach leads to the deadlock of the main thread of the application on Windows platform
206     //in case if cppContainer runs in the standalone mode. The problem with the PyThreadState 
207     //described by ABN seems not reproduced, to be checked carefully later...
208     PyGILState_STATE gstate = PyGILState_Ensure();
209     
210     //// [ABN]: using the PyGILState* API here is unstable. omniORB logic is invoked
211     //// by the Python code executed below, and in some (random) cases, the Python code
212     //// execution ends with a PyThreadState which was not the one we have here.
213     //// (TODO: understand why ...)
214     //// To be on the safe side we get and load the thread state ourselves:    
215     //PyEval_AcquireLock();  // get GIL
216     //PyThreadState * mainThreadState = PyThreadState_Get();
217     //PyThreadState_Swap(mainThreadState);
218
219 #ifdef WIN32
220     // mpv: this is temporary solution: there is a unregular crash if not
221     //Sleep(2000);
222     //
223     // first element is the path to Registry.dll, but it's wrong
224     PyRun_SimpleString("import sys\n");
225     PyRun_SimpleString("sys.path = sys.path[1:]\n");
226 #endif
227     PyRun_SimpleString("import SALOME_Container\n");
228     PyRun_SimpleString((char*)myCommand.c_str());
229     PyObject *mainmod = PyImport_AddModule("__main__");
230     PyObject *globals = PyModule_GetDict(mainmod);
231     _pyCont = PyDict_GetItemString(globals, "pyCont");
232
233     //PyThreadState_Swap(NULL);
234     //PyEval_ReleaseLock();
235     PyGILState_Release(gstate);
236
237     fileTransfer_i* aFileTransfer = new fileTransfer_i();
238     CORBA::Object_var obref=aFileTransfer->_this();
239     _fileTransfer = Engines::fileTransfer::_narrow(obref);
240     aFileTransfer->_remove_ref();
241   }
242 }
243
244 //=============================================================================
245 /*! 
246 *  Destructor
247 */
248 //=============================================================================
249
250 Engines_Container_i::~Engines_Container_i()
251 {
252   MESSAGE("Container_i::~Container_i()");
253   if(_id)
254     delete _id;
255   if(_NS)
256     delete _NS;
257   for(std::map<std::string,Engines::PyNode_var>::iterator it=_dftPyNode.begin();it!=_dftPyNode.end();it++)
258   {
259     Engines::PyNode_var tmpVar((*it).second);
260     if(!CORBA::is_nil(tmpVar))
261       tmpVar->UnRegister();
262   }
263   for(std::map<std::string,Engines::PyScriptNode_var>::iterator it=_dftPyScriptNode.begin();it!=_dftPyScriptNode.end();it++)
264   {
265     Engines::PyScriptNode_var tmpVar((*it).second);
266     if(!CORBA::is_nil(tmpVar))
267       tmpVar->UnRegister();
268   }
269 }
270
271 //=============================================================================
272 //! Get container name
273 /*! 
274 *  CORBA attribute: Container name (see constructor)
275 */
276 //=============================================================================
277
278 char* Engines_Container_i::name()
279 {
280   return CORBA::string_dup(_containerName.c_str()) ;
281 }
282
283 //=============================================================================
284 //! Get container working directory
285 /*! 
286 *  CORBA attribute: Container working directory 
287 */
288 //=============================================================================
289
290 char* Engines_Container_i::workingdir()
291 {
292   char wd[256];
293   getcwd (wd,256);
294   return CORBA::string_dup(wd) ;
295 }
296
297 //=============================================================================
298 //! Get container log file name
299 /*! 
300 *  CORBA attribute: Container log file name
301 */
302 //=============================================================================
303
304 char* Engines_Container_i::logfilename()
305 {
306   return CORBA::string_dup(_logfilename.c_str()) ;
307 }
308
309 //! Set container log file name
310 void Engines_Container_i::logfilename(const char* name)
311 {
312   _logfilename=name;
313 }
314
315 //=============================================================================
316 //! Get container host name
317 /*! 
318 *  CORBA method: Get the hostName of the Container (without domain extensions)
319 */
320 //=============================================================================
321
322 char* Engines_Container_i::getHostName()
323 {
324   std::string s = Kernel_Utils::GetHostname();
325   //  MESSAGE("Engines_Container_i::getHostName " << s);
326   return CORBA::string_dup(s.c_str()) ;
327 }
328
329 //=============================================================================
330 //! Get container PID
331 /*! 
332 *  CORBA method: Get the PID (process identification) of the Container
333 */
334 //=============================================================================
335
336 CORBA::Long Engines_Container_i::getPID()
337 {
338   return (CORBA::Long)getpid();
339 }
340
341 //=============================================================================
342 //! Ping the servant to check it is still alive
343 /*! 
344 *  CORBA method: check if servant is still alive
345 */
346 //=============================================================================
347 void Engines_Container_i::ping()
348 {
349   MESSAGE("Engines_Container_i::ping() pid "<< getpid());
350 }
351
352 //=============================================================================
353 //! Shutdown the container
354 /*! 
355 *  CORBA method, oneway: Server shutdown. 
356 *  - Container name removed from naming service,
357 *  - servant deactivation,
358 *  - orb shutdown if no other servants in the process 
359 */
360 //=============================================================================
361 void Engines_Container_i::Shutdown()
362 {
363   MESSAGE("Engines_Container_i::Shutdown()");
364
365   // Clear registered temporary files
366   clearTemporaryFiles();
367
368   /* For each component contained in this container
369   * tell it to self-destroy
370   */
371   std::map<std::string, Engines::EngineComponent_var>::iterator itm;
372   for (itm = _listInstances_map.begin(); itm != _listInstances_map.end(); itm++)
373   {
374     try
375     {
376       itm->second->destroy();
377     }
378     catch(const CORBA::Exception& e)
379     {
380       // ignore this entry and continue
381     }
382     catch(...)
383     {
384       // ignore this entry and continue
385     }
386   }
387   _listInstances_map.clear();
388
389   _NS->Destroy_FullDirectory(_containerName.c_str());
390   _NS->Destroy_Name(_containerName.c_str());
391   if(_isServantAloneInProcess)
392   {
393     MESSAGE("Effective Shutdown of container Begins...");
394     if(!CORBA::is_nil(_orb))
395       _orb->shutdown(0);
396   }
397 }
398
399 //=============================================================================
400 //! load a component implementation
401 /*! 
402 *  CORBA method
403 *  \param componentName         component name
404 *  \param reason                explains error when load fails
405 *  \return true if dlopen successfull or already done, false otherwise
406 */
407 //=============================================================================
408 bool
409 Engines_Container_i::load_component_Library(const char* componentName, CORBA::String_out reason)
410 {
411
412   //=================================================================
413   // --- C++ implementation section 
414   //=================================================================
415   std::string retso;
416   if(load_component_CppImplementation(componentName,retso))
417   {
418     reason=CORBA::string_dup("");
419     return true;
420   }
421   else if(retso != "ImplementationNotFound")
422   {
423     reason=CORBA::string_dup(retso.c_str());
424     return false;
425   }
426
427   retso="Component ";
428   retso+=componentName;
429   retso+=": Can't find C++ implementation ";
430   retso+=std::string(LIB) + componentName + ENGINESO;
431
432   //=================================================================
433   // --- Python implementation section 
434   //=================================================================
435   std::string retpy;
436   if(load_component_PythonImplementation(componentName,retpy))
437   {
438     reason=CORBA::string_dup("");
439     return true;
440   }
441   else if(retpy != "ImplementationNotFound")
442   {
443     reason=CORBA::string_dup(retpy.c_str());
444     return false;
445   }
446   
447   retpy="Component ";
448   retpy+=componentName;
449   retpy+=": Can't find python implementation ";
450   retpy+=componentName;
451   retpy+="(.py)";
452
453   //=================================================================
454   // -- Executable implementation section
455   //=================================================================
456   std::string retex;
457   if(load_component_ExecutableImplementation(componentName,retex))
458   {
459     reason=CORBA::string_dup("");
460     return true;
461   }
462   else if(retex != "ImplementationNotFound")
463   {
464     reason=CORBA::string_dup(retex.c_str());
465     return false;
466   }
467
468   retex="Component ";
469   retex+=componentName;
470   retex+=": Can't find executable implementation ";
471   retex+=componentName;
472   retex+=".exe";
473
474   std::string ret="Component implementation not found: ";
475   ret += componentName ;
476   ret += '\n' ;
477   ret += retso+ '\n' ;
478   ret += retpy+ '\n' ;
479   ret += retex+ '\n' ;
480
481   std::cerr << ret << std::endl;
482   reason=CORBA::string_dup(ret.c_str());
483
484   return false;
485 }
486
487 //=============================================================================
488 //! try to load a C++ component implementation
489 /*! 
490 *  C++ method: 
491 *  \param componentName      the name of the component (COMPONENT, for example)
492 *  \param reason             explains error when load fails
493 *  \return true if loading is successfull or already done, false otherwise
494 */
495 //=============================================================================
496 bool
497 Engines_Container_i::load_component_CppImplementation(const char* componentName, std::string& reason)
498 {
499   std::string aCompName(componentName);
500   std::string impl_name = std::string(LIB) + aCompName + ENGINESO;
501   SCRUTE(impl_name);
502
503   _numInstanceMutex.lock(); // lock to be alone
504   // (see decInstanceCnt, finalize_removal))
505   if (_toRemove_map.count(impl_name) != 0) _toRemove_map.erase(impl_name);
506   if (_library_map.count(impl_name) != 0)
507   {
508     MESSAGE("Library " << impl_name << " already loaded");
509     _numInstanceMutex.unlock();
510     reason="";
511     return true;
512   }
513   _numInstanceMutex.unlock();
514
515 #ifndef WIN32
516   void* handle;
517   handle = dlopen( impl_name.c_str() , RTLD_NOW ) ;
518   if ( !handle )
519   {
520     //not loadable. Try to find the lib file in LD_LIBRARY_PATH
521     std::string path;
522     char* p=getenv("LD_LIBRARY_PATH");
523     if(p)path=p;
524     path=path+SEP+"/usr/lib"+SEP+"/lib";
525
526     std::string pth;
527     if(findpathof(path, pth, impl_name))
528     {
529       //found but not loadable
530       reason="Component ";
531       reason+=aCompName;
532       reason+=": C++ implementation found ";
533       reason+=pth;
534       reason+=" but it is not loadable. Error:\n";
535       reason+=dlerror();
536       std::cerr << reason << std::endl;
537       return false;
538     }
539     else
540     {
541       //not found
542       //continue with other implementation
543       reason="ImplementationNotFound";
544       return false;
545     }
546   }
547 #else
548   HINSTANCE handle;
549   handle = LoadLibrary( impl_name.c_str() );
550   if ( !handle )
551   {
552     reason="ImplementationNotFound";
553   }
554 #endif
555
556   if ( handle )
557   {
558     _numInstanceMutex.lock();
559     _library_map[impl_name] = handle;
560     _numInstanceMutex.unlock();
561     reason="";
562     return true;
563   }
564
565   return false;
566
567 }
568 //=============================================================================
569 //! try to load a Python component implementation
570 /*! 
571 *  C++ method: 
572 *  \param componentName         name of the component
573 *  \param reason                explains error when load fails
574 *  \return true if loading is successfull or already done, false otherwise
575 */
576 //=============================================================================
577 bool
578 Engines_Container_i::load_component_PythonImplementation(const char* componentName, std::string& reason)
579 {
580   std::string aCompName(componentName);
581
582   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
583   if (_library_map.count(aCompName) != 0)
584   {
585     _numInstanceMutex.unlock() ;
586     reason="";
587     return true; // Python Component, already imported
588   }
589   _numInstanceMutex.unlock() ;
590
591   PyGILState_STATE gstate = PyGILState_Ensure();
592   PyObject *result = PyObject_CallMethod(_pyCont,
593                                          (char*)"import_component",
594                                          (char*)"s",componentName);
595
596   reason=PyString_AsString(result);
597   Py_XDECREF(result);
598   SCRUTE(reason);
599   PyGILState_Release(gstate);
600
601   if (reason=="")
602   {
603     //Python component has been loaded (import componentName)
604     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
605     _library_map[aCompName] = (void *)_pyCont; // any non O value OK
606     _numInstanceMutex.unlock() ;
607     MESSAGE("import Python: "<< aCompName <<" OK");
608     return true;
609   }
610   else if(reason=="ImplementationNotFound")
611   {
612     //Python implementation has not been found. Continue with other implementation
613     reason="ImplementationNotFound";
614   }
615   else
616   {
617     //Python implementation has been found but loading has failed
618     std::cerr << reason << std::endl;
619   }
620   return false;
621
622 }
623 //=============================================================================
624 //! try to load a Executable component implementation
625 /*! 
626 *  C++ method: 
627 *  \param componentName        name of the component
628 *  \param reason               explains error when load fails
629 *  \return true if loading is successfull or already done, false otherwise
630 */
631 //=============================================================================
632 bool
633 Engines_Container_i::load_component_ExecutableImplementation(const char* componentName, std::string& reason)
634 {
635   std::string aCompName(componentName);
636   std::string executable=aCompName+".exe";
637
638   std::string path;
639   std::string pth;
640
641   char* p=getenv("PATH");
642   if(p)path=p;
643
644   if (findpathof(path, pth, executable))
645   {
646     if(checkifexecutable(pth))
647     {
648       _numInstanceMutex.lock() ; // lock to be alone (stl container write)
649       _library_map[executable] = (void *)1; // any non O value OK
650       _numInstanceMutex.unlock() ;
651       MESSAGE("import executable: "<< pth <<" OK");
652       reason="";
653       return true;
654     }
655     reason="Component ";
656     reason+=aCompName;
657     reason+=": implementation found ";
658     reason+=pth;
659     reason+=" but it is not executable";
660     std::cerr << reason << std::endl;
661   }
662   else
663   {
664     reason="ImplementationNotFound";
665   }
666   return false;
667 }
668
669 //=============================================================================
670 //! Create a new component instance
671 /*! 
672 *  CORBA method: Creates a new servant instance of a component.
673 *  The servant registers itself to naming service and Registry.
674 *  \param genericRegisterName  Name of the component instance to register
675 *                         in Registry & Name Service (without _inst_n suffix)
676 *  \return a loaded component
677 */
678 //=============================================================================
679 Engines::EngineComponent_ptr
680 Engines_Container_i::create_component_instance(const char*genericRegisterName)
681 {
682   Engines::FieldsDict_var env = new Engines::FieldsDict;
683   char* reason;
684   Engines::EngineComponent_ptr compo =
685     create_component_instance_env(genericRegisterName, env, reason);
686   CORBA::string_free(reason);
687   return compo;
688 }
689
690 //=============================================================================
691 //! Create a new component instance with environment variables specified
692 /*! 
693 *  CORBA method: Creates a new servant instance of a component.
694 *  The servant registers itself to naming service and Registry.
695 *  \param genericRegisterName  Name of the component instance to register
696 *                         in Registry & Name Service (without _inst_n suffix)
697 *  \param env             dict of env variables
698 *  \param reason          explains error when create_component_instance_env fails
699 *  \return a loaded component
700 */
701 //=============================================================================
702 Engines::EngineComponent_ptr
703 Engines_Container_i::create_component_instance_env(const char*genericRegisterName,
704                                                    const Engines::FieldsDict& env,
705                                                    CORBA::String_out reason)
706 {
707   std::string error;
708   if (_library_map.count(genericRegisterName) != 0)
709   {
710     // It's a Python component
711     Engines::EngineComponent_ptr compo = createPythonInstance(genericRegisterName, error);
712     reason=CORBA::string_dup(error.c_str());
713     return compo;
714   }
715
716   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
717   if (_library_map.count(impl_name) != 0)
718   {
719     // It's a C++ component
720     void* handle = _library_map[impl_name];
721     Engines::EngineComponent_ptr compo = createInstance(genericRegisterName, handle, error);
722     reason=CORBA::string_dup(error.c_str());
723     return compo;
724   }
725
726   impl_name = std::string(genericRegisterName) + ".exe";
727   if (_library_map.count(impl_name) != 0)
728   {
729     //It's an executable component
730     Engines::EngineComponent_ptr compo = createExecutableInstance(genericRegisterName, env, error);
731     reason=CORBA::string_dup(error.c_str());
732     return compo;
733   }
734
735   error="load_component_Library has probably not been called for component: ";
736   error += genericRegisterName;
737   INFOS(error);
738   reason=CORBA::string_dup(error.c_str());
739   return Engines::EngineComponent::_nil() ;
740 }
741
742 //=============================================================================
743 //! Create a new component instance (Executable implementation)
744 /*! 
745 *  \param CompName               Name of the component instance
746 *  \param env                    dict of env variables
747 *  \param reason                 explains error when creation fails
748 *  \return a loaded component
749 *
750 *   This component is implemented in an executable with name genericRegisterName.exe
751 *   It must register itself in Naming Service. The container waits some time (10 s max)
752 *   it's registration.
753 */
754 //=============================================================================
755 Engines::EngineComponent_ptr
756 Engines_Container_i::createExecutableInstance(std::string CompName,
757                                               const Engines::FieldsDict& env,
758                                               std::string& reason)
759 {
760   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
761
762   _numInstanceMutex.lock() ; // lock on the instance number
763   _numInstance++ ;
764   int numInstance = _numInstance ;
765   _numInstanceMutex.unlock() ;
766
767   char aNumI[12];
768   sprintf( aNumI , "%d" , numInstance ) ;
769   std::string instanceName = CompName + "_inst_" + aNumI ;
770   std::string component_registerName = _containerName + "/" + instanceName;
771
772   //check if an entry exist in naming service
773   CORBA::Object_var nsobj = _NS->Resolve(component_registerName.c_str());
774   if ( !CORBA::is_nil(nsobj) )
775   {
776     // unregister the registered component
777     _NS->Destroy_Name(component_registerName.c_str());
778     //kill or shutdown it ???
779   }
780
781   // first arg container ior string
782   // second arg container name
783   // third arg instance name
784
785   Engines::Container_var pCont= _this();
786   CORBA::String_var sior =  _orb->object_to_string(pCont);
787
788   std::string command;
789   command="mkdir -p ";
790   command+=instanceName;
791   command+=";cd ";
792   command+=instanceName;
793   command+=";";
794   command+=CompName ;
795   command+=".exe";
796   command+=" ";
797   command+= sior; // container ior string
798   command+=" ";
799   command+=_containerName; //container name
800   command+=" ";
801   command+=instanceName; //instance name
802   command+=" &";
803   MESSAGE("SALOME_Container::create_component_instance command=" << command);
804
805 #ifndef WIN32
806   // use fork/execl instead of system to get finer control on env variables
807   int status;
808   pid_t pid = fork();
809   if(pid == 0) // child
810   {
811     for (CORBA::ULong i=0; i < env.length(); i++)
812     {
813       if (env[i].value.type()->kind() == CORBA::tk_string)
814       {
815         const char* value;
816         env[i].value >>= value;
817         std::string s(env[i].key);
818         s+='=';
819         s+=value;
820         putenv(strdup(s.c_str()));
821       }
822     }
823
824     execl("/bin/sh", "sh", "-c", command.c_str() , (char *)0);
825     status=-1;
826   }
827   else if(pid < 0)       // failed to fork
828   {
829     status=-1;
830   }
831   else            //parent
832   {
833     pid_t tpid;
834     do
835     {
836       tpid = wait(&status);
837     } while (tpid != pid);
838   }
839 #else
840   // launch component with a system call
841   int status=system(command.c_str());
842 #endif
843
844   if (status == -1)
845   {
846     reason="SALOME_Container::create_component_instance system failed (system command status -1)";
847     MESSAGE(reason);
848     return Engines::EngineComponent::_nil();
849   }
850 #ifndef WIN32
851   else if (WEXITSTATUS(status) == 217)
852   {
853     reason="SALOME_Container::create_component_instance system failed (system command status 217)";
854     MESSAGE(reason);
855     return Engines::EngineComponent::_nil();
856   }
857 #endif
858   else
859   {
860     int count=20;
861     if (getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT") != 0)
862     {
863       std::string new_count_str = getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT");
864       int new_count;
865       std::istringstream ss(new_count_str);
866       if (!(ss >> new_count))
867       {
868         INFOS("[Container] TIMEOUT_TO_WAIT_EXE_COMPONENT should be an int");
869       }
870       else
871         count = new_count;
872     }
873     INFOS("[Container] waiting " << count << " second steps exe component ");
874     CORBA::Object_var obj = CORBA::Object::_nil() ;
875     while ( CORBA::is_nil(obj) && count )
876     {
877 #ifndef WIN32
878       sleep( 1 ) ;
879 #else
880       Sleep(1000);
881 #endif
882       count-- ;
883       MESSAGE( count << ". Waiting for component " << CompName);
884       obj = _NS->Resolve(component_registerName.c_str());
885     }
886
887     if(CORBA::is_nil(obj))
888     {
889       reason="SALOME_Container::create_component_instance failed";
890       MESSAGE(reason);
891       return Engines::EngineComponent::_nil();
892     }
893     else
894     {
895       MESSAGE("SALOME_Container::create_component_instance successful");
896       iobject = Engines::EngineComponent::_narrow(obj);
897       _listInstances_map[instanceName] = iobject;
898       return iobject._retn();
899     }
900   }
901 }
902
903
904 //=============================================================================
905 //! Create a new component instance (Python implementation)
906 /*! 
907 *  \param CompName               Name of the component instance
908 *  \param reason                 explains error when creation fails
909 *  \return a loaded component
910 */
911 //=============================================================================
912 Engines::EngineComponent_ptr
913 Engines_Container_i::createPythonInstance(std::string CompName,
914                                           std::string& reason)
915 {
916   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
917
918   _numInstanceMutex.lock() ; // lock on the instance number
919   _numInstance++ ;
920   int numInstance = _numInstance ;
921   _numInstanceMutex.unlock() ;
922
923   char aNumI[12];
924   sprintf( aNumI , "%d" , numInstance ) ;
925   std::string instanceName = CompName + "_inst_" + aNumI ;
926   std::string component_registerName = _containerName + "/" + instanceName;
927
928   PyGILState_STATE gstate = PyGILState_Ensure();
929   PyObject *result = PyObject_CallMethod(_pyCont,
930                                          (char*)"create_component_instance",
931                                          (char*)"ssl",
932                                          CompName.c_str(),
933                                          instanceName.c_str());
934   const char *ior;
935   const char *error;
936   PyArg_ParseTuple(result,"ss", &ior, &error);
937   std::string iors = ior;
938   reason=error;
939   Py_DECREF(result);
940   PyGILState_Release(gstate);
941
942   if( iors!="" )
943   {
944     CORBA::Object_var obj = _orb->string_to_object(iors.c_str());
945     iobject = Engines::EngineComponent::_narrow( obj ) ;
946     _listInstances_map[instanceName] = iobject;
947   }
948   return iobject._retn();
949 }
950
951 char *
952 Engines_Container_i::create_python_service_instance(const char * CompName,
953                                                     CORBA::String_out reason)
954 {
955   CORBA::Object_var object = CORBA::Object::_nil();
956
957   _numInstanceMutex.lock() ; // lock on the instance number
958   _numInstance++ ;
959   int numInstance = _numInstance ;
960   _numInstanceMutex.unlock() ;
961
962   char aNumI[12];
963   sprintf( aNumI , "%d" , numInstance ) ;
964   std::string instanceName = std::string(CompName) + "_inst_" + aNumI ;
965   std::string component_registerName = _containerName + "/" + instanceName;
966
967   PyGILState_STATE gstate = PyGILState_Ensure();
968   PyObject *result = PyObject_CallMethod(_pyCont,
969                                          (char*)"create_component_instance",
970                                          (char*)"ssl",
971                                          CompName,
972                                          instanceName.c_str(),
973                                          0);
974   const char *ior;
975   const char *error;
976   PyArg_ParseTuple(result,"ss", &ior, &error);
977   reason = CORBA::string_dup(error);
978   char * _ior = CORBA::string_dup(ior);
979   Py_DECREF(result);
980   PyGILState_Release(gstate);
981
982   return _ior;
983 }
984
985
986 //=============================================================================
987 //! Create a new component instance (C++ implementation)
988 /*! 
989 *  C++ method: create a servant instance of a component.
990 *  \param genericRegisterName    Name of the component instance to register
991 *                                in Registry & Name Service,
992 *                                (without _inst_n suffix, like "COMPONENT")
993 *  \param handle                 loaded library handle
994 *  \param reason                 explains error when creation fails
995 *  \return a loaded component
996
997 *  example with names:
998 *    - aGenRegisterName = COMPONENT (= first argument)
999 *    - _containerName = /Containers/cli76ce/FactoryServer
1000 *    - factoryName = COMPONENTEngine_factory
1001 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1002 *    - instanceName = COMPONENT_inst_1
1003 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1004 */
1005 //=============================================================================
1006 Engines::EngineComponent_ptr
1007 Engines_Container_i::createInstance(std::string genericRegisterName,
1008                                     void *handle,
1009                                     std::string& reason)
1010 {
1011   // --- find the factory
1012
1013   std::string aGenRegisterName = genericRegisterName;
1014   std::string factory_name = aGenRegisterName + std::string("Engine_factory");
1015   SCRUTE(factory_name) ;
1016
1017   typedef PortableServer::ObjectId* (*FACTORY_FUNCTION) (CORBA::ORB_ptr,
1018                                                          PortableServer::POA_ptr, 
1019                                                          PortableServer::ObjectId *, 
1020                                                          const char *, 
1021                                                          const char *) ;
1022
1023 #ifndef WIN32
1024   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)dlsym( handle, factory_name.c_str() );
1025 #else
1026   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)GetProcAddress( (HINSTANCE)handle, factory_name.c_str() );
1027 #endif
1028
1029   if ( !Component_factory )
1030   {
1031     MESSAGE( "Can't resolve symbol: " + factory_name );
1032 #ifndef WIN32
1033     reason=dlerror();
1034     MESSAGE(reason);
1035 #endif
1036     return Engines::EngineComponent::_nil() ;
1037   }
1038
1039   // --- create instance
1040
1041   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1042
1043   try
1044   {
1045     _numInstanceMutex.lock() ; // lock on the instance number
1046     _numInstance++ ;
1047     int numInstance = _numInstance ;
1048     _numInstanceMutex.unlock() ;
1049
1050     char aNumI[12];
1051     sprintf( aNumI , "%d" , numInstance ) ;
1052     std::string instanceName = aGenRegisterName + "_inst_" + aNumI ;
1053     std::string component_registerName =
1054       _containerName + "/" + instanceName;
1055
1056     // --- Instanciate required CORBA object
1057
1058     PortableServer::ObjectId *id ; //not owner, do not delete (nore use var)
1059     id = (Component_factory) ( _orb, _poa, _id, instanceName.c_str(),
1060                                                 aGenRegisterName.c_str() ) ;
1061     if (id == NULL)
1062     {
1063       reason="Can't get ObjectId from factory";
1064       INFOS(reason);
1065       return iobject._retn();
1066     }
1067
1068     // --- get reference from id
1069
1070     CORBA::Object_var obj = _poa->id_to_reference(*id);
1071     iobject = Engines::EngineComponent::_narrow( obj ) ;
1072
1073     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1074     _listInstances_map[instanceName] = iobject;
1075     _cntInstances_map[aGenRegisterName] += 1;
1076     _numInstanceMutex.unlock() ;
1077     SCRUTE(aGenRegisterName);
1078     SCRUTE(_cntInstances_map[aGenRegisterName]);
1079
1080     // --- register the engine under the name
1081     //     containerName(.dir)/instanceName(.object)
1082
1083     _NS->Register( iobject , component_registerName.c_str() ) ;
1084     MESSAGE( component_registerName.c_str() << " bound" ) ;
1085   }
1086   catch (...)
1087   {
1088     reason="Container_i::createInstance exception catched";
1089     INFOS(reason) ;
1090   }
1091   return iobject._retn();
1092 }
1093
1094 //=============================================================================
1095 //! Find an existing (in the container) component instance
1096 /*!
1097 *  CORBA method: Finds a servant instance of a component
1098 *  \param registeredName  Name of the component in Registry or Name Service,
1099 *                         without instance suffix number
1100 *  \return the first found instance
1101 */
1102 //=============================================================================
1103 Engines::EngineComponent_ptr
1104 Engines_Container_i::find_component_instance( const char* registeredName)
1105 {
1106   Engines::EngineComponent_var anEngine = Engines::EngineComponent::_nil();
1107   std::map<std::string,Engines::EngineComponent_var>::iterator itm =_listInstances_map.begin();
1108   while (itm != _listInstances_map.end())
1109   {
1110     std::string instance = (*itm).first;
1111     SCRUTE(instance);
1112     if (instance.find(registeredName) == 0)
1113     {
1114       anEngine = (*itm).second;
1115       return anEngine._retn();
1116     }
1117     itm++;
1118   }
1119   return anEngine._retn();
1120 }
1121
1122 //=============================================================================
1123 //! Remove the component instance from container
1124 /*!
1125 *  CORBA method: Stops the component servant, and deletes all related objects
1126 *  \param component_i     Component to be removed
1127 */
1128 //=============================================================================
1129
1130 void Engines_Container_i::remove_impl(Engines::EngineComponent_ptr component_i)
1131 {
1132   ASSERT(! CORBA::is_nil(component_i));
1133   std::string instanceName = component_i->instanceName() ;
1134   MESSAGE("unload component " << instanceName);
1135   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1136   _listInstances_map.erase(instanceName);
1137   _numInstanceMutex.unlock() ;
1138   component_i->destroy() ;
1139   _NS->Destroy_Name(instanceName.c_str());
1140 }
1141
1142 //=============================================================================
1143 //! Unload component libraries from the container
1144 /*!
1145 *  CORBA method: Discharges unused libraries from the container.
1146 */
1147 //=============================================================================
1148 void Engines_Container_i::finalize_removal()
1149 {
1150   MESSAGE("finalize unload : dlclose");
1151   _numInstanceMutex.lock(); // lock to be alone
1152   // (see decInstanceCnt, load_component_Library)
1153   std::map<std::string, void *>::iterator ith;
1154   for (ith = _toRemove_map.begin(); ith != _toRemove_map.end(); ith++)
1155   {
1156     void *handle = (*ith).second;
1157     std::string impl_name= (*ith).first;
1158     if (handle)
1159     {
1160       SCRUTE(handle);
1161       SCRUTE(impl_name);
1162       //        dlclose(handle);                // SALOME unstable after ...
1163       //        _library_map.erase(impl_name);
1164     }
1165   }
1166   _toRemove_map.clear();
1167   _numInstanceMutex.unlock();
1168 }
1169
1170 //=============================================================================
1171 //! Decrement component instance reference count
1172 /*!
1173 *
1174 */
1175 //=============================================================================
1176 void Engines_Container_i::decInstanceCnt(std::string genericRegisterName)
1177 {
1178   if(_cntInstances_map.count(genericRegisterName)==0)
1179     return;
1180   std::string aGenRegisterName =genericRegisterName;
1181   MESSAGE("Engines_Container_i::decInstanceCnt " << aGenRegisterName);
1182   ASSERT(_cntInstances_map[aGenRegisterName] > 0);
1183   _numInstanceMutex.lock(); // lock to be alone
1184   // (see finalize_removal, load_component_Library)
1185   _cntInstances_map[aGenRegisterName] -= 1;
1186   SCRUTE(_cntInstances_map[aGenRegisterName]);
1187   if (_cntInstances_map[aGenRegisterName] == 0)
1188   {
1189     std::string impl_name =
1190       Engines_Component_i::GetDynLibraryName(aGenRegisterName.c_str());
1191     SCRUTE(impl_name);
1192     void* handle = _library_map[impl_name];
1193     ASSERT(handle);
1194     _toRemove_map[impl_name] = handle;
1195   }
1196   _numInstanceMutex.unlock();
1197 }
1198
1199 //=============================================================================
1200 //! Find or create a new component instance
1201 /*!
1202 *  CORBA method: find or create an instance of the component (servant),
1203 *  load a new component class (dynamic library) if required,
1204 *
1205 *  ---- FOR COMPATIBILITY WITH 2.2 ----
1206 *
1207 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1208 *
1209 *  The servant registers itself to naming service and Registry.
1210 *  \param genericRegisterName  Name of the component to register
1211 *                              in Registry & Name Service
1212 *  \param componentName       Name of the constructed library of the component
1213 *  \return a loaded component
1214 */
1215 //=============================================================================
1216
1217 Engines::EngineComponent_ptr
1218 Engines_Container_i::load_impl( const char* genericRegisterName,
1219                                 const char* componentName )
1220 {
1221   char* reason;
1222   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
1223   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1224   if (load_component_Library(genericRegisterName,reason))
1225     iobject = find_or_create_instance(genericRegisterName, impl_name);
1226   CORBA::string_free(reason);
1227   return iobject._retn();
1228 }
1229
1230 //=============================================================================
1231 //! Finds an already existing component instance or create a new instance
1232 /*!
1233 *  C++ method: Finds an already existing servant instance of a component, or
1234 *              create an instance.
1235 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1236 *  \param genericRegisterName    Name of the component instance to register
1237 *                                in Registry & Name Service,
1238 *                                (without _inst_n suffix, like "COMPONENT")
1239 *  \param componentLibraryName   like "libCOMPONENTEngine.so"
1240 *  \return a loaded component
1241 *
1242 *  example with names:
1243 *    - aGenRegisterName = COMPONENT (= first argument)
1244 *    - impl_name = libCOMPONENTEngine.so (= second argument)
1245 *    - _containerName = /Containers/cli76ce/FactoryServer
1246 *    - factoryName = COMPONENTEngine_factory
1247 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1248 *    - instanceName = COMPONENT_inst_1
1249 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1250 */
1251 //=============================================================================
1252
1253 Engines::EngineComponent_ptr
1254 Engines_Container_i::find_or_create_instance(std::string genericRegisterName,
1255                                              std::string componentLibraryName)
1256 {
1257   std::string aGenRegisterName = genericRegisterName;
1258   std::string impl_name = componentLibraryName;
1259   if (_library_map.count(impl_name) == 0)
1260   {
1261     INFOS("shared library " << impl_name <<" must be loaded before creating instance");
1262     return Engines::EngineComponent::_nil() ;
1263   }
1264   else
1265   {
1266     // --- find a registered instance in naming service, or create
1267
1268     void* handle = _library_map[impl_name];
1269     std::string component_registerBase =
1270       _containerName + "/" + aGenRegisterName;
1271     Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1272     std::string reason;
1273     try
1274     {
1275       CORBA::Object_var obj =
1276         _NS->ResolveFirst( component_registerBase.c_str());
1277       if ( CORBA::is_nil( obj ) )
1278       {
1279         iobject = createInstance(genericRegisterName,
1280                                  handle,
1281                                  reason);
1282       }
1283       else
1284       {
1285         iobject = Engines::EngineComponent::_narrow( obj ) ;
1286       }
1287     }
1288     catch (...)
1289     {
1290       INFOS( "Container_i::load_impl catched" ) ;
1291     }
1292     return iobject._retn();
1293   }
1294 }
1295
1296 //=============================================================================
1297 //! Indicate if container is a python one
1298 /*! 
1299 *  Retrieves only with container naming convention if it is a python container
1300 */
1301 //=============================================================================
1302 bool Engines_Container_i::isPythonContainer(const char* ContainerName)
1303 {
1304   bool ret=false;
1305   int len=strlen(ContainerName);
1306   if(len>=2)
1307     if(strcmp(ContainerName+len-2,"Py")==0)
1308       ret=true;
1309   return ret;
1310 }
1311
1312 //=============================================================================
1313 //! Kill the container
1314 /*!
1315 *  CORBA method: Kill the container process with exit(0).
1316 *  To remove :  never returns !
1317 */
1318 //=============================================================================
1319 bool Engines_Container_i::Kill_impl()
1320 {
1321   MESSAGE("Engines_Container_i::Kill() pid "<< getpid() << " containerName "
1322     << _containerName.c_str() << " machineName "
1323     << Kernel_Utils::GetHostname().c_str());
1324   INFOS("===============================================================");
1325   INFOS("= REMOVE calls to Kill_impl in C++ container                  =");
1326   INFOS("===============================================================");
1327   //_exit( 0 ) ;
1328   ASSERT(0);
1329   return false;
1330 }
1331
1332 //=============================================================================
1333 /*! 
1334 *  
1335 */
1336 //=============================================================================
1337 void ActSigIntHandler()
1338 {
1339 #ifndef WIN32
1340   struct sigaction SigIntAct ;
1341   SigIntAct.sa_sigaction = &SigIntHandler ;
1342   sigemptyset(&SigIntAct.sa_mask);
1343   SigIntAct.sa_flags = SA_SIGINFO ;
1344 #endif
1345
1346   // DEBUG 03.02.2005 : the first parameter of sigaction is not a mask of signals
1347   // (SIGINT | SIGUSR1) :
1348   // it must be only one signal ===> one call for SIGINT 
1349   // and an other one for SIGUSR1
1350
1351 #ifndef WIN32
1352   if ( sigaction( SIGINT , &SigIntAct, NULL ) ) 
1353   {
1354     perror("SALOME_Container main ") ;
1355     exit(0) ;
1356   }
1357   if ( sigaction( SIGUSR1 , &SigIntAct, NULL ) )
1358   {
1359     perror("SALOME_Container main ") ;
1360     exit(0) ;
1361   }
1362   if ( sigaction( SIGUSR2 , &SigIntAct, NULL ) )
1363   {
1364     perror("SALOME_Container main ") ;
1365     exit(0) ;
1366   }
1367
1368   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1369   //             use of streams (and so on) should never be used because :
1370   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1371   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1372   //             may have a "Dead-Lock" ===HangUp
1373   //==INFOS is commented
1374   //  INFOS(pthread_self() << "SigIntHandler activated") ;
1375
1376 #else  
1377   signal( SIGINT, SigIntHandler );
1378 // legacy code required to supervisor. Commented in order to avoid problems on Windows 
1379 //  signal( SIGUSR1, SigIntHandler );
1380 #endif
1381
1382 }
1383
1384 void SetCpuUsed() ;
1385 void CallCancelThread() ;
1386
1387 #ifndef WIN32
1388 void SigIntHandler(int what ,
1389                    siginfo_t * siginfo ,
1390                    void * toto ) 
1391 {
1392   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1393   //             use of streams (and so on) should never be used because :
1394   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1395   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1396   //             may have a "Dead-Lock" ===HangUp
1397   //==MESSAGE is commented
1398   //  MESSAGE(pthread_self() << "SigIntHandler what     " << what << std::endl
1399   //          << "              si_signo " << siginfo->si_signo << std::endl
1400   //          << "              si_code  " << siginfo->si_code << std::endl
1401   //          << "              si_pid   " << siginfo->si_pid) ;
1402
1403   if ( _Sleeping )
1404   {
1405     _Sleeping = false ;
1406     //     MESSAGE("SigIntHandler END sleeping.") ;
1407     return ;
1408   }
1409   else
1410   {
1411     ActSigIntHandler() ;
1412     if ( siginfo->si_signo == SIGUSR1 )
1413     {
1414       SetCpuUsed() ;
1415     }
1416     else if ( siginfo->si_signo == SIGUSR2 )
1417     {
1418       CallCancelThread() ;
1419     }
1420     else 
1421     {
1422       _Sleeping = true ;
1423       //      MESSAGE("SigIntHandler BEGIN sleeping.") ;
1424       int count = 0 ;
1425       while( _Sleeping )
1426       {
1427         sleep( 1 ) ;
1428         count += 1 ;
1429       }
1430       //      MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1431     }
1432     return ;
1433   }
1434 }
1435 #else // Case WIN32
1436 void SigIntHandler( int what )
1437 {
1438 #ifndef WIN32
1439   MESSAGE( pthread_self() << "SigIntHandler what     " << what << std::endl );
1440 #else
1441   MESSAGE( "SigIntHandler what     " << what << std::endl );
1442 #endif
1443   if ( _Sleeping )
1444   {
1445     _Sleeping = false ;
1446     MESSAGE("SigIntHandler END sleeping.") ;
1447     return ;
1448   }
1449   else
1450   {
1451     ActSigIntHandler() ;
1452     if ( what == SIGUSR1 )
1453     {
1454       SetCpuUsed() ;
1455     }
1456     else
1457     {
1458       _Sleeping = true ;
1459       MESSAGE("SigIntHandler BEGIN sleeping.") ;
1460       int count = 0 ;
1461       while( _Sleeping ) 
1462       {
1463         Sleep( 1000 ) ;
1464         count += 1 ;
1465       }
1466       MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1467     }
1468     return ;
1469   }
1470 }
1471 #endif
1472
1473 //=============================================================================
1474 //! Get or create a file reference object associated to a local file (to transfer it)
1475 /*!
1476 *  CORBA method: get or create a fileRef object associated to a local file
1477 *  (a file on the computer on which runs the container server), which stores
1478 *  a list of (machine, localFileName) corresponding to copies already done.
1479 *
1480 *  \param  origFileName absolute path for a local file to copy on other
1481 *          computers
1482 *  \return a fileRef object associated to the file.
1483 */
1484 //=============================================================================
1485 Engines::fileRef_ptr
1486 Engines_Container_i::createFileRef(const char* origFileName)
1487 {
1488   std::string origName(origFileName);
1489   Engines::fileRef_var theFileRef = Engines::fileRef::_nil();
1490
1491   if (origName[0] != '/')
1492   {
1493     INFOS("path of file to copy must be an absolute path begining with '/'");
1494     return Engines::fileRef::_nil();
1495   }
1496
1497   if (CORBA::is_nil(_fileRef_map[origName]))
1498   {
1499     CORBA::Object_var obj=_poa->id_to_reference(*_id);
1500     Engines::Container_var pCont = Engines::Container::_narrow(obj);
1501     fileRef_i* aFileRef = new fileRef_i(pCont, origFileName);
1502     theFileRef = Engines::fileRef::_narrow(aFileRef->_this());
1503     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1504     _fileRef_map[origName] = theFileRef;
1505     _numInstanceMutex.unlock() ;
1506   }
1507
1508   theFileRef =  Engines::fileRef::_duplicate(_fileRef_map[origName]);
1509   ASSERT(! CORBA::is_nil(theFileRef));
1510   return theFileRef._retn();
1511 }
1512
1513 //=============================================================================
1514 //! Get a fileTransfer reference
1515 /*!
1516 *  CORBA method:
1517 *  \return a reference to the fileTransfer object
1518 */
1519 //=============================================================================
1520 Engines::fileTransfer_ptr
1521 Engines_Container_i::getFileTransfer()
1522 {
1523   Engines::fileTransfer_var aFileTransfer
1524     = Engines::fileTransfer::_duplicate(_fileTransfer);
1525   return aFileTransfer._retn();
1526 }
1527
1528 //=============================================================================
1529 //! Create a Salome file
1530 //=============================================================================
1531 Engines::Salome_file_ptr
1532 Engines_Container_i::createSalome_file(const char* origFileName)
1533 {
1534   std::string origName(origFileName);
1535   if (CORBA::is_nil(_Salome_file_map[origName]))
1536   {
1537     Salome_file_i* aSalome_file = new Salome_file_i();
1538     aSalome_file->setContainer(Engines::Container::_duplicate(this->_this()));
1539     try
1540     {
1541       aSalome_file->setLocalFile(origFileName);
1542       aSalome_file->recvFiles();
1543     }
1544     catch (const SALOME::SALOME_Exception& e)
1545     {
1546       return Engines::Salome_file::_nil();
1547     }
1548
1549     Engines::Salome_file_var theSalome_file = Engines::Salome_file::_nil();
1550     theSalome_file = Engines::Salome_file::_narrow(aSalome_file->_this());
1551     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1552     _Salome_file_map[origName] = theSalome_file;
1553     _numInstanceMutex.unlock() ;
1554   }
1555
1556   Engines::Salome_file_ptr theSalome_file =
1557     Engines::Salome_file::_duplicate(_Salome_file_map[origName]);
1558   ASSERT(!CORBA::is_nil(theSalome_file));
1559   return theSalome_file;
1560 }
1561
1562 //=============================================================================
1563 /*! \brief copy a file from a remote host (container) to the local host
1564  * \param container the remote container
1565  * \param remoteFile the file to copy locally from the remote host into localFile
1566  * \param localFile the local file
1567  */
1568 //=============================================================================
1569 void Engines_Container_i::copyFile(Engines::Container_ptr container, const char* remoteFile, const char* localFile)
1570 {
1571   Engines::fileTransfer_var fileTransfer = container->getFileTransfer();
1572
1573   FILE* fp;
1574   if ((fp = fopen(localFile,"wb")) == NULL)
1575   {
1576     INFOS("file " << localFile << " cannot be open for writing");
1577     return;
1578   }
1579
1580   CORBA::Long fileId = fileTransfer->open(remoteFile);
1581   if (fileId > 0)
1582   {
1583     Engines::fileBlock* aBlock;
1584     int toFollow = 1;
1585     int ctr=0;
1586     while (toFollow)
1587     {
1588       ctr++;
1589       //SCRUTE(ctr);
1590       aBlock = fileTransfer->getBlock(fileId);
1591       toFollow = aBlock->length();
1592       //SCRUTE(toFollow);
1593       CORBA::Octet *buf = aBlock->get_buffer();
1594       fwrite(buf, sizeof(CORBA::Octet), toFollow, fp);
1595       delete aBlock;
1596     }
1597     fclose(fp);
1598     MESSAGE("end of transfer");
1599     fileTransfer->close(fileId);
1600   }
1601   else
1602   {
1603     INFOS("open reference file for copy impossible");
1604   }
1605 }
1606
1607 //=============================================================================
1608 /*! \brief create a PyNode object to execute remote python code
1609  * \param nodeName the name of the node
1610  * \param code the python code to load
1611  * \return the PyNode
1612  */
1613 //=============================================================================
1614 Engines::PyNode_ptr Engines_Container_i::createPyNode(const char* nodeName, const char* code)
1615 {
1616   Engines::PyNode_var node= Engines::PyNode::_nil();
1617
1618   PyGILState_STATE gstate = PyGILState_Ensure();
1619   PyObject *res = PyObject_CallMethod(_pyCont,
1620     (char*)"create_pynode",
1621     (char*)"ss",
1622     nodeName,
1623     code);
1624   if(res==NULL)
1625   {
1626     //internal error
1627     PyErr_Print();
1628     PyGILState_Release(gstate);
1629     SALOME::ExceptionStruct es;
1630     es.type = SALOME::INTERNAL_ERROR;
1631     es.text = "can not create a python node";
1632     throw SALOME::SALOME_Exception(es);
1633   }
1634   long ierr=PyInt_AsLong(PyTuple_GetItem(res,0));
1635   PyObject* result=PyTuple_GetItem(res,1);
1636   std::string astr=PyString_AsString(result);
1637   Py_DECREF(res);
1638   PyGILState_Release(gstate);
1639   if(ierr==0)
1640   {
1641     Utils_Locker lck(&_mutexForDftPy);
1642     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
1643     node=Engines::PyNode::_narrow(obj);
1644     std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
1645     if(it==_dftPyNode.end())
1646     {
1647       _dftPyNode[nodeName]=node;
1648     }
1649     else
1650     {
1651       Engines::PyNode_var oldNode((*it).second);
1652       if(!CORBA::is_nil(oldNode))
1653         oldNode->UnRegister();
1654       (*it).second=node;
1655     }
1656     if(!CORBA::is_nil(node))
1657       node->Register();
1658     return node._retn();
1659   }
1660   else
1661   {
1662     SALOME::ExceptionStruct es;
1663     es.type = SALOME::INTERNAL_ERROR;
1664     es.text = astr.c_str();
1665     throw SALOME::SALOME_Exception(es);
1666   }
1667 }
1668
1669 //=============================================================================
1670 /*! \brief Retrieves the last created PyNode instance with createPyNode.
1671  *
1672  */
1673 //=============================================================================
1674 Engines::PyNode_ptr  Engines_Container_i::getDefaultPyNode(const char *nodeName)
1675 {
1676   Utils_Locker lck(&_mutexForDftPy);
1677   std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
1678   if(it==_dftPyNode.end())
1679     return Engines::PyNode::_nil();
1680   else
1681   {
1682     Engines::PyNode_var tmpVar((*it).second);
1683     if(!CORBA::is_nil(tmpVar))
1684       return Engines::PyNode::_duplicate(tmpVar);
1685     else
1686       return Engines::PyNode::_nil();
1687   }
1688 }
1689
1690 //=============================================================================
1691 /*! \brief create a PyScriptNode object to execute remote python code
1692  * \param nodeName the name of the node
1693  * \param code the python code to load
1694  * \return the PyScriptNode
1695  */
1696 //=============================================================================
1697 Engines::PyScriptNode_ptr Engines_Container_i::createPyScriptNode(const char* nodeName, const char* code)
1698 {
1699   Engines::PyScriptNode_var node= Engines::PyScriptNode::_nil();
1700
1701   PyGILState_STATE gstate = PyGILState_Ensure();
1702   PyObject *res = PyObject_CallMethod(_pyCont,
1703     (char*)"create_pyscriptnode",
1704     (char*)"ss",
1705     nodeName,
1706     code);
1707   if(res==NULL)
1708   {
1709     //internal error
1710     PyErr_Print();
1711     PyGILState_Release(gstate);
1712     SALOME::ExceptionStruct es;
1713     es.type = SALOME::INTERNAL_ERROR;
1714     es.text = "can not create a python node";
1715     throw SALOME::SALOME_Exception(es);
1716   }
1717   long ierr=PyInt_AsLong(PyTuple_GetItem(res,0));
1718   PyObject* result=PyTuple_GetItem(res,1);
1719   std::string astr=PyString_AsString(result);
1720   Py_DECREF(res);
1721   PyGILState_Release(gstate);
1722
1723   if(ierr==0)
1724   {
1725     Utils_Locker lck(&_mutexForDftPy);
1726     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
1727     node=Engines::PyScriptNode::_narrow(obj);
1728     std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
1729     if(it==_dftPyScriptNode.end())
1730     {
1731       _dftPyScriptNode[nodeName]=node;
1732     }
1733     else
1734     {
1735       Engines::PyScriptNode_var oldNode((*it).second);
1736       if(!CORBA::is_nil(oldNode))
1737         oldNode->UnRegister();
1738       (*it).second=node;
1739     }
1740     if(!CORBA::is_nil(node))
1741       node->Register();
1742     return node._retn();
1743   }
1744   else
1745   {
1746     SALOME::ExceptionStruct es;
1747     es.type = SALOME::INTERNAL_ERROR;
1748     es.text = astr.c_str();
1749     throw SALOME::SALOME_Exception(es);
1750   }
1751 }
1752
1753 //=============================================================================
1754 /*! \brief Retrieves the last created PyScriptNode instance with createPyScriptNode.
1755  *
1756  */
1757 //=============================================================================
1758 Engines::PyScriptNode_ptr Engines_Container_i::getDefaultPyScriptNode(const char *nodeName)
1759 {
1760   Utils_Locker lck(&_mutexForDftPy);
1761   std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
1762   if(it==_dftPyScriptNode.end())
1763     return Engines::PyScriptNode::_nil();
1764   else
1765   {
1766     Engines::PyScriptNode_var tmpVar((*it).second);
1767     if(!CORBA::is_nil(tmpVar))
1768       return Engines::PyScriptNode::_duplicate(tmpVar);
1769     else
1770       return Engines::PyScriptNode::_nil();
1771   }
1772 }
1773
1774 //=============================================================================
1775 /* int checkifexecutable(const char *filename)
1776 *
1777 * Return non-zero if the name is an executable file, and
1778 * zero if it is not executable, or if it does not exist.
1779 */
1780 //=============================================================================
1781 int checkifexecutable(const std::string& filename)
1782 {
1783   int result;
1784   struct stat statinfo;
1785
1786   result = stat(filename.c_str(), &statinfo);
1787   if (result < 0) return 0;
1788   if (!S_ISREG(statinfo.st_mode)) return 0;
1789
1790 #ifdef WIN32
1791   return 1;
1792 #else
1793   if (statinfo.st_uid == geteuid()) return statinfo.st_mode & S_IXUSR;
1794   if (statinfo.st_gid == getegid()) return statinfo.st_mode & S_IXGRP;
1795   return statinfo.st_mode & S_IXOTH;
1796 #endif
1797 }
1798
1799
1800 //=============================================================================
1801 /*! \brief Find a file by searching in a path
1802  *  \param filename file name to search
1803  *  \param path path to search in
1804  *  \param pth the complete file path if found
1805  *  \return 1 if found 0 if not 
1806 */
1807 //=============================================================================
1808 int findpathof(const std::string& path, std::string& pth, const std::string& filename)
1809 {
1810   if ( path.size() == 0 ) return 0;
1811
1812   std::string::size_type offset = 0;
1813   std::string::size_type pos = 0;
1814   int found = 0;
1815   struct stat statinfo;
1816
1817   while(!found)
1818   {
1819     pos = path.find( SEP, offset );
1820     pth = path.substr( offset, pos - offset );
1821     if ( pth.size() > 0 )
1822     {
1823       if( pth[pth.size()-1] != SLASH ) pth += SLASH;
1824       pth += filename;
1825       int result=stat(pth.c_str(), &statinfo);
1826       if(result == 0) found=1;
1827     }
1828     if (pos == std::string::npos) break;
1829     offset = pos+1;
1830   }
1831   return found;
1832 }
1833
1834 void Engines_Container_i::registerTemporaryFile( const std::string& fileName )
1835 {
1836   _tmp_files.remove( fileName );
1837   _tmp_files.push_back( fileName );
1838 }
1839
1840 void Engines_Container_i::unregisterTemporaryFile( const std::string& fileName )
1841 {
1842   _tmp_files.remove( fileName );
1843 }
1844
1845 void Engines_Container_i::clearTemporaryFiles()
1846 {
1847   std::list<std::string>::const_iterator it;
1848   for ( it = _tmp_files.begin(); it != _tmp_files.end(); ++it ) {
1849 #ifdef WIN32
1850     std::string command = "del /F /P";
1851 #else
1852     std::string command = "rm -rf ";
1853 #endif
1854     command += *it;
1855     system( command.c_str() );
1856   }
1857   _tmp_files.clear();
1858 }