summaryrefslogtreecommitdiffstats
path: root/geoclue.py
blob: d2963975b136a14398db8b8c2dfbe8169dc87927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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))