This commit is contained in:
Quentin 2019-09-23 20:08:04 +02:00
parent dbc49aef68
commit 9d8288e298

31
scripts/deltams.py Executable file
View file

@ -0,0 +1,31 @@
#!/usr/bin/python3
import sys,re
owd = f"./out/{sys.argv[1]}/log/server-udpecho-stdout.log"
rtt = f"./out/{sys.argv[1]}/res/{sys.argv[2]}.csv"
agg = {}
last_pkt = 0
with open(owd, 'r') as f:
for line in f:
res = re.match(r".*Packet (\d+) latency (\d+)µs", line)
if not res: continue
pkt_id,lat = res.groups()
pkt_id,lat = int(pkt_id), int(lat)
agg[pkt_id] = {"owd": lat }
with open(rtt, 'r') as f:
for line in f:
res = re.match(r".*Packet (\d+) latency (\d+)µs", line)
if not res: continue
pkt_id,lat = res.groups()
pkt_id,lat = int(pkt_id), int(lat)
agg[pkt_id]["rtt"] = lat
last_pkt = pkt_id
for i in range(last_pkt):
if i not in agg: continue
if "rtt" not in agg[i]: continue
print(abs((agg[i]["rtt"] - 2*agg[i]["owd"]) / 1000), agg[i]["owd"] / 1000, (agg[i]["rtt"] - agg[i]["owd"]) / 1000, i)