mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
77 lines
2.1 KiB
Python
77 lines
2.1 KiB
Python
from typing import List, Dict
|
|
import logging
|
|
|
|
from pe.r2helper import r2_disas
|
|
|
|
logger = logging.getLogger("Observer")
|
|
|
|
|
|
class Observer():
|
|
"""Central class to store all logs and files created during the build process"""
|
|
|
|
def __init__(self):
|
|
self.cmd_output = [] # output of external programs (cmdoutput.log)
|
|
self.logs: List[str] = [] # internal log messages (supermega.log)
|
|
self.files = [] # content of generated files
|
|
self.active = True
|
|
|
|
|
|
def reset(self):
|
|
self.cmd_output = []
|
|
self.logs = []
|
|
self.files = []
|
|
self.idx = 0
|
|
|
|
|
|
def add_cmd_output(self, cmd_output):
|
|
self.cmd_output.append(cmd_output)
|
|
|
|
|
|
def get_cmd_output(self):
|
|
return self.cmd_output
|
|
|
|
|
|
def add_log(self, log: str):
|
|
self.logs.append(log)
|
|
|
|
|
|
def get_logs(self):
|
|
return self.logs
|
|
|
|
|
|
def add_text_file(self, name, data):
|
|
self.files.append((name + ".txt", data))
|
|
|
|
|
|
def add_code_file(self, name, data: bytes):
|
|
ret = r2_disas(data)
|
|
self.files.append((name + ".disas.ascii", ret['color']))
|
|
#self.write_to_file(name + ".disas.txt", ret['text'])
|
|
#self.write_to_file(name + ".disas.ascii", ret['color'])
|
|
#self.write_to_file(name + ".hex", ret['hexdump'])
|
|
#self.write_to_file_bin(name + ".bin", data)
|
|
|
|
|
|
def write_logs(self, working_dir: str):
|
|
# Our log output
|
|
with open(f"{working_dir}log-supermega.log", "w") as f:
|
|
for line in observer.get_logs():
|
|
try:
|
|
f.write(line + "\n")
|
|
except Exception as e:
|
|
logger.warning("Error: {}".format(e))
|
|
|
|
# Stdout of executed commands
|
|
with open(f"{working_dir}log-cmdoutput.log", "w") as f:
|
|
for line in observer.get_cmd_output():
|
|
f.write(line)
|
|
|
|
# Write all files
|
|
idx = 0
|
|
for name, data in observer.files:
|
|
with open(f"{working_dir}log-{idx}-{name}", "w") as f:
|
|
f.write(data)
|
|
idx += 1
|
|
|
|
|
|
observer = Observer() |