|
@@ -2,8 +2,12 @@ import logging
|
|
|
|
|
|
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
+import stomp
|
|
|
|
|
|
-class StompHandler(logging.StreamHandler):
|
|
|
+from flask import current_app
|
|
|
+
|
|
|
+
|
|
|
+class StompHandler(logging.Handler):
|
|
|
'''
|
|
|
Send messages to a remote queue broker using the STOMP protocol.
|
|
|
|
|
@@ -11,15 +15,18 @@ class StompHandler(logging.StreamHandler):
|
|
|
standard logging for clarity about its scope: while logging has an
|
|
|
informational purpose, this module has a functional one.
|
|
|
'''
|
|
|
- def __init__(self, ep):
|
|
|
- self.ep = ep
|
|
|
+ def __init__(self, conf):
|
|
|
super().__init__()
|
|
|
|
|
|
+ #import pdb; pdb.set_trace()
|
|
|
+ self.conn = stomp.Connection([(conf['host'], conf['port'])])
|
|
|
+ self.conn.start()
|
|
|
+ self.conn.connect(conf['username'], conf['password'], wait=True)
|
|
|
+
|
|
|
|
|
|
def emit(self, record):
|
|
|
'''
|
|
|
Send the message to the destination endpoint.
|
|
|
'''
|
|
|
- return self.format(record)
|
|
|
-
|
|
|
+ self.conn.send('/topic/fcrepo', self.format(record))
|
|
|
|