FreeDATA/sock.py

208 lines
8.2 KiB
Python
Raw Normal View History

2021-02-16 13:23:57 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 25 21:25:14 2020
@author: DJ2LS
"""
import socketserver
import threading
import logging
2021-02-16 18:39:08 +00:00
import time
2021-03-08 09:49:50 +00:00
import json
import asyncio
2021-02-16 13:23:57 +00:00
import static
2021-02-24 13:22:28 +00:00
import data_handler
2021-02-16 19:49:02 +00:00
import helpers
2021-02-16 13:23:57 +00:00
import asyncbg
class CMDTCPRequestHandler(socketserver.BaseRequestHandler):
2021-02-16 13:36:01 +00:00
2021-02-16 18:39:08 +00:00
def handle(self):
2021-02-16 19:49:02 +00:00
2021-02-18 14:11:37 +00:00
encoding = 'utf-8'
#data = str(self.request.recv(1024), 'utf-8')
data = bytes()
while True:
chunk = self.request.recv(8192)#.strip()
data += chunk
if chunk.endswith(b'\n'):
break
data = data[:-1] # remove b'\n'
data = str(data, 'utf-8')
2021-02-16 18:39:08 +00:00
# SOCKETTEST ---------------------------------------------------
2021-02-16 18:39:08 +00:00
if data == 'SOCKETTEST':
2021-03-09 10:05:59 +00:00
#cur_thread = threading.current_thread()
2021-02-18 14:11:37 +00:00
response = bytes("WELL DONE! YOU ARE ABLE TO COMMUNICATE WITH THE TNC", encoding)
2021-02-16 18:39:08 +00:00
self.request.sendall(response)
# CQ CQ CQ -----------------------------------------------------
if data == 'CQCQCQ':
2021-03-09 10:05:59 +00:00
asyncio.run(data_handler.transmit_cq())
#asyncio.run(asyncbg.call(data_handler.transmit_cq))
2021-03-09 15:45:27 +00:00
#######self.request.sendall(b'CALLING CQ')
# PING ----------------------------------------------------------
if data.startswith('PING:'):
#send ping frame and wait for ACK
pingcommand = data.split('PING:')
dxcallsign = pingcommand[1]
#data_handler.transmit_ping(dxcallsign)
##loop = asyncio.get_event_loop()
##loop.create_task(data_handler.transmit_ping(dxcallsign))
##loop.run()
#asyncio.new_event_loop()
#asyncio.ensure_future(data_handler.transmit_ping(dxcallsign))
asyncio.run(data_handler.transmit_ping(dxcallsign))
#asyncio.create_task(data_handler.transmit_ping(dxcallsign))
#asyncio.run(data_handler.transmit_ping(dxcallsign))
# ARQ CONNECT TO CALLSIGN ----------------------------------------
if data.startswith('ARQ:CONNECT:'):
arqconnectcommand = data.split('ARQ:CONNECT:')
dxcallsign = arqconnectcommand[1]
2021-02-28 14:24:14 +00:00
static.DXCALLSIGN = bytes(dxcallsign, 'utf-8')
static.DXCALLSIGN_CRC8 = helpers.get_crc_8(static.DXCALLSIGN)
2021-02-24 16:41:14 +00:00
if static.ARQ_STATE == 'CONNECTED':
2021-02-28 14:24:14 +00:00
# here we could disconnect
pass
2021-02-24 16:41:14 +00:00
if static.TNC_STATE == 'IDLE':
# here we send an "CONNECT FRAME
#ARQ_CONNECT_THREAD = threading.Thread(target=data_handler.arq_connect, name="ARQ_CONNECT")
#ARQ_CONNECT_THREAD.start()
asyncio.run(data_handler.arq_connect())
2021-03-09 15:45:27 +00:00
########self.request.sendall(bytes("CONNECTING", encoding))
#data_handler.arq_connect()
# ARQ DISCONNECT FROM CALLSIGN ----------------------------------------
if data == 'ARQ:DISCONNECT':
#ARQ_DISCONNECT_THREAD = threading.Thread(target=data_handler.arq_disconnect, name="ARQ_DISCONNECT")
#ARQ_DISCONNECT_THREAD.start()
asyncio.run(data_handler.arq_disconnect())
2021-03-09 15:45:27 +00:00
########self.request.sendall(bytes("DISCONNECTING", encoding))
#data_handler.arq_disconnect()
2021-02-16 18:39:08 +00:00
# TRANSMIT ARQ MESSAGE ------------------------------------------
# wen need to change the TNC_STATE to "CONNECTE" and need to make sure we have a valid callsign and callsign crc8 of the DX station
#print(static.ARQ_STATE)
2021-03-08 09:49:50 +00:00
if data.startswith('ARQ:DATA:') and static.ARQ_STATE == 'CONNECTED':
2021-02-28 14:24:14 +00:00
static.ARQ_READY_FOR_DATA = False
2021-02-16 18:39:08 +00:00
logging.info("CMD | NEW ARQ DATA")
2021-03-09 15:45:27 +00:00
########self.request.sendall(b'SENDING ARQ DATA')
2021-02-28 14:24:14 +00:00
asyncio.run(data_handler.arq_open_data_channel())
#data_handler.arq_open_data_channel()
2021-02-28 14:24:14 +00:00
#wait until we set the data mode
# here we need a timeout as well!!!
while static.ARQ_READY_FOR_DATA == False:
time.sleep(0.01)
if static.ARQ_READY_FOR_DATA == True:
2021-02-28 16:28:07 +00:00
#logging.info("CMD | SENDING ARQ DATA")
2021-02-28 14:24:14 +00:00
static.TNC_STATE = 'BUSY'
arqdata = data.split('ARQ:')
data_out = bytes(arqdata[1], 'utf-8')
2021-02-16 13:36:01 +00:00
asyncio.run(data_handler.arq_transmit(data_out))
###asyncio.run(asyncbg.call(data_handler.arq_transmit, data_out))
2021-03-10 08:12:49 +00:00
#print("die funktion läuft weiter...")
#data_handler.arq_transmit(data_out)
#TRANSMIT_ARQ = threading.Thread(target=data_handler.transmit, args=[data_out], name="TRANSMIT_ARQ")
#TRANSMIT_ARQ.start()
2021-02-16 19:49:02 +00:00
# SETTINGS AND STATUS ---------------------------------------------
2021-02-16 19:49:02 +00:00
if data.startswith('SET:MYCALLSIGN:'):
2021-02-28 14:24:14 +00:00
callsign = data.split('SET:MYCALLSIGN:')
if bytes(callsign[1], encoding) == b'':
2021-02-18 14:11:37 +00:00
self.request.sendall(b'INVALID CALLSIGN')
else:
2021-02-28 14:24:14 +00:00
static.MYCALLSIGN = bytes(callsign[1], encoding)
2021-02-18 14:11:37 +00:00
static.MYCALLSIGN_CRC8 = helpers.get_crc_8(static.MYCALLSIGN)
2021-03-09 15:45:27 +00:00
########self.request.sendall(static.MYCALLSIGN)
2021-02-18 14:11:37 +00:00
logging.info("CMD | MYCALLSIGN: " + str(static.MYCALLSIGN))
2021-03-09 15:45:27 +00:00
2021-02-16 19:49:02 +00:00
if data == 'GET:MYCALLSIGN':
self.request.sendall(bytes(static.MYCALLSIGN, encoding))
2021-03-09 15:45:27 +00:00
2021-02-16 19:49:02 +00:00
if data == 'GET:DXCALLSIGN':
self.request.sendall(bytes(static.DXCALLSIGN, encoding))
2021-02-19 08:58:12 +00:00
if data == 'GET:TNC_STATE':
2021-03-08 09:49:50 +00:00
output = {
"PTT_STATE": str(static.PTT_STATE),
2021-03-09 10:05:59 +00:00
"CHANNEL_STATE": str(static.CHANNEL_STATE),
"TNC_STATE": str(static.TNC_STATE),
2021-03-09 15:45:27 +00:00
"ARQ_STATE": str(static.ARQ_STATE),
"AUDIO_RMS": str(static.AUDIO_RMS)
2021-03-08 09:49:50 +00:00
}
jsondata = json.dumps(output)
self.request.sendall(bytes(jsondata, encoding))
if data == 'GET:DATA_STATE':
output = {
"RX_BUFFER_LENGTH": str(len(static.RX_BUFFER)),
"TX_N_MAX_RETRIES": str(static.TX_N_MAX_RETRIES),
"ARQ_TX_N_FRAMES_PER_BURST": str(static.ARQ_TX_N_FRAMES_PER_BURST),
"ARQ_TX_N_BURSTS": str(static.ARQ_TX_N_BURSTS),
2021-03-10 08:12:49 +00:00
"ARQ_TX_N_CURRENT_ARQ_FRAME": str(int.from_bytes(bytes(static.ARQ_TX_N_CURRENT_ARQ_FRAME), "big")),
"ARQ_TX_N_TOTAL_ARQ_FRAMES": str(int.from_bytes(bytes(static.ARQ_TX_N_TOTAL_ARQ_FRAMES), "big")),
"ARQ_RX_FRAME_N_BURSTS": str(static.ARQ_RX_FRAME_N_BURSTS),
"ARQ_RX_N_CURRENT_ARQ_FRAME": str(static.ARQ_RX_N_CURRENT_ARQ_FRAME),
"ARQ_N_ARQ_FRAMES_PER_DATA_FRAME": str(static.ARQ_N_ARQ_FRAMES_PER_DATA_FRAME )
2021-03-08 09:49:50 +00:00
}
jsondata = json.dumps(output)
self.request.sendall(bytes(jsondata, encoding))
2021-03-09 15:45:27 +00:00
2021-02-16 13:23:57 +00:00
2021-02-16 19:49:02 +00:00
if data.startswith('GET:RX_BUFFER:'):
data = data.split('GET:RX_BUFFER:')
bufferposition = int(data[1])-1
2021-02-16 21:41:06 +00:00
if bufferposition == -1:
2021-02-16 19:49:02 +00:00
if len(static.RX_BUFFER) > 0:
self.request.sendall(static.RX_BUFFER[-1])
if bufferposition <= len(static.RX_BUFFER) > 0:
self.request.sendall(bytes(static.RX_BUFFER[bufferposition]))
2021-02-18 14:11:37 +00:00
if data == 'DEL:RX_BUFFER':
static.RX_BUFFER = []
2021-02-16 13:36:01 +00:00
2021-03-09 15:45:27 +00:00
#self.request.close()
2021-02-16 13:36:01 +00:00
def start_cmd_socket():
try:
logging.info("SRV | STARTING TCP/IP SOCKET FOR CMD ON PORT: " + str(static.PORT))
socketserver.TCPServer.allow_reuse_address = True #https://stackoverflow.com/a/16641793
cmdserver = socketserver.TCPServer((static.HOST, static.PORT), CMDTCPRequestHandler)
cmdserver.serve_forever()
finally:
cmdserver.server_close()