Sl4aBluetoothUtil

public class Sl4aBluetoothUtil
extends Object

java.lang.Object의 클래스
   ↳ com.android.tradefed.util.Sl4aBluetoothUtil


유틸리티 클래스는 SL4A를 사용하여 하나 또는 두 개의 기기에서 블루투스 작업을 제공합니다.

요약

중첩된 클래스

enum Sl4aBluetoothUtil.BluetoothAccessLevel

BluetoothDevice.java를 기반으로 하는 블루투스 기기 액세스 수준의 enum

enum Sl4aBluetoothUtil.BluetoothConnectionState

BluetoothProfile.java에 기반한 블루투스 연결 상태의 enum입니다.

enum Sl4aBluetoothUtil.BluetoothPriorityLevel

BluetoothProfile.java에 기반한 블루투스 프로필 우선순위 수준의 enum

enum Sl4aBluetoothUtil.BluetoothProfile

BluetoothProfile.java를 기반으로 하는 블루투스 프로필의 enum

공개 생성자

Sl4aBluetoothUtil()

공개 메서드

boolean changeProfileAccessPermission(ITestDevice primary, ITestDevice secondary, Sl4aBluetoothUtil.BluetoothProfile profile, Sl4aBluetoothUtil.BluetoothAccessLevel access)

다음 작업을 위해 기본 기기에서 보조 기기의 블루투스 프로필 액세스 권한을 변경합니다. 지정된 프로필의 기본 기기에 액세스할 수 있는 보조 기기

boolean connect(ITestDevice primary, ITestDevice secondary, profiles)

지정된 블루투스 프로필에서 기본 기기를 보조 기기에 연결

boolean disable(ITestDevice device)

대상 기기에서 블루투스 사용 중지

boolean disableBluetoothSnoopLog(ITestDevice device)

블루투스 스누프 로그 사용 중지

boolean disconnect(ITestDevice primary, ITestDevice secondary, profiles)

보조 기기에서 기본 기기 연결 해제

boolean enable(ITestDevice device)

대상 기기에서 블루투스 사용 설정

boolean enableBluetoothSnoopLog(ITestDevice device)

블루투스 스누프 로그 사용 설정

String getAddress(ITestDevice device)

대상 기기의 블루투스 MAC 주소 가져오기

getBondedDevices(ITestDevice device)

대상 기기에서 연결된 (페어링된) 기기의 블루투스 MAC 주소 세트 가져오기

boolean pair(ITestDevice primary, ITestDevice secondary)

기본 기기를 보조 기기에 페어링

void setBtConnectionTimeout(Duration timeout)
void setBtPairTimeout(Duration timeout)
boolean setProfilePriority(ITestDevice primary, ITestDevice secondary, profiles, Sl4aBluetoothUtil.BluetoothPriorityLevel priority)

기본 기기에 있는 특정 프로필의 우선순위 설정을 보조 기기로 변경

void startSl4a(ITestDevice device, File sl4aApkFile)

지정된 기기 및 SL4A APK 파일로 SL4A 클라이언트를 명시적으로 시작합니다.

void stopSl4a()

이미 열려 있는 SL4A 클라이언트를 중지합니다.

boolean unpairAll(ITestDevice device)

현재 기기와 페어링된 모든 기기 페어링 해제

보호된 메서드

void finalize()

모든 SL4A 연결 정리

공개 생성자

Sl4aBluetoothUtil

public Sl4aBluetoothUtil ()

공개 메서드

프로필 액세스 권한 변경

public boolean changeProfileAccessPermission (ITestDevice primary, 
                ITestDevice secondary, 
                Sl4aBluetoothUtil.BluetoothProfile profile, 
                Sl4aBluetoothUtil.BluetoothAccessLevel access)

다음 작업을 위해 기본 기기에서 보조 기기의 블루투스 프로필 액세스 권한을 변경합니다. 지정된 프로필의 기본 기기에 액세스할 수 있는 보조 기기

매개변수
primary ITestDevice: 권한을 변경할 기기

secondary ITestDevice: 지정된 프로필에서 기본 기기에 액세스하는 기기입니다.

profile Sl4aBluetoothUtil.BluetoothProfile: 액세스할 블루투스 프로필

access Sl4aBluetoothUtil.BluetoothAccessLevel: 액세스 수준입니다. BluetoothAccessLevel를 참고하세요.

반환 값
boolean 권한이 성공적으로 변경된 경우 true

생성 값
DeviceNotAvailableException

연결

public boolean connect (ITestDevice primary, 
                ITestDevice secondary, 
                 profiles)

지정된 블루투스 프로필에서 기본 기기를 보조 기기에 연결

매개변수
primary ITestDevice: 연결할 기기

secondary ITestDevice: 연결할 기기

profiles : 일련의 블루투스 프로필을 연결해야 합니다.

반환 값
boolean 연결에 성공하면 true입니다.

생성 값
DeviceNotAvailableException

사용 중지

public boolean disable (ITestDevice device)

대상 기기에서 블루투스 사용 중지

매개변수
device ITestDevice: 대상 기기

반환 값
boolean 블루투스가 성공적으로 비활성화된 경우 true

생성 값
DeviceNotAvailableException

BluetoothSnoopLog 사용 중지

public boolean disableBluetoothSnoopLog (ITestDevice device)

블루투스 스누프 로그 사용 중지

매개변수
device ITestDevice: 스누프 로그를 사용 중지합니다.

반환 값
boolean 성공적으로 비활성화된 경우 true

생성 값
DeviceNotAvailableException

연결 해제

public boolean disconnect (ITestDevice primary, 
                ITestDevice secondary, 
                 profiles)

보조 기기에서 기본 기기 연결 해제

매개변수
primary ITestDevice: 연결 해제 작업을 실행할 기기

secondary ITestDevice: 연결 해제할 기기

profiles : 연결을 해제해야 하는 지정된 블루투스 프로필 집합

반환 값
boolean 연결이 성공적으로 해제되면 true입니다.

생성 값
DeviceNotAvailableException

사용 설정

public boolean enable (ITestDevice device)

대상 기기에서 블루투스 사용 설정

매개변수
device ITestDevice: 대상 기기

반환 값
boolean 블루투스가 활성화되면 true입니다.

생성 값
DeviceNotAvailableException

BluetoothSnoopLog 사용 설정

public boolean enableBluetoothSnoopLog (ITestDevice device)

블루투스 스누프 로그 사용 설정

매개변수
device ITestDevice: 스누프 로그를 사용 설정합니다.

반환 값
boolean 성공적으로 사용 설정된 경우 true

생성 값
DeviceNotAvailableException

getAddress

public String getAddress (ITestDevice device)

대상 기기의 블루투스 MAC 주소 가져오기

매개변수
device ITestDevice: 대상 기기

반환 값
String MAC 주소 문자열

생성 값
DeviceNotAvailableException

getBondedDevices

public  getBondedDevices (ITestDevice device)

대상 기기에서 연결된 (페어링된) 기기의 블루투스 MAC 주소 세트 가져오기

매개변수
device ITestDevice: 대상 기기

반환 값
블루투스 MAC 주소 세트

생성 값
DeviceNotAvailableException

페어링

public boolean pair (ITestDevice primary, 
                ITestDevice secondary)

기본 기기를 보조 기기에 페어링

매개변수
primary ITestDevice: 페어링할 기기

secondary ITestDevice: 페어링할 기기

반환 값
boolean 페어링에 성공하면 true입니다.

생성 값
DeviceNotAvailableException

setBtConnectionTimeout

public void setBtConnectionTimeout (Duration timeout)

매개변수
timeout Duration

setBtPairTimeout

public void setBtPairTimeout (Duration timeout)

매개변수
timeout Duration

setProfilePriority

public boolean setProfilePriority (ITestDevice primary, 
                ITestDevice secondary, 
                 profiles, 
                Sl4aBluetoothUtil.BluetoothPriorityLevel priority)

기본 기기에 있는 특정 프로필의 우선순위 설정을 보조 기기로 변경

매개변수
primary ITestDevice: 우선순위를 설정할 기기

secondary ITestDevice: 우선순위를 설정할 기기

profiles : 우선순위 설정을 변경하는 블루투스 프로필

priority Sl4aBluetoothUtil.BluetoothPriorityLevel: 우선순위 수준

반환 값
boolean 우선순위를 성공적으로 설정한 경우 true

생성 값
DeviceNotAvailableException

StartSl4a

public void startSl4a (ITestDevice device, 
                File sl4aApkFile)

지정된 기기 및 SL4A APK 파일로 SL4A 클라이언트를 명시적으로 시작합니다. 일반적으로 이 메서드는 SL4A 연결은 항상 실제 작업 전에 설정되기 때문에 필요하지 않습니다.

매개변수
device ITestDevice: SL4A를 사용하여 연결할 기기입니다.

sl4aApkFile File: 설치하고 사용할 선택적 SL4A APK

생성 값
DeviceNotAvailableException

StopSl4a

public void stopSl4a ()

이미 열려 있는 SL4A 클라이언트를 중지합니다. 기본적으로 이 서비스는 더 이상 사용되지 않는 즉시

모두 페어링 해제

public boolean unpairAll (ITestDevice device)

현재 기기와 페어링된 모든 기기 페어링 해제

매개변수
device ITestDevice: 작업을 실행할 현재 기기

반환 값
boolean 페어링이 해제되면 true

생성 값
DeviceNotAvailableException

보호된 메서드

완료

protected void finalize ()

모든 SL4A 연결 정리