近期学了一点Python,然后正好有一个手机同步工具方面的预研工作要完成。
要实现PC与手机的通信,首先要找到他们的通信协议,还好的是AndroID有完善的协议:ADB
ADB的代码是开源的,而且支持windows平台,有现成的DLL可以调用:AdbWinAPI.dll,AdbWinUsbAPI.dll
好了,可以用VC搞定,但我想用Python试一下,于是开始了苦逼的查资料+实验的过程。
实验过程就不多说了,由于上面的两个DLL都是用C实现的,提供的头文件也是C语言的,所以有了下面这个python测试程序(Python2.7):
# @param Python手机开发调用DLL实现部分ADB功能# @author 内存溢出 jb51.cc|jb51.cc import ctypes #自定义的GUID结构,有兴趣的可以自己研究用uuID模块 class GUID(ctypes.Structure): _fIElds_ = [("Data1",ctypes.c_ulong),("Data2",ctypes.c_ushort),("Data3",("Data4",ctypes.c_ubyte*8)] #自己定义的一个结构体,便于使用DLL接口 class AdbInterfaceInfo(ctypes.Structure): _fIElds_ = [("class_ID",GUID),("flags",("device_name",ctypes.c_wchar*800)] def strGUID(GUID): string = '' string = string + '%x' % buff.class_ID.Data1 + '-%x' % buff.class_ID.Data2 + '-%x' % buff.class_ID.Data3 string = string + '-%x' % buff.class_ID.Data4[0] string = string + '%x' % buff.class_ID.Data4[1] string = string + '%x' % buff.class_ID.Data4[2] string = string + '%x' % buff.class_ID.Data4[3] string = string + '%x' % buff.class_ID.Data4[4] string = string + '%x' % buff.class_ID.Data4[5] string = string + '%x' % buff.class_ID.Data4[6] string = string + '%x' % buff.class_ID.Data4[7] return string dll = ctypes.cdll.Loadlibrary('AdbWinAPI.dll') usb_class_ID = GUID(0xF72FE0D4,0xCBCB,0x407d,(0x88,0x14,0x9e,0xd6,0x73,0xd0,0xdd,0x6b)) enum_handle = dll.AdbEnumInterfaces(usb_class_ID,ctypes.c_bool('true'),ctypes.c_bool('true')) while(1): buff = AdbInterfaceInfo() size = ctypes.c_ulong(ctypes.sizeof(buff)) status = dll.AdbnextInterface(enum_handle,ctypes.byref(buff),ctypes.byref(size)) if status==1: #print "GUID = " + strGUID(buff.class_ID) #print "status = " + str(status) #print "name = " + str(buff.device_name) hAdbAPI = dll.AdbCreateInterfaceByname(buff.device_name); if hAdbAPI == 0: print 'AdbCreateInterfaceByname Fail' else: serial = ' '*128 pserial = ctypes.c_char_p() pserial.value = serial serial_len = ctypes.c_ulong(len(serial)) ret = dll.AdbGetSerialNumber(hAdbAPI,pserial,ctypes.byref(serial_len),ctypes.c_bool('false')); if ret == 1: print 'Device name: ' + '%s'% serial else: print 'Get Device name Fail' else: print 'Finished' breakimport ctypes#自定义的GUID结构,有兴趣的可以自己研究用uuID模块class GUID(ctypes.Structure): _fIElds_ = [("Data1",ctypes.c_ubyte*8)]#自己定义的一个结构体,便于使用DLL接口class AdbInterfaceInfo(ctypes.Structure): _fIElds_ = [("class_ID",ctypes.c_wchar*800)]def strGUID(GUID): string = '' string = string + '%x' % buff.class_ID.Data1 + '-%x' % buff.class_ID.Data2 + '-%x' % buff.class_ID.Data3 string = string + '-%x' % buff.class_ID.Data4[0] string = string + '%x' % buff.class_ID.Data4[1] string = string + '%x' % buff.class_ID.Data4[2] string = string + '%x' % buff.class_ID.Data4[3] string = string + '%x' % buff.class_ID.Data4[4] string = string + '%x' % buff.class_ID.Data4[5] string = string + '%x' % buff.class_ID.Data4[6] string = string + '%x' % buff.class_ID.Data4[7] return stringdll = ctypes.cdll.Loadlibrary('AdbWinAPI.dll')usb_class_ID = GUID(0xF72FE0D4,0x6b))enum_handle = dll.AdbEnumInterfaces(usb_class_ID,ctypes.c_bool('true'))while(1): buff = AdbInterfaceInfo() size = ctypes.c_ulong(ctypes.sizeof(buff)) status = dll.AdbnextInterface(enum_handle,ctypes.byref(size)) if status==1: #print "GUID = " + strGUID(buff.class_ID) #print "status = " + str(status) #print "name = " + str(buff.device_name) hAdbAPI = dll.AdbCreateInterfaceByname(buff.device_name); if hAdbAPI == 0: print 'AdbCreateInterfaceByname Fail' else: serial = ' '*128 pserial = ctypes.c_char_p() pserial.value = serial serial_len = ctypes.c_ulong(len(serial)) ret = dll.AdbGetSerialNumber(hAdbAPI,ctypes.c_bool('false')); if ret == 1: print 'Device name: ' + '%s'% serial else: print 'Get Device name Fail' else: print 'Finished' break# End www.jb51.cc
上面这个简单的Python代码,可以通过AdbWinAPI.dll和AdbWinUsbAPI.dll这两个DLL来找到你PC上正连接着的AndroID设备。
只调用了3个DLL接口,但目的已经达到,可以得出下面的结论:
使用Python调用DLL的方式来实现ADB工具是可行的,当然麻烦是不会少的了。
写在最后,Python调用C写的DLL还是比较麻烦的,特别是参数传递,尤其是指针的处理,这方面还得依靠ctypes模块。。。
总结以上是内存溢出为你收集整理的Python手机开发调用DLL实现部分ADB功能示例全部内容,希望文章能够帮你解决Python手机开发调用DLL实现部分ADB功能示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)