resource.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. import logging
  2. from functools import wraps
  3. from multiprocessing import Process
  4. from threading import Lock, Thread
  5. import arrow
  6. from rdflib import Literal
  7. from rdflib.namespace import XSD
  8. from lakesuperior.config_parser import config
  9. from lakesuperior.exceptions import InvalidResourceError
  10. from lakesuperior.env import env
  11. from lakesuperior.model.ldp_factory import LdpFactory
  12. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  13. logger = logging.getLogger(__name__)
  14. app_globals = env.app_globals
  15. def transaction(write=False):
  16. '''
  17. Handle atomic operations in a store.
  18. This wrapper ensures that a write operation is performed atomically. It
  19. also takes care of sending a message for each resource changed in the
  20. transaction.
  21. '''
  22. def _transaction_deco(fn):
  23. @wraps(fn)
  24. def _wrapper(*args, **kwargs):
  25. # Mark transaction begin timestamp. This is used for create and
  26. # update timestamps on resources.
  27. env.timestamp = arrow.utcnow()
  28. env.timestamp_term = Literal(env.timestamp, datatype=XSD.dateTime)
  29. with TxnManager(app_globals.rdf_store, write=write) as txn:
  30. ret = fn(*args, **kwargs)
  31. if len(app_globals.changelog):
  32. job = Thread(target=process_queue)
  33. job.start()
  34. delattr(env, 'timestamp')
  35. delattr(env, 'timestamp_term')
  36. return ret
  37. return _wrapper
  38. return _transaction_deco
  39. def process_queue():
  40. '''
  41. Process the message queue on a separate thread.
  42. '''
  43. lock = Lock()
  44. lock.acquire()
  45. while len(app_globals.changelog):
  46. send_event_msg(app_globals.changelog.popleft())
  47. lock.release()
  48. def send_event_msg(remove_trp, add_trp, metadata):
  49. '''
  50. Break down delta triples, find subjects and send event message.
  51. '''
  52. remove_grp = groupby(remove_trp, lambda x : x[0])
  53. remove_dict = { k[0] : k[1] for k in remove_grp }
  54. add_grp = groupby(add_trp, lambda x : x[0])
  55. add_dict = { k[0] : k[1] for k in add_grp }
  56. subjects = set(remove_dict.keys()) | set(add_dict.keys())
  57. for rsrc_uri in subjects:
  58. self._logger.info('subject: {}'.format(rsrc_uri))
  59. app_globals.messenger.send
  60. ### API METHODS ###
  61. @transaction()
  62. def get(uid, repr_options={}):
  63. '''
  64. Get an LDPR resource.
  65. The resource comes preloaded with user data and metadata as indicated by
  66. the `repr_options` argument. Any further handling of this resource is done
  67. outside of a transaction.
  68. @param uid (string) Resource UID.
  69. @param repr_options (dict(bool)) Representation options. This is a dict
  70. that is unpacked downstream in the process. The default empty dict results
  71. in default values. The accepted dict keys are:
  72. - incl_inbound: include inbound references. Default: False.
  73. - incl_children: include children URIs. Default: True.
  74. - embed_children: Embed full graph of all child resources. Default: False
  75. '''
  76. rsrc = LdpFactory.from_stored(uid, repr_options)
  77. # Load graph before leaving the transaction.
  78. rsrc.imr
  79. return rsrc
  80. @transaction()
  81. def get_version_info(uid):
  82. '''
  83. Get version metadata (fcr:versions).
  84. '''
  85. return LdpFactory.from_stored(uid).version_info
  86. @transaction()
  87. def get_version(uid, ver_uid):
  88. '''
  89. Get version metadata (fcr:versions).
  90. '''
  91. return LdpFactory.from_stored(uid).get_version(ver_uid)
  92. @transaction(True)
  93. def create(parent, slug, **kwargs):
  94. '''
  95. Mint a new UID and create a resource.
  96. The UID is computed from a given parent UID and a "slug", a proposed path
  97. relative to the parent. The application will attempt to use the suggested
  98. path but it may use a different one if a conflict with an existing resource
  99. arises.
  100. @param parent (string) UID of the parent resource.
  101. @param slug (string) Tentative path relative to the parent UID.
  102. @param **kwargs Other parameters are passed to the
  103. LdpFactory.from_provided method. Please see the documentation for that
  104. method for explanation of individual parameters.
  105. @return string UID of the new resource.
  106. '''
  107. uid = LdpFactory.mint_uid(parent, slug)
  108. logger.debug('Minted UID for new resource: {}'.format(uid))
  109. rsrc = LdpFactory.from_provided(uid, **kwargs)
  110. rsrc.create_or_replace_rsrc(create_only=True)
  111. return uid
  112. @transaction(True)
  113. def create_or_replace(uid, stream=None, **kwargs):
  114. '''
  115. Create or replace a resource with a specified UID.
  116. If the resource already exists, all user-provided properties of the
  117. existing resource are deleted. If the resource exists and the provided
  118. content is empty, an exception is raised (not sure why, but that's how
  119. FCREPO4 handles it).
  120. @param uid (string) UID of the resource to be created or updated.
  121. @param stream (BytesIO) Content stream. If empty, an empty container is
  122. created.
  123. @param **kwargs Other parameters are passed to the
  124. LdpFactory.from_provided method. Please see the documentation for that
  125. method for explanation of individual parameters.
  126. @return string Event type: whether the resource was created or updated.
  127. '''
  128. rsrc = LdpFactory.from_provided(uid, stream=stream, **kwargs)
  129. if not stream and rsrc.is_stored:
  130. raise InvalidResourceError(rsrc.uid,
  131. 'Resource {} already exists and no data set was provided.')
  132. return rsrc.create_or_replace_rsrc()
  133. @transaction(True)
  134. def update(uid, update_str):
  135. '''
  136. Update a resource with a SPARQL-Update string.
  137. @param uid (string) Resource UID.
  138. @param update_str (string) SPARQL-Update statements.
  139. '''
  140. rsrc = LdpFactory.from_stored(uid)
  141. rsrc.patch(update_str)
  142. return rsrc
  143. @transaction(True)
  144. def create_version(uid, ver_uid):
  145. '''
  146. Create a resource version.
  147. @param uid (string) Resource UID.
  148. @param ver_uid (string) Version UID to be appended to the resource URI.
  149. NOTE: this is a "slug", i.e. the version URI is not guaranteed to be the
  150. one indicated.
  151. @return string Version UID.
  152. '''
  153. return LdpFactory.from_stored(uid).create_version(ver_uid)
  154. @transaction(True)
  155. def delete(uid, leave_tstone=True):
  156. '''
  157. Delete a resource.
  158. @param uid (string) Resource UID.
  159. @param leave_tstone (bool) Whether to perform a soft-delete and leave a
  160. tombstone resource, or wipe any memory of the resource.
  161. '''
  162. # If referential integrity is enforced, grab all inbound relationships
  163. # to break them.
  164. refint = rdfly.config['referential_integrity']
  165. inbound = True if refint else inbound
  166. repr_opts = {'incl_inbound' : True} if refint else {}
  167. rsrc = LdpFactory.from_stored(uid, repr_opts)
  168. children = rdfly.get_descendants(uid)
  169. ret = (
  170. rsrc.bury_rsrc(inbound)
  171. if leave_tstone
  172. else rsrc.forget_rsrc(inbound))
  173. for child_uri in children:
  174. try:
  175. child_rsrc = LdpFactory.from_stored(
  176. rdfly.uri_to_uid(child_uri),
  177. repr_opts={'incl_children' : False})
  178. except (TombstoneError, ResourceNotExistsError):
  179. continue
  180. if leave_tstone:
  181. child_rsrc.bury_rsrc(inbound, tstone_pointer=rsrc.uri)
  182. else:
  183. child_rsrc.forget_rsrc(inbound)
  184. return ret
  185. @transaction(True)
  186. def resurrect(uid):
  187. '''
  188. Reinstate a buried (soft-deleted) resource.
  189. @param uid (string) Resource UID.
  190. '''
  191. return LdpFactory.from_stored(uid).resurrect_rsrc()
  192. @transaction(True)
  193. def forget(uid, inbound=True):
  194. '''
  195. Delete a resource completely, removing all its traces.
  196. @param uid (string) Resource UID.
  197. @param inbound (bool) Whether the inbound relationships should be deleted
  198. as well. If referential integrity is checked system-wide inbound references
  199. are always deleted and this option has no effect.
  200. '''
  201. return LdpFactory.from_stored(uid).forget_rsrc(inbound)