mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-10 04:32:47 +08:00
119 lines
2.8 KiB
Python
119 lines
2.8 KiB
Python
import zmq
|
|
|
|
class Controller(object):
|
|
"""
|
|
A broker of sorts.
|
|
"""
|
|
|
|
polling = False
|
|
debug = False
|
|
|
|
def __init__(self, pull_socket, pub_socket, context=None, logging = None):
|
|
|
|
self.associated = []
|
|
|
|
if not context:
|
|
self._ctx = zmq.Context()
|
|
else:
|
|
self._ctx = context
|
|
|
|
self.pull_socket = pull_socket
|
|
self.pub_socket = pub_socket
|
|
|
|
if logging:
|
|
self.logging = logging
|
|
self.dologging = True
|
|
else:
|
|
self.logging = False
|
|
self.dologging = False
|
|
|
|
self.success = 0
|
|
self.failed = 0
|
|
|
|
def run(self, debug=False):
|
|
self.polling = True
|
|
|
|
#if debug:
|
|
return self._poll()
|
|
#else:
|
|
#return self._poll_fast()
|
|
|
|
def _poll_fast(self):
|
|
"""
|
|
C version of the polling forwarder.
|
|
"""
|
|
zmq.device(zmq.FORWARDER, self.pull, self.pub)
|
|
|
|
def _poll(self):
|
|
"""
|
|
Python version of the polling forwarder. With logging,
|
|
mostly used for debugging.
|
|
"""
|
|
|
|
self.pull = self._ctx.socket(zmq.PULL)
|
|
self.pub = self._ctx.socket(zmq.PUB)
|
|
|
|
self.associated.extend([self.pull, self.pub])
|
|
|
|
self.pull.bind(self.pull_socket)
|
|
self.pub.bind(self.pub_socket)
|
|
|
|
while self.polling:
|
|
try:
|
|
self.pub.send(self.pull.recv())
|
|
except KeyboardInterrupt:
|
|
self.polling = False
|
|
break
|
|
except zmq.ZMQError:
|
|
self.polling = False
|
|
break
|
|
except Exception as e:
|
|
# Its common to wrap these in wildcard exceptions so
|
|
# that we don't loose messages, ever
|
|
if self.logging:
|
|
self.logging.error(str(e))
|
|
self.failed += 1
|
|
continue
|
|
|
|
def message_sender(self):
|
|
"""
|
|
Spin off a socket used for sending messages to this
|
|
controller.
|
|
"""
|
|
s = self._ctx.socket(zmq.PUSH)
|
|
s.connect(self.pull_socket)
|
|
self.associated.append(s)
|
|
return s
|
|
|
|
def message_listener(self):
|
|
"""
|
|
Spin off a socket used for receiving messages from this
|
|
controller.
|
|
"""
|
|
s = self._ctx.socket(zmq.SUB)
|
|
s.connect(self.pub_socket)
|
|
s.setsockopt(zmq.SUBSCRIBE, '')
|
|
self.associated.append(s)
|
|
return s
|
|
|
|
def destroy(self):
|
|
"""
|
|
Manual cleanup.
|
|
"""
|
|
self.polling = False
|
|
|
|
for asoc in self.associated:
|
|
asoc.close()
|
|
|
|
#if self._ctx:
|
|
#self._ctx.destroy()
|
|
|
|
def __del__(self):
|
|
self.destroy()
|
|
|
|
def qos(self):
|
|
if not self.debug:
|
|
return
|
|
return float(self.success) / (self.success + self.failed)
|
|
|