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

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

Issue 12733012: Provision Android devices after the 'device_status_check' step. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove process detachment Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
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
5 # found in the LICENSE file.
6
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.
9 """
10
11 import os
12 import sys
13 import time
14
15 from pylib import android_commands
16
17 PULSE_PERIOD = 20
navabi 2013/03/27 19:53:32 I thought the heartbeat was every 1 min, and the c
Siva Chandra 2013/03/27 20:45:14 I think the host should say 'I can see you' at a m
18
19 def main():
20 while True:
21 devices = android_commands.GetAttachedDevices()
22 for device in devices:
23 android_cmd = android_commands.AndroidCommands(device)
24 android_cmd.EnableAdbRoot()
25 android_cmd.RunShellCommand('touch /sdcard/host_heartbeat')
26 time.sleep(PULSE_PERIOD)
27
28
29 if __name__ == '__main__':
30 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698