bootstrap.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_binary_store(app):
  18. '''
  19. Initialize binary file store.
  20. '''
  21. root_path = app.config['store']['ldp_nr']['path']
  22. print('Removing binary store path: {}'.format(root_path))
  23. try:
  24. shutil.rmtree(root_path)
  25. except FileNotFoundError:
  26. pass
  27. print('Recreating binary store path: {}'.format(root_path))
  28. os.makedirs(root_path + '/tmp')
  29. print('Binary store initialized.')
  30. if __name__=='__main__':
  31. sys.stdout.write(
  32. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  33. '(Please type `yes` to continue) > ')
  34. choice = input().lower()
  35. if choice != 'yes':
  36. print('Aborting.')
  37. sys.exit()
  38. app = create_app(config['application'], config['logging'])
  39. app.rdfly.bootstrap()
  40. bootstrap_binary_store(app)