mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
67 lines
No EOL
2.1 KiB
Python
67 lines
No EOL
2.1 KiB
Python
import json
|
|
import structlog
|
|
|
|
class EventManager:
|
|
|
|
def __init__(self, queues):
|
|
self.queues = queues
|
|
self.logger = structlog.get_logger('Event Manager')
|
|
self.lastpttstate = False
|
|
|
|
def broadcast(self, data):
|
|
for q in self.queues:
|
|
self.logger.debug(f"Event: ", ev=data)
|
|
q.put(data)
|
|
|
|
def send_ptt_change(self, on:bool = False):
|
|
if (on == self.lastpttstate):
|
|
return
|
|
self.lastpttstate= on
|
|
self.broadcast({"ptt": bool(on)})
|
|
|
|
def send_scatter_change(self, data):
|
|
self.broadcast({"scatter": json.dumps(data)})
|
|
|
|
def send_buffer_overflow(self, data):
|
|
self.broadcast({"buffer-overflow": str(data)})
|
|
|
|
def send_custom_event(self, **event_data):
|
|
self.broadcast(event_data)
|
|
|
|
def send_arq_session_new(self, outbound: bool, session_id, dxcall, total_bytes, state):
|
|
direction = 'outbound' if outbound else 'inbound'
|
|
event = {
|
|
f"arq-transfer-{direction}": {
|
|
'session_id': session_id,
|
|
'dxcall': dxcall,
|
|
'total_bytes': total_bytes,
|
|
'state': state,
|
|
}
|
|
}
|
|
self.broadcast(event)
|
|
|
|
def send_arq_session_progress(self, outbound: bool, session_id, dxcall, received_bytes, total_bytes, state):
|
|
direction = 'outbound' if outbound else 'inbound'
|
|
event = {
|
|
f"arq-transfer-{direction}": {
|
|
'session_id': session_id,
|
|
'dxcall': dxcall,
|
|
'received_bytes': received_bytes,
|
|
'total_bytes': total_bytes,
|
|
'state': state,
|
|
}
|
|
}
|
|
self.broadcast(event)
|
|
|
|
def send_arq_session_finished(self, outbound: bool, session_id, dxcall, total_bytes, success: bool, state):
|
|
direction = 'outbound' if outbound else 'inbound'
|
|
event = {
|
|
f"arq-transfer-{direction}": {
|
|
'session_id': session_id,
|
|
'dxcall': dxcall,
|
|
'total_bytes': total_bytes,
|
|
'success': success,
|
|
'state': state,
|
|
}
|
|
}
|
|
self.broadcast(event) |