X-Git-Url: http://www.average.org/gitweb/?a=blobdiff_plain;f=gps303%2Fwsgateway.py;h=7dc2fcd7ff6b0c09596177364dbef0dcede3f8e7;hb=bf48ccad4b4b91e7d7e09d1087f5953bc2db97d7;hp=381a8558a4218f9d56489425ece81d4c4406e6d8;hpb=7ff26a2079e56969c65937b1bae7f6d908aa0664;p=loctrkd.git diff --git a/gps303/wsgateway.py b/gps303/wsgateway.py index 381a855..7dc2fcd 100644 --- a/gps303/wsgateway.py +++ b/gps303/wsgateway.py @@ -22,11 +22,12 @@ import zmq from . import common from .evstore import initdb, fetch -from .gps303proto import ( +from .zx303proto import ( GPS_POSITIONING, STATUS, WIFI_POSITIONING, parse_message, + proto_name, ) from .zmsg import Bcast, topic @@ -38,7 +39,10 @@ def backlog(imei: str, numback: int) -> List[Dict[str, Any]]: result = [] for is_incoming, timestamp, packet in fetch( imei, - [(True, GPS_POSITIONING.PROTO), (False, WIFI_POSITIONING.PROTO)], + [ + (True, proto_name(GPS_POSITIONING)), + (False, proto_name(WIFI_POSITIONING)), + ], numback, ): msg = parse_message(packet, is_incoming=is_incoming) @@ -282,28 +286,28 @@ def runserver(conf: ConfigParser) -> None: for imei in neededsubs - activesubs: zsub.setsockopt( zmq.SUBSCRIBE, - topic(GPS_POSITIONING.PROTO, True, imei), + topic(proto_name(GPS_POSITIONING), True, imei), ) zsub.setsockopt( zmq.SUBSCRIBE, - topic(WIFI_POSITIONING.PROTO, False, imei), + topic(proto_name(WIFI_POSITIONING), False, imei), ) zsub.setsockopt( zmq.SUBSCRIBE, - topic(STATUS.PROTO, True, imei), + topic(proto_name(STATUS), True, imei), ) for imei in activesubs - neededsubs: zsub.setsockopt( zmq.UNSUBSCRIBE, - topic(GPS_POSITIONING.PROTO, True, imei), + topic(proto_name(GPS_POSITIONING), True, imei), ) zsub.setsockopt( zmq.UNSUBSCRIBE, - topic(WIFI_POSITIONING.PROTO, False, imei), + topic(proto_name(WIFI_POSITIONING), False, imei), ) zsub.setsockopt( zmq.UNSUBSCRIBE, - topic(STATUS.PROTO, True, imei), + topic(proto_name(STATUS), True, imei), ) activesubs = neededsubs log.debug("Subscribed to: %s", activesubs)