Android-AIDL進(jìn)程間通信

**版權(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();
        }
    }
}
}

demo下載

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 230,563評(píng)論 6 544
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,694評(píng)論 3 429
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事?!?“怎么了?”我有些...
    開封第一講書人閱讀 178,672評(píng)論 0 383
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,965評(píng)論 1 318
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,690評(píng)論 6 413
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 56,019評(píng)論 1 329
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 44,013評(píng)論 3 449
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 43,188評(píng)論 0 290
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,718評(píng)論 1 336
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,438評(píng)論 3 360
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,667評(píng)論 1 374
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 39,149評(píng)論 5 365
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,845評(píng)論 3 351
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 35,252評(píng)論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,590評(píng)論 1 295
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 52,384評(píng)論 3 400
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,635評(píng)論 2 380