Salome HOME
547ce7f401f98f013f6a4a42afbb445809db5ca0
[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   MESSAGE("Engines_Container_i::Shutdown() -- step 2");
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   MESSAGE("Engines_Container_i::Shutdown() -- step 3");
749   try
750   {
751     this->cleanAllPyScripts();
752     //
753     {
754       AutoGIL gstate;
755       AutoPyRef result = PyObject_CallMethod(_pyCont, (char*)"shutdownPy", (char*)"",nullptr);
756     }
757   }
758   catch(...)
759   {
760   }
761   MESSAGE("Engines_Container_i::Shutdown() -- step 4");
762   //
763   if(_isServantAloneInProcess)
764   {
765     MESSAGE("Effective Shutdown of container Begins...");
766     if(!CORBA::is_nil(_orb))
767       _orb->shutdown(0);
768   }
769 }
770
771 //=============================================================================
772 //! load a component implementation
773 /*! 
774 *  CORBA method
775 *  \param componentName         component name
776 *  \param reason                explains error when load fails
777 *  \return true if dlopen successful or already done, false otherwise
778 */
779 //=============================================================================
780 bool
781 Abstract_Engines_Container_i::load_component_Library(const char* componentName, CORBA::String_out reason)
782 {
783
784   //=================================================================
785   // --- C++ implementation section 
786   //=================================================================
787   std::string retso;
788   if(load_component_CppImplementation(componentName,retso))
789   {
790     reason=CORBA::string_dup("");
791     return true;
792   }
793   else if(retso != "ImplementationNotFound")
794   {
795     reason=CORBA::string_dup(retso.c_str());
796     return false;
797   }
798
799   retso="Component ";
800   retso+=componentName;
801   retso+=": Can't find C++ implementation ";
802   retso+=std::string(LIB) + componentName + ENGINESO;
803
804   //=================================================================
805   // --- Python implementation section 
806   //=================================================================
807   std::string retpy;
808   if(load_component_PythonImplementation(componentName,retpy))
809   {
810     reason=CORBA::string_dup("");
811     return true;
812   }
813   else if(retpy != "ImplementationNotFound")
814   {
815     reason=CORBA::string_dup(retpy.c_str());
816     return false;
817   }
818   
819   retpy="Component ";
820   retpy+=componentName;
821   retpy+=": Can't find python implementation ";
822   retpy+=componentName;
823   retpy+="(.py)";
824
825   //=================================================================
826   // -- Executable implementation section
827   //=================================================================
828   std::string retex;
829   if(load_component_ExecutableImplementation(componentName,retex))
830   {
831     reason=CORBA::string_dup("");
832     return true;
833   }
834   else if(retex != "ImplementationNotFound")
835   {
836     reason=CORBA::string_dup(retex.c_str());
837     return false;
838   }
839
840   retex="Component ";
841   retex+=componentName;
842   retex+=": Can't find executable implementation ";
843   retex+=componentName;
844   retex+=".exe";
845
846   std::string ret="Component implementation not found: ";
847   ret += componentName ;
848   ret += '\n' ;
849   ret += retso+ '\n' ;
850   ret += retpy+ '\n' ;
851   ret += retex+ '\n' ;
852
853   std::cerr << ret << std::endl;
854   reason=CORBA::string_dup(ret.c_str());
855
856   return false;
857 }
858
859 //=============================================================================
860 //! try to load a C++ component implementation
861 /*! 
862 *  C++ method: 
863 *  \param componentName      the name of the component (COMPONENT, for example)
864 *  \param reason             explains error when load fails
865 *  \return true if loading is successful or already done, false otherwise
866 */
867 //=============================================================================
868 bool
869 Abstract_Engines_Container_i::load_component_CppImplementation(const char* componentName, std::string& reason)
870 {
871   std::string aCompName(componentName);
872   std::string impl_name = std::string(LIB) + aCompName + ENGINESO;
873   SCRUTE(impl_name);
874
875   _numInstanceMutex.lock(); // lock to be alone
876   // (see decInstanceCnt, finalize_removal))
877   if (_toRemove_map.count(impl_name) != 0) _toRemove_map.erase(impl_name);
878   if (_library_map.count(impl_name) != 0)
879   {
880     MESSAGE("Library " << impl_name << " already loaded");
881     _numInstanceMutex.unlock();
882     reason="";
883     return true;
884   }
885   _numInstanceMutex.unlock();
886
887 #ifndef WIN32
888   void* handle;
889   handle = dlopen( impl_name.c_str() , RTLD_NOW | RTLD_GLOBAL ) ;
890   if ( !handle )
891   {
892     //not loadable. Try to find the lib file in LD_LIBRARY_PATH
893     std::string path;
894 #ifdef __APPLE__
895       char* p=getenv("DYLD_LIBRARY_PATH");
896 #else
897       char* p=getenv("LD_LIBRARY_PATH");
898 #endif
899       if(p)path=p;
900       path=path+SEP+"/usr/lib"+SEP+"/lib";
901
902       std::string pth;
903       if(findpathof(path, pth, impl_name))
904         {
905           //found but not loadable
906           reason="Component ";
907           reason+=aCompName;
908           reason+=": C++ implementation found ";
909           reason+=pth;
910           reason+=" but it is not loadable. Error:\n";
911           reason+=dlerror();
912           std::cerr << reason << std::endl;
913           return false;
914         }
915       else
916         {
917           //not found
918           //continue with other implementation
919           reason="ImplementationNotFound";
920           return false;
921     }
922   }
923 #else
924   HINSTANCE handle;
925 #ifdef UNICODE
926   std::wstring libToLoad = Kernel_Utils::utf8_decode_s( impl_name );
927 #else
928   std::string libToLoad = impl_name;
929 #endif
930   handle = LoadLibrary(libToLoad.c_str() );
931   if ( !handle )
932   {
933     reason="ImplementationNotFound";
934   }
935 #endif
936
937   if ( handle )
938   {
939     _numInstanceMutex.lock();
940     _library_map[impl_name] = handle;
941     _numInstanceMutex.unlock();
942     reason="";
943     return true;
944   }
945
946   return false;
947
948 }
949 //=============================================================================
950 //! try to load a Python component implementation
951 /*! 
952 *  C++ method: 
953 *  \param componentName         name of the component
954 *  \param reason                explains error when load fails
955 *  \return true if loading is successful or already done, false otherwise
956 */
957 //=============================================================================
958 bool
959 Abstract_Engines_Container_i::load_component_PythonImplementation(const char* componentName, std::string& reason)
960 {
961   std::string aCompName(componentName);
962
963   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
964   if (_library_map.count(aCompName) != 0)
965   {
966     _numInstanceMutex.unlock() ;
967     reason="";
968     return true; // Python Component, already imported
969   }
970   _numInstanceMutex.unlock() ;
971
972   {
973     AutoGIL gstate;
974     AutoPyRef result = PyObject_CallMethod(_pyCont,
975                                           (char*)"import_component",
976                                           (char*)"s",componentName);
977
978     reason=PyUnicode_AsUTF8(result);
979     SCRUTE(reason);
980   }
981
982   if (reason=="")
983   {
984     //Python component has been loaded (import componentName)
985     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
986     _library_map[aCompName] = (void *)_pyCont; // any non O value OK
987     _numInstanceMutex.unlock() ;
988     MESSAGE("import Python: "<< aCompName <<" OK");
989     return true;
990   }
991   else if(reason=="ImplementationNotFound")
992   {
993     //Python implementation has not been found. Continue with other implementation
994     reason="ImplementationNotFound";
995   }
996   else
997   {
998     //Python implementation has been found but loading has failed
999     std::cerr << reason << std::endl;
1000   }
1001   return false;
1002
1003 }
1004 //=============================================================================
1005 //! try to load a Executable component implementation
1006 /*! 
1007 *  C++ method: 
1008 *  \param componentName        name of the component
1009 *  \param reason               explains error when load fails
1010 *  \return true if loading is successful or already done, false otherwise
1011 */
1012 //=============================================================================
1013 bool
1014 Abstract_Engines_Container_i::load_component_ExecutableImplementation(const char* componentName, std::string& reason)
1015 {
1016   std::string aCompName(componentName);
1017   std::string executable=aCompName+".exe";
1018
1019   std::string path;
1020   std::string pth;
1021
1022   char* p=getenv("PATH");
1023   if(p)path=p;
1024
1025   if (findpathof(path, pth, executable))
1026   {
1027     if(checkifexecutable(pth))
1028     {
1029       _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1030       _library_map[executable] = (void *)1; // any non O value OK
1031       _numInstanceMutex.unlock() ;
1032       MESSAGE("import executable: "<< pth <<" OK");
1033       reason="";
1034       return true;
1035     }
1036     reason="Component ";
1037     reason+=aCompName;
1038     reason+=": implementation found ";
1039     reason+=pth;
1040     reason+=" but it is not executable";
1041     std::cerr << reason << std::endl;
1042   }
1043   else
1044   {
1045     reason="ImplementationNotFound";
1046   }
1047   return false;
1048 }
1049
1050 //=============================================================================
1051 //! Create a new component instance
1052 /*! 
1053 *  CORBA method: Creates a new servant instance of a component.
1054 *  The servant registers itself to naming service and Registry.tdlib
1055 *  \param genericRegisterName  Name of the component instance to register
1056 *                         in Registry & Name Service (without _inst_n suffix)
1057 *  \return a loaded component
1058 */
1059 //=============================================================================
1060 Engines::EngineComponent_ptr
1061 Abstract_Engines_Container_i::create_component_instance(const char*genericRegisterName)
1062 {
1063   Engines::FieldsDict_var env = new Engines::FieldsDict;
1064   char* reason;
1065   Engines::EngineComponent_ptr compo =
1066     create_component_instance_env(genericRegisterName, env, reason);
1067   CORBA::string_free(reason);
1068   return compo;
1069 }
1070
1071 void EffectiveOverrideEnvironment( const Engines::FieldsDict& env )
1072 {
1073   MESSAGE("Positionning environment on container ");
1074   for (CORBA::ULong i=0; i < env.length(); i++)
1075   {
1076     if (env[i].value.type()->kind() == CORBA::tk_string)
1077     {
1078       const char *value = nullptr;
1079       env[i].value >>= value;
1080       MESSAGE( env[i].key << " = " << value);
1081 #ifndef WIN32
1082       if( setenv(env[i].key,value,1) != 0 )
1083       {
1084         int errsv = errno;
1085         std::string sErr( strerror( errsv) );
1086         MESSAGE(sErr);
1087       }
1088 #endif
1089     }
1090   }
1091 }
1092
1093 std::vector< std::pair<std::string,std::string> > GetOSEnvironment()
1094 {
1095   std::vector< std::pair<std::string,std::string> > ret;
1096 #ifndef WIN32
1097   char **envPt( environ );
1098   for(;*envPt != nullptr; ++envPt)
1099   {
1100     std::string s( *envPt );
1101     auto pos = s.find_first_of('=');
1102     std::string k( s.substr(0,pos) ),v( s.substr(pos+1) );
1103     ret.emplace_back( std::pair<std::string,std::string>(k,v) );
1104   }
1105 #endif
1106   return ret;
1107 }
1108
1109 void Abstract_Engines_Container_i::override_environment( const Engines::FieldsDict& env )
1110 {
1111   EffectiveOverrideEnvironment(env);
1112 }
1113
1114 void Abstract_Engines_Container_i::override_environment_python( const Engines::FieldsDict& env )
1115 {
1116   constexpr char NODE_NAME[] = "ScriptNodeForEnv";
1117   constexpr char SCRIPT[] = R"foo(
1118 import os
1119 for k,v in env:
1120   os.environ[k] = v
1121 )foo";
1122   Engines::PyScriptNode_var scriptNode = this->createPyScriptNode(NODE_NAME,SCRIPT);
1123   auto sz = env.length();
1124   Engines::listofstring keys, vals;
1125   keys.length( sz ); vals.length( sz );
1126   for( auto i = 0 ; i < sz ; ++i )
1127   {
1128     keys[i] = CORBA::string_dup( env[i].key );
1129     const char *value = nullptr;
1130     env[i].value >>= value;
1131     vals[i] = CORBA::string_dup( value );
1132   }
1133   scriptNode->executeSimple(keys,vals);
1134   this->removePyScriptNode(NODE_NAME);
1135 }
1136
1137 Engines::FieldsDict *Abstract_Engines_Container_i::get_os_environment()
1138 {
1139   std::unique_ptr<Engines::FieldsDict> ret( new Engines::FieldsDict );
1140   std::vector< std::pair<std::string,std::string> > retCpp( GetOSEnvironment() );
1141   auto sz = retCpp.size();
1142   ret->length( sz );
1143   for(auto i = 0 ; i < sz ; ++i)
1144   {
1145     (*ret)[i].key = CORBA::string_dup( retCpp[i].first.c_str() );
1146     (*ret)[i].value <<= CORBA::string_dup( retCpp[i].second.c_str() );
1147   }
1148   return ret.release();
1149 }
1150
1151 void Abstract_Engines_Container_i::execute_python_code(const char *code)
1152 {
1153   AutoGIL gstate;
1154   if( PyRun_SimpleString( code ) != 0 )
1155   {
1156     std::string error = parseException();
1157     THROW_SALOME_CORBA_EXCEPTION(error.c_str(),SALOME::INTERNAL_ERROR);
1158   }
1159 }
1160
1161 //=============================================================================
1162 //! Create a new component instance with environment variables specified
1163 /*! 
1164 *  CORBA method: Creates a new servant instance of a component.
1165 *  The servant registers itself to naming service and Registry.
1166 *  \param genericRegisterName  Name of the component instance to register
1167 *                         in Registry & Name Service (without _inst_n suffix)
1168 *  \param env             dict of env variables
1169 *  \param reason          explains error when create_component_instance_env fails
1170 *  \return a loaded component
1171 */
1172 //=============================================================================
1173 Engines::EngineComponent_ptr
1174 Abstract_Engines_Container_i::create_component_instance_env(const char*genericRegisterName,
1175                                                    const Engines::FieldsDict& env,
1176                                                    CORBA::String_out reason)
1177 {
1178   std::string error;
1179   if (_library_map.count(genericRegisterName) != 0)
1180   {
1181     // It's a Python component
1182     Engines::EngineComponent_ptr compo = createPythonInstance(genericRegisterName, error);
1183     reason=CORBA::string_dup(error.c_str());
1184     return compo;
1185   }
1186
1187   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
1188   if (_library_map.count(impl_name) != 0)
1189   {
1190     // It's a C++ component
1191     void* handle = _library_map[impl_name];
1192     Engines::EngineComponent_ptr compo = createInstance(genericRegisterName, handle, error);
1193     reason=CORBA::string_dup(error.c_str());
1194     return compo;
1195   }
1196
1197   impl_name = std::string(genericRegisterName) + ".exe";
1198   if (_library_map.count(impl_name) != 0)
1199   {
1200     //It's an executable component
1201     Engines::EngineComponent_ptr compo = createExecutableInstance(genericRegisterName, env, error);
1202     reason=CORBA::string_dup(error.c_str());
1203     return compo;
1204   }
1205
1206   error="load_component_Library has probably not been called for component: ";
1207   error += genericRegisterName;
1208   INFOS(error);
1209   reason=CORBA::string_dup(error.c_str());
1210   return Engines::EngineComponent::_nil() ;
1211 }
1212
1213 //=============================================================================
1214 //! Create a new component instance (Executable implementation)
1215 /*! 
1216 *  \param CompName               Name of the component instance
1217 *  \param env                    dict of env variables
1218 *  \param reason                 explains error when creation fails
1219 *  \return a loaded component
1220 *
1221 *   This component is implemented in an executable with name genericRegisterName.exe
1222 *   It must register itself in Naming Service. The container waits some time (10 s max)
1223 *   it's registration.
1224 */
1225 //=============================================================================
1226 Engines::EngineComponent_ptr
1227 Abstract_Engines_Container_i::createExecutableInstance(std::string CompName,
1228                                                       const Engines::FieldsDict& env,
1229                                                       std::string& reason)
1230 {
1231   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1232
1233   _numInstanceMutex.lock() ; // lock on the instance number
1234   _numInstance++ ;
1235   int numInstance = _numInstance ;
1236   _numInstanceMutex.unlock() ;
1237
1238   char aNumI[12];
1239   sprintf( aNumI , "%d" , numInstance ) ;
1240   std::string instanceName = CompName + "_inst_" + aNumI ;
1241   std::string component_registerName = _containerName + "/" + instanceName;
1242
1243   //check if an entry exist in naming service
1244   CORBA::Object_var nsobj = _NS->Resolve(component_registerName.c_str());
1245   if ( !CORBA::is_nil(nsobj) )
1246   {
1247     // unregister the registered component
1248     _NS->Destroy_Name(component_registerName.c_str());
1249     //kill or shutdown it ???
1250   }
1251
1252   // first arg container ior string
1253   // second arg container name
1254   // third arg instance name
1255
1256   Engines::Container_var pCont= _this();
1257   CORBA::String_var sior =  _orb->object_to_string(pCont);
1258
1259   std::string command;
1260   command="mkdir -p ";
1261   command+=instanceName;
1262   command+=";cd ";
1263   command+=instanceName;
1264   command+=";";
1265   command+=CompName ;
1266   command+=".exe";
1267   command+=" ";
1268   command+= sior; // container ior string
1269   command+=" ";
1270   command+=_containerName; //container name
1271   command+=" ";
1272   command+=instanceName; //instance name
1273   command+=" &";
1274   MESSAGE("SALOME_Container::create_component_instance command=" << command);
1275
1276 #ifndef WIN32
1277   // use fork/execl instead of system to get finer control on env variables
1278   int status;
1279   pid_t pid = fork();
1280   if(pid == 0) // child
1281   {
1282     EffectiveOverrideEnvironment(env);
1283
1284     execl("/bin/sh", "sh", "-c", command.c_str() , (char *)0);
1285     status=-1;
1286   }
1287   else if(pid < 0)       // failed to fork
1288   {
1289     status=-1;
1290   }
1291   else            //parent
1292   {
1293     pid_t tpid;
1294     do
1295     {
1296       tpid = wait(&status);
1297     } while (tpid != pid);
1298   }
1299 #else
1300   // launch component with a system call
1301   int status=system(command.c_str());
1302 #endif
1303
1304   if (status == -1)
1305   {
1306     reason="SALOME_Container::create_component_instance system failed (system command status -1)";
1307     MESSAGE(reason);
1308     return Engines::EngineComponent::_nil();
1309   }
1310 #ifndef WIN32
1311   else if (WEXITSTATUS(status) == 217)
1312   {
1313     reason="SALOME_Container::create_component_instance system failed (system command status 217)";
1314     MESSAGE(reason);
1315     return Engines::EngineComponent::_nil();
1316   }
1317 #endif
1318   else
1319   {
1320     int count=20;
1321     if (getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT") != 0)
1322     {
1323       std::string new_count_str = getenv("TIMEOUT_TO_WAIT_EXE_COMPONENT");
1324       int new_count;
1325       std::istringstream ss(new_count_str);
1326       if (!(ss >> new_count))
1327       {
1328         INFOS("[Container] TIMEOUT_TO_WAIT_EXE_COMPONENT should be an int");
1329       }
1330       else
1331         count = new_count;
1332     }
1333     INFOS("[Container] waiting " << count << " second steps exe component ");
1334     CORBA::Object_var obj = CORBA::Object::_nil() ;
1335     while ( CORBA::is_nil(obj) && count )
1336     {
1337 #ifndef WIN32
1338       sleep( 1 ) ;
1339 #else
1340       Sleep(1000);
1341 #endif
1342       count-- ;
1343       MESSAGE( count << ". Waiting for component " << CompName);
1344       obj = _NS->Resolve(component_registerName.c_str());
1345     }
1346
1347     if(CORBA::is_nil(obj))
1348     {
1349       reason="SALOME_Container::create_component_instance failed";
1350       MESSAGE(reason);
1351       return Engines::EngineComponent::_nil();
1352     }
1353     else
1354     {
1355       MESSAGE("SALOME_Container::create_component_instance successful");
1356       iobject = Engines::EngineComponent::_narrow(obj);
1357       _listInstances_map[instanceName] = iobject;
1358       return iobject._retn();
1359     }
1360   }
1361 }
1362
1363
1364 //=============================================================================
1365 //! Create a new component instance (Python implementation)
1366 /*! 
1367 *  \param CompName               Name of the component instance
1368 *  \param reason                 explains error when creation fails
1369 *  \return a loaded component
1370 */
1371 //=============================================================================
1372 Engines::EngineComponent_ptr
1373 Abstract_Engines_Container_i::createPythonInstance(std::string CompName,
1374                                           std::string& reason)
1375 {
1376   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1377
1378   _numInstanceMutex.lock() ; // lock on the instance number
1379   _numInstance++ ;
1380   int numInstance = _numInstance ;
1381   _numInstanceMutex.unlock() ;
1382
1383   char aNumI[12];
1384   sprintf( aNumI , "%d" , numInstance ) ;
1385   std::string instanceName = CompName + "_inst_" + aNumI ;
1386   std::string component_registerName = _containerName + "/" + instanceName;
1387   std::string iors;
1388   {
1389     AutoGIL gstate;
1390     AutoPyRef result = PyObject_CallMethod(_pyCont,
1391                                           (char*)"create_component_instance",
1392                                           (char*)"ss",
1393                                           CompName.c_str(),
1394                                           instanceName.c_str());
1395     const char *ior;
1396     const char *error;
1397     PyArg_ParseTuple(result,"ss", &ior, &error);
1398     iors = ior;
1399     reason=error;
1400   }
1401
1402   if( iors!="" )
1403   {
1404     CORBA::Object_var obj = _orb->string_to_object(iors.c_str());
1405     iobject = Engines::EngineComponent::_narrow( obj ) ;
1406     _listInstances_map[instanceName] = iobject;
1407   }
1408   return iobject._retn();
1409 }
1410
1411 char *
1412 Abstract_Engines_Container_i::create_python_service_instance(const char * CompName,
1413                                                     CORBA::String_out reason)
1414 {
1415   CORBA::Object_var object = CORBA::Object::_nil();
1416
1417   _numInstanceMutex.lock() ; // lock on the instance number
1418   _numInstance++ ;
1419   int numInstance = _numInstance ;
1420   _numInstanceMutex.unlock() ;
1421
1422   char aNumI[12];
1423   sprintf( aNumI , "%d" , numInstance ) ;
1424   std::string instanceName = std::string(CompName) + "_inst_" + aNumI ;
1425   std::string component_registerName = _containerName + "/" + instanceName;
1426
1427   char * _ior = nullptr;
1428   {
1429     AutoGIL gstate;
1430     AutoPyRef result = PyObject_CallMethod(_pyCont,
1431                                           (char*)"create_component_instance",
1432                                           (char*)"ss",
1433                                           CompName,
1434                                           instanceName.c_str());
1435     const char *ior;
1436     const char *error;
1437     PyArg_ParseTuple(result,"ss", &ior, &error);
1438     reason = CORBA::string_dup(error);
1439     _ior = CORBA::string_dup(ior);
1440   }
1441   return _ior;
1442 }
1443
1444
1445 //=============================================================================
1446 //! Create a new component instance (C++ implementation)
1447 /*! 
1448 *  C++ method: create a servant instance of a component.
1449 *  \param genericRegisterName    Name of the component instance to register
1450 *                                in Registry & Name Service,
1451 *                                (without _inst_n suffix, like "COMPONENT")
1452 *  \param handle                 loaded library handle
1453 *  \param reason                 explains error when creation fails
1454 *  \return a loaded component
1455
1456 *  example with names:
1457 *    - aGenRegisterName = COMPONENT (= first argument)
1458 *    - _containerName = /Containers/cli76ce/FactoryServer
1459 *    - factoryName = COMPONENTEngine_factory
1460 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1461 *    - instanceName = COMPONENT_inst_1
1462 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1463 */
1464 //=============================================================================
1465 Engines::EngineComponent_ptr
1466 Abstract_Engines_Container_i::createInstance(std::string genericRegisterName,
1467                                     void *handle,
1468                                     std::string& reason)
1469 {
1470   // --- find the factory
1471
1472   std::string aGenRegisterName = genericRegisterName;
1473   std::string factory_name = aGenRegisterName + std::string("Engine_factory");
1474   SCRUTE(factory_name) ;
1475
1476   typedef PortableServer::ObjectId* (*FACTORY_FUNCTION) (CORBA::ORB_ptr,
1477                                                          PortableServer::POA_ptr, 
1478                                                          PortableServer::ObjectId *, 
1479                                                          const char *, 
1480                                                          const char *) ;
1481
1482 #ifndef WIN32
1483   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)dlsym( handle, factory_name.c_str() );
1484 #else
1485   FACTORY_FUNCTION Component_factory = (FACTORY_FUNCTION)GetProcAddress( (HINSTANCE)handle, factory_name.c_str() );
1486 #endif
1487
1488   if ( !Component_factory )
1489   {
1490     MESSAGE( "Can't resolve symbol: " + factory_name );
1491 #ifndef WIN32
1492     reason=dlerror();
1493     MESSAGE(reason);
1494 #endif
1495     return Engines::EngineComponent::_nil() ;
1496   }
1497
1498   // --- create instance
1499
1500   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1501
1502   try
1503   {
1504     _numInstanceMutex.lock() ; // lock on the instance number
1505     _numInstance++ ;
1506     int numInstance = _numInstance ;
1507     _numInstanceMutex.unlock() ;
1508
1509     char aNumI[12];
1510     sprintf( aNumI , "%d" , numInstance ) ;
1511     std::string instanceName = aGenRegisterName + "_inst_" + aNumI ;
1512     std::string component_registerName =
1513       _containerName + "/" + instanceName;
1514
1515     // --- Instantiate required CORBA object
1516
1517     PortableServer::ObjectId *id ; //not owner, do not delete (nore use var)
1518     id = (Component_factory) ( _orb, _poa, _id, instanceName.c_str(),
1519                                                 aGenRegisterName.c_str() ) ;
1520     if (id == NULL)
1521     {
1522       reason="Can't get ObjectId from factory";
1523       INFOS(reason);
1524       return iobject._retn();
1525     }
1526
1527     // --- get reference from id
1528
1529     CORBA::Object_var obj = _poa->id_to_reference(*id);
1530     iobject = Engines::EngineComponent::_narrow( obj ) ;
1531
1532     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1533     _listInstances_map[instanceName] = iobject;
1534     _cntInstances_map[aGenRegisterName] += 1;
1535     _numInstanceMutex.unlock() ;
1536     SCRUTE(aGenRegisterName);
1537     SCRUTE(_cntInstances_map[aGenRegisterName]);
1538
1539     // --- register the engine under the name
1540     //     containerName(.dir)/instanceName(.object)
1541
1542     _NS->Register( iobject , component_registerName.c_str() ) ;
1543     MESSAGE( component_registerName.c_str() << " bound" ) ;
1544   }
1545   catch (...)
1546   {
1547     reason="Container_i::createInstance exception caught";
1548     INFOS(reason) ;
1549   }
1550   return iobject._retn();
1551 }
1552
1553 //=============================================================================
1554 //! Find an existing (in the container) component instance
1555 /*!
1556 *  CORBA method: Finds a servant instance of a component
1557 *  \param registeredName  Name of the component in Registry or Name Service,
1558 *                         without instance suffix number
1559 *  \return the first found instance
1560 */
1561 //=============================================================================
1562 Engines::EngineComponent_ptr
1563 Abstract_Engines_Container_i::find_component_instance( const char* registeredName)
1564 {
1565   Engines::EngineComponent_var anEngine = Engines::EngineComponent::_nil();
1566   std::map<std::string,Engines::EngineComponent_var>::iterator itm =_listInstances_map.begin();
1567   while (itm != _listInstances_map.end())
1568   {
1569     std::string instance = (*itm).first;
1570     SCRUTE(instance);
1571     if (instance.find(registeredName) == 0)
1572     {
1573       anEngine = (*itm).second;
1574       return anEngine._retn();
1575     }
1576     itm++;
1577   }
1578   return anEngine._retn();
1579 }
1580
1581 //=============================================================================
1582 //! Remove the component instance from container
1583 /*!
1584 *  CORBA method: Stops the component servant, and deletes all related objects
1585 *  \param component_i     Component to be removed
1586 */
1587 //=============================================================================
1588
1589 void Abstract_Engines_Container_i::remove_impl(Engines::EngineComponent_ptr component_i)
1590 {
1591   ASSERT(! CORBA::is_nil(component_i));
1592   std::string instanceName = component_i->instanceName() ;
1593   MESSAGE("unload component " << instanceName);
1594   _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1595   _listInstances_map.erase(instanceName);
1596   _numInstanceMutex.unlock() ;
1597   component_i->destroy() ;
1598   _NS->Destroy_Name(instanceName.c_str());
1599 }
1600
1601 //=============================================================================
1602 //! Unload component libraries from the container
1603 /*!
1604 *  CORBA method: Discharges unused libraries from the container.
1605 */
1606 //=============================================================================
1607 void Abstract_Engines_Container_i::finalize_removal()
1608 {
1609   MESSAGE("finalize unload : dlclose");
1610   _numInstanceMutex.lock(); // lock to be alone
1611   // (see decInstanceCnt, load_component_Library)
1612   std::map<std::string, void *>::iterator ith;
1613   for (ith = _toRemove_map.begin(); ith != _toRemove_map.end(); ith++)
1614   {
1615     void *handle = (*ith).second;
1616     std::string impl_name= (*ith).first;
1617     if (handle)
1618     {
1619       SCRUTE(handle);
1620       SCRUTE(impl_name);
1621       //        dlclose(handle);                // SALOME unstable after ...
1622       //        _library_map.erase(impl_name);
1623     }
1624   }
1625   _toRemove_map.clear();
1626   _numInstanceMutex.unlock();
1627 }
1628
1629 //=============================================================================
1630 //! Decrement component instance reference count
1631 /*!
1632 *
1633 */
1634 //=============================================================================
1635 void Abstract_Engines_Container_i::decInstanceCnt(std::string genericRegisterName)
1636 {
1637   if(_cntInstances_map.count(genericRegisterName)==0)
1638     return;
1639   std::string aGenRegisterName =genericRegisterName;
1640   MESSAGE("Engines_Container_i::decInstanceCnt " << aGenRegisterName);
1641   ASSERT(_cntInstances_map[aGenRegisterName] > 0);
1642   _numInstanceMutex.lock(); // lock to be alone
1643   // (see finalize_removal, load_component_Library)
1644   _cntInstances_map[aGenRegisterName] -= 1;
1645   SCRUTE(_cntInstances_map[aGenRegisterName]);
1646   if (_cntInstances_map[aGenRegisterName] == 0)
1647   {
1648     std::string impl_name =
1649       Engines_Component_i::GetDynLibraryName(aGenRegisterName.c_str());
1650     SCRUTE(impl_name);
1651     void* handle = _library_map[impl_name];
1652     ASSERT(handle);
1653     _toRemove_map[impl_name] = handle;
1654   }
1655   _numInstanceMutex.unlock();
1656 }
1657
1658 //=============================================================================
1659 //! Find or create a new component instance
1660 /*!
1661 *  CORBA method: find or create an instance of the component (servant),
1662 *  load a new component class (dynamic library) if required,
1663 *
1664 *  ---- FOR COMPATIBILITY WITH 2.2 ----
1665 *
1666 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1667 *
1668 *  The servant registers itself to naming service and Registry.
1669 *  \param genericRegisterName  Name of the component to register
1670 *                              in Registry & Name Service
1671 *  \param componentName       Name of the constructed library of the component
1672 *  \return a loaded component
1673 */
1674 //=============================================================================
1675
1676 Engines::EngineComponent_ptr
1677 Abstract_Engines_Container_i::load_impl( const char* genericRegisterName,
1678                                          const char* /*componentName*/ )
1679 {
1680   char* reason;
1681   std::string impl_name = std::string(LIB) + genericRegisterName + ENGINESO;
1682   Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1683   if (load_component_Library(genericRegisterName,reason))
1684     iobject = find_or_create_instance(genericRegisterName, impl_name);
1685   CORBA::string_free(reason);
1686   return iobject._retn();
1687 }
1688
1689 Engines::EmbeddedNamingService_ptr Abstract_Engines_Container_i::get_embedded_NS_if_ssl()
1690 {
1691   SALOME_Embedded_NamingService_Client *nsc(dynamic_cast<SALOME_Embedded_NamingService_Client *>(this->_NS));
1692   if(nsc)
1693   {
1694     Engines::EmbeddedNamingService_var obj = nsc->GetObject();
1695     return Engines::EmbeddedNamingService::_duplicate(obj);
1696   }
1697   else
1698   {
1699     SALOME_Fake_NamingService *fns(dynamic_cast<SALOME_Fake_NamingService *>(this->_NS));
1700     if(fns)
1701     {
1702       Engines::EmbeddedNamingService_var ret = GetEmbeddedNamingService();
1703       return ret._retn();
1704     }
1705     else
1706       return Engines::EmbeddedNamingService::_nil();
1707   } 
1708 }
1709
1710 //=============================================================================
1711 //! Finds an already existing component instance or create a new instance
1712 /*!
1713 *  C++ method: Finds an already existing servant instance of a component, or
1714 *              create an instance.
1715 *  ---- USE ONLY FOR MULTISTUDY INSTANCES ! --------
1716 *  \param genericRegisterName    Name of the component instance to register
1717 *                                in Registry & Name Service,
1718 *                                (without _inst_n suffix, like "COMPONENT")
1719 *  \param componentLibraryName   like "libCOMPONENTEngine.so"
1720 *  \return a loaded component
1721 *
1722 *  example with names:
1723 *    - aGenRegisterName = COMPONENT (= first argument)
1724 *    - impl_name = libCOMPONENTEngine.so (= second argument)
1725 *    - _containerName = /Containers/cli76ce/FactoryServer
1726 *    - factoryName = COMPONENTEngine_factory
1727 *    - component_registerBase = /Containers/cli76ce/FactoryServer/COMPONENT
1728 *    - instanceName = COMPONENT_inst_1
1729 *    - component_registerName = /Containers/cli76ce/FactoryServer/COMPONENT_inst_1
1730 */
1731 //=============================================================================
1732
1733 Engines::EngineComponent_ptr
1734 Abstract_Engines_Container_i::find_or_create_instance(std::string genericRegisterName,
1735                                                       std::string componentLibraryName)
1736 {
1737   std::string aGenRegisterName = genericRegisterName;
1738   std::string impl_name = componentLibraryName;
1739   if (_library_map.count(impl_name) == 0)
1740   {
1741     INFOS("shared library " << impl_name <<" must be loaded before creating instance");
1742     return Engines::EngineComponent::_nil() ;
1743   }
1744   else
1745   {
1746     // --- find a registered instance in naming service, or create
1747
1748     void* handle = _library_map[impl_name];
1749     std::string component_registerBase =
1750       _containerName + "/" + aGenRegisterName;
1751     Engines::EngineComponent_var iobject = Engines::EngineComponent::_nil() ;
1752     std::string reason;
1753     try
1754     {
1755       CORBA::Object_var obj =
1756         _NS->ResolveFirst( component_registerBase.c_str());
1757       if ( CORBA::is_nil( obj ) )
1758       {
1759         iobject = createInstance(genericRegisterName,
1760                                  handle,
1761                                  reason);
1762       }
1763       else
1764       {
1765         iobject = Engines::EngineComponent::_narrow( obj ) ;
1766       }
1767     }
1768     catch (...)
1769     {
1770       INFOS( "Container_i::load_impl caught" ) ;
1771     }
1772     return iobject._retn();
1773   }
1774 }
1775
1776 //=============================================================================
1777 //! Indicate if container is a python one
1778 /*! 
1779 *  Retrieves only with container naming convention if it is a python container
1780 */
1781 //=============================================================================
1782 bool Abstract_Engines_Container_i::isPythonContainer(const char* ContainerName)
1783 {
1784   bool ret=false;
1785   size_t len=strlen(ContainerName);
1786   if(len>=2)
1787     if(strcmp(ContainerName+len-2,"Py")==0)
1788       ret=true;
1789   return ret;
1790 }
1791
1792 //=============================================================================
1793 //! Kill the container
1794 /*!
1795 *  CORBA method: Kill the container process with exit(0).
1796 *  To remove :  never returns !
1797 */
1798 //=============================================================================
1799 bool Abstract_Engines_Container_i::Kill_impl()
1800 {
1801   MESSAGE("Engines_Container_i::Kill() pid "<< getpid() << " containerName "
1802     << _containerName.c_str() << " machineName "
1803     << Kernel_Utils::GetHostname().c_str());
1804   INFOS("===============================================================");
1805   INFOS("= REMOVE calls to Kill_impl in C++ container                  =");
1806   INFOS("===============================================================");
1807   //_exit( 0 ) ;
1808   ASSERT(0);
1809   return false;
1810 }
1811
1812 //=============================================================================
1813 /*! 
1814 *  
1815 */
1816 //=============================================================================
1817 void ActSigIntHandler()
1818 {
1819 #ifndef WIN32
1820   struct sigaction SigIntAct ;
1821   SigIntAct.sa_sigaction = &SigIntHandler ;
1822   sigemptyset(&SigIntAct.sa_mask);
1823   SigIntAct.sa_flags = SA_SIGINFO ;
1824 #endif
1825
1826   // DEBUG 03.02.2005 : the first parameter of sigaction is not a mask of signals
1827   // (SIGINT | SIGUSR1) :
1828   // it must be only one signal ===> one call for SIGINT 
1829   // and an other one for SIGUSR1
1830
1831 #ifndef WIN32
1832   if ( sigaction( SIGINT , &SigIntAct, NULL ) ) 
1833   {
1834     perror("SALOME_Container main ") ;
1835     exit(0) ;
1836   }
1837   if ( sigaction( SIGUSR1 , &SigIntAct, NULL ) )
1838   {
1839     perror("SALOME_Container main ") ;
1840     exit(0) ;
1841   }
1842   if ( sigaction( SIGUSR2 , &SigIntAct, NULL ) )
1843   {
1844     perror("SALOME_Container main ") ;
1845     exit(0) ;
1846   }
1847
1848   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1849   //             use of streams (and so on) should never be used because :
1850   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1851   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1852   //             may have a "Dead-Lock" ===HangUp
1853   //==INFOS is commented
1854   //  INFOS(pthread_self() << "SigIntHandler activated") ;
1855
1856 #else  
1857   signal( SIGINT, SigIntHandler );
1858 // legacy code required to supervisor. Commented in order to avoid problems on Windows 
1859 //  signal( SIGUSR1, SigIntHandler );
1860 #endif
1861
1862 }
1863
1864 void SetCpuUsed() ;
1865 void CallCancelThread() ;
1866
1867 #ifndef WIN32
1868 void SigIntHandler(int /*what*/ ,
1869                    siginfo_t * siginfo ,
1870                    void * /*toto*/ ) 
1871 {
1872   //PAL9042 JR : during the execution of a Signal Handler (and of methods called through Signal Handlers)
1873   //             use of streams (and so on) should never be used because :
1874   //             streams of C++ are naturally thread-safe and use pthread_mutex_lock ===>
1875   //             A stream operation may be interrupted by a signal and if the Handler use stream we
1876   //             may have a "Dead-Lock" ===HangUp
1877   //==MESSAGE is commented
1878   //  MESSAGE(pthread_self() << "SigIntHandler what     " << what << std::endl
1879   //          << "              si_signo " << siginfo->si_signo << std::endl
1880   //          << "              si_code  " << siginfo->si_code << std::endl
1881   //          << "              si_pid   " << siginfo->si_pid) ;
1882
1883   if ( _Sleeping )
1884   {
1885     _Sleeping = false ;
1886     //     MESSAGE("SigIntHandler END sleeping.") ;
1887     return ;
1888   }
1889   else
1890   {
1891     ActSigIntHandler() ;
1892     if ( siginfo->si_signo == SIGUSR1 )
1893     {
1894       SetCpuUsed() ;
1895     }
1896     else if ( siginfo->si_signo == SIGUSR2 )
1897     {
1898       CallCancelThread() ;
1899     }
1900     else 
1901     {
1902       _Sleeping = true ;
1903       //      MESSAGE("SigIntHandler BEGIN sleeping.") ;
1904       int count = 0 ;
1905       while( _Sleeping )
1906       {
1907         sleep( 1 ) ;
1908         count += 1 ;
1909       }
1910       //      MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1911     }
1912     return ;
1913   }
1914 }
1915 #else // Case WIN32
1916 void SigIntHandler( int what )
1917 {
1918 #ifndef WIN32
1919   MESSAGE( pthread_self() << "SigIntHandler what     " << what << std::endl );
1920 #else
1921   MESSAGE( "SigIntHandler what     " << what << std::endl );
1922 #endif
1923   if ( _Sleeping )
1924   {
1925     _Sleeping = false ;
1926     MESSAGE("SigIntHandler END sleeping.") ;
1927     return ;
1928   }
1929   else
1930   {
1931     ActSigIntHandler() ;
1932     if ( what == SIGUSR1 )
1933     {
1934       SetCpuUsed() ;
1935     }
1936     else
1937     {
1938       _Sleeping = true ;
1939       MESSAGE("SigIntHandler BEGIN sleeping.") ;
1940       int count = 0 ;
1941       while( _Sleeping ) 
1942       {
1943         Sleep( 1000 ) ;
1944         count += 1 ;
1945       }
1946       MESSAGE("SigIntHandler LEAVE sleeping after " << count << " s.") ;
1947     }
1948     return ;
1949   }
1950 }
1951 #endif
1952
1953 //=============================================================================
1954 //! Get or create a file reference object associated to a local file (to transfer it)
1955 /*!
1956 *  CORBA method: get or create a fileRef object associated to a local file
1957 *  (a file on the computer on which runs the container server), which stores
1958 *  a list of (machine, localFileName) corresponding to copies already done.
1959 *
1960 *  \param  origFileName absolute path for a local file to copy on other
1961 *          computers
1962 *  \return a fileRef object associated to the file.
1963 */
1964 //=============================================================================
1965 Engines::fileRef_ptr
1966 Abstract_Engines_Container_i::createFileRef(const char* origFileName)
1967 {
1968   std::string origName(origFileName);
1969   Engines::fileRef_var theFileRef = Engines::fileRef::_nil();
1970
1971   if (origName[0] != '/')
1972   {
1973     INFOS("path of file to copy must be an absolute path beginning with '/'");
1974     return Engines::fileRef::_nil();
1975   }
1976
1977   if (CORBA::is_nil(_fileRef_map[origName]))
1978   {
1979     CORBA::Object_var obj=_poa->id_to_reference(*_id);
1980     Engines::Container_var pCont = Engines::Container::_narrow(obj);
1981     fileRef_i* aFileRef = new fileRef_i(pCont, origFileName);
1982     theFileRef = Engines::fileRef::_narrow(aFileRef->_this());
1983     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
1984     _fileRef_map[origName] = theFileRef;
1985     _numInstanceMutex.unlock() ;
1986   }
1987
1988   theFileRef =  Engines::fileRef::_duplicate(_fileRef_map[origName]);
1989   ASSERT(! CORBA::is_nil(theFileRef));
1990   return theFileRef._retn();
1991 }
1992
1993 //=============================================================================
1994 //! Get a fileTransfer reference
1995 /*!
1996 *  CORBA method:
1997 *  \return a reference to the fileTransfer object
1998 */
1999 //=============================================================================
2000 Engines::fileTransfer_ptr
2001 Abstract_Engines_Container_i::getFileTransfer()
2002 {
2003   Engines::fileTransfer_var aFileTransfer
2004     = Engines::fileTransfer::_duplicate(_fileTransfer);
2005   return aFileTransfer._retn();
2006 }
2007
2008 //=============================================================================
2009 //! Create a Salome file
2010 //=============================================================================
2011 Engines::Salome_file_ptr
2012 Abstract_Engines_Container_i::createSalome_file(const char* origFileName)
2013 {
2014   std::string origName(origFileName);
2015   if (CORBA::is_nil(_Salome_file_map[origName]))
2016   {
2017     Salome_file_i* aSalome_file = new Salome_file_i();
2018     aSalome_file->setContainer(Engines::Container::_duplicate(this->_this()));
2019     try
2020     {
2021       aSalome_file->setLocalFile(origFileName);
2022       aSalome_file->recvFiles();
2023     }
2024     catch (const SALOME::SALOME_Exception& /*e*/) //!< TODO: unused variable
2025     {
2026       return Engines::Salome_file::_nil();
2027     }
2028
2029     Engines::Salome_file_var theSalome_file = Engines::Salome_file::_nil();
2030     theSalome_file = Engines::Salome_file::_narrow(aSalome_file->_this());
2031     _numInstanceMutex.lock() ; // lock to be alone (stl container write)
2032     _Salome_file_map[origName] = theSalome_file;
2033     _numInstanceMutex.unlock() ;
2034   }
2035
2036   Engines::Salome_file_ptr theSalome_file =
2037     Engines::Salome_file::_duplicate(_Salome_file_map[origName]);
2038   ASSERT(!CORBA::is_nil(theSalome_file));
2039   return theSalome_file;
2040 }
2041
2042 //=============================================================================
2043 /*! \brief copy a file from a remote host (container) to the local host
2044  * \param container the remote container
2045  * \param remoteFile the file to copy locally from the remote host into localFile
2046  * \param localFile the local file
2047  */
2048 //=============================================================================
2049 void Abstract_Engines_Container_i::copyFile(Engines::Container_ptr container, const char* remoteFile, const char* localFile)
2050 {
2051   Engines::fileTransfer_var fileTransfer = container->getFileTransfer();
2052
2053   FILE* fp;
2054   if ((fp = fopen(localFile,"wb")) == NULL)
2055   {
2056     INFOS("file " << localFile << " cannot be open for writing");
2057     return;
2058   }
2059
2060   CORBA::Long fileId = fileTransfer->open(remoteFile);
2061   if (fileId > 0)
2062   {
2063     Engines::fileBlock* aBlock;
2064     int toFollow = 1;
2065     int ctr=0;
2066     while (toFollow)
2067     {
2068       ctr++;
2069       //SCRUTE(ctr);
2070       aBlock = fileTransfer->getBlock(fileId);
2071       toFollow = aBlock->length();
2072       //SCRUTE(toFollow);
2073       CORBA::Octet *buf = aBlock->get_buffer();
2074       fwrite(buf, sizeof(CORBA::Octet), toFollow, fp);
2075       delete aBlock;
2076     }
2077     fclose(fp);
2078     MESSAGE("end of transfer");
2079     fileTransfer->close(fileId);
2080   }
2081   else
2082   {
2083     INFOS("open reference file for copy impossible");
2084   }
2085 }
2086
2087 //=============================================================================
2088 /*! \brief create a PyNode object to execute remote python code
2089  * \param nodeName the name of the node
2090  * \param code the python code to load
2091  * \return the PyNode
2092  */
2093 //=============================================================================
2094 Engines::PyNode_ptr Abstract_Engines_Container_i::createPyNode(const char* nodeName, const char* code)
2095 {
2096   Engines::PyNode_var node= Engines::PyNode::_nil();
2097   long ierr(-1);
2098   std::string astr;
2099   {
2100     AutoGIL gstate;
2101     PyObject *res = PyObject_CallMethod(_pyCont,
2102       (char*)"create_pynode",
2103       (char*)"ss",
2104       nodeName,
2105       code);
2106     if(res==NULL)
2107     {
2108       //internal error
2109       PyErr_Print();
2110       SALOME::ExceptionStruct es;
2111       es.type = SALOME::INTERNAL_ERROR;
2112       es.text = "can not create a python node";
2113       throw SALOME::SALOME_Exception(es);
2114     }
2115     ierr=PyLong_AsLong(PyTuple_GetItem(res,0));
2116     PyObject* result=PyTuple_GetItem(res,1);
2117     astr = PyUnicode_AsUTF8(result);
2118     Py_DECREF(res);
2119   }
2120   if(ierr==0)
2121   {
2122     Utils_Locker lck(&_mutexForDftPy);
2123     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
2124     node=Engines::PyNode::_narrow(obj);
2125     std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
2126     if(it==_dftPyNode.end())
2127     {
2128       _dftPyNode[nodeName]=node;
2129     }
2130     else
2131     {
2132       Engines::PyNode_var oldNode((*it).second);
2133       if(!CORBA::is_nil(oldNode))
2134         oldNode->UnRegister();
2135       (*it).second=node;
2136     }
2137     if(!CORBA::is_nil(node))
2138       node->Register();
2139     return node._retn();
2140   }
2141   else
2142   {
2143     SALOME::ExceptionStruct es;
2144     es.type = SALOME::INTERNAL_ERROR;
2145     es.text = astr.c_str();
2146     throw SALOME::SALOME_Exception(es);
2147   }
2148 }
2149
2150 //=============================================================================
2151 /*! \brief Retrieves the last created PyNode instance with createPyNode.
2152  *
2153  */
2154 //=============================================================================
2155 Engines::PyNode_ptr Abstract_Engines_Container_i::getDefaultPyNode(const char *nodeName)
2156 {
2157   Utils_Locker lck(&_mutexForDftPy);
2158   std::map<std::string,Engines::PyNode_var>::iterator it(_dftPyNode.find(nodeName));
2159   if(it==_dftPyNode.end())
2160     return Engines::PyNode::_nil();
2161   else
2162   {
2163     Engines::PyNode_var tmpVar((*it).second);
2164     if(!CORBA::is_nil(tmpVar))
2165       return Engines::PyNode::_duplicate(tmpVar);
2166     else
2167       return Engines::PyNode::_nil();
2168   }
2169 }
2170
2171 //=============================================================================
2172 /*! \brief create a PyScriptNode object to execute remote python code
2173  * \param nodeName the name of the node
2174  * \param code the python code to load
2175  * \return the PyScriptNode
2176  */
2177 //=============================================================================
2178 Engines::PyScriptNode_ptr Abstract_Engines_Container_i::createPyScriptNode(const char* nodeName, const char* code)
2179 {
2180   Engines::PyScriptNode_var node= Engines::PyScriptNode::_nil();
2181   long ierr(-1);
2182   std::string astr;
2183   {
2184     AutoGIL gstate;
2185     AutoPyRef res = PyObject_CallMethod(_pyCont,
2186       (char*)"create_pyscriptnode",
2187       (char*)"ss",
2188       nodeName,
2189       code);
2190     if( res.isNull() )
2191     {
2192       //internal error
2193       PyErr_Print();
2194       SALOME::ExceptionStruct es;
2195       es.type = SALOME::INTERNAL_ERROR;
2196       es.text = "can not create a python node";
2197       throw SALOME::SALOME_Exception(es);
2198     }
2199     ierr=PyLong_AsLong(PyTuple_GetItem(res,0));
2200     PyObject* result=PyTuple_GetItem(res,1);
2201     astr = PyUnicode_AsUTF8(result);
2202   }
2203
2204   if(ierr==0)
2205   {
2206     Utils_Locker lck(&_mutexForDftPy);
2207     CORBA::Object_var obj=_orb->string_to_object(astr.c_str());
2208     node=Engines::PyScriptNode::_narrow(obj);
2209     std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2210     if(it==_dftPyScriptNode.end())
2211     {
2212       _dftPyScriptNode[nodeName]=node;
2213     }
2214     else
2215     {
2216       Engines::PyScriptNode_var oldNode((*it).second);
2217       if(!CORBA::is_nil(oldNode))
2218         oldNode->UnRegister();
2219       (*it).second=node;
2220     }
2221     return node._retn();
2222   }
2223   else
2224   {
2225     SALOME::ExceptionStruct es;
2226     es.type = SALOME::INTERNAL_ERROR;
2227     es.text = astr.c_str();
2228     throw SALOME::SALOME_Exception(es);
2229   }
2230 }
2231
2232 void Abstract_Engines_Container_i::removePyScriptNode(const char *nodeName)
2233 {
2234   std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2235   if(it==_dftPyScriptNode.end())
2236     {
2237       std::ostringstream oss; oss << "Engines_Container_i::removePyScriptNode : node \"" << nodeName << "\" is not map !";
2238       SALOME::ExceptionStruct es;
2239       es.type = SALOME::INTERNAL_ERROR;
2240       es.text = oss.str().c_str();
2241       throw SALOME::SALOME_Exception(es);
2242     }
2243   (*it).second->UnRegister();
2244   _dftPyScriptNode.erase(it);
2245 }
2246
2247 void Abstract_Engines_Container_i::cleanAllPyScripts()
2248 {
2249   for(std::map<std::string,Engines::PyNode_var>::iterator it=_dftPyNode.begin();it!=_dftPyNode.end();it++)
2250     {
2251       Engines::PyNode_var tmpVar((*it).second);
2252       if(!CORBA::is_nil(tmpVar))
2253         tmpVar->UnRegister();
2254     }
2255   _dftPyNode.clear();
2256   for(std::map<std::string,Engines::PyScriptNode_var>::iterator it=_dftPyScriptNode.begin();it!=_dftPyScriptNode.end();it++)
2257     {
2258       Engines::PyScriptNode_var tmpVar((*it).second);
2259       if(!CORBA::is_nil(tmpVar))
2260         tmpVar->UnRegister();
2261     }
2262   _dftPyScriptNode.clear();
2263 }
2264
2265 //=============================================================================
2266 /*! \brief Retrieves the last created PyScriptNode instance with createPyScriptNode.
2267  *
2268  */
2269 //=============================================================================
2270 Engines::PyScriptNode_ptr Abstract_Engines_Container_i::getDefaultPyScriptNode(const char *nodeName)
2271 {
2272   Utils_Locker lck(&_mutexForDftPy);
2273   std::map<std::string,Engines::PyScriptNode_var>::iterator it(_dftPyScriptNode.find(nodeName));
2274   if(it==_dftPyScriptNode.end())
2275     return Engines::PyScriptNode::_nil();
2276   else
2277   {
2278     Engines::PyScriptNode_var tmpVar((*it).second);
2279     if(!CORBA::is_nil(tmpVar))
2280       return Engines::PyScriptNode::_duplicate(tmpVar);
2281     else
2282       return Engines::PyScriptNode::_nil();
2283   }
2284 }
2285
2286 //=============================================================================
2287 /* int checkifexecutable(const char *filename)
2288 *
2289 * Return non-zero if the name is an executable file, and
2290 * zero if it is not executable, or if it does not exist.
2291 */
2292 //=============================================================================
2293 int checkifexecutable(const std::string& filename)
2294 {
2295   int result;
2296   struct stat statinfo;
2297
2298   result = stat(filename.c_str(), &statinfo);
2299   if (result < 0) return 0;
2300   if (!S_ISREG(statinfo.st_mode)) return 0;
2301
2302 #ifdef WIN32
2303   return 1;
2304 #else
2305   if (statinfo.st_uid == geteuid()) return statinfo.st_mode & S_IXUSR;
2306   if (statinfo.st_gid == getegid()) return statinfo.st_mode & S_IXGRP;
2307   return statinfo.st_mode & S_IXOTH;
2308 #endif
2309 }
2310
2311
2312 //=============================================================================
2313 /*! \brief Find a file by searching in a path
2314  *  \param filename file name to search
2315  *  \param path path to search in
2316  *  \param pth the complete file path if found
2317  *  \return 1 if found 0 if not 
2318 */
2319 //=============================================================================
2320 int findpathof(const std::string& path, std::string& pth, const std::string& filename)
2321 {
2322   if ( path.size() == 0 ) return 0;
2323
2324   std::string::size_type offset = 0;
2325   std::string::size_type pos = 0;
2326   int found = 0;
2327   struct stat statinfo;
2328
2329   while(!found)
2330   {
2331     pos = path.find( SEP, offset );
2332     pth = path.substr( offset, pos - offset );
2333     if ( pth.size() > 0 )
2334     {
2335       if( pth[pth.size()-1] != SLASH ) pth += SLASH;
2336       pth += filename;
2337       int result=stat(pth.c_str(), &statinfo);
2338       if(result == 0) found=1;
2339     }
2340     if (pos == std::string::npos) break;
2341     offset = pos+1;
2342   }
2343   return found;
2344 }
2345
2346 void Abstract_Engines_Container_i::registerTemporaryFile( const std::string& fileName )
2347 {
2348   _tmp_files.remove( fileName );
2349   _tmp_files.push_back( fileName );
2350 }
2351
2352 void Abstract_Engines_Container_i::unregisterTemporaryFile( const std::string& fileName )
2353 {
2354   _tmp_files.remove( fileName );
2355 }
2356
2357 void Abstract_Engines_Container_i::clearTemporaryFiles()
2358 {
2359   std::list<std::string>::const_iterator it;
2360   for ( it = _tmp_files.begin(); it != _tmp_files.end(); ++it ) {
2361 #if defined(WIN32) && defined(UNICODE)
2362         std::wstring aFile = Kernel_Utils::utf8_decode_s(*it);
2363         std::wstring command = (GetFileAttributes(aFile.c_str()) == FILE_ATTRIBUTE_DIRECTORY) ? L"rd /Q \"" : L"del /F /Q \"";
2364         command += aFile;
2365         command += L"\" 2>NUL";
2366         _wsystem(command.c_str());
2367 #else
2368 #if defined(WIN32)
2369         std::string aFile = *it;
2370         std::string command = (GetFileAttributes(aFile.c_str()) == FILE_ATTRIBUTE_DIRECTORY) ? "rd /Q \"" : "del /F /Q \"";
2371         command += aFile;
2372         command += "\" 2>NUL";
2373 #else
2374         std::string command = "rm -rf ";
2375         command += *it;
2376 #endif
2377         system(command.c_str());
2378 #endif
2379   }
2380   _tmp_files.clear();
2381 }
2382
2383 static Engines_Container_SSL_i *_container_singleton_ssl = nullptr;
2384
2385 static Engines::Container_var _container_ref_singleton_ssl;
2386
2387 Engines_Container_SSL_i *KERNEL::getContainerSA()
2388 {
2389   if(!_container_singleton_ssl)
2390   {
2391     CORBA::ORB_var orb = KERNEL::GetRefToORB();
2392     CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
2393     PortableServer::POA_var poa = PortableServer::POA::_narrow(obj);
2394     PortableServer::POAManager_var pman = poa->the_POAManager();
2395     CORBA::PolicyList policies;
2396     policies.length(0);
2397     //
2398     constexpr int ARGC = 4;
2399     constexpr const char *ARGV[ARGC] = {"Container","FactoryServer","toto",nullptr};
2400     std::unique_ptr<char*[]> argv( new char *[ARGC+1] );
2401     std::vector< std::unique_ptr<char[]> > argvv(ARGC);
2402     argv[ARGC] = nullptr;
2403     for(int i = 0 ; i < ARGC ; ++i)
2404     {
2405       if(ARGV[i])
2406       {
2407         argvv[i].reset( new char[strlen(ARGV[i])+1] );
2408         strcpy(argvv[i].get(),ARGV[i]);
2409         argv[i] = argvv[i].get();
2410       }
2411       else
2412         argv[i] = nullptr;
2413     }
2414     SALOME_Fake_NamingService ns;
2415     _container_singleton_ssl = new Engines_Container_SSL_i(orb,poa,(char *)"FactoryServer",2,argv.get(),&ns,false);
2416     PortableServer::ObjectId * cont_id = _container_singleton_ssl->getCORBAId();
2417     //
2418     CORBA::Object_var zeRef = poa->id_to_reference(*cont_id);
2419     _container_ref_singleton_ssl = Engines::Container::_narrow(zeRef);
2420   }
2421   return _container_singleton_ssl;
2422 }
2423
2424 Engines::Container_var KERNEL::getContainerRefSA()
2425 {
2426   getContainerSA();
2427   return _container_ref_singleton_ssl;
2428 }