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
|
'''
This is the top-level API to pubsub, API version 3. It provides
functions for sending messages, subscribing listeners to receive
messages, and various auxiliary functions. It also exposes several
classes such as Topic, Listener, Publisher, and many more that could
be used in advanced pub-sub applications.
Note that many functions in this module actually make use of a
Publisher and TopicManager instance created upon import.
TODO: add isMsgReceivable(listener, topicName) to find out if listener is
subscribed to topicName or any of its subtopics.
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE.txt for details.
'''
PUBSUB_VERSION = 3 # DO NOT CHANGE
SVN_VERSION = "$Rev: 243 $".split()[1] # DO NOT CHANGE
VERSION_STR = "3.1.1b1.201005.r" + SVN_VERSION
from core.listener import \
Listener, \
getID as getListenerID, \
ListenerInadequate
from core.topicobj import \
Topic, \
SenderMissingReqdArgs, \
SenderUnknownOptArgs, \
ListenerSpecInvalid, \
ListenerNotValidatable, \
ExcHandlerError
from core.topicmgr import \
TopicManager as _TopicManager, \
ListenerSpecIncomplete, \
UndefinedTopic, \
UndefinedSubtopic, \
ALL_TOPICS
from core.topicdefnprovider import \
ITopicDefnProvider, TopicDefnProvider, \
registerTypeForImport as registerTopicDefnProviderType, \
IMPORT_MODULE as TOPIC_TREE_FROM_MODULE, \
IMPORT_STRING as TOPIC_TREE_FROM_STRING, \
IMPORT_CLASS as TOPIC_TREE_FROM_CLASS, \
exportTreeAsSpec, TopicTreeTraverser
from core.publisher import Publisher
__all__ = [
# listener stuff:
'Listener', 'ListenerInadequate',
'isValid', 'validate',
# topic stuff:
'ALL_TOPICS', 'Topic',
'topics', 'topicsMap', 'AUTO_TOPIC',
'getOrCreateTopic', 'getTopic', 'newTopic', 'delTopic',
'ListenerSpecIncomplete', 'ListenerNotValidatable',
'UndefinedTopic', 'UndefinedSubtopic', 'ExcHandlerError',
'getAssociatedTopics',
'getDefaultTopicMgr', 'getDefaultRootAllTopics',
# topioc defn provider stuff
'addTopicDefnProvider', 'clearTopicDefnProviders',
'registerTopicDefnProviderType', 'TOPIC_TREE_FROM_MODULE',
'TOPIC_TREE_FROM_CLASS', 'TOPIC_TREE_FROM_STRING',
'importTopicTree', 'exportTopicTree', 'TopicTreeTraverser',
# publisher stuff:
'Publisher',
'subscribe', 'unsubscribe', 'isSubscribed', 'unsubAll',
'sendMessage', 'SenderMissingReqdArgs', 'SenderUnknownOptArgs',
'getListenerExcHandler', 'setListenerExcHandler',
'addNotificationHandler', 'setNotificationFlags', 'clearNotificationHandlers',
'setTopicUnspecifiedFatal',
# misc:
'PUBSUB_VERSION',
]
# ---------------------------------------------
_publisher = Publisher()
subscribe = _publisher.subscribe
unsubscribe = _publisher.unsubscribe
unsubAll = _publisher.unsubAll
sendMessage = _publisher.sendMessage
getListenerExcHandler = _publisher.getListenerExcHandler
setListenerExcHandler = _publisher.setListenerExcHandler
addNotificationHandler = _publisher.addNotificationHandler
clearNotificationHandlers = _publisher.clearNotificationHandlers
setNotificationFlags = _publisher.setNotificationFlags
getNotificationFlags = _publisher.getNotificationFlags
setTopicUnspecifiedFatal = _publisher.setTopicUnspecifiedFatal
getMsgProtocol = _publisher.getMsgProtocol
# ---------------------------------------------
_topicMgr = _publisher.getTopicMgr()
topics = _topicMgr._allTopics
topicsMap = _topicMgr._topicsMap
AUTO_TOPIC = Listener.AUTO_TOPIC
def isValid(listener, topicName):
'''Return true only if listener can subscribe to messages of
type topicName.'''
return _topicMgr.getTopic(topicName).isValid(listener)
def validate(listener, topicName):
'''Checks if listener can subscribe to topicName. If not, raises
ListenerInadequate, otherwise just returns.'''
_topicMgr.getTopic(topicName).validate(listener)
def isSubscribed(listener, topicName):
'''Returns true if listener has subscribed to topicName, false otherwise.
WARNING: a false return is not a guarantee that listener won't get
messages of topicName: it could receive messages of a subtopic of
topicName. '''
return _topicMgr.getTopic(topicName).hasListener(listener)
def getDefaultTopicMgr():
'''Get the topic manager that is created by default when you
import package.'''
return _topicMgr
def getDefaultRootAllTopics():
'''Get the topic that is parent of all root (ie top-level) topics. Useful
characteristics:
- all top-level topics satisfy isAll()==False, isRoot()==True, and
getParent() is getDefaultRootAllTopics();
- "root of all topics" topic satisfies isAll()==True, isRoot()==False,
getParent() is None;
- all other topics satisfy neither. '''
return _topicMgr._allTopics
getOrCreateTopic = _topicMgr.getOrCreateTopic
newTopic = _topicMgr.newTopic
delTopic = _topicMgr.delTopic
getTopic = _topicMgr.getTopic
getAssociatedTopics = _topicMgr.getTopics
addTopicDefnProvider = _topicMgr.addDefnProvider
clearTopicDefnProviders = _topicMgr.clearDefnProviders
def importTopicTree(source, format = TOPIC_TREE_FROM_MODULE, lazy=False):
'''Import topic definitions from a source. The format of the
source defaults to TOPIC_TREE_FROM_MODULE, ie default is to import
from a module (typically, exported by exportTopicTree(source).
The doc string for the source is returned (for a module source, this
is the module doc string; etc). If lazy is True, the topics will be
put in topic tree only upon first use by the application, otherwise,
all topics that don't already exist are incorporated (this may result
in a smaller topic tree if an application has evolved significantly).
Other source formats are TOPIC_TREE_FROM_STRING and
TOPIC_TREE_FROM_CLASS. They are explained in the package API
documentation.
Notes:
- This function can be called several times, but should be called
only once per source.
- More source formats can be defined via
pub.registerTopicDefnProviderType(), which must be given a class
that adheres to the pub.ITopicDefnProvider interface.
- If lazy=True, then a later call to exportTopicTree() will only
export those topics that have been used by the application
'''
provider = TopicDefnProvider(source, format)
addTopicDefnProvider(provider)
if not lazy:
for topicName in provider:
_topicMgr.getOrCreateTopic(topicName)
return provider.getTreeDoc()
def _backupIfExists(filename, bak):
import os, shutil
if os.path.exists(filename):
backupName = '%s.%s' % (filename, bak)
shutil.copy(filename, backupName)
def exportTopicTree(moduleName = None, rootTopicName=None, rootTopic=None,
bak='bak', moduleDoc=None):
'''Export the topic tree to a string and return the string.
The export only traverses the children of rootTopic. Notes:
- If moduleName is given, the string is also written to moduleName.py in
os.getcwd() (the file is overwritten). If bak is not None, the module file
is first copied to moduleName.py.bak.
- If rootTopicName or rootTopic are not specified, the pub.ALL_TOPICS
topic will used.
- The moduleDoc is the doc string for the module.
- If importTopicTree() was called with lazy=True, then only those topics
that were used by application will be exported.'''
if rootTopicName:
rootTopic = _topicMgr.getTopic(rootTopicName)
if rootTopic is None:
rootTopic = getDefaultRootAllTopics()
# create exporter
if moduleName is None:
from StringIO import StringIO
capture = StringIO()
exportTreeAsSpec(rootTopic, fileObj=capture, treeDoc=moduleDoc)
return capture.getvalue()
else:
filename = '%s.py' % moduleName
if bak:
_backupIfExists(filename, bak)
moduleFile = file(filename, 'w')
try:
exportTreeAsSpec(rootTopic, fileObj=moduleFile, treeDoc=moduleDoc)
finally:
moduleFile.close()
#---------------------------------------------------------------------------
# save the fact that we have been loaded, to pubsubconf
import pubsubconf
pubsubconf.pubModuleLoaded()
del pubsubconf
|