forked from openatx/atxserver2-android-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heartbeat.py
176 lines (147 loc) · 5.09 KB
/
heartbeat.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# coding: utf-8
#
# updated: 2019/03/13
# updated: 2019/04/11 codeskyblue: add owner
import json
import re
from collections import defaultdict
from logzero import logger
from tornado.ioloop import IOLoop
from tornado.queues import Queue
from tornado import websocket
from tornado import gen
from utils import update_recursive, current_ip
async def heartbeat_connect(
server_url: str,
self_url: str="",
secret: str="",
platform: str="android",
priority: int=2,
**kwargs):
addr = server_url.replace("http://", "").replace("/", "")
url = "ws://" + addr + "/websocket/heartbeat"
hbc = HeartbeatConnection(
url, secret, platform=platform, priority=priority, **kwargs)
hbc._provider_url = self_url
await hbc.open()
return hbc
class SafeWebSocket(websocket.WebSocketClientConnection):
async def write_message(self, message, binary=False):
if isinstance(message, dict):
message = json.dumps(message)
return await super().write_message(message)
class HeartbeatConnection(object):
"""
与atxserver2建立连接,汇报当前已经连接的设备
"""
def __init__(self,
url="ws://localhost:4000/websocket/heartbeat",
secret='',
platform='android',
priority=2,
owner=None):
self._server_ws_url = url
self._provider_url = None
self._name = "pyclient"
self._owner = owner
self._secret = secret
self._platform = platform
self._priority = priority
self._queue = Queue()
self._db = defaultdict(dict)
async def open(self):
self._ws = await self.connect()
IOLoop.current().spawn_callback(self._drain_ws_message)
IOLoop.current().spawn_callback(self._drain_queue)
async def _drain_queue(self):
"""
Logic:
- send message to server when server is alive
- update local db
"""
while True:
message = await self._queue.get()
if message is None:
logger.info("Resent messages: %s", self._db)
for _, v in self._db.items():
await self._ws.write_message(v)
continue
if 'udid' in message: # ping消息不包含在裡面
udid = message['udid']
update_recursive(self._db, {udid: message})
self._queue.task_done()
if self._ws:
try:
await self._ws.write_message(message)
logger.debug("websocket send: %s", message)
except TypeError as e:
logger.info("websocket write_message error: %s", e)
async def _drain_ws_message(self):
while True:
message = await self._ws.read_message()
logger.debug("WS read message: %s", message)
if message is None:
self._ws = None
logger.warning("WS closed")
self._ws = await self.connect()
await self._queue.put(None)
logger.info("WS receive message: %s", message)
async def connect(self):
"""
Returns:
tornado.WebSocketConnection
"""
cnt = 0
while True:
try:
ws = await self._connect()
cnt = 0
return ws
except Exception as e:
cnt = min(30, cnt + 1)
logger.warning("WS connect error: %s, reconnect after %ds", e,
cnt + 1)
await gen.sleep(cnt + 1)
async def _connect(self):
ws = await websocket.websocket_connect(self._server_ws_url)
ws.__class__ = SafeWebSocket
await ws.write_message({
"command": "handshake",
"name": self._name,
"owner": self._owner,
"secret": self._secret,
"url": self._provider_url,
"priority": self._priority, # the large the importanter
})
msg = await ws.read_message()
logger.info("WS receive: %s", msg)
return ws
async def device_update(self, data: dict):
"""
Args:
data (dict) should contains keys
- provider (dict: optional)
- coding (bool: optional)
- properties (dict: optional)
"""
data['command'] = 'update'
data['platform'] = self._platform
await self._queue.put(data)
async def ping(self):
await self._ws.write_message({"command": "ping"})
async def async_main():
hbc = await heartbeat_connect(
"ws://localhost:4000/websocket/heartbeat", "123456", platform='apple')
await hbc.device_update({
"udid": "kj3rklzvlkjsdfawefw",
"colding": False,
"provider": {
"wdaUrl":
"http://localhost:5600" # "http://"+current_ip()+":18000/127.0.0.1:8100"
}
})
while True:
await gen.sleep(5)
# await hbc.ping()
if __name__ == "__main__":
IOLoop.current().run_sync(async_main)