summaryrefslogtreecommitdiff
path: root/src/resources/generate-package.py
blob: ff02d4fe2ba71adc74eb709bb2dbb7615bd3e833 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python

import io
import sys
import json
import shutil
import typing
import os.path
import argparse
import subprocess
from zipfile import ZipFile

def main():
    ap = argparse.ArgumentParser(description='auto generate LVGL font files from fonts')
    ap.add_argument('--config', '-c', type=str, action='append', help='config file to use')
    ap.add_argument('--obsolete', type=str, help='List of obsolete files')
    ap.add_argument('--output', type=str, help='output file name')
    args = ap.parse_args()

    for config_file in args.config:
        if not os.path.exists(config_file):
            sys.exit(f'Error: the config file {config_file} does not exist.')
        if not os.access(config_file, os.R_OK):
            sys.exit(f'Error: the config file {config_file} is not accessible (permissions?).')

    if args.obsolete:
        obsolete_file_path = os.path.join(os.path.dirname(sys.argv[0]), args.obsolete)
        if not os.path.exists(obsolete_file_path):
            sys.exit(f'Error: the "obsolete" file {args.obsolete} does not exist.')
        if not os.access(obsolete_file_path, os.R_OK):
            sys.exit(f'Error: the "obsolete" file {args.obsolete} is not accessible (permissions?).')

    zf = ZipFile(args.output, mode='w')
    resource_files = []

    for config_file in args.config:
        with open(config_file, 'r') as fd:
            data = json.load(fd)

        resource_names = set(data.keys())
        for name in resource_names:
            resource = data[name]
            resource_files.append({
                "filename": name+'.bin',
                "path": resource['target_path'] + name+'.bin'
            })

            path = name + '.bin'
            if not os.path.exists(path):
                path = os.path.join(os.path.dirname(sys.argv[0]), path)
            zf.write(path)

    if args.obsolete:
        obsolete_file_path = os.path.join(os.path.dirname(sys.argv[0]), args.obsolete)
        with open(obsolete_file_path, 'r') as fd:
            obsolete_data = json.load(fd)
    else:
        obsolete_data = {}
    output = {
        'resources': resource_files,
        'obsolete_files': obsolete_data
    }


    with open("resources.json", 'w') as fd:
        json.dump(output, fd, indent=4)

    zf.write('resources.json')
    zf.close()

if __name__ == '__main__':
    main()