handlers.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import logging
  2. from abc import ABCMeta, abstractmethod
  3. from flask import current_app
  4. from stompest.config import StompConfig
  5. from stompest.protocol import StompSpec
  6. from stompest.sync import Stomp
  7. class StompHandler(logging.Handler):
  8. '''
  9. Send messages to a remote queue broker using the STOMP protocol.
  10. This module is named and configured separately from
  11. standard logging for clarity about its scope: while logging has an
  12. informational purpose, this module has a functional one.
  13. '''
  14. def __init__(self, conf):
  15. self.conf = conf
  16. if self.conf['protocol'] == '11':
  17. protocol_v = StompSpec.VERSION_1_1
  18. elif self.conf['protocol'] == '12':
  19. protocol_v = StompSpec.VERSION_1_2
  20. else:
  21. protocol_v = StompSpec.VERSION_1_0
  22. self.conf
  23. client_config = StompConfig(
  24. 'tcp://{}:{}'.format(self.conf['host'], self.conf['port']),
  25. login=self.conf['username'],
  26. passcode=self.conf['password'],
  27. version=protocol_v
  28. )
  29. self.conn = Stomp(client_config)
  30. self.conn.connect()
  31. return super().__init__()
  32. def emit(self, record):
  33. '''
  34. Send the message to the destination endpoint.
  35. '''
  36. self.conn.send(destination=self.conf['destination'],
  37. body=bytes(self.format(record), 'utf-8'))