安卓IPC机制:Binder和AIDL

1、继承树
安卓IPC机制:Binder和AIDL_第1张图片
2、介绍
Binder是Android跨进程通信方式,解决基于C/S模式的进程间通信。
实现了IBinder接口,是ServiceManager连接各种Manager的接口。
Binder在安卓系统中的位置:
安卓IPC机制:Binder和AIDL_第2张图片


安卓IPC机制:Binder和AIDL_第3张图片
3、Binder实现IPC
Client 通过bindService 后,返回一个IBinder指针,可以调用Binder.transact()函数把数据发送给Service中是Binder类,Service的Binder类中,调用Binder.ontransact()可以接收处理客户端发送的数据,并返回数据。(代码如下,bindService部分见Service介绍部份)
客户端:
安卓IPC机制:Binder和AIDL_第4张图片
服务器:
安卓IPC机制:Binder和AIDL_第5张图片

安卓IPC机制:Binder和AIDL_第6张图片
4、AIDL实现RPC
安卓IPC机制:Binder和AIDL_第7张图片
(1)服务端onTransact函数实现远程调用
AIDL的定义了一个I****接口,接口的stub类中,在onTransact函数里,定义了对远程调用的实现,如以下(HotkeyService的AIDL代码)

安卓IPC机制:Binder和AIDL_第8张图片
(2)客户端asInterface函数,实现(IBinder)类型转换
<1>、查询本地是否有此类
<2>、如果没有,返回Proxy类
安卓IPC机制:Binder和AIDL_第9张图片

安卓IPC机制:Binder和AIDL_第10张图片

5、Binder RPC流程图

安卓IPC机制:Binder和AIDL_第11张图片

安卓IPC机制:Binder和AIDL_第12张图片

安卓IPC机制:Binder和AIDL_第13张图片

你可能感兴趣的:(安卓)