**版權(quán)聲明:本文為小斑馬偉原創(chuàng)文章,轉(zhuǎn)載請(qǐng)注明出處!
AIDL概述:AIDL是一個(gè)縮寫,全稱是Android Interface Definition Language,也就是Android接口定義語言,設(shè)計(jì)這門語言的目的是為了實(shí)現(xiàn)進(jìn)程間通信。接下來我寫了兩個(gè)demo(AildeService和AidleClient),他們之間通過AIDL方式實(shí)現(xiàn)兩個(gè)進(jìn)程之間互相通信。
一、 數(shù)據(jù)類序列化與反序列化
由于不同的進(jìn)程有著不同的內(nèi)存區(qū)域,并且它們只能訪問自己的那一塊內(nèi)存區(qū)域,所以我們不能像平時(shí)那樣,傳一個(gè)句柄過去就完事了——句柄指向的是一個(gè)內(nèi)存區(qū)域,現(xiàn)在目標(biāo)進(jìn)程根本不能訪問源進(jìn)程的內(nèi)存,那把它傳過去又有什么用呢?所以我們必須將要傳輸?shù)臄?shù)據(jù)轉(zhuǎn)化為能夠在內(nèi)存之間流通的形式。這個(gè)轉(zhuǎn)化的過程就叫做序列化與反序列化。
簡單來說是這樣的:比如現(xiàn)在我們要將一個(gè)對(duì)象的數(shù)據(jù)從客戶端傳到服務(wù)端去,我們就可以在客戶端對(duì)這個(gè)對(duì)象進(jìn)行序列化的操作,將其中包含的數(shù)據(jù)轉(zhuǎn)化為序列化流,然后將這個(gè)序列化流傳輸?shù)椒?wù)端的內(nèi)存中去,再在服務(wù)端對(duì)這個(gè)數(shù)據(jù)流進(jìn)行反序列化的操作,從而還原其中包含的數(shù)據(jù)——通過這種方式,我們就達(dá)到了在一個(gè)進(jìn)程中訪問另一個(gè)進(jìn)程的數(shù)據(jù)的目的。
public class ConnInfoParcel implements Comparable<ConnInfoParcel>, Parcelable{
private long id;
private String name;
private String password;
private int connType;
public static final Parcelable.Creator<ConnInfoParcel> CREATOR = new Parcelable.Creator<ConnInfoParcel>() {
@Override
public ConnInfoParcel createFromParcel(Parcel arg0) {
return new ConnInfoParcel(arg0);
}
@Override
public ConnInfoParcel[] newArray(int arg0) {
return new ConnInfoParcel[arg0];
}
};
public void readFromParcel(Parcel source) {
id = source.readLong();
name = source.readString();
connType = source.readInt();
password = source.readString();
}
public ConnInfoParcel (String name, String password) {
this.name = name;
this.password = password;
}
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeLong(id);
dest.writeString(name);
dest.writeString(password);
dest.writeInt(connType);
}
@Override
public int compareTo(ConnInfoParcel arg0) {
return 0;
}
public ConnInfoParcel(Parcel source) {
readFromParcel(source);
}
public ConnInfoParcel(long id2, String name2, int connType2,
String password2) {
this.id = id2;
this.name = name2;
this.connType = connType2;
this.password = password2;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public int getConnType() {
return connType;
}
public void setConnType(int connType) {
this.connType = connType;
}
@Override
public String toString() {
return "ConnInfoParcel [id=" + id + ", name=" + name + ", password="
+ password + ", connType=" + connType + "]";
}
}
二、 AIDL文件生成
AIDL文件生成需要注意幾點(diǎn):兩個(gè)項(xiàng)目之間AIDLE文件的包名和類名必須是一樣的。傳輸集合的數(shù)據(jù)時(shí),對(duì)象類需要?jiǎng)?chuàng)建一個(gè)AIDL文件,否則會(huì)導(dǎo)入類不成功。在AidleService工程中,創(chuàng)建了兩個(gè)AILD文件:ICtrl.aidl文件和InfoSetupAdapter.aidl文件。
ICtrl.aidl文件:用于注冊(cè)和反注冊(cè)服務(wù)端回調(diào)給服務(wù)端的方法,以及客戶端調(diào)用服務(wù)端的方法。
package com.android.service;
import com.android.service.InfoSetupAdapter;
/**
*for remote caller support some interface to ctrl
*@author weiwei
*
*/
interface ICtrl {
boolean registerInfoCallback(InfoSetupAdapter adapter);
boolean unregisterInfoCallback(InfoSetupAdapter adapter);
/*
*初始化
*@return
*/
boolean init();
boolean dial(String num);
boolean setSan();
boolean setMute(int mute);
}
InfoSetupAdapter.aidl文件:服務(wù)端回調(diào)數(shù)據(jù)給客戶端方法。
package com.android.service;
import com.android.service.ConnInfoParcel;
interface InfoSetupAdapter {
void connect(String deviceId,String name);
void powerState(boolean isOn);
void connList(in List<ConnInfoParcel> list);
}
兩個(gè)AILD之間的嵌套需要?jiǎng)?chuàng)建一個(gè)ConnInfoParcel的AIDL文件。否者import com.android.service.InfoSetupAdapter;會(huì)找不到。
package com.android.service;
parcelable ConnInfoParcel;
三、 RemoteInterfaceService類(AidlService服務(wù)端)
RemoteInterfaceService類:該類繼承Service類,在onBind方法里面實(shí)現(xiàn) ICtrl.Stub接口。
public class RemoteInterfaceService extends Service {
private final RemoteCallbackList<InfoSetupAdapter> mCallbacks = new RemoteCallbackList<InfoSetupAdapter>();
private ICtrl.Stub mBinder = new ICtrl.Stub() {
@Override
public boolean registerInfoCallback(InfoSetupAdapter adapter)
throws RemoteException {
if(adapter != null) {
boolean result = mCallbacks.register(adapter);
if(result) {
updateSetupInfo();
}
} else {
Log.i("test","callback adapter is null");
}
return false;
}
@Override
public boolean unregisterInfoCallback(InfoSetupAdapter adapter)
throws RemoteException {
if(adapter != null) {
return mCallbacks.unregister(adapter);
}
return false;
}
@Override
public boolean setSan() throws RemoteException {
Log.i("test","setSan()");
return false;
}
@Override
public boolean setMute(int mute) throws RemoteException {
Log.i("test"," setMute(int mute)"+mute);
return false;
}
@Override
public boolean init() throws RemoteException {
Log.i("test","init()");
return false;
}
@Override
public boolean dial(String num) throws RemoteException {
Log.i("test","dail"+num);
return false;
}
};
private synchronized void updateSetupInfo() {
Log.i("test","callback updateSetupInfo");
String name = " weiwei";
String password = "123";
boolean isOn = true;
int connType = 2;
Vector<ConnInfo> connVector = new Vector<ConnInfo>();
List<ConnInfoParcel> list = new ArrayList<ConnInfoParcel>();
for(ConnInfo info: connVector) {
Log.i("test","callback connlists" + info.getName());
list.add(new ConnInfoParcel(info.getId(),info.getName(),info.getConnType()
,info.getPassword()));
}
int count = mCallbacks.beginBroadcast();
for(int i = 0; i < count; ++i) {
try {
mCallbacks.getBroadcastItem(i).powerState(isOn);
mCallbacks.getBroadcastItem(i).connect(name, password);
mCallbacks.getBroadcastItem(i).connList(list);
} catch (RemoteException e) {
e.printStackTrace();
}
}
Log.i("test","beginBroadcast finish !!");
mCallbacks.finishBroadcast();
}
@Override
public IBinder onBind(Intent arg0) {
Log.i("test","onbind");
return mBinder;
}
}
在AndroidMainifest.xml文件中注冊(cè)該Service服務(wù)
<service android:name="com.android.service.RemoteInterfaceService">
<intent-filter >
<action android:name="com.android.servie.REMOTESERVICE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</service>
四、 DataManager類(AidlClient 客戶端)
DataManager類:該類實(shí)現(xiàn)對(duì)服務(wù)端的AIDL進(jìn)行綁定和取消綁定功能。并且在沒有綁定成功的情況下,進(jìn)行每隔100毫秒再一次綁定,直到綁定成功。
public class DataManager {
private static DataManager mDataManager;
private Context mContext;
private ICtrl mICtrl;
private List<ConnInfoParcel> list = new ArrayList<ConnInfoParcel>();
private DataManager(Context context) {
this.mContext = context;
bindService();
}
/**
* 設(shè)置值給服務(wù)端aidle
* @param name
*/
public void setName(String name) {
if(mICtrl != null) {
try {
mICtrl.dial(name);
} catch (RemoteException e) {
e.printStackTrace();
}
}
}
private void bindService() {
if(mICtrl == null) {
Intent intent = new Intent("com.zhonghong.REMOTESERVICE");
mContext.bindService(intent, conn, Context.BIND_AUTO_CREATE);
}
}
private ServiceConnection conn = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName arg0, IBinder service) {
Log.i("test","bind success" + service);
mICtrl = ICtrl.Stub.asInterface(service);
if(mICtrl != null) {
new Handler().post(new Runnable(){
@Override
public void run() {
try {
mICtrl.registerInfoCallback(mInfoAdapter);
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}
}
@Override
public void onServiceDisconnected(ComponentName arg0) {
mICtrl = null;
Log.i("test","bind failed");
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
bindService();
}
}, 100);
}
};
/**
* 服務(wù)端AIDL回調(diào)上來的數(shù)據(jù)
*/
private InfoSetupAdapter mInfoAdapter = new InfoSetupAdapter.Stub() {
@Override
public void powerState(boolean isOn) throws RemoteException {
Log.i("test","isOn ="+isOn);
}
@Override
public void connect(String deviceId, String name) throws RemoteException {
Log.i("test"," deviceId ="+ deviceId+"name ="+name);
}
@Override
public void connList(List<ConnInfoParcel> list) throws RemoteException {
Log.i("test","client connList");
for(ConnInfoParcel conn: list) {
Log.i("test","con"+conn.toString());
}
synchronized (list) {
list.clear();
list.addAll(list);
}
}
};
/**
* 反注冊(cè)
*/
public void onDestroy() {
mDataManager = null;
if(mICtrl != null) {
try {
mICtrl.unregisterInfoCallback(mInfoAdapter);
mContext.unbindService(conn);
} catch (RemoteException e) {
e.printStackTrace();
}
}
}
}