
com.tascape.qa.th.android.comm.Adb Maven / Gradle / Ivy
/*
* Copyright 2015.
*
* 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.tascape.qa.th.android.comm;
import com.tascape.qa.th.SystemConfiguration;
import com.tascape.qa.th.comm.EntityCommunication;
import com.tascape.qa.th.exception.EntityCommunicationException;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecuteResultHandler;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.exec.ExecuteStreamHandler;
import org.apache.commons.exec.ExecuteWatchdog;
import org.apache.commons.exec.Executor;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author linsong wang
*/
public final class Adb extends EntityCommunication {
private static final Logger LOG = LoggerFactory.getLogger(Adb.class);
public static final String SYSPROP_ADB_EXECUTABLE = "qa.th.comm.ADB_EXECUTABLE";
static {
LOG.debug("Please specify where adb executable is by setting system property {}={}",
SYSPROP_ADB_EXECUTABLE, "/path/to/your/sdk/platform-tools/adb");
}
private final static String ADB = SystemConfiguration.getInstance().getProperty(SYSPROP_ADB_EXECUTABLE, "adb");
private String serial = "";
public static void reset() throws IOException {
CommandLine cmdLine = new CommandLine(ADB);
cmdLine.addArgument("kill-server");
LOG.debug("{}", cmdLine.toString());
Executor executor = new DefaultExecutor();
if (executor.execute(cmdLine) != 0) {
throw new IOException(cmdLine + " failed");
}
cmdLine = new CommandLine(ADB);
cmdLine.addArgument("devices");
LOG.debug("{}", cmdLine.toString());
executor = new DefaultExecutor();
if (executor.execute(cmdLine) != 0) {
throw new IOException(cmdLine + " failed");
}
}
public static List getDeviceSerials() throws IOException {
CommandLine cmdLine = new CommandLine(ADB);
cmdLine.addArgument("devices");
LOG.debug("{}", cmdLine.toString());
List output = new ArrayList<>();
Executor executor = new DefaultExecutor();
executor.setStreamHandler(new AdbStreamHandler(output));
if (executor.execute(cmdLine) != 0) {
throw new IOException(cmdLine + " failed");
}
List serials = new ArrayList<>();
for (String line : output) {
if (line.endsWith("device")) {
serials.add(line.split("\\t")[0]);
}
}
LOG.debug("{}", serials);
return serials;
}
public Adb() throws IOException, EntityCommunicationException {
this("");
}
public Adb(String serial) throws IOException, EntityCommunicationException {
if (StringUtils.isEmpty(serial)) {
List output = this.adb(Arrays.asList(new Object[]{"devices"}));
for (String line : output) {
if (line.endsWith("device")) {
this.serial = line.split("\\t")[0];
break;
}
}
} else {
this.serial = serial;
}
LOG.debug("serial number '{}'", this.serial);
if (StringUtils.isEmpty(this.serial)) {
throw new EntityCommunicationException("Device serial number issue");
}
}
@Override
public void connect() throws Exception {
}
@Override
public void disconnect() throws Exception {
}
public List adb(final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy