自顶向下分析Binder【1】—— Binder实例篇
欢迎转载,转载请注明:http://blog.csdn.net/zhgxhuaa
一个Binder实例
我们Binder的学习将从以下的一个实例開始。依据Android文档中的描写叙述,创建一个Binder服务主要包含例如以下3步:

以下详细看一下在eclipse中是怎样开发一个Binder应用的。
第一步:在project文件夹下定义aidl文件。
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.zxh.ipc;import com.zxh.ipc.PermissionInfo;interface ITestManager{ int checkPermission(String int checkUidPermission(Stringint uid); boolean addPermission(in void removePermission(String boolean isProtectedBroadcast(String} |
第二步:在定义aidl后,eclipse在project文件夹的gen文件夹下会自己主动生成相应的接口,以下是有aidl自己主动生成的Java代码:
|
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
package com.zxh.ipc; public interface ITestManager extends android.os.IInterface{ /** public static abstract class Stub extends android.os.Binder implements com.zxh.ipc.ITestManager { private static final java.lang.String"com.zxh.ipc.ITestManager"; /** public Stub() { this.attachInterface(this, } /** * */ public static com.zxh.ipc.ITestManager { if ((objnull)) return null; } android.os.IInterface if (((iinnull)instanceof com.zxh.ipc.ITestManager))) return ((com.zxh.ipc.ITestManager) } return new com.zxh.ipc.ITestManager.Stub.Proxy(obj); } @Override public android.os.IBinder { return this; } @Override public boolean onTransact(int code,int flags) throws android.os.RemoteException { switch (code) { case INTERFACE_TRANSACTION: reply.writeString(DESCRIPTOR); return true; } case TRANSACTION_checkPermission: data.enforceInterface(DESCRIPTOR); java.lang.String _arg0 java.lang.String _arg1 int _resultthis.checkPermission(_arg0, reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_checkUidPermission: data.enforceInterface(DESCRIPTOR); java.lang.String _arg0 int _arg1; _arg1 int _resultthis.checkUidPermission(_arg0, reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_addPermission: data.enforceInterface(DESCRIPTOR); com.zxh.ipc.PermissionInfo if ((0 != _arg0 } else { _arg0null; } boolean _resultthis.addPermission(_arg0); reply.writeNoException(); reply.writeInt(((_result)1)0))); return true; } case TRANSACTION_removePermission: data.enforceInterface(DESCRIPTOR); java.lang.String _arg0 this.removePermission(_arg0); reply.writeNoException(); return true; } case TRANSACTION_isProtectedBroadcast: data.enforceInterface(DESCRIPTOR); java.lang.String _arg0 boolean _resultthis.isProtectedBroadcast(_arg0); reply.writeNoException(); reply.writeInt(((_result)1)0))); return true; } } return super.onTransact(code, } private static class Proxy implements com.zxh.ipc.ITestManager { private android.os.IBinder Proxy(android.os.IBinder { mRemote } @Override public android.os.IBinder { return mRemote; } public java.lang.String { return DESCRIPTOR; } @Override public int checkPermission(java.lang.String throws android.os.RemoteException { android.os.Parcel android.os.Parcel int _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(permName); _data.writeString(pkgName); mRemote.transact(Stub.TRANSACTION_checkPermission,0); _reply.readException(); _result } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public int checkUidPermission(java.lang.Stringint uid) throws android.os.RemoteException { android.os.Parcel android.os.Parcel int _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(permName); _data.writeInt(uid); mRemote.transact(Stub.TRANSACTION_checkUidPermission,0); _reply.readException(); _result } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public boolean addPermission(com.zxh.ipc.PermissionInfothrows android.os.RemoteException { android.os.Parcel android.os.Parcel boolean _result; try { _data.writeInterfaceToken(DESCRIPTOR); if ((infonull)) _data.writeInt(1); info.writeToParcel(_data, 0); } else { _data.writeInt(0); } mRemote.transact(Stub.TRANSACTION_addPermission,0); _reply.readException(); _result0 != } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public void removePermission(java.lang.Stringthrows android.os.RemoteException { android.os.Parcel android.os.Parcel try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(name); mRemote.transact(Stub.TRANSACTION_removePermission,0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public boolean isProtectedBroadcast(java.lang.Stringthrows android.os.RemoteException { android.os.Parcel android.os.Parcel boolean _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(actionName); mRemote.transact(Stub.TRANSACTION_isProtectedBroadcast,0); _reply.readException(); _result0 != } finally { _reply.recycle(); _data.recycle(); } return _result; } } static final int TRANSACTION_checkPermission0); static final int TRANSACTION_checkUidPermission1); static final int TRANSACTION_addPermission2); static final int TRANSACTION_removePermission3); static final int TRANSACTION_isProtectedBroadcast4); } public int checkPermission(java.lang.Stringthrows android.os.RemoteException; public int checkUidPermission(java.lang.Stringint uid) throws android.os.RemoteException; public boolean addPermission(com.zxh.ipc.PermissionInfothrows android.os.RemoteException; public void removePermission(java.lang.Stringthrows android.os.RemoteException; public boolean isProtectedBroadcast(java.lang.Stringthrows android.os.RemoteException;} |
第三步:继承上一步生成的接口,实现自己的Service类:
|
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
|
package com.zxh.server;import android.app.Service;import android.content.Intent;import android.content.ServiceConnection;import android.os.IBinder;import android.os.RemoteException;import android.util.Log;import com.zxh.ipc.ITestManager;import com.zxh.ipc.PermissionInfo;public class TestService extends Service{ private final static String"zxh"; class TestManagerService extends ITestManager.Stub{ @Override public int checkPermission(String throws RemoteException Log.i(TAG, "checkPermission); return 0; } @Override public int checkUidPermission(Stringint uid) throws RemoteException Log.i(TAG, "checkUidPermission); return 0; } @Override public boolean addPermission(PermissionInfothrows RemoteException Log.i(TAG, "addPermission); return false; } @Override public void removePermission(Stringthrows RemoteException Log.i(TAG, "removePermission); } @Override public boolean isProtectedBroadcast(String throws RemoteException Log.i(TAG, "isProtectedBroadcast); return false; } } private TestManagerServicenew TestManagerService(); @Override public IBinder Log.i("zxh", "unbindService"); return mService; } @Override public void unbindService(ServiceConnection super.unbindService(conn); Log.i("zxh", "unbindService"); }} |
第四步:实现client代码:
|
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
|
package com.zxh.server;import android.app.Activity;import android.app.Service;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;import android.os.Bundle;import android.os.IBinder;import android.os.RemoteException;import android.util.Log;import android.view.View;import android.view.View.OnClickListener;import com.zxh.ipc.ITestManager;public class MainActivity extends Activity private ITestManagernull; ServiceConnectionnew ServiceConnection() @Override public void onServiceDisconnected(ComponentName Log.i("binder", "onServiceDisconnected"); } @Override public void onServiceConnected(ComponentName manager } }; @Override protected void onCreate(Bundle super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); findViewById(R.id.startServer).setOnClickListener(new OnClickListener() @Override public void onClick(View bindService(new Intent(MainActivity.this,class), } }); findViewById(R.id.stop).setOnClickListener(new OnClickListener() @Override public void onClick(View unbindService(connection); } }); findViewById(R.id.check).setOnClickListener(new OnClickListener() @Override public void onClick(View try { manager.checkPermission("permName", "pkgName"); } catch (RemoteException e.printStackTrace(); } } }); }} |
到这里我们就实现了一个完整的Binder实例,以下是project文件夹的截图:

完整代码能够查看后面的附件。以下来介绍一下这个实例中涉及到的一些知识点。
AIDL
除了eclipse,也能够使用Android开发包中提供的aidl命令工具来生成,例如以下是adil命令:

关于adil的具体介绍能够查看Android官方文档,地址为:http://developer.android.com/intl/zh-cn/guide/components/aidl.html
想要了解aidl处理过程的朋友也能够自己查看aidl的源码,位于@/frameworks/base/tools/adil。
AIDL编译产生的类
以下我们来分析一下aidl编译产生的ITestManager类。
从ITestManager中能够看出,ITestManager实现了IInterface接口。在ITestManager类中共包括了三部分内容,各自是:
我们在ITestManager.adil中定义的接口。
Stub类:主要由Server端实现,Server端通过继承本类,来提供详细的处理逻辑。
Proxy类:client代理,通过mRemote成员变量訪问远程Binder服务。
为了实现我们在ITestManager自定义接口的跨进程通信,Stub类和Proxy都实现了ITestManager接口。Stub自己继承了Binder类来实现Binder机制,Proxy则以引用的方式实现Binder机制。
client和服务端的通信主要通过onTransact方法实现,client和服务端的数据传递通过Parcel类完毕。这里须要注意一个问题:就是在client写入数据的顺序与在服务端读取数据的顺序必须是一致的。
尽管在上面的实现中,我们定义了一个Service类TestService,但这里要说明的是Service甚至adil都不是必须的,使用者全然能够自定义。
自顶向下分析Binder【1】—— Binder实例篇的更多相关文章
- [Android进阶]Binder学习(初始篇)
Android中Binder学习(初始篇) 本篇博客学习自侯亮的博客.地址为: 红茶一杯话Binder 1 什么是Binder? 简单地说.Binder是Android平台上的一种跨进程交互技术. 该 ...
- 红茶一杯话Binder (传输机制篇_下)
红茶一杯话Binder (传输机制篇_下) 侯 亮 1 事务的传递和处理 从IPCThreadState的角度看,它的transact()函数是通过向binder驱动发出BC_TRANSACTION语 ...
- 红茶一杯话Binder (传输机制篇_中)
红茶一杯话Binder (传输机制篇_中) 侯 亮 1 谈谈底层IPC机制吧 在上一篇文章的最后,我们说到BpBinder将数据发到了Binder驱动.然而在驱动层,这部分数据又是如何传递到BBind ...
- 红茶一杯话Binder(传输机制篇_上)
红茶一杯话Binder (传输机制篇_上) 侯 亮 1 Binder是如何做到精确打击的? 我们先问一个问题,binder机制到底是如何从代理对象找到其对应的binder实体呢?难道它有某种制导装置吗 ...
- Andorid Binder进程间通信---Binder本地对象,实体对象,引用对象,代理对象的引用计数
本文參考<Android系统源码情景分析>,作者罗升阳. 一.Binder库(libbinder)代码: ~/Android/frameworks/base/libs/binder --- ...
- [置顶] Cocos2d-x 实例源码分析之二 小实例的主框架
这篇文章是分析第一个小实例ActionTest的源码.其实所有实例程序的结构都是一样的,只有特定方法里的代码不同,大的框架都是一样的.也就是说看完这篇文章你就可以自己开始分析其他源码了. 废话不多说, ...
- 一步步实现windows版ijkplayer系列文章之二——Ijkplayer播放器源码分析之音视频输出——视频篇
一步步实现windows版ijkplayer系列文章之一--Windows10平台编译ffmpeg 4.0.2,生成ffplay 一步步实现windows版ijkplayer系列文章之二--Ijkpl ...
- ASP.NET MVC 4 插件化架构简单实现-实例篇
先回顾一下上篇决定的做法: 1.定义程序集搜索目录(临时目录). 2.将要使用的各种程序集(插件)复制到该目录. 3.加载临时目录中的程序集. 4.定义模板引擎的搜索路径. 5.在模板引擎的查找页面方 ...
- MVC 4 插件化架构简单实现实例篇
ASP.NET MVC 4 插件化架构简单实现-实例篇 先回顾一下上篇决定的做法: 1.定义程序集搜索目录(临时目录). 2.将要使用的各种程序集(插件)复制到该目录. 3.加载临时目录中的程序集 ...
- Asp.Net MVC2.0 Url 路由入门---实例篇
本篇主要讲述Routing组件的作用,以及举几个实例来学习Asp.Net MVC2.0 Url路由技术. 接着上一篇开始讲,我们在Global.asax中注册一条路由后,我们的请求是怎么转到相应的Vi ...
随机推荐
- POJ 1258-Agri-Net (Kruskal)
题目链接:Agri-Net 最小生成树水题,数组开的和题目描写叙述一样,可是就是RE,有填了个0,还好这个题用 库鲁斯卡尔 敲了一遍,发现了点问题,曾经写的库鲁卡尔模板有点问题,多写了步没用的操作,已 ...
- res/drawable目录
在Android Eclipse项目中res/目录下包含有drawable-ldpi/,drawable-mdpi/,drawable-hdpi/,drawable-xhdpi/目录,这几个目录的后缀 ...
- 基于visual Studio2013解决面试题之0507字符串转整数
题目
- Linux编译多个不同目录下的文件以及静态库、动态库的使用
先看两篇博文,作为基础知识.如果对C/C++编译链接过程都了解的话,可以跳过不看. http://www.firedragonpzy.com.cn/index.php/archives/2556 ht ...
- Android中View绘制优化之三---- 优化View
本文原创, 转载请注明出处:http://blog.csdn.net/qinjuning 译三: 优化视图 关于如何设计自定义View以及响应触摸时间等,请看Android developer : 地 ...
- 进程、线程、轻量级进程、协程和go中的Goroutine
进程.线程.轻量级进程.协程和go中的Goroutine 那些事儿电话面试被问到go的协程,曾经的军伟也问到过我协程.虽然用python时候在Eurasia和eventlet里了解过协程,但自己对协程 ...
- Problem J: Island Buses
主要题意是:大海之间有岛,有的岛之间有桥,问你岛的个数,桥的个数,以及没有桥联通岛的个数,其中最后一次输入的没有回车,不注意的话最后一次会被吞,第二,桥的两端的标记是“X”(X也代表陆地),“X”的四 ...
- 与众不同 windows phone (10) - Push Notification(推送通知)之推送 Tile 通知, 推送自定义信息
原文:与众不同 windows phone (10) - Push Notification(推送通知)之推送 Tile 通知, 推送自定义信息 [索引页][源码下载] 与众不同 windows ph ...
- DirectX SDK版本与Visual Studio版本
对于刚刚接触 DirectShow 的人来说,安装配置是一个令人头疼的问题,经常出现的情况是最基本的 baseclass 就无法编译.一开始我也为此费了很大的功夫,比如说修改代码.修改编译选项使其编译 ...
- KL25开发板利用串口蓝牙与PC通信
KL25开发板芯片本身支持三个串口,uart0,uart1,uart2.其中uart0不太一样,在数据手册里面单独一章介绍:而uart1和uart2则是一样的. 我所使用的串口蓝牙模块是BC04,支持 ...