From a9f523e5ce8b46dc05601fc17479f362b3d1f8b4 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 5 Feb 2016 02:02:04 +0100 Subject: [PATCH] archive metadata: store backup END time into 'time_end', display it in "borg info", fixes #627 ... except if a timestamp is given via cli, then store that time into 'time_end' --- borg/archive.py | 20 +++++++++++++++----- borg/archiver.py | 3 ++- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/borg/archive.py b/borg/archive.py index f636d1671..aaa907b34 100644 --- a/borg/archive.py +++ b/borg/archive.py @@ -172,15 +172,20 @@ class Archive: def load(self, id): self.id = id self.metadata = self._load_meta(self.id) - decode_dict(self.metadata, (b'name', b'hostname', b'username', b'time')) + decode_dict(self.metadata, (b'name', b'hostname', b'username', b'time', b'time_end')) self.metadata[b'cmdline'] = [arg.decode('utf-8', 'surrogateescape') for arg in self.metadata[b'cmdline']] self.name = self.metadata[b'name'] @property def ts(self): - """Timestamp of archive creation in UTC""" + """Timestamp of archive creation (start) in UTC""" return parse_timestamp(self.metadata[b'time']) + @property + def ts_end(self): + """Timestamp of archive creation (end) in UTC""" + return parse_timestamp(self.metadata[b'time_end']) + @property def fpr(self): return hexlify(self.id).decode('ascii') @@ -226,7 +231,11 @@ Number of files: {0.stats.nfiles}'''.format(self) raise self.AlreadyExists(name) self.items_buffer.flush(flush=True) if timestamp is None: - timestamp = self.start + start = self.start + end = self.end + else: + start = timestamp + end = timestamp # we only have 1 value metadata = StableDict({ 'version': 1, 'name': name, @@ -234,7 +243,8 @@ Number of files: {0.stats.nfiles}'''.format(self) 'cmdline': sys.argv, 'hostname': socket.gethostname(), 'username': getuser(), - 'time': timestamp.isoformat(), + 'time': start.isoformat(), + 'time_end': end.isoformat(), }) data = msgpack.packb(metadata, unicode_errors='surrogateescape') self.id = self.key.id_hash(data) @@ -851,7 +861,7 @@ class ArchiveChecker: archive = StableDict(msgpack.unpackb(data)) if archive[b'version'] != 1: raise Exception('Unknown archive metadata version') - decode_dict(archive, (b'name', b'hostname', b'username', b'time')) + decode_dict(archive, (b'name', b'hostname', b'username', b'time', b'time_end')) archive[b'cmdline'] = [arg.decode('utf-8', 'surrogateescape') for arg in archive[b'cmdline']] items_buffer = ChunkBuffer(self.key) items_buffer.write_chunk = add_callback diff --git a/borg/archiver.py b/borg/archiver.py index 664bd0df1..242de2de4 100644 --- a/borg/archiver.py +++ b/borg/archiver.py @@ -489,7 +489,8 @@ class Archiver: print('Fingerprint: %s' % hexlify(archive.id).decode('ascii')) print('Hostname:', archive.metadata[b'hostname']) print('Username:', archive.metadata[b'username']) - print('Time: %s' % format_time(to_localtime(archive.ts))) + print('Time (start): %s' % format_time(to_localtime(archive.ts))) + print('Time (end): %s' % format_time(to_localtime(archive.ts_end))) print('Command line:', remove_surrogates(' '.join(archive.metadata[b'cmdline']))) print('Number of files: %d' % stats.nfiles) print()