NativeDeviceStateMonitor

public class NativeDeviceStateMonitor
extends Object implements IDeviceStateMonitor

java.lang.Object
   ↳ com.android.tradefed.device.NativeDeviceStateMonitor


フレームワークのサポートなしで IDevice の状態をモニタリングするためのヘルパークラス。

概要

定数

long MAX_CHECK_POLL_TIME

int MAX_OP_TIME

「応答性のポーリング」コマンドの最大操作時間(ミリ秒)

フィールド

protected static final String PERM_DENIED_ERROR_PATTERN

パブリック コンストラクタ

NativeDeviceStateMonitor(IDeviceManager mgr, IDevice device, boolean fastbootEnabled)

パブリック メソッド

void attachFinalState(TestDeviceState finalState)

最終状態をアタッチして、到達した場合に waitForDeviceState を中止します。

TestDeviceState getDeviceState()

デバイスの状態を取得します。

String getFastbootSerialNumber()

fastboot モードのシリアル番号を取得します。

String getMountPoint(String mountName)

マウント ポイントを返します。

String getSerialNumber()

デバイスのシリアル番号を取得します。

boolean isAdbTcp()

void setDefaultAvailableTimeout(long timeoutMs)

waitForDeviceAvailable() で、デバイスが使用可能になるまで待機する時間をミリ秒単位で設定します。

void setDefaultOnlineTimeout(long timeoutMs)

waitForDeviceOnline() で、デバイスがオンラインになるまでの待機時間をミリ秒単位で設定します。

void setFastbootSerialNumber(String serial)

Fastboot モードのシリアル番号を設定します。

void setIDevice(IDevice newDevice)

現在の IDevice を更新します。

void setState(TestDeviceState deviceState)

デバイスの現在の状態を設定します。

boolean waitForBootComplete(long waitTime)

デバイスの起動完了フラグが設定されるまでブロックします

IDevice waitForDeviceAvailable(long waitTime)

デバイスが応答し、テストの準備が整うまで待ちます。

IDevice waitForDeviceAvailable()

デバイスが応答し、テストの準備が整うまで待ちます。

IDevice waitForDeviceAvailableInRecoverPath(long waitTime)

処理を調整するためにリカバリパス中に呼び出される waitForDeviceAvailable(long) の特別なバリアント。

boolean waitForDeviceBootloader(long time)

デバイスがブートローダになるまで待ちます。

void waitForDeviceBootloaderStateUpdate()

デバイスのブートローダーの状態が更新されるまで待機する

boolean waitForDeviceFastbootd(String fastbootPath, long time)

デバイスが fastbootd になるまで待ちます。

IDevice waitForDeviceInRecovery()

標準の起動タイムアウトを使用して、デバイスがリカバリモードになるまで待ちます。

boolean waitForDeviceInRecovery(long waitTime)

デバイスが「adb recovery」状態になるまで待ちます。

boolean waitForDeviceInSideload(long waitTime)

デバイスが「adb sideload」状態になるまで待ちます。

boolean waitForDeviceNotAvailable(long waitTime)

デバイスが使用できなくなるまで待機します

IDevice waitForDeviceOnline()

標準の起動タイムアウトを使用してデバイスがオンラインになるまで待機します。

IDevice waitForDeviceOnline(long waitTime)

デバイスがオンラインになるまで待ちます。

boolean waitForDeviceShell(long waitTime)

デバイスが基本的な adb shell コマンドに応答するまで待ちます。

保護されたメソッド

CollectingOutputReceiver createOutputReceiver()

テスト用に公開

long getCheckPollTime()

テスト用に公開

long getCurrentTime()

テスト用に公開

IDevice getIDevice()
boolean postOnlineCheck(long waitTime)

オンライン デバイスで行う追加のチェック

boolean waitForStoreMount(long waitTime)

デバイスの外部ストアがマウントされるまで待ちます。

定数

MAX_CHECK_POLL_TIME

protected static final long MAX_CHECK_POLL_TIME

定数値: 3000 (0x0000000000000bb8)

MAX_OP_TIME

protected static final int MAX_OP_TIME

「応答性のポーリング」コマンドの最大オペレーション時間(ミリ秒)

定数値: 10000 (0x00002710)

フィールド

PERM_DENIED_ERROR_PATTERN

protected static final String PERM_DENIED_ERROR_PATTERN

パブリック コンストラクタ

NativeDeviceStateMonitor

public NativeDeviceStateMonitor (IDeviceManager mgr, 
                IDevice device, 
                boolean fastbootEnabled)

パラメータ
mgr IDeviceManager

device IDevice

fastbootEnabled boolean

パブリック メソッド

attachFinalState

public void attachFinalState (TestDeviceState finalState)

最終状態をアタッチして、到達した場合に waitForDeviceState を中止します。

パラメータ
finalState TestDeviceState

getDeviceState

public TestDeviceState getDeviceState ()

デバイスの状態を取得します。

戻り値
TestDeviceState デバイスの TestDeviceState

getFastbootSerialNumber

public String getFastbootSerialNumber ()

fastboot モードのシリアル番号を取得します。

戻り値
String

getMountPoint

public String getMountPoint (String mountName)

マウント ポイントを返します。

IDevice のキャッシュに保存された情報が利用できない場合は、デバイスに直接クエリを実行します。

TODO: この動作を IDevice#getMountPoint(String) に移動

パラメータ
mountName String: マウント ポイントの名前

戻り値
String マウント ポイントまたは null

例外
DeviceNotAvailableException

getSerialNumber

public String getSerialNumber ()

デバイスのシリアル番号を取得します。

戻り値
String

isAdbTcp

public boolean isAdbTcp ()

戻り値
boolean

setDefaultAvailableTimeout

public void setDefaultAvailableTimeout (long timeoutMs)

waitForDeviceAvailable() でデバイスが利用可能になるまでの待機時間をミリ秒単位で設定します。

パラメータ
timeoutMs long

setDefaultOnlineTimeout

public void setDefaultOnlineTimeout (long timeoutMs)

waitForDeviceOnline() で、デバイスがオンラインになるまで待機する時間をミリ秒単位で設定します。

パラメータ
timeoutMs long

setFastbootSerialNumber

public void setFastbootSerialNumber (String serial)

Fastboot モードのシリアル番号を設定します。

パラメータ
serial String

setIDevice

public void setIDevice (IDevice newDevice)

現在の IDevice を更新します。

setState

public void setState (TestDeviceState deviceState)

デバイスの現在の状態を設定します。

waitForBootComplete

public boolean waitForBootComplete (long waitTime)

デバイスの起動完了フラグが設定されるまでブロックします

パラメータ
waitTime long: 待機時間(ミリ秒)

戻り値
boolean

waitForDeviceAvailable

public IDevice waitForDeviceAvailable (long waitTime)

デバイスが応答し、テストの準備が整うまで待ちます。現在、これはパッケージ マネージャーと外部ストレージが利用可能であることを意味します。

パラメータ
waitTime long: 待機時間(ミリ秒)

戻り値
IDevice IDevice(デバイスが期限切れになる前にオンラインになった場合)。それ以外の場合は null

waitForDeviceAvailable

public IDevice waitForDeviceAvailable ()

デバイスが応答し、テストの準備が整うまで待ちます。

waitForDeviceAvailable(long) と同じですが、デフォルトのデバイス起動タイムアウトを使用します。

戻り値
IDevice IDevice(デバイスが期限切れになる前にオンラインになった場合)。そうでない場合は null

waitForDeviceAvailableInRecoverPath

public IDevice waitForDeviceAvailableInRecoverPath (long waitTime)

waitForDeviceAvailable(long) の特別なバリアント。復元パスで呼び出され、処理を調整します。

パラメータ
waitTime long

戻り値
IDevice

例外
DeviceNotAvailableException

waitForDeviceBootloader

public boolean waitForDeviceBootloader (long time)

デバイスがブートローダーに入るのを待ちます。

パラメータ
time long: 待機する最大時間(ミリ秒)

戻り値
boolean true(時間切れ前にデバイスがブートローダーにある場合)

waitForDeviceBootloaderStateUpdate

public void waitForDeviceBootloaderStateUpdate ()

デバイスのブートローダーの状態が更新されるまで待機します。

waitForDeviceFastbootd

public boolean waitForDeviceFastbootd (String fastbootPath, 
                long time)

デバイスが fastbootd になるまで待ちます。

パラメータ
fastbootPath String: 使用する fastboot バイナリのパス。

time long: 待機する最大時間(ミリ秒)

戻り値
boolean true(時間切れ前にデバイスが fastbootd にある場合)

waitForDeviceInRecovery

public IDevice waitForDeviceInRecovery ()

標準の起動タイムアウトを使用して、デバイスがリカバリモードになるまで待ちます。

戻り値
IDevice IDevice(デバイスが期限切れになる前に復元された場合)。そうでない場合は null

waitForDeviceInRecovery

public boolean waitForDeviceInRecovery (long waitTime)

デバイスが「adb recovery」状態になるまで待ちます。

パラメータ
waitTime long: 待機する最大時間(ミリ秒)

戻り値
boolean タイムアウト前にデバイスがリカバリ状態にある場合は true、それ以外の場合は false です。

waitForDeviceInSideload

public boolean waitForDeviceInSideload (long waitTime)

デバイスが「adb sideload」状態になるまで待ちます。

パラメータ
waitTime long: 待機する最大時間(ミリ秒)

戻り値
boolean タイムアウト前にデバイスがサイドロードされていた場合は true、それ以外の場合は False です。

waitForDeviceNotAvailable

public boolean waitForDeviceNotAvailable (long waitTime)

デバイスが使用できなくなるまで待機します

パラメータ
waitTime long: 待機する最大時間(ミリ秒)

戻り値
boolean デバイスが利用できなくなった場合は true

waitForDeviceOnline

public IDevice waitForDeviceOnline ()

標準の起動タイムアウトを使用して、デバイスがオンラインになるまで待ちます。

注: このメソッドは、DDMS でデバイスが検出されると返されます。デバイスが実際に adb コマンドに応答することを保証するものではありません。代わりに waitForDeviceAvailable() を使用してください。

戻り値
IDevice 期限が切れる前にデバイスがオンラインになった場合は、IDevice。それ以外の場合は null

waitForDeviceOnline

public IDevice waitForDeviceOnline (long waitTime)

デバイスがオンラインになるまで待ちます。

注: このメソッドは、DDMS でデバイスが検出されると返されます。デバイスが実際に adb コマンドに応答することを保証するものではありません。代わりに waitForDeviceAvailable() を使用してください。

パラメータ
waitTime long: 待機する最大時間(ミリ秒)

戻り値
IDevice IDevice(デバイスが期限切れになる前にオンラインになった場合)。それ以外の場合は null

waitForDeviceShell

public boolean waitForDeviceShell (long waitTime)

デバイスが基本的な adb shell コマンドに応答するまで待ちます。

パラメータ
waitTime long: 待機時間(ミリ秒)

戻り値
boolean waitTime が経過する前にデバイスが応答する場合は true

保護されたメソッド

createOutputReceiver

protected CollectingOutputReceiver createOutputReceiver ()

テスト用に公開

戻り値
CollectingOutputReceiver CollectingOutputReceiver

getCheckPollTime

protected long getCheckPollTime ()

テスト用に公開

戻り値
long

getCurrentTime

protected long getCurrentTime ()

テスト用に公開

戻り値
long

getIDevice

protected IDevice getIDevice ()

戻り値
IDevice IDevice 状態モニタに関連付ける

postOnlineCheck

protected boolean postOnlineCheck (long waitTime)

オンライン デバイスで行う追加のチェック

パラメータ
waitTime long: タイムアウトするまでの待ち時間(ミリ秒単位)

戻り値
boolean true: waitTime が期限切れになる前にチェックが成功した場合。それ以外の場合は false

例外
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

waitForStoreMount

protected boolean waitForStoreMount (long waitTime)

デバイスの外部ストアがマウントされるまで待ちます。

パラメータ
waitTime long: タイムアウトするまでの待ち時間(ミリ秒単位)

戻り値
boolean waitTime が期限切れになる前に外部ストアをマウントする場合は、true。それ以外の場合は false

例外
DeviceNotAvailableException