GceAvdInfo
public
class
GceAvdInfo
extends Object
java.lang.Object | |
↳ | com.android.tradefed.device.cloud.GceAvdInfo |
지정된 GCE AVD 인스턴스의 관련 데이터를 보유하는 구조입니다.
요약
중첩된 클래스 | |
---|---|
class |
GceAvdInfo.LogFileEntry
|
필드 | |
---|---|
public
static
final
|
BUILD_VARS
|
공개 생성자 | |
---|---|
GceAvdInfo(String instanceName, HostAndPort hostAndPort)
|
|
GceAvdInfo(String instanceName, HostAndPort hostAndPort, ErrorIdentifier errorType, String errors, GceAvdInfo.GceStatus status)
|
공개 메서드 | |
---|---|
|
getBuildVars()
GCE AVD 기기의 빌드 변수 정보 해시를 반환합니다. |
Integer
|
getDeviceOffset()
|
ErrorIdentifier
|
getErrorType()
|
String
|
getErrors()
|
String
|
getInstanceUser()
|
|
getLogs()
로컬 또는 원격 로그 경로에서 유형으로의 매핑을 반환합니다. |
String
|
getOxygenationDeviceId()
|
boolean
|
getSkipDeviceLogCollection()
|
GceAvdInfo.GceStatus
|
getStatus()
|
HostAndPort
|
hostAndPort()
|
String
|
instanceName()
|
boolean
|
isIpPreconfigured()
|
static
GceAvdInfo
|
parseGceInfoFromFile(File f, DeviceDescriptor descriptor, int remoteAdbPort)
주어진 파일을 파싱하여 GCE AVD 기기 정보를 가져옵니다. |
static
|
parseGceInfoFromOxygenClientOutput(CommandResult oxygenRes, TestDeviceOptions deviceOptions)
Oxygen 클라이언트 바이너리에서 지정된 명령줄 출력을 파싱하여 임대된 AVD 정보를 가져옵니다. |
static
GceAvdInfo
|
parseGceInfoFromString(String data, DeviceDescriptor descriptor, int remoteAdbPort)
지정된 문자열을 파싱하여 GCE AVD 기기 정보를 가져옵니다. |
void
|
setDeviceOffset(Integer deviceOffset)
|
void
|
setErrorType(ErrorIdentifier errorType)
|
void
|
setErrors(String errors)
|
void
|
setInstanceUser(String instanceUser)
|
void
|
setIpPreconfigured(boolean isIpPreconfigured)
|
void
|
setOxygenationDeviceId(String deviceId)
|
void
|
setSkipBugreportCollection(boolean skipDeviceLogCollection)
|
void
|
setSkipDeviceLogCollection(boolean skipDeviceLogCollection)
|
void
|
setStatus(GceAvdInfo.GceStatus status)
|
String
|
toString()
|
필드
BUILD_VARS
public static finalBUILD_VARS
공개 생성자
GceAvdInfo
public GceAvdInfo (String instanceName, HostAndPort hostAndPort)
매개변수 | |
---|---|
instanceName |
String |
hostAndPort |
HostAndPort |
GceAvdInfo
public GceAvdInfo (String instanceName, HostAndPort hostAndPort, ErrorIdentifier errorType, String errors, GceAvdInfo.GceStatus status)
매개변수 | |
---|---|
instanceName |
String |
hostAndPort |
HostAndPort |
errorType |
ErrorIdentifier |
errors |
String |
status |
GceAvdInfo.GceStatus |
공개 메서드
getBuildVars
publicgetBuildVars ()
GCE AVD 기기의 빌드 변수 정보 해시를 반환합니다.
가능한 빌드 변수 키는 BUILD_VARS에 설명되어 있습니다(예: build_id, build_target, branch, kernel_build_id, kernel_build_target, kernel_branch, system_build_id, system_build_target, system_branch, emulator_build_id, emulator_build_target, emulator_branch).
반환 값 | |
---|---|
|
getDeviceOffset
public Integer getDeviceOffset ()
반환 값 | |
---|---|
Integer |
getErrors
public String getErrors ()
반환 값 | |
---|---|
String |
getInstanceUser
public String getInstanceUser ()
반환 값 | |
---|---|
String |
getLogs
publicgetLogs ()
로컬 또는 원격 로그 경로에서 유형으로의 매핑을 반환합니다.
반환 값 | |
---|---|
|
getOxygenationDeviceId
public String getOxygenationDeviceId ()
반환 값 | |
---|---|
String |
getSkipDeviceLogCollection
public boolean getSkipDeviceLogCollection ()
반환 값 | |
---|---|
boolean |
hostAndPort
public HostAndPort hostAndPort ()
반환 값 | |
---|---|
HostAndPort |
instanceName
public String instanceName ()
반환 값 | |
---|---|
String |
isIpPreconfigured
public boolean isIpPreconfigured ()
반환 값 | |
---|---|
boolean |
parseGceInfoFromFile
public static GceAvdInfo parseGceInfoFromFile (File f, DeviceDescriptor descriptor, int remoteAdbPort)
주어진 파일을 파싱하여 GCE AVD 기기 정보를 가져옵니다.
매개변수 | |
---|---|
f |
File : GCE 드라이버에서 JSON 출력을 읽는 ERROR(/File) 파일입니다. |
descriptor |
DeviceDescriptor : 정보가 필요한 기기의 설명자입니다. |
remoteAdbPort |
int : adb 연결에 사용해야 하는 원격 포트 |
반환 값 | |
---|---|
GceAvdInfo |
기기를 찾은 경우 기기의 GceAvdInfo , 오류인 경우 null입니다. |
생성 값 | |
---|---|
TargetSetupError |
parseGceInfoFromOxygenClientOutput
public staticparseGceInfoFromOxygenClientOutput (CommandResult oxygenRes, TestDeviceOptions deviceOptions)
Oxygen 클라이언트 바이너리에서 주어진 명령줄 출력을 파싱하여 임대한 AVD 정보를 가져옵니다.
매개변수 | |
---|---|
oxygenRes |
CommandResult : Oxygen 클라이언트 명령어 실행의 CommandResult 입니다. |
deviceOptions |
TestDeviceOptions : 기기 옵션을 설명하는 TestDeviceOptions 입니다. |
반환 값 | |
---|---|
|
기기 ERROR(/List) 대가 성공적으로 임대되었습니다. 기기 임대를 실패하면 TargetSetupError 이 발생합니다. |
생성 값 | |
---|---|
TargetSetupError |
parseGceInfoFromString
public static GceAvdInfo parseGceInfoFromString (String data, DeviceDescriptor descriptor, int remoteAdbPort)
지정된 문자열을 파싱하여 GCE AVD 기기 정보를 가져옵니다.
매개변수 | |
---|---|
data |
String : JSON 문자열입니다. |
descriptor |
DeviceDescriptor : 정보가 필요한 기기의 설명자입니다. |
remoteAdbPort |
int : adb 연결에 사용해야 하는 원격 포트 |
반환 값 | |
---|---|
GceAvdInfo |
기기를 찾은 경우 기기의 GceAvdInfo , 오류인 경우 null입니다. |
생성 값 | |
---|---|
TargetSetupError |
setDeviceOffset
public void setDeviceOffset (Integer deviceOffset)
매개변수 | |
---|---|
deviceOffset |
Integer |
setErrors
public void setErrors (String errors)
매개변수 | |
---|---|
errors |
String |
setInstanceUser
public void setInstanceUser (String instanceUser)
매개변수 | |
---|---|
instanceUser |
String |
setIpPreconfigured
public void setIpPreconfigured (boolean isIpPreconfigured)
매개변수 | |
---|---|
isIpPreconfigured |
boolean |
setOxygenationDeviceId
public void setOxygenationDeviceId (String deviceId)
매개변수 | |
---|---|
deviceId |
String |
setSkipBugreportCollection
public void setSkipBugreportCollection (boolean skipDeviceLogCollection)
매개변수 | |
---|---|
skipDeviceLogCollection |
boolean |
setSkipDeviceLogCollection
public void setSkipDeviceLogCollection (boolean skipDeviceLogCollection)
매개변수 | |
---|---|
skipDeviceLogCollection |
boolean |
toString
public String toString ()
반환 값 | |
---|---|
String |