[67b05ff] | 1 | #!/usr/bin/env python
|
---|
| 2 | #
|
---|
| 3 | # Copyright (c) 2011 Martin Decky
|
---|
| 4 | # All rights reserved.
|
---|
| 5 | #
|
---|
| 6 | # Redistribution and use in source and binary forms, with or without
|
---|
| 7 | # modification, are permitted provided that the following conditions
|
---|
| 8 | # are met:
|
---|
| 9 | #
|
---|
| 10 | # - Redistributions of source code must retain the above copyright
|
---|
| 11 | # notice, this list of conditions and the following disclaimer.
|
---|
| 12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | # notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | # documentation and/or other materials provided with the distribution.
|
---|
| 15 | # - The name of the author may not be used to endorse or promote products
|
---|
| 16 | # derived from this software without specific prior written permission.
|
---|
| 17 | #
|
---|
| 18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | #
|
---|
| 29 | """
|
---|
[9ce911d] | 30 | Binary inline data packer
|
---|
[67b05ff] | 31 | """
|
---|
| 32 |
|
---|
| 33 | import sys
|
---|
| 34 | import os
|
---|
[9ce911d] | 35 | import zlib
|
---|
| 36 | import zipfile
|
---|
| 37 | import binascii
|
---|
[67b05ff] | 38 |
|
---|
| 39 | def usage(prname):
|
---|
| 40 | "Print usage syntax"
|
---|
[22299ed] | 41 | print("%s [--deflate] <DESTINATION> <LABEL> <AS_PROLOG> <SECTION> [SOURCE ...]" % prname)
|
---|
[67b05ff] | 42 |
|
---|
[9ce911d] | 43 | def arg_check():
|
---|
[22299ed] | 44 | if (len(sys.argv) < 5):
|
---|
[67b05ff] | 45 | usage(sys.argv[0])
|
---|
[9ce911d] | 46 | sys.exit()
|
---|
| 47 |
|
---|
| 48 | def deflate(data):
|
---|
| 49 | "Compress using deflate algorithm (without any headers)"
|
---|
| 50 | return zlib.compress(data, 9)[2:-4]
|
---|
| 51 |
|
---|
| 52 | def chunks(string, length):
|
---|
| 53 | "Produce string chunks"
|
---|
| 54 | for start in range(0, len(string), length):
|
---|
| 55 | yield string[start:start + length]
|
---|
| 56 |
|
---|
| 57 | def main():
|
---|
| 58 | arg_check()
|
---|
[a35b458] | 59 |
|
---|
[9ce911d] | 60 | if sys.argv[1] == "--deflate":
|
---|
| 61 | sys.argv.pop(1)
|
---|
| 62 | arg_check()
|
---|
| 63 | compress = True
|
---|
| 64 | else:
|
---|
| 65 | compress = False
|
---|
[a35b458] | 66 |
|
---|
[67b05ff] | 67 | dest = sys.argv[1]
|
---|
| 68 | label = sys.argv[2]
|
---|
[2628642] | 69 | as_prolog = sys.argv[3]
|
---|
[22299ed] | 70 | section = sys.argv[4]
|
---|
[a35b458] | 71 |
|
---|
[bc6cdc4] | 72 | timestamp = (1980, 1, 1, 0, 0, 0)
|
---|
[a35b458] | 73 |
|
---|
[67b05ff] | 74 | header_ctx = []
|
---|
[9ce911d] | 75 | desc_ctx = []
|
---|
| 76 | size_ctx = []
|
---|
[67b05ff] | 77 | data_ctx = []
|
---|
[a35b458] | 78 |
|
---|
[9ce911d] | 79 | src_cnt = 0
|
---|
[a35b458] | 80 |
|
---|
[94c05b89] | 81 | archive = zipfile.ZipFile("%s.zip" % dest, "w", zipfile.ZIP_STORED)
|
---|
[a35b458] | 82 |
|
---|
[f36ac04] | 83 | for src in sys.argv[5:]:
|
---|
[67b05ff] | 84 | basename = os.path.basename(src)
|
---|
[9ce911d] | 85 | plainname = os.path.splitext(basename)[0]
|
---|
[67b05ff] | 86 | symbol = basename.replace(".", "_")
|
---|
[a35b458] | 87 |
|
---|
[67b05ff] | 88 | print("%s -> %s" % (src, symbol))
|
---|
[a35b458] | 89 |
|
---|
[67b05ff] | 90 | src_in = open(src, "rb")
|
---|
| 91 | src_data = src_in.read()
|
---|
| 92 | src_in.close()
|
---|
[a35b458] | 93 |
|
---|
[9ce911d] | 94 | length = len(src_data)
|
---|
[a35b458] | 95 |
|
---|
[9ce911d] | 96 | if compress:
|
---|
| 97 | src_data = deflate(src_data)
|
---|
[94c05b89] | 98 | src_fname = os.path.basename("%s.deflate" % src)
|
---|
[bc6cdc4] | 99 | zipinfo = zipfile.ZipInfo(src_fname, timestamp)
|
---|
| 100 | archive.writestr(zipinfo, src_data)
|
---|
[94c05b89] | 101 | else:
|
---|
| 102 | src_fname = src
|
---|
[a35b458] | 103 |
|
---|
[9ce911d] | 104 | if sys.version_info < (3,):
|
---|
| 105 | src_data = bytearray(src_data)
|
---|
[a35b458] | 106 |
|
---|
[9ce911d] | 107 | length_out = len(src_data)
|
---|
[a35b458] | 108 |
|
---|
[2628642] | 109 | header_ctx.append("extern uint8_t %s[];" % symbol)
|
---|
[9ce911d] | 110 | header_ctx.append("extern size_t %s_size;" % symbol)
|
---|
[a35b458] | 111 |
|
---|
[2628642] | 112 | data_ctx.append(".globl %s" % symbol)
|
---|
| 113 | data_ctx.append(".balign 8")
|
---|
[9ce911d] | 114 | data_ctx.append(".size %s, %u" % (symbol, length_out))
|
---|
[2628642] | 115 | data_ctx.append("%s:" % symbol)
|
---|
[94c05b89] | 116 | data_ctx.append("\t.incbin \"%s\"\n" % src_fname)
|
---|
[a35b458] | 117 |
|
---|
[9ce911d] | 118 | desc_field = []
|
---|
| 119 | desc_field.append("\t{")
|
---|
| 120 | desc_field.append("\t\t.name = \"%s\"," % plainname)
|
---|
| 121 | desc_field.append("\t\t.addr = (void *) %s," % symbol)
|
---|
| 122 | desc_field.append("\t\t.size = %u," % length_out)
|
---|
[94c05b89] | 123 | desc_field.append("\t\t.inflated = %u," % length)
|
---|
[a35b458] | 124 |
|
---|
[94c05b89] | 125 | if compress:
|
---|
| 126 | desc_field.append("\t\t.compressed = true")
|
---|
| 127 | else:
|
---|
| 128 | desc_field.append("\t\t.compressed = false")
|
---|
[a35b458] | 129 |
|
---|
[9ce911d] | 130 | desc_field.append("\t}")
|
---|
[a35b458] | 131 |
|
---|
[9ce911d] | 132 | desc_ctx.append("\n".join(desc_field))
|
---|
[a35b458] | 133 |
|
---|
[9ce911d] | 134 | size_ctx.append("size_t %s_size = %u;" % (symbol, length_out))
|
---|
[a35b458] | 135 |
|
---|
[9ce911d] | 136 | src_cnt += 1
|
---|
[a35b458] | 137 |
|
---|
[9ce911d] | 138 | data = ''
|
---|
| 139 | data += '/***************************************\n'
|
---|
| 140 | data += ' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n'
|
---|
| 141 | data += ' * Generated by: tools/mkarray.py *\n'
|
---|
| 142 | data += ' ***************************************/\n\n'
|
---|
| 143 | data += "#ifndef %sS_H_\n" % label.upper()
|
---|
| 144 | data += "#define %sS_H_\n\n" % label.upper()
|
---|
| 145 | data += "#include <stddef.h>\n"
|
---|
[94c05b89] | 146 | data += "#include <stdint.h>\n"
|
---|
| 147 | data += "#include <stdbool.h>\n\n"
|
---|
[9ce911d] | 148 | data += "#define %sS %u\n\n" % (label.upper(), src_cnt)
|
---|
| 149 | data += "typedef struct {\n"
|
---|
| 150 | data += "\tconst char *name;\n"
|
---|
| 151 | data += "\tvoid *addr;\n"
|
---|
| 152 | data += "\tsize_t size;\n"
|
---|
| 153 | data += "\tsize_t inflated;\n"
|
---|
[94c05b89] | 154 | data += "\tbool compressed;\n"
|
---|
[9ce911d] | 155 | data += "} %s_t;\n\n" % label
|
---|
| 156 | data += "extern %s_t %ss[];\n\n" % (label, label)
|
---|
| 157 | data += "\n".join(header_ctx)
|
---|
| 158 | data += "\n\n"
|
---|
| 159 | data += "#endif\n"
|
---|
[bc6cdc4] | 160 | zipinfo = zipfile.ZipInfo("%s.h" % dest, timestamp)
|
---|
| 161 | archive.writestr(zipinfo, data)
|
---|
[a35b458] | 162 |
|
---|
[9ce911d] | 163 | data = ''
|
---|
| 164 | data += '/***************************************\n'
|
---|
| 165 | data += ' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n'
|
---|
| 166 | data += ' * Generated by: tools/mkarray.py *\n'
|
---|
| 167 | data += ' ***************************************/\n\n'
|
---|
| 168 | data += as_prolog
|
---|
[22299ed] | 169 | data += "%s\n\n" % section
|
---|
[9ce911d] | 170 | data += "\n".join(data_ctx)
|
---|
| 171 | data += "\n"
|
---|
[bc6cdc4] | 172 | zipinfo = zipfile.ZipInfo("%s.s" % dest, timestamp)
|
---|
| 173 | archive.writestr(zipinfo, data)
|
---|
[a35b458] | 174 |
|
---|
[9ce911d] | 175 | data = ''
|
---|
| 176 | data += '/***************************************\n'
|
---|
| 177 | data += ' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n'
|
---|
| 178 | data += ' * Generated by: tools/mkarray.py *\n'
|
---|
| 179 | data += ' ***************************************/\n\n'
|
---|
| 180 | data += "#include \"%s.h\"\n\n" % dest
|
---|
| 181 | data += "%s_t %ss[] = {\n" % (label, label)
|
---|
| 182 | data += ",\n".join(desc_ctx)
|
---|
| 183 | data += "\n"
|
---|
| 184 | data += "};\n\n"
|
---|
| 185 | data += "\n".join(size_ctx)
|
---|
| 186 | data += "\n"
|
---|
[bc6cdc4] | 187 | zipinfo = zipfile.ZipInfo("%s_desc.c" % dest, timestamp)
|
---|
| 188 | archive.writestr(zipinfo, data)
|
---|
[a35b458] | 189 |
|
---|
[9ce911d] | 190 | archive.close()
|
---|
[67b05ff] | 191 |
|
---|
| 192 | if __name__ == '__main__':
|
---|
| 193 | main()
|
---|