Salome HOME
Better adding extra paths to the end of list
[modules/gui.git] / src / PVServerService / ENGINE / PVSERVER_SalomeSessionless.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2021  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 def buildInstance(orb):
22     from PVSERVER import PVSERVER
23
24     # set SSL mode, if not done yes
25     import KernelBasis
26     KernelBasis.setSSLMode(True)
27
28     # check if PYHELLO is already registered
29     import KernelServices
30     try:
31         return KernelServices.RetrieveCompo("PVSERVER"), orb
32     except Exception:
33         pass
34
35     # initialize and register PVSERVER engine
36     import PortableServer
37     obj = orb.resolve_initial_references("RootPOA")
38     poa = obj._narrow(PortableServer.POA)
39     pman = poa._get_the_POAManager()
40     pman.activate()
41     #
42     from SALOME_ContainerPy import SALOME_ContainerPy_SSL_i
43     cont = SALOME_ContainerPy_SSL_i(orb, poa, "FactoryServer")
44     conObj = poa.id_to_reference(poa.activate_object(cont))
45     #
46     servant = PVSERVER(orb, poa, conObj, "FactoryServer", "PVSERVER_inst_1", "PVSERVER")
47     ret = servant.getCorbaRef()
48     KernelServices.RegisterCompo("PVSERVER", ret)
49     return ret, orb