深入分析AIDL原理

在上一篇文章(Service使用方式)中,介绍了Android进程间通信(IPC)的使用,并给出了一个示例。但并没有深入分析aidl是怎样可以做到进程间通信的,它的执行过程是怎样的?

这篇文章来分析IRemoteService.aidl的执行过程,并理解aidl是怎样跨进程通信的。

当我们创建IRemoteService.aidl文件时,IDE会为我们在gen目录中创建相应的文件。

[java] view plaincopy

  1. /** This file is auto-generated.  DO NOT MODIFY.
  2. * Original file: F:\\workspace\\AndroidImprove\\src\\com\\example\\aidl\\IRemoteService.aidl
  3. */
  4. package com.example.aidl;
  5. public interface IRemoteService extends android.os.IInterface
  6. {
  7. /** Local-side IPC implementation stub class. */
  8. public static abstract class Stub extends android.os.Binder implements com.example.aidl.IRemoteService
  9. {
  10. private static final java.lang.String DESCRIPTOR = "com.example.aidl.IRemoteService";
  11. /** Construct the stub at attach it to the interface. */
  12. public Stub()
  13. {
  14. this.attachInterface(this, DESCRIPTOR);
  15. }
  16. /**
  17. * Cast an IBinder object into an com.example.aidl.IRemoteService interface,
  18. * generating a proxy if needed.
  19. */
  20. public static com.example.aidl.IRemoteService asInterface(android.os.IBinder obj)
  21. {
  22. if ((obj==null)) {
  23. return null;
  24. }
  25. android.os.IInterface iin = (android.os.IInterface)obj.queryLocalInterface(DESCRIPTOR);
  26. if (((iin!=null)&&(iin instanceof com.example.aidl.IRemoteService))) {
  27. return ((com.example.aidl.IRemoteService)iin);
  28. }
  29. return new com.example.aidl.IRemoteService.Stub.Proxy(obj);
  30. }
  31. public android.os.IBinder asBinder()
  32. {
  33. return this;
  34. }
  35. @Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
  36. {
  37. switch (code)
  38. {
  39. case INTERFACE_TRANSACTION:
  40. {
  41. reply.writeString(DESCRIPTOR);
  42. return true;
  43. }
  44. case TRANSACTION_register:
  45. {
  46. data.enforceInterface(DESCRIPTOR);
  47. com.example.aidl.IRemoteCallback _arg0;
  48. _arg0 = com.example.aidl.IRemoteCallback.Stub.asInterface(data.readStrongBinder());
  49. this.register(_arg0);
  50. reply.writeNoException();
  51. return true;
  52. }
  53. case TRANSACTION_unregister:
  54. {
  55. data.enforceInterface(DESCRIPTOR);
  56. com.example.aidl.IRemoteCallback _arg0;
  57. _arg0 = com.example.aidl.IRemoteCallback.Stub.asInterface(data.readStrongBinder());
  58. this.unregister(_arg0);
  59. reply.writeNoException();
  60. return true;
  61. }
  62. case TRANSACTION_execute:
  63. {
  64. data.enforceInterface(DESCRIPTOR);
  65. this.execute();
  66. reply.writeNoException();
  67. return true;
  68. }
  69. case TRANSACTION_getStatus:
  70. {
  71. data.enforceInterface(DESCRIPTOR);
  72. java.lang.String _arg0;
  73. _arg0 = data.readString();
  74. int _result = this.getStatus(_arg0);
  75. reply.writeNoException();
  76. reply.writeInt(_result);
  77. return true;
  78. }
  79. }
  80. return super.onTransact(code, data, reply, flags);
  81. }
  82. private static class Proxy implements com.example.aidl.IRemoteService
  83. {
  84. private android.os.IBinder mRemote;
  85. Proxy(android.os.IBinder remote)
  86. {
  87. mRemote = remote;
  88. }
  89. public android.os.IBinder asBinder()
  90. {
  91. return mRemote;
  92. }
  93. public java.lang.String getInterfaceDescriptor()
  94. {
  95. return DESCRIPTOR;
  96. }
  97. //注册回调
  98. public void register(com.example.aidl.IRemoteCallback callback) throws android.os.RemoteException
  99. {
  100. android.os.Parcel _data = android.os.Parcel.obtain();
  101. android.os.Parcel _reply = android.os.Parcel.obtain();
  102. try {
  103. _data.writeInterfaceToken(DESCRIPTOR);
  104. _data.writeStrongBinder((((callback!=null))?(callback.asBinder()):(null)));
  105. mRemote.transact(Stub.TRANSACTION_register, _data, _reply, 0);
  106. _reply.readException();
  107. }
  108. finally {
  109. _reply.recycle();
  110. _data.recycle();
  111. }
  112. }
  113. //取消注册回调
  114. public void unregister(com.example.aidl.IRemoteCallback callback) throws android.os.RemoteException
  115. {
  116. android.os.Parcel _data = android.os.Parcel.obtain();
  117. android.os.Parcel _reply = android.os.Parcel.obtain();
  118. try {
  119. _data.writeInterfaceToken(DESCRIPTOR);
  120. _data.writeStrongBinder((((callback!=null))?(callback.asBinder()):(null)));
  121. mRemote.transact(Stub.TRANSACTION_unregister, _data, _reply, 0);
  122. _reply.readException();
  123. }
  124. finally {
  125. _reply.recycle();
  126. _data.recycle();
  127. }
  128. }
  129. //执行回调
  130. public void execute() throws android.os.RemoteException
  131. {
  132. android.os.Parcel _data = android.os.Parcel.obtain();
  133. android.os.Parcel _reply = android.os.Parcel.obtain();
  134. try {
  135. _data.writeInterfaceToken(DESCRIPTOR);
  136. mRemote.transact(Stub.TRANSACTION_execute, _data, _reply, 0);
  137. _reply.readException();
  138. }
  139. finally {
  140. _reply.recycle();
  141. _data.recycle();
  142. }
  143. }
  144. //获取状态
  145. public int getStatus(java.lang.String flag) throws android.os.RemoteException
  146. {
  147. android.os.Parcel _data = android.os.Parcel.obtain();
  148. android.os.Parcel _reply = android.os.Parcel.obtain();
  149. int _result;
  150. try {
  151. _data.writeInterfaceToken(DESCRIPTOR);
  152. _data.writeString(flag);
  153. mRemote.transact(Stub.TRANSACTION_getStatus, _data, _reply, 0);
  154. _reply.readException();
  155. _result = _reply.readInt();
  156. }
  157. finally {
  158. _reply.recycle();
  159. _data.recycle();
  160. }
  161. return _result;
  162. }
  163. }
  164. static final int TRANSACTION_register = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
  165. static final int TRANSACTION_unregister = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
  166. static final int TRANSACTION_execute = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
  167. static final int TRANSACTION_getStatus = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
  168. }
  169. //注册回调
  170. public void register(com.example.aidl.IRemoteCallback callback) throws android.os.RemoteException;
  171. //取消注册回调
  172. public void unregister(com.example.aidl.IRemoteCallback callback) throws android.os.RemoteException;
  173. //执行回调
  174. public void execute() throws android.os.RemoteException;
  175. //获取状态
  176. public int getStatus(java.lang.String flag) throws android.os.RemoteException;
  177. }

在ClientActivity绑定远程Service并建立连接时会调用ServiceConnection.onServiceConnected(ComponentName name, IBinder service)

[java] view plaincopy

  1. public void onServiceConnected(ComponentName name, IBinder service) {
  2. remoteService = IRemoteService.Stub.asInterface(service);
  3. //注册回调
  4. try {
  5. remoteService.register(remoteCallback);
  6. } catch (RemoteException e) {
  7. e.printStackTrace();
  8. }
  9. }

IBinder service是从RemoteService返回的IRemoteService.Stub iBinder,这个对象是Server应用进程中的对象。

IRemoteService.Stub.asInterface(service)在本地创建了一个代理

public static com.example.aidl.IRemoteService asInterface(android.os.IBinder obj)

{

if ((obj==null)) {

return null;

}

android.os.IInterface iin = (android.os.IInterface)obj.queryLocalInterface(DESCRIPTOR);//这里肯定返回null

if (((iin!=null)&&(iin instanceof com.example.aidl.IRemoteService))) {

return ((com.example.aidl.IRemoteService)iin);

}

return new com.example.aidl.IRemoteService.Stub.Proxy(obj);//创建一个本地代理

}

当使用remoteService调用方法时,其实是调用了本地com.example.aidl.IRemoteService.Stub.Proxy对象的方法,从Proxy方法中可以看到,每个方法都执行了mRemote.transact(Stub.TRANSACTION_xxx, _data, _reply, 0);。

如:

[java] view plaincopy

  1. //获取状态
  2. public int getStatus(java.lang.String flag) throws android.os.RemoteException
  3. {
  4. android.os.Parcel _data = android.os.Parcel.obtain();
  5. android.os.Parcel _reply = android.os.Parcel.obtain();
  6. int _result;
  7. try {
  8. _data.writeInterfaceToken(DESCRIPTOR);
  9. _data.writeString(flag);
  10. mRemote.transact(Stub.TRANSACTION_getStatus, _data, _reply, 0);
  11. _reply.readException();
  12. _result = _reply.readInt();
  13. }
  14. finally {
  15. _reply.recycle();
  16. _data.recycle();
  17. }
  18. return _result;
  19. }

这一过程是把Client端的参数转换成Parcel(_data)传递到Server端,而在Server端又会把返回数据保存到_reply中,这就形成了一次交互。

mRemote是远程对象,transact方法会执行onTransact方法

[java] view plaincopy

  1. public final boolean transact(int code, Parcel data, Parcel reply,
  2. int flags) throws RemoteException {
  3. if (Config.LOGV) Log.v("Binder", "Transact: " + code + " to " + this);
  4. if (data != null) {
  5. data.setDataPosition(0);
  6. }
  7. boolean r = onTransact(code, data, reply, flags);
  8. if (reply != null) {
  9. reply.setDataPosition(0);
  10. }
  11. return r;
  12. }

这样就会执行远程的onTransact方法,

[java] view plaincopy

  1. case TRANSACTION_getStatus:
  2. {
  3. data.enforceInterface(DESCRIPTOR);
  4. java.lang.String _arg0;
  5. _arg0 = data.readString();
  6. int _result = this.getStatus(_arg0);
  7. reply.writeNoException();
  8. reply.writeInt(_result);
  9. return true;
  10. }

注意 int _result = this.getStatus(_arg0);,这就调用了Server端的getStatus(String flag),并把返回结果写到Client端的代理Proxy对象的_reply中

到此,aidl通信过程就完成了。

PS: aidl通信有点复杂,但仔细分析并不是很难

时间: 2024-10-14 09:12:56

深入分析AIDL原理的相关文章

AIDL原理之 Framewok层实现

AIDLFramework层的架构,如下图: 换而言之,Android就是在传统的C/S架构中加入了一层,实现IPC.图中表明,AIDL类似COM的Proxy/Stub架构.不过是现在android自己的序列化类Pacel. 打个比方,你到自动取款机上去取款:你就是客户,取款机就是你的代理:你不会在乎钱具体放在那里,你只想看到足够或更多的钱从出口出来(这就是com的透明性).你同银行之间的操作完全是取款机代理实现.你的取款请求通过取款机,传到另一头,银行的服务器,他也没有必要知道你在哪儿取钱,他

AIDL原理解析

首先为什么需要aidl? 下面是不需要aidl 的binder的IPC通讯过程,表面上结构很简单,但是有个困难就是,客户端和服务端进行通讯,你得先将你的通讯请求转换成序列化的数据,然后调用transact()函数发送给服务端,而且还得制定一个小协议,参数谁先谁后,服务端和客户端都必须一致,否则就会出错.这样的过程有没有觉的很麻烦,如果有上百个接口,那可就要疯掉了.可不可以就像调用自家函数那样呢?而不需要麻烦的将参数值转化成序列化数据呢?由此AIDL诞生了. 好,我定义一下服务的函数,然后写成一个

深入分析Synchronized原理

前言 记得开始学习Java的时候,一遇到多线程情况就使用synchronized,相对于当时的我们来说synchronized是这么的神奇而又强大,那个时候我们赋予它一个名字“同步”,也成为了我们解决多线程情况的百试不爽的良药.但是,随着学习的进行我们知道在JDK1.5之前synchronized是一个重量级锁,相对于j.u.c.Lock,它会显得那么笨重,以至于我们认为它不是那么的高效而慢慢摒弃它. 不过,随着Javs SE 1.6对synchronized进行的各种优化后,synchroni

网易电面题总结

死锁是什么 所谓死锁: 是指两个或两个以上的进程在执行过程中,由于竞争资源或者由于彼此通信而造成的一种阻塞的现象,若无外力作用,它们都将无法推进下去.此时称系统处于死锁状态或系统产生了死锁,这些永远在互相等待的进程称为死锁进程. android中使用static有什么用 被static修饰的成员变量和成员方法独立于该类的任何对象.也就是说,它不依赖类特定的实例,被类的所有实例共享.只要这个类被加载,Java虚拟机就能根据类名在运行时数据区的方法区内定找到他们.因此,static对象可以在它的任何

解析 Aidl 文件

之前介绍过Android进程间通信(IPC)的使用,写过一些Demo.但仅仅是拿来用,并没有深入分析aidl是怎样可以做到进程间通信的. 当创建 ITelephony.aidl文件时,aidl会为我们在gen目录中创建相应的文件. package com.android.internal.telephony; public interface ITelephony extends android.os.IInterface { /** Local-side IPC implementation

AlarmManager实现精准定时任务

在项目中,有这么一个功能点,app进程中,需要实现一个定时任务,只要设备处于开机状态,每隔半个小时,就需要定时向服务器上传一次位置信息,并且只要是有网络和获取到GPS信号,进程不能死,如果进程死掉了,需要自动重启.对该点进行细分梳理,包含如下几个小功能点: 1.进程能够实现开机启动. 2.进程需要一直存活,并且能够自动重启. 3.需要定时(30分钟)一次,向server端上报信息. 针对以上三个功能点,第1和2点,实现起来,都不难,唯独第三点,在实现时,一般情况,会考虑到多种方式实现.由于没有自

Android安卓开发知识库汇总

初级 Android 面试知识库 Android 面试题总结之Android 进阶(二) - fuchenxuan blog - 博客频道 - CSDN.NET 如何成为一名优秀的程序员 | Mystra 2016Android某公司面试题 | yuweiguo's blog 我面试到底问什么? - AndroidDeveloper - 知乎专栏 扫清Android面试障碍 [Android基础]Android总结篇 - 陶程的博客 - 博客频道 - CSDN.NET AndroidStudyD

Oracle学习路线

这是本人收藏的一个大师写的,用来提示自己oracle学习路线 1.sql.pl/sql(网上有很多的视频,可以做一个简单的入手,然后看几本书,多做实验)    作为oracle的基本功,需要大家对sql和plsql非常的熟悉.特别是sql里面的多表连接.子查询.各种新版本的函数,以及plsql里面的所有 语法.建议大家拿出足够的时间来研究这两块.不要认为这是开发人员的工作,他也是DBA的重要工作,而且对DBA的要求更高,你不但能看懂,还要能够找出 问题.学些这方面知识的要点就是:多练.多思考.2

八年Android开发,从码农到架构师分享我的技术成长之路

前言 移动研发火热不停,越来越多人开始学习android开发.但很多人感觉入门容易成长很难,对未来比较迷茫,不知道自己技能该怎么提升,到达下一阶段需要补充哪些内容.市面上也多是谈论知识图谱,缺少体系和成长节奏感,特此编写一份android研发进阶之路,希望能对大家有所帮助. 这篇文章里,我们只谈技术,不谈软技能. 在这里我把攻城狮分成初级.中级.高级和资深四个阶段,分别对研发设计能力.工具使用.系统原理和架构等作出要求. 初级 我对初级研发攻城狮的定义是掌握基础的android知识,能够独立完成