mirror of https://github.com/borgbackup/borg.git
This commit is contained in:
parent
2b8b31bca5
commit
7a1316cb79
|
@ -93,10 +93,7 @@ class Archiver:
|
||||||
env_var_override='BORG_CHECK_I_KNOW_WHAT_I_AM_DOING', truish=('YES', )):
|
env_var_override='BORG_CHECK_I_KNOW_WHAT_I_AM_DOING', truish=('YES', )):
|
||||||
return EXIT_ERROR
|
return EXIT_ERROR
|
||||||
if not args.archives_only:
|
if not args.archives_only:
|
||||||
logger.info('Starting repository check...')
|
if not repository.check(repair=args.repair):
|
||||||
if repository.check(repair=args.repair):
|
|
||||||
logger.info('Repository check complete, no problems found.')
|
|
||||||
else:
|
|
||||||
return EXIT_WARNING
|
return EXIT_WARNING
|
||||||
if not args.repo_only and not ArchiveChecker().check(
|
if not args.repo_only and not ArchiveChecker().check(
|
||||||
repository, repair=args.repair, archive=args.repository.archive, last=args.last):
|
repository, repair=args.repair, archive=args.repository.archive, last=args.last):
|
||||||
|
|
|
@ -890,6 +890,82 @@ def yes(msg=None, retry_msg=None, false_msg=None, true_msg=None,
|
||||||
ofile.flush()
|
ofile.flush()
|
||||||
|
|
||||||
|
|
||||||
|
class ProgressIndicatorPercent:
|
||||||
|
def __init__(self, total, step=5, start=0, same_line=False, msg="%3.0f%%", file=sys.stderr):
|
||||||
|
"""
|
||||||
|
Percentage-based progress indicator
|
||||||
|
|
||||||
|
:param total: total amount of items
|
||||||
|
:param step: step size in percent
|
||||||
|
:param start: at which percent value to start
|
||||||
|
:param file: output file, default: sys.stderr
|
||||||
|
"""
|
||||||
|
self.counter = 0 # 0 .. (total-1)
|
||||||
|
self.total = total
|
||||||
|
self.trigger_at = start # output next percentage value when reaching (at least) this
|
||||||
|
self.step = step
|
||||||
|
self.file = file
|
||||||
|
self.msg = msg
|
||||||
|
self.same_line = same_line
|
||||||
|
|
||||||
|
def progress(self, current=None):
|
||||||
|
if current is None:
|
||||||
|
current = self.counter
|
||||||
|
else:
|
||||||
|
self.counter = current
|
||||||
|
self.counter += 1
|
||||||
|
pct = current * 100 / self.total
|
||||||
|
if pct >= self.trigger_at:
|
||||||
|
self.trigger_at += self.step
|
||||||
|
return pct
|
||||||
|
|
||||||
|
def show(self, current=None):
|
||||||
|
pct = self.progress(current)
|
||||||
|
if pct is not None:
|
||||||
|
return self.output(pct)
|
||||||
|
|
||||||
|
def output(self, percent):
|
||||||
|
print(self.msg % percent, file=self.file, end='\r' if self.same_line else '\n')
|
||||||
|
|
||||||
|
def finish(self):
|
||||||
|
if self.same_line:
|
||||||
|
print(" " * len(self.msg % 100.0), file=self.file, end='\r')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ProgressIndicatorEndless:
|
||||||
|
def __init__(self, step=10, file=sys.stderr):
|
||||||
|
"""
|
||||||
|
Progress indicator (long row of dots)
|
||||||
|
|
||||||
|
:param step: every Nth call, call the func
|
||||||
|
:param file: output file, default: sys.stderr
|
||||||
|
"""
|
||||||
|
self.counter = 0 # call counter
|
||||||
|
self.triggered = 0 # increases 1 per trigger event
|
||||||
|
self.step = step # trigger every <step> calls
|
||||||
|
self.file = file
|
||||||
|
|
||||||
|
def progress(self):
|
||||||
|
self.counter += 1
|
||||||
|
trigger = self.counter % self.step == 0
|
||||||
|
if trigger:
|
||||||
|
self.triggered += 1
|
||||||
|
return trigger
|
||||||
|
|
||||||
|
def show(self):
|
||||||
|
trigger = self.progress()
|
||||||
|
if trigger:
|
||||||
|
return self.output(self.triggered)
|
||||||
|
|
||||||
|
def output(self, triggered):
|
||||||
|
print('.', end='', file=self.file) # python 3.3 gives us flush=True
|
||||||
|
self.file.flush()
|
||||||
|
|
||||||
|
def finish(self):
|
||||||
|
print(file=self.file)
|
||||||
|
|
||||||
|
|
||||||
def sysinfo():
|
def sysinfo():
|
||||||
info = []
|
info = []
|
||||||
info.append('Platform: %s' % (' '.join(platform.uname()), ))
|
info.append('Platform: %s' % (' '.join(platform.uname()), ))
|
||||||
|
|
|
@ -10,7 +10,8 @@ import shutil
|
||||||
import struct
|
import struct
|
||||||
from zlib import crc32
|
from zlib import crc32
|
||||||
|
|
||||||
from .helpers import Error, ErrorWithTraceback, IntegrityError, read_msgpack, write_msgpack, unhexlify
|
from .helpers import Error, ErrorWithTraceback, IntegrityError, read_msgpack, write_msgpack, \
|
||||||
|
unhexlify, ProgressIndicatorPercent
|
||||||
from .hashindex import NSIndex
|
from .hashindex import NSIndex
|
||||||
from .locking import UpgradableLock, LockError, LockErrorT
|
from .locking import UpgradableLock, LockError, LockErrorT
|
||||||
from .lrucache import LRUCache
|
from .lrucache import LRUCache
|
||||||
|
@ -243,13 +244,17 @@ class Repository:
|
||||||
def replay_segments(self, index_transaction_id, segments_transaction_id):
|
def replay_segments(self, index_transaction_id, segments_transaction_id):
|
||||||
self.prepare_txn(index_transaction_id, do_cleanup=False)
|
self.prepare_txn(index_transaction_id, do_cleanup=False)
|
||||||
try:
|
try:
|
||||||
for segment, filename in self.io.segment_iterator():
|
segment_count = sum(1 for _ in self.io.segment_iterator())
|
||||||
|
pi = ProgressIndicatorPercent(total=segment_count, msg="Replaying segments %3.0f%%", same_line=True)
|
||||||
|
for i, (segment, filename) in enumerate(self.io.segment_iterator()):
|
||||||
|
pi.show(i)
|
||||||
if index_transaction_id is not None and segment <= index_transaction_id:
|
if index_transaction_id is not None and segment <= index_transaction_id:
|
||||||
continue
|
continue
|
||||||
if segment > segments_transaction_id:
|
if segment > segments_transaction_id:
|
||||||
break
|
break
|
||||||
objects = self.io.iter_objects(segment)
|
objects = self.io.iter_objects(segment)
|
||||||
self._update_index(segment, objects)
|
self._update_index(segment, objects)
|
||||||
|
pi.finish()
|
||||||
self.write_index()
|
self.write_index()
|
||||||
finally:
|
finally:
|
||||||
self.rollback()
|
self.rollback()
|
||||||
|
@ -299,6 +304,7 @@ class Repository:
|
||||||
error_found = True
|
error_found = True
|
||||||
logger.error(msg)
|
logger.error(msg)
|
||||||
|
|
||||||
|
logger.info('Starting repository check')
|
||||||
assert not self._active_txn
|
assert not self._active_txn
|
||||||
try:
|
try:
|
||||||
transaction_id = self.get_transaction_id()
|
transaction_id = self.get_transaction_id()
|
||||||
|
@ -314,7 +320,10 @@ class Repository:
|
||||||
self.io.cleanup(transaction_id)
|
self.io.cleanup(transaction_id)
|
||||||
segments_transaction_id = self.io.get_segments_transaction_id()
|
segments_transaction_id = self.io.get_segments_transaction_id()
|
||||||
self.prepare_txn(None) # self.index, self.compact, self.segments all empty now!
|
self.prepare_txn(None) # self.index, self.compact, self.segments all empty now!
|
||||||
for segment, filename in self.io.segment_iterator():
|
segment_count = sum(1 for _ in self.io.segment_iterator())
|
||||||
|
pi = ProgressIndicatorPercent(total=segment_count, msg="Checking segments %3.0f%%", same_line=True)
|
||||||
|
for i, (segment, filename) in enumerate(self.io.segment_iterator()):
|
||||||
|
pi.show(i)
|
||||||
if segment > transaction_id:
|
if segment > transaction_id:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
|
@ -326,6 +335,7 @@ class Repository:
|
||||||
self.io.recover_segment(segment, filename)
|
self.io.recover_segment(segment, filename)
|
||||||
objects = list(self.io.iter_objects(segment))
|
objects = list(self.io.iter_objects(segment))
|
||||||
self._update_index(segment, objects, report_error)
|
self._update_index(segment, objects, report_error)
|
||||||
|
pi.finish()
|
||||||
# self.index, self.segments, self.compact now reflect the state of the segment files up to <transaction_id>
|
# self.index, self.segments, self.compact now reflect the state of the segment files up to <transaction_id>
|
||||||
# We might need to add a commit tag if no committed segment is found
|
# We might need to add a commit tag if no committed segment is found
|
||||||
if repair and segments_transaction_id is None:
|
if repair and segments_transaction_id is None:
|
||||||
|
@ -345,6 +355,13 @@ class Repository:
|
||||||
self.compact_segments()
|
self.compact_segments()
|
||||||
self.write_index()
|
self.write_index()
|
||||||
self.rollback()
|
self.rollback()
|
||||||
|
if error_found:
|
||||||
|
if repair:
|
||||||
|
logger.info('Completed repository check, errors found and repaired.')
|
||||||
|
else:
|
||||||
|
logger.info('Completed repository check, errors found.')
|
||||||
|
else:
|
||||||
|
logger.info('Completed repository check, no problems found.')
|
||||||
return not error_found or repair
|
return not error_found or repair
|
||||||
|
|
||||||
def rollback(self):
|
def rollback(self):
|
||||||
|
|
Loading…
Reference in New Issue