blob: 898debae1dcde48c1ceb19c795b22791b277faeb [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import atexit
import json
import logging
import os
import os.path
import random
import subprocess
import sys
import threading
import time
import SimpleHTTPServer
import SocketServer
from mopy.config import Config
from mopy.paths import Paths
sys.path.insert(0, os.path.join(Paths().src_root, 'build', 'android'))
# Tags used by the mojo shell application logs.
LOGCAT_TAGS = [
'AndroidHandler',
'MojoFileHelper',
'MojoMain',
'MojoShellActivity',
'MojoShellApplication',
'chromium',
]
ADB_PATH = os.path.join(Paths().src_root, 'third_party', 'android_tools', 'sdk',
'platform-tools', 'adb')
MOJO_SHELL_PACKAGE_NAME = 'org.chromium.mojo.shell'
class _SilentTCPServer(SocketServer.TCPServer):
"""
A TCPServer that won't display any error, unless debugging is enabled. This is
useful because the client might stop while it is fetching an URL, which causes
spurious error messages.
"""
def handle_error(self, request, client_address):
"""
Override the base class method to have conditional logging.
"""
if logging.getLogger().isEnabledFor(logging.DEBUG):
SocketServer.TCPServer.handle_error(self, request, client_address)
def _GetHandlerClassForPath(base_path):
class RequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
"""
Handler for SocketServer.TCPServer that will serve the files from
|base_path| directory over http.
"""
def translate_path(self, path):
path_from_current = (
SimpleHTTPServer.SimpleHTTPRequestHandler.translate_path(self, path))
return os.path.join(base_path, os.path.relpath(path_from_current))
def log_message(self, *_):
"""
Override the base class method to disable logging.
"""
pass
return RequestHandler
def _ExitIfNeeded(process):
"""
Exits |process| if it is still alive.
"""
if process.poll() is None:
process.kill()
def _ReadFifo(fifo_path, pipe, on_fifo_closed, max_attempts=5):
"""
Reads |fifo_path| on the device and write the contents to |pipe|. Calls
|on_fifo_closed| when the fifo is closed. This method will try to find the
path up to |max_attempts|, waiting 1 second between each attempt. If it cannot
find |fifo_path|, a exception will be raised.
"""
def Run():
def _WaitForFifo():
command = [ADB_PATH, 'shell', 'test -e "%s"; echo $?' % fifo_path]
for _ in xrange(max_attempts):
if subprocess.check_output(command)[0] == '0':
return
time.sleep(1)
if on_fifo_closed:
on_fifo_closed()
raise Exception("Unable to find fifo.")
_WaitForFifo()
stdout_cat = subprocess.Popen([ADB_PATH,
'shell',
'cat',
fifo_path],
stdout=pipe)
atexit.register(_ExitIfNeeded, stdout_cat)
stdout_cat.wait()
if on_fifo_closed:
on_fifo_closed()
thread = threading.Thread(target=Run, name="StdoutRedirector")
thread.start()
def _MapPort(device_port, host_port):
"""
Maps the device port to the host port. If |device_port| is 0, a random
available port is chosen. Returns the device port.
"""
def _FindAvailablePortOnDevice():
opened = subprocess.check_output([ADB_PATH, 'shell', 'netstat'])
opened = [int(x.strip().split()[3].split(':')[1])
for x in opened if x.startswith(' tcp')]
while True:
port = random.randint(4096, 16384)
if port not in opened:
return port
if device_port == 0:
device_port = _FindAvailablePortOnDevice()
subprocess.Popen([ADB_PATH,
"reverse",
"tcp:%d" % device_port,
"tcp:%d" % host_port]).wait()
def _UnmapPort():
subprocess.Popen([ADB_PATH, "reverse", "--remove", "tcp:%d" % device_port])
atexit.register(_UnmapPort)
return device_port
def PrepareShellRun(config):
"""
Prepares for StartShell. Returns an origin arg with the forwarded device port.
Start an internal http server to serve mojo applications, forward a local port
on the device to this http server, and install the latest mojo shell version.
"""
build_dir = Paths(config).build_dir
httpd = _SilentTCPServer(('127.0.0.1', 0), _GetHandlerClassForPath(build_dir))
atexit.register(httpd.shutdown)
http_thread = threading.Thread(target=httpd.serve_forever)
http_thread.daemon = True
http_thread.start()
subprocess.check_call([ADB_PATH, 'root'])
apk_path = os.path.join(build_dir, 'apks', 'MojoShell.apk')
subprocess.check_call(
[ADB_PATH, 'install', '-r', apk_path, '-i', MOJO_SHELL_PACKAGE_NAME])
atexit.register(StopShell)
return '--origin=http://127.0.0.1:%d/' % _MapPort(0, httpd.server_address[1])
def StartShell(arguments, stdout=None, on_application_stop=None):
"""
Starts the mojo shell, passing it the given arguments.
The |arguments| list must contain the "--origin=" arg from PrepareShellRun.
If |stdout| is not None, it should be a valid argument for subprocess.Popen.
"""
STDOUT_PIPE = "/data/data/%s/stdout.fifo" % MOJO_SHELL_PACKAGE_NAME
cmd = [ADB_PATH,
'shell',
'am',
'start',
'-W',
'-S',
'-a', 'android.intent.action.VIEW',
'-n', '%s/.MojoShellActivity' % MOJO_SHELL_PACKAGE_NAME]
parameters = []
if stdout or on_application_stop:
subprocess.check_call([ADB_PATH, 'shell', 'rm', STDOUT_PIPE])
parameters.append('--fifo-path=%s' % STDOUT_PIPE)
_ReadFifo(STDOUT_PIPE, stdout, on_application_stop)
assert any("--origin=http://127.0.0.1:" in arg for arg in arguments)
parameters += arguments
if parameters:
encodedParameters = json.dumps(parameters)
cmd += [ '--es', 'encodedParameters', encodedParameters]
with open(os.devnull, 'w') as devnull:
subprocess.Popen(cmd, stdout=devnull).wait()
def StopShell():
"""
Stops the mojo shell.
"""
subprocess.check_call(
[ADB_PATH, 'shell', 'am', 'force-stop', MOJO_SHELL_PACKAGE_NAME])
def CleanLogs():
"""
Cleans the logs on the device.
"""
subprocess.check_call([ADB_PATH, 'logcat', '-c'])
def ShowLogs():
"""
Displays the log for the mojo shell.
Returns the process responsible for reading the logs.
"""
logcat = subprocess.Popen([ADB_PATH,
'logcat',
'-s',
' '.join(LOGCAT_TAGS)],
stdout=sys.stdout)
atexit.register(_ExitIfNeeded, logcat)
return logcat