1、概述
Binder能干什麼?Binder可以提供系統中任何程序都可以訪問的全局服務。這個功能當然是任何系統都應該提供的,下面我們簡單看一下Android的Binder的框架
Android Binder框架分為服務器接口、Binder驅動、以及客戶端接口;簡單想一下,需要提供一個全局服務,那麼全局服務那端即是服務器接口,任何程序即客戶端接口,它們之間通過一個Binder驅動訪問。
服務器端接口:實際上是Binder類的對象,該對象一旦創建,內部則會啟動一個隱藏線程,會接收Binder驅動發送的消息,收到消息後,會執行Binder對象中的onTransact()函數,並按照該函數的參數執行不同的服務器端代碼。
Binder驅動:該對象也為Binder類的實例,客戶端通過該對象訪問遠程服務。
客戶端接口:獲得Binder驅動,調用其transact()發送消息至服務器
如果大家對上述不了解,沒關系,下面會通過例子來更好的說明,實踐是檢驗真理的唯一標准嘛
2、AIDL的使用
如果對Android比較熟悉,那麼一定使用過AIDL,如果你還不了解,那麼也沒關系,下面會使用一個例子展示AIDL的用法。
我們使用AIDL實現一個跨進程的加減法調用
1、服務端
新建一個項目,創建一個包名:com.zhy.calc.aidl,在包內創建一個ICalcAIDL文件:
[java]view plaincopy
- packagecom.zhy.calc.aidl;
- interfaceICalcAIDL
- {
- intadd(intx,inty);
- intmin(intx,inty);
- }
注意,文件名為ICalcAIDL.aidl
然後在項目的gen目錄下會生成一個ICalcAIDL.java文件,暫時不貼這個文件的代碼了,後面會詳細說明
然後我們在項目中新建一個Service,代碼如下:
[java]view plaincopy
- packagecom.example.zhy_binder;
-
- importcom.zhy.calc.aidl.ICalcAIDL;
-
- importandroid.app.Service;
- importandroid.content.Intent;
- importandroid.os.IBinder;
- importandroid.os.RemoteException;
- importandroid.util.Log;
-
- publicclassCalcServiceextendsService
- {
- privatestaticfinalStringTAG="server";
-
- publicvoidonCreate()
- {
- Log.e(TAG,"onCreate");
- }
-
- publicIBinderonBind(Intentt)
- {
- Log.e(TAG,"onBind");
- returnmBinder;
- }
-
- publicvoidonDestroy()
- {
- Log.e(TAG,"onDestroy");
- super.onDestroy();
- }
-
- publicbooleanonUnbind(Intentintent)
- {
- Log.e(TAG,"onUnbind");
- returnsuper.onUnbind(intent);
- }
-
- publicvoidonRebind(Intentintent)
- {
- Log.e(TAG,"onRebind");
- super.onRebind(intent);
- }
-
- privatefinalICalcAIDL.StubmBinder=newICalcAIDL.Stub()
- {
-
- @Override
- publicintadd(intx,inty)throwsRemoteException
- {
- returnx+y;
- }
-
- @Override
- publicintmin(intx,inty)throwsRemoteException
- {
- returnx-y;
- }
-
- };
-
- }
在此Service中,使用生成的ICalcAIDL創建了一個mBinder的對象,並在Service的onBind方法中返回
[html]view plaincopy
-
-
-
-
-
-
這裡我們指定了一個name,因為我們一會會在別的應用程序中通過Intent來查找此Service;這個不需要Activity,所以我也就沒寫Activity,安裝完成也看不到安裝圖標,悄悄在後台運行著。
[html]view plaincopy
-
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- android:layout_height="wrap_content"
- android:onClick="bindService"
- android:text="BindService"/>
-
- android:layout_height="wrap_content"
- android:onClick="unbindService"
- android:text="UnbindService"/>
-
- android:layout_height="wrap_content"
- android:onClick="addInvoked"
- android:text="12+12"/>
-
- android:layout_height="wrap_content"
- android:onClick="minInvoked"
- android:text="50-12"/>
-
主Activity
[java]view plaincopy
- packagecom.example.zhy_binder_client;
-
- importandroid.app.Activity;
- importandroid.content.ComponentName;
- importandroid.content.Context;
- importandroid.content.Intent;
- importandroid.content.ServiceConnection;
- importandroid.os.Bundle;
- importandroid.os.IBinder;
- importandroid.util.Log;
- importandroid.view.View;
- importandroid.widget.Toast;
-
- importcom.zhy.calc.aidl.ICalcAIDL;
-
- publicclassMainActivityextendsActivity
- {
- privateICalcAIDLmCalcAidl;
-
- privateServiceConnectionmServiceConn=newServiceConnection()
- {
- @Override
- publicvoidonServiceDisconnected(ComponentNamename)
- {
- Log.e("client","onServiceDisconnected");
- mCalcAidl=null;
- }
-
- @Override
- publicvoidonServiceConnected(ComponentNamename,IBinderservice)
- {
- Log.e("client","onServiceConnected");
- mCalcAidl=ICalcAIDL.Stub.asInterface(service);
- }
- };
-
- @Override
- protectedvoidonCreate(BundlesavedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- }
-
- /**
- *點擊BindService按鈕時調用
- *@paramview
- */
- publicvoidbindService(Viewview)
- {
- Intentintent=newIntent();
- intent.setAction("com.zhy.aidl.calc");
- bindService(intent,mServiceConn,Context.BIND_AUTO_CREATE);
- }
- /**
- *點擊unBindService按鈕時調用
- *@paramview
- */
- publicvoidunbindService(Viewview)
- {
- unbindService(mServiceConn);
- }
- /**
- *點擊12+12按鈕時調用
- *@paramview
- */
- publicvoidaddInvoked(Viewview)throwsException
- {
-
- if(mCalcAidl!=null)
- {
- intaddRes=mCalcAidl.add(12,12);
- Toast.makeText(this,addRes+"",Toast.LENGTH_SHORT).show();
- }else
- {
- Toast.makeText(this,"服務器被異常殺死,請重新綁定服務端",Toast.LENGTH_SHORT)
- .show();
-
- }
-
- }
- /**
- *點擊50-12按鈕時調用
- *@paramview
- */
- publicvoidminInvoked(Viewview)throwsException
- {
-
- if(mCalcAidl!=null)
- {
- intaddRes=mCalcAidl.min(58,12);
- Toast.makeText(this,addRes+"",Toast.LENGTH_SHORT).show();
- }else
- {
- Toast.makeText(this,"服務端未綁定或被異常殺死,請重新綁定服務端",Toast.LENGTH_SHORT)
- .show();
-
- }
-
- }
-
- }
很標准的綁定服務的代碼。
直接看運行結果:
我們首先點擊BindService按鈕,查看log
[html]view plaincopy
- 08-0922:56:38.959:E/server(29692):onCreate
- 08-0922:56:38.959:E/server(29692):onBind
- 08-0922:56:38.959:E/client(29477):onServiceConnected
可以看到,點擊BindService之後,服務端執行了onCreate和onBind的方法,並且客戶端執行了onServiceConnected方法,標明服務器與客戶端已經聯通
[html]view plaincopy
- 08-0922:59:25.567:E/server(29692):onUnbind
- 08-0922:59:25.567:E/server(29692):onDestroy
-
由於我們當前只有一個客戶端綁定了此Service,所以Service調用了onUnbind和onDestory
然後我們繼續點擊12+12,50-12,通過上圖可以看到,依然可以正確執行,也就是說即使onUnbind被調用,連接也是不會斷開的,那麼什麼時候會端口呢?
即當服務端被異常終止的時候,比如我們現在在手機的正在執行的程序中找到該服務:
點擊停止,此時查看log
[html]view plaincopy
- 08-0923:04:21.433:E/client(30146):onServiceDisconnected
可以看到調用了onServiceDisconnected方法,此時連接被斷開,現在點擊12+12,50-12的按鈕,則會彈出Toast服務端斷開的提示。
[java]view plaincopy
- privatefinalICalcAIDL.StubmBinder=newICalcAIDL.Stub()
- {
-
- @Override
- publicintadd(intx,inty)throwsRemoteException
- {
- returnx+y;
- }
-
- @Override
- publicintmin(intx,inty)throwsRemoteException
- {
- returnx-y;
- }
-
- };
ICalcAILD.Stub來執行的,讓我們來看看Stub這個類的聲明:
publicstaticabstractclassStubextendsandroid.os.Binderimplementscom.zhy.calc.aidl.ICalcAIDL
清楚的看到這個類是Binder的子類,是不是符合我們文章開通所說的服務端其實是一個Binder類的實例
[java]view plaincopy
- @OverridepublicbooleanonTransact(intcode,android.os.Parceldata,android.os.Parcelreply,intflags)throwsandroid.os.RemoteException
- {
- switch(code)
- {
- caseINTERFACE_TRANSACTION:
- {
- reply.writeString(DESCRIPTOR);
- returntrue;
- }
- caseTRANSACTION_add:
- {
- data.enforceInterface(DESCRIPTOR);
- int_arg0;
- _arg0=data.readInt();
- int_arg1;
- _arg1=data.readInt();
- int_result=this.add(_arg0,_arg1);
- reply.writeNoException();
- reply.writeInt(_result);
- returntrue;
- }
- caseTRANSACTION_min:
- {
- data.enforceInterface(DESCRIPTOR);
- int_arg0;
- _arg0=data.readInt();
- int_arg1;
- _arg1=data.readInt();
- int_result=this.min(_arg0,_arg1);
- reply.writeNoException();
- reply.writeInt(_result);
- returntrue;
- }
- }
- returnsuper.onTransact(code,data,reply,flags);
- }
文章開頭也說到服務端的Binder實例會根據客戶端依靠Binder驅動發來的消息,執行onTransact方法,然後由其參數決定執行服務端的代碼。
可以看到onTransact有四個參數
code , data ,replay , flags
code 是一個整形的唯一標識,用於區分執行哪個方法,客戶端會傳遞此參數,告訴服務端執行哪個方法
data客戶端傳遞過來的參數
replay服務器返回回去的值
flags標明是否有返回值,0為有(雙向),1為沒有(單向)
我們仔細看caseTRANSACTION_min中的代碼
data.enforceInterface(DESCRIPTOR);與客戶端的writeInterfaceToken對用,標識遠程服務的名稱
int _arg0;
_arg0 = data.readInt();
int _arg1;
_arg1 = data.readInt();
接下來分別讀取了客戶端傳入的兩個參數
int _result = this.min(_arg0, _arg1);
reply.writeNoException();
reply.writeInt(_result);
然後執行this.min,即我們實現的min方法;返回result由reply寫回。
add同理,可以看到服務端通過AIDL生成Stub的類,封裝了服務端本來需要寫的代碼。
2、客戶端
客戶端主要通過ServiceConnected與服務端連接
[java]view plaincopy
- privateServiceConnectionmServiceConn=newServiceConnection()
- {
- @Override
- publicvoidonServiceDisconnected(ComponentNamename)
- {
- Log.e("client","onServiceDisconnected");
- mCalcAidl=null;
- }
-
- @Override
- publicvoidonServiceConnected(ComponentNamename,IBinderservice)
- {
- Log.e("client","onServiceConnected");
- mCalcAidl=ICalcAIDL.Stub.asInterface(service);
- }
- };
如果你比較敏銳,應該會猜到這個onServiceConnected中的IBinder實例,其實就是我們文章開通所說的Binder驅動,也是一個Binder實例
在ICalcAIDL.Stub.asInterface中最終調用了:
[java]view plaincopy
- returnnewcom.zhy.calc.aidl.ICalcAIDL.Stub.Proxy(obj);
這個Proxy實例傳入了我們的Binder驅動,並且封裝了我們調用服務端的代碼,文章開頭說,客戶端會通過Binder驅動的transact()方法調用服務端代碼
[java]view plaincopy
- @Overridepublicintadd(intx,inty)throwsandroid.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(x);
- _data.writeInt(y);
- mRemote.transact(Stub.TRANSACTION_add,_data,_reply,0);
- _reply.readException();
- _result=_reply.readInt();
- }
- finally{
- _reply.recycle();
- _data.recycle();
- }
- return_result;
- }
首先聲明兩個Parcel對象,一個用於傳遞數據,一個用戶接收返回的數據
[java]view plaincopy
- packagecom.example.zhy_binder;
-
- importandroid.app.Service;
- importandroid.content.Intent;
- importandroid.os.Binder;
- importandroid.os.IBinder;
- importandroid.os.Parcel;
- importandroid.os.RemoteException;
- importandroid.util.Log;
-
- publicclassCalcPlusServiceextendsService
- {
- privatestaticfinalStringDESCRIPTOR="CalcPlusService";
- privatestaticfinalStringTAG="CalcPlusService";
-
- publicvoidonCreate()
- {
- Log.e(TAG,"onCreate");
- }
-
- @Override
- publicintonStartCommand(Intentintent,intflags,intstartId)
- {
- Log.e(TAG,"onStartCommand");
- returnsuper.onStartCommand(intent,flags,startId);
- }
-
- publicIBinderonBind(Intentt)
- {
- Log.e(TAG,"onBind");
- returnmBinder;
- }
-
- publicvoidonDestroy()
- {
- Log.e(TAG,"onDestroy");
- super.onDestroy();
- }
-
- publicbooleanonUnbind(Intentintent)
- {
- Log.e(TAG,"onUnbind");
- returnsuper.onUnbind(intent);
- }
-
- publicvoidonRebind(Intentintent)
- {
- Log.e(TAG,"onRebind");
- super.onRebind(intent);
- }
-
- privateMyBindermBinder=newMyBinder();
-
- privateclassMyBinderextendsBinder
- {
- @Override
- protectedbooleanonTransact(intcode,Parceldata,Parcelreply,
- intflags)throwsRemoteException
- {
- switch(code)
- {
- case0x110:
- {
- data.enforceInterface(DESCRIPTOR);
- int_arg0;
- _arg0=data.readInt();
- int_arg1;
- _arg1=data.readInt();
- int_result=_arg0*_arg1;
- reply.writeNoException();
- reply.writeInt(_result);
- returntrue;
- }
- case0x111:
- {
- data.enforceInterface(DESCRIPTOR);
- int_arg0;
- _arg0=data.readInt();
- int_arg1;
- _arg1=data.readInt();
- int_result=_arg0/_arg1;
- reply.writeNoException();
- reply.writeInt(_result);
- returntrue;
- }
- }
- returnsuper.onTransact(code,data,reply,flags);
- }
-
- };
-
- }
我們自己實現服務端,所以我們自定義了一個Binder子類,然後復寫了其onTransact方法,我們指定服務的標識為CalcPlusService,然後0x110為乘,0x111為除;
記得在AndroidMenifest中注冊
[html]view plaincopy
-
-
-
-
服務端代碼結束。
2、客戶端代碼
單獨新建了一個項目,代碼和上例很類似
首先布局文件:
[html]view plaincopy
-
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- android:layout_height="wrap_content"
- android:onClick="bindService"
- android:text="BindService"/>
-
- android:layout_height="wrap_content"
- android:onClick="unbindService"
- android:text="UnbindService"/>
-
- android:layout_height="wrap_content"
- android:onClick="mulInvoked"
- android:text="50*12"/>
-
- android:layout_height="wrap_content"
- android:onClick="divInvoked"
- android:text="36/12"/>
-
可以看到加入了乘和除
[java]view plaincopy
- packagecom.example.zhy_binder_client03;
-
- importandroid.app.Activity;
- importandroid.content.ComponentName;
- importandroid.content.Context;
- importandroid.content.Intent;
- importandroid.content.ServiceConnection;
- importandroid.os.Bundle;
- importandroid.os.IBinder;
- importandroid.os.RemoteException;
- importandroid.util.Log;
- importandroid.view.View;
- importandroid.widget.Toast;
-
- publicclassMainActivityextendsActivity
- {
-
- privateIBindermPlusBinder;
- privateServiceConnectionmServiceConnPlus=newServiceConnection()
- {
- @Override
- publicvoidonServiceDisconnected(ComponentNamename)
- {
- Log.e("client","mServiceConnPlusonServiceDisconnected");
- }
-
- @Override
- publicvoidonServiceConnected(ComponentNamename,IBinderservice)
- {
-
- Log.e("client","mServiceConnPlusonServiceConnected");
- mPlusBinder=service;
- }
- };
-
- @Override
- protectedvoidonCreate(BundlesavedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- }
-
- publicvoidbindService(Viewview)
- {
- IntentintentPlus=newIntent();
- intentPlus.setAction("com.zhy.aidl.calcplus");
- booleanplus=bindService(intentPlus,mServiceConnPlus,
- Context.BIND_AUTO_CREATE);
- Log.e("plus",plus+"");
- }
-
- publicvoidunbindService(Viewview)
- {
- unbindService(mServiceConnPlus);
- }
-
- publicvoidmulInvoked(Viewview)
- {
-
- if(mPlusBinder==null)
- {
- Toast.makeText(this,"未連接服務端或服務端被異常殺死",Toast.LENGTH_SHORT).show();
- }else
- {
- android.os.Parcel_data=android.os.Parcel.obtain();
- android.os.Parcel_reply=android.os.Parcel.obtain();
- int_result;
- try
- {
- _data.writeInterfaceToken("CalcPlusService");
- _data.writeInt(50);
- _data.writeInt(12);
- mPlusBinder.transact(0x110,_data,_reply,0);
- _reply.readException();
- _result=_reply.readInt();
- Toast.makeText(this,_result+"",Toast.LENGTH_SHORT).show();
-
- }catch(RemoteExceptione)
- {
- e.printStackTrace();
- }finally
- {
- _reply.recycle();
- _data.recycle();
- }
- }
-
- }
-
- publicvoiddivInvoked(Viewview)
- {
-
- if(mPlusBinder==null)
- {
- Toast.makeText(this,"未連接服務端或服務端被異常殺死",Toast.LENGTH_SHORT).show();
- }else
- {
- android.os.Parcel_data=android.os.Parcel.obtain();
- android.os.Parcel_reply=android.os.Parcel.obtain();
- int_result;
- try
- {
- _data.writeInterfaceToken("CalcPlusService");
- _data.writeInt(36);
- _data.writeInt(12);
- mPlusBinder.transact(0x111,_data,_reply,0);
- _reply.readException();
- _result=_reply.readInt();
- Toast.makeText(this,_result+"",Toast.LENGTH_SHORT).show();
-
- }catch(RemoteExceptione)
- {
- e.printStackTrace();
- }finally
- {
- _reply.recycle();
- _data.recycle();
- }
- }
-
- }
- }
為了明了,我直接在mulInvoked裡面寫了代碼,和服務端都沒有抽象出一個接口。首先綁定服務時,通過onServiceConnected得到Binder驅動即mPlusBinder。