54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
from abc import ABCMeta
|
|
from owrx.source import SdrSource, SdrDeviceDescription
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class DirectSource(SdrSource, metaclass=ABCMeta):
|
|
def onPropertyChange(self, changes):
|
|
logger.debug("restarting sdr source due to property changes: {0}".format(changes))
|
|
self.stop()
|
|
self.sleepOnRestart()
|
|
self.start()
|
|
|
|
def nmux_memory(self):
|
|
# in megabytes. This sets the approximate size of the circular buffer used by nmux.
|
|
return 50
|
|
|
|
def getNmuxCommand(self):
|
|
props = self.sdrProps
|
|
|
|
nmux_bufcnt = nmux_bufsize = 0
|
|
while nmux_bufsize < props["samp_rate"] / 4:
|
|
nmux_bufsize += 4096
|
|
while nmux_bufsize * nmux_bufcnt < self.nmux_memory() * 1e6:
|
|
nmux_bufcnt += 1
|
|
if nmux_bufcnt == 0 or nmux_bufsize == 0:
|
|
raise ValueError("Error: unable to calculate nmux buffer parameters.")
|
|
|
|
return [
|
|
"nmux --bufsize %d --bufcnt %d --port %d --address 127.0.0.1"
|
|
% (
|
|
nmux_bufsize,
|
|
nmux_bufcnt,
|
|
self.port,
|
|
)
|
|
]
|
|
|
|
def getCommand(self):
|
|
return super().getCommand() + self.getFormatConversion() + self.getNmuxCommand()
|
|
|
|
# override this in subclasses, if necessary
|
|
def getFormatConversion(self):
|
|
return []
|
|
|
|
# override this in subclasses, if necessary
|
|
def sleepOnRestart(self):
|
|
pass
|
|
|
|
|
|
class DirectSourceDeviceDescription(SdrDeviceDescription):
|
|
pass
|