globals.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import logging
  2. from collections import deque
  3. from importlib import import_module
  4. from logging.config import dictConfig
  5. '''
  6. Constants used in messaging to identify an event type.
  7. '''
  8. RES_CREATED = '_create_'
  9. RES_DELETED = '_delete_'
  10. RES_UPDATED = '_update_'
  11. class AppGlobals:
  12. '''
  13. Application Globals.
  14. This class sets up all connections and exposes them across the application
  15. outside of the Flask app context.
  16. '''
  17. def __init__(self, conf):
  18. from lakesuperior.messaging.messenger import Messenger
  19. app_conf = conf['application']
  20. # Initialize RDF layout.
  21. rdfly_mod_name = app_conf['store']['ldp_rs']['layout']
  22. rdfly_mod = import_module('lakesuperior.store.ldp_rs.{}'.format(
  23. rdfly_mod_name))
  24. rdfly_cls = getattr(rdfly_mod, self.camelcase(rdfly_mod_name))
  25. #logger.info('RDF layout: {}'.format(rdfly_mod_name))
  26. # Initialize file layout.
  27. nonrdfly_mod_name = app_conf['store']['ldp_nr']['layout']
  28. nonrdfly_mod = import_module('lakesuperior.store.ldp_nr.{}'.format(
  29. nonrdfly_mod_name))
  30. nonrdfly_cls = getattr(nonrdfly_mod, self.camelcase(nonrdfly_mod_name))
  31. #logger.info('Non-RDF layout: {}'.format(nonrdfly_mod_name))
  32. # Set up messaging.
  33. messenger = Messenger(app_conf['messaging'])
  34. # Exposed globals.
  35. self._rdfly = rdfly_cls(app_conf['store']['ldp_rs'])
  36. self._nonrdfly = nonrdfly_cls(app_conf['store']['ldp_nr'])
  37. self._messenger = messenger
  38. self._changelog = deque()
  39. @property
  40. def rdfly(self):
  41. return self._rdfly
  42. @property
  43. def rdf_store(self):
  44. return self._rdfly.store
  45. @property
  46. def nonrdfly(self):
  47. return self._nonrdfly
  48. @property
  49. def messenger(self):
  50. return self._messenger
  51. @property
  52. def changelog(self):
  53. return self._changelog
  54. def camelcase(self, word):
  55. '''
  56. Convert a string with underscores to a camel-cased one.
  57. Ripped from https://stackoverflow.com/a/6425628
  58. '''
  59. return ''.join(x.capitalize() or '_' for x in word.split('_'))