Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: build/android/host_heartbeat.py

Issue 1088793002: [Android] Remove android_commands uses from build/android/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: docstrings for device_filter.py Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/enable_asserts.py ('k') | build/android/provision_devices.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_filter
16 from pylib.device import device_utils 17 from pylib.device import device_utils
17 18
18 PULSE_PERIOD = 20 19 PULSE_PERIOD = 20
19 20
20 def main(): 21 def main():
21 while True: 22 while True:
22 try: 23 try:
23 devices = android_commands.GetAttachedDevices() 24 devices = adb_wrapper.AdbWrapper.Devices(
24 for device_serial in devices: 25 filters=device_filter.DefaultFilters())
25 device_utils.DeviceUtils(device_serial).RunShellCommand( 26 for d in devices:
26 'touch /sdcard/host_heartbeat') 27 device_utils.DeviceUtils(d).RunShellCommand(
28 ['touch', '/sdcard/host_heartbeat'], check_return=True)
27 except: 29 except:
28 # Keep the heatbeat running bypassing all errors. 30 # Keep the heatbeat running bypassing all errors.
29 pass 31 pass
30 time.sleep(PULSE_PERIOD) 32 time.sleep(PULSE_PERIOD)
31 33
32 34
33 if __name__ == '__main__': 35 if __name__ == '__main__':
34 sys.exit(main()) 36 sys.exit(main())
OLDNEW
« no previous file with comments | « build/android/enable_asserts.py ('k') | build/android/provision_devices.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698