Android Framework源碼閱讀之BindService

這篇主要講BindService的主要邏輯 Api-27

bindService相比startService無非就是多了個可以持有Service的引用,那我們就針對這個功能作為切入點.

先看下BindService的使用流程

假設(shè)一個實現(xiàn)了AIDL的接口IDoSth.aidl
interface IDoSth {  
    void doSth();
}

調(diào)用流程:
Context.bindService(intent, connection, Service.BIND_AUTO_CREATE);

private ServiceConnection connection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        IDoSth currentService = IDownloadService.Stub.asInterface(service);
        try {
            currentService.doSth();
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
        ...
    }
};

開始源碼走起.

bindservice的入口為ContextImpl.bindService(Intent service, ServiceConnection conn, int flags);
然后ContextImpl.bindServiceCommon().
bindService和startService使用區(qū)別在于啟動者是可以持有Service的渠道的,這個渠道就是IServiceConnection

ContextImpl:
private boolean bindServiceCommon(Intent service, ServiceConnection conn, int flags, Handler handler, UserHandle user) {
    IServiceConnection sd = mPackageInfo.getServiceDispatcher(conn, getOuterContext(), handler, flags);
    // 拒絕隱式Intent
    validateServiceIntent(service);
    try {
        ...
        //3.調(diào)用服務(wù)端bindService
        int res = ActivityManager.getService().bindService(..., sd, ...);
        ...
    }
}

在bindServiceCommon這個方法里先是根據(jù)conn去獲得IServiceConnection sd.sd最終獲得的是LoadedApk的一個靜態(tài)內(nèi)部類InnerConnection.這個InnerConnection繼承了一個Stub,理解過AIDL都知道這是一個用于進程間通信的Binder.

private static class InnerConnection extends IServiceConnection.Stub{
    final WeakReference<LoadedApk.ServiceDispatcher> mDispatcher;

    InnerConnection(LoadedApk.ServiceDispatcher sd) {
        mDispatcher = new WeakReference<LoadedApk.ServiceDispatcher>(sd);
    }

    public void connected(ComponentName name, IBinder service) throws RemoteException {
        LoadedApk.ServiceDispatcher sd = mDispatcher.get();
        if (sd != null) {
            sd.connected(name, service);
        }
    }
}

InnerConnection的connected方法是去調(diào)用ServiceDispatcher的doConnected()方法,然后就調(diào)用ServiceConnection.onServiceConnected(),這樣一個正常的綁定Service的流程就結(jié)束了.先得出一個結(jié)論,那就是IServiceConnection是用于服務(wù)端回調(diào)客戶端的接口,最終服務(wù)端會把IBinder傳回給客戶端讓客戶端持有服務(wù)端Binder的句柄,即上述代碼:

    IDoSth currentService = IDownloadService.Stub.asInterface(service);//service就是IBinder

準備好IServiceConnection之后,就去調(diào)用服務(wù)端AMS的bindService()
服務(wù)端:

ActivityManagerService:
    public int bindService(IApplicationThread caller, IBinder token, Intent service,
            String resolvedType, IServiceConnection connection, int flags, String callingPackage,
            int userId) throws TransactionTooLargeException {
            ...
            synchronized(this) {
            return mServices.bindServiceLocked(caller, token, service,
                    resolvedType, connection, flags, callingPackage, userId);
            }
            ...
    }
    

這里的mServices就是AMS中用于管理Service啟動的ActiveServices

ActiveServices:

    int bindServiceLocked(IApplicationThread caller, IBinder token, Intent service,
            String resolvedType, final IServiceConnection connection, int flags,
            String callingPackage, final int userId) throws TransactionTooLargeException {
        ...
        //1.獲得要啟動的Service信息
        ServiceLookupResult res =
            retrieveServiceLocked(service, resolvedType, callingPackage, Binder.getCallingPid(),
                    Binder.getCallingUid(), userId, true, callerFg, isBindExternal);
        ...
        ServiceRecord s = res.record;
        ...
        //2.得到AppBindRecord,AppBindRecord描述的作用是連接Service和他的綁定者(IntentBindRecord)
        AppBindRecord b = s.retrieveAppBindingLocked(service, callerApp);
        ConnectionRecord c = new ConnectionRecord(b, activity, connection, flags, clientLabel, clientIntent);
        //3.啟動Service
        if ((flags&Context.BIND_AUTO_CREATE) != 0) {
            if (bringUpServiceLocked(s, service.getFlags(), callerFg, false, permissionsReviewRequired) != null) {
                return 0;
            }
        }
        ...
        //4.service如果準備好之后就可以調(diào)用ServiceConnection.connected()了
        if (s.app != null && b.intent.received) {
          //Service已經(jīng)運行, 我們可以立即發(fā)布connection.
          try {
              c.conn.connected(s.name, b.intent.binder, false);
          } catch (Exception e) {
              ...
          }
          
          if (b.intent.apps.size() == 1 && b.intent.doRebind) {
              requestServiceBindingLocked(s, b.intent, callerFg, true);
          }
        } else if (!b.intent.requested) {
            //5.
            requestServiceBindingLocked(s, b.intent, callerFg, false);
        }
    }

bindServiceLocked()這個方法里大致是這么個邏輯:

  1. 首先通過retrieveServiceLocked()獲得將要啟動的Service信息
  2. 然后去找IntentBindRecord,AppBindRecord.這里的操作是去做一系列綁定信息的添加.
  3. 這里如果目標Service還沒啟動,就會調(diào)用bringUpServiceLocked()去啟動Service并且返回非空,那么就直接return. 0,下面就不用執(zhí)行了,原因是啟動Service是個異步操作,這樣代碼就不好繼續(xù)下去.
  4. 這里有兩個判斷,一個是s.app != null && b.intent.received.這個received是在publishServiceLocked()之后才會設(shè)為true.所以第一次發(fā)布會跳過4,進入5
  5. requestServiceBindingLocked()會先調(diào)r.app.thread.scheduleBindService()進入客戶端調(diào)用ActivityThread.handleBindService()然后又會回到服務(wù)端,最終回到ActiveServices.publishServiceLocked().在這個方法里才把received設(shè)為true并調(diào)用c.conn.connected()最終觸發(fā)ServiceConnection.onServiceConnected()這個開頭有分析過.
ActiveServices:
  void publishServiceLocked(ServiceRecord r, Intent intent, IBinder service) {
    try {
        ...
        b.requested = true;
        b.received = true;
        for (int conni=r.connections.size()-1; conni>=0; conni--) {
            ArrayList<ConnectionRecord> clist = r.connections.valueAt(conni);
            for (int i=0; i<clist.size(); i++) {
                ...
                try {
                    c.conn.connected(r.name, service, false);
                } catch (Exception e) {
                }
                ...
            }
        }
    ...
    r.app.thread.scheduleBindService(r, i.intent.getIntent(), rebind, r.app.repProcState);
    ...
    return true;
  }

至此,這就是BindService的持有引用的過程.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市谣妻,隨后出現(xiàn)的幾起案子叹坦,更是在濱河造成了極大的恐慌界睁,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蕉鸳,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機竟稳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來熊痴,“玉大人他爸,你說我怎么就攤上這事」疲” “怎么了诊笤?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長巾陕。 經(jīng)常有香客問我讨跟,道長,這世上最難降的妖魔是什么鄙煤? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任晾匠,我火速辦了婚禮,結(jié)果婚禮上梯刚,老公的妹妹穿的比我還像新娘凉馆。我一直安慰自己,他們只是感情好亡资,可當我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布澜共。 她就那樣靜靜地躺著,像睡著了一般锥腻。 火紅的嫁衣襯著肌膚如雪嗦董。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天瘦黑,我揣著相機與錄音京革,去河邊找鬼。 笑死幸斥,一個胖子當著我的面吹牛匹摇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播睡毒,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼来惧,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了演顾?” 一聲冷哼從身側(cè)響起供搀,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤隅居,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后葛虐,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體胎源,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年屿脐,在試婚紗的時候發(fā)現(xiàn)自己被綠了涕蚤。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡的诵,死狀恐怖万栅,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情西疤,我是刑警寧澤烦粒,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站代赁,受9級特大地震影響扰她,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜芭碍,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一徒役、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧窖壕,春花似錦忧勿、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽宠纯。三九已至卸夕,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間婆瓜,已是汗流浹背快集。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留廉白,地道東北人个初。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像猴蹂,于是被迫代替她去往敵國和親院溺。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內(nèi)容