All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.android.ddmlib.IDevice Maven / Gradle / Ivy

There is a newer version: 25.3.0
Show newest version
/*
 * Copyright (C) 2008 The Android Open Source Project
 *
 * 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.
 */

package com.android.ddmlib;

import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.ddmlib.log.LogReceiver;
import com.android.sdklib.AndroidVersion;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

/**
 *  A Device. It can be a physical device or an emulator.
 */
public interface IDevice extends IShellEnabledDevice {

    String PROP_BUILD_VERSION = "ro.build.version.release";
    String PROP_BUILD_API_LEVEL = "ro.build.version.sdk";
    String PROP_BUILD_CODENAME = "ro.build.version.codename";
    String PROP_BUILD_TAGS = "ro.build.tags";
    String PROP_BUILD_TYPE = "ro.build.type";
    String PROP_DEVICE_MODEL = "ro.product.model";
    String PROP_DEVICE_MANUFACTURER = "ro.product.manufacturer";
    String PROP_DEVICE_CPU_ABI_LIST = "ro.product.cpu.abilist";
    String PROP_DEVICE_CPU_ABI = "ro.product.cpu.abi";
    String PROP_DEVICE_CPU_ABI2 = "ro.product.cpu.abi2";
    String PROP_BUILD_CHARACTERISTICS = "ro.build.characteristics";
    String PROP_DEVICE_DENSITY = "ro.sf.lcd_density";
    String PROP_DEVICE_EMULATOR_DENSITY = "qemu.sf.lcd_density";
    String PROP_DEVICE_LANGUAGE = "persist.sys.language";
    String PROP_DEVICE_REGION = "persist.sys.country";

    String PROP_DEBUGGABLE = "ro.debuggable";

    /** Serial number of the first connected emulator. */
    String FIRST_EMULATOR_SN = "emulator-5554"; //$NON-NLS-1$
    /** Device change bit mask: {@link DeviceState} change. */
    int CHANGE_STATE = 0x0001;
    /** Device change bit mask: {@link Client} list change. */
    int CHANGE_CLIENT_LIST = 0x0002;
    /** Device change bit mask: build info change. */
    int CHANGE_BUILD_INFO = 0x0004;

    /** Device level software features. */
    enum Feature {
        SCREEN_RECORD,      // screen recorder available?
        PROCSTATS,          // procstats service (dumpsys procstats) available
    }

    /** Device level hardware features. */
    enum HardwareFeature {
        WATCH("watch"),
        TV("tv");

        private final String mCharacteristic;

        HardwareFeature(String characteristic) {
            mCharacteristic = characteristic;
        }

        public String getCharacteristic() {
            return mCharacteristic;
        }
    }

    /** @deprecated Use {@link #PROP_BUILD_API_LEVEL}. */
    @Deprecated
    String PROP_BUILD_VERSION_NUMBER = PROP_BUILD_API_LEVEL;

    String MNT_EXTERNAL_STORAGE = "EXTERNAL_STORAGE"; //$NON-NLS-1$
    String MNT_ROOT = "ANDROID_ROOT"; //$NON-NLS-1$
    String MNT_DATA = "ANDROID_DATA"; //$NON-NLS-1$

    /**
     * The state of a device.
     */
    enum DeviceState {
        BOOTLOADER("bootloader"), //$NON-NLS-1$
        OFFLINE("offline"), //$NON-NLS-1$
        ONLINE("device"), //$NON-NLS-1$
        RECOVERY("recovery"), //$NON-NLS-1$
        /** Device is in "sideload" state either through `adb sideload` or recovery menu */
        SIDELOAD("sideload"), //$NON-NLS-1$
        UNAUTHORIZED("unauthorized"), //$NON-NLS-1$
        DISCONNECTED("disconnected"), //$NON-NLS-1$
        ;

        private String mState;

        DeviceState(String state) {
            mState = state;
        }

        /**
         * Returns a {@link DeviceState} from the string returned by adb devices.
         *
         * @param state the device state.
         * @return a {@link DeviceState} object or null if the state is unknown.
         */
        @Nullable
        public static DeviceState getState(String state) {
            for (DeviceState deviceState : values()) {
                if (deviceState.mState.equals(state)) {
                    return deviceState;
                }
            }
            return null;
        }
    }

    /**
     * Namespace of a Unix Domain Socket created on the device.
     */
    enum DeviceUnixSocketNamespace {
        ABSTRACT("localabstract"),      //$NON-NLS-1$
        FILESYSTEM("localfilesystem"),  //$NON-NLS-1$
        RESERVED("localreserved");      //$NON-NLS-1$

        private String mType;

        DeviceUnixSocketNamespace(String type) {
            mType = type;
        }

        String getType() {
            return mType;
        }
    }

    /** Returns the serial number of the device. */
    @NonNull
    String getSerialNumber();

    /**
     * Returns the name of the AVD the emulator is running.
     * 

This is only valid if {@link #isEmulator()} returns true. *

If the emulator is not running any AVD (for instance it's running from an Android source * tree build), this method will return "<build>". * * @return the name of the AVD or null if there isn't any. */ @Nullable String getAvdName(); /** * Returns the state of the device. */ DeviceState getState(); /** * Returns the cached device properties. It contains the whole output of 'getprop' * * @deprecated use {@link #getSystemProperty(String)} instead */ @Deprecated Map getProperties(); /** * Returns the number of property for this device. * * @deprecated implementation detail */ @Deprecated int getPropertyCount(); /** * Convenience method that attempts to retrieve a property via * {@link #getSystemProperty(String)} with a very short wait time, and swallows exceptions. * *

Note: Prefer using {@link #getSystemProperty(String)} if you want control over the * timeout. * * @param name the name of the value to return. * @return the value or null if the property value was not immediately available */ @Nullable String getProperty(@NonNull String name); /** * Returns true if properties have been cached */ boolean arePropertiesSet(); /** * A variant of {@link #getProperty(String)} that will attempt to retrieve the given * property from device directly, without using cache. * This method should (only) be used for any volatile properties. * * @param name the name of the value to return. * @return the value or null if the property does not exist * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws ShellCommandUnresponsiveException in case the shell command doesn't send output for a * given time. * @throws IOException in case of I/O error on the connection. * @deprecated use {@link #getSystemProperty(String)} */ @Deprecated String getPropertySync(String name) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, IOException; /** * A combination of {@link #getProperty(String)} and {@link #getPropertySync(String)} that * will attempt to retrieve the property from cache. If not found, will synchronously * attempt to query device directly and repopulate the cache if successful. * * @param name the name of the value to return. * @return the value or null if the property does not exist * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws ShellCommandUnresponsiveException in case the shell command doesn't send output for a * given time. * @throws IOException in case of I/O error on the connection. * @deprecated use {@link #getSystemProperty(String)} instead */ @Deprecated String getPropertyCacheOrSync(String name) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, IOException; /** Returns whether this device supports the given software feature. */ boolean supportsFeature(@NonNull Feature feature); /** Returns whether this device supports the given hardware feature. */ boolean supportsFeature(@NonNull HardwareFeature feature); /** * Returns a mount point. * * @param name the name of the mount point to return * * @see #MNT_EXTERNAL_STORAGE * @see #MNT_ROOT * @see #MNT_DATA */ @Nullable String getMountPoint(@NonNull String name); /** * Returns if the device is ready. * * @return true if {@link #getState()} returns {@link DeviceState#ONLINE}. */ boolean isOnline(); /** * Returns true if the device is an emulator. */ boolean isEmulator(); /** * Returns if the device is offline. * * @return true if {@link #getState()} returns {@link DeviceState#OFFLINE}. */ boolean isOffline(); /** * Returns if the device is in bootloader mode. * * @return true if {@link #getState()} returns {@link DeviceState#BOOTLOADER}. */ boolean isBootLoader(); /** * Returns whether the {@link Device} has {@link Client}s. */ boolean hasClients(); /** * Returns the array of clients. */ Client[] getClients(); /** * Returns a {@link Client} by its application name. * * @param applicationName the name of the application * @return the Client object or null if no match was found. */ Client getClient(String applicationName); /** * Returns a {@link SyncService} object to push / pull files to and from the device. * * @return null if the SyncService couldn't be created. This can happen if adb * refuse to open the connection because the {@link IDevice} is invalid * (or got disconnected). * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException if the connection with adb failed. */ SyncService getSyncService() throws TimeoutException, AdbCommandRejectedException, IOException; /** * Returns a {@link FileListingService} for this device. */ FileListingService getFileListingService(); /** * Takes a screen shot of the device and returns it as a {@link RawImage}. * * @return the screenshot as a RawImage or null if something * went wrong. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ RawImage getScreenshot() throws TimeoutException, AdbCommandRejectedException, IOException; RawImage getScreenshot(long timeout, TimeUnit unit) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Initiates screen recording on the device if the device supports {@link Feature#SCREEN_RECORD}. */ void startScreenRecorder(@NonNull String remoteFilePath, @NonNull ScreenRecorderOptions options, @NonNull IShellOutputReceiver receiver) throws TimeoutException, AdbCommandRejectedException, IOException, ShellCommandUnresponsiveException; /** * @deprecated Use {@link #executeShellCommand(String, IShellOutputReceiver, long, java.util.concurrent.TimeUnit)}. */ @Deprecated void executeShellCommand(String command, IShellOutputReceiver receiver, int maxTimeToOutputResponse) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, IOException; /** * Executes a shell command on the device, and sends the result to a receiver *

This is similar to calling * executeShellCommand(command, receiver, DdmPreferences.getTimeOut()). * * @param command the shell command to execute * @param receiver the {@link IShellOutputReceiver} that will receives the output of the shell * command * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws ShellCommandUnresponsiveException in case the shell command doesn't send output * for a given time. * @throws IOException in case of I/O error on the connection. * * @see #executeShellCommand(String, IShellOutputReceiver, int) * @see DdmPreferences#getTimeOut() */ void executeShellCommand(String command, IShellOutputReceiver receiver) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, IOException; /** * Runs the event log service and outputs the event log to the {@link LogReceiver}. *

This call is blocking until {@link LogReceiver#isCancelled()} returns true. * @param receiver the receiver to receive the event log entries. * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the * timeout happens during setup. Once logs start being received, no timeout will occur as it's * not possible to detect a difference between no log and timeout. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void runEventLogService(LogReceiver receiver) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Runs the log service for the given log and outputs the log to the {@link LogReceiver}. *

This call is blocking until {@link LogReceiver#isCancelled()} returns true. * * @param logname the logname of the log to read from. * @param receiver the receiver to receive the event log entries. * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the * timeout happens during setup. Once logs start being received, no timeout will * occur as it's not possible to detect a difference between no log and timeout. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void runLogService(String logname, LogReceiver receiver) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Creates a port forwarding between a local and a remote port. * * @param localPort the local port to forward * @param remotePort the remote port. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void createForward(int localPort, int remotePort) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Creates a port forwarding between a local TCP port and a remote Unix Domain Socket. * * @param localPort the local port to forward * @param remoteSocketName name of the unix domain socket created on the device * @param namespace namespace in which the unix domain socket was created * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void createForward(int localPort, String remoteSocketName, DeviceUnixSocketNamespace namespace) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Removes a port forwarding between a local and a remote port. * * @param localPort the local port to forward * @param remotePort the remote port. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void removeForward(int localPort, int remotePort) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Removes an existing port forwarding between a local and a remote port. * * @param localPort the local port to forward * @param remoteSocketName the remote unix domain socket name. * @param namespace namespace in which the unix domain socket was created * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. */ void removeForward(int localPort, String remoteSocketName, DeviceUnixSocketNamespace namespace) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Returns the name of the client by pid or null if pid is unknown * @param pid the pid of the client. */ String getClientName(int pid); /** * Push a single file. * @param local the local filepath. * @param remote The remote filepath. * * @throws IOException in case of I/O error on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws TimeoutException in case of a timeout reading responses from the device. * @throws SyncException if file could not be pushed */ void pushFile(String local, String remote) throws IOException, AdbCommandRejectedException, TimeoutException, SyncException; /** * Pulls a single file. * * @param remote the full path to the remote file * @param local The local destination. * * @throws IOException in case of an IO exception. * @throws AdbCommandRejectedException if adb rejects the command * @throws TimeoutException in case of a timeout reading responses from the device. * @throws SyncException in case of a sync exception. */ void pullFile(String remote, String local) throws IOException, AdbCommandRejectedException, TimeoutException, SyncException; /** * Installs an Android application on device. This is a helper method that combines the * syncPackageToDevice, installRemotePackage, and removePackage steps * * @param packageFilePath the absolute file system path to file on local host to install * @param reinstall set to true if re-install of app should be performed * @param extraArgs optional extra arguments to pass. See 'adb shell pm install --help' for * available options. * @throws InstallException if the installation fails. */ void installPackage(String packageFilePath, boolean reinstall, String... extraArgs) throws InstallException; /** * Installs an Android application made of several APK files (one main and 0..n split packages) * * @param apks list of apks to install (1 main APK + 0..n split apks) * @param reinstall set to true if re-install of app should be performed * @param installOptions optional extra arguments to pass. See 'adb shell pm install --help' for * available options. * @param timeout installation timeout * @param timeoutUnit {@link TimeUnit} corresponding to the timeout parameter * @throws InstallException if the installation fails. */ void installPackages(@NonNull List apks, boolean reinstall, @NonNull List installOptions, long timeout, @NonNull TimeUnit timeoutUnit) throws InstallException; /** * Pushes a file to device * * @param localFilePath the absolute path to file on local host * @return {@link String} destination path on device for file * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. * @throws SyncException if an error happens during the push of the package on the device. */ String syncPackageToDevice(String localFilePath) throws TimeoutException, AdbCommandRejectedException, IOException, SyncException; /** * Installs the application package that was pushed to a temporary location on the device. * * @param remoteFilePath absolute file path to package file on device * @param reinstall set to true if re-install of app should be performed * @param extraArgs optional extra arguments to pass. See 'adb shell pm install --help' for * available options. * @throws InstallException if the installation fails. */ void installRemotePackage(String remoteFilePath, boolean reinstall, String... extraArgs) throws InstallException; /** * Removes a file from device. * * @param remoteFilePath path on device of file to remove * @throws InstallException if the installation fails. */ void removeRemotePackage(String remoteFilePath) throws InstallException; /** * Uninstalls an package from the device. * * @param packageName the Android application package name to uninstall * @return a {@link String} with an error code, or null if success. * @throws InstallException if the uninstallation fails. */ String uninstallPackage(String packageName) throws InstallException; /** * Reboot the device. * * @param into the bootloader name to reboot into, or null to just reboot the device. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException */ void reboot(String into) throws TimeoutException, AdbCommandRejectedException, IOException; /** * Ask the adb daemon to become root on the device. * This may silently fail, and can only succeed on developer builds. * See "adb root" for more information. * * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command. * @throws ShellCommandUnresponsiveException if the root status cannot be queried. * @throws IOException * @return true if the adb daemon is running as root, otherwise false. */ boolean root() throws TimeoutException, AdbCommandRejectedException, IOException, ShellCommandUnresponsiveException; /** * Queries the current root-status of the device. * See "adb root" for more information. * * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command. * @return true if the adb daemon is running as root, otherwise false. */ boolean isRoot() throws TimeoutException, AdbCommandRejectedException, IOException, ShellCommandUnresponsiveException; /** * Return the device's battery level, from 0 to 100 percent. *

* The battery level may be cached. Only queries the device for its * battery level if 5 minutes have expired since the last successful query. * * @return the battery level or null if it could not be retrieved * @deprecated use {@link #getBattery()} */ @Deprecated Integer getBatteryLevel() throws TimeoutException, AdbCommandRejectedException, IOException, ShellCommandUnresponsiveException; /** * Return the device's battery level, from 0 to 100 percent. *

* The battery level may be cached. Only queries the device for its * battery level if freshnessMs ms have expired since the last successful query. * * @param freshnessMs * @return the battery level or null if it could not be retrieved * @throws ShellCommandUnresponsiveException * @deprecated use {@link #getBattery(long, TimeUnit)} */ @Deprecated Integer getBatteryLevel(long freshnessMs) throws TimeoutException, AdbCommandRejectedException, IOException, ShellCommandUnresponsiveException; /** * Return the device's battery level, from 0 to 100 percent. *

* The battery level may be cached. Only queries the device for its * battery level if 5 minutes have expired since the last successful query. * * @return a {@link Future} that can be used to query the battery level. The Future will return * a {@link ExecutionException} if battery level could not be retrieved. */ @NonNull Future getBattery(); /** * Return the device's battery level, from 0 to 100 percent. *

* The battery level may be cached. Only queries the device for its * battery level if freshnessTime has expired since the last successful query. * * @param freshnessTime the desired recency of battery level * @param timeUnit the {@link TimeUnit} of freshnessTime * @return a {@link Future} that can be used to query the battery level. The Future will return * a {@link ExecutionException} if battery level could not be retrieved. */ @NonNull Future getBattery(long freshnessTime, @NonNull TimeUnit timeUnit); /** * Returns the ABIs supported by this device. The ABIs are sorted in preferred order, with the * first ABI being the most preferred. * @return the list of ABIs. */ @NonNull List getAbis(); /** * Returns the density bucket of the device screen by reading the value for system property * {@link #PROP_DEVICE_DENSITY}. * * @return the density, or -1 if it cannot be determined. */ int getDensity(); /** * Returns the user's language. * * @return the user's language, or null if it's unknown */ @Nullable String getLanguage(); /** * Returns the user's region. * * @return the user's region, or null if it's unknown */ @Nullable String getRegion(); /** * Returns the API level of the device. * * @return the API level if it can be determined, {@link AndroidVersion#DEFAULT} otherwise. */ @NonNull AndroidVersion getVersion(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy