Files
SuperMega/app/views.py
T
2024-02-19 20:34:31 +00:00

97 lines
3.0 KiB
Python

from flask import Blueprint, current_app, flash, request, redirect, url_for, render_template, send_file, make_response, session
from werkzeug.utils import secure_filename
import os
import logging
import io
from typing import List, Tuple
from datetime import date
from pygments import highlight
from pygments.lexers import CLexer, NasmLexer, DiffLexer, HexdumpLexer
from pygments.formatters import HtmlFormatter
import difflib
from ansi2html import Ansi2HTMLConverter
views = Blueprint('views', __name__)
conv = Ansi2HTMLConverter()
@views.route("/")
def index():
return render_template('index.html')
@views.route("/project")
def project():
log_files = []
id = 0
asm_a = "" # for diff
asm_b = ""
for file in os.listdir("logs"):
if file.startswith("."):
continue
print("Handle: ", file)
with open(os.path.join("logs", file), "r") as f:
data = f.read()
if 'main_c' in file:
data = highlight(data, CLexer(), HtmlFormatter(full=False))
elif '_asm_' in file:
# handle special cases
if '_orig' in file:
asm_a = data
if '_updated' in file:
asm_b = data
data = highlight(data, NasmLexer(), HtmlFormatter(full=False))
elif '_shc' in file:
if '.txt' in file:
# skip it
continue
if '.ascii' in file:
#data = data.replace(" ", " ")
data = conv.convert(data, full=False)
#data = data.replace("\n", "<br>")
if '.hex' in file:
#data = highlight(data, HexdumpLexer(), HtmlFormatter(full=False))
#data = data.replace("\n", "<br>")
#data = data.replace(" ", "&nbsp;")
data = data.replace("<", "&lt;")
data = data.replace(">", "&gt;")
elif '.log' in file:
data = data.replace("<", "&lt;")
data = data.replace(">", "&gt;")
entry = {
"name": file,
"id": str(id),
"content": data,
}
log_files.append(entry)
id += 1
# more
if asm_a != "" and asm_b != "":
# do the diff from the content of the two files
a = asm_a.splitlines()
b = asm_b.splitlines()
diff_generator = difflib.unified_diff(a, b, lineterm='')
diff_string = '\n'.join(diff_generator)
diff_l = highlight(diff_string, DiffLexer(), HtmlFormatter(full=False))
entry = {
"name": "Summary: ASM Diff".format(),
"id": str(id),
"content": diff_l,
}
log_files.append(entry)
id += 1
#asm_a = ""
asm_b = ""
return render_template('project.html',
log_files=log_files
)