2021-09-07 15:31:32 +00:00
|
|
|
from csdr.module import PopenModule
|
2021-09-07 12:45:52 +00:00
|
|
|
from pycsdr.types import Format
|
2021-12-21 20:18:17 +00:00
|
|
|
from pycsdr.modules import Writer
|
|
|
|
from subprocess import Popen, PIPE
|
|
|
|
from threading import Thread
|
|
|
|
|
|
|
|
import re
|
|
|
|
import pickle
|
2021-09-07 12:45:52 +00:00
|
|
|
|
|
|
|
|
2021-09-07 15:31:32 +00:00
|
|
|
class M17Module(PopenModule):
|
2021-12-21 20:18:17 +00:00
|
|
|
lsfRegex = re.compile("SRC: ([a-zA-Z0-9]+), DEST: ([a-zA-Z0-9]+)")
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.metawriter = None
|
|
|
|
|
2021-09-07 12:45:52 +00:00
|
|
|
def getInputFormat(self) -> Format:
|
|
|
|
return Format.SHORT
|
|
|
|
|
|
|
|
def getOutputFormat(self) -> Format:
|
|
|
|
return Format.SHORT
|
|
|
|
|
2021-09-07 15:31:32 +00:00
|
|
|
def getCommand(self):
|
2021-12-21 20:18:17 +00:00
|
|
|
return ["m17-demod", "-l"]
|
|
|
|
|
|
|
|
def _getProcess(self):
|
|
|
|
return Popen(self.getCommand(), stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
super().start()
|
|
|
|
Thread(target=self._readOutput).start()
|
|
|
|
|
|
|
|
def _readOutput(self):
|
|
|
|
while True:
|
|
|
|
line = self.process.stderr.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
self.parseOutput(line.decode())
|
|
|
|
|
|
|
|
def parseOutput(self, line):
|
|
|
|
if self.metawriter is None:
|
|
|
|
return
|
|
|
|
matches = self.lsfRegex.match(line)
|
|
|
|
msg = {"protocol": "M17"}
|
|
|
|
if matches:
|
|
|
|
# fake sync
|
|
|
|
msg["sync"] = "voice"
|
|
|
|
msg["source"] = matches.group(1)
|
|
|
|
msg["destination"] = matches.group(2)
|
|
|
|
elif line.startswith("EOS"):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
self.metawriter.write(pickle.dumps(msg))
|
|
|
|
|
|
|
|
def setMetaWriter(self, writer: Writer) -> None:
|
|
|
|
self.metawriter = writer
|