mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-22 06:22:06 +08:00
6adb63b915
date: 2026-06-04T09:49:56 master commit: c0ab3550eca2e9daf197c46b7e4b24aa9637cf2e
190 lines
5.4 KiB
Python
Executable File
190 lines
5.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import math
|
|
import capnp
|
|
import numbers
|
|
from collections import Counter
|
|
|
|
from openpilot.tools.lib.logreader import LogReader
|
|
|
|
EPSILON = sys.float_info.epsilon
|
|
|
|
_DynamicStructReader = capnp.lib.capnp._DynamicStructReader
|
|
_DynamicListReader = capnp.lib.capnp._DynamicListReader
|
|
_DynamicEnum = capnp.lib.capnp._DynamicEnum
|
|
|
|
|
|
def remove_ignored_fields(msg, ignore):
|
|
msg = msg.as_builder()
|
|
for key in ignore:
|
|
attr = msg
|
|
keys = key.split(".")
|
|
if msg.which() != keys[0] and len(keys) > 1:
|
|
continue
|
|
|
|
for k in keys[:-1]:
|
|
# indexing into list
|
|
if k.isdigit():
|
|
attr = attr[int(k)]
|
|
else:
|
|
attr = getattr(attr, k)
|
|
|
|
v = getattr(attr, keys[-1])
|
|
if isinstance(v, bool):
|
|
val = False
|
|
elif isinstance(v, numbers.Number):
|
|
val = 0
|
|
elif isinstance(v, (list, capnp.lib.capnp._DynamicListBuilder)):
|
|
val = []
|
|
else:
|
|
raise NotImplementedError(f"Unknown type: {type(v)}")
|
|
setattr(attr, keys[-1], val)
|
|
return msg
|
|
|
|
|
|
def _diff_capnp(r1, r2, path, tolerance):
|
|
"""Walk two capnp struct readers and yield (action, dotted_path, value) diffs.
|
|
|
|
Floats are compared with the given tolerance (combined absolute+relative).
|
|
"""
|
|
schema = r1.schema
|
|
|
|
for fname in schema.non_union_fields:
|
|
child_path = path + (fname,)
|
|
v1 = getattr(r1, fname)
|
|
v2 = getattr(r2, fname)
|
|
yield from _diff_capnp_values(v1, v2, child_path, tolerance)
|
|
|
|
if schema.union_fields:
|
|
w1, w2 = r1.which(), r2.which()
|
|
if w1 != w2:
|
|
yield 'change', '.'.join(path), (w1, w2)
|
|
else:
|
|
child_path = path + (w1,)
|
|
v1, v2 = getattr(r1, w1), getattr(r2, w2)
|
|
yield from _diff_capnp_values(v1, v2, child_path, tolerance)
|
|
|
|
|
|
def _diff_capnp_values(v1, v2, path, tolerance):
|
|
if isinstance(v1, _DynamicStructReader):
|
|
yield from _diff_capnp(v1, v2, path, tolerance)
|
|
|
|
elif isinstance(v1, _DynamicListReader):
|
|
dot = '.'.join(path)
|
|
n1, n2 = len(v1), len(v2)
|
|
n = min(n1, n2)
|
|
for i in range(n):
|
|
yield from _diff_capnp_values(v1[i], v2[i], path + (str(i),), tolerance)
|
|
if n2 > n:
|
|
yield 'add', dot, [(i, v2[i]) for i in range(n, n2)]
|
|
if n1 > n:
|
|
yield 'remove', dot, list(reversed([(i, v1[i]) for i in range(n, n1)]))
|
|
|
|
elif isinstance(v1, _DynamicEnum):
|
|
s1, s2 = str(v1), str(v2)
|
|
if s1 != s2:
|
|
yield 'change', '.'.join(path), (s1, s2)
|
|
|
|
elif isinstance(v1, float):
|
|
if not (v1 == v2 or (
|
|
math.isfinite(v1) and math.isfinite(v2) and
|
|
abs(v1 - v2) <= max(tolerance, tolerance * max(abs(v1), abs(v2)))
|
|
)):
|
|
yield 'change', '.'.join(path), (v1, v2)
|
|
|
|
else:
|
|
if v1 != v2:
|
|
yield 'change', '.'.join(path), (v1, v2)
|
|
|
|
|
|
def compare_logs(log1, log2, ignore_fields=None, ignore_msgs=None, tolerance=None,):
|
|
if ignore_fields is None:
|
|
ignore_fields = []
|
|
if ignore_msgs is None:
|
|
ignore_msgs = []
|
|
tolerance = EPSILON if tolerance is None else tolerance
|
|
|
|
log1, log2 = (
|
|
[m for m in log if m.which() not in ignore_msgs]
|
|
for log in (log1, log2)
|
|
)
|
|
|
|
if len(log1) != len(log2):
|
|
cnt1 = Counter(m.which() for m in log1)
|
|
cnt2 = Counter(m.which() for m in log2)
|
|
raise Exception(f"logs are not same length: {len(log1)} VS {len(log2)}\n\t\t{cnt1}\n\t\t{cnt2}")
|
|
|
|
diff = []
|
|
for msg1, msg2 in zip(log1, log2, strict=True):
|
|
if msg1.which() != msg2.which():
|
|
raise Exception("msgs not aligned between logs")
|
|
|
|
msg1 = remove_ignored_fields(msg1, ignore_fields)
|
|
msg2 = remove_ignored_fields(msg2, ignore_fields)
|
|
|
|
if msg1.to_bytes() != msg2.to_bytes():
|
|
dd = list(_diff_capnp(msg1.as_reader(), msg2.as_reader(), (), tolerance))
|
|
diff.extend(dd)
|
|
return diff
|
|
|
|
|
|
def format_process_diff(diff):
|
|
diff_short, diff_long = "", ""
|
|
|
|
if isinstance(diff, str):
|
|
diff_short += f" {diff}\n"
|
|
diff_long += f"\t{diff}\n"
|
|
else:
|
|
cnt: dict[str, int] = {}
|
|
for d in diff:
|
|
diff_long += f"\t{str(d)}\n"
|
|
|
|
k = str(d[1])
|
|
cnt[k] = 1 if k not in cnt else cnt[k] + 1
|
|
|
|
for k, v in sorted(cnt.items()):
|
|
diff_short += f" {k}: {v}\n"
|
|
|
|
return diff_short, diff_long
|
|
|
|
|
|
def format_diff(results, log_paths, ref_commit):
|
|
diff_short, diff_long = "", ""
|
|
diff_long += f"***** tested against commit {ref_commit} *****\n"
|
|
|
|
failed = False
|
|
for segment, result in list(results.items()):
|
|
diff_short += f"***** results for segment {segment} *****\n"
|
|
diff_long += f"***** differences for segment {segment} *****\n"
|
|
|
|
for proc, diff in list(result.items()):
|
|
diff_long += f"*** process: {proc} ***\n"
|
|
diff_long += f"\tref: {log_paths[segment][proc]['ref']}\n"
|
|
diff_long += f"\tnew: {log_paths[segment][proc]['new']}\n\n"
|
|
|
|
diff_short += f" {proc}\n"
|
|
|
|
if isinstance(diff, str) or len(diff):
|
|
diff_short += f" ref: {log_paths[segment][proc]['ref']}\n"
|
|
diff_short += f" new: {log_paths[segment][proc]['new']}\n\n"
|
|
failed = True
|
|
|
|
proc_diff_short, proc_diff_long = format_process_diff(diff)
|
|
|
|
diff_long += proc_diff_long
|
|
diff_short += proc_diff_short
|
|
|
|
return diff_short, diff_long, failed
|
|
|
|
|
|
if __name__ == "__main__":
|
|
log1 = list(LogReader(sys.argv[1]))
|
|
log2 = list(LogReader(sys.argv[2]))
|
|
ignore_fields = sys.argv[3:] or ["logMonoTime"]
|
|
results = {"segment": {"proc": compare_logs(log1, log2, ignore_fields)}}
|
|
log_paths = {"segment": {"proc": {"ref": sys.argv[1], "new": sys.argv[2]}}}
|
|
diff_short, diff_long, failed = format_diff(results, log_paths, None)
|
|
|
|
print(diff_long)
|
|
print(diff_short)
|