当前位置:
首页 > Python基础教程 >
-
Python手机开发调用DLL实现部分ADB功能
近期学了一点Python,然后正好有一个手机同步工具方面的预研工作要完成。
要实现PC与手机的通信,首先要找到他们的通信协议,还好的是Android有完善的协议:ADB
ADB的代码是开源的,而且支持Windows平台,有现成的DLL可以调用:AdbWinApi.dll,AdbWinUsbApi.dll
好了,可以用VC搞定,但我想用Python试一下,于是开始了苦逼的查资料+实验的过程。
实验过程就不多说了,由于上面的两个DLL都是用C实现的,提供的头文件也是C语言的,所以有了下面这个python测试程序(Python2.7):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
import ctypes #自定义的GUID结构,有兴趣的可以自己研究用uuid模块 class GUID(ctypes.Structure): _fields_ = [( "Data1" , ctypes.c_ulong), ( "Data2" , ctypes.c_ushort), ( "Data3" , ctypes.c_ushort), ( "Data4" , ctypes.c_ubyte * 8 )] #自己定义的一个结构体,便于使用DLL接口 class AdbInterfaceInfo(ctypes.Structure): _fields_ = [( "class_id" , GUID), ( "flags" , ctypes.c_ulong), ( "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' ), 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' break import ctypes #自定义的GUID结构,有兴趣的可以自己研究用uuid模块 class GUID(ctypes.Structure): _fields_ = [( "Data1" , ctypes.c_ulong), ( "Data2" , ctypes.c_ushort), ( "Data3" , ctypes.c_ushort), ( "Data4" , ctypes.c_ubyte * 8 )] #自己定义的一个结构体,便于使用DLL接口 class AdbInterfaceInfo(ctypes.Structure): _fields_ = [( "class_id" , GUID), ( "flags" , ctypes.c_ulong), ( "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' ), 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' break |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式