Salome HOME
Synchronize adm files
[modules/kernel.git] / src / KERNEL_PY / salome_genericobj.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
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 """
22  When imported this module adds to CORBA objref from GenericObj type
23  automatic management of reference count
24  The reference count is incremented when the local proxy is created (assignment of __omni_obj attribute)
25  and is decremented when the local proxy is deleted (call of __del__) 
26
27  The GenericObj class for proxy is modified by adding two methods : __del__ and __setattr__
28  The module must be imported before any other import of SALOME CORBA module
29 """
30 import omniORB
31 import SALOME
32
33 def mydel(self):
34     self.UnRegister()
35     omniORB.CORBA.Object.__del__(self)
36
37 def mysetattr(self,attr,value):
38     self.__dict__[attr]=value
39     if attr == "__omni_obj":
40       self.Register()
41
42 SALOME._objref_GenericObj.__del__=mydel
43 SALOME._objref_GenericObj.__setattr__=mysetattr
44