2021-02-11 18:31:44 +00:00
|
|
|
from owrx.config.core import CoreConfig
|
|
|
|
from owrx.config import Config
|
2021-04-09 16:16:25 +00:00
|
|
|
import csdr
|
|
|
|
from csdr.output import Output
|
2019-12-21 19:58:28 +00:00
|
|
|
import threading
|
2021-03-18 18:34:53 +00:00
|
|
|
from owrx.source import SdrSourceEventClient, SdrSourceState, SdrClientClass
|
2020-03-23 22:56:05 +00:00
|
|
|
from owrx.property import PropertyStack
|
2019-12-21 19:58:28 +00:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2021-04-09 16:16:25 +00:00
|
|
|
class SpectrumThread(Output, SdrSourceEventClient):
|
2019-12-21 19:58:28 +00:00
|
|
|
def __init__(self, sdrSource):
|
|
|
|
self.sdrSource = sdrSource
|
|
|
|
super().__init__()
|
|
|
|
|
2020-03-23 22:56:05 +00:00
|
|
|
stack = PropertyStack()
|
|
|
|
stack.addLayer(0, self.sdrSource.props)
|
|
|
|
stack.addLayer(1, Config.get())
|
2020-03-24 21:16:11 +00:00
|
|
|
self.props = props = stack.filter(
|
2019-12-21 19:58:28 +00:00
|
|
|
"samp_rate",
|
|
|
|
"fft_size",
|
|
|
|
"fft_fps",
|
|
|
|
"fft_voverlap_factor",
|
|
|
|
"fft_compression",
|
2020-03-23 22:56:05 +00:00
|
|
|
)
|
2019-12-21 19:58:28 +00:00
|
|
|
|
2021-04-09 16:16:25 +00:00
|
|
|
self.dsp = dsp = csdr.Dsp(self)
|
2019-12-21 19:58:28 +00:00
|
|
|
dsp.nc_port = self.sdrSource.getPort()
|
|
|
|
dsp.set_demodulator("fft")
|
|
|
|
|
2020-12-30 16:18:46 +00:00
|
|
|
def set_fft_averages(changes=None):
|
2019-12-21 19:58:28 +00:00
|
|
|
samp_rate = props["samp_rate"]
|
|
|
|
fft_size = props["fft_size"]
|
|
|
|
fft_fps = props["fft_fps"]
|
|
|
|
fft_voverlap_factor = props["fft_voverlap_factor"]
|
|
|
|
|
|
|
|
dsp.set_fft_averages(
|
|
|
|
int(round(1.0 * samp_rate / fft_size / fft_fps / (1.0 - fft_voverlap_factor)))
|
|
|
|
if fft_voverlap_factor > 0
|
|
|
|
else 0
|
|
|
|
)
|
|
|
|
|
|
|
|
self.subscriptions = [
|
2020-03-23 22:56:05 +00:00
|
|
|
props.wireProperty("samp_rate", dsp.set_samp_rate),
|
|
|
|
props.wireProperty("fft_size", dsp.set_fft_size),
|
|
|
|
props.wireProperty("fft_fps", dsp.set_fft_fps),
|
|
|
|
props.wireProperty("fft_compression", dsp.set_fft_compression),
|
2020-03-24 21:16:11 +00:00
|
|
|
props.filter("samp_rate", "fft_size", "fft_fps", "fft_voverlap_factor").wire(set_fft_averages),
|
2019-12-21 19:58:28 +00:00
|
|
|
]
|
|
|
|
|
2020-12-30 16:18:46 +00:00
|
|
|
set_fft_averages()
|
2019-12-21 19:58:28 +00:00
|
|
|
|
2021-02-06 20:55:47 +00:00
|
|
|
dsp.set_temporary_directory(CoreConfig().get_temporary_directory())
|
2019-12-21 19:58:28 +00:00
|
|
|
logger.debug("Spectrum thread initialized successfully.")
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self.sdrSource.addClient(self)
|
|
|
|
if self.sdrSource.isAvailable():
|
|
|
|
self.dsp.start()
|
|
|
|
|
|
|
|
def supports_type(self, t):
|
|
|
|
return t == "audio"
|
|
|
|
|
|
|
|
def receive_output(self, type, read_fn):
|
|
|
|
threading.Thread(target=self.pump(read_fn, self.sdrSource.writeSpectrumData)).start()
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self.dsp.stop()
|
|
|
|
self.sdrSource.removeClient(self)
|
|
|
|
for c in self.subscriptions:
|
|
|
|
c.cancel()
|
|
|
|
self.subscriptions = []
|
|
|
|
|
2021-02-20 21:54:07 +00:00
|
|
|
def getClientClass(self) -> SdrClientClass:
|
|
|
|
return SdrClientClass.USER
|
2019-12-21 19:58:28 +00:00
|
|
|
|
2021-02-20 21:54:07 +00:00
|
|
|
def onStateChange(self, state: SdrSourceState):
|
2021-03-18 18:34:53 +00:00
|
|
|
if state is SdrSourceState.STOPPING:
|
2019-12-21 19:58:28 +00:00
|
|
|
self.dsp.stop()
|
2021-02-20 21:54:07 +00:00
|
|
|
elif state is SdrSourceState.RUNNING:
|
2019-12-21 19:58:28 +00:00
|
|
|
self.dsp.start()
|
|
|
|
|
2021-03-18 18:34:53 +00:00
|
|
|
def onFail(self):
|
|
|
|
self.dsp.stop()
|
2021-03-18 21:59:46 +00:00
|
|
|
|
|
|
|
def onShutdown(self):
|
|
|
|
self.dsp.stop()
|