simple_layout.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. from copy import deepcopy
  2. import arrow
  3. from rdflib import Graph
  4. from rdflib.namespace import RDF, XSD
  5. from rdflib.query import ResultException
  6. from rdflib.resource import Resource
  7. from rdflib.term import Literal, URIRef, Variable
  8. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  9. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  10. from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
  11. srv_mgd_predicates, srv_mgd_types
  12. from lakesuperior.exceptions import InvalidResourceError, \
  13. ResourceNotExistsError
  14. from lakesuperior.store_layouts.rdf.base_rdf_layout import BaseRdfLayout
  15. from lakesuperior.util.translator import Translator
  16. class SimpleLayout(BaseRdfLayout):
  17. '''
  18. This is the simplest layout.
  19. It uses a flat triple structure without named graphs aimed at performance.
  20. Changes are destructive.
  21. In theory it could be used on top of a triplestore instead of a quad-store
  22. for (possible) improved speed and reduced storage.
  23. '''
  24. def extract_imr(self, uri, strict=False, minimal=False, incl_inbound=False,
  25. embed_children=False, incl_srv_mgd=True):
  26. '''
  27. See base_rdf_layout.extract_imr.
  28. '''
  29. inbound_qry = '\n?s1 ?p1 {}'.format(uri.n3()) \
  30. if incl_inbound else ''
  31. embed_children_qry = '''
  32. OPTIONAL {{
  33. {0} ldp:contains ?c .
  34. ?c ?cp ?co .
  35. }}
  36. '''.format(uri.n3()) if embed_children else ''
  37. q = '''
  38. CONSTRUCT {{
  39. {0} ?p ?o .{1}
  40. ?c ?cp ?co .
  41. }} WHERE {{
  42. {0} ?p ?o .{1}{2}
  43. #FILTER (?p != premis:hasMessageDigest) .
  44. }}
  45. '''.format(uri.n3(), inbound_qry, embed_children_qry)
  46. try:
  47. qres = self.query(q)
  48. except ResultException:
  49. # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
  50. g = Graph()
  51. else:
  52. g = qres.graph
  53. # @FIXME This can be expensive with many children. Move this in
  54. # query string.
  55. if not incl_srv_mgd:
  56. self._logger.info('Removing server managed triples.')
  57. for p in srv_mgd_predicates:
  58. self._logger.debug('Removing predicate: {}'.format(p))
  59. rsrc.remove(p)
  60. for t in srv_mgd_types:
  61. self._logger.debug('Removing type: {}'.format(t))
  62. rsrc.remove(RDF.type, t)
  63. #self._logger.debug('Found resource: {}'.format(
  64. # g.serialize(format='turtle').decode('utf-8')))
  65. if strict and not len(g):
  66. raise ResourceNotExistsError(uri)
  67. return Resource(g, uri)
  68. def ask_rsrc_exists(self, urn):
  69. '''
  70. See base_rdf_layout.ask_rsrc_exists.
  71. '''
  72. self._logger.info('Checking if resource exists: {}'.format(urn))
  73. return (urn, Variable('p'), Variable('o')) in self.ds
  74. def create_rsrc(self, imr):
  75. '''
  76. See base_rdf_layout.create_rsrc.
  77. '''
  78. self._logger.debug('Creating resource:\n{}'.format(
  79. imr.graph.serialize(format='turtle').decode('utf8')))
  80. #self.ds |= imr.graph # This does not seem to work with datasets.
  81. for t in imr.graph:
  82. self.ds.add(t)
  83. return self.RES_CREATED
  84. def replace_rsrc(self, imr):
  85. '''
  86. See base_rdf_layout.replace_rsrc.
  87. '''
  88. # @TODO Move this to LDP.
  89. rsrc = self.rsrc(imr.identifier)
  90. # Delete all triples but keep creation date and creator.
  91. created = rsrc.value(nsc['fcrepo'].created)
  92. created_by = rsrc.value(nsc['fcrepo'].createdBy)
  93. if not created or not created_by:
  94. raise InvalidResourceError(urn)
  95. imr.set(nsc['fcrepo'].created, created)
  96. imr.set(nsc['fcrepo'].createdBy, created_by)
  97. # Delete the stored triples.
  98. self.delete_rsrc(imr.identifier)
  99. #self.ds |= imr.graph # This does not seem to work with datasets.
  100. for t in imr.graph:
  101. self.ds.add(t)
  102. return self.RES_UPDATED
  103. def modify_dataset(self, remove_trp, add_trp):
  104. '''
  105. See base_rdf_layout.update_rsrc.
  106. '''
  107. self.ds -= remove_trp
  108. self.ds += add_trp
  109. #for t in remove.predicate_objects():
  110. # self.rsrc.remove(t[0], t[1])
  111. #for t in add.predicate_objects():
  112. # self.rsrc.add(t[0], t[1])
  113. def delete_rsrc(self, urn, inbound=True):
  114. '''
  115. Delete a resource. If `inbound` is specified, delete all inbound
  116. relationships as well (this is the default).
  117. '''
  118. rsrc = self.rsrc(urn)
  119. print('Removing resource {}.'.format(rsrc.identifier))
  120. rsrc.remove(Variable('p'))
  121. # @TODO Remove children recursively
  122. if inbound:
  123. self.ds.remove(
  124. (Variable('s'), Variable('p'), rsrc.identifier))