2021-01-14 20:17:14 +01:00
|
|
|
#! /usr/bin/python3
|
|
|
|
|
|
|
|
from sys import argv
|
|
|
|
from collections import OrderedDict
|
|
|
|
import re
|
|
|
|
import msgpack
|
|
|
|
import os
|
|
|
|
|
|
|
|
class Message:
|
|
|
|
def __init__(self, d: dict, header_file_index: int):
|
|
|
|
self.section = d.get("section")
|
|
|
|
self.index = d.get("index")
|
|
|
|
self.name = d.get("name")
|
|
|
|
self.bytes = d["bytes"]
|
|
|
|
self.header_file_index = header_file_index
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if len(argv) < 3:
|
2021-02-10 02:36:01 +01:00
|
|
|
print("usage: combine.py [out.bin] [out.h] [compiled...]")
|
2021-01-14 20:17:14 +01:00
|
|
|
exit(1)
|
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
_, outfile, header_file, *infiles = argv
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
messages = []
|
2021-02-10 02:36:01 +01:00
|
|
|
#header_files = []
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
for i, infile in enumerate(infiles):
|
2021-02-10 02:36:01 +01:00
|
|
|
# if infile == "--headers":
|
|
|
|
# header_files = infiles[i+1:]
|
|
|
|
# break
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
with open(infile, "rb") as f:
|
|
|
|
messages.extend(Message(msg, i) for msg in msgpack.unpack(f))
|
|
|
|
|
|
|
|
with open(outfile, "wb") as f:
|
|
|
|
# sectioned+indexed, followed by just sectioned, followed by just indexed, followed by named (unsectioned & unindexed)
|
2021-02-10 02:36:01 +01:00
|
|
|
#messages.sort(key=lambda msg: bool(msg.section)<<2 + bool(msg.index))
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
names = set()
|
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
sections = []
|
|
|
|
#messages_by_file = {}
|
|
|
|
|
|
|
|
# this logic could probably be a bit better (i.e. read ahead, so no overwriting happens)
|
|
|
|
def section_get_unused_id(section):
|
|
|
|
max_index = 0
|
|
|
|
for index in section:
|
|
|
|
if index > max_index:
|
|
|
|
max_index = index
|
|
|
|
return max_index + 1
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
for message in messages:
|
|
|
|
if message.section is None:
|
|
|
|
# allocate a section
|
|
|
|
for section_idx, section in enumerate(sections):
|
|
|
|
if len(section) < 0xFFF:
|
|
|
|
break
|
2021-02-10 02:36:01 +01:00
|
|
|
message.section = section_idx
|
2021-01-14 20:17:14 +01:00
|
|
|
else:
|
|
|
|
section_idx = message.section
|
|
|
|
while len(sections) <= section_idx:
|
2021-02-10 02:36:01 +01:00
|
|
|
sections.append({})
|
2021-01-14 20:17:14 +01:00
|
|
|
section = sections[section_idx]
|
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
if message.index is None:
|
|
|
|
message.index = section_get_unused_id(section)
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
if message.name:
|
|
|
|
if message.name in names:
|
2021-02-10 02:36:01 +01:00
|
|
|
print(f"error: multiple messages with name '{message.name}'")
|
|
|
|
exit(1)
|
2021-01-14 20:17:14 +01:00
|
|
|
else:
|
|
|
|
names.add(message.name)
|
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
# if message.header_file_index in messages_by_file:
|
|
|
|
# messages_by_file[message.header_file_index].add(message)
|
|
|
|
# else:
|
|
|
|
# messages_by_file[message.header_file_index] = set([message])
|
|
|
|
|
|
|
|
if message.index in section:
|
|
|
|
print(f"error: multiple messages allocated to id {section_idx:02X}:{message.index:03X}")
|
|
|
|
exit(1)
|
2021-01-14 20:17:14 +01:00
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
section[message.index] = message
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
f.seek((len(sections) + 1) * 4) # skip past table of contents
|
|
|
|
|
|
|
|
section_offsets = []
|
|
|
|
for section in sections:
|
2021-02-10 02:36:01 +01:00
|
|
|
# convert dict into sorted list
|
|
|
|
section = [msg for idx, msg in sorted(section.items(), key=lambda ele: ele[0])]
|
|
|
|
|
2021-01-14 20:17:14 +01:00
|
|
|
message_offsets = []
|
|
|
|
for message in section:
|
|
|
|
message_offsets.append(f.tell())
|
2021-02-10 02:36:01 +01:00
|
|
|
f.write(message.bytes)
|
2021-01-14 20:17:14 +01:00
|
|
|
|
|
|
|
section_offset = f.tell()
|
|
|
|
section_offsets.append(section_offset)
|
|
|
|
for offset in message_offsets:
|
|
|
|
f.write(offset.to_bytes(4, byteorder="big"))
|
|
|
|
f.write(section_offset.to_bytes(4, byteorder="big"))
|
|
|
|
|
|
|
|
# padding
|
|
|
|
while f.tell() % 0x10 != 0:
|
|
|
|
f.write(b'\0\0\0\0')
|
|
|
|
|
|
|
|
f.seek(0)
|
|
|
|
for offset in section_offsets:
|
|
|
|
f.write(offset.to_bytes(4, byteorder="big"))
|
|
|
|
f.write(b'\0\0\0\0')
|
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
with open(header_file, "w") as f:
|
|
|
|
f.write(
|
|
|
|
f"#ifndef _MESSAGE_IDS_H_\n"
|
|
|
|
f"#define _MESSAGE_IDS_H_\n"
|
2021-01-14 20:17:14 +01:00
|
|
|
"\n"
|
|
|
|
'#include "messages.h"\n'
|
|
|
|
"\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
for message in messages:
|
2021-02-10 02:36:01 +01:00
|
|
|
if message.name:
|
|
|
|
f.write(f"#define MSG_{message.name} MESSAGE_ID(0x{message.section:02X}, 0x{message.index:03X})\n")
|
2021-01-14 20:17:14 +01:00
|
|
|
|
2021-02-10 02:36:01 +01:00
|
|
|
f.write("\n#endif\n")
|