summaryrefslogtreecommitdiffstats
path: root/tools/update_backup.py
blob: 0069216960b1ceb073e5612a2e5c60ac02d80226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python

""" Update backup of MXE packages.
"""

import argparse
import hashlib
import os
import shutil

def make_checksum(filepath):
    hasher = hashlib.sha256()
    with open(filepath, 'rb') as f:
        for chunk in iter(lambda: f.read(1024 ** 2), b''):
            hasher.update(chunk)
    return hasher.hexdigest()

def update_backup(mxe_pkg_dir, backup_dir):
    for f in os.listdir(mxe_pkg_dir):
        sha = make_checksum(os.path.join(mxe_pkg_dir, f))
        new_name = '%s_%s' % (f, sha)
        if os.path.exists(os.path.join(backup_dir, new_name)):
            print("File %s is already backuped" % new_name)
            continue
        shutil.copy(
            os.path.join(mxe_pkg_dir, f),
            os.path.join(backup_dir, new_name),
        )
        print("Backup file %s" % new_name)

def main():
    parser = argparse.ArgumentParser(
        description=__doc__,
        formatter_class=argparse.ArgumentDefaultsHelpFormatter,
    )
    parser.add_argument(
        '--backup-dir',
        type=str,
        help='Path to backup',
        required=True,
    )
    args = parser.parse_args()
    mxe_tools_dir = os.path.dirname(os.path.realpath(__file__))
    mxe_pkg_dir = os.path.join(mxe_tools_dir, '..', 'pkg')
    update_backup(
        mxe_pkg_dir,
        args.backup_dir,
    )

if __name__ == '__main__':
    main()