X-Git-Url: http://average.org/gitweb/?a=blobdiff_plain;f=loctrkd%2Frectifier.py;fp=loctrkd%2Frectifier.py;h=5ef6d35f77c32d79c2f696ceb032be08f1cb7231;hb=5bd4b1bad2506f2f5f71161ac9e8a9b141e0fef4;hp=0000000000000000000000000000000000000000;hpb=cbb7603aebedf517d7b7c61ff6de02d3e7193409;p=loctrkd.git diff --git a/loctrkd/rectifier.py b/loctrkd/rectifier.py new file mode 100644 index 0000000..5ef6d35 --- /dev/null +++ b/loctrkd/rectifier.py @@ -0,0 +1,62 @@ +""" Estimate coordinates from WIFI_POSITIONING and send back """ + +from configparser import ConfigParser +from datetime import datetime, timezone +from importlib import import_module +from logging import getLogger +from os import umask +from struct import pack +import zmq + +from . import common +from .zx303proto import parse_message, proto_name, WIFI_POSITIONING +from .zmsg import Bcast, Resp, topic + +log = getLogger("loctrkd/rectifier") + + +def runserver(conf: ConfigParser) -> None: + qry = import_module("." + conf.get("rectifier", "backend"), __package__) + qry.init(conf) + # Is this https://github.com/zeromq/pyzmq/issues/1627 still not fixed?! + zctx = zmq.Context() # type: ignore + zsub = zctx.socket(zmq.SUB) # type: ignore + zsub.connect(conf.get("collector", "publishurl")) + zsub.setsockopt(zmq.SUBSCRIBE, topic(proto_name(WIFI_POSITIONING))) + zpush = zctx.socket(zmq.PUSH) # type: ignore + zpush.connect(conf.get("collector", "listenurl")) + + try: + while True: + zmsg = Bcast(zsub.recv()) + msg = parse_message(zmsg.packet) + log.debug( + "IMEI %s from %s at %s: %s", + zmsg.imei, + zmsg.peeraddr, + datetime.fromtimestamp(zmsg.when).astimezone(tz=timezone.utc), + msg, + ) + try: + lat, lon = qry.lookup( + msg.mcc, msg.mnc, msg.gsm_cells, msg.wifi_aps + ) + resp = Resp( + imei=zmsg.imei, + when=zmsg.when, # not the current time, but the original! + packet=msg.Out(latitude=lat, longitude=lon).packed, + ) + log.debug("Response for lat=%s, lon=%s: %s", lat, lon, resp) + zpush.send(resp.packed) + except Exception as e: + log.warning("Lookup for %s resulted in %s", msg, e) + + except KeyboardInterrupt: + zsub.close() + zpush.close() + zctx.destroy() # type: ignore + qry.shut() + + +if __name__.endswith("__main__"): + runserver(common.init(log))