trezor-core/tools/res_collect.py

45 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
resources = {}
2016-10-03 02:56:24 -07:00
resources_size = 0
os.chdir(os.path.dirname(__file__))
2016-09-26 06:13:33 -07:00
os.chdir('../src/')
def process_file(name):
if name.endswith('.gitignore'):
return
if name.endswith('.py'):
return
with open(name, 'rb') as f:
2016-10-03 02:56:24 -07:00
data = f.read()
resources[name] = data
print('processing file %s (%d bytes)' % (name, len(data)))
global resources_size
resources_size += len(data)
2016-05-27 18:24:58 -07:00
# scan common resources
for res in os.listdir('trezor/res/'):
name = os.path.join('trezor/res/', res)
if os.path.isfile(name):
process_file(name)
# scan apps
for app in os.listdir('apps/'):
name = os.path.join('apps/', app)
if os.path.isdir(name) and os.path.isdir('apps/%s/res/' % app):
for res in os.listdir('apps/%s/res/' % app):
name = 'apps/%s/res/%s' % (app, res)
if os.path.isfile(name):
process_file(name)
2016-09-26 06:13:33 -07:00
resfile = 'trezor/res/resources.py'
with open(resfile, 'wt') as f:
f.write('resdata = {\n')
for k in sorted(resources.keys()):
f.write(" '%s': %s,\n" % (k, resources[k]))
f.write('}\n')
2016-10-03 02:56:24 -07:00
print('written %s with %d entries (total %d bytes)' % (resfile, len(resources), resources_size))