1b8e80941Smrg#encoding=utf-8
2b8e80941Smrg#
3b8e80941Smrg# Copyright © 2017 Intel Corporation
4b8e80941Smrg#
5b8e80941Smrg# Permission is hereby granted, free of charge, to any person obtaining a
6b8e80941Smrg# copy of this software and associated documentation files (the "Software"),
7b8e80941Smrg# to deal in the Software without restriction, including without limitation
8b8e80941Smrg# the rights to use, copy, modify, merge, publish, distribute, sublicense,
9b8e80941Smrg# and/or sell copies of the Software, and to permit persons to whom the
10b8e80941Smrg# Software is furnished to do so, subject to the following conditions:
11b8e80941Smrg#
12b8e80941Smrg# The above copyright notice and this permission notice (including the next
13b8e80941Smrg# paragraph) shall be included in all copies or substantial portions of the
14b8e80941Smrg# Software.
15b8e80941Smrg#
16b8e80941Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17b8e80941Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18b8e80941Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19b8e80941Smrg# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20b8e80941Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21b8e80941Smrg# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22b8e80941Smrg# IN THE SOFTWARE.
23b8e80941Smrg#
24b8e80941Smrg
25b8e80941Smrgfrom __future__ import print_function
26b8e80941Smrgimport sys
27b8e80941Smrgimport zlib
28b8e80941Smrgimport xml.etree.cElementTree as et
29b8e80941Smrg
30b8e80941Smrgdef main():
31b8e80941Smrg    if len(sys.argv) < 2:
32b8e80941Smrg        print("No input xml file specified")
33b8e80941Smrg        sys.exit(1)
34b8e80941Smrg
35b8e80941Smrg    compress = zlib.compressobj()
36b8e80941Smrg
37b8e80941Smrg    print("static const struct {")
38b8e80941Smrg    print("   uint32_t gen_10;")
39b8e80941Smrg    print("   uint32_t offset;")
40b8e80941Smrg    print("   uint32_t length;")
41b8e80941Smrg    print("} genxml_files_table[] = {")
42b8e80941Smrg
43b8e80941Smrg    xml_offset = 0
44b8e80941Smrg    compressed_data = b''
45b8e80941Smrg    for i in range(1, len(sys.argv)):
46b8e80941Smrg        filename = sys.argv[i]
47b8e80941Smrg        xml = open(filename, "rb").read()
48b8e80941Smrg        xml_length = len(xml)
49b8e80941Smrg        root = et.fromstring(xml)
50b8e80941Smrg
51b8e80941Smrg        print("   { %i, %i, %i }," %
52b8e80941Smrg              (int(float(root.attrib['gen']) * 10), xml_offset, xml_length))
53b8e80941Smrg
54b8e80941Smrg        compressed_data += compress.compress(xml)
55b8e80941Smrg        xml_offset += xml_length
56b8e80941Smrg
57b8e80941Smrg    print("};")
58b8e80941Smrg
59b8e80941Smrg    compressed_data += compress.flush()
60b8e80941Smrg
61b8e80941Smrg    print("")
62b8e80941Smrg    print("static const uint8_t compress_genxmls[] = {")
63b8e80941Smrg    print("   ", end='')
64b8e80941Smrg    for i, c in enumerate(bytearray(compressed_data), start=1):
65b8e80941Smrg        print("0x%.2x, " % c, end='\n   ' if not i % 12 else '')
66b8e80941Smrg    print('\n};')
67b8e80941Smrg
68b8e80941Smrg
69b8e80941Smrgif __name__ == '__main__':
70b8e80941Smrg    main()
71