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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
'''
Represent topics in pubsub. Topic objects contain all information about
a topic, including documentation about the topic, the listener protocol
specification, the list of subscribed listeners. A Topic object for a
given topic can be obtained from pubsub via pub.getTopic() or pub.getOrCreateTopic()
and then used directly for subscription and publishing (though there is not
often a good reason to do that, as "pub" is usually more convenient....
but there are where this could be useful or make the code easier to
read or maintain.
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE.txt for details.
'''
from weakref import ref as weakref
from listener import Listener, ListenerValidator
from topicutils import ALL_TOPICS, stringize, tupleize, validateName, smartDedent
from topicexc import ListenerNotValidatable, UndefinedSubtopic, ExcHandlerError
from publishermixin import PublisherMixin
from topicargspec import \
ArgsInfo, ArgSpecGiven, topicArgsFromCallable, \
SenderMissingReqdArgs, SenderUnknownOptArgs, ListenerSpecInvalid
class Topic(PublisherMixin):
'''
Represent a message topic. This keeps track of which
call arguments (msgArgs) can be given as message data to subscribed
listeners, it supports documentation of msgArgs and topic itself,
and allows Python-like access to subtopics (e.g. A.B is subtopic
B of topic A) and keeps track of listeners of topic.
'''
class InvalidName(ValueError):
'''
Raised when attempt to create a topic with name that is
not allowed (contains reserved characters etc).
'''
def __init__(self, name, reason):
msg = 'Invalid topic name "%s": %s' % (name or '', reason)
ValueError.__init__(self, msg)
def __init__(self, treeConfig, nameTuple, description,
msgArgsInfo, parent=None):
'''This should only be called by TopicManager via its
getOrCreateTopic() method (which gets called in several places
in pubsub, such as sendMessage, subscribe, and newTopic).
Specify the tree configuration settings, the name,
description, and parent of this Topic. The
msgArgsInfo specifies the allowed and required arguments when
sending messages, encapsulated in an ArgsInfo object.
'''
if parent is None:
if nameTuple != (ALL_TOPICS,):
msg = 'Only one topic, named %s, can be root of topic tree'
raise ValueError(msg % 'pub.ALL_TOPICS')
else:
validateName(nameTuple)
self.__tupleName = nameTuple
self.__handlingUncaughtListenerExc = False
self._treeConfig = treeConfig
PublisherMixin.__init__(self)
self.__validator = None
self.__listeners = []
# specification:
self.__description = None
self.setDescription(description)
self.__msgArgs = msgArgsInfo
if msgArgsInfo.isComplete():
self.__finalize()
else:
assert not self._treeConfig.raiseOnTopicUnspecified
# now that we know the args are fine, we can link to parent
self.__parentTopic = None
self.__subTopics = {}
if parent is None:
assert self.isSendable()
else:
self.__parentTopic = weakref(parent)
assert self.__msgArgs.parentAI() is parent._getListenerSpec()
parent.__adoptSubtopic( self )
def setDescription(self, desc):
'''Set the 'docstring' of topic'''
self.__description = desc
def getDescription(self):
'''Return the 'docstring' of topic'''
if self.__description is None:
return None
return smartDedent(self.__description)
def setMsgArgSpec(self, argsDocs, required=()):
'''Specify the listener arguments. The argsDocs must be non-None.
Can only be called on non-specified topic (raise RuntimeError otherwise).'''
assert self.__parentTopic is not None # for root of tree, this method never called!
if argsDocs is None:
raise ValueError('Cannot set listener spec to None')
if self.__msgArgs is None or not self.__msgArgs.isComplete():
try:
specGiven = ArgSpecGiven(argsDocs, required)
self.__msgArgs = ArgsInfo(self.__tupleName, specGiven,
self.__parentTopic()._getListenerSpec())
except ListenerSpecInvalid, exc:
# discard the lower part of the stack trace
raise exc
self.__finalize()
else:
raise RuntimeError('Not allowed to call this: msg spec already set!')
def getArgs(self):
'''Returns a pair (reqdArgs, optArgs) where reqdArgs is tuple
of names of required message arguments, optArgs is tuple
of names for optional arguments. If topic args not specified
yet, returns (None, None).'''
sendable = self.__msgArgs.isComplete()
assert sendable == self.isSendable()
if sendable:
return (self.__msgArgs.allRequired ,
self.__msgArgs.allOptional)
return None, None
def getArgDescriptions(self):
'''Get a **copy** of the topic's kwargs given at construction time.
Returns None if args not described yet. '''
return self.__msgArgs.getArgsDocs()
def setArgDescriptions(self, **docs):
self.__msgArgs.setArgsDocs(docs)
def isSendable(self):
'''Return true if messages can be sent for this topic'''
return self.__validator is not None
def filterMsgArgs(self, msgKwargs, check=False):
filteredArgs = self.__msgArgs.filterArgs(msgKwargs)
# if no check of args yet, do it now:
if check:
self.__msgArgs.check(filteredArgs)
return filteredArgs
def isAll(self):
'''Returns true if this topic is the 'all topics' topic. All root
topics behave as though they are child of that topic. '''
return self.__tupleName == (ALL_TOPICS,)
def isRoot(self):
'''Returns true if this is a "root" topic, false otherwise. A
root topic is a topic whose name contains no dots and which
has pub.ALL_TOPICS as parent.'''
parent = self.getParent()
if parent:
return parent.isAll()
assert self.isAll()
return False
def getName(self):
'''Return dotted form of full topic name'''
return stringize(self.__tupleName)
def getNameTuple(self):
'''Return tuple form of full topic name'''
return self.__tupleName
def getTailName(self):
'''Return the last part of the topic name (has no dots)'''
name = self.__tupleName[-1]
return name
def getParent(self):
'''Get Topic object that is parent of self
(i.e. self is a subtopic of parent).'''
if self.__parentTopic is None:
return None
return self.__parentTopic()
def hasSubtopic(self, name=None):
'''Return true only if name is a subtopic of self. If name not
specified, return true only if self has at least one subtopic.'''
if name is None:
return len(self.__subTopics) > 0
return self.__subTopics.has_key(name)
def getSubtopic(self, relName):
'''Get the specified subtopic object. The relName can be a valid
subtopic name, a dotted-name string, or a tuple. '''
if not relName:
raise ValueError("getSubtopic() arg can't be empty")
topicTuple = tupleize(relName)
assert topicTuple
topicObj = self
for topicName in topicTuple:
child = topicObj.__subTopics.get(topicName)
if child is None:
raise UndefinedSubtopic(topicObj.getName(), topicName)
topicObj = child
return topicObj
def getSubtopics(self):
'''Get a list of Topic instances that are subtopics of self.'''
return self.__subTopics.values()
def getNumListeners(self):
'''Return number of listeners currently subscribed to topic. This is
different from number of listeners that will get notified since more
general topics up the topic tree may have listeners.'''
return len(self.__listeners)
def hasListener(self, listener):
'''Return true if listener is subscribed to this topic.'''
return listener in self.__listeners
def hasListeners(self):
'''Return true if there are any listeners subscribed to
this topic, false otherwise.'''
return self.__listeners != []
def getListeners(self):
'''Get a **copy** of Listener objects for listeners
subscribed to this topic.'''
return self.__listeners[:]
def validate(self, listener):
'''Checks whether listener could be subscribed to this topic:
if yes, just returns; if not, raises raises ListenerInadequate.
Note that method raises ListenerNotValidatable if self not
isSendable().'''
if not self.isSendable():
raise ListenerNotValidatable()
return self.__validator.validate(listener)
def isValid(self, listener):
'''Return True only if listener could be subscribed to this topic,
otherwise returns False. Note that method raises ListenerNotValidatable
if self not isSendable().'''
if not self.isSendable():
raise ListenerNotValidatable()
return self.__validator.isValid(listener)
def subscribe(self, listener):
'''Subscribe listener to this topic. Returns a pair
(pub.Listener, success). The success is true only if listener
was not already subscribed and is now subscribed. '''
if listener in self.__listeners:
assert self.isSendable()
idx = self.__listeners.index(listener)
subdLisnr, newSub = self.__listeners[idx], False
else:
if self.__validator is None:
args, reqd = topicArgsFromCallable(listener)
self.setMsgArgSpec(args, reqd)
argsInfo = self.__validator.validate(listener)
weakListener = Listener(
listener, argsInfo, onDead=self.__onDeadListener)
self.__listeners.append(weakListener)
subdLisnr, newSub = weakListener, True
# notify of subscription
self._treeConfig.notificationMgr.notifySubscribe(subdLisnr, self, newSub)
return subdLisnr, newSub
def unsubscribe(self, listener):
'''Unsubscribe the specified listener from this topic. Returns
the pub.Listener object associated with the listener that was
unsubscribed, or None if the specified listener was not
subscribed to this topic. Note that this method calls
notifyUnsubscribe(listener, self) on all registered notification
handlers (see pub.addNotificationHandler)'''
try:
idx = self.__listeners.index(listener)
except ValueError:
return None
unsubdLisnr = self.__listeners.pop(idx)
unsubdLisnr._unlinkFromTopic_()
assert listener == unsubdLisnr.getCallable()
# notify of unsubscription
self._treeConfig.notificationMgr.notifyUnsubscribe(unsubdLisnr, self)
return unsubdLisnr
def unsubscribeAllListeners(self, filter=None):
'''Clears list of subscribed listeners. If filter is given, it must
be a function that takes a listener and returns true if the listener
should be unsubscribed. Returns the list of listeners that were
unsubscribed.'''
index = 0
unsubd = []
for listener in self.__listeners[:] :
if filter is None or filter(listener):
listener._unlinkFromTopic_()
assert listener is self.__listeners[index]
del self.__listeners[index]
unsubd.append(listener)
else:
index += 1
# send notification regarding all listeners actually unsubscribed
notificationMgr = self._treeConfig.notificationMgr
for unsubdLisnr in unsubd:
notificationMgr.notifyUnsubscribe(unsubdLisnr, self)
return unsubd
#############################################################
#
# Impementation
#
#############################################################
def _getListenerSpec(self):
'''Only to be called by pubsub package'''
return self.__msgArgs
def _publish(self, data):
'''This sends message to listeners of parent topics as well.
If an exception is raised in a listener, the publish is
aborted, except if there is a handler (see
pub.setListenerExcHandler).'''
self._treeConfig.notificationMgr.notifySend('pre', self)
# send to ourself
iterState = self._mix_prePublish(data)
self.__sendMessage(data, self, iterState)
# send up the chain
topicObj = self.getParent()
while topicObj is not None:
if topicObj.hasListeners():
iterState = self._mix_prePublish(data, topicObj, iterState)
self.__sendMessage(data, topicObj, iterState)
# done for this topic, continue up branch to parent towards root
topicObj = topicObj.getParent()
self._treeConfig.notificationMgr.notifySend('post', self)
def __sendMessage(self, data, topicObj, iterState):
# now send message data to each listener for current topic:
for listener in topicObj.getListeners():
try:
self._treeConfig.notificationMgr.notifySend('in', topicObj, pubListener=listener)
self._mix_callListener(listener, data, iterState)
except Exception:
# if exception handling is on, handle, otherwise re-raise
handler = self._treeConfig.listenerExcHandler
if handler is None or self.__handlingUncaughtListenerExc:
raise
# try handling the exception so we can continue the send:
try:
self.__handlingUncaughtListenerExc = True
handler( listener.name(), topicObj )
self.__handlingUncaughtListenerExc = False
except Exception, exc:
#print 'exception raised', exc
self.__handlingUncaughtListenerExc = False
raise ExcHandlerError(listener.name(), topicObj, exc)
def __finalize(self):
'''Finalize the topic specification, which currently means
creating the listener validator for this topic. This allows
calls to subscribe() to validate that listener adheres to
topic's listener protocol.'''
assert self.__msgArgs.isComplete()
assert not self.isSendable()
# must make sure can adopt a validator
required = self.__msgArgs.allRequired
optional = self.__msgArgs.allOptional
self.__validator = ListenerValidator(required, list(optional) )
assert not self.__listeners
def _undefineSelf_(self, topicsMap):
'''Called by topic manager when deleting a topic.'''
if self.__parentTopic is not None:
self.__parentTopic().__abandonSubtopic(self.__tupleName[-1])
self.__undefineBranch(topicsMap)
def __undefineBranch(self, topicsMap):
'''Unsubscribe all our listeners, remove all subtopics from self,
then detach from parent. Parent is not notified, because method
assumes it has been called by parent'''
#print 'Remove %s listeners (%s)' % (self.getName(), self.getNumListeners())
self.unsubscribeAllListeners()
self.__parentTopic = None
for subName, subObj in self.__subTopics.iteritems():
assert isinstance(subObj, Topic)
#print 'Unlinking %s from parent' % subObj.getName()
subObj.__undefineBranch(topicsMap)
self.__subTopics = {}
del topicsMap[self.getName()]
def __adoptSubtopic(self, topicObj):
'''Link self to a Topic instance via self.attrName. Always succeeds.'''
assert topicObj.__parentTopic() is self
attrName = topicObj.getTailName()
self.__subTopics[attrName] = topicObj
def __abandonSubtopic(self, attrName):
topicObj = self.__subTopics.pop(attrName)
assert topicObj.__parentTopic() is self
def __onDeadListener(self, weakListener):
'''One of our subscribed listeners has died, so remove it and notify others'''
# remove:
ll = self.__listeners.index(weakListener)
pubListener = self.__listeners[ll]
#llID = str(listener)
del self.__listeners[ll]
# notify:
self._treeConfig.notificationMgr.notifyDeadListener(pubListener, self)
def __str__(self):
return "%s(%s)" % (self.getName(), self.getNumListeners())
|