admin.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. start_pts = (
  27. (start,)
  28. if not isinstance(start, list) and not isinstance(start, tuple)
  29. else start)
  30. return Migrator(src, dest, start_pts, **kwargs).migrate()