53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
import logging
|
|
|
|
from borgmatic.borg import environment, flags
|
|
from borgmatic.execute import execute_command
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def compact_segments(
|
|
dry_run,
|
|
repository_path,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path='borg',
|
|
remote_path=None,
|
|
progress=False,
|
|
cleanup_commits=False,
|
|
threshold=None,
|
|
):
|
|
'''
|
|
Given dry-run flag, a local or remote repository path, a configuration dict, and the local Borg
|
|
version, compact the segments in a repository.
|
|
'''
|
|
umask = config.get('umask', None)
|
|
lock_wait = config.get('lock_wait', None)
|
|
extra_borg_options = config.get('extra_borg_options', {}).get('compact', '')
|
|
|
|
full_command = (
|
|
(local_path, 'compact')
|
|
+ (('--remote-path', remote_path) if remote_path else ())
|
|
+ (('--umask', str(umask)) if umask else ())
|
|
+ (('--log-json',) if global_arguments.log_json else ())
|
|
+ (('--lock-wait', str(lock_wait)) if lock_wait else ())
|
|
+ (('--progress',) if progress else ())
|
|
+ (('--cleanup-commits',) if cleanup_commits else ())
|
|
+ (('--threshold', str(threshold)) if threshold else ())
|
|
+ (('--info',) if logger.getEffectiveLevel() == logging.INFO else ())
|
|
+ (('--debug', '--show-rc') if logger.isEnabledFor(logging.DEBUG) else ())
|
|
+ (tuple(extra_borg_options.split(' ')) if extra_borg_options else ())
|
|
+ flags.make_repository_flags(repository_path, local_borg_version)
|
|
)
|
|
|
|
if dry_run:
|
|
logging.info(f'{repository_path}: Skipping compact (dry run)')
|
|
return
|
|
|
|
execute_command(
|
|
full_command,
|
|
output_log_level=logging.INFO,
|
|
borg_local_path=local_path,
|
|
extra_environment=environment.make_environment(config),
|
|
)
|