forked from auto-pts/auto-pts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
autoptsserver.py
executable file
·357 lines (280 loc) · 11.5 KB
/
autoptsserver.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#
# auto-pts - The Bluetooth PTS Automation Framework
#
# Copyright (c) 2017, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of Intel Corporation nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
import argparse
import copy
import datetime
import os
import subprocess
import threading
import time
import traceback
from time import sleep
import pythoncom
import wmi
import sys
import logging
import xmlrpc.client
import xmlrpc.server
import winutils
import ptscontrol
from config import SERVER_PORT
from queue import Queue
log = logging.debug
class PyPTSWithXmlRpcCallback(ptscontrol.PyPTS):
"""A child class that adds support of xmlrpc PTS callbacks to PyPTS"""
def __init__(self):
"""Constructor"""
log("%s", self.__init__.__name__)
ptscontrol.PyPTS.__init__(self)
# address of the auto-pts client that started it's own xmlrpc server to
# receive callback messages
self.client_address = None
self.client_port = None
self.client_xmlrpc_proxy = None
def register_xmlrpc_ptscallback(self, client_address, client_port):
"""Registers client callback. xmlrpc proxy/client calls this method
to register its callback
client_address -- IP address
client_port -- TCP port
"""
log("%s %s %d", self.register_xmlrpc_ptscallback.__name__,
client_address, client_port)
self.client_address = client_address
self.client_port = client_port
self.client_xmlrpc_proxy = xmlrpc.client.ServerProxy(
"http://{}:{}/".format(self.client_address, self.client_port),
allow_none=True)
log("Created XMR RPC auto-pts client proxy, provides methods: %s" %
self.client_xmlrpc_proxy.system.listMethods())
self.register_ptscallback(self.client_xmlrpc_proxy)
def unregister_xmlrpc_ptscallback(self):
"""Unregisters the client callback"""
log("%s", self.unregister_xmlrpc_ptscallback.__name__)
self.unregister_ptscallback()
self.client_address = None
self.client_port = None
self.client_xmlrpc_proxy = None
class SvrArgumentParser(argparse.ArgumentParser):
def __init__(self, description):
argparse.ArgumentParser.__init__(self, description=description)
self.add_argument("-S", "--srv_port", type=int,
nargs="+", default=[SERVER_PORT],
help="Specify the server port number")
self.add_argument("--recovery", action='store_true', default=False,
help="Specify if autoptsserver should try to recover"
" itself after exception.")
self.add_argument("--superguard", default=0, type=float, metavar='MINUTES',
help="Specify amount of time in minutes, after which"
" super guard will blindly trigger recovery steps.")
self.add_argument("--ykush", nargs="+", default=[], metavar='YKUSH_PORT',
help="Specify ykush hub downstream port number, so "
"during recovery steps PTS dongle could be replugged.")
def check_args(self, args):
"""Sanity check command line arguments"""
for srv_port in args.srv_port:
if not 49152 <= srv_port <= 65535:
sys.exit("Invalid server port number=%s, expected range <49152,65535> " % (srv_port,))
if len(args.srv_port) == 1:
args.srv_port = args.srv_port[0]
args.superguard = 60 * args.superguard
def parse_args(self, args=None, namespace=None):
args = super().parse_args()
self.check_args(args)
return args
def kill_all_processes(name):
c = wmi.WMI()
for ps in c.Win32_Process(name=name):
try:
ps.Terminate()
log("%s process (PID %d) terminated successfully" % (name, ps.ProcessId))
except:
log("There is no %s process running with id: %d" % (name, ps.ProcessId))
def delete_workspaces():
def recursive(directory, depth):
depth -= 1
with os.scandir(directory) as it:
for file in it:
if file.is_dir() and depth > 0:
recursive(os.path.join(directory, file.name), depth)
elif file.name.startswith('temp_') and file.name.endswith('.pqw6'):
filepath = directory + os.sep + file.name
newfilepath = filepath + '.deleted_' + now + '.old'
os.rename(filepath, newfilepath)
depth = 4
now = datetime.datetime.now().strftime("%Y_%m_%d_%H_%M_%S")
recursive('workspaces', depth)
def recover_pts(ykush_ports=None):
print("Recovering PTS ...")
kill_all_processes("PTS.exe")
kill_all_processes("Fts.exe")
delete_workspaces()
if ykush_ports:
turn_on_dongle(ykush_ports)
def turn_on_dongle(ykush_ports):
ykushcmd = 'ykushcmd'
if sys.platform == "win32":
ykushcmd += '.exe'
for port in ykush_ports:
subprocess.Popen([ykushcmd, '-d', str(port)], stdout=subprocess.PIPE)
print('Repluging PTS dongle on ykush port', str(port))
time.sleep(5)
for port in ykush_ports:
subprocess.Popen([ykushcmd, '-u', str(port)], stdout=subprocess.PIPE)
time.sleep(2)
class SuperGuard(threading.Thread):
def __init__(self, timeout, queue):
threading.Thread.__init__(self, daemon=True)
self.servers = []
self.queue = queue
self.timeout = timeout
self.end = False
self.was_timeout = False
def run(self):
while not self.end:
idle_num = 0
for srv in self.servers:
if time.time() - srv.last_restart() > self.timeout:
idle_num += 1
if idle_num == len(self.servers) and idle_num != 0:
for srv in self.servers:
srv.terminate('Superguard timeout')
self.was_timeout = True
self.servers.clear()
sleep(5)
def clear(self):
self.servers.clear()
self.was_timeout = False
def add_server(self, server):
self.servers.append(server)
def terminate(self):
self.end = True
class Server(threading.Thread):
def __init__(self, args=None, queue=None):
threading.Thread.__init__(self, daemon=True)
self.queue = queue
self.server = None
self.args = args
self.pts = None
def last_restart(self):
if self.pts:
return self.pts.last_restart_time
return time.time()
def main(self, args):
"""Main."""
pythoncom.CoInitialize()
script_name = os.path.basename(sys.argv[0]) # in case it is full path
script_name_no_ext = os.path.splitext(script_name)[0]
log_filename = "%s_%s.log" % (script_name_no_ext, str(args.srv_port))
format = ("%(asctime)s %(name)s %(levelname)s : %(message)s")
logging.basicConfig(format=format,
filename=log_filename,
filemode='w',
level=logging.DEBUG)
c = wmi.WMI()
for iface in c.Win32_NetworkAdapterConfiguration(IPEnabled=True):
print("Local IP address: %s DNS %r" % (iface.IPAddress, iface.DNSDomain))
print("Starting PTS ...")
self.pts = PyPTSWithXmlRpcCallback()
print("OK")
print("Serving on port {} ...".format(args.srv_port))
self.server = xmlrpc.server.SimpleXMLRPCServer(("", args.srv_port), allow_none=True)
self.server.register_function(self.request_recovery, 'request_recovery')
self.server.register_instance(self.pts)
self.server.register_introspection_functions()
self.server.serve_forever()
self.server.server_close()
return 0
def run(self):
try:
self.main(self.args)
except Exception:
print('Server ', str(self.args.srv_port), ' finished')
self.terminate('from Server process on port ' +
str(self.args.srv_port) + ':\n' + traceback.format_exc())
def request_recovery(self):
self.terminate('Recovery request')
def terminate(self, msg):
try:
if self.server:
threading.Thread(target=self.server.shutdown, daemon=True).start()
except:
traceback.print_exc()
if self.queue:
self.queue.put(Exception(msg))
def multi_main(args, queue, superguard):
"""Multi server main."""
servers = []
for port in args.srv_port:
args_copy = copy.deepcopy(args)
args_copy.srv_port = port
srv = Server(args=args_copy, queue=queue)
servers.append(srv)
srv.start()
superguard.add_server(srv)
sleep(5)
while queue.empty():
for srv in servers:
if not srv.is_alive():
queue.put(Exception('Server is down'))
sleep(2) # This loop has a huge impact on the performance of server threads
[s.terminate('') for s in servers]
if __name__ == "__main__":
winutils.exit_if_admin()
args = SvrArgumentParser("PTS automation server").parse_args()
queue = Queue()
superguard = SuperGuard(float(args.superguard), queue)
if args.superguard:
superguard.start()
while True:
try:
if type(args.srv_port) is int:
server = Server(queue=queue)
superguard.add_server(server)
server.main(args) # Run server in main process
else:
multi_main(args, queue, superguard) # Run many servers in threads
exceptions = ''
while not queue.empty():
try:
exceptions += str(queue.get_nowait()) + '\n'
except:
traceback.print_exc()
if exceptions != '':
raise Exception(exceptions)
break
except KeyboardInterrupt: # Ctrl-C
os._exit(14)
except:
traceback.print_exc()
if args.recovery or superguard.was_timeout:
superguard.clear()
recover_pts(args.ykush)
else:
os._exit(16)