Salome HOME
Merge branch 'V9_7_BR'
[modules/kernel.git] / src / NamingService / SALOME_Embedded_NamingService_ClientPy.py
1 #! /usr/bin/env python3
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2021  CEA/DEN, EDF R&D
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 from omniORB import CORBA
23
24 class SALOME_Embedded_NamingService_ClientPy:
25   """
26     A python client class to handle remote servant of SALOME_Embedded_NamingService
27   """
28   #-------------------------------------------------------------------------
29
30   def __init__(self, serv):
31     self._orb=CORBA.ORB_init([''], CORBA.ORB_ID)
32     self._obj = serv
33   #-------------------------------------------------------------------------
34
35   def Register(self,ObjRef, Path):
36     ior = bytes(self._orb.object_to_string(ObjRef),encoding="utf-8")
37     self._obj.Register(ior,Path)
38
39   #-------------------------------------------------------------------------
40
41   def Resolve(self, Path):
42       ret = self._obj.Resolve(Path)
43       return self._orb.string_to_object(ret.decode())