2019-05-12 13:56:18 +00:00
|
|
|
from owrx.config import PropertyManager
|
2019-05-12 16:10:24 +00:00
|
|
|
from owrx.source import DspManager, CpuUsageThread, SdrService, ClientRegistry
|
2019-05-13 17:19:15 +00:00
|
|
|
from owrx.feature import FeatureDetector
|
2019-07-01 09:47:07 +00:00
|
|
|
from owrx.version import openwebrx_version
|
2019-07-19 21:55:52 +00:00
|
|
|
from owrx.bands import Bandplan
|
2019-09-27 22:53:58 +00:00
|
|
|
from owrx.bookmarks import Bookmarks
|
2019-07-01 19:20:53 +00:00
|
|
|
from owrx.map import Map
|
2019-10-03 16:10:46 +00:00
|
|
|
from owrx.locator import Locator
|
2019-09-21 20:10:16 +00:00
|
|
|
from multiprocessing import Queue
|
|
|
|
import json
|
|
|
|
import threading
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
import logging
|
2019-07-21 17:40:28 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2019-07-01 19:20:53 +00:00
|
|
|
|
2019-07-01 17:49:58 +00:00
|
|
|
class Client(object):
|
|
|
|
def __init__(self, conn):
|
|
|
|
self.conn = conn
|
2019-09-21 20:10:16 +00:00
|
|
|
self.multiprocessingPipe = Queue()
|
|
|
|
|
|
|
|
def mp_passthru():
|
|
|
|
run = True
|
|
|
|
while run:
|
|
|
|
try:
|
|
|
|
data = self.multiprocessingPipe.get()
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send(data)
|
2019-09-21 20:10:16 +00:00
|
|
|
except (EOFError, OSError):
|
|
|
|
run = False
|
|
|
|
|
2019-09-22 11:16:24 +00:00
|
|
|
threading.Thread(target=mp_passthru).start()
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-09-22 11:16:24 +00:00
|
|
|
def send(self, data):
|
|
|
|
self.conn.send(data)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.conn.close()
|
2019-09-21 20:10:16 +00:00
|
|
|
self.multiprocessingPipe.close()
|
|
|
|
|
|
|
|
def mp_send(self, data):
|
|
|
|
self.multiprocessingPipe.put(data, block=False)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-09-27 22:27:42 +00:00
|
|
|
def handleTextMessage(self, conn, message):
|
|
|
|
pass
|
|
|
|
|
2019-09-27 22:25:36 +00:00
|
|
|
def handleBinaryMessage(self, conn, data):
|
|
|
|
logger.error("unsupported binary message, discarding")
|
|
|
|
|
|
|
|
def handleClose(self):
|
|
|
|
self.close()
|
|
|
|
|
2019-07-01 17:49:58 +00:00
|
|
|
|
|
|
|
class OpenWebRxReceiverClient(Client):
|
2019-07-21 17:40:28 +00:00
|
|
|
config_keys = [
|
|
|
|
"waterfall_colors",
|
|
|
|
"waterfall_min_level",
|
|
|
|
"waterfall_max_level",
|
|
|
|
"waterfall_auto_level_margin",
|
|
|
|
"lfo_offset",
|
|
|
|
"samp_rate",
|
|
|
|
"fft_size",
|
|
|
|
"fft_fps",
|
|
|
|
"audio_compression",
|
|
|
|
"fft_compression",
|
|
|
|
"max_clients",
|
|
|
|
"start_mod",
|
|
|
|
"client_audio_buffer_size",
|
|
|
|
"start_freq",
|
|
|
|
"center_freq",
|
|
|
|
"mathbox_waterfall_colors",
|
|
|
|
"mathbox_waterfall_history_length",
|
|
|
|
"mathbox_waterfall_frequency_resolution",
|
|
|
|
]
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def __init__(self, conn):
|
2019-07-01 17:49:58 +00:00
|
|
|
super().__init__(conn)
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
self.dsp = None
|
|
|
|
self.sdr = None
|
2019-05-18 19:38:15 +00:00
|
|
|
self.configSub = None
|
2019-05-12 13:56:18 +00:00
|
|
|
|
2019-06-03 22:39:22 +00:00
|
|
|
ClientRegistry.getSharedInstance().addClient(self)
|
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
pm = PropertyManager.getSharedInstance()
|
|
|
|
|
|
|
|
self.setSdr()
|
|
|
|
|
|
|
|
# send receiver info
|
2019-07-21 17:40:28 +00:00
|
|
|
receiver_keys = [
|
|
|
|
"receiver_name",
|
|
|
|
"receiver_location",
|
|
|
|
"receiver_asl",
|
|
|
|
"receiver_gps",
|
|
|
|
"photo_title",
|
|
|
|
"photo_desc",
|
|
|
|
]
|
2019-05-12 13:56:18 +00:00
|
|
|
receiver_details = dict((key, pm.getPropertyValue(key)) for key in receiver_keys)
|
2019-10-03 16:10:46 +00:00
|
|
|
receiver_details["locator"] = Locator.fromCoordinates(receiver_details["receiver_gps"])
|
2019-05-12 13:56:18 +00:00
|
|
|
self.write_receiver_details(receiver_details)
|
|
|
|
|
2019-07-21 17:40:28 +00:00
|
|
|
profiles = [
|
|
|
|
{"name": s.getName() + " " + p["name"], "id": sid + "|" + pid}
|
|
|
|
for (sid, s) in SdrService.getSources().items()
|
|
|
|
for (pid, p) in s.getProfiles().items()
|
|
|
|
]
|
2019-05-12 13:56:18 +00:00
|
|
|
self.write_profiles(profiles)
|
|
|
|
|
2019-05-13 17:19:15 +00:00
|
|
|
features = FeatureDetector().feature_availability()
|
|
|
|
self.write_features(features)
|
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
CpuUsageThread.getSharedInstance().add_client(self)
|
|
|
|
|
2019-09-27 22:25:36 +00:00
|
|
|
def handleTextMessage(self, conn, message):
|
|
|
|
try:
|
|
|
|
message = json.loads(message)
|
|
|
|
if "type" in message:
|
|
|
|
if message["type"] == "dspcontrol":
|
|
|
|
if "action" in message and message["action"] == "start":
|
|
|
|
self.startDsp()
|
|
|
|
|
|
|
|
if "params" in message:
|
|
|
|
params = message["params"]
|
|
|
|
self.setDspProperties(params)
|
|
|
|
|
|
|
|
if message["type"] == "config":
|
|
|
|
if "params" in message:
|
|
|
|
self.setParams(message["params"])
|
|
|
|
if message["type"] == "setsdr":
|
|
|
|
if "params" in message:
|
|
|
|
self.setSdr(message["params"]["sdr"])
|
|
|
|
if message["type"] == "selectprofile":
|
|
|
|
if "params" in message and "profile" in message["params"]:
|
|
|
|
profile = message["params"]["profile"].split("|")
|
|
|
|
self.setSdr(profile[0])
|
|
|
|
self.sdr.activateProfile(profile[1])
|
|
|
|
else:
|
|
|
|
logger.warning("received message without type: {0}".format(message))
|
|
|
|
|
|
|
|
except json.JSONDecodeError:
|
|
|
|
logger.warning("message is not json: {0}".format(message))
|
|
|
|
|
2019-07-21 17:40:28 +00:00
|
|
|
def setSdr(self, id=None):
|
2019-05-12 13:56:18 +00:00
|
|
|
next = SdrService.getSource(id)
|
2019-07-21 17:40:28 +00:00
|
|
|
if next == self.sdr:
|
2019-05-12 13:56:18 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
self.stopDsp()
|
|
|
|
|
2019-05-18 19:38:15 +00:00
|
|
|
if self.configSub is not None:
|
|
|
|
self.configSub.cancel()
|
|
|
|
self.configSub = None
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
self.sdr = next
|
|
|
|
|
|
|
|
# send initial config
|
2019-07-21 17:40:28 +00:00
|
|
|
configProps = (
|
|
|
|
self.sdr.getProps()
|
|
|
|
.collect(*OpenWebRxReceiverClient.config_keys)
|
|
|
|
.defaults(PropertyManager.getSharedInstance())
|
|
|
|
)
|
2019-05-12 13:56:18 +00:00
|
|
|
|
2019-05-18 19:38:15 +00:00
|
|
|
def sendConfig(key, value):
|
2019-07-01 09:47:07 +00:00
|
|
|
config = dict((key, configProps[key]) for key in OpenWebRxReceiverClient.config_keys)
|
2019-05-18 19:38:15 +00:00
|
|
|
# TODO mathematical properties? hmmmm
|
|
|
|
config["start_offset_freq"] = configProps["start_freq"] - configProps["center_freq"]
|
2019-10-04 20:01:07 +00:00
|
|
|
# TODO this is a hack that only works because setting the profile always causes plenty of config change
|
|
|
|
config["profile_id"] = self.sdr.getId() + "|" + self.sdr.getProfileId()
|
2019-05-18 19:38:15 +00:00
|
|
|
self.write_config(config)
|
|
|
|
|
2019-07-19 21:55:52 +00:00
|
|
|
cf = configProps["center_freq"]
|
|
|
|
srh = configProps["samp_rate"] / 2
|
|
|
|
frequencyRange = (cf - srh, cf + srh)
|
2019-07-21 21:39:11 +00:00
|
|
|
self.write_dial_frequendies(Bandplan.getSharedInstance().collectDialFrequencies(frequencyRange))
|
2019-09-27 22:53:58 +00:00
|
|
|
bookmarks = [b.__dict__() for b in Bookmarks.getSharedInstance().getBookmarks(frequencyRange)]
|
|
|
|
self.write_bookmarks(bookmarks)
|
2019-07-19 21:55:52 +00:00
|
|
|
|
2019-05-18 19:38:15 +00:00
|
|
|
self.configSub = configProps.wire(sendConfig)
|
|
|
|
sendConfig(None, None)
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
self.sdr.addSpectrumClient(self)
|
|
|
|
|
|
|
|
def startDsp(self):
|
|
|
|
if self.dsp is None:
|
|
|
|
self.dsp = DspManager(self, self.sdr)
|
|
|
|
self.dsp.start()
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.stopDsp()
|
|
|
|
CpuUsageThread.getSharedInstance().remove_client(self)
|
2019-05-12 16:10:24 +00:00
|
|
|
ClientRegistry.getSharedInstance().removeClient(self)
|
2019-05-18 19:38:15 +00:00
|
|
|
if self.configSub is not None:
|
|
|
|
self.configSub.cancel()
|
|
|
|
self.configSub = None
|
2019-07-01 17:49:58 +00:00
|
|
|
super().close()
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
def stopDsp(self):
|
|
|
|
if self.dsp is not None:
|
|
|
|
self.dsp.stop()
|
|
|
|
self.dsp = None
|
|
|
|
if self.sdr is not None:
|
|
|
|
self.sdr.removeSpectrumClient(self)
|
|
|
|
|
|
|
|
def setParams(self, params):
|
|
|
|
# only the keys in the protected property manager can be overridden from the web
|
2019-07-21 17:40:28 +00:00
|
|
|
protected = (
|
|
|
|
self.sdr.getProps()
|
|
|
|
.collect("samp_rate", "center_freq", "rf_gain", "type", "if_gain")
|
2019-05-12 13:56:18 +00:00
|
|
|
.defaults(PropertyManager.getSharedInstance())
|
2019-07-21 17:40:28 +00:00
|
|
|
)
|
2019-05-12 13:56:18 +00:00
|
|
|
for key, value in params.items():
|
|
|
|
protected[key] = value
|
|
|
|
|
|
|
|
def setDspProperties(self, params):
|
|
|
|
for key, value in params.items():
|
|
|
|
self.dsp.setProperty(key, value)
|
|
|
|
|
|
|
|
def write_spectrum_data(self, data):
|
2019-09-27 21:29:22 +00:00
|
|
|
self.mp_send(bytes([0x01]) + data)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_dsp_data(self, data):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send(bytes([0x02]) + data)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_s_meter_level(self, level):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "smeter", "value": level})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_cpu_usage(self, usage):
|
2019-09-21 20:10:16 +00:00
|
|
|
self.mp_send({"type": "cpuusage", "value": usage})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_clients(self, clients):
|
2019-09-21 20:10:16 +00:00
|
|
|
self.mp_send({"type": "clients", "value": clients})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_secondary_fft(self, data):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send(bytes([0x03]) + data)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_secondary_demod(self, data):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send(bytes([0x04]) + data)
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_secondary_dsp_config(self, cfg):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "secondary_config", "value": cfg})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_config(self, cfg):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "config", "value": cfg})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_receiver_details(self, details):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "receiver_details", "value": details})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
def write_profiles(self, profiles):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "profiles", "value": profiles})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-13 17:19:15 +00:00
|
|
|
def write_features(self, features):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "features", "value": features})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-14 21:30:03 +00:00
|
|
|
def write_metadata(self, metadata):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "metadata", "value": metadata})
|
2019-05-12 13:56:18 +00:00
|
|
|
|
2019-07-06 18:03:17 +00:00
|
|
|
def write_wsjt_message(self, message):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "wsjt_message", "value": message})
|
2019-07-06 18:03:17 +00:00
|
|
|
|
2019-07-19 21:55:52 +00:00
|
|
|
def write_dial_frequendies(self, frequencies):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "dial_frequencies", "value": frequencies})
|
2019-07-19 21:55:52 +00:00
|
|
|
|
2019-09-27 22:53:58 +00:00
|
|
|
def write_bookmarks(self, bookmarks):
|
|
|
|
self.send({"type": "bookmarks", "value": bookmarks})
|
|
|
|
|
2019-08-15 13:45:15 +00:00
|
|
|
def write_aprs_data(self, data):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "aprs_data", "value": data})
|
2019-08-11 14:37:30 +00:00
|
|
|
|
2019-07-01 17:49:58 +00:00
|
|
|
|
|
|
|
class MapConnection(Client):
|
|
|
|
def __init__(self, conn):
|
|
|
|
super().__init__(conn)
|
|
|
|
|
|
|
|
pm = PropertyManager.getSharedInstance()
|
2019-07-07 18:46:12 +00:00
|
|
|
self.write_config(pm.collect("google_maps_api_key", "receiver_gps", "map_position_retention_time").__dict__())
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-07-01 19:20:53 +00:00
|
|
|
Map.getSharedInstance().addClient(self)
|
|
|
|
|
2019-09-27 22:25:36 +00:00
|
|
|
def handleTextMessage(self, conn, message):
|
|
|
|
pass
|
|
|
|
|
2019-07-01 19:20:53 +00:00
|
|
|
def close(self):
|
|
|
|
Map.getSharedInstance().removeClient(self)
|
|
|
|
super().close()
|
|
|
|
|
2019-07-01 17:49:58 +00:00
|
|
|
def write_config(self, cfg):
|
2019-09-22 11:16:24 +00:00
|
|
|
self.send({"type": "config", "value": cfg})
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-07-01 19:20:53 +00:00
|
|
|
def write_update(self, update):
|
2019-09-21 20:10:16 +00:00
|
|
|
self.mp_send({"type": "update", "value": update})
|
2019-07-21 17:40:28 +00:00
|
|
|
|
2019-07-01 17:49:58 +00:00
|
|
|
|
2019-05-12 13:56:18 +00:00
|
|
|
class WebSocketMessageHandler(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.handshake = None
|
|
|
|
|
|
|
|
def handleTextMessage(self, conn, message):
|
2019-07-21 17:40:28 +00:00
|
|
|
if message[:16] == "SERVER DE CLIENT":
|
2019-07-01 09:47:07 +00:00
|
|
|
meta = message[17:].split(" ")
|
|
|
|
self.handshake = {v[0]: "=".join(v[1:]) for v in map(lambda x: x.split("="), meta)}
|
|
|
|
|
2019-07-21 17:40:28 +00:00
|
|
|
conn.send("CLIENT DE SERVER server=openwebrx version={version}".format(version=openwebrx_version))
|
2019-05-12 13:56:18 +00:00
|
|
|
logger.debug("client connection intitialized")
|
|
|
|
|
2019-07-01 09:47:07 +00:00
|
|
|
if "type" in self.handshake:
|
|
|
|
if self.handshake["type"] == "receiver":
|
2019-09-27 22:25:36 +00:00
|
|
|
client = OpenWebRxReceiverClient(conn)
|
2019-07-01 17:49:58 +00:00
|
|
|
if self.handshake["type"] == "map":
|
2019-09-27 22:25:36 +00:00
|
|
|
client = MapConnection(conn)
|
2019-07-01 09:47:07 +00:00
|
|
|
# backwards compatibility
|
|
|
|
else:
|
2019-09-27 22:25:36 +00:00
|
|
|
client = OpenWebRxReceiverClient(conn)
|
|
|
|
|
|
|
|
# hand off all further communication to the correspondig connection
|
|
|
|
conn.setMessageHandler(client)
|
2019-05-12 13:56:18 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
if not self.handshake:
|
|
|
|
logger.warning("not answering client request since handshake is not complete")
|
|
|
|
return
|
2019-09-27 22:27:42 +00:00
|
|
|
|
|
|
|
def handleBinaryMessage(self, conn, data):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def handleClose(self):
|
|
|
|
pass
|