Added profiling info to LocalInterface

This commit is contained in:
Mark Qvist 2022-06-09 14:45:00 +02:00
parent 8c167b8f3d
commit 648e9a68b8
1 changed files with 12 additions and 2 deletions

View File

@ -50,6 +50,9 @@ class LocalClientInterface(Interface):
self.rxb = 0
self.txb = 0
# TODO: Remove at some point
self.rxptime = 0
self.HW_MTU = 1064
self.online = False
@ -138,13 +141,20 @@ class LocalClientInterface(Interface):
if hasattr(self, "parent_interface") and self.parent_interface != None:
self.parent_interface.rxb += len(data)
# TODO: Remove at some point
processing_start = time.time()
self.owner.inbound(data, self)
# TODO: Remove at some point
duration = time.time() - processing_start
self.rxptime += duration
def processOutgoing(self, data):
if self.online:
# TODO: Reset maybe?
while self.writing:
time.sleep(0.01)
time.sleep(0.0005)
try:
self.writing = True