AIDL解析

AIDL是Android中IPC方式中的一种。

AIDL的使用

创建aidl后缀的文件,服务端和客户端各保存一份,包名路径必须一致

interface IMyAidlInterface {
    void getName();
}

创建远端服务

public class RemoteService extends Service {

    @Override
    public IBinder onBind(Intent intent) {
        return new ServiceBinder();
    }

    private class ServiceBinder extends IMyAidlInterface.Stub {
        
            @Override
            public void getName() {
                Log.i("RemoteService", "getName");
            }
    }
}

客户端绑定服务

public class MainActivity extends AppCompatActivity {

    private IMyAidlInterface myAidlInterface;
    
    ServiceConnection connection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            myAidlInterface = IMyAidlInterface.Stub.asInterface(service);
            myAidlInterface.getName();
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent serviceIntent = new Intent("com.example.application.RemoteService");
        bindService(serviceIntent, connection, Context.BIND_AUTO_CREATE);
    }
}

AIDL生成的文件

aidl的后缀文件是Android studio的简化处理,IMyAidlInterface具体实现

public interface IMyAidlInterface extends android.os.IInterface
{
    public static abstract class Stub extends android.os.Binder implements com.example.application.IMyAidlInterface
    {
        private static final java.lang.String DESCRIPTOR = "com.example.application.IMyAidlInterface";
        public Stub()
        {
            this.attachInterface(this, DESCRIPTOR);
        }
        
        public static com.example.application.IMyAidlInterface asInterface(android.os.IBinder obj)
        {
            if ((obj==null)) {
                return null;
            }
            android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
            if (((iin!=null)&&(iin instanceof com.example.application.IMyAidlInterface))) {
                return ((com.example.application.IMyAidlInterface)iin);
            }
            return new com.example.application.IMyAidlInterface.Stub.Proxy(obj);
        }
        @Override public android.os.IBinder asBinder()
        {
            return this;
        }
        @Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
        {
            switch (code)
            {
                case INTERFACE_TRANSACTION:
                {
                    reply.writeString(DESCRIPTOR);
                    return true;
                }
                case TRANSACTION_getName:
                {
                    data.enforceInterface(DESCRIPTOR);
                    this.getName();
                    reply.writeNoException();
                    return true;
                }
            }
            return super.onTransact(code, data, reply, flags);
        }
        private static class Proxy implements com.example.application.IMyAidlInterface
        {
            private android.os.IBinder mRemote;
            Proxy(android.os.IBinder remote)
            {
                mRemote = remote;
            }
            @Override public android.os.IBinder asBinder()
            {
                return mRemote;
            }
            public java.lang.String getInterfaceDescriptor()
            {
                return DESCRIPTOR;
            }
            @Override public void getName() throws android.os.RemoteException
            {
                android.os.Parcel _data = android.os.Parcel.obtain();
                android.os.Parcel _reply = android.os.Parcel.obtain();
                try {
                    _data.writeInterfaceToken(DESCRIPTOR);
                    mRemote.transact(Stub.TRANSACTION_getName, _data, _reply, 0);
                    _reply.readException();
                }
                finally {
                    _reply.recycle();
                    _data.recycle();
                }
            }
        }
        static final int TRANSACTION_getName = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
    }
    public void getName() throws android.os.RemoteException;
}
  1. IMyAidlInterface继承android.os.IInterface,包含了一个静态内部类Stub。
  2. Stub继承了android.os.Binder实现IMyAidlInterface接口。
    Stub是本地服务的抽象类。
  3. Proxy同样实现了接口IMyAidlInterface,是Stub的静态内部类
    Proxy是远端服务在本地的代理
Stub-proxy的工作流程
  1. RemoteService中的IBinder对象是Stub的具体实现,在RemoteService被绑定的时候返回(onServiceConnected)
  2. 客户端会调用Stub中的静态方法Stub.asInterface(IBinder),拿到远端服务接口IMyAidlInterface
  3. 在asInterface方法中首先会判断Binder是否处在当前进程,如果是不同进程构造Proxy返回,否则返回Stub。构造Proxy时,把mServiceBinder赋值给mRemote,Proxy中实现的接口getName会调用mRemote的transact方法,而Binder的通信是靠transact和onTransact实现的,最后会走到Stub的onTransact,完成对mServiceBinder的调用

aidl通信体现着代理模式的设计思想,RemoteService具体实现了Stub,Proxy是Stub在本地的代理对象,Proxy与Stub依靠transact和onTransact通信,Proxy与Stub的封装设计最终很方便地完成了本地与服务跨进程通信

判断是否是同个进程

通过Stub.asInterface(iBinder) 判断Binder是否处在当前进程

  1. DESCRIPTOR是当前类接口描述符,为类的全路径,这也是我们在使用aidl 的时候服务端和客户端必须要保证相同路径下的原因,因为他被保存下来作为参数用于比对当前类是否是本地类还是远程。
  2. 我们调用IMyAidlInterface.Stub.asInterface 来获取一个 IMyAidlInterface 类型的类,这个Stub 是客户端本地的Stub
  3. 之后会调用queryLocalInterface 通过 DESCRIPTOR 获取接口对象,这个方法是用来查询本地接口的,有说明是同个进程则直接返回,没有就返回null。这个obj 是binder 代理,因为我们的服务在远程所以其类型是一个BinderProxy ,调用的是BinderProxy 的 queryLocalInterface
public static abstract class Stub extends android.os.Binder implements com.example.application.IMyAidlInterface
    {
        private static final java.lang.String DESCRIPTOR = "com.example.application.IMyAidlInterface";
     
        public static com.example.application.IMyAidlInterface asInterface(android.os.IBinder obj)
        {
            if ((obj==null)) {
                return null;
            }
            android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
            if (((iin!=null)&&(iin instanceof com.example.application.IMyAidlInterface))) {
                return ((com.example.application.IMyAidlInterface)iin);
            }
            return new com.example.application.IMyAidlInterface.Stub.Proxy(obj);
        }

queryLocalInterface返回null,也就是asInterface 中iin为null 所以返回了一个IMyAidlInterface.Stub.Proxy(obj) ,也就是 IMyAidlInterface 的代理对象,我们可以通过这个代理接口调用远程服务

public final class BinderProxy implements IBinder {
    
    public @Nullable IInterface queryLocalInterface( String descriptor) {
          return null;
    }
}

如果是一个本地Binder,执行的是Binder 中的queryLocalInterface 方法
这里mDescriptor 就是上边说的本地Binder 初始化时保存的接口描述符,这里两个进行对比,如果一样,就返回本地接口对象
然后返回本地久接口实例,这样就不走binder跨进程通信 ,走本地通信就可以了。

public class Binder implements IBinder {

    public @Nullable IInterface queryLocalInterface(@NonNull String descriptor) {
        if (mDescriptor != null && mDescriptor.equals(descriptor)) {
            return mOwner;
        }
        return null;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,163评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,301评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,089评论 0 352
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,093评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,110评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,079评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,005评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,840评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,278评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,497评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,394评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,980评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,628评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,649评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,548评论 2 352

推荐阅读更多精彩内容