普通文本  |  215行  |  6.25 KB

# !/usr/bin/python
# Copyright 2017 Google Inc. All Rights Reserved.
# Author: shanyu@google.com (Yu Shan)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Fastboot Interface Implementation using sh library."""
import os
import sys
import threading

import fastboot_exceptions
import sh


def _GetCurrentPath():
  if getattr(sys, 'frozen', False):
    # we are running in a bundle
    path = sys._MEIPASS  # pylint: disable=protected-access
  else:
    # we are running in a normal Python environment
    path = os.path.dirname(os.path.abspath(__file__))
  return path


class FastbootDevice(object):
  """An abstracted fastboot device object.

  Attributes:
    serial_number: The serial number of the fastboot device.
  """
  current_path = _GetCurrentPath()
  fastboot_command = sh.Command(os.path.join(current_path, 'fastboot'))
  HOST_OS = 'Linux'

  @staticmethod
  def ListDevices():
    """List all fastboot devices.

    Returns:
      A list of serial numbers for all the fastboot devices.
    """
    try:
      out = FastbootDevice.fastboot_command('devices')
      device_serial_numbers = out.replace('\tfastboot', '').rstrip().split('\n')
      # filter out empty string
      return filter(None, device_serial_numbers)
    except sh.ErrorReturnCode as e:
      raise fastboot_exceptions.FastbootFailure(e.stderr)

  def __init__(self, serial_number):
    """Initiate the fastboot device object.

    Args:
      serial_number: The serial number of the fastboot device.
    """
    self.serial_number = serial_number
    # Lock to make sure only one fastboot command can be issued to one device
    # at one time.
    self._lock = threading.Lock()

  def Reboot(self):
    """Reboot the device into fastboot mode.

    Returns:
      The command output.
    """
    try:
      self._lock.acquire()
      out = self.fastboot_command('-s', self.serial_number, 'reboot-bootloader')
      return out
    except sh.ErrorReturnCode as e:
      raise fastboot_exceptions.FastbootFailure(e.stderr)
    finally:
      self._lock.release()

  def Oem(self, oem_command, err_to_out):
    """Run an OEM command.

    Args:
      oem_command: The OEM command to run.
      err_to_out: Whether to redirect stderr to stdout.
    Returns:
      The result message for the OEM command.
    Raises:
      FastbootFailure: If failure happens during the command.
    """
    try:
      self._lock.acquire()
      out = self.fastboot_command(
          '-s', self.serial_number, 'oem', oem_command, _err_to_out=err_to_out)
      return out
    except sh.ErrorReturnCode as e:
      if err_to_out:
        err = e.stdout
      else:
        err = e.stderr
      raise fastboot_exceptions.FastbootFailure(err)
    finally:
      self._lock.release()

  def Flash(self, partition, file_path):
    """Flash a file to a partition.

    Args:
      file_path: The partition file to be flashed.
      partition: The partition to be flashed.
    Returns:
      The output for the fastboot command required.
    Raises:
      FastbootFailure: If failure happens during the command.
    """
    try:
      self._lock.acquire()
      out = self.fastboot_command(
          '-s', self.serial_number, 'flash', partition, file_path)
      return out
    except sh.ErrorReturnCode as e:
      raise fastboot_exceptions.FastbootFailure(e.stderr)
    finally:
      self._lock.release()

  def Upload(self, file_path):
    """Pulls a file from the fastboot device to the local file system.

    Args:
      file_path: The file path of the file system
        that the remote file would be pulled to.
    Returns:
      The output for the fastboot command required.
    Raises:
      FastbootFailure: If failure happens during the command.
    """
    try:
      self._lock.acquire()
      out = self.fastboot_command('-s', self.serial_number, 'get_staged',
                                  file_path)
      return out
    except sh.ErrorReturnCode as e:
      raise fastboot_exceptions.FastbootFailure(e.stderr)
    finally:
      self._lock.release()

  def Download(self, file_path):
    """Push a file from the file system to the fastboot device.

    Args:
      file_path: The file path of the file on the local file system
        that would be pushed to fastboot device.
    Returns:
      The output for the fastboot command required.
    Raises:
      FastbootFailure: If failure happens during the command.
    """
    try:
      self._lock.acquire()
      out = self.fastboot_command('-s', self.serial_number, 'stage', file_path)
      return out
    except sh.ErrorReturnCode as e:
      raise fastboot_exceptions.FastbootFailure(e.stderr)
    finally:
      self._lock.release()

  def GetVar(self, var):
    """Get a variable from the device.

    Note that the return value is in stderr instead of stdout.
    Args:
      var: The name of the variable.
    Returns:
      The value for the variable.
    Raises:
      FastbootFailure: If failure happens during the command.
    """
    try:
      self._lock.acquire()
      # Fastboot getvar command's output would be in stderr instead of stdout.
      # Need to redirect stderr to stdout.
      out = self.fastboot_command(
          '-s', self.serial_number, 'getvar', var, _err_to_out=True)
    except sh.ErrorReturnCode as e:
      # Since we redirected stderr, we should print stdout here.
      raise fastboot_exceptions.FastbootFailure(e.stdout)
    finally:
      self._lock.release()
    if var == 'at-vboot-state':
      # For the result of vboot-state, it does not follow the standard.
      return out
    lines = out.split('\n')
    for line in lines:
      if line.startswith(var + ': '):
        value = line.replace(var + ': ', '')
    return value

  @staticmethod
  def GetHostOs():
    return FastbootDevice.HOST_OS

  def Disconnect(self):
    """Disconnect from the fastboot device."""
    pass

  def __del__(self):
    self.Disconnect()