resource.py 8.5 KB

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