blob: 89ffb00814bb9c99abaaeab515e55116fbd751bb [file] [log] [blame]
/*
* Copyright (C) 2012 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.uiautomator;
import com.android.SdkConstants;
import com.android.ddmlib.AndroidDebugBridge;
import com.android.ddmlib.IDevice;
import java.io.File;
import java.util.Arrays;
import java.util.List;
public class DebugBridge {
private static AndroidDebugBridge sDebugBridge;
private static String getAdbLocation() {
String toolsDir = System.getProperty("com.android.uiautomator.bindir"); //$NON-NLS-1$
if (toolsDir == null) {
return null;
}
File sdk = new File(toolsDir).getParentFile();
// check if adb is present in platform-tools
File platformTools = new File(sdk, "platform-tools");
File adb = new File(platformTools, SdkConstants.FN_ADB);
if (adb.exists()) {
return adb.getAbsolutePath();
}
// check if adb is present in the tools directory
adb = new File(toolsDir, SdkConstants.FN_ADB);
if (adb.exists()) {
return adb.getAbsolutePath();
}
return null;
}
public static void init() {
String adbLocation = getAdbLocation();
if (adbLocation != null) {
AndroidDebugBridge.init(false /* debugger support */);
sDebugBridge = AndroidDebugBridge.createBridge(adbLocation, false);
}
}
public static void terminate() {
if (sDebugBridge != null) {
sDebugBridge = null;
AndroidDebugBridge.terminate();
}
}
public static boolean isInitialized() {
return sDebugBridge != null;
}
public static List<IDevice> getDevices() {
return Arrays.asList(sDebugBridge.getDevices());
}
}