Salome HOME
[EDF29150] : Fix bug at shutdown
[modules/kernel.git] / src / Container / Container_i.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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 #include <memory>
35 #include <vector>
36 #ifndef WIN32
37 #include <sys/time.h>
38 #include <dlfcn.h>
39 #include <unistd.h>
40 #include <sys/wait.h>
41 #include <errno.h>
42 #include <stdlib.h>
43 #else
44 #include <signal.h>
45 #include <process.h>
46 #include <direct.h>
47 int SIGUSR1 = 1000;
48 #endif
49
50 #include "utilities.h"
51 #include <SALOMEconfig.h>
52 #include CORBA_SERVER_HEADER(SALOME_Component)
53 #include CORBA_SERVER_HEADER(SALOME_Exception)
54 #include <pthread.h>  // must be before Python.h !
55 #include "OpUtil.hxx"
56 #include "SALOME_Container_i.hxx"
57 #include "SALOME_Component_i.hxx"
58 #include "SALOME_FileRef_i.hxx"
59 #include "SALOME_FileTransfer_i.hxx"
60 #include "Salome_file_i.hxx"
61 #include "SALOME_NamingService.hxx"
62 #include "SALOME_Fake_NamingService.hxx"
63 #include "SALOME_Embedded_NamingService_Client.hxx"
64 #include "SALOME_Embedded_NamingService.hxx"
65 #include "Basics_Utils.hxx"
66 #include "PythonCppUtils.hxx"
67 #include "Utils_CorbaException.hxx"
68
69 #ifdef _XOPEN_SOURCE
70 #undef _XOPEN_SOURCE
71 #endif
72
73 #include <Python.h>
74 #include <structmember.h>
75 #include "Container_init_python.hxx"
76 #ifdef BOS26455_WITH_BOOST_PYTHON
77 #include <boost/python.hpp>
78 #endif
79
80 bool _Sleeping = false ;
81
82 // // Needed by multi-threaded Python --- Supervision
83 int _ArgC ;
84 char ** _ArgV ;
85
86 extern "C" {void ActSigIntHandler() ; }
87 #ifndef WIN32
88 extern "C" {void SigIntHandler(int, siginfo_t *, void *) ; }
89 #else
90 extern "C" {void SigIntHandler( int ) ; }
91 #endif
92
93 #ifndef WIN32
94 #define LIB "lib"
95 #ifdef __APPLE__
96 #define ENGINESO "Engine.dylib"
97 #else
98 #define ENGINESO "Engine.so"
99 #endif
100 #else
101 #define LIB ""
102 #define ENGINESO "Engine.dll"
103 #endif
104
105 #ifdef WIN32
106 #define SEP ';'
107 #define SLASH '\\'
108 #else
109 #define SEP ':'
110 #define SLASH '/'
111 #endif
112
113 const int Abstract_Engines_Container_i::DFT_TIME_INTERVAL_BTW_MEASURE = 500;
114
115 std::map<std::string, int> Abstract_Engines_Container_i::_cntInstances_map;
116 std::map<std::string, void *> Abstract_Engines_Container_i::_library_map;
117 std::map<std::string, void *> Abstract_Engines_Container_i::_toRemove_map;
118 omni_mutex Abstract_Engines_Container_i::_numInstanceMutex ;
119
120 static PyObject *_pyCont = nullptr;
121
122 int checkifexecutable(const std::string&);
123 int findpathof(const std::string& path, std::string&, const std::string&);
124
125 /*! \class Engines_Container_i
126  *  \brief C++ implementation of Engines::Container interface
127  *
128  */
129
130
131 //=============================================================================
132 /*! 
133 *  Default constructor, not for use
134 */
135 //=============================================================================
136
137 Abstract_Engines_Container_i::Abstract_Engines_Container_i () :
138   _NS(nullptr),_id(nullptr),_numInstance(0)
139 {
140 }
141
142 //=============================================================================
143 /*! 
144 *  Constructor to use
145 */
146 //=============================================================================
147
148 Abstract_Engines_Container_i::Abstract_Engines_Container_i (CORBA::ORB_ptr orb, 
149                                                             PortableServer::POA_ptr poa,
150                                                             char *containerName ,
151                                                             int argc , char* argv[],
152                                                             SALOME_NamingService_Container_Abstract *ns,
153                                                             bool isServantAloneInProcess
154                                                             ) :
155   _NS(nullptr),_id(0),_numInstance(0),_isServantAloneInProcess(isServantAloneInProcess)
156 {
157   _pid = (long)getpid();
158
159   if(ns)
160     ActSigIntHandler() ;
161
162   _argc = argc ;
163   _argv = argv ;
164
165   std::string hostname = Kernel_Utils::GetHostname();
166 #ifndef WIN32
167   INFO_MESSAGE("Starting Container servant instance on Hostname :" << hostname << " with  PID : " << getpid() ) ;
168 #else
169   MESSAGE(hostname << " " << _getpid() << 
170     " Engines_Container_i starting argc " << _argc<< " Thread " << pthread_self().p ) ;
171 #endif
172   _isSupervContainer = false;
173
174   _orb = CORBA::ORB::_duplicate(orb) ;
175   _poa = PortableServer::POA::_duplicate(poa) ;
176
177   // Pour les containers paralleles: il ne faut pas enregistrer et activer
178   // le container generique, mais le container specialise
179
180   {
181     _id = _poa->activate_object(this);
182     // key point : if ns is nullptr : this servant is alone in its process
183     //             if ns is not null : this servant embedded into single process.
184     _NS = ns==nullptr ? new SALOME_NamingService : ns->clone();
185     _NS->init_orb( _orb ) ;
186     CORBA::Object_var obj=_poa->id_to_reference(*_id);
187     Engines::Container_var pCont = Engines::Container::_narrow(obj);
188     _remove_ref();
189
190     _containerName =  SALOME_NamingService_Abstract::BuildContainerNameForNS(containerName, hostname.c_str());
191
192     // Python: 
193     // import SALOME_Container
194     // pycont = SALOME_Container.SALOME_Container_i(containerIORStr)
195
196     CORBA::String_var sior =  _orb->object_to_string(pCont);
197     std::ostringstream myCommand;
198     myCommand << "pyCont = SALOME_Container.SALOME_Container_i('" << _containerName << "','" << sior << "'," <<  DFT_TIME_INTERVAL_BTW_MEASURE << ")\n";
199     INFO_MESSAGE("Python command executed : " << myCommand.str());
200
201     //[RNV]: Comment the PyEval_AcquireLock() and PyEval_ReleaseLock() because this 
202     //approach leads to the deadlock of the main thread of the application on Windows platform
203     //in case if cppContainer runs in the standalone mode. The problem with the PyThreadState 
204     //described by ABN seems not reproduced, to be checked carefully later...
205     {
206       AutoGIL gstate;    
207       //// [ABN]: using the PyGILState* API here is unstable. omniORB logic is invoked
208       //// by the Python code executed below, and in some (random) cases, the Python code
209       //// execution ends with a PyThreadState which was not the one we have here.
210       //// (TODO: understand why ...)
211       //// To be on the safe side we get and load the thread state ourselves:    
212       //PyEval_AcquireLock();  // get GIL
213       //PyThreadState * mainThreadState = PyThreadState_Get();
214       //PyThreadState_Swap(mainThreadState);
215
216 #ifdef WIN32
217       // mpv: this is temporary solution: there is a unregular crash if not
218       //Sleep(2000);
219       //
220       // first element is the path to Registry.dll, but it's wrong
221       PyRun_SimpleString("import sys\n");
222       PyRun_SimpleString("sys.path = sys.path[1:]\n");
223 #endif
224       PyRun_SimpleString("import SALOME_Container\n");
225       PyRun_SimpleString((char*)myCommand.str().c_str());
226       PyObject *mainmod = PyImport_AddModule("__main__");
227       PyObject *globals = PyModule_GetDict(mainmod);
228       _pyCont = PyDict_GetItemString(globals, "pyCont");
229       //PyThreadState_Swap(NULL);
230       //PyEval_ReleaseLock();
231     }
232     {// register to NS after python initialization to be sure that client invoke after py constructor execution
233       _NS->Register(pCont, _containerName.c_str());
234       DEBUG_MESSAGE("Container registred in NS as : " << _containerName);
235     }
236     fileTransfer_i* aFileTransfer = new fileTransfer_i();
237     CORBA::Object_var obref=aFileTransfer->_this();
238     _fileTransfer = Engines::fileTransfer::_narrow(obref);
239     aFileTransfer->_remove_ref();
240   }
241 }
242
243 //=============================================================================
244 /*! 
245 *  Destructor
246 */
247 //=============================================================================
248
249 Abstract_Engines_Container_i::~Abstract_Engines_Container_i()
250 {
251   MESSAGE("Abstract_Container_i::~Abstract_Container_i()");
252   if(_id)
253     delete _id;
254   if(_NS)
255     delete _NS;
256   cleanAllPyScripts();
257 }
258
259 //=============================================================================
260 //! Get container name
261 /*! 
262 *  CORBA attribute: Container name (see constructor)
263 */
264 //=============================================================================
265
266 char* Abstract_Engines_Container_i::name()
267 {
268   return CORBA::string_dup(_containerName.c_str()) ;
269 }
270
271 //=============================================================================
272 //! Get container working directory
273 /*! 
274 *  CORBA attribute: Container working directory 
275 */
276 //=============================================================================
277
278 char* Abstract_Engines_Container_i::workingdir()
279 {
280   char wd[256];
281   getcwd (wd,256);
282   return CORBA::string_dup(wd) ;
283 }
284
285 //=============================================================================
286 //! Get container log file name
287 /*! 
288 *  CORBA attribute: Container log file name
289 */
290 //=============================================================================
291
292 char *Abstract_Engines_Container_i::logfilename()
293 {
294   return CORBA::string_dup(_logfilename.c_str()) ;
295 }
296
297 //! Set container log file name
298 void Abstract_Engines_Container_i::logfilename(const char* name)
299 {
300   _logfilename=name;
301 }
302
303 char *Abstract_Engines_Container_i::locallogfilename()
304 {
305   return CORBA::string_dup( _localfilename.c_str() );
306 }
307
308 void Abstract_Engines_Container_i::locallogfilename(const char *name)
309 {
310   AutoGIL gstate;
311   _localfilename = name;
312   AutoPyRef result = PyObject_CallMethod(_pyCont,(char*)"setLogFileName","s",name,nullptr);
313   if (PyErr_Occurred())
314   {
315     std::string error("can not set logfilename");
316     PyErr_Print();
317     THROW_SALOME_CORBA_EXCEPTION(error.c_str(),SALOME::INTERNAL_ERROR);
318   }
319 }
320
321 CORBA::Long Abstract_Engines_Container_i::monitoringtimeresms()
322 {
323   AutoGIL gstate;
324   AutoPyRef result = PyObject_CallMethod(_pyCont,(char*)"monitoringtimeresms",nullptr);
325   if (PyErr_Occurred())
326   {
327     std::string error("can not retrieve time interval between 2 measures");
328     PyErr_Print();
329     THROW_SALOME_CORBA_EXCEPTION(error.c_str(),SALOME::INTERNAL_ERROR);
330   }
331   CORBA::Long ret = PyLong_AsLong( result );
332   return ret;
333 }
334
335 void Abstract_Engines_Container_i::monitoringtimeresms(CORBA::Long intervalInMs)
336 {
337   AutoGIL gstate;
338   AutoPyRef result = PyObject_CallMethod(_pyCont,(char*)"SetMonitoringtimeresms","i",intervalInMs,nullptr);
339   if (PyErr_Occurred())
340   {
341     std::string error("can not set time interval between 2 measures");
342     PyErr_Print();
343     THROW_SALOME_CORBA_EXCEPTION(error.c_str(),SALOME::INTERNAL_ERROR);
344   }
345 }
346
347 void Abstract_Engines_Container_i::verbosity(bool& activated, CORBA::String_out level)
348 {
349   activated = SALOME::VerbosityActivated();
350   level = CORBA::string_dup( SALOME::VerbosityLevelStr().c_str() );
351 }
352
353 void Abstract_Engines_Container_i::setVerbosity(bool activated, const char *level)
354 {
355   SALOME::SetVerbosityActivated( activated );
356   SALOME::SetVerbosityLevelStr( level );
357   {
358     AutoGIL gstate;
359     AutoPyRef res = PyObject_CallMethod(_pyCont,
360       (char*)"positionVerbosityOfLogger",NULL);
361     if(res==NULL)
362     {
363       //internal error
364       PyErr_Print();
365       SALOME::ExceptionStruct es;
366       es.type = SALOME::INTERNAL_ERROR;
367       es.text = "can not create a python node";
368       throw SALOME::SALOME_Exception(es);
369     }
370   }
371 }
372
373 //=============================================================================
374 //! Get container host name
375 /*! 
376 *  CORBA method: Get the hostName of the Container (without domain extensions)
377 */
378 //=============================================================================
379
380 char* Abstract_Engines_Container_i::getHostName()
381 {
382   std::string s = Kernel_Utils::GetHostname();
383   //  MESSAGE("Engines_Container_i::getHostName " << s);
384   return CORBA::string_dup(s.c_str()) ;
385 }
386
387 //=============================================================================
388 //! Get container PID
389 /*! 
390 *  CORBA method: Get the PID (process identification) of the Container
391 */
392 //=============================================================================
393
394 CORBA::Long Abstract_Engines_Container_i::getPID()
395 {
396   return (CORBA::Long)getpid();
397 }
398
399 //=============================================================================
400 //! Ping the servant to check it is still alive
401 /*! 
402 *  CORBA method: check if servant is still alive
403 */
404 //=============================================================================
405 void Abstract_Engines_Container_i::ping()
406 {
407   MESSAGE("Engines_Container_i::ping() pid "<< getpid());
408 }
409
410 //=============================================================================
411 //! Get number of CPU cores in the calculation node
412 /*!
413 *  CORBA method: get number of CPU cores
414 */
415 //=============================================================================
416
417 CORBA::Long Abstract_Engines_Container_i::getNumberOfCPUCores()
418 {
419   AutoGIL gstate;
420   PyObject *module = PyImport_ImportModuleNoBlock((char*)"salome_psutil");
421   AutoPyRef result = PyObject_CallMethod(module,
422                                          (char*)"getNumberOfCPUCores", NULL);
423   int n = PyLong_AsLong(result);
424   return (CORBA::Long)n;
425 }
426
427 //=============================================================================
428 //! Get a load of each CPU core in the calculation node
429 /*!
430 *  CORBA method: get a load of each CPU core
431 */
432 //=============================================================================
433 namespace {
434   typedef struct
435   {
436     PyObject_HEAD
437     int softspace;
438     std::string *out;
439   } PyStdOut;
440
441   static void
442   PyStdOut_dealloc(PyStdOut *self)
443   {
444     PyObject_Del(self);
445   }
446
447   static PyObject*
448   PyStdOut_write(PyStdOut* self, PyObject* args)
449   {
450     char *c;
451     if (!PyArg_ParseTuple(args, "s", &c))
452       return NULL;
453
454     *(self->out) = *(self->out) + c;
455
456     Py_INCREF(Py_None);
457     return Py_None;
458   }
459
460   static PyMethodDef PyStdOut_methods[] =
461   {
462     {"write",  (PyCFunction)PyStdOut_write,  METH_VARARGS,
463       PyDoc_STR("write(string) -> None")},
464     {0, 0, 0, 0}  /* sentinel */
465   };
466
467   static PyMemberDef PyStdOut_memberlist[] =
468   {
469     {(char*)"softspace", T_INT, offsetof(PyStdOut, softspace), 0,
470      (char*)"flag indicating that a space needs to be printed; used by print"},
471     {0, 0, 0, 0, 0}   /* sentinel */
472   };
473
474   static PyTypeObject PyStdOut_Type =
475   {
476     /* The ob_type field must be initialized in the module init function
477      * to be portable to Windows without using C++. */
478     PyVarObject_HEAD_INIT(NULL, 0)
479     /* 0, */                      /*ob_size*/
480     "PyOut",                      /*tp_name*/
481     sizeof(PyStdOut),             /*tp_basicsize*/
482     0,                            /*tp_itemsize*/
483     /* methods */
484     (destructor)PyStdOut_dealloc, /*tp_dealloc*/
485     0,                            /*tp_print*/
486     0,                            /*tp_getattr*/
487     0,                            /*tp_setattr*/
488     0,                            /*tp_compare*/
489     0,                            /*tp_repr*/
490     0,                            /*tp_as_number*/
491     0,                            /*tp_as_sequence*/
492     0,                            /*tp_as_mapping*/
493     0,                            /*tp_hash*/
494     0,                            /*tp_call*/
495     0,                            /*tp_str*/
496     PyObject_GenericGetAttr,      /*tp_getattro*/
497     /* softspace is writable:  we must supply tp_setattro */
498     PyObject_GenericSetAttr,      /* tp_setattro */
499     0,                            /*tp_as_buffer*/
500     Py_TPFLAGS_DEFAULT,           /*tp_flags*/
501     0,                            /*tp_doc*/
502     0,                            /*tp_traverse*/
503     0,                            /*tp_clear*/
504     0,                            /*tp_richcompare*/
505     0,                            /*tp_weaklistoffset*/
506     0,                            /*tp_iter*/
507     0,                            /*tp_iternext*/
508     PyStdOut_methods,             /*tp_methods*/
509     PyStdOut_memberlist,          /*tp_members*/
510     0,                            /*tp_getset*/
511     0,                            /*tp_base*/
512     0,                            /*tp_dict*/
513     0,                            /*tp_descr_get*/
514     0,                            /*tp_descr_set*/
515     0,                            /*tp_dictoffset*/
516     0,                            /*tp_init*/
517     0,                            /*tp_alloc*/
518     0,                            /*tp_new*/
519     0,                            /*tp_free*/
520     0,                            /*tp_is_gc*/
521     0,                            /*tp_bases*/
522     0,                            /*tp_mro*/
523     0,                            /*tp_cache*/
524     0,                            /*tp_subclasses*/
525     0,                            /*tp_weaklist*/
526     0,                            /*tp_del*/
527     0,                            /*tp_version_tag*/
528     0,                            /*tp_finalize*/
529   };
530
531   PyObject* newPyStdOut(std::string& out)
532   {
533     PyStdOut* self = PyObject_New(PyStdOut, &PyStdOut_Type);
534     if (self) {
535       self->softspace = 0;
536       self->out=&out;
537     }
538     return (PyObject*)self;
539   }
540
541   std::string parseException()
542   {
543     std::string error;
544     if (PyErr_Occurred())
545     {
546 #ifdef BOS26455_WITH_BOOST_PYTHON
547       PyObject *ptype = nullptr;
548       PyObject *pvalue = nullptr;
549       PyObject *ptraceback = nullptr;
550       PyErr_Fetch(&ptype, &pvalue, &ptraceback);
551       if (ptype == nullptr)
552         return std::string("Null exception type");
553       PyErr_NormalizeException(&ptype, &pvalue, &ptraceback);
554       if (ptraceback != nullptr)
555         PyException_SetTraceback(pvalue, ptraceback);
556       boost::python::handle<> htype(ptype);
557       boost::python::handle<> hvalue(boost::python::allow_null(pvalue));
558       boost::python::handle<> htraceback(boost::python::allow_null(ptraceback));
559       boost::python::object traceback = boost::python::import("traceback");
560       boost::python::object format_exc = traceback.attr("format_exception");
561       boost::python::object formatted = format_exc(htype, hvalue, htraceback);
562       error = boost::python::extract<std::string>(boost::python::str("\n").join(formatted));
563 #else
564       PyObject* new_stderr = newPyStdOut(error);
565       PyObject* old_stderr = PySys_GetObject((char*)"stderr");
566       Py_INCREF(old_stderr);
567       PySys_SetObject((char*)"stderr", new_stderr);
568       PyErr_Print();
569       PySys_SetObject((char*)"stderr", old_stderr);
570       Py_DECREF(new_stderr);
571 #endif
572     }
573     return error;
574   }
575 }
576   
577 Engines::vectorOfDouble* Abstract_Engines_Container_i::loadOfCPUCores()
578 {
579   AutoGIL gstate;
580   PyObject *module = PyImport_ImportModuleNoBlock((char*)"salome_psutil");
581   AutoPyRef result = PyObject_CallMethod(module,
582                                          (char*)"loadOfCPUCores", "s",
583                                          _load_script.c_str());
584   if (PyErr_Occurred())
585   {
586     std::string error = parseException();
587     PyErr_Print();
588     SALOME::ExceptionStruct es;
589     es.type = SALOME::INTERNAL_ERROR;
590     es.text = CORBA::string_dup(error.c_str());
591     throw SALOME::SALOME_Exception(es);
592   }
593
594   int n = this->getNumberOfCPUCores();
595   if (!PyList_Check(result) || PyList_Size(result) != n) {
596     // bad number of cores
597     SALOME::ExceptionStruct es;
598     es.type = SALOME::INTERNAL_ERROR;
599     es.text = "wrong number of cores";
600     throw SALOME::SALOME_Exception(es);
601   }
602
603   Engines::vectorOfDouble_var loads = new Engines::vectorOfDouble;
604   loads->length(n);
605   for (Py_ssize_t i = 0; i < PyList_Size(result); ++i) {
606     PyObject* item = PyList_GetItem(result, i);
607     double foo = PyFloat_AsDouble(item);
608     if (foo < 0.0 || foo > 1.0)
609     {
610       // value not in [0, 1] range
611       SALOME::ExceptionStruct es;
612       es.type = SALOME::INTERNAL_ERROR;
613       es.text = "load not in [0, 1] range";
614       throw SALOME::SALOME_Exception(es);
615     }
616     loads[i] = foo;
617   }
618
619   return loads._retn();
620 }
621
622 //=============================================================================
623 //! Set custom script to calculate a load of each CPU core
624 /*!
625 *  CORBA method: Set custom script to calculate CPU load
626 *  \param script Python script to execute
627 */
628 //=============================================================================
629
630 void Abstract_Engines_Container_i::setPyScriptForCPULoad(const char *script)
631 {
632   _load_script = script;
633 }
634
635 //=============================================================================
636 //! Nullify custom script to calculate each CPU core's load
637 /*!
638 *  CORBA method: reset script for load calculation to default implementation
639 */
640 //=============================================================================
641
642 void Abstract_Engines_Container_i::resetScriptForCPULoad()
643 {
644   _load_script = "";
645 }
646
647 //=============================================================================
648 //! Get total physical memory of calculation node, in megabytes
649 /*!
650 *  CORBA method: get total physical memory of calculation node
651 */
652 //=============================================================================
653
654 CORBA::Long Abstract_Engines_Container_i::getTotalPhysicalMemory()
655 {
656   AutoGIL gstate;
657   PyObject *module = PyImport_ImportModuleNoBlock((char*)"salome_psutil");
658   AutoPyRef result = PyObject_CallMethod(module,
659                                          (char*)"getTotalPhysicalMemory", NULL);
660   int n = PyLong_AsLong(result);
661
662   return (CORBA::Long)n;
663 }
664
665 //=============================================================================
666 //! Get used physical memory of calculation node, in megabytes
667 /*!
668 *  CORBA method: get used physical memory of calculation node
669 */
670 //=============================================================================
671
672 CORBA::Long Abstract_Engines_Container_i::getTotalPhysicalMemoryInUse()
673 {
674   AutoGIL gstate;
675   PyObject *module = PyImport_ImportModuleNoBlock((char*)"salome_psutil");
676   AutoPyRef result = PyObject_CallMethod(module,
677                                          (char*)"getTotalPhysicalMemoryInUse", NULL);
678   int n = PyLong_AsLong(result);
679
680   return (CORBA::Long)n;
681 }
682
683 //=============================================================================
684 //! Obtain physical memory, used by the current process, in megabytes.
685 /*!
686 *  CORBA method: get physical memory, used by the current process
687 */
688 //=============================================================================
689
690 CORBA::Long Abstract_Engines_Container_i::getTotalPhysicalMemoryInUseByMe()
691 {
692   AutoGIL gstate;
693   PyObject *module = PyImport_ImportModuleNoBlock((char*)"salome_psutil");
694   AutoPyRef result = PyObject_CallMethod(module,
695                                          (char*)"getTotalPhysicalMemoryInUseByMe", NULL);
696   int n = PyLong_AsLong(result);
697
698   return (CORBA::Long)n;
699 }
700
701 //=============================================================================
702 //! Shutdown the container
703 /*! 
704 *  CORBA method, oneway: Server shutdown. 
705 *  - Container name removed from naming service,
706 *  - servant deactivation,
707 *  - orb shutdown if no other servants in the process 
708 */
709 //=============================================================================
710 void Abstract_Engines_Container_i::Shutdown()
711 {
712   MESSAGE("Engines_Container_i::Shutdown()");
713
714   // Clear registered temporary files
715   clearTemporaryFiles();
716
717   /* For each component contained in this container
718   * tell it to self-destroy
719   */
720   std::map<std::string, Engines::EngineComponent_var>::iterator itm;
721   for (itm = _listInstances_map.begin(); itm != _listInstances_map.end(); itm++)
722   {
723     try
724     {
725       itm->second->destroy();
726     }
727     catch(const CORBA::Exception&)
728     {
729       // ignore this entry and continue
730     }
731     catch(...)
732     {
733       // ignore this entry and continue
734     }
735   }
736   _listInstances_map.clear();
737
738   // NS unregistering may throw in SSL mode if master process hosting SALOME_Embedded_NamingService servant has vanished
739   // In this case it's skip it and still continue.
740   try
741   {
742     _NS->Destroy_FullDirectory(_containerName.c_str());
743     _NS->Destroy_Name(_containerName.c_str());
744   }
745   catch(...)
746   {
747   }
748   //
749   this->cleanAllPyScripts();
750   //
751   {
752     AutoGIL gstate;
753     AutoPyRef result = PyObject_CallMethod(_pyCont, (char*)"shutdownPy", (char*)"",nullptr);
754   }
755   //
756   if(_isServantAloneInProcess)
757   {
758     MESSAGE("Effective Shutdown of container Begins...");
759     if(!CORBA::is_nil(_orb))
760       _orb->shutdown(0);
761   }
762 }
763
764 //=============================================================================
765 //! load a component implementation
766 /*! 
767 *  CORBA method
768 *  \param componentName         component name
769 *  \param reason                explains error when load fails
770 *  \return true if dlopen successful or already done, false otherwise
771 */
772 //=============================================================================
773 bool
774 Abstract_Engines_Container_i::load_component_Library(const char* componentName, CORBA::String_out reason)
775 {
776
777   //=================================================================
778   // --- C++ implementation section 
779   //=================================================================
780   std::string retso;
781   if(load_component_CppImplementation(componentName,retso))
782   {
783     reason=CORBA::string_dup("");
784     return true;
785   }
786   else if(retso != "ImplementationNotFound")
787   {
788     reason=CORBA::string_dup(retso.c_str());
789     return false;
790   }
791
792   retso="Component ";
793   retso+=componentName;
794   retso+=": Can't find C++ implementation ";
795   retso+=std::string(LIB) + componentName + ENGINESO;
796
797   //=================================================================
798   // --- Python implementation section 
799   //=================================================================
800   std::string retpy;
801   if(load_component_PythonImplementation(componentName,retpy))
802   {
803     reason=CORBA::string_dup("");
804     return true;
805   }
806   else if(retpy != "ImplementationNotFound")
807   {
808     reason=CORBA::string_dup(retpy.c_str());
809     return false;
810   }
811   
812   retpy="Component ";
813   retpy+=componentName;
814   retpy+=": Can't find python implementation ";
815   retpy+=componentName;
816   retpy+="(.py)";
817
818   //=================================================================
819   // -- Executable implementation section
820   //=================================================================
821   std::string retex;
822   if(load_component_ExecutableImplementation(componentName,retex))
823   {
824     reason=CORBA::string_dup("");
825     return true;
826   }
827   else if(retex != "ImplementationNotFound")
828   {
829     reason=CORBA::string_dup(retex.c_str());
830     return false;
831   }
832
833   retex="Component ";
834   retex+=componentName;
835   retex+=": Can't find executable implementation ";
836   retex+=componentName;
837   retex+=".exe";
838
839   std::string ret="Component implementation not found: ";
840   ret += componentName ;
841   ret += '\n' ;
842   ret += retso+ '\n' ;
843   ret += retpy+ '\n' ;
844   ret += retex+ '\n' ;
845
846   std::cerr << ret << std::endl;
847   reason=CORBA::string_dup(ret.c_str());
848
849   return false;
850 }
851
852 //=============================================================================
853 //! try to load a C++ component implementation
854 /*! 
855 *  C++ method: 
856 *  \param componentName      the name of the component (COMPONENT, for example)
857 *  \param reason             explains error when load fails
858 *  \return true if loading is successful or already done, false otherwise
859 */
860 //=============================================================================
861 bool
862 Abstract_Engines_Container_i::load_component_CppImplementation(const char* componentName, std::string& reason)
863 {
864   std::string aCompName(componentName);
865   std::string impl_name = std::string(LIB) + aCompName + ENGINESO;
866   SCRUTE(impl_name);
867
868   _numInstanceMutex.lock(); // lock to be alone
869   // (see decInstanceCnt, finalize_removal))
870   if (_toRemove_map.count(impl_name) != 0) _toRemove_map.erase(impl_name);
871   if (_library_map.count(impl_name) != 0)
872   {
873     MESSAGE("Library " << impl_name << " already loaded");
874     _numInstanceMutex.unlock();
875     reason="";
876     return true;
877   }
878   _numInstanceMutex.unlock();
879
880 #ifndef WIN32
881   void* handle;
882   handle = dlopen( impl_name.c_str() , RTLD_NOW | RTLD_GLOBAL ) ;
883   if ( !handle )
884   {
885     //not loadable. Try to find the lib file in LD_LIBRARY_PATH
886     std::string path;
887 #ifdef __APPLE__
888       char* p=getenv("DYLD_LIBRARY_PATH");
889 #else
890       char* p=getenv("LD_LIBRARY_PATH");
891 #endif
892       if(p)path=p;
893       path=path+SEP+"/usr/lib"+SEP+"/lib";
894
895       std::string pth;
896       if(findpathof(path, pth, impl_name))
897         {
898           //found but not loadable
899           reason="Component ";
900           reason+=aCompName;
901           reason+=": C++ implementation found ";
902           reason+=pth;
903           reason+=" but it is not loadable. Error:\n";
904           reason+=dlerror();
905           std::cerr << reason << std::endl;
906           return false;
907         }
908       else
909         {
910           //not found
911           //continue with other implementation
912           reason="ImplementationNotFound";
913           return false;
914     }
915   }
916 #else
917   HINSTANCE handle;
918 #ifdef UNICODE
919   std::wstring libToLoad = Kernel_Utils::utf8_decode_s( impl_name );
920 #else
921   std::string libToLoad = impl_name;
922 #endif
923   handle = LoadLibrary(libToLoad.c_str() );
924   if ( !handle )
925   {
926     reason="ImplementationNotFound";
927   }
928 #endif
929
930   if ( handle )
931   {
932     _numInstanceMutex.lock();
933     _library_map[impl_name] = handle;
934     _numInstanceMutex.unlock();
935     reason="";
936     return true;
937   }
938
939   return false;
940
941 }
942 //=============================================================================
943 //! try to load a Python component implementation
944 /*! 
945 *  C++ method: 
946 *  \param componentName         name of the component
947 *  \param reason                explains error when load fails
948 *  \return true if loading is successful or already done, false otherwise
949 */
950 //=============================================================================
951 bool
952 Abstract_Engines_Container_i::load_component_PythonImplementation(const char* componentName, std::string& reason)
953 {
954   std::string aCompName(componentName);
955
956   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
957   if (_library_map.count(aCompName) != 0)
958   {
959     _numInstanceMutex.unlock() ;
960     reason="";
961     return true; // Python Component, already imported
962   }
963   _numInstanceMutex.unlock() ;
964
965   {
966     AutoGIL gstate;
967     AutoPyRef result = PyObject_CallMethod(_pyCont,
968                                           (char*)"import_component",
969                                           (char*)"s",componentName);
970
971     reason=PyUnicode_AsUTF8(result);
972     SCRUTE(reason);
973   }
974
975   if (reason=="")
976   {
977     //Python component has been loaded (import componentName)
978     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
979     _library_map[aCompName] = (void *)_pyCont; // any non O value OK
980     _numInstanceMutex.unlock() ;
981     MESSAGE("import Python: "<< aCompName <<" OK");
982     return true;
983   }
984   else if(reason=="ImplementationNotFound")
985   {
986     //Python implementation has not been found. Continue with other implementation
987     reason="ImplementationNotFound";
988   }
989   else
990   {
991     //Python implementation has been found but loading has failed
992     std::cerr << reason << std::endl;
993   }
994   return false;
995
996 }
997 //=============================================================================
998 //! try to load a Executable component implementation
999 /*! 
1000 *  C++ method: 
1001 *  \param componentName        name of the component
1002 *  \param reason               explains error when load fails
1003 *  \return true if loading is successful or already done, false otherwise
1004 */
1005 //=============================================================================
1006 bool
1007 Abstract_Engines_Container_i::load_component_ExecutableImplementation(const char* componentName, std::string& reason)
1008 {
1009   std::string aCompName(componentName);
1010   std::string executable=aCompName+".exe";
1011
1012   std::string path;
1013   std::string pth;
1014
1015   char* p=getenv("PATH");
1016   if(p)path=p;
1017
1018   if (findpathof(path, pth, executable))
1019   {
1020     if(checkifexecutable(pth))
1021     {
1022       _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1023       _library_map[executable] = (void *)1; // any non O value OK
1024       _numInstanceMutex.unlock() ;
1025       MESSAGE("import executable: "<< pth <<" OK");
1026       reason="";
1027       return true;
1028     }
1029     reason="Component ";
1030     reason+=aCompName;
1031     reason+=": implementation found ";
1032     reason+=pth;
1033     reason+=" but it is not executable";
1034     std::cerr << reason << std::endl;
1035   }
1036   else
1037   {
1038     reason="ImplementationNotFound";
1039   }
1040   return false;
1041 }
1042
1043 //=============================================================================
1044 //! Create a new component instance
1045 /*! 
1046 *  CORBA method: Creates a new servant instance of a component.
1047 *  The servant registers itself to naming service and Registry.tdlib
1048 *  \param genericRegisterName  Name of the component instance to register
1049 *                         in Registry & Name Service (without _inst_n suffix)
1050 *  \return a loaded component
1051 */
1052 //=============================================================================
1053 Engines::EngineComponent_ptr
1054 Abstract_Engines_Container_i::create_component_instance(const char*genericRegisterName)
1055 {
1056   Engines::FieldsDict_var env = new Engines::FieldsDict;
1057   char* reason;
1058   Engines::EngineComponent_ptr compo =
1059     create_component_instance_env(genericRegisterName, env, reason);
1060   CORBA::string_free(reason);
1061   return compo;
1062 }
1063
1064 void EffectiveOverrideEnvironment( const Engines::FieldsDict& env )
1065 {
1066   MESSAGE("Positionning environment on container ");
1067   for (CORBA::ULong i=0; i < env.length(); i++)
1068   {
1069     if (env[i].value.type()->kind() == CORBA::tk_string)
1070     {
1071       const char *value = nullptr;
1072       env[i].value >>= value;
1073       MESSAGE( env[i].key << " = " << value);
1074 #ifndef WIN32
1075       if( setenv(env[i].key,value,1) != 0 )
1076       {
1077         int errsv = errno;
1078         std::string sErr( strerror( errsv) );
1079         MESSAGE(sErr);
1080       }
1081 #endif
1082     }
1083   }
1084 }
1085
1086 std::vector< std::pair<std::string,std::string> > GetOSEnvironment()
1087 {
1088   std::vector< std::pair<std::string,std::string> > ret;
1089 #ifndef WIN32
1090   char **envPt( environ );
1091   for(;*envPt != nullptr; ++envPt)
1092   {
1093     std::string s( *envPt );
1094     auto pos = s.find_first_of('=');
1095     std::string k( s.substr(0,pos) ),v( s.substr(pos+1) );
1096     ret.emplace_back( std::pair<std::string,std::string>(k,v) );
1097   }
1098 #endif
1099   return ret;
1100 }
1101
1102 void Abstract_Engines_Container_i::override_environment( const Engines::FieldsDict& env )
1103 {
1104   EffectiveOverrideEnvironment(env);
1105 }
1106
1107 void Abstract_Engines_Container_i::override_environment_python( const Engines::FieldsDict& env )
1108 {
1109   constexpr char NODE_NAME[] = "ScriptNodeForEnv";
1110   constexpr char SCRIPT[] = R"foo(
1111 import os
1112 for k,v in env:
1113   os.environ[k] = v
1114 )foo";
1115   Engines::PyScriptNode_var scriptNode = this->createPyScriptNode(NODE_NAME,SCRIPT);
1116   auto sz = env.length();
1117   Engines::listofstring keys, vals;
1118   keys.length( sz ); vals.length( sz );
1119   for( auto i = 0 ; i < sz ; ++i )
1120   {
1121     keys[i] = CORBA::string_dup( env[i].key );
1122     const char *value = nullptr;
1123     env[i].value >>= value;
1124     vals[i] = CORBA::string_dup( value );
1125   }
1126   scriptNode->executeSimple(keys,vals);
1127   this->removePyScriptNode(NODE_NAME);
1128 }
1129
1130 Engines::FieldsDict *Abstract_Engines_Container_i::get_os_environment()
1131 {
1132   std::unique_ptr<Engines::FieldsDict> ret( new Engines::FieldsDict );
1133   std::vector< std::pair<std::string,std::string> > retCpp( GetOSEnvironment() );
1134   auto sz = retCpp.size();
1135   ret->length( sz );
1136   for(auto i = 0 ; i < sz ; ++i)
1137   {
1138     (*ret)[i].key = CORBA::string_dup( retCpp[i].first.c_str() );
1139     (*ret)[i].value <<= CORBA::string_dup( retCpp[i].second.c_str() );
1140   }
1141   return ret.release();
1142 }
1143
1144 void Abstract_Engines_Container_i::execute_python_code(const char *code)
1145 {
1146   AutoGIL gstate;
1147   if( PyRun_SimpleString( code ) != 0 )
1148   {
1149     std::string error = parseException();
1150     THROW_SALOME_CORBA_EXCEPTION(error.c_str(),SALOME::INTERNAL_ERROR);
1151   }
1152 }
1153
1154 //=============================================================================
1155 //! Create a new component instance with environment variables specified
1156 /*! 
1157 *  CORBA method: Creates a new servant instance of a component.
1158 *  The servant registers itself to naming service and Registry.
1159 *  \param genericRegisterName  Name of the component instance to register
1160 *                         in Registry & Name Service (without _inst_n suffix)
1161 *  \param env             dict of env variables
1162 *  \param reason          explains error when create_component_instance_env fails
1163 *  \return a loaded component
1164 */
1165 //=============================================================================
1166 Engines::EngineComponent_ptr
1167 Abstract_Engines_Container_i::create_component_instance_env(const char*genericRegisterName,
1168                                                    const Engines::FieldsDict& env,
1169                                                    CORBA::String_out reason)
1170 {
1171   std::string error;
1172   if (_library_map.count(genericRegisterName) != 0)
1173   {
1174     // It's a Python component
1175     Engines::EngineComponent_ptr compo = createPythonInstance(genericRegisterName, error);
1176     reason=CORBA::string_dup(error.c_str());
1177     return compo;
1178   }
1179
1180   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
1181   if (_library_map.count(impl_name) != 0)
1182   {
1183     // It's a C++ component
1184     void* handle = _library_map[impl_name];
1185     Engines::EngineComponent_ptr compo = createInstance(genericRegisterName, handle, error);
1186     reason=CORBA::string_dup(error.c_str());
1187     return compo;
1188   }
1189
1190   impl_name = std::string(genericRegisterName) + ".exe";
1191   if (_library_map.count(impl_name) != 0)
1192   {
1193     //It's an executable component
1194     Engines::EngineComponent_ptr compo = createExecutableInstance(genericRegisterName, env, error);
1195     reason=CORBA::string_dup(error.c_str());
1196     return compo;
1197   }
1198
1199   error="load_component_Library has probably not been called for component: ";
1200   error += genericRegisterName;
1201   INFOS(error);
1202   reason=CORBA::string_dup(error.c_str());
1203   return Engines::EngineComponent::_nil() ;
1204 }
1205
1206 //=============================================================================
1207 //! Create a new component instance (Executable implementation)
1208 /*! 
1209 *  \param CompName               Name of the component instance
1210 *  \param env                    dict of env variables
1211 *  \param reason                 explains error when creation fails
1212 *  \return a loaded component
1213 *
1214 *   This component is implemented in an executable with name genericRegisterName.exe
1215 *   It must register itself in Naming Service. The container waits some time (10 s max)
1216 *   it's registration.
1217 */
1218 //=============================================================================
1219 Engines::EngineComponent_ptr
1220 Abstract_Engines_Container_i::createExecutableInstance(std::string CompName,
1221                                                       const Engines::FieldsDict& env,
1222                                                       std::string& reason)
1223 {
1224   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1225
1226   _numInstanceMutex.lock() ; // lock on the instance number
1227   _numInstance++ ;
1228   int numInstance = _numInstance ;
1229   _numInstanceMutex.unlock() ;
1230
1231   char aNumI[12];
1232   sprintf( aNumI , "%d" , numInstance ) ;
1233   std::string instanceName = CompName + "_inst_" + aNumI ;
1234   std::string component_registerName = _containerName + "/" + instanceName;
1235
1236   //check if an entry exist in naming service
1237   CORBA::Object_var nsobj = _NS->Resolve(component_registerName.c_str());
1238   if ( !CORBA::is_nil(nsobj) )
1239   {
1240     // unregister the registered component
1241     _NS->Destroy_Name(component_registerName.c_str());
1242     //kill or shutdown it ???
1243   }
1244
1245   // first arg container ior string
1246   // second arg container name
1247   // third arg instance name
1248
1249   Engines::Container_var pCont= _this();
1250   CORBA::String_var sior =  _orb->object_to_string(pCont);
1251
1252   std::string command;
1253   command="mkdir -p ";
1254   command+=instanceName;
1255   command+=";cd ";
1256   command+=instanceName;
1257   command+=";";
1258   command+=CompName ;
1259   command+=".exe";
1260   command+=" ";
1261   command+= sior; // container ior string
1262   command+=" ";
1263   command+=_containerName; //container name
1264   command+=" ";
1265   command+=instanceName; //instance name
1266   command+=" &";
1267   MESSAGE("SALOME_Container::create_component_instance command=" << command);
1268
1269 #ifndef WIN32
1270   // use fork/execl instead of system to get finer control on env variables
1271   int status;
1272   pid_t pid = fork();
1273   if(pid == 0) // child
1274   {
1275     EffectiveOverrideEnvironment(env);
1276
1277     execl("/bin/sh", "sh", "-c", command.c_str() , (char *)0);
1278     status=-1;
1279   }
1280   else if(pid < 0)       // failed to fork
1281   {
1282     status=-1;
1283   }
1284   else            //parent
1285   {
1286     pid_t tpid;
1287     do
1288     {
1289       tpid = wait(&status);
1290     } while (tpid != pid);
1291   }
1292 #else
1293   // launch component with a system call
1294   int status=system(command.c_str());
1295 #endif
1296
1297   if (status == -1)
1298   {
1299     reason="SALOME_Container::create_component_instance system failed (system command status -1)";
1300     MESSAGE(reason);
1301     return Engines::EngineComponent::_nil();
1302   }
1303 #ifndef WIN32
1304   else if (WEXITSTATUS(status) == 217)
1305   {
1306     reason="SALOME_Container::create_component_instance system failed (system command status 217)";
1307     MESSAGE(reason);
1308     return Engines::EngineComponent::_nil();
1309   }
1310 #endif
1311   else
1312   {
1313     int count=20;
1314     if (getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT") != 0)
1315     {
1316       std::string new_count_str = getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT");
1317       int new_count;
1318       std::istringstream ss(new_count_str);
1319       if (!(ss >> new_count))
1320       {
1321         INFOS("[Container] TIMEOUT_TO_WAIT_EXE_COMPONENT should be an int");
1322       }
1323       else
1324         count = new_count;
1325     }
1326     INFOS("[Container] waiting " << count << " second steps exe component ");
1327     CORBA::Object_var obj = CORBA::Object::_nil() ;
1328     while ( CORBA::is_nil(obj) && count )
1329     {
1330 #ifndef WIN32
1331       sleep( 1 ) ;
1332 #else
1333       Sleep(1000);
1334 #endif
1335       count-- ;
1336       MESSAGE( count << ". Waiting for component " << CompName);
1337       obj = _NS->Resolve(component_registerName.c_str());
1338     }
1339
1340     if(CORBA::is_nil(obj))
1341     {
1342       reason="SALOME_Container::create_component_instance failed";
1343       MESSAGE(reason);
1344       return Engines::EngineComponent::_nil();
1345     }
1346     else
1347     {
1348       MESSAGE("SALOME_Container::create_component_instance successful");
1349       iobject = Engines::EngineComponent::_narrow(obj);
1350       _listInstances_map[instanceName] = iobject;
1351       return iobject._retn();
1352     }
1353   }
1354 }
1355
1356
1357 //=============================================================================
1358 //! Create a new component instance (Python implementation)
1359 /*! 
1360 *  \param CompName               Name of the component instance
1361 *  \param reason                 explains error when creation fails
1362 *  \return a loaded component
1363 */
1364 //=============================================================================
1365 Engines::EngineComponent_ptr
1366 Abstract_Engines_Container_i::createPythonInstance(std::string CompName,
1367                                           std::string& reason)
1368 {
1369   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1370
1371   _numInstanceMutex.lock() ; // lock on the instance number
1372   _numInstance++ ;
1373   int numInstance = _numInstance ;
1374   _numInstanceMutex.unlock() ;
1375
1376   char aNumI[12];
1377   sprintf( aNumI , "%d" , numInstance ) ;
1378   std::string instanceName = CompName + "_inst_" + aNumI ;
1379   std::string component_registerName = _containerName + "/" + instanceName;
1380   std::string iors;
1381   {
1382     AutoGIL gstate;
1383     AutoPyRef result = PyObject_CallMethod(_pyCont,
1384                                           (char*)"create_component_instance",
1385                                           (char*)"ss",
1386                                           CompName.c_str(),
1387                                           instanceName.c_str());
1388     const char *ior;
1389     const char *error;
1390     PyArg_ParseTuple(result,"ss", &ior, &error);
1391     iors = ior;
1392     reason=error;
1393   }
1394
1395   if( iors!="" )
1396   {
1397     CORBA::Object_var obj = _orb->string_to_object(iors.c_str());
1398     iobject = Engines::EngineComponent::_narrow( obj ) ;
1399     _listInstances_map[instanceName] = iobject;
1400   }
1401   return iobject._retn();
1402 }
1403
1404 char *
1405 Abstract_Engines_Container_i::create_python_service_instance(const char * CompName,
1406                                                     CORBA::String_out reason)
1407 {
1408   CORBA::Object_var object = CORBA::Object::_nil();
1409
1410   _numInstanceMutex.lock() ; // lock on the instance number
1411   _numInstance++ ;
1412   int numInstance = _numInstance ;
1413   _numInstanceMutex.unlock() ;
1414
1415   char aNumI[12];
1416   sprintf( aNumI , "%d" , numInstance ) ;
1417   std::string instanceName = std::string(CompName) + "_inst_" + aNumI ;
1418   std::string component_registerName = _containerName + "/" + instanceName;
1419
1420   char * _ior = nullptr;
1421   {
1422     AutoGIL gstate;
1423     AutoPyRef result = PyObject_CallMethod(_pyCont,
1424                                           (char*)"create_component_instance",
1425                                           (char*)"ss",
1426                                           CompName,
1427                                           instanceName.c_str());
1428     const char *ior;
1429     const char *error;
1430     PyArg_ParseTuple(result,"ss", &ior, &error);
1431     reason = CORBA::string_dup(error);
1432     _ior = CORBA::string_dup(ior);
1433   }
1434   return _ior;
1435 }
1436
1437
1438 //=============================================================================
1439 //! Create a new component instance (C++ implementation)
1440 /*! 
1441 *  C++ method: create a servant instance of a component.
1442 *  \param genericRegisterName    Name of the component instance to register
1443 *                                in Registry & Name Service,
1444 *                                (without _inst_n suffix, like "COMPONENT")
1445 *  \param handle                 loaded library handle
1446 *  \param reason                 explains error when creation fails
1447 *  \return a loaded component
1448
1449 *  example with names:
1450 *    - aGenRegisterName = COMPONENT (= first argument)
1451 *    - _containerName = /Containers/cli76ce/FactoryServer
1452 *    - factoryName = COMPONENTEngine_factory
1453 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1454 *    - instanceName = COMPONENT_inst_1
1455 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1456 */
1457 //=============================================================================
1458 Engines::EngineComponent_ptr
1459 Abstract_Engines_Container_i::createInstance(std::string genericRegisterName,
1460                                     void *handle,
1461                                     std::string& reason)
1462 {
1463   // --- find the factory
1464
1465   std::string aGenRegisterName = genericRegisterName;
1466   std::string factory_name = aGenRegisterName + std::string("Engine_factory");
1467   SCRUTE(factory_name) ;
1468
1469   typedef PortableServer::ObjectId* (*FACTORY_FUNCTION) (CORBA::ORB_ptr,
1470                                                          PortableServer::POA_ptr, 
1471                                                          PortableServer::ObjectId *, 
1472                                                          const char *, 
1473                                                          const char *) ;
1474
1475 #ifndef WIN32
1476   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)dlsym( handle, factory_name.c_str() );
1477 #else
1478   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)GetProcAddress( (HINSTANCE)handle, factory_name.c_str() );
1479 #endif
1480
1481   if ( !Component_factory )
1482   {
1483     MESSAGE( "Can't resolve symbol: " + factory_name );
1484 #ifndef WIN32
1485     reason=dlerror();
1486     MESSAGE(reason);
1487 #endif
1488     return Engines::EngineComponent::_nil() ;
1489   }
1490
1491   // --- create instance
1492
1493   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1494
1495   try
1496   {
1497     _numInstanceMutex.lock() ; // lock on the instance number
1498     _numInstance++ ;
1499     int numInstance = _numInstance ;
1500     _numInstanceMutex.unlock() ;
1501
1502     char aNumI[12];
1503     sprintf( aNumI , "%d" , numInstance ) ;
1504     std::string instanceName = aGenRegisterName + "_inst_" + aNumI ;
1505     std::string component_registerName =
1506       _containerName + "/" + instanceName;
1507
1508     // --- Instantiate required CORBA object
1509
1510     PortableServer::ObjectId *id ; //not owner, do not delete (nore use var)
1511     id = (Component_factory) ( _orb, _poa, _id, instanceName.c_str(),
1512                                                 aGenRegisterName.c_str() ) ;
1513     if (id == NULL)
1514     {
1515       reason="Can't get ObjectId from factory";
1516       INFOS(reason);
1517       return iobject._retn();
1518     }
1519
1520     // --- get reference from id
1521
1522     CORBA::Object_var obj = _poa->id_to_reference(*id);
1523     iobject = Engines::EngineComponent::_narrow( obj ) ;
1524
1525     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1526     _listInstances_map[instanceName] = iobject;
1527     _cntInstances_map[aGenRegisterName] += 1;
1528     _numInstanceMutex.unlock() ;
1529     SCRUTE(aGenRegisterName);
1530     SCRUTE(_cntInstances_map[aGenRegisterName]);
1531
1532     // --- register the engine under the name
1533     //     containerName(.dir)/instanceName(.object)
1534
1535     _NS->Register( iobject , component_registerName.c_str() ) ;
1536     MESSAGE( component_registerName.c_str() << " bound" ) ;
1537   }
1538   catch (...)
1539   {
1540     reason="Container_i::createInstance exception caught";
1541     INFOS(reason) ;
1542   }
1543   return iobject._retn();
1544 }
1545
1546 //=============================================================================
1547 //! Find an existing (in the container) component instance
1548 /*!
1549 *  CORBA method: Finds a servant instance of a component
1550 *  \param registeredName  Name of the component in Registry or Name Service,
1551 *                         without instance suffix number
1552 *  \return the first found instance
1553 */
1554 //=============================================================================
1555 Engines::EngineComponent_ptr
1556 Abstract_Engines_Container_i::find_component_instance( const char* registeredName)
1557 {
1558   Engines::EngineComponent_var anEngine = Engines::EngineComponent::_nil();
1559   std::map<std::string,Engines::EngineComponent_var>::iterator itm =_listInstances_map.begin();
1560   while (itm != _listInstances_map.end())
1561   {
1562     std::string instance = (*itm).first;
1563     SCRUTE(instance);
1564     if (instance.find(registeredName) == 0)
1565     {
1566       anEngine = (*itm).second;
1567       return anEngine._retn();
1568     }
1569     itm++;
1570   }
1571   return anEngine._retn();
1572 }
1573
1574 //=============================================================================
1575 //! Remove the component instance from container
1576 /*!
1577 *  CORBA method: Stops the component servant, and deletes all related objects
1578 *  \param component_i     Component to be removed
1579 */
1580 //=============================================================================
1581
1582 void Abstract_Engines_Container_i::remove_impl(Engines::EngineComponent_ptr component_i)
1583 {
1584   ASSERT(! CORBA::is_nil(component_i));
1585   std::string instanceName = component_i->instanceName() ;
1586   MESSAGE("unload component " << instanceName);
1587   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1588   _listInstances_map.erase(instanceName);
1589   _numInstanceMutex.unlock() ;
1590   component_i->destroy() ;
1591   _NS->Destroy_Name(instanceName.c_str());
1592 }
1593
1594 //=============================================================================
1595 //! Unload component libraries from the container
1596 /*!
1597 *  CORBA method: Discharges unused libraries from the container.
1598 */
1599 //=============================================================================
1600 void Abstract_Engines_Container_i::finalize_removal()
1601 {
1602   MESSAGE("finalize unload : dlclose");
1603   _numInstanceMutex.lock(); // lock to be alone
1604   // (see decInstanceCnt, load_component_Library)
1605   std::map<std::string, void *>::iterator ith;
1606   for (ith = _toRemove_map.begin(); ith != _toRemove_map.end(); ith++)
1607   {
1608     void *handle = (*ith).second;
1609     std::string impl_name= (*ith).first;
1610     if (handle)
1611     {
1612       SCRUTE(handle);
1613       SCRUTE(impl_name);
1614       //        dlclose(handle);                // SALOME unstable after ...
1615       //        _library_map.erase(impl_name);
1616     }
1617   }
1618   _toRemove_map.clear();
1619   _numInstanceMutex.unlock();
1620 }
1621
1622 //=============================================================================
1623 //! Decrement component instance reference count
1624 /*!
1625 *
1626 */
1627 //=============================================================================
1628 void Abstract_Engines_Container_i::decInstanceCnt(std::string genericRegisterName)
1629 {
1630   if(_cntInstances_map.count(genericRegisterName)==0)
1631     return;
1632   std::string aGenRegisterName =genericRegisterName;
1633   MESSAGE("Engines_Container_i::decInstanceCnt " << aGenRegisterName);
1634   ASSERT(_cntInstances_map[aGenRegisterName] > 0);
1635   _numInstanceMutex.lock(); // lock to be alone
1636   // (see finalize_removal, load_component_Library)
1637   _cntInstances_map[aGenRegisterName] -= 1;
1638   SCRUTE(_cntInstances_map[aGenRegisterName]);
1639   if (_cntInstances_map[aGenRegisterName] == 0)
1640   {
1641     std::string impl_name =
1642       Engines_Component_i::GetDynLibraryName(aGenRegisterName.c_str());
1643     SCRUTE(impl_name);
1644     void* handle = _library_map[impl_name];
1645     ASSERT(handle);
1646     _toRemove_map[impl_name] = handle;
1647   }
1648   _numInstanceMutex.unlock();
1649 }
1650
1651 //=============================================================================
1652 //! Find or create a new component instance
1653 /*!
1654 *  CORBA method: find or create an instance of the component (servant),
1655 *  load a new component class (dynamic library) if required,
1656 *
1657 *  ---- FOR COMPATIBILITY WITH 2.2 ----
1658 *
1659 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1660 *
1661 *  The servant registers itself to naming service and Registry.
1662 *  \param genericRegisterName  Name of the component to register
1663 *                              in Registry & Name Service
1664 *  \param componentName       Name of the constructed library of the component
1665 *  \return a loaded component
1666 */
1667 //=============================================================================
1668
1669 Engines::EngineComponent_ptr
1670 Abstract_Engines_Container_i::load_impl( const char* genericRegisterName,
1671                                          const char* /*componentName*/ )
1672 {
1673   char* reason;
1674   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
1675   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1676   if (load_component_Library(genericRegisterName,reason))
1677     iobject = find_or_create_instance(genericRegisterName, impl_name);
1678   CORBA::string_free(reason);
1679   return iobject._retn();
1680 }
1681
1682 Engines::EmbeddedNamingService_ptr Abstract_Engines_Container_i::get_embedded_NS_if_ssl()
1683 {
1684   SALOME_Embedded_NamingService_Client *nsc(dynamic_cast<SALOME_Embedded_NamingService_Client *>(this->_NS));
1685   if(nsc)
1686   {
1687     Engines::EmbeddedNamingService_var obj = nsc->GetObject();
1688     return Engines::EmbeddedNamingService::_duplicate(obj);
1689   }
1690   else
1691   {
1692     SALOME_Fake_NamingService *fns(dynamic_cast<SALOME_Fake_NamingService *>(this->_NS));
1693     if(fns)
1694     {
1695       Engines::EmbeddedNamingService_var ret = GetEmbeddedNamingService();
1696       return ret._retn();
1697     }
1698     else
1699       return Engines::EmbeddedNamingService::_nil();
1700   } 
1701 }
1702
1703 //=============================================================================
1704 //! Finds an already existing component instance or create a new instance
1705 /*!
1706 *  C++ method: Finds an already existing servant instance of a component, or
1707 *              create an instance.
1708 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1709 *  \param genericRegisterName    Name of the component instance to register
1710 *                                in Registry & Name Service,
1711 *                                (without _inst_n suffix, like "COMPONENT")
1712 *  \param componentLibraryName   like "libCOMPONENTEngine.so"
1713 *  \return a loaded component
1714 *
1715 *  example with names:
1716 *    - aGenRegisterName = COMPONENT (= first argument)
1717 *    - impl_name = libCOMPONENTEngine.so (= second argument)
1718 *    - _containerName = /Containers/cli76ce/FactoryServer
1719 *    - factoryName = COMPONENTEngine_factory
1720 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1721 *    - instanceName = COMPONENT_inst_1
1722 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1723 */
1724 //=============================================================================
1725
1726 Engines::EngineComponent_ptr
1727 Abstract_Engines_Container_i::find_or_create_instance(std::string genericRegisterName,
1728                                                       std::string componentLibraryName)
1729 {
1730   std::string aGenRegisterName = genericRegisterName;
1731   std::string impl_name = componentLibraryName;
1732   if (_library_map.count(impl_name) == 0)
1733   {
1734     INFOS("shared library " << impl_name <<" must be loaded before creating instance");
1735     return Engines::EngineComponent::_nil() ;
1736   }
1737   else
1738   {
1739     // --- find a registered instance in naming service, or create
1740
1741     void* handle = _library_map[impl_name];
1742     std::string component_registerBase =
1743       _containerName + "/" + aGenRegisterName;
1744     Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1745     std::string reason;
1746     try
1747     {
1748       CORBA::Object_var obj =
1749         _NS->ResolveFirst( component_registerBase.c_str());
1750       if ( CORBA::is_nil( obj ) )
1751       {
1752         iobject = createInstance(genericRegisterName,
1753                                  handle,
1754                                  reason);
1755       }
1756       else
1757       {
1758         iobject = Engines::EngineComponent::_narrow( obj ) ;
1759       }
1760     }
1761     catch (...)
1762     {
1763       INFOS( "Container_i::load_impl caught" ) ;
1764     }
1765     return iobject._retn();
1766   }
1767 }
1768
1769 //=============================================================================
1770 //! Indicate if container is a python one
1771 /*! 
1772 *  Retrieves only with container naming convention if it is a python container
1773 */
1774 //=============================================================================
1775 bool Abstract_Engines_Container_i::isPythonContainer(const char* ContainerName)
1776 {
1777   bool ret=false;
1778   size_t len=strlen(ContainerName);
1779   if(len>=2)
1780     if(strcmp(ContainerName+len-2,"Py")==0)
1781       ret=true;
1782   return ret;
1783 }
1784
1785 //=============================================================================
1786 //! Kill the container
1787 /*!
1788 *  CORBA method: Kill the container process with exit(0).
1789 *  To remove :  never returns !
1790 */
1791 //=============================================================================
1792 bool Abstract_Engines_Container_i::Kill_impl()
1793 {
1794   MESSAGE("Engines_Container_i::Kill() pid "<< getpid() << " containerName "
1795     << _containerName.c_str() << " machineName "
1796     << Kernel_Utils::GetHostname().c_str());
1797   INFOS("===============================================================");
1798   INFOS("= REMOVE calls to Kill_impl in C++ container                  =");
1799   INFOS("===============================================================");
1800   //_exit( 0 ) ;
1801   ASSERT(0);
1802   return false;
1803 }
1804
1805 //=============================================================================
1806 /*! 
1807 *  
1808 */
1809 //=============================================================================
1810 void ActSigIntHandler()
1811 {
1812 #ifndef WIN32
1813   struct sigaction SigIntAct ;
1814   SigIntAct.sa_sigaction = &SigIntHandler ;
1815   sigemptyset(&SigIntAct.sa_mask);
1816   SigIntAct.sa_flags = SA_SIGINFO ;
1817 #endif
1818
1819   // DEBUG 03.02.2005 : the first parameter of sigaction is not a mask of signals
1820   // (SIGINT | SIGUSR1) :
1821   // it must be only one signal ===> one call for SIGINT 
1822   // and an other one for SIGUSR1
1823
1824 #ifndef WIN32
1825   if ( sigaction( SIGINT , &SigIntAct, NULL ) ) 
1826   {
1827     perror("SALOME_Container main ") ;
1828     exit(0) ;
1829   }
1830   if ( sigaction( SIGUSR1 , &SigIntAct, NULL ) )
1831   {
1832     perror("SALOME_Container main ") ;
1833     exit(0) ;
1834   }
1835   if ( sigaction( SIGUSR2 , &SigIntAct, NULL ) )
1836   {
1837     perror("SALOME_Container main ") ;
1838     exit(0) ;
1839   }
1840
1841   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1842   //             use of streams (and so on) should never be used because :
1843   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1844   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1845   //             may have a "Dead-Lock" ===HangUp
1846   //==INFOS is commented
1847   //  INFOS(pthread_self() << "SigIntHandler activated") ;
1848
1849 #else  
1850   signal( SIGINT, SigIntHandler );
1851 // legacy code required to supervisor. Commented in order to avoid problems on Windows 
1852 //  signal( SIGUSR1, SigIntHandler );
1853 #endif
1854
1855 }
1856
1857 void SetCpuUsed() ;
1858 void CallCancelThread() ;
1859
1860 #ifndef WIN32
1861 void SigIntHandler(int /*what*/ ,
1862                    siginfo_t * siginfo ,
1863                    void * /*toto*/ ) 
1864 {
1865   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1866   //             use of streams (and so on) should never be used because :
1867   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1868   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1869   //             may have a "Dead-Lock" ===HangUp
1870   //==MESSAGE is commented
1871   //  MESSAGE(pthread_self() << "SigIntHandler what     " << what << std::endl
1872   //          << "              si_signo " << siginfo->si_signo << std::endl
1873   //          << "              si_code  " << siginfo->si_code << std::endl
1874   //          << "              si_pid   " << siginfo->si_pid) ;
1875
1876   if ( _Sleeping )
1877   {
1878     _Sleeping = false ;
1879     //     MESSAGE("SigIntHandler END sleeping.") ;
1880     return ;
1881   }
1882   else
1883   {
1884     ActSigIntHandler() ;
1885     if ( siginfo->si_signo == SIGUSR1 )
1886     {
1887       SetCpuUsed() ;
1888     }
1889     else if ( siginfo->si_signo == SIGUSR2 )
1890     {
1891       CallCancelThread() ;
1892     }
1893     else 
1894     {
1895       _Sleeping = true ;
1896       //      MESSAGE("SigIntHandler BEGIN sleeping.") ;
1897       int count = 0 ;
1898       while( _Sleeping )
1899       {
1900         sleep( 1 ) ;
1901         count += 1 ;
1902       }
1903       //      MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1904     }
1905     return ;
1906   }
1907 }
1908 #else // Case WIN32
1909 void SigIntHandler( int what )
1910 {
1911 #ifndef WIN32
1912   MESSAGE( pthread_self() << "SigIntHandler what     " << what << std::endl );
1913 #else
1914   MESSAGE( "SigIntHandler what     " << what << std::endl );
1915 #endif
1916   if ( _Sleeping )
1917   {
1918     _Sleeping = false ;
1919     MESSAGE("SigIntHandler END sleeping.") ;
1920     return ;
1921   }
1922   else
1923   {
1924     ActSigIntHandler() ;
1925     if ( what == SIGUSR1 )
1926     {
1927       SetCpuUsed() ;
1928     }
1929     else
1930     {
1931       _Sleeping = true ;
1932       MESSAGE("SigIntHandler BEGIN sleeping.") ;
1933       int count = 0 ;
1934       while( _Sleeping ) 
1935       {
1936         Sleep( 1000 ) ;
1937         count += 1 ;
1938       }
1939       MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1940     }
1941     return ;
1942   }
1943 }
1944 #endif
1945
1946 //=============================================================================
1947 //! Get or create a file reference object associated to a local file (to transfer it)
1948 /*!
1949 *  CORBA method: get or create a fileRef object associated to a local file
1950 *  (a file on the computer on which runs the container server), which stores
1951 *  a list of (machine, localFileName) corresponding to copies already done.
1952 *
1953 *  \param  origFileName absolute path for a local file to copy on other
1954 *          computers
1955 *  \return a fileRef object associated to the file.
1956 */
1957 //=============================================================================
1958 Engines::fileRef_ptr
1959 Abstract_Engines_Container_i::createFileRef(const char* origFileName)
1960 {
1961   std::string origName(origFileName);
1962   Engines::fileRef_var theFileRef = Engines::fileRef::_nil();
1963
1964   if (origName[0] != '/')
1965   {
1966     INFOS("path of file to copy must be an absolute path beginning with '/'");
1967     return Engines::fileRef::_nil();
1968   }
1969
1970   if (CORBA::is_nil(_fileRef_map[origName]))
1971   {
1972     CORBA::Object_var obj=_poa->id_to_reference(*_id);
1973     Engines::Container_var pCont = Engines::Container::_narrow(obj);
1974     fileRef_i* aFileRef = new fileRef_i(pCont, origFileName);
1975     theFileRef = Engines::fileRef::_narrow(aFileRef->_this());
1976     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1977     _fileRef_map[origName] = theFileRef;
1978     _numInstanceMutex.unlock() ;
1979   }
1980
1981   theFileRef =  Engines::fileRef::_duplicate(_fileRef_map[origName]);
1982   ASSERT(! CORBA::is_nil(theFileRef));
1983   return theFileRef._retn();
1984 }
1985
1986 //=============================================================================
1987 //! Get a fileTransfer reference
1988 /*!
1989 *  CORBA method:
1990 *  \return a reference to the fileTransfer object
1991 */
1992 //=============================================================================
1993 Engines::fileTransfer_ptr
1994 Abstract_Engines_Container_i::getFileTransfer()
1995 {
1996   Engines::fileTransfer_var aFileTransfer
1997     = Engines::fileTransfer::_duplicate(_fileTransfer);
1998   return aFileTransfer._retn();
1999 }
2000
2001 //=============================================================================
2002 //! Create a Salome file
2003 //=============================================================================
2004 Engines::Salome_file_ptr
2005 Abstract_Engines_Container_i::createSalome_file(const char* origFileName)
2006 {
2007   std::string origName(origFileName);
2008   if (CORBA::is_nil(_Salome_file_map[origName]))
2009   {
2010     Salome_file_i* aSalome_file = new Salome_file_i();
2011     aSalome_file->setContainer(Engines::Container::_duplicate(this->_this()));
2012     try
2013     {
2014       aSalome_file->setLocalFile(origFileName);
2015       aSalome_file->recvFiles();
2016     }
2017     catch (const SALOME::SALOME_Exception& /*e*/) //!< TODO: unused variable
2018     {
2019       return Engines::Salome_file::_nil();
2020     }
2021
2022     Engines::Salome_file_var theSalome_file = Engines::Salome_file::_nil();
2023     theSalome_file = Engines::Salome_file::_narrow(aSalome_file->_this());
2024     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
2025     _Salome_file_map[origName] = theSalome_file;
2026     _numInstanceMutex.unlock() ;
2027   }
2028
2029   Engines::Salome_file_ptr theSalome_file =
2030     Engines::Salome_file::_duplicate(_Salome_file_map[origName]);
2031   ASSERT(!CORBA::is_nil(theSalome_file));
2032   return theSalome_file;
2033 }
2034
2035 //=============================================================================
2036 /*! \brief copy a file from a remote host (container) to the local host
2037  * \param container the remote container
2038  * \param remoteFile the file to copy locally from the remote host into localFile
2039  * \param localFile the local file
2040  */
2041 //=============================================================================
2042 void Abstract_Engines_Container_i::copyFile(Engines::Container_ptr container, const char* remoteFile, const char* localFile)
2043 {
2044   Engines::fileTransfer_var fileTransfer = container->getFileTransfer();
2045
2046   FILE* fp;
2047   if ((fp = fopen(localFile,"wb")) == NULL)
2048   {
2049     INFOS("file " << localFile << " cannot be open for writing");
2050     return;
2051   }
2052
2053   CORBA::Long fileId = fileTransfer->open(remoteFile);
2054   if (fileId > 0)
2055   {
2056     Engines::fileBlock* aBlock;
2057     int toFollow = 1;
2058     int ctr=0;
2059     while (toFollow)
2060     {
2061       ctr++;
2062       //SCRUTE(ctr);
2063       aBlock = fileTransfer->getBlock(fileId);
2064       toFollow = aBlock->length();
2065       //SCRUTE(toFollow);
2066       CORBA::Octet *buf = aBlock->get_buffer();
2067       fwrite(buf, sizeof(CORBA::Octet), toFollow, fp);
2068       delete aBlock;
2069     }
2070     fclose(fp);
2071     MESSAGE("end of transfer");
2072     fileTransfer->close(fileId);
2073   }
2074   else
2075   {
2076     INFOS("open reference file for copy impossible");
2077   }
2078 }
2079
2080 //=============================================================================
2081 /*! \brief create a PyNode object to execute remote python code
2082  * \param nodeName the name of the node
2083  * \param code the python code to load
2084  * \return the PyNode
2085  */
2086 //=============================================================================
2087 Engines::PyNode_ptr Abstract_Engines_Container_i::createPyNode(const char* nodeName, const char* code)
2088 {
2089   Engines::PyNode_var node= Engines::PyNode::_nil();
2090   long ierr(-1);
2091   std::string astr;
2092   {
2093     AutoGIL gstate;
2094     PyObject *res = PyObject_CallMethod(_pyCont,
2095       (char*)"create_pynode",
2096       (char*)"ss",
2097       nodeName,
2098       code);
2099     if(res==NULL)
2100     {
2101       //internal error
2102       PyErr_Print();
2103       SALOME::ExceptionStruct es;
2104       es.type = SALOME::INTERNAL_ERROR;
2105       es.text = "can not create a python node";
2106       throw SALOME::SALOME_Exception(es);
2107     }
2108     ierr=PyLong_AsLong(PyTuple_GetItem(res,0));
2109     PyObject* result=PyTuple_GetItem(res,1);
2110     astr = PyUnicode_AsUTF8(result);
2111     Py_DECREF(res);
2112   }
2113   if(ierr==0)
2114   {
2115     Utils_Locker lck(&_mutexForDftPy);
2116     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
2117     node=Engines::PyNode::_narrow(obj);
2118     std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
2119     if(it==_dftPyNode.end())
2120     {
2121       _dftPyNode[nodeName]=node;
2122     }
2123     else
2124     {
2125       Engines::PyNode_var oldNode((*it).second);
2126       if(!CORBA::is_nil(oldNode))
2127         oldNode->UnRegister();
2128       (*it).second=node;
2129     }
2130     if(!CORBA::is_nil(node))
2131       node->Register();
2132     return node._retn();
2133   }
2134   else
2135   {
2136     SALOME::ExceptionStruct es;
2137     es.type = SALOME::INTERNAL_ERROR;
2138     es.text = astr.c_str();
2139     throw SALOME::SALOME_Exception(es);
2140   }
2141 }
2142
2143 //=============================================================================
2144 /*! \brief Retrieves the last created PyNode instance with createPyNode.
2145  *
2146  */
2147 //=============================================================================
2148 Engines::PyNode_ptr Abstract_Engines_Container_i::getDefaultPyNode(const char *nodeName)
2149 {
2150   Utils_Locker lck(&_mutexForDftPy);
2151   std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
2152   if(it==_dftPyNode.end())
2153     return Engines::PyNode::_nil();
2154   else
2155   {
2156     Engines::PyNode_var tmpVar((*it).second);
2157     if(!CORBA::is_nil(tmpVar))
2158       return Engines::PyNode::_duplicate(tmpVar);
2159     else
2160       return Engines::PyNode::_nil();
2161   }
2162 }
2163
2164 //=============================================================================
2165 /*! \brief create a PyScriptNode object to execute remote python code
2166  * \param nodeName the name of the node
2167  * \param code the python code to load
2168  * \return the PyScriptNode
2169  */
2170 //=============================================================================
2171 Engines::PyScriptNode_ptr Abstract_Engines_Container_i::createPyScriptNode(const char* nodeName, const char* code)
2172 {
2173   Engines::PyScriptNode_var node= Engines::PyScriptNode::_nil();
2174   long ierr(-1);
2175   std::string astr;
2176   {
2177     AutoGIL gstate;
2178     AutoPyRef res = PyObject_CallMethod(_pyCont,
2179       (char*)"create_pyscriptnode",
2180       (char*)"ss",
2181       nodeName,
2182       code);
2183     if( res.isNull() )
2184     {
2185       //internal error
2186       PyErr_Print();
2187       SALOME::ExceptionStruct es;
2188       es.type = SALOME::INTERNAL_ERROR;
2189       es.text = "can not create a python node";
2190       throw SALOME::SALOME_Exception(es);
2191     }
2192     ierr=PyLong_AsLong(PyTuple_GetItem(res,0));
2193     PyObject* result=PyTuple_GetItem(res,1);
2194     astr = PyUnicode_AsUTF8(result);
2195   }
2196
2197   if(ierr==0)
2198   {
2199     Utils_Locker lck(&_mutexForDftPy);
2200     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
2201     node=Engines::PyScriptNode::_narrow(obj);
2202     std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2203     if(it==_dftPyScriptNode.end())
2204     {
2205       _dftPyScriptNode[nodeName]=node;
2206     }
2207     else
2208     {
2209       Engines::PyScriptNode_var oldNode((*it).second);
2210       if(!CORBA::is_nil(oldNode))
2211         oldNode->UnRegister();
2212       (*it).second=node;
2213     }
2214     return node._retn();
2215   }
2216   else
2217   {
2218     SALOME::ExceptionStruct es;
2219     es.type = SALOME::INTERNAL_ERROR;
2220     es.text = astr.c_str();
2221     throw SALOME::SALOME_Exception(es);
2222   }
2223 }
2224
2225 void Abstract_Engines_Container_i::removePyScriptNode(const char *nodeName)
2226 {
2227   std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2228   if(it==_dftPyScriptNode.end())
2229     {
2230       std::ostringstream oss; oss << "Engines_Container_i::removePyScriptNode : node \"" << nodeName << "\" is not map !";
2231       SALOME::ExceptionStruct es;
2232       es.type = SALOME::INTERNAL_ERROR;
2233       es.text = oss.str().c_str();
2234       throw SALOME::SALOME_Exception(es);
2235     }
2236   (*it).second->UnRegister();
2237   _dftPyScriptNode.erase(it);
2238 }
2239
2240 void Abstract_Engines_Container_i::cleanAllPyScripts()
2241 {
2242   for(std::map<std::string,Engines::PyNode_var>::iterator it=_dftPyNode.begin();it!=_dftPyNode.end();it++)
2243     {
2244       Engines::PyNode_var tmpVar((*it).second);
2245       if(!CORBA::is_nil(tmpVar))
2246         tmpVar->UnRegister();
2247     }
2248   _dftPyNode.clear();
2249   for(std::map<std::string,Engines::PyScriptNode_var>::iterator it=_dftPyScriptNode.begin();it!=_dftPyScriptNode.end();it++)
2250     {
2251       Engines::PyScriptNode_var tmpVar((*it).second);
2252       if(!CORBA::is_nil(tmpVar))
2253         tmpVar->UnRegister();
2254     }
2255   _dftPyScriptNode.clear();
2256 }
2257
2258 //=============================================================================
2259 /*! \brief Retrieves the last created PyScriptNode instance with createPyScriptNode.
2260  *
2261  */
2262 //=============================================================================
2263 Engines::PyScriptNode_ptr Abstract_Engines_Container_i::getDefaultPyScriptNode(const char *nodeName)
2264 {
2265   Utils_Locker lck(&_mutexForDftPy);
2266   std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2267   if(it==_dftPyScriptNode.end())
2268     return Engines::PyScriptNode::_nil();
2269   else
2270   {
2271     Engines::PyScriptNode_var tmpVar((*it).second);
2272     if(!CORBA::is_nil(tmpVar))
2273       return Engines::PyScriptNode::_duplicate(tmpVar);
2274     else
2275       return Engines::PyScriptNode::_nil();
2276   }
2277 }
2278
2279 //=============================================================================
2280 /* int checkifexecutable(const char *filename)
2281 *
2282 * Return non-zero if the name is an executable file, and
2283 * zero if it is not executable, or if it does not exist.
2284 */
2285 //=============================================================================
2286 int checkifexecutable(const std::string& filename)
2287 {
2288   int result;
2289   struct stat statinfo;
2290
2291   result = stat(filename.c_str(), &statinfo);
2292   if (result < 0) return 0;
2293   if (!S_ISREG(statinfo.st_mode)) return 0;
2294
2295 #ifdef WIN32
2296   return 1;
2297 #else
2298   if (statinfo.st_uid == geteuid()) return statinfo.st_mode & S_IXUSR;
2299   if (statinfo.st_gid == getegid()) return statinfo.st_mode & S_IXGRP;
2300   return statinfo.st_mode & S_IXOTH;
2301 #endif
2302 }
2303
2304
2305 //=============================================================================
2306 /*! \brief Find a file by searching in a path
2307  *  \param filename file name to search
2308  *  \param path path to search in
2309  *  \param pth the complete file path if found
2310  *  \return 1 if found 0 if not 
2311 */
2312 //=============================================================================
2313 int findpathof(const std::string& path, std::string& pth, const std::string& filename)
2314 {
2315   if ( path.size() == 0 ) return 0;
2316
2317   std::string::size_type offset = 0;
2318   std::string::size_type pos = 0;
2319   int found = 0;
2320   struct stat statinfo;
2321
2322   while(!found)
2323   {
2324     pos = path.find( SEP, offset );
2325     pth = path.substr( offset, pos - offset );
2326     if ( pth.size() > 0 )
2327     {
2328       if( pth[pth.size()-1] != SLASH ) pth += SLASH;
2329       pth += filename;
2330       int result=stat(pth.c_str(), &statinfo);
2331       if(result == 0) found=1;
2332     }
2333     if (pos == std::string::npos) break;
2334     offset = pos+1;
2335   }
2336   return found;
2337 }
2338
2339 void Abstract_Engines_Container_i::registerTemporaryFile( const std::string& fileName )
2340 {
2341   _tmp_files.remove( fileName );
2342   _tmp_files.push_back( fileName );
2343 }
2344
2345 void Abstract_Engines_Container_i::unregisterTemporaryFile( const std::string& fileName )
2346 {
2347   _tmp_files.remove( fileName );
2348 }
2349
2350 void Abstract_Engines_Container_i::clearTemporaryFiles()
2351 {
2352   std::list<std::string>::const_iterator it;
2353   for ( it = _tmp_files.begin(); it != _tmp_files.end(); ++it ) {
2354 #if defined(WIN32) && defined(UNICODE)
2355         std::wstring aFile = Kernel_Utils::utf8_decode_s(*it);
2356         std::wstring command = (GetFileAttributes(aFile.c_str()) == FILE_ATTRIBUTE_DIRECTORY) ? L"rd /Q \"" : L"del /F /Q \"";
2357         command += aFile;
2358         command += L"\" 2>NUL";
2359         _wsystem(command.c_str());
2360 #else
2361 #if defined(WIN32)
2362         std::string aFile = *it;
2363         std::string command = (GetFileAttributes(aFile.c_str()) == FILE_ATTRIBUTE_DIRECTORY) ? "rd /Q \"" : "del /F /Q \"";
2364         command += aFile;
2365         command += "\" 2>NUL";
2366 #else
2367         std::string command = "rm -rf ";
2368         command += *it;
2369 #endif
2370         system(command.c_str());
2371 #endif
2372   }
2373   _tmp_files.clear();
2374 }
2375
2376 static Engines_Container_SSL_i *_container_singleton_ssl = nullptr;
2377
2378 static Engines::Container_var _container_ref_singleton_ssl;
2379
2380 Engines_Container_SSL_i *KERNEL::getContainerSA()
2381 {
2382   if(!_container_singleton_ssl)
2383   {
2384     CORBA::ORB_var orb = KERNEL::GetRefToORB();
2385     CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
2386     PortableServer::POA_var poa = PortableServer::POA::_narrow(obj);
2387     PortableServer::POAManager_var pman = poa->the_POAManager();
2388     CORBA::PolicyList policies;
2389     policies.length(0);
2390     //
2391     constexpr int ARGC = 4;
2392     constexpr const char *ARGV[ARGC] = {"Container","FactoryServer","toto",nullptr};
2393     std::unique_ptr<char*[]> argv( new char *[ARGC+1] );
2394     std::vector< std::unique_ptr<char[]> > argvv(ARGC);
2395     argv[ARGC] = nullptr;
2396     for(int i = 0 ; i < ARGC ; ++i)
2397     {
2398       if(ARGV[i])
2399       {
2400         argvv[i].reset( new char[strlen(ARGV[i])+1] );
2401         strcpy(argvv[i].get(),ARGV[i]);
2402         argv[i] = argvv[i].get();
2403       }
2404       else
2405         argv[i] = nullptr;
2406     }
2407     SALOME_Fake_NamingService ns;
2408     _container_singleton_ssl = new Engines_Container_SSL_i(orb,poa,(char *)"FactoryServer",2,argv.get(),&ns,false);
2409     PortableServer::ObjectId * cont_id = _container_singleton_ssl->getCORBAId();
2410     //
2411     CORBA::Object_var zeRef = poa->id_to_reference(*cont_id);
2412     _container_ref_singleton_ssl = Engines::Container::_narrow(zeRef);
2413   }
2414   return _container_singleton_ssl;
2415 }
2416
2417 Engines::Container_var KERNEL::getContainerRefSA()
2418 {
2419   getContainerSA();
2420   return _container_ref_singleton_ssl;
2421 }