admin.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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=('/',), **kwargs):
  22. """
  23. Migrate an LDP repository to a new LAKEsuperior instance.
  24. See :py:meth:`Migrator.__init__`.
  25. """
  26. # 1. Retrieve list of resources.
  27. start_pts = (
  28. (start,)
  29. if not isinstance(start, list) and not isinstance(start, tuple)
  30. else start)
  31. return Migrator(src, dest, start_pts, **kwargs).migrate()