bootstrap.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.lmdb_store import TxnManager
  9. from lakesuperior.model.ldpr import Ldpr
  10. __doc__ = '''
  11. This script will parse configuration files and initialize a filesystem and
  12. triplestore with an empty FCREPO repository.
  13. It is used in test suites and on a first run.
  14. Additional, scaffolding files may be parsed to create initial contents.
  15. '''
  16. def bootstrap_binary_store(app):
  17. '''
  18. Initialize binary file store.
  19. '''
  20. root_path = app.config['store']['ldp_nr']['path']
  21. print('Removing binary store path: {}'.format(root_path))
  22. try:
  23. shutil.rmtree(root_path)
  24. except FileNotFoundError:
  25. pass
  26. print('Recreating binary store path: {}'.format(root_path))
  27. os.makedirs(root_path + '/tmp')
  28. print('Binary store initialized.')
  29. if __name__=='__main__':
  30. sys.stdout.write(
  31. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  32. '(Please type `yes` to continue) > ')
  33. choice = input().lower()
  34. if choice != 'yes':
  35. print('Aborting.')
  36. sys.exit()
  37. app = create_app(config['application'], config['logging'])
  38. if hasattr(app.rdfly.store, 'begin'):
  39. with TxnManager(app.rdfly.store, write=True) as txn:
  40. app.rdfly.bootstrap()
  41. else:
  42. app.rdfly.bootstrap()
  43. bootstrap_binary_store(app)