Salome HOME
updated copyright message
[modules/kernel.git] / src / Launcher / KernelLauncher.cxx
1 // Copyright (C) 2021-2023  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "KernelLauncher.hxx"
21
22 #include "SALOME_Launcher.hxx"
23 #include "SALOME_ContainerManager.hxx"
24 #include "SALOME_Fake_NamingService.hxx"
25 #include "SALOME_KernelServices.hxx"
26 #include "SALOME_ResourcesManager.hxx"
27 #include "SALOME_ExternalServerLauncher.hxx"
28 #include "SALOME_CPythonHelper.hxx"
29
30 #include <cstring>
31
32 std::string GetContainerManagerInstance()
33 {
34   SALOME_Launcher *launcher = KERNEL::getLauncherSA();
35   SALOME_Fake_NamingService ns;
36   CORBA::Object_var cm = ns.Resolve(SALOME_ContainerManager::_ContainerManagerNameInNS);
37   CORBA::ORB_ptr orb = KERNEL::getORB();
38   CORBA::String_var ior = orb->object_to_string(cm);
39   return std::string(ior.in());
40 }
41
42 std::string GetResourcesManagerInstance()
43 {
44   SALOME_Launcher *launcher = KERNEL::getLauncherSA();
45   SALOME_Fake_NamingService ns;
46   CORBA::Object_var cm = ns.Resolve(SALOME_ResourcesManager::_ResourcesManagerNameInNS);
47   CORBA::ORB_ptr orb = KERNEL::getORB();
48   CORBA::String_var ior = orb->object_to_string(cm);
49   return std::string(ior.in());
50 }
51
52 std::string GetExternalServerInstance()
53 {
54   CORBA::ORB_ptr orb = KERNEL::getORB();
55   CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
56   PortableServer::POA_var root_poa = PortableServer::POA::_narrow(obj);
57   //
58   PortableServer::POA_var safePOA = root_poa->find_POA("SingleThreadPOA",true);
59   //
60   SALOME_CPythonHelper *cPyh(SALOME_CPythonHelper::Singleton());
61   SALOME_Fake_NamingService *ns = new SALOME_Fake_NamingService;
62   SALOME_ExternalServerLauncher *esm(new SALOME_ExternalServerLauncher(cPyh,orb,safePOA,ns));
63   esm->_remove_ref();
64   //
65   CORBA::Object_var esmPtr = safePOA->servant_to_reference(esm);
66   SALOME::ExternalServerLauncher_var esmCPtr = SALOME::ExternalServerLauncher::_narrow(esmPtr);
67   //
68   CORBA::String_var ior = orb->object_to_string(esmCPtr);
69   return std::string(ior.in());
70 }