admin.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import logging
  2. from lakesuperior.env import env
  3. from lakesuperior.migrator import Migrator
  4. from lakesuperior.store.ldp_nr.default_layout import DefaultLayout as FileLayout
  5. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  6. __doc__ = """
  7. Admin API.
  8. This module contains maintenance utilities and stats.
  9. """
  10. logger = logging.getLogger(__name__)
  11. def stats():
  12. """
  13. Get repository statistics.
  14. @return dict Store statistics, resource statistics.
  15. """
  16. import lakesuperior.env_setup
  17. repo_stats = {'rsrc_stats': env.app_globals.rdfly.count_rsrc()}
  18. with TxnManager(env.app_globals.rdf_store) as txn:
  19. repo_stats['store_stats'] = env.app_globals.rdf_store.stats()
  20. return repo_stats
  21. def migrate(src, dest, start_pts=None, list_file=None, **kwargs):
  22. """
  23. Migrate an LDP repository to a new LAKEsuperior instance.
  24. See :py:meth:`Migrator.__init__`.
  25. """
  26. if start_pts:
  27. if not isinstance(
  28. start_pts, list) and not isinstance(start_pts, tuple):
  29. start_pts = (start_pts,)
  30. elif not list_file:
  31. start_pts = ('/',)
  32. return Migrator(src, dest, **kwargs).migrate(start_pts, list_file)