bootstrap.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #!/usr/bin/env python
  2. import os
  3. import shutil
  4. import sys
  5. sys.path.append('.')
  6. from lakesuperior.app import create_app
  7. from lakesuperior.config_parser import config
  8. from lakesuperior.store_layouts.ldp_rs.bdb_connector import \
  9. BdbConnector
  10. from lakesuperior.model.ldpr import Ldpr
  11. __doc__ = '''
  12. This script will parse configuration files and initialize a filesystem and
  13. triplestore with an empty FCREPO repository.
  14. It is used in test suites and on a first run.
  15. Additional, scaffolding files may be parsed to create initial contents.
  16. '''
  17. def bootstrap_db(app):
  18. '''
  19. Initialize RDF store.
  20. '''
  21. print('Cleaning up graph store: {}'.format(
  22. app.config['store']['ldp_rs']['connector']['options']['location']))
  23. for g in app.rdfly.ds.graphs():
  24. app.rdfly.ds.remove_graph(g)
  25. # @TODO Make configurable.
  26. print('Populating graph store with base dataset.')
  27. app.rdfly.ds.default_context.parse(
  28. source='data/bootstrap/default_layout.nq', format='nquads')
  29. app.rdfly.ds.store.commit()
  30. return app.rdfly
  31. def bootstrap_binary_store(app):
  32. '''
  33. Initialize binary file store.
  34. '''
  35. root_path = app.config['store']['ldp_nr']['path']
  36. print('Removing binary store path: {}'.format(root_path))
  37. try:
  38. shutil.rmtree(root_path)
  39. except FileNotFoundError:
  40. pass
  41. print('Recreating binary store path: {}'.format(root_path))
  42. os.makedirs(root_path + '/tmp')
  43. if __name__=='__main__':
  44. sys.stdout.write(
  45. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  46. '(Please type `yes` to continue) > ')
  47. choice = input().lower()
  48. if choice != 'yes':
  49. print('Aborting.')
  50. sys.exit()
  51. app = create_app(config['application'], config['logging'])
  52. bootstrap_db(app)
  53. bootstrap_binary_store(app)