blob: 8bddc143a62d9d334a972c8ba1431747168f1509 (
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
|
#encoding=utf-8
#
# Copyright © 2017 Intel Corporation
# SPDX-License-Identifier: MIT
import sys
import zlib
import xml.etree.ElementTree as et
def main():
if len(sys.argv) < 2:
print("No input xml file specified")
sys.exit(1)
compress = zlib.compressobj()
print("static const struct {")
print(" uint32_t ver_10;")
print(" uint32_t offset;")
print(" uint32_t length;")
print("} genxml_files_table[] = {")
xml_offset = 0
compressed_data = b''
for i in range(1, len(sys.argv)):
filename = sys.argv[i]
xml = open(filename, "rb").read()
xml_length = len(xml)
root = et.fromstring(xml)
print(" { %i, %i, %i }," %
(int(float(root.attrib['gen']) * 10), xml_offset, xml_length))
compressed_data += compress.compress(xml)
xml_offset += xml_length
print("};")
compressed_data += compress.flush()
print("")
print("static const uint8_t compress_genxmls[] = {")
print(" ", end='')
for i, c in enumerate(bytearray(compressed_data), start=1):
print("0x%.2x, " % c, end='\n ' if not i % 12 else '')
print('\n};')
if __name__ == '__main__':
main()
|