import os
class AndroidDebugBridge(object):
def call_adb(self, command):
command_result = ''
command_text = 'adb %s' % command
results = os.popen(command_text, "r")
while 1:
line = results.readline()
if not line: break
command_result += line
results.close()
return command_result
# check for any fastboot device
def fastboot(self, device_id):
pass
# 检查设备
def attached_devices(self):
result = self.call_adb("devices")
devices = result.partition('\n')[2].replace('\n', '').split('\tdevice')
flag = [device for device in devices if len(device) > 2]
if flag:
return True
else:
return False
# return [device for device in devices if len(device) > 2]
# 状态
def get_state(self):
result = self.call_adb("get-state")
result = result.strip(' \t\n\r')
return result or None
#重启
def reboot(self, option):
command = "reboot"
if len(option) > 7 and option in ("bootloader", "recovery",):
command = "%s %s" % (command, option.strip())
self.call_adb(command)
# 将电脑文件拷贝到手机里面
def push(self, local, remote):
result = self.call_adb("push %s %s" % (local, remote))
return result
# 拉数据到本地
def pull(self, remote, local):
result = self.call_adb("pull %s %s" % (remote, local))
return result
# 同步更新 很少用此命名
def sync(self, directory, **kwargs):
command = "sync %s" % directory
if 'list' in kwargs:
command += " -l"
result = self.call_adb(command)
return result
# 打开指定app
def open_app(self,packagename,activity):
result = self.call_adb("shell am start -n %s/%s" % (packagename, activity))
check = result.partition('\n')[2].replace('\n', '').split('\t ')
if check[0].find("Error") >= 1:
return False
else:
return True
- 使用方法AndroidDebugBridge().get_state()