mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-06 20:01:54 +00:00
66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
import logging
|
|
|
|
import borgmatic.borg.compact
|
|
import borgmatic.borg.feature
|
|
import borgmatic.config.validate
|
|
import borgmatic.hooks.command
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def run_compact(
|
|
config_filename,
|
|
repository,
|
|
config,
|
|
hook_context,
|
|
local_borg_version,
|
|
compact_arguments,
|
|
global_arguments,
|
|
dry_run_label,
|
|
local_path,
|
|
remote_path,
|
|
):
|
|
'''
|
|
Run the "compact" action for the given repository.
|
|
'''
|
|
if compact_arguments.repository and not borgmatic.config.validate.repositories_match(
|
|
repository, compact_arguments.repository
|
|
):
|
|
return
|
|
|
|
borgmatic.hooks.command.execute_hook(
|
|
config.get('before_compact'),
|
|
config.get('umask'),
|
|
config_filename,
|
|
'pre-compact',
|
|
global_arguments.dry_run,
|
|
**hook_context,
|
|
)
|
|
if borgmatic.borg.feature.available(borgmatic.borg.feature.Feature.COMPACT, local_borg_version):
|
|
logger.info(
|
|
f'{repository.get("label", repository["path"])}: Compacting segments{dry_run_label}'
|
|
)
|
|
borgmatic.borg.compact.compact_segments(
|
|
global_arguments.dry_run,
|
|
repository['path'],
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path=local_path,
|
|
remote_path=remote_path,
|
|
progress=compact_arguments.progress,
|
|
cleanup_commits=compact_arguments.cleanup_commits,
|
|
threshold=compact_arguments.threshold,
|
|
)
|
|
else: # pragma: nocover
|
|
logger.info(
|
|
f'{repository.get("label", repository["path"])}: Skipping compact (only available/needed in Borg 1.2+)'
|
|
)
|
|
borgmatic.hooks.command.execute_hook(
|
|
config.get('after_compact'),
|
|
config.get('umask'),
|
|
config_filename,
|
|
'post-compact',
|
|
global_arguments.dry_run,
|
|
**hook_context,
|
|
)
|