bootstrap.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.graph_store_connector import \
  9. GraphStoreConnector
  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. dbconf = app.config['store']['ldp_rs']
  22. print('Resetting RDF store to base data set: {}'.format(dbconf['webroot']))
  23. db = GraphStoreConnector(
  24. query_ep=dbconf['webroot'] + dbconf['query_ep'],
  25. update_ep=dbconf['webroot'] + dbconf['update_ep'],
  26. autocommit=True)
  27. print('Cleaning up graph store: {}'.format(dbconf['webroot']))
  28. for g in db.ds.graphs():
  29. db.ds.remove_graph(g)
  30. # @TODO Make configurable.
  31. print('Populating graph store with base dataset.')
  32. db.ds.default_context.parse(source='data/bootstrap/default_layout.nq',
  33. format='nquads')
  34. return db
  35. def bootstrap_binary_store(app):
  36. '''
  37. Initialize binary file store.
  38. '''
  39. root_path = app.config['store']['ldp_nr']['path']
  40. print('Removing binary store path: {}'.format(root_path))
  41. try:
  42. shutil.rmtree(root_path)
  43. except FileNotFoundError:
  44. pass
  45. print('Recreating binary store path: {}'.format(root_path))
  46. os.makedirs(root_path + '/tmp')
  47. if __name__=='__main__':
  48. sys.stdout.write(
  49. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  50. '(Please type `yes` to continue) > ')
  51. choice = input().lower()
  52. if choice != 'yes':
  53. print('Aborting.')
  54. sys.exit()
  55. app = create_app(config['application'], config['logging'])
  56. bootstrap_db(app)
  57. bootstrap_binary_store(app)