2020-04-22 10:07:13 +00:00
|
|
|
from .Interface import Interface
|
2018-03-19 15:39:08 +00:00
|
|
|
from time import sleep
|
2016-06-03 17:02:02 +00:00
|
|
|
import sys
|
|
|
|
import threading
|
2018-03-20 15:57:26 +00:00
|
|
|
import time
|
2018-04-04 12:14:22 +00:00
|
|
|
import RNS
|
2016-06-03 17:02:02 +00:00
|
|
|
|
2020-05-06 12:34:03 +00:00
|
|
|
class HDLC():
|
2020-08-13 10:15:56 +00:00
|
|
|
# The Serial Interface packetizes data using
|
|
|
|
# simplified HDLC framing, similar to PPP
|
|
|
|
FLAG = 0x7E
|
|
|
|
ESC = 0x7D
|
|
|
|
ESC_MASK = 0x20
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def escape(data):
|
|
|
|
data = data.replace(bytes([HDLC.ESC]), bytes([HDLC.ESC, HDLC.ESC^HDLC.ESC_MASK]))
|
|
|
|
data = data.replace(bytes([HDLC.FLAG]), bytes([HDLC.ESC, HDLC.FLAG^HDLC.ESC_MASK]))
|
|
|
|
return data
|
2020-05-06 12:34:03 +00:00
|
|
|
|
2016-06-03 17:02:02 +00:00
|
|
|
class SerialInterface(Interface):
|
2020-08-13 10:15:56 +00:00
|
|
|
MAX_CHUNK = 32768
|
|
|
|
|
|
|
|
owner = None
|
|
|
|
port = None
|
|
|
|
speed = None
|
|
|
|
databits = None
|
|
|
|
parity = None
|
|
|
|
stopbits = None
|
|
|
|
serial = None
|
|
|
|
|
|
|
|
def __init__(self, owner, name, port, speed, databits, parity, stopbits):
|
2021-12-01 12:57:40 +00:00
|
|
|
import importlib
|
2021-12-01 12:39:51 +00:00
|
|
|
if importlib.util.find_spec('serial') != None:
|
|
|
|
import serial
|
|
|
|
else:
|
|
|
|
RNS.log("Using the Serial interface requires a serial communication module to be installed.", RNS.LOG_CRITICAL)
|
|
|
|
RNS.log("You can install one with the command: python3 -m pip install pyserial", RNS.LOG_CRITICAL)
|
|
|
|
RNS.panic()
|
|
|
|
|
2021-09-24 18:10:04 +00:00
|
|
|
self.rxb = 0
|
|
|
|
self.txb = 0
|
|
|
|
|
2021-12-05 13:35:25 +00:00
|
|
|
self.pyserial = serial
|
2020-08-13 10:15:56 +00:00
|
|
|
self.serial = None
|
|
|
|
self.owner = owner
|
|
|
|
self.name = name
|
|
|
|
self.port = port
|
|
|
|
self.speed = speed
|
|
|
|
self.databits = databits
|
|
|
|
self.parity = serial.PARITY_NONE
|
|
|
|
self.stopbits = stopbits
|
|
|
|
self.timeout = 100
|
|
|
|
self.online = False
|
|
|
|
|
|
|
|
if parity.lower() == "e" or parity.lower() == "even":
|
|
|
|
self.parity = serial.PARITY_EVEN
|
|
|
|
|
|
|
|
if parity.lower() == "o" or parity.lower() == "odd":
|
|
|
|
self.parity = serial.PARITY_ODD
|
|
|
|
|
|
|
|
try:
|
2021-12-05 13:35:25 +00:00
|
|
|
self.open_port()
|
2020-08-13 10:15:56 +00:00
|
|
|
except Exception as e:
|
|
|
|
RNS.log("Could not open serial port for interface "+str(self), RNS.LOG_ERROR)
|
|
|
|
raise e
|
|
|
|
|
|
|
|
if self.serial.is_open:
|
2021-12-05 13:35:25 +00:00
|
|
|
self.configure_device()
|
2020-08-13 10:15:56 +00:00
|
|
|
else:
|
|
|
|
raise IOError("Could not open serial port")
|
|
|
|
|
|
|
|
|
2021-12-05 13:35:25 +00:00
|
|
|
def open_port(self):
|
|
|
|
RNS.log("Opening serial port "+self.port+"...", RNS.LOG_VERBOSE)
|
|
|
|
self.serial = self.pyserial.Serial(
|
|
|
|
port = self.port,
|
|
|
|
baudrate = self.speed,
|
|
|
|
bytesize = self.databits,
|
|
|
|
parity = self.parity,
|
|
|
|
stopbits = self.stopbits,
|
|
|
|
xonxoff = False,
|
|
|
|
rtscts = False,
|
|
|
|
timeout = 0,
|
|
|
|
inter_byte_timeout = None,
|
|
|
|
write_timeout = None,
|
|
|
|
dsrdtr = False,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def configure_device(self):
|
|
|
|
sleep(0.5)
|
|
|
|
thread = threading.Thread(target=self.readLoop)
|
|
|
|
thread.setDaemon(True)
|
|
|
|
thread.start()
|
|
|
|
self.online = True
|
|
|
|
RNS.log("Serial port "+self.port+" is now open")
|
|
|
|
|
|
|
|
|
2020-08-13 10:15:56 +00:00
|
|
|
def processIncoming(self, data):
|
2021-09-24 18:10:04 +00:00
|
|
|
self.rxb += len(data)
|
2020-08-13 10:15:56 +00:00
|
|
|
self.owner.inbound(data, self)
|
|
|
|
|
|
|
|
|
|
|
|
def processOutgoing(self,data):
|
|
|
|
if self.online:
|
|
|
|
data = bytes([HDLC.FLAG])+HDLC.escape(data)+bytes([HDLC.FLAG])
|
|
|
|
written = self.serial.write(data)
|
2021-09-24 18:10:04 +00:00
|
|
|
self.txb += len(data)
|
2020-08-13 10:15:56 +00:00
|
|
|
if written != len(data):
|
|
|
|
raise IOError("Serial interface only wrote "+str(written)+" bytes of "+str(len(data)))
|
|
|
|
|
|
|
|
|
|
|
|
def readLoop(self):
|
|
|
|
try:
|
|
|
|
in_frame = False
|
|
|
|
escape = False
|
|
|
|
data_buffer = b""
|
|
|
|
last_read_ms = int(time.time()*1000)
|
|
|
|
|
|
|
|
while self.serial.is_open:
|
|
|
|
if self.serial.in_waiting:
|
|
|
|
byte = ord(self.serial.read(1))
|
|
|
|
last_read_ms = int(time.time()*1000)
|
|
|
|
|
|
|
|
if (in_frame and byte == HDLC.FLAG):
|
|
|
|
in_frame = False
|
|
|
|
self.processIncoming(data_buffer)
|
|
|
|
elif (byte == HDLC.FLAG):
|
|
|
|
in_frame = True
|
|
|
|
data_buffer = b""
|
|
|
|
elif (in_frame and len(data_buffer) < RNS.Reticulum.MTU):
|
|
|
|
if (byte == HDLC.ESC):
|
|
|
|
escape = True
|
|
|
|
else:
|
|
|
|
if (escape):
|
|
|
|
if (byte == HDLC.FLAG ^ HDLC.ESC_MASK):
|
|
|
|
byte = HDLC.FLAG
|
|
|
|
if (byte == HDLC.ESC ^ HDLC.ESC_MASK):
|
|
|
|
byte = HDLC.ESC
|
|
|
|
escape = False
|
|
|
|
data_buffer = data_buffer+bytes([byte])
|
|
|
|
|
|
|
|
else:
|
|
|
|
time_since_last = int(time.time()*1000) - last_read_ms
|
|
|
|
if len(data_buffer) > 0 and time_since_last > self.timeout:
|
|
|
|
data_buffer = b""
|
|
|
|
in_frame = False
|
|
|
|
escape = False
|
|
|
|
sleep(0.08)
|
2021-12-05 13:35:25 +00:00
|
|
|
|
2020-08-13 10:15:56 +00:00
|
|
|
except Exception as e:
|
|
|
|
self.online = False
|
|
|
|
RNS.log("A serial port error occurred, the contained exception was: "+str(e), RNS.LOG_ERROR)
|
2021-12-05 13:35:25 +00:00
|
|
|
RNS.log("The interface "+str(self)+" experienced an unrecoverable error and is now offline.", RNS.LOG_ERROR)
|
|
|
|
|
2021-09-18 20:49:04 +00:00
|
|
|
if RNS.Reticulum.panic_on_interface_error:
|
|
|
|
RNS.panic()
|
2020-08-13 10:15:56 +00:00
|
|
|
|
2021-12-05 13:35:25 +00:00
|
|
|
RNS.log("Reticulum will attempt to reconnect the interface periodically.", RNS.LOG_ERROR)
|
|
|
|
|
|
|
|
self.online = False
|
|
|
|
self.serial.close()
|
|
|
|
self.reconnect_port()
|
|
|
|
|
|
|
|
def reconnect_port(self):
|
|
|
|
while not self.online:
|
|
|
|
try:
|
|
|
|
time.sleep(5)
|
|
|
|
RNS.log("Attempting to reconnect serial port "+str(self.port)+" for "+str(self)+"...", RNS.LOG_VERBOSE)
|
|
|
|
self.open_port()
|
|
|
|
if self.serial.is_open:
|
|
|
|
self.configure_device()
|
|
|
|
except Exception as e:
|
|
|
|
RNS.log("Error while reconnecting port, the contained exception was: "+str(e), RNS.LOG_ERROR)
|
|
|
|
|
|
|
|
RNS.log("Reconnected serial port for "+str(self))
|
|
|
|
|
2020-08-13 10:15:56 +00:00
|
|
|
def __str__(self):
|
|
|
|
return "SerialInterface["+self.name+"]"
|