diff options
author | Edi Feschiyan <edi.feschiyan@konsulko.com> | 2020-03-09 15:28:38 +0200 |
---|---|---|
committer | Edi Feschiyan <edi.feschiyan@konsulko.com> | 2020-03-09 15:43:47 +0200 |
commit | 5ef7f0b592e609775352ad41c3fd656b10f86d24 (patch) | |
tree | cdbfb68c494b1f9e1d48930ec0523e067e0ad089 | |
parent | da9b205f77f0e88ca808bbbf2bbd95d661f29ac4 (diff) |
Writing abstract class, adding geoclue
-rw-r--r-- | aglbaseservice.py (renamed from abstractaglbaseservice.py) | 48 | ||||
-rw-r--r-- | geoclue.py | 33 |
2 files changed, 70 insertions, 11 deletions
diff --git a/abstractaglbaseservice.py b/aglbaseservice.py index d229cc0..3c5f907 100644 --- a/abstractaglbaseservice.py +++ b/aglbaseservice.py @@ -9,9 +9,6 @@ from websockets import connect from os import environ from argparse import ArgumentParser -import abc -import inspect -# https://stackoverflow.com/questions/47555934/how-require-that-an-abstract-method-is-a-coroutine IPADDR = '127.0.0.1' PORT = '30000' @@ -34,7 +31,22 @@ def addresponse(msgid, msg): if msgid in msgq.keys(): msgq[msgid]['response'] = msg -class AbstractAGLBaseService: +class AGLBaseService: + api = None + url = None + ip = None + port = None + token = None + uuid = None + + def __init__(self, api, ip, port, url=None, token='HELLO', uuid='magic'): + self.api = api + self.url = url + self.ip = ip + self.port = port + self.token = token + self.uuid = uuid + def __await__(self): return self._async_init().__await__() @@ -42,7 +54,10 @@ class AbstractAGLBaseService: return self._async_init() async def _async_init(self): - self._conn = connect(close_timeout=0, uri=URL, subprotocols=['x-afb-ws-json1']) + # setting ping_interval to None because AFB does not support websocket ping + # if set to !None, the library will close the socket after the default timeout + URL = f'ws://{self.ip}:{self.port}/api?token={self.token}&uuid={self.uuid}' + self._conn = connect(close_timeout=0, uri=URL, subprotocols=['x-afb-ws-json1'], ping_interval=None) self.websocket = await self._conn.__aenter__() return self @@ -62,20 +77,31 @@ class AbstractAGLBaseService: try: while True: msg = await self.receive() - print(f"received {msg}") + print(f"Received {msg}") try: data = json.loads(msg) - if isinstance(data,list): + if isinstance(data, list): if data[0] == AFBT.RESPONSE and str.isnumeric(data[1]): msgid = int(data[1]) if msgid in msgq: addresponse(msgid, data) - except JSONDecodeError: - print("not decoding a non-json message") + print("Not decoding a non-json message") except KeyboardInterrupt: - pass + print("Received keyboard interrupt, exiting") except asyncio.CancelledError: - print("websocket listener coroutine stopped") + print("Websocket listener coroutine stopped") + + async def subscribe(self, event): + msgid = randint(0, 999999) + msg = f'["{AFBT.REQUEST}","{msgid}","{self.api}/subscribe",{{"value": "{event}"}}]' + await self.send(msg) + + async def unsubscribe(self, event): + verb = 'unsubscribe' + msgid = randint(0, 999999) + msg = f'[2,"{msgid}","{self.api}/{verb}",{{"value": "{event}"}}]' + addrequest(msgid, msg) + await self.send(msg) diff --git a/geoclue.py b/geoclue.py new file mode 100644 index 0000000..d296397 --- /dev/null +++ b/geoclue.py @@ -0,0 +1,33 @@ +import asyncio +from random import randint +from aglbaseservice import AGLBaseService, AFBT + + +class GeoClueService(AGLBaseService): + def __init__(self): + super().__init__(api='geoclue', ip='192.168.234.202', port='30009') + + async def location(self): + verb = 'location' + msgid = randint(0, 999999) + + await self.send(f'[2,"{msgid}","{self.api}/{verb}",""]') + return await self.receive() + + async def subscribe(self, event='location'): + super().subscribe(event=event) + + async def unsubscribe(self, event='location'): + super().unsubscribe(event=event) + + +async def main(loop): + GCS = await GeoClueService() + print(await GCS.location()) + listener = loop.create_task(GCS.listener()) + await listener + + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(main(loop)) |