rtmc/x.py

80 lines
1.8 KiB
Python
Raw Permalink Normal View History

2024-08-17 23:08:11 +00:00
#!/usr/bin/python
import hashlib
2024-08-17 23:08:11 +00:00
OUTPUT="keypadOS.lua";
FILES= [
2024-08-18 00:34:13 +00:00
"updater.lua",
"config.lua",
"ui.lua",
"utils.lua",
"main.lua",
2024-08-17 23:08:11 +00:00
]
2024-08-18 11:37:59 +00:00
MINIMISE=True
2024-08-17 23:08:11 +00:00
def read_file(p: str) -> str:
buf = "";
2024-08-18 00:34:13 +00:00
with open("src/"+p, "r", encoding="utf-8") as f:
2024-08-18 11:37:59 +00:00
buf += f"rawset(__BUNDLER_FILES, \"{p}\", function ()\n";
2024-08-18 00:34:13 +00:00
for line in f.readlines():
2024-08-18 11:37:59 +00:00
buf += " " + line;
buf += "\nend)";
if not MINIMISE:
buf += f"-- FILE END: {p} --\n";
else:
buf += "\n";
2024-08-17 23:08:11 +00:00
return buf;
2024-08-18 11:37:59 +00:00
def minimise(buf: str) -> str:
newbuf = "";
for line in buf.splitlines():
if line.strip().startswith("--"):
continue;
if line.strip() == "":
continue
newbuf += line + "\n";
return newbuf;
2024-08-17 23:08:11 +00:00
def get_hash(buf: str) -> str:
hasher = hashlib.sha1();
hasher.update(bytes(buf, "utf-8"));
return hasher.hexdigest();
2024-08-25 21:03:08 +00:00
REQ_HEADER = """
local __BUNDLER_FILES = {}
local __DEFAULT_IMPORT = require
local require = function(path)
if __BUNDLER_FILES[path] then
return __BUNDLER_FILES[path]()
2024-08-25 21:04:22 +00:00
elseif __BUNDLER_FILES[path .. ".lua"] then
return __BUNDLER_FILES[path .. ".lua"]()
else
return __DEFAULT_IMPORT(path)
2024-08-25 21:03:08 +00:00
end
end
local __UPDATE_HASH = __BUNDLER_REPLACE_HASH__
"""
2024-08-17 23:08:11 +00:00
def main():
2024-08-18 00:34:13 +00:00
buf = ""
2024-08-25 21:03:08 +00:00
buf += REQ_HEADER;
2024-08-17 23:08:11 +00:00
for file in FILES:
print(f"=== FILE: {file}");
buf += read_file(file);
2024-08-25 20:56:01 +00:00
2024-08-25 20:58:57 +00:00
buf += "return require(\"main.lua\")";
2024-08-18 11:37:59 +00:00
if MINIMISE:
buf = minimise(buf);
update_hash = get_hash(buf);
2024-08-18 12:09:33 +00:00
buf = buf.replace("__BUNDLER_REPLACE_HASH__", f"\"{update_hash}\"");
2024-08-18 00:34:13 +00:00
print(f"=== UPDATE HASH: {update_hash}")
2024-08-17 23:08:11 +00:00
with open(OUTPUT, "w", encoding="utf-8") as f:
f.write(buf);
print("DONE");
if __name__ == "__main__":
main();