migrator.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. import logging
  2. import shutil
  3. from io import BytesIO
  4. from contextlib import ContextDecorator
  5. from os import path
  6. from urllib.parse import urldefrag
  7. import lmdb
  8. import requests
  9. import yaml
  10. from rdflib import Graph, URIRef
  11. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  12. from lakesuperior.env import env
  13. from lakesuperior.globals import AppGlobals
  14. from lakesuperior.config_parser import parse_config
  15. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  16. logger = logging.getLogger(__name__)
  17. class StoreWrapper(ContextDecorator):
  18. '''
  19. Open and close a store.
  20. '''
  21. def __init__(self, store):
  22. self.store = store
  23. def __enter__(self):
  24. self.store.open(
  25. env.config['application']['store']['ldp_rs'])
  26. def __exit__(self, *exc):
  27. self.store.close()
  28. class Migrator:
  29. """
  30. Class to handle a database migration.
  31. This class holds state of progress and shared variables as it crawls
  32. through linked resources in an LDP server.
  33. Since a repository migration can be a very long operation but it is
  34. impossible to know the number of the resources to gather by LDP interaction
  35. alone, a progress ticker outputs the number of processed resources at
  36. regular intervals.
  37. """
  38. """
  39. LMDB database parameters.
  40. See :meth:`lmdb.Environment.__init__`
  41. """
  42. db_params = {
  43. 'map_size': 1024 ** 4,
  44. 'metasync': False,
  45. 'readahead': False,
  46. 'meminit': False,
  47. }
  48. """List of predicates to ignore when looking for links."""
  49. ignored_preds = (
  50. nsc['fcrepo'].hasParent,
  51. nsc['fcrepo'].hasTransactionProvider,
  52. nsc['fcrepo'].hasFixityService,
  53. )
  54. def __init__(
  55. self, src, dest, zero_binaries=False, compact_uris=False):
  56. """
  57. Set up base paths and clean up existing directories.
  58. :param src: (URIRef) Webroot of source repository. This must
  59. correspond to the LDP root node (for Fedora it can be e.g.
  60. ``http://localhost:8080fcrepo/rest/``) and is used to determine if URIs
  61. retrieved are managed by this repository.
  62. :param dest: (str) Destination repository path. If the location exists
  63. it must be a writable directory. It will be deleted and recreated. If
  64. it does not exist, it will be created along with its parents if
  65. missing.
  66. :param binary_handling: (string) One of ``include``, ``truncate`` or
  67. ``split``.
  68. :param compact_uris: (bool) NOT IMPLEMENTED. Whether the process should
  69. attempt to compact URIs generated with broken up path segments. If the
  70. UID matches a pattern such as `/12/34/56/123456...` it is converted to
  71. `/123456...`. This would remove a lot of cruft caused by the pairtree
  72. segments. Note that this will change the publicly exposed URIs. If
  73. durability is a concern, a rewrite directive can be added to the HTTP
  74. server that proxies the WSGI endpoint.
  75. """
  76. # Set up repo folder structure and copy default configuration to
  77. # destination file.
  78. cur_dir = path.dirname(path.dirname(path.abspath(__file__)))
  79. self.dbpath = '{}/data/ldprs_store'.format(dest)
  80. self.fpath = '{}/data/ldpnr_store'.format(dest)
  81. self.config_dir = '{}/etc'.format(dest)
  82. shutil.rmtree(dest, ignore_errors=True)
  83. shutil.copytree(
  84. '{}/etc.defaults'.format(cur_dir), self.config_dir)
  85. # Modify and overwrite destination configuration.
  86. orig_config = parse_config(self.config_dir)
  87. orig_config['application']['store']['ldp_rs']['location'] = self.dbpath
  88. orig_config['application']['store']['ldp_nr']['path'] = self.fpath
  89. # This sets a "hidden" configuration property that bypasses all server
  90. # management on resource load: referential integrity, server-managed
  91. # triples, etc. This will be removed at the end of the migration.
  92. orig_config['application']['store']['ldp_rs']['disable_checks'] = True
  93. with open('{}/application.yml'.format(self.config_dir), 'w') \
  94. as config_file:
  95. config_file.write(yaml.dump(orig_config['application']))
  96. env.config = parse_config(self.config_dir)
  97. env.app_globals = AppGlobals(env.config)
  98. with TxnManager(env.app_globals.rdf_store, write=True) as txn:
  99. env.app_globals.rdfly.bootstrap()
  100. env.app_globals.rdfly.store.close()
  101. env.app_globals.nonrdfly.bootstrap()
  102. self.src = src.rstrip('/')
  103. self.zero_binaries = zero_binaries
  104. from lakesuperior.api import resource as rsrc_api
  105. self.rsrc_api = rsrc_api
  106. print('Environment: {}'.format(env))
  107. print('Resource API Environment: {}'.format(self.rsrc_api.env))
  108. def migrate(self, start_pts=None, list_file=None):
  109. """
  110. Migrate the database.
  111. This method creates a fully functional and configured LAKEsuperior
  112. data set contained in a folder from an LDP repository.
  113. :param tuple|list start_pts: List of starting points to retrieve
  114. resources from. It would typically be the repository root in case of a
  115. full dump or one or more resources in the repository for a partial one.
  116. :param str listf_ile: path to a local file containing a list of URIs,
  117. one per line.
  118. """
  119. self._ct = 0
  120. with StoreWrapper(env.app_globals.rdfly.store):
  121. if start_pts:
  122. for start in start_pts:
  123. if not start.startswith('/'):
  124. raise ValueError(
  125. 'Starting point {} does not begin with a slash.'
  126. .format(start))
  127. self._crawl(start)
  128. elif list_file:
  129. with open(list_file, 'r') as fp:
  130. for uri in fp:
  131. self._crawl(uri.strip().replace(self.src, ''))
  132. self._remove_temp_options()
  133. logger.info('Dumped {} resources.'.format(self._ct))
  134. return self._ct
  135. def _crawl(self, uid):
  136. """
  137. Get the contents of a resource and its relationships recursively.
  138. This method recurses into itself each time a reference to a resource
  139. managed by the repository is encountered.
  140. @param uid (string) The path relative to the source server webroot
  141. pointing to the resource to crawl, effectively the resource UID.
  142. """
  143. ibase = str(nsc['fcres'])
  144. # Public URI of source repo.
  145. uri = self.src + uid
  146. # Internal URI of destination.
  147. iuri = ibase + uid
  148. rsp = requests.head(uri)
  149. rsp.raise_for_status()
  150. # Determine LDP type.
  151. ldp_type = 'ldp_nr'
  152. try:
  153. for link in requests.utils.parse_header_links(
  154. rsp.headers.get('link')):
  155. if (
  156. link.get('rel') == 'type'
  157. and (
  158. link.get('url') == str(nsc['ldp'].RDFSource)
  159. <<<<<<< HEAD
  160. or link.get('url') == str(nsc['ldp'].Container)
  161. ):
  162. =======
  163. or link.get('url') == str(nsc['ldp'].Container))
  164. ):
  165. >>>>>>> f3821f6... Add conditions to avoid loops.
  166. # Resource is an LDP-RS.
  167. ldp_type = 'ldp_rs'
  168. break
  169. except TypeError:
  170. ldp_type = 'ldp_rs'
  171. #raise ValueError('URI {} is not an LDP resource.'.format(uri))
  172. # Get the whole RDF document now because we have to know all outbound
  173. # links.
  174. get_uri = (
  175. uri if ldp_type == 'ldp_rs' else '{}/fcr:metadata'.format(uri))
  176. get_req = requests.get(get_uri)
  177. get_req.raise_for_status()
  178. data = get_req.content.replace(
  179. self.src.encode('utf-8'), ibase.encode('utf-8'))
  180. #logger.debug('Localized data: {}'.format(data.decode('utf-8')))
  181. gr = Graph(identifier=iuri).parse(data=data, format='turtle')
  182. # Grab binary and set new resource parameters.
  183. if ldp_type == 'ldp_nr':
  184. provided_imr = gr.resource(URIRef(iuri))
  185. if self.zero_binaries:
  186. data = b'\x00'
  187. mimetype = str(provided_imr.value(
  188. nsc['ebucore'].hasMimeType,
  189. default='application/octet-stream'))
  190. else:
  191. bin_resp = requests.get(uri)
  192. bin_resp.raise_for_status()
  193. data = bin_resp.content
  194. mimetype = bin_resp.headers.get('content-type')
  195. self.rsrc_api.create_or_replace(
  196. uid, mimetype=mimetype, provided_imr=provided_imr,
  197. stream=BytesIO(data))
  198. else:
  199. mimetype = 'text/turtle'
  200. # @TODO This can be improved by creating a resource API method for
  201. # creating a resource from an RDFLib graph. Here we had to deserialize
  202. # the RDF data to gather information but have to pass the original
  203. # serialized stream, which has to be deserialized again in the model.
  204. self.rsrc_api.create_or_replace(
  205. uid, mimetype=mimetype, stream=BytesIO(data))
  206. self._ct += 1
  207. if self._ct % 10 ==0:
  208. print('{} resources processed.'.format(self._ct))
  209. # Now, crawl through outbound links.
  210. # LDP-NR fcr:metadata must be checked too.
  211. for pred, obj in gr.predicate_objects():
  212. #import pdb; pdb.set_trace()
  213. obj_uid = obj.replace(ibase, '')
  214. if (
  215. isinstance(obj, URIRef)
  216. and obj.startswith(iuri)
  217. and str(urldefrag(obj).url) != str(iuri)
  218. and not self.rsrc_api.exists(obj_uid) # Avoid ∞ loop
  219. and pred not in self.ignored_preds
  220. ):
  221. print('Object {} will be crawled.'.format(obj_uid))
  222. self._crawl(urldefrag(obj_uid).url)
  223. def _remove_temp_options(self):
  224. """Remove temporary options in configuration."""
  225. del(env.config['application']['store']['ldp_rs']['disable_checks'])
  226. with open('{}/application.yml'.format(self.config_dir), 'w') \
  227. as config_file:
  228. config_file.write(yaml.dump(env.config['application']))