GenericLogcatEventParser
public
class
GenericLogcatEventParser
extends Object
java.lang.Object | |
↳ | com.android.tradefed.util.GenericLogcatEventParser<LogcatEventType> |
イベントの logcat 入力を解析します。
このクラスは logcat メッセージを解釈し、ブロック イベントとブロック イベントの両方で 大きく広がっています
概要
ネストされたクラス | |
---|---|
class |
GenericLogcatEventParser.LogcatEvent
イベントタイプを指定して logcat イベントを保持し、logcat メッセージをトリガーする構造体 |
パブリック コンストラクタ | |
---|---|
GenericLogcatEventParser(ITestDevice device)
新しい LogcatEventParser をインスタンス化する |
パブリック メソッド | |
---|---|
void
|
close()
logcat のリッスンを停止します。 |
void
|
parseEvents(String[] lines)
Logcat の行を解析し、キャプチャしたイベント( |
GenericLogcatEventParser.LogcatEvent
|
pollForEvent()
イベントキューをポーリングします。 |
void
|
registerEventTrigger(String tag, String msg, LogcatEventType response)
指定された logcat タグとメッセージのイベントを、目的のレスポンスとともに登録します。 |
void
|
registerEventTrigger(Log.LogLevel logLevel, String tag, String msg, LogcatEventType response)
指定された logcat レベル、タグ、メッセージのイベントを、目的のレスポンスとともに登録します。 |
void
|
start()
logcat のリッスンとイベントの解析を開始します。 |
GenericLogcatEventParser.LogcatEvent
|
waitForEvent(long timeoutMs)
イベントを受信するまでブロックされます。 |
パブリック コンストラクタ
GenericLogcatEventParser
public GenericLogcatEventParser (ITestDevice device)
新しい LogcatEventParser をインスタンス化する
パラメータ | |
---|---|
device |
ITestDevice : logcat の読み取り元 |
パブリック メソッド
閉じる
public void close ()
logcat のリッスンを停止します。
parseEvents
public void parseEvents (String[] lines)
Logcat の行を解析し、キャプチャしたイベント(registerEventTrigger(String, String, LogcatEventType)
に登録されているもの)をイベントキューに追加します。
パラメータ | |
---|---|
lines |
String |
pollForEvent
public GenericLogcatEventParser.LogcatEvent pollForEvent ()
イベントキューをポーリングします。すぐに戻ります。
戻り値 | |
---|---|
GenericLogcatEventParser.LogcatEvent |
イベント、または一致するイベントが見つからない場合は null |
registerEventTrigger
public void registerEventTrigger (String tag, String msg, LogcatEventType response)
指定された logcat タグとメッセージのイベントを、目的のレスポンスとともに登録します。メッセージの例: あります。
パラメータ | |
---|---|
tag |
String |
msg |
String |
response |
LogcatEventType |
registerEventTrigger
public void registerEventTrigger (Log.LogLevel logLevel, String tag, String msg, LogcatEventType response)
指定された logcat レベル、タグ、メッセージのイベントを、目的のレスポンスとともに登録します。メッセージ 一部である可能性があります。
パラメータ | |
---|---|
logLevel |
Log.LogLevel |
tag |
String |
msg |
String |
response |
LogcatEventType |
start
public void start ()
logcat のリッスンとイベントの解析を開始します。
waitForEvent
public GenericLogcatEventParser.LogcatEvent waitForEvent (long timeoutMs)
イベントを受信するまでブロックされます。
パラメータ | |
---|---|
timeoutMs |
long : 待機時間(ミリ秒) |
戻り値 | |
---|---|
GenericLogcatEventParser.LogcatEvent |
イベント、またはタイムアウトに達した場合は null |