bootstrap.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. app.rdfly.ds.close()
  31. return app.rdfly
  32. def bootstrap_binary_store(app):
  33. '''
  34. Initialize binary file store.
  35. '''
  36. root_path = app.config['store']['ldp_nr']['path']
  37. print('Removing binary store path: {}'.format(root_path))
  38. try:
  39. shutil.rmtree(root_path)
  40. except FileNotFoundError:
  41. pass
  42. print('Recreating binary store path: {}'.format(root_path))
  43. os.makedirs(root_path + '/tmp')
  44. print('Binary store initialized.')
  45. if __name__=='__main__':
  46. sys.stdout.write(
  47. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  48. '(Please type `yes` to continue) > ')
  49. choice = input().lower()
  50. if choice != 'yes':
  51. print('Aborting.')
  52. sys.exit()
  53. app = create_app(config['application'], config['logging'])
  54. bootstrap_db(app)
  55. bootstrap_binary_store(app)