Binder能幹什麼?Binder能夠提供系統中任何程序均可以訪問的全局服務。這個功能固然是任何系統都應該提供的,下面咱們簡單看一下Android的Binder的框架java
Android Binder框架分爲服務器接口、Binder驅動、以及客戶端接口;簡單想一下,須要提供一個全局服務,那麼全局服務那端便是服務器接口,任何程序即客戶端接口,它們之間經過一個Binder驅動訪問。android
服務器端接口:其實是Binder類的對象,該對象一旦建立,內部則會啓動一個隱藏線程,會接收Binder驅動發送的消息,收到消息後,會執行Binder對象中的onTransact()函數,並按照該函數的參數執行不一樣的服務器端代碼。服務器
Binder驅動:該對象也爲Binder類的實例,客戶端經過該對象訪問遠程服務。app
客戶端接口:得到Binder驅動,調用其transact()發送消息至服務器框架
若是你們對上述不瞭解,不要緊,下面會經過例子來更好的說明,實踐是檢驗真理的惟一標準嘛ide
若是對Android比較熟悉,那麼必定使用過AIDL,若是你還不瞭解,那麼也不要緊,下面會使用一個例子展現AIDL的用法。函數
咱們使用AIDL實現一個跨進程的加減法調用佈局
新建一個項目,建立一個包名:com.zhy.calc.aidl,在包內建立一個ICalcAIDL文件:測試
package com.zhy.calc.aidl;
this
interface ICalcAIDL
{
int add(int x , int y);
int min(int x , int y );
}
注意,文件名爲ICalcAIDL.aidl
而後在項目的gen目錄下會生成一個ICalcAIDL.java文件,暫時不貼這個文件的代碼了,後面會詳細說明
而後咱們在項目中新建一個Service,代碼以下:
package com.example.zhy_binder;
import com.zhy.calc.aidl.ICalcAIDL;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
public class CalcService extends Service
{
private static final String TAG = "server";
public void onCreate()
{
Log.e(TAG, "onCreate");
}
public IBinder onBind(Intent t)
{
Log.e(TAG, "onBind");
return mBinder;
}
public void onDestroy()
{
Log.e(TAG, "onDestroy");
super.onDestroy();
}
public boolean onUnbind(Intent intent)
{
Log.e(TAG, "onUnbind");
return super.onUnbind(intent);
}
public void onRebind(Intent intent)
{
Log.e(TAG, "onRebind");
super.onRebind(intent);
}
private final ICalcAIDL.Stub mBinder = new ICalcAIDL.Stub()
{
public int add(int x, int y) throws RemoteException
{
return x + y;
}
public int min(int x, int y) throws RemoteException
{
return x - y;
}
};
}
在此Service中,使用生成的ICalcAIDL建立了一個mBinder的對象,並在Service的onBind方法中返回
最後記得在AndroidManifest中註冊
<service android:name="com.example.zhy_binder.CalcService" >
<intent-filter>
<action android:name="com.zhy.aidl.calc" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
這裏咱們指定了一個name,由於咱們一會會在別的應用程序中經過Intent來查找此Service;這個不須要Activity,因此我也就沒寫Activity,安裝完成也看不到安裝圖標,悄悄在後臺運行着。
到此,服務端編寫完畢。下面開始編寫客戶端
客戶端的代碼比較簡單,建立一個佈局,裏面包含4個按鈕,分別爲綁定服務,解除綁定,調用加法,調用減法
佈局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="bindService"
android:text="BindService" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="unbindService"
android:text="UnbindService" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="addInvoked"
android:text="12+12" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="minInvoked"
android:text="50-12" />
</LinearLayout>
主Activity
package com.example.zhy_binder_client;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
import com.zhy.calc.aidl.ICalcAIDL;
public class MainActivity extends Activity
{
private ICalcAIDL mCalcAidl;
private ServiceConnection mServiceConn = new ServiceConnection()
{
public void onServiceDisconnected(ComponentName name)
{
Log.e("client", "onServiceDisconnected");
mCalcAidl = null;
}
public void onServiceConnected(ComponentName name, IBinder service)
{
Log.e("client", "onServiceConnected");
mCalcAidl = ICalcAIDL.Stub.asInterface(service);
}
};
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/**
* 點擊BindService按鈕時調用
* @param view
*/
public void bindService(View view)
{
Intent intent = new Intent();
intent.setAction("com.zhy.aidl.calc");
bindService(intent, mServiceConn, Context.BIND_AUTO_CREATE);
}
/**
* 點擊unBindService按鈕時調用
* @param view
*/
public void unbindService(View view)
{
unbindService(mServiceConn);
}
/**
* 點擊12+12按鈕時調用
* @param view
*/
public void addInvoked(View view) throws Exception
{
if (mCalcAidl != null)
{
int addRes = mCalcAidl.add(12, 12);
Toast.makeText(this, addRes + "", Toast.LENGTH_SHORT).show();
} else
{
Toast.makeText(this, "服務器被異常殺死,請從新綁定服務端", Toast.LENGTH_SHORT)
.show();
}
}
/**
* 點擊50-12按鈕時調用
* @param view
*/
public void minInvoked(View view) throws Exception
{
if (mCalcAidl != null)
{
int addRes = mCalcAidl.min(58, 12);
Toast.makeText(this, addRes + "", Toast.LENGTH_SHORT).show();
} else
{
Toast.makeText(this, "服務端未綁定或被異常殺死,請從新綁定服務端", Toast.LENGTH_SHORT)
.show();
}
}
}
很標準的綁定服務的代碼。
直接看運行結果:
咱們首先點擊BindService按鈕,查看log
08-09 22:56:38.959: E/server(29692): onCreate
08-09 22:56:38.959: E/server(29692): onBind
08-09 22:56:38.959: E/client(29477): onServiceConnected
能夠看到,點擊BindService以後,服務端執行了onCreate和onBind的方法,而且客戶端執行了onServiceConnected方法,標明服務器與客戶端已經聯通
而後點擊12+12,50-12能夠成功的調用服務端的代碼並返回正確的結果
下面咱們再點擊unBindService
08-09 22:59:25.567: E/server(29692): onUnbind
08-09 22:59:25.567: E/server(29692): onDestroy
因爲咱們當前只有一個客戶端綁定了此Service,因此Service調用了onUnbind和onDestory
而後咱們繼續點擊12+12,50-12,經過上圖能夠看到,依然能夠正確執行,也就是說即便onUnbind被調用,鏈接也是不會斷開的,那麼何時會端口呢?
即當服務端被異常終止的時候,好比咱們如今在手機的正在執行的程序中找到該服務:
點擊中止,此時查看log
08-09 23:04:21.433: E/client(30146): onServiceDisconnected
能夠看到調用了onServiceDisconnected方法,此時鏈接被斷開,如今點擊12+12,50-12的按鈕,則會彈出Toast服務端斷開的提示。
說了這麼多,彷佛和Binder框架沒什麼關係,下面咱們來具體看一看AIDL爲何作了些什麼。
先看服務端的代碼,能夠看到咱們服務端提供的服務是由
private final ICalcAIDL.Stub mBinder = new ICalcAIDL.Stub()
{
@Override
public int add(int x, int y) throws RemoteException
{
return x + y;
}
@Override
public int min(int x, int y) throws RemoteException
{
return x - y;
}
};
ICalcAILD.Stub來執行的,讓咱們來看看Stub這個類的聲明:
public static abstract class Stub extends android.os.Binder implements com.zhy.calc.aidl.ICalcAIDL
清楚的看到這個類是Binder的子類,是否是符合咱們文章開通所說的服務端實際上是一個Binder類的實例
接下來看它的onTransact()方法:
@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_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);
return true;
}
case TRANSACTION_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);
return true;
}
}
return super.onTransact(code, data, reply, flags);
}
文章開頭也說到服務端的Binder實例會根據客戶端依靠Binder驅動發來的消息,執行onTransact方法,而後由其參數決定執行服務端的代碼。
能夠看到onTransact有四個參數
code , data ,replay , flags
code 是一個整形的惟一標識,用於區分執行哪一個方法,客戶端會傳遞此參數,告訴服務端執行哪一個方法
data客戶端傳遞過來的參數
replay服務器返回回去的值
flags標明是否有返回值,0爲有(雙向),1爲沒有(單向)
咱們仔細看case TRANSACTION_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的類,封裝了服務端原本須要寫的代碼。
客戶端主要經過ServiceConnected與服務端鏈接
private ServiceConnection mServiceConn = new ServiceConnection()
{
@Override
public void onServiceDisconnected(ComponentName name)
{
Log.e("client", "onServiceDisconnected");
mCalcAidl = null;
}
@Override
public void onServiceConnected(ComponentName name, IBinder service)
{
Log.e("client", "onServiceConnected");
mCalcAidl = ICalcAIDL.Stub.asInterface(service);
}
};
若是你比較敏銳,應該會猜到這個onServiceConnected中的IBinder實例,其實就是咱們文章開通所說的Binder驅動,也是一個Binder實例
在ICalcAIDL.Stub.asInterface中最終調用了:
return new com.zhy.calc.aidl.ICalcAIDL.Stub.Proxy(obj);
這個Proxy實例傳入了咱們的Binder驅動,而且封裝了咱們調用服務端的代碼,文章開頭說,客戶端會經過Binder驅動的transact()方法調用服務端代碼
直接看Proxy中的add方法
@Override public int add(int x, int y) 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(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對象,一個用於傳遞數據,一個用戶接收返回的數據
_data.writeInterfaceToken(DESCRIPTOR);與服務器端的enforceInterfac對應
_data.writeInt(x);
_data.writeInt(y);寫入須要傳遞的參數
mRemote.transact(Stub.TRANSACTION_add, _data, _reply, 0);
終於看到了咱們的transact方法,第一個對應服務端的code,_data,_repay分別對應服務端的data,reply,0表示是雙向的
_reply.readException();
_result = _reply.readInt();
最後讀出咱們服務端返回的數據,而後return。能夠看到和服務端的onTransact基本是一行一行對應的。
到此,咱們已經經過AIDL生成的代碼解釋了Android Binder框架的工做原理。Service的做用其實就是爲咱們建立Binder驅動,即服務端與客戶端鏈接的橋樑。
AIDL其實經過咱們寫的aidl文件,幫助咱們生成了一個接口,一個Stub類用於服務端,一個Proxy類用於客戶端調用。那麼咱們是否能夠不經過寫AIDL來實現遠程的通訊呢?下面向你們展現如何徹底不依賴AIDL來實現客戶端與服務端的通訊。
咱們新建一個CalcPlusService.java用於實現兩個數的乘和除
package com.example.zhy_binder;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.os.Parcel;
import android.os.RemoteException;
import android.util.Log;
public class CalcPlusService extends Service
{
private static final String DESCRIPTOR = "CalcPlusService";
private static final String TAG = "CalcPlusService";
public void onCreate()
{
Log.e(TAG, "onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
Log.e(TAG, "onStartCommand");
return super.onStartCommand(intent, flags, startId);
}
public IBinder onBind(Intent t)
{
Log.e(TAG, "onBind");
return mBinder;
}
public void onDestroy()
{
Log.e(TAG, "onDestroy");
super.onDestroy();
}
public boolean onUnbind(Intent intent)
{
Log.e(TAG, "onUnbind");
return super.onUnbind(intent);
}
public void onRebind(Intent intent)
{
Log.e(TAG, "onRebind");
super.onRebind(intent);
}
private MyBinder mBinder = new MyBinder();
private class MyBinder extends Binder
{
@Override
protected boolean onTransact(int code, Parcel data, Parcel reply,
int flags) throws RemoteException
{
switch (code)
{
case 0x110:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
int _arg1;
_arg1 = data.readInt();
int _result = _arg0 * _arg1;
reply.writeNoException();
reply.writeInt(_result);
return true;
}
case 0x111:
{
data.enforceInterface(DESCRIPTOR);
int _arg0;
_arg0 = data.readInt();
int _arg1;
_arg1 = data.readInt();
int _result = _arg0 / _arg1;
reply.writeNoException();
reply.writeInt(_result);
return true;
}
}
return super.onTransact(code, data, reply, flags);
}
};
}
咱們本身實現服務端,因此咱們自定義了一個Binder子類,而後複寫了其onTransact方法,咱們指定服務的標識爲CalcPlusService,而後0x110爲乘,0x111爲除;
記得在AndroidMenifest中註冊
<service android:name="com.example.zhy_binder.CalcPlusService" >
<intent-filter>
<action android:name="com.zhy.aidl.calcplus" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
服務端代碼結束。
單獨新建了一個項目,代碼和上例很相似
首先佈局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="bindService"
android:text="BindService" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="unbindService"
android:text="UnbindService" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="mulInvoked"
android:text="50*12" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="divInvoked"
android:text="36/12" />
</LinearLayout>
能夠看到加入了乘和除
而後是Activity的代碼
package com.example.zhy_binder_client03;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity
{
private IBinder mPlusBinder;
private ServiceConnection mServiceConnPlus = new ServiceConnection()
{
@Override
public void onServiceDisconnected(ComponentName name)
{
Log.e("client", "mServiceConnPlus onServiceDisconnected");
}
@Override
public void onServiceConnected(ComponentName name, IBinder service)
{
Log.e("client", " mServiceConnPlus onServiceConnected");
mPlusBinder = service;
}
};
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void bindService(View view)
{
Intent intentPlus = new Intent();
intentPlus.setAction("com.zhy.aidl.calcplus");
boolean plus = bindService(intentPlus, mServiceConnPlus,
Context.BIND_AUTO_CREATE);
Log.e("plus", plus + "");
}
public void unbindService(View view)
{
unbindService(mServiceConnPlus);
}
public void mulInvoked(View view)
{
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 (RemoteException e)
{
e.printStackTrace();
} finally
{
_reply.recycle();
_data.recycle();
}
}
}
public void divInvoked(View view)
{
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 (RemoteException e)
{
e.printStackTrace();
} finally
{
_reply.recycle();
_data.recycle();
}
}
}
}
爲了明瞭,我直接在mulInvoked裏面寫了代碼,和服務端都沒有抽象出一個接口。首先綁定服務時,經過onServiceConnected獲得Binder驅動即mPlusBinder;
而後準備數據,調用transact方法,經過code指定執行服務端哪一個方法,代碼和上面的分析一致。
下面看運行結果:
是否是很好的實現了咱們兩個應用程序間的通信,並無使用aidl文件,也從側面分析了咱們上述分析是正確的。
好了,就到這裏,相信你們看完這篇博文,對aidl和Binder的理解也會更加深入。
代碼先安裝server端的代碼,而後再安裝client端的。。。