| #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() |