mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 03:48:06 +02:00
Make the filename more descriptive and since the file is used by multiple drivers, move it into appropriate util/ directory. Cosmetics: - use SPDX license tag - add newline before main function Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27804>
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
#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()
|