OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 """Sends a heart beat pulse to the currently online Android devices. | 7 """Sends a heart beat pulse to the currently online Android devices. |
8 This heart beat lets the devices know that they are connected to a host. | 8 This heart beat lets the devices know that they are connected to a host. |
9 """ | 9 """ |
10 # pylint: disable=W0702 | 10 # pylint: disable=W0702 |
11 | 11 |
12 import sys | 12 import sys |
13 import time | 13 import time |
14 | 14 |
15 from pylib import android_commands | 15 from pylib.device import adb_wrapper |
16 from pylib.device import device_utils | 16 from pylib.device import device_utils |
17 | 17 |
18 PULSE_PERIOD = 20 | 18 PULSE_PERIOD = 20 |
19 | 19 |
20 def main(): | 20 def main(): |
21 while True: | 21 while True: |
22 try: | 22 try: |
23 devices = android_commands.GetAttachedDevices() | 23 devices = adb_wrapper.AdbWrapper.GetDevices() |
24 for device_serial in devices: | 24 for d in devices: |
25 device_utils.DeviceUtils(device_serial).RunShellCommand( | 25 device_utils.DeviceUtils(d).RunShellCommand( |
26 'touch /sdcard/host_heartbeat') | 26 'touch /sdcard/host_heartbeat') |
perezju
2015/04/14 12:39:10
pass command as list, and check_return=True?
jbudorick
2015/04/14 15:29:58
same, done.
| |
27 except: | 27 except: |
28 # Keep the heatbeat running bypassing all errors. | 28 # Keep the heatbeat running bypassing all errors. |
29 pass | 29 pass |
30 time.sleep(PULSE_PERIOD) | 30 time.sleep(PULSE_PERIOD) |
31 | 31 |
32 | 32 |
33 if __name__ == '__main__': | 33 if __name__ == '__main__': |
34 sys.exit(main()) | 34 sys.exit(main()) |
OLD | NEW |