blob: 282a616140f9f5a51bcd3feacb8ee8869a75f093 [file] [log] [blame]
# Copyright (c) 2014 The Chromium OS 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 os
import sys
from autotest_lib.client.bin import utils
from autotest_lib.client.cros import constants
from autotest_lib.server import autotest
class DisplayClient(object):
"""DisplayClient is a layer to control display logic over a remote DUT.
The Autotest host object representing the remote DUT, passed to this
class on initialization, can be accessed from its _client property.
"""
X_ENV_VARIABLES = 'DISPLAY=:0.0 XAUTHORITY=/home/chronos/.Xauthority'
XMLRPC_CONNECT_TIMEOUT = 30
def __init__(self, host):
"""Construct a DisplayClient.
@param host: Host object representing a remote host.
"""
self._client = host
self._display_xmlrpc_client = None
module_dir = os.path.dirname(sys.modules[__name__].__file__)
self._source_images_dir = os.path.join(module_dir, 'calibration_images')
self._dest_tmp_dir = '/tmp'
def initialize(self):
"""Initializes some required servers, like HTTP daemon, RPC connection.
"""
# Make sure the client library is on the device so that the proxy code
# is there when we try to call it.
client_at = autotest.Autotest(self._client)
client_at.install()
self.connect()
def connect(self):
"""Connects the XML-RPC proxy on the client."""
self._display_xmlrpc_client = self._client.xmlrpc_connect(
constants.DISPLAY_TESTING_XMLRPC_SERVER_COMMAND,
constants.DISPLAY_TESTING_XMLRPC_SERVER_PORT,
command_name=(
constants.DISPLAY_TESTING_XMLRPC_SERVER_CLEANUP_PATTERN
),
ready_test_name=(
constants.DISPLAY_TESTING_XMLRPC_SERVER_READY_METHOD),
timeout_seconds=self.XMLRPC_CONNECT_TIMEOUT)
def cleanup(self):
"""Cleans up."""
self._client.rpc_disconnect_all()
def __del__(self):
"""Destructor of DisplayClient."""
self.cleanup()
def get_connector_name(self):
"""Gets the name of the external output connector.
@return The external output connector name as a string.
"""
return self._display_xmlrpc_client.get_ext_connector_name()
def load_calibration_image(self, resolution):
"""Load a full screen calibration image from the HTTP server.
@param resolution: A tuple (width, height) of resolution.
"""
filename = '%dx%d.png' % resolution
image_path = os.path.join(self._source_images_dir, filename)
self._client.send_file(image_path, self._dest_tmp_dir)
page_url = ('file://%s/%s' % (self._dest_tmp_dir, filename))
self._display_xmlrpc_client.load_url(page_url)
def close_tab(self, index=-1):
"""Closes the tab of the given index.
@param index: The tab index to close. Defaults to the last tab.
"""
return self._display_xmlrpc_client.close_tab(index)
def set_mirrored(self, is_mirrored):
"""Sets mirrored mode.
@param is_mirrored: True or False to indicate mirrored state.
"""
return self._display_xmlrpc_client.set_mirrored(is_mirrored)
def suspend_resume(self, suspend_time=10):
"""Suspends the DUT for a given time in second.
@param suspend_time: Suspend time in second, default: 10s.
"""
# TODO(waihong): Use other general API instead of this RPC.
return self._display_xmlrpc_client.suspend_resume(suspend_time)
def suspend_resume_bg(self, suspend_time=10):
"""Suspends the DUT for a given time in second in the background.
@param suspend_time: Suspend time in second, default: 10s.
"""
# TODO(waihong): Use other general API instead of this RPC.
return self._display_xmlrpc_client.suspend_resume_bg(suspend_time)
def reconnect_output_and_wait(self):
"""Reconnects output and waits it available."""
output = self.get_connector_name()
self._display_xmlrpc_client.reconnect_output(output)
self._display_xmlrpc_client.wait_output_connected(output)
utils.wait_for_value(lambda: (
len(self._display_xmlrpc_client.get_display_info())),
expected_value=2)
def hide_cursor(self):
"""Hides mouse cursor by sending a keystroke."""
self._client.run('%s xdotool key Up' % self.X_ENV_VARIABLES)
def capture_external_screen(self, file_path):
"""Captures the external screen framebuffer.
@param file_path: The path of file for output.
@return: The byte-array for the screen.
"""
output = self.get_connector_name()
fb_w, fb_h, fb_x, fb_y = (
self._display_xmlrpc_client.get_resolution(output))
basename = os.path.basename(file_path)
remote_path = os.path.join('/tmp', basename)
command = ('%s import -window root -depth 8 -crop %dx%d+%d+%d %s' %
(self.X_ENV_VARIABLES, fb_w, fb_h, fb_x, fb_y, remote_path))
self._client.run(command)
self._client.get_file(remote_path, file_path)
return open(file_path).read()