blob: de4b1bafae4e3170f1926d3c11c04e414270aeaa (
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
34
35
36
37
|
import asyncio
import os
import asyncssh
from asyncssh import SSHClientProcess
from aglbaseservice import AGLBaseService
from parse import *
import re
import argparse
class GPSService(AGLBaseService):
def __init__(self, ip, port=None):
super().__init__(api='gps', ip=ip, port=port, service='agl-service-gps')
async def location(self):
return await self.request('location', waitresponse=True)
async def subscribe(self, event='location'):
await super().subscribe(event=event)
async def unsubscribe(self, event='location'):
await super().subscribe(event=event)
async def main(loop):
addr = os.environ.get('AGL_TGT_IP', 'localhost')
port = os.environ.get('AGL_TGT_PORT', '30011')
jsonpayload = os.environ.get('AGL_TGT_JSON_PAYLOAD', None)
gpss = await GPSService(addr)
print(await gpss.location())
listener = loop.create_task(gpss.listener())
await listener
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
|