Salome HOME
Copyright update 2021
[modules/shaper_study.git] / src / SalomeSessionless / SHAPERSTUDY_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 SHAPERSTUDY import SHAPERSTUDY_No_Session
23     from SALOME_ContainerPy import SALOME_ContainerPy_Gen_i
24     import PortableServer
25     import KernelServices
26     obj = orb.resolve_initial_references("RootPOA")
27     poa = obj._narrow(PortableServer.POA)
28     pman = poa._get_the_POAManager()
29     #
30     cont = SALOME_ContainerPy_Gen_i(orb,poa,"FactoryServer")
31     conId = poa.activate_object(cont)
32     conObj = poa.id_to_reference(conId)
33     #
34     pman.activate()
35     #
36     compoName = "SHAPERSTUDY"
37     servant = SHAPERSTUDY_No_Session(orb,poa,conObj,"FactoryServer","SHAPERSTUDY_inst_1",compoName)
38     ret = servant.getCorbaRef()
39     KernelServices.RegisterCompo(compoName,ret)
40     return ret, orb