/usr/share/pyshared/Ihm/CONNECTOR.py is in eficas 6.4.0-1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | # -*- coding: iso-8859-15 -*-
# CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2002 EDF R&D WWW.CODE-ASTER.ORG
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
# (AT YOUR OPTION) ANY LATER VERSION.
#
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
#
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
#
#
# ======================================================================
"""
La classe CONNECTOR sert à enregistrer les observateurs d'objets et à délivrer
les messages émis à ces objets.
Le principe général est le suivant : un objet (subscriber) s'enregistre aupres du
connecteur global (theconnector) pour observer un objet emetteur de messages (publisher)
sur un canal donné (channel). Il demande à etre notifie par appel d'une fonction (listener).
La séquence est donc :
- enregistrement du subscriber pour le publisher : theconnector.Connect(publisher,channel,listener,args)
- émission du message par le publisher : theconnector.Emit(publisher,channel,cargs)
args et cargs sont des tuples contenant les arguments de la fonction listener qui sera appelée
comme suit::
listener(cargs+args)
"""
import traceback
from copy import copy
import weakref
class ConnectorError(Exception):
pass
class CONNECTOR:
def __init__(self):
self.connections={}
def Connect(self, object, channel, function, args):
###print "Connect",object, channel, function, args
idx = id(object)
if self.connections.has_key(idx):
channels = self.connections[idx]
else:
channels = self.connections[idx] = {}
if channels.has_key(channel):
receivers = channels[channel]
else:
receivers = channels[channel] = []
for funct,fargs in receivers[:]:
if funct() is None:
receivers.remove((funct,fargs))
elif (function,args) == (funct(),fargs):
receivers.remove((funct,fargs))
receivers.append((ref(function),args))
###print "Connect",receivers
def Disconnect(self, object, channel, function, args):
try:
receivers = self.connections[id(object)][channel]
except KeyError:
raise ConnectorError, \
'no receivers for channel %s of %s' % (channel, object)
for funct,fargs in receivers[:]:
if funct() is None:
receivers.remove((funct,fargs))
for funct,fargs in receivers:
if (function,args) == (funct(),fargs):
receivers.remove((funct,fargs))
if not receivers:
# the list of receivers is empty now, remove the channel
channels = self.connections[id(object)]
del channels[channel]
if not channels:
# the object has no more channels
del self.connections[id(object)]
return
raise ConnectorError,\
'receiver %s%s is not connected to channel %s of %s' \
% (function, args, channel, object)
def Emit(self, object, channel, *args):
###print "Emit",object, channel, args
try:
receivers = self.connections[id(object)][channel]
except KeyError:
return
###print "Emit",object, channel, receivers
# Attention : copie pour eviter les pbs lies aux deconnexion reconnexion
# pendant l'execution des emit
for rfunc, fargs in copy(receivers):
try:
func=rfunc()
if func:
apply(func, args + fargs)
else:
# Le receveur a disparu
if (rfunc,fargs) in receivers:receivers.remove((rfunc,fargs))
except:
traceback.print_exc()
def ref(target,callback=None):
if hasattr(target,"im_self"):
return BoundMethodWeakref(target)
else:
return weakref.ref(target,callback)
class BoundMethodWeakref(object):
def __init__(self,callable):
self.Self=weakref.ref(callable.im_self)
self.Func=weakref.ref(callable.im_func)
def __call__(self):
target=self.Self()
if not target:return None
func=self.Func()
if func:
return func.__get__(self.Self())
_the_connector =CONNECTOR()
Connect = _the_connector.Connect
Emit = _the_connector.Emit
Disconnect = _the_connector.Disconnect
if __name__ == "__main__":
class A:pass
class B:
def add(self,a):
print "add",self,a
def __del__(self):
print "__del__",self
def f(a):
print f,a
print "a=A()"
a=A()
print "b=B()"
b=B()
print "c=B()"
c=B()
Connect(a,"add",b.add,())
Connect(a,"add",b.add,())
Connect(a,"add",c.add,())
Connect(a,"add",f,())
Emit(a,"add",1)
print "del b"
del b
Emit(a,"add",1)
print "del f"
del f
Emit(a,"add",1)
Disconnect(a,"add",c.add,())
Emit(a,"add",1)
|