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