simple_layout.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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, incl_inbound=False,
  25. embed_children=False, incl_srv_mgd=True):
  26. '''
  27. See base_rdf_layout.extract_imr.
  28. '''
  29. inbound_construct = '\n?s1 ?p1 {} .'.format(uri.n3()) \
  30. if incl_inbound else ''
  31. inbound_qry = '\nOPTIONAL {{ ?s1 ?p1 {} . }} .'.format(uri.n3()) \
  32. if incl_inbound else ''
  33. embed_children_qry = '''
  34. OPTIONAL {{
  35. {0} ldp:contains ?c .
  36. ?c ?cp ?co .
  37. }}
  38. '''.format(uri.n3()) if embed_children else ''
  39. srv_mgd_qry = ''
  40. if not incl_srv_mgd:
  41. for p in srv_mgd_predicates:
  42. self._logger.debug('Removing predicate: {}'.format(p))
  43. srv_mgd_qry += '\nFILTER ( ?p != {} ) .'.format(p.n3())
  44. for t in srv_mgd_types:
  45. self._logger.debug('Removing type: {}'.format(t))
  46. srv_mgd_qry += '\nMINUS {{ ?s a {} .}} .'.format(t.n3())
  47. q = '''
  48. CONSTRUCT {{
  49. {uri} ?p ?o .{inb_cnst}
  50. ?c ?cp ?co .
  51. }} WHERE {{
  52. {uri} ?p ?o .{inb_qry}{embed_chld}{omit_srv_mgd}
  53. #FILTER (?p != premis:hasMessageDigest) .
  54. }}
  55. '''.format(uri=uri.n3(), inb_cnst=inbound_construct,
  56. inb_qry=inbound_qry, embed_chld=embed_children_qry,
  57. omit_srv_mgd=srv_mgd_qry)
  58. try:
  59. qres = self.query(q)
  60. except ResultException:
  61. # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
  62. g = Graph()
  63. else:
  64. g = qres.graph
  65. #self._logger.debug('Found resource: {}'.format(
  66. # g.serialize(format='turtle').decode('utf-8')))
  67. if strict and not len(g):
  68. raise ResourceNotExistsError(uri)
  69. return Resource(g, uri)
  70. def ask_rsrc_exists(self, urn):
  71. '''
  72. See base_rdf_layout.ask_rsrc_exists.
  73. '''
  74. self._logger.info('Checking if resource exists: {}'.format(urn))
  75. return (urn, Variable('p'), Variable('o')) in self.ds
  76. def create_rsrc(self, imr):
  77. '''
  78. See base_rdf_layout.create_rsrc.
  79. '''
  80. self._logger.debug('Creating resource:\n{}'.format(
  81. imr.graph.serialize(format='turtle').decode('utf8')))
  82. #self.ds |= imr.graph # This does not seem to work with datasets.
  83. for t in imr.graph:
  84. self.ds.add(t)
  85. return self.RES_CREATED
  86. def replace_rsrc(self, imr):
  87. '''
  88. See base_rdf_layout.replace_rsrc.
  89. '''
  90. # @TODO Move this to LDP.
  91. rsrc = self.rsrc(imr.identifier)
  92. # Delete all triples but keep creation date and creator.
  93. created = rsrc.value(nsc['fcrepo'].created)
  94. created_by = rsrc.value(nsc['fcrepo'].createdBy)
  95. if not created or not created_by:
  96. raise InvalidResourceError(urn)
  97. imr.set(nsc['fcrepo'].created, created)
  98. imr.set(nsc['fcrepo'].createdBy, created_by)
  99. # Delete the stored triples.
  100. self.delete_rsrc(imr.identifier)
  101. #self.ds |= imr.graph # This does not seem to work with datasets.
  102. for t in imr.graph:
  103. self.ds.add(t)
  104. return self.RES_UPDATED
  105. def modify_dataset(self, remove_trp, add_trp):
  106. '''
  107. See base_rdf_layout.update_rsrc.
  108. '''
  109. self.ds -= remove_trp
  110. self.ds += add_trp
  111. #for t in remove.predicate_objects():
  112. # self.rsrc.remove(t[0], t[1])
  113. #for t in add.predicate_objects():
  114. # self.rsrc.add(t[0], t[1])
  115. def delete_rsrc(self, urn, inbound=True):
  116. '''
  117. Delete a resource. If `inbound` is specified, delete all inbound
  118. relationships as well (this is the default).
  119. '''
  120. rsrc = self.rsrc(urn)
  121. print('Removing resource {}.'.format(rsrc.identifier))
  122. rsrc.remove(Variable('p'))
  123. # @TODO Remove children recursively
  124. if inbound:
  125. self.ds.remove(
  126. (Variable('s'), Variable('p'), rsrc.identifier))