forked from auto-pts/auto-pts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoptsserver.py
executable file
·547 lines (432 loc) · 17.7 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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
#
# 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 logging
import os
import shutil
import subprocess
import sys
import threading
import time
import traceback
import xmlrpc.client
import xmlrpc.server
from os.path import dirname, abspath
from pathlib import Path
from time import sleep
import psutil
import pythoncom
import win32com
import win32com.client
import wmi
from autopts import winutils, ptscontrol
from autopts.config import SERVER_PORT
from autopts.utils import usb_power
log = logging.debug
PROJECT_DIR = dirname(abspath(__file__))
PTS_START_LOCK = threading.RLock()
autoptsservers = []
def server_start_lock_wrapper(func):
def _server_start_lock_wrapper(*args):
try:
PTS_START_LOCK.acquire()
ret = func(*args)
finally:
PTS_START_LOCK.release()
return ret
return _server_start_lock_wrapper
def count_script_instances():
script_name = 'autoptsserver.py'
count = 0
for proc in psutil.process_iter(['name', 'cmdline']):
if proc.info['name'].startswith('python') and script_name in ' '.join(proc.info['cmdline']):
count += 1
return count
class PyPTSWithXmlRpcCallback(ptscontrol.PyPTS):
"""A child class that adds support of xmlrpc PTS callbacks to PyPTS"""
def __init__(self, device):
"""Constructor"""
super().__init__(device)
log("%s", self.__init__.__name__)
# 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("--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.")
self.add_argument("--dongle", nargs="+", default=None,
help='Select the dongle port.'
'COMx in case of LE only dongle. '
r'For dual-mode dongle the port will have format'
r' like "USB:Free:5&A70BC4C&0&8 where"'
r'the last part 5&A70BC4C&0&8 can be found in'
r'"Device instance path" in device settings, e.g. '
r'"USB\VID_0A12&PID_0001\5&A70BC4C&0&8"')
@staticmethod
def check_args(arg):
"""Sanity check command line arguments"""
script_name = os.path.basename(sys.argv[0]) # in case it is full path
script_name_no_ext = os.path.splitext(script_name)[0]
tag = '_' + '_'.join(str(x) for x in list(arg.srv_port))
arg.log_filename = f'{script_name_no_ext}{tag}.log'
for srv_port in arg.srv_port:
if not 49152 <= srv_port <= 65535:
sys.exit("Invalid server port number=%s, expected range <49152,65535> " % (srv_port,))
if len(arg.srv_port) == 1:
arg.srv_port = arg.srv_port[0]
if arg.dongle:
arg.dongle = arg.dongle[0]
arg.superguard = 60 * arg.superguard
def parse_args(self, args=None, namespace=None):
arg = super().parse_args()
self.check_args(arg)
return arg
def get_workspace(workspace):
for root, dirs, files in os.walk(os.path.join(PROJECT_DIR, 'autopts/workspaces'),
topdown=True):
for name in dirs:
if name == workspace:
return os.path.join(root, name)
return None
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 BaseException as exc:
logging.exception(exc)
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 iterator:
for f in iterator:
if f.is_dir() and depth > 0:
recursive(f.path, depth)
elif f.name.startswith('temp_') and f.name.endswith('.pqw6'):
os.remove(f)
init_depth = 4
recursive(os.path.join(PROJECT_DIR, 'autopts/workspaces'), init_depth)
def power_dongle(ykush_port, on=True):
usb_power(ykush_port, on)
def dongle_exists(serial_address):
wmi = win32com.client.GetObject("winmgmts:")
if 'USB' in serial_address: # USB:InUse:X&XXXXXXXX&X&X
serial_address = serial_address.split(r':')[2]
usbs = wmi.InstancesOf("Win32_USBHub")
else: # COMX
usbs = wmi.InstancesOf("Win32_SerialPort")
for usb in usbs:
if serial_address in usb.DeviceID:
return True
return False
class SuperGuard(threading.Thread):
def __init__(self, timeout):
threading.Thread.__init__(self, daemon=True)
self.servers = []
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_start() > self.timeout:
idle_num += 1
if idle_num == len(self.servers) and idle_num != 0:
log('Superguard timeout, recovering')
for srv in self.servers:
srv.request_server_recovery()
self.was_timeout = True
sleep(5)
def clear(self):
self.servers.clear()
self.was_timeout = False
def add_server(self, srv):
self.servers.append(srv)
def terminate(self):
self.end = True
class Server(threading.Thread):
def __init__(self, _args=None):
threading.Thread.__init__(self, daemon=True)
self.server = None
self._args = _args
self.pts = None
self._device = self._args.dongle
self.end = False
self.finished = threading.Event()
self.server_recovery_request = False
self.pts_recovery_request = False
self.name = 'S-' + str(self._args.srv_port)
self.is_ready = False
if self._args.ykush and type(self._args.ykush) is list:
self._args.ykush = ' '.join(self._args.ykush)
def last_start(self):
try:
return self.pts.last_start_time
except:
return time.time()
def main(self, _args):
"""Main."""
pythoncom.CoInitialize()
c = wmi.WMI()
for iface in c.Win32_NetworkAdapterConfiguration(IPEnabled=True):
print("Local IP address: %s DNS %r" % (iface.IPAddress, iface.DNSDomain))
while not self.end:
try:
self.server_recovery_request = False
self.server_init()
self.is_ready = True
while not self.end and not self.server_recovery_request:
self.server.handle_request()
if self.pts_recovery_request:
log('PTS recovery requested by client')
self._init_pts()
self.pts_recovery_request = False
self.is_ready = True
if self.server_recovery_request:
log('Server recovery requested by client')
except KeyboardInterrupt:
# Ctrl-C termination for single instance mode
break
except BaseException as e:
logging.exception(e)
self._cleanup_pts()
self.is_ready = False
self._cleanup_pts()
self.finished.set()
return 0
def _cleanup_pts(self):
if self.pts:
self.pts.stop_pts()
self.pts.delete_temp_workspace()
del self.pts
self.pts = None
def _init_pts(self):
self._cleanup_pts()
if self._args.ykush:
log(f'Replugging device ({self._device}) under ykush:{self._args.ykush}')
if self._device:
while dongle_exists(self._device):
power_dongle(self._args.ykush, False)
while not dongle_exists(self._device):
power_dongle(self._args.ykush, True)
else:
# Cases where ykush was down or the dongle was
# not enumerated for any other reason.
power_dongle(self._args.ykush, False)
sleep(3)
power_dongle(self._args.ykush, True)
print("Starting PTS ...")
self.pts = PyPTSWithXmlRpcCallback(self._device)
if self.pts._device:
self._device = self.pts._device
self.server.register_instance(self.pts)
print("OK")
@server_start_lock_wrapper
def server_init(self):
if self.server:
self.server.server_close()
del self.server
self.server = None
print("Serving on port {} ...".format(self._args.srv_port))
self.server = xmlrpc.server.SimpleXMLRPCServer(("", self._args.srv_port), allow_none=True)
self.server.register_function(self.request_pts_recovery, 'request_pts_recovery')
self.server.register_function(self.list_workspace_tree, 'list_workspace_tree')
self.server.register_function(self.copy_file, 'copy_file')
self.server.register_function(self.delete_file, 'delete_file')
self.server.register_function(self.ready, 'ready')
self.server.register_function(self.get_system_model, 'get_system_model')
self.server.register_function(self.shutdown_pts_bpv, 'shutdown_pts_bpv')
self.server.register_function(self.get_path, 'get_path')
self.server.register_instance(self.pts)
self.server.register_introspection_functions()
self.server.timeout = 1.0
while True:
try:
self._init_pts()
break
except Exception as e:
logging.exception(e)
# Kill all stale PTS.exe processes only if this is
# the only running instance of autoptsserver.py
if count_script_instances() == 1:
kill_all_processes('PTS.exe')
def run(self):
try:
self.main(self._args)
except Exception as exc:
logging.exception(exc)
finally:
self.end = True
self.finished.set()
log(f'Server {str(self._args.srv_port)} finished')
def request_server_recovery(self):
self.is_ready = False
self.server_recovery_request = True
def request_pts_recovery(self):
self.is_ready = False
self.pts_recovery_request = True
def terminate(self):
self.is_ready = False
self.end = True
def ready(self):
return self.is_ready
def get_system_model(self):
proc = subprocess.Popen(['systeminfo'],
shell=False,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
stdout, stderr = proc.communicate()
if stdout:
info = stdout.splitlines()
for line in info:
line = line.decode('utf-8')
if 'System Model' in line:
for platform in ['VirtualBox', 'VMware']:
if platform in line:
return platform
return 'Real HW'
return 'Unknown'
def get_path(self):
return os.path.dirname(os.path.realpath(__file__))
def list_workspace_tree(self, workspace_dir):
if Path(workspace_dir).is_absolute():
logs_root = workspace_dir
else:
logs_root = get_workspace(workspace_dir)
file_list = []
for root, dirs, files in os.walk(logs_root,
topdown=False):
for name in files:
file_list.append(os.path.join(root, name))
file_list.append(root)
return file_list
def copy_file(self, file_path):
file_bin = None
if os.path.isfile(file_path):
with open(file_path, 'rb') as handle:
file_bin = xmlrpc.client.Binary(handle.read())
return file_bin
def delete_file(self, file_path):
if os.path.isfile(file_path):
os.remove(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path, ignore_errors=True)
def shutdown_pts_bpv(self):
kill_all_processes('PTS.exe')
kill_all_processes('Fts.exe')
def multi_main(_args, _superguard):
"""Multi server main."""
for i in range(len(_args.srv_port)):
args_copy = copy.deepcopy(_args)
args_copy.srv_port = _args.srv_port[i]
args_copy.ykush = _args.ykush[i] if _args.ykush else None
args_copy.dongle = _args.dongle[i] if _args.dongle else None
srv = Server(_args=args_copy)
autoptsservers.append(srv)
srv.start()
superguard.add_server(srv)
all_alive = True
while all_alive:
for s in autoptsservers:
if not s.is_alive():
all_alive = False
sleep(5)
if __name__ == "__main__":
winutils.exit_if_admin()
_args = SvrArgumentParser("PTS automation server").parse_args()
format_template = '%(threadName)s %(asctime)s %(name)s %(levelname)s : %(message)s'
logging.basicConfig(format=format_template,
filename=_args.log_filename,
filemode='w',
level=logging.DEBUG)
superguard = SuperGuard(float(_args.superguard))
if _args.superguard:
superguard.start()
if _args.ykush:
for port in _args.ykush:
power_dongle(port, False)
try:
if isinstance(_args.srv_port, int):
server = Server(_args)
autoptsservers.append(server)
superguard.add_server(server)
server.main(_args) # Run server in main process
else:
multi_main(_args, superguard) # Run many servers in threads
except KeyboardInterrupt: # Ctrl-C
# Termination for multi instance mode
# because the threads does not receive a signal from Ctrl-C
for s in autoptsservers:
s.terminate()
# Wait till PTS.exe shutdown.
for s in autoptsservers:
s.finished.wait()
except Exception as e:
logging.exception(e)
traceback.print_exc()
sys.exit(16)