simple_strategy.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. from copy import deepcopy
  2. from rdflib import Graph
  3. from rdflib.namespace import XSD
  4. from rdflib.term import Literal, URIRef, Variable
  5. from lakesuperior.core.namespaces import ns_collection as nsc
  6. from lakesuperior.core.namespaces import ns_mgr as nsm
  7. from lakesuperior.store_strategies.rdf.base_rdf_strategy import \
  8. BaseRdfStrategy, ResourceExistsError
  9. class SimpleStrategy(BaseRdfStrategy):
  10. '''
  11. This is the simplest strategy.
  12. It uses a flat triple structure without named graphs aimed at performance.
  13. In theory it could be used on top of a triplestore instead of a quad-store
  14. for (possible) improved speed and reduced storage.
  15. '''
  16. def ask_rsrc_exists(self, urn):
  17. '''
  18. See base_rdf_strategy.ask_rsrc_exists.
  19. '''
  20. return (urn, Variable('p'), Variable('o')) in self.ds
  21. def get_rsrc(self, urn, globalize=True):
  22. '''
  23. See base_rdf_strategy.get_rsrc.
  24. '''
  25. res = self.ds.query(
  26. 'CONSTRUCT WHERE { ?s ?p ?o }',
  27. initBindings={'s' : urn}
  28. )
  29. g = Graph()
  30. g += res
  31. return self.globalize_triples(g) if globalize else g
  32. def create_or_replace_rsrc(self, urn, g, ts, format='text/turtle',
  33. base_types=None, commit=False):
  34. '''
  35. See base_rdf_strategy.create_or_replace_rsrc.
  36. '''
  37. if self.ask_rsrc_exists(urn):
  38. print('Resource exists. Removing.')
  39. old_rsrc = deepcopy(self.get_rsrc(urn, False)).resource(urn)
  40. self.delete_rsrc(urn)
  41. g.add((urn, nsc['fedora'].created,
  42. old_rsrc.value(nsc['fedora'].created)))
  43. g.add((urn, nsc['fedora'].createdBy,
  44. old_rsrc.value(nsc['fedora'].createdBy)))
  45. else:
  46. print('New resource.')
  47. g.add((urn, nsc['fedora'].created, ts))
  48. g.add((urn, nsc['fedora'].createdBy, Literal('BypassAdmin')))
  49. for s, p, o in g:
  50. self.ds.add((s, p, o))
  51. if commit:
  52. self.conn.store.commit()
  53. def create_rsrc(self, urn, g, ts, base_types=None, commit=False):
  54. '''
  55. See base_rdf_strategy.create_rsrc.
  56. '''
  57. if self.ask_rsrc_exists(urn):
  58. raise ResourceExistsError(
  59. 'Resource #{} already exists. It cannot be re-created with '
  60. 'this method.'.format(urn))
  61. g.add((self.urn, nsc['fedora'].created, ts))
  62. g.add((self.urn, nsc['fedora'].createdBy, Literal('BypassAdmin')))
  63. for s, p, o in g:
  64. self.ds.add((s, p, o))
  65. if commit:
  66. self.conn.store.commit()
  67. def patch_rsrc(self, urn, data, ts, commit=False):
  68. '''
  69. Perform a SPARQL UPDATE on a resource.
  70. '''
  71. q = self.localize_string(data).replace('<>', urn.n3())
  72. self.ds.update(q)
  73. if commit:
  74. self.conn.store.commit()
  75. def delete_rsrc(self, urn, inbound=False, commit=False):
  76. '''
  77. Delete a resource. If `inbound` is specified, delete all inbound
  78. relationships as well.
  79. '''
  80. print('Removing resource {}.'.format(urn))
  81. self.ds.remove((urn, Variable('p'), Variable('o')))
  82. if inbound:
  83. self.ds.remove((Variable('s'), Variable('p'), urn))
  84. if commit:
  85. self.conn.store.commit()
  86. ## PROTECTED METHODS ##