Android IPC浅析之Binder

在认识IPC(Inter-Process Communication,进程间通信)之前,肯定要先理解什么是线程,什么是进程?在多数操作系统中,线程是最小的可操作调度单元。而进程一般则是一个具体的应用(比如QQ、微信),其可以包含有多个线程。要在不同的进程进行数据的传输与通信,就需要用到IPC机制了。

在Android中跨进程通信的方式有很多,如intent传递、读写文件、socket通信、SharedPreferences(不可靠)、ContentProvider以及Binder等。本文主要讲解Binder机制的用法及其简单原理,这次的demo是客户端跨进程请求服务端返回一个我们需要的int值,效果如下:


简单来说Binder是Android系统为我们提供的一个用于进程通信的类,我们一般通过AIDL语言自动让ide工具为我们生成(如果你不嫌累不嫌头疼完全可以自己写),其结构类似这样:

package com.example.lucky.aidl;
// Declare any non-default types here with import statements

public interface IMyAidlInterface extends android.os.IInterface
{
    public int plusResult(int a, int b) throws android.os.RemoteException;
    /** Local-side IPC implementation stub class. */
    public static abstract class Stub extends android.os.Binder implements com.example.lucky.aidl.IMyAidlInterface
    {
        private static final java.lang.String DESCRIPTOR = "com.example.lucky.aidl.IMyAidlInterface";
        /** Construct the stub at attach it to the interface. */
        public Stub()
        {
            this.attachInterface(this, DESCRIPTOR);
        }
        /**
         * Cast an IBinder object into an com.example.lucky.aidl.IMyAidlInterface interface,
         * generating a proxy if needed.
         */
        public static com.example.lucky.aidl.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.lucky.aidl.IMyAidlInterface))) {
            return ((com.example.lucky.aidl.IMyAidlInterface)iin);
        }
            return new com.example.lucky.aidl.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
        {
            return super.onTransact(code, data, reply, flags);
        }
        private static class Proxy implements com.example.lucky.aidl.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 int plusResult(int a, int b) throws android.os.RemoteException
        {
        android.os.Parcel _data = android.os.Parcel.obtain();
        android.os.Parcel _reply = android.os.Parcel.obtain();
        int _result;
        try {
        _data.writeInterfaceToken(DESCRIPTOR);
        _data.writeInt(a);
        _data.writeInt(b);
        mRemote.transact(Stub.TRANSACTION_plusResult, _data, _reply, 0);
        _reply.readException();
        _result = _reply.readInt();
        }
        finally {
        _reply.recycle();
        _data.recycle();
        }
        return _result;
        }
        }
        static final int TRANSACTION_plusResult = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
    }

}

乍一看代码很杂乱,逻辑也很复杂,其实对于我们这样的萌新只需要理解清这个接口的内部类Stub、内部类中的asInterface(android.os.IBinder obj)onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags)、以及Proxy就可以简单使用Binder了。下面我会逐一分析这些。

Stub

这个Stub就是我们需要的Binder类了,当我们在客户端bindService时会通过远程服务端的onBinder方法中会return 给我们.

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        return mBinder;
    }

通过这个Binder类,我们可以就在客户端取得 他的内部类Proxy,从而在客户端完成相应操作。

asInterface(android.os.IBinder obj)

通过此方法我们可以将服务端生成的Binder对象(Stub)转化成AIDL接口型的对象。需要注意的是此方法是区分进程的,如果客户端和服务端处于同一进程,则不会进行转换,直接把Stub返回给客户端,当处于不同进程时,会返回Stub.Proxy对象。

public static com.example.lucky.aidl.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.lucky.aidl.IMyAidlInterface))) {
            return ((com.example.lucky.aidl.IMyAidlInterface)iin);
        }
            return new com.example.lucky.aidl.IMyAidlInterface.Stub.Proxy(obj);
}
onTransact

此方法运行在服务端的Binder线程池中,当我们在客户端远程请求服务端的方法时,就会执行该方法。我们可以发现它就收的参数类型int code, android.os.Parcel data, android.os.Parcel reply, int flags都是可序列化的Parcel 型,这点后面会讲。基本原理就是服务端通过data取出客户端传入的参数,然后写入reply返回给客户端。

Proxy

Proxy可以直译为代理人,从名字上我们就能看出这是服务端返回给我们的Binder的一个代理人(为了与时俱进,我们可以把它称作经纪人~),通过它我们可以在客户端远程调用服务端的方法。注意此时会挂起客户端的当前线程,直到服务器返回数据成功,所以如果我们直接在此处更新UI是很容易引起ANR让我们的应用挂掉(因为等待服务器一般都比较耗时)!为了避免ANR,常用的方法就是新建线程通过判断返回的Proxy是否为null来请求服务端。

通过上面的分析我们应该对Binder的工作流程有了一定的了解,接下来就通过demo代码,更直观地学会如何使用Binder进行进程间通信。

Demo创建流程

  • 1 创建AIDL接口
// IMyAidlInterface.aidl
package com.example.lucky.aidl;

// Declare any non-default types here with import statements

interface IMyAidlInterface {

    int plusResult(in int a, in int b);
}

这儿只声明了一个方法plusResult,往后看就会发现,通过AIDL暴露出来的方法会在Service端实现,从而让客户端调用。这儿我们只关心AIDL文件中支持的数据类型:java基本数据类型、ArrayList(里面元素也必须支持AIDL)、HashMap(里面元素也必须支持AIDL)、所有可序列化的自定义对象(实现了Parcelable接口)。这儿我们的plusResult方法中接收的参数是最简单的int型,如果是自定义的Parcel对象,我们还需要额外创建AIDL文件声明该对象。例:

 int plusResult(in int a, in User use);

我们必须在同目录下声明该User对象:

// IMyAidlInterface.aidl
package com.example.lucky.aidl;

parcelable User;

参数名前面的in、out分别表示输入、输出型参数。

  • 2 创建远程服务端
    此例的Service为了额外创建新的工程直接通过android:process=".anotherProcess"属性将其进程定义为了其他线程。
public class PlusService extends Service {

    private Binder mBinder;
    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        return mBinder;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        mBinder = new IMyAidlInterface.Stub() {
            @Override
            public int plusResult(int a, int b) throws RemoteException {
                /*try {
                    new Thread().sleep(3000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }*/
                return a+b;
            }
        };
    }
}

代码十分简单,主要在onCreate时实例化 了IMyAidlInterface.Stub,在其中实现了客户端请求的plusResult方法,然后通过onBind传递出去。

  • 3 客户端bindService进行远程请求
public class MainActivity extends AppCompatActivity {

    private ServiceConnection mServiceConnection;
    private int plusResult;
    @InjectView(R.id.firstEditText)
    EditText firstEditText;
    @InjectView(R.id.secondEditText)
    EditText secondEditText;
    @InjectView(R.id.result)
    TextView result;
    @InjectView(R.id.mButton)
    Button mButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.inject(this);
        mButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if ((firstEditText.getText().length()==0) || (secondEditText.getText().length()==0)) {
                    Toast.makeText(MainActivity.this,"请输入数字",Toast.LENGTH_LONG).show();
                    return;
                } else {
                    final int a = Integer.valueOf(firstEditText.getText().toString().trim());
                    final int b = Integer.valueOf(secondEditText.getText().toString().trim());
                    mServiceConnection = new ServiceConnection() {

                        //onServiceConnected onServiceDisconnected都是在UI线程中进行的,所以当需要耗时操作时,可以通过判断bookManager(proxy)对象是否为空,在子线程中进行
                        @Override
                        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
                            IMyAidlInterface myAidlInterface = IMyAidlInterface.Stub.asInterface(iBinder);
                            try {
                                plusResult = myAidlInterface.plusResult(a,b);
                                result.setText(" "+plusResult);
                                Toast.makeText(MainActivity.this,"服务器响应拉,亲~",Toast.LENGTH_LONG).show();
                            } catch (RemoteException e) {
                                e.printStackTrace();
                            }
                        }

                        @Override
                        public void onServiceDisconnected(ComponentName componentName) {

                        }
                    };
                    Intent intent = new Intent(MainActivity.this,PlusService.class);
                    if (mServiceConnection != null) {
                        bindService(intent,mServiceConnection, Context.BIND_AUTO_CREATE);
                    }
                }

            }
        });
    }

    @Override
    protected void onDestroy() {
        if (mServiceConnection != null) {
            unbindService(mServiceConnection);
        }
        super.onDestroy();
    }
}

在ServiceConnection 的onServiceConnected回调方法中我们获得了我们想要的经纪人IMyAidlInterface myAidlInterface = IMyAidlInterface.Stub.asInterface(iBinder);,通过它就可以远程请求服务端的方法了,这儿为了代码简洁没有新建线程处理,其实只要在服务端sleep一下,客户的程序就很容易ANR挂掉了,有兴趣的同学可以自己尝试一下。最后千万别忘记在客户端unbindService,这样一个简单的跨进程通信demo就创建好了~

总结下使用AIDL时的那些坑:
  • 客户端、服务端所有AIDL文件的packagename必须手动修改为相同的
  • 远程服务端需要通过android:exported="true"属性暴露出来
  • 有时候找不到系统自动生成的Binder类,我们需要remake一下这个工程
  • 自定义创建的对象一定要实现Parcelable且额外声明
  • AIDL即使在相同package内,也要手动导包
    。。。。。。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容