3 # Cumulus: Efficient Filesystem Backup to the Cloud
4 # Copyright (C) 2008 The Cumulus Developers
5 # See the AUTHORS file for a list of contributors.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with this program; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 # Tool for copying cumulus archives from one source to another.
23 from __future__ import division, print_function, unicode_literals
27 # Automatically set Python path, based on script directory. This should be
28 # removed if the tools are properly installed somewhere.
29 script_directory = os.path.dirname(sys.argv[0])
30 sys.path.append(os.path.join(script_directory, 'python'))
35 store1 = cumulus.BackendWrapper(sys.argv[1])
36 store2 = cumulus.BackendWrapper(sys.argv[2])
38 source = cumulus.CumulusStore(store1)
40 items_required = set()
41 snapshots = sys.argv[3:]
43 snapshots = list(source.list_snapshots())
46 d = cumulus.parse_full(source.load_snapshot(s))
47 items_required.update(d['Segments'].split())
48 print("Required:", len(items_required))
51 for filetype in cumulus.SEARCH_PATHS:
52 for (name, path) in store2.list_generic(filetype):
53 items_required.discard(name)
54 files_present.add(path)
55 print("Files already present:", len(sorted(files_present)))
59 for filetype in cumulus.SEARCH_PATHS:
60 for (name, path) in store1.list_generic(filetype):
61 if name in items_required:
62 files_required.append(path)
66 for i, f in enumerate(files_required):
67 print("[%d/%d] %s" % (i + 1, len(files_required), f))
68 store2.raw_backend.put(f, store1.raw_backend.get(f))