Added basic telemetry/text packet monitor script.

pull/1/head
Mark Jessop 2016-12-08 22:12:23 +10:30
rodzic 4dcd9eddcf
commit 3de9448a63
1 zmienionych plików z 60 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,60 @@
#!/usr/bin/env python2.7
#
# Basic Wenet Text Message / Telemetry Viewer.
#
# Will eventually form the basis of a GUI.
import json
import socket
import datetime
from WenetPackets import *
def process_udp(udp_packet):
""" Process received UDP packets. """
# Grab timestamp.
timestamp = datetime.datetime.utcnow().strftime("%Y%m%d-%H%M%SZ")
# Parse JSON, and extract packet.
packet_dict = json.loads(udp_packet)
packet = packet_dict['packet']
# Convert to string, and print to terminal with timestamp.
print("%s \t%s" % (timestamp,packet_to_string(packet)))
udp_listener_running = False
def udp_rx_thread():
""" Listen on a port for UDP broadcast packets, and pass them onto process_udp()"""
global udp_listener_running
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
s.settimeout(1)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
except:
pass
s.bind(('',WENET_TELEMETRY_UDP_PORT))
print("Started UDP Listener Thread.")
udp_listener_running = True
while udp_listener_running:
try:
m = s.recvfrom(2048)
except socket.timeout:
m = None
if m != None:
try:
process_udp(m[0])
except:
pass
print("Closing UDP Listener")
s.close()
if __name__ == "__main__":
try:
udp_rx_thread()
except KeyboardInterrupt:
udp_listener_running = False